Parcourir la source

r.proj, v.proj: better option description (maps are only from mapset, coordinates without dash)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58278 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras il y a 11 ans
Parent
commit
aa4d2becd4
2 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 1 1
      raster/r.proj/main.c
  2. 2 2
      vector/v.proj/main.c

+ 1 - 1
raster/r.proj/main.c

@@ -206,7 +206,7 @@ int main(int argc, char **argv)
 
     list = G_define_flag();
     list->key = 'l';
-    list->description = _("List raster maps in input location and exit");
+    list->description = _("List raster maps in input mapset and exit");
     list->guisection = _("Print");
     
     nocrop = G_define_flag();

+ 2 - 2
vector/v.proj/main.c

@@ -106,13 +106,13 @@ int main(int argc, char *argv[])
 
     flag.list = G_define_flag();
     flag.list->key = 'l';
-    flag.list->description = _("List vector maps in input location and exit");
+    flag.list->description = _("List vector maps in input mapset and exit");
 
     flag.transformz = G_define_flag();
     flag.transformz->key = 'z';
     flag.transformz->description = _("3D vector maps only");
     flag.transformz->label =
-	_("Assume z co-ordinate is ellipsoidal height and "
+	_("Assume z coordinate is ellipsoidal height and "
 	  "transform if possible");
     flag.transformz->guisection = _("Target");