[GRASS-SVN] r29664 - in grass/trunk: display/d.linegraph
display/d.mon/pgms raster/r.in.xyz
vector/lidar/v.surf.bspline vector/v.net.path
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jan 11 14:05:16 EST 2008
Author: cdavilam
Date: 2008-01-11 14:05:15 -0500 (Fri, 11 Jan 2008)
New Revision: 29664
Modified:
grass/trunk/display/d.linegraph/linegraph.c
grass/trunk/display/d.mon/pgms/select.c
grass/trunk/display/d.mon/pgms/stop.c
grass/trunk/raster/r.in.xyz/main.c
grass/trunk/vector/lidar/v.surf.bspline/crosscorr.c
grass/trunk/vector/v.net.path/path.c
Log:
Message standardization
Modified: grass/trunk/display/d.linegraph/linegraph.c
===================================================================
--- grass/trunk/display/d.linegraph/linegraph.c 2008-01-11 18:47:15 UTC (rev 29663)
+++ grass/trunk/display/d.linegraph/linegraph.c 2008-01-11 19:05:15 UTC (rev 29664)
@@ -191,7 +191,7 @@
sprintf(in[0].name, "%s", x_opt->answer);
if ((in[0].fp = fopen (in[0].full_name, "r")) == NULL)
- G_fatal_error(_("Could not open input file <%s>."), in[0].full_name);
+ G_fatal_error(_("Unable to open input file <%s>"), in[0].full_name);
num_y_files = 0;
@@ -203,7 +203,7 @@
sprintf(in[j].name, "%s", name);
if ((in[j].fp = fopen (in[j].full_name, "r")) == NULL)
- G_fatal_error(_("Could not open input file <%s>."), in[j].full_name);
+ G_fatal_error(_("Unable to open input file <%s>"), in[j].full_name);
num_y_files++;
if(num_y_files > 10)
Modified: grass/trunk/display/d.mon/pgms/select.c
===================================================================
--- grass/trunk/display/d.mon/pgms/select.c 2008-01-11 18:47:15 UTC (rev 29663)
+++ grass/trunk/display/d.mon/pgms/select.c 2008-01-11 19:05:15 UTC (rev 29664)
@@ -27,7 +27,7 @@
if (R_parse_monitorcap(MON_NAME,argv[1]) == NULL)
{
- G_fatal_error(_("No such monitor as '%s'"),argv[1]);
+ G_fatal_error(_("No such monitor as <%s>"),argv[1]);
exit(EXIT_FAILURE);
}
Modified: grass/trunk/display/d.mon/pgms/stop.c
===================================================================
--- grass/trunk/display/d.mon/pgms/stop.c 2008-01-11 18:47:15 UTC (rev 29663)
+++ grass/trunk/display/d.mon/pgms/stop.c 2008-01-11 19:05:15 UTC (rev 29664)
@@ -77,7 +77,7 @@
G_warning(_("Error - Monitor '%s' was not running"),name);
break;
case NO_MON:
- G_warning(_("Error - No such monitor as '%s'"),name);
+ G_warning(_("No such monitor as <%s>"),name);
break;
case LOCKED:
G_warning(_("Error - Monitor '%s' in use by another user"),name);
Modified: grass/trunk/raster/r.in.xyz/main.c
===================================================================
--- grass/trunk/raster/r.in.xyz/main.c 2008-01-11 18:47:15 UTC (rev 29663)
+++ grass/trunk/raster/r.in.xyz/main.c 2008-01-11 19:05:15 UTC (rev 29664)
@@ -428,7 +428,7 @@
}
else {
if((in_fp = fopen(infile, "r" )) == NULL )
- G_fatal_error(_("Could not open input file <%s>."), infile);
+ G_fatal_error(_("Unable to open input file <%s>"), infile);
}
can_seek = fseek(in_fp, 0, SEEK_SET) == 0;
Modified: grass/trunk/vector/lidar/v.surf.bspline/crosscorr.c
===================================================================
--- grass/trunk/vector/lidar/v.surf.bspline/crosscorr.c 2008-01-11 18:47:15 UTC (rev 29663)
+++ grass/trunk/vector/lidar/v.surf.bspline/crosscorr.c 2008-01-11 19:05:15 UTC (rev 29664)
@@ -78,7 +78,7 @@
if (ndata > NDATA_MAX)
G_warning (_("CrossCorrelation: %d are too many points. "
- "The cross validation would take too much time"), ndata);
+ "The cross validation would take too much time."), ndata);
/*points = Vect_new_line_struct ();*/
/*Cats = Vect_new_cats_struct ();*/
@@ -90,7 +90,7 @@
if (ndata > 50)
G_warning (_("CrossCorrelation: Maybe, it takes too long. "
- "It will depend on how many points you are considering"));
+ "It will depend on how many points you are considering."));
else
G_debug (5, "CrossCorrelation: It shouldn't take too long.");
Modified: grass/trunk/vector/v.net.path/path.c
===================================================================
--- grass/trunk/vector/v.net.path/path.c 2008-01-11 18:47:15 UTC (rev 29663)
+++ grass/trunk/vector/v.net.path/path.c 2008-01-11 19:05:15 UTC (rev 29664)
@@ -43,7 +43,7 @@
if(filename) {
/* open input file */
if((in_file = fopen(filename, "r" )) == NULL )
- G_fatal_error(_("Could not open input file <%s>."), filename);
+ G_fatal_error(_("Unable to open input file <%s>"), filename);
}
AList = Vect_new_list ();
More information about the grass-commit
mailing list