[GRASS-SVN] r30449 - grass/trunk/raster/r.out.gdal
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Mar 3 12:59:24 EST 2008
Author: epatton
Date: 2008-03-03 12:59:24 -0500 (Mon, 03 Mar 2008)
New Revision: 30449
Modified:
grass/trunk/raster/r.out.gdal/main.c
Log:
Improved warning message grammar
Modified: grass/trunk/raster/r.out.gdal/main.c
===================================================================
--- grass/trunk/raster/r.out.gdal/main.c 2008-03-03 17:09:43 UTC (rev 30448)
+++ grass/trunk/raster/r.out.gdal/main.c 2008-03-03 17:59:24 UTC (rev 30449)
@@ -320,12 +320,12 @@
if (n_nulls > 0) {
if (maptype == CELL_TYPE)
G_warning(_("Input raster map constains cells with NULL-value (no-data). "
- "For no-data values was used value %d. "
+ "The value %d was used to represent no-data values in the input map."
"You can specify nodata value by %s parameter."),
(int) nodataval, nodatakey);
else
G_warning(_("Input raster map constains cells with NULL-value (no-data). "
- "For no-data values was used value %g. "
+ "The value %g was used to represent no-data values in the input map."
"You can specify nodata value by %s parameter."),
nodataval, nodatakey);
}
More information about the grass-commit
mailing list