[GRASS-SVN] r29898 -
grass/branches/releasebranch_6_3/general/g.region/cmd
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jan 30 07:21:28 EST 2008
Author: hamish
Date: 2008-01-30 07:21:28 -0500 (Wed, 30 Jan 2008)
New Revision: 29898
Modified:
grass/branches/releasebranch_6_3/general/g.region/cmd/main.c
Log:
merge better zoom= and align= option descriptions from trunk
Modified: grass/branches/releasebranch_6_3/general/g.region/cmd/main.c
===================================================================
--- grass/branches/releasebranch_6_3/general/g.region/cmd/main.c 2008-01-30 12:20:39 UTC (rev 29897)
+++ grass/branches/releasebranch_6_3/general/g.region/cmd/main.c 2008-01-30 12:21:28 UTC (rev 29898)
@@ -101,8 +101,8 @@
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();
@@ -319,9 +319,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";
@@ -329,7 +329,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