[GRASS-SVN] r53457 - grass-addons/grass7/raster/r.sun.angle
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Oct 17 14:45:24 PDT 2012
Author: neteler
Date: 2012-10-17 14:45:24 -0700 (Wed, 17 Oct 2012)
New Revision: 53457
Modified:
grass-addons/grass7/raster/r.sun.angle/main.c
Log:
msg standardization
Modified: grass-addons/grass7/raster/r.sun.angle/main.c
===================================================================
--- grass-addons/grass7/raster/r.sun.angle/main.c 2012-10-17 20:27:14 UTC (rev 53456)
+++ grass-addons/grass7/raster/r.sun.angle/main.c 2012-10-17 21:45:24 UTC (rev 53457)
@@ -209,13 +209,13 @@
/* read current projection info */
if ((in_proj_info = G_get_projinfo()) == NULL)
- G_fatal_error(_("Can't get projection info of current location."));
+ G_fatal_error(_("Cannot get projection info of current location"));
if ((in_unit_info = G_get_projunits()) == NULL)
- G_fatal_error(_("Can't get projection units of current location."));
+ G_fatal_error(_("Cannot get projection units of current location"));
if (pj_get_kv(&iproj, in_proj_info, in_unit_info) < 0)
- G_fatal_error(_("Can't get projection key values of current location."));
+ G_fatal_error(_("Cannot get projection key values of current location"));
G_free_key_value(in_proj_info);
G_free_key_value(in_unit_info);
@@ -225,7 +225,7 @@
oproj.meters = 1.;
sprintf(oproj.proj, "ll");
if ((oproj.pj = pj_latlong_from_proj(iproj.pj)) == NULL)
- G_fatal_error(_("Unable to update lat/long projection parameters."));
+ G_fatal_error(_("Unable to update lat/long projection parameters"));
}
/* always init pd */
More information about the grass-commit
mailing list