[GRASS-SVN] r41303 - grass/trunk/lib/gis

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Mar 5 14:04:47 EST 2010


Author: martinl
Date: 2010-03-05 14:04:46 -0500 (Fri, 05 Mar 2010)
New Revision: 41303

Modified:
   grass/trunk/lib/gis/units.c
Log:
libgis: track also U_DEGREES


Modified: grass/trunk/lib/gis/units.c
===================================================================
--- grass/trunk/lib/gis/units.c	2010-03-05 18:55:22 UTC (rev 41302)
+++ grass/trunk/lib/gis/units.c	2010-03-05 19:04:46 UTC (rev 41303)
@@ -184,6 +184,14 @@
 	else
 	    return plural ? _("feet") : _("foot");
 	break;
+
+    case U_DEGREES:
+	if (square)
+	    return plural ? _("square degrees") : _("square degree");
+	else
+	    return plural ? _("degrees") : _("degree");
+	break;
+
     }
     
     return NULL;



More information about the grass-commit mailing list