[GRASS-SVN] r47545 - grass/trunk/raster3d/r3.stats
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Aug 11 04:17:11 EDT 2011
Author: neteler
Date: 2011-08-11 01:17:11 -0700 (Thu, 11 Aug 2011)
New Revision: 47545
Modified:
grass/trunk/raster3d/r3.stats/main.c
Log:
Milena Nowotarska: message standardization
Modified: grass/trunk/raster3d/r3.stats/main.c
===================================================================
--- grass/trunk/raster3d/r3.stats/main.c 2011-08-11 08:00:44 UTC (rev 47544)
+++ grass/trunk/raster3d/r3.stats/main.c 2011-08-11 08:17:11 UTC (rev 47545)
@@ -567,7 +567,7 @@
module = G_define_module();
G_add_keyword(_("raster3d"));
G_add_keyword(_("statistics"));
- module->description = _("Generates volume statistics for raster3d maps.");
+ module->description = _("Generates volume statistics for 3D raster maps.");
/* Define the different options */
@@ -578,7 +578,7 @@
steps->type = TYPE_INTEGER;
steps->required = NO;
steps->answer = "20";
- steps->description = _("Number of sub-ranges to collect stats from");
+ steps->description = _("Number of subranges to collect stats from");
equal = G_define_flag();
@@ -609,14 +609,14 @@
infile = inputfile->answer;
if (NULL == G_find_grid3(infile, ""))
- Rast3d_fatalError(_("Requested g3d map <%s> not found"), infile);
+ Rast3d_fatalError(_("3D raster map <%s> not found"), infile);
map =
Rast3d_openCellOld(infile, G_find_grid3(infile, ""), ®ion,
RASTER3D_TILE_SAME_AS_FILE, RASTER3D_USE_CACHE_DEFAULT);
if (map == NULL)
- Rast3d_fatalError(_("Error opening g3d map <%s>"), infile);
+ Rast3d_fatalError(_("Unable to open 3D raster map <%s>"), infile);
map_type = Rast3d_tileTypeMap(map);
More information about the grass-commit
mailing list