[GRASS-SVN] r47543 - grass/branches/releasebranch_6_4/raster3d/r3.stats

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Aug 11 04:00:34 EDT 2011


Author: neteler
Date: 2011-08-11 01:00:34 -0700 (Thu, 11 Aug 2011)
New Revision: 47543

Modified:
   grass/branches/releasebranch_6_4/raster3d/r3.stats/main.c
Log:
Milena Nowotarska: message standardization

Modified: grass/branches/releasebranch_6_4/raster3d/r3.stats/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster3d/r3.stats/main.c	2011-08-10 20:54:55 UTC (rev 47542)
+++ grass/branches/releasebranch_6_4/raster3d/r3.stats/main.c	2011-08-11 08:00:34 UTC (rev 47543)
@@ -566,7 +566,7 @@
 
     module = G_define_module();
     module->keywords = _("raster3d, voxel, statistics");
-    module->description = _("Generates volume statistics for raster3d maps.");
+    module->description = _("Generates volume statistics for 3D raster maps.");
 
     /* Define the different options */
 
@@ -577,7 +577,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();
@@ -608,14 +608,14 @@
     infile = inputfile->answer;
 
     if (NULL == G_find_grid3(infile, ""))
-	G3d_fatalError(_("Requested g3d map <%s> not found"), infile);
+	G3d_fatalError(_("3D raster map <%s> not found"), infile);
 
     map =
 	G3d_openCellOld(infile, G_find_grid3(infile, ""), &region,
 			G3D_TILE_SAME_AS_FILE, G3D_USE_CACHE_DEFAULT);
 
     if (map == NULL)
-	G3d_fatalError(_("Error opening g3d map <%s>"), infile);
+	G3d_fatalError(_("Unable to open 3D raster map <%s>"), infile);
 
     map_type = G3d_tileTypeMap(map);
 



More information about the grass-commit mailing list