[GRASS-SVN] r29897 -
grass/branches/releasebranch_6_2/general/g.region/cmd
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jan 30 07:20:39 EST 2008
Author: hamish
Date: 2008-01-30 07:20:39 -0500 (Wed, 30 Jan 2008)
New Revision: 29897
Modified:
grass/branches/releasebranch_6_2/general/g.region/cmd/main.c
Log:
merge better zoom= and align= option descriptions from trunk
Modified: grass/branches/releasebranch_6_2/general/g.region/cmd/main.c
===================================================================
--- grass/branches/releasebranch_6_2/general/g.region/cmd/main.c 2008-01-30 11:23:34 UTC (rev 29896)
+++ grass/branches/releasebranch_6_2/general/g.region/cmd/main.c 2008-01-30 12:20:39 UTC (rev 29897)
@@ -93,7 +93,7 @@
flag.lprint = G_define_flag();
flag.lprint->key = 'l';
- flag.lprint->description = _("Print the current region in lat/long on current ellipsoid/datum");
+ flag.lprint->description = _("Print the current region in lat/long using the current ellipsoid/datum");
flag.lprint->guisection = _("Print");
flag.eprint = G_define_flag();
@@ -294,9 +294,9 @@
parm.zoom->required = NO;
parm.zoom->multiple = NO;
parm.zoom->type = TYPE_STRING;
- parm.zoom->description = _("Raster map to zoom into");
+ parm.zoom->description = _("Shrink region until it meets non-NULL data from this raster map");
parm.zoom->gisprompt = "old,cell,raster";
- parm.zoom->guisection = _("Resolution");
+ parm.zoom->guisection = _("Bounds");
parm.align = G_define_option();
parm.align->key = "align";
@@ -304,7 +304,7 @@
parm.align->required = NO;
parm.align->multiple = NO;
parm.align->type = TYPE_STRING;
- parm.align->description = _("Raster map to align to");
+ parm.align->description = _("Adjust region cells to cleanly align with this raster map");
parm.align->gisprompt = "old,cell,raster";
parm.align->guisection = _("Bounds");
More information about the grass-commit
mailing list