[GRASS-SVN] r58400 - in grass/trunk/raster: r.report r.stats
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Dec 6 08:24:03 PST 2013
Author: martinl
Date: 2013-12-06 08:24:03 -0800 (Fri, 06 Dec 2013)
New Revision: 58400
Modified:
grass/trunk/raster/r.report/parse.c
grass/trunk/raster/r.stats/main.c
Log:
r.stats/r.report: synchronize description of -n/N flags
Modified: grass/trunk/raster/r.report/parse.c
===================================================================
--- grass/trunk/raster/r.report/parse.c 2013-12-06 16:20:33 UTC (rev 58399)
+++ grass/trunk/raster/r.report/parse.c 2013-12-06 16:24:03 UTC (rev 58400)
@@ -134,12 +134,12 @@
flags.n = G_define_flag();
flags.n->key = 'n';
- flags.n->description = _("Filter out all no data cells");
+ flags.n->description = _("Do not report no data value");
flags.n->guisection = _("No data");
flags.N = G_define_flag();
flags.N->key = 'N';
- flags.N->description = _("Filter out cells where all maps have no data");
+ flags.N->description = _("Do not report cells where all maps have no data");
flags.N->guisection = _("No data");
flags.C = G_define_flag();
Modified: grass/trunk/raster/r.stats/main.c
===================================================================
--- grass/trunk/raster/r.stats/main.c 2013-12-06 16:20:33 UTC (rev 58399)
+++ grass/trunk/raster/r.stats/main.c 2013-12-06 16:24:03 UTC (rev 58400)
@@ -202,13 +202,12 @@
flag.n = G_define_flag();
flag.n->key = 'n';
- flag.n->description = _("Suppress reporting of any no-data");
+ flag.n->description = _("Do not report no data value");
flag.n->guisection = _("No data");
flag.N = G_define_flag();
flag.N->key = 'N';
- flag.N->description =
- _("Suppress reporting of no-data when all values are no-data");
+ flag.N->description = _("Do not report cells where all maps have no data");
flag.N->guisection = _("No data");
flag.C = G_define_flag();
More information about the grass-commit
mailing list