[GRASS-CVS] carlos: grass6/raster/r.out.vtk main.c,1.13,1.14
grass at intevation.de
grass at intevation.de
Wed Nov 28 13:25:58 EST 2007
Author: carlos
Update of /grassrepository/grass6/raster/r.out.vtk
In directory doto:/tmp/cvs-serv1162/r.out.vtk
Modified Files:
main.c
Log Message:
Message standardization
Index: main.c
===================================================================
RCS file: /grassrepository/grass6/raster/r.out.vtk/main.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- main.c 3 Jul 2007 17:35:52 -0000 1.13
+++ main.c 28 Nov 2007 18:25:56 -0000 1.14
@@ -44,7 +44,7 @@
mapset = G_find_cell2(param.elevationmap->answer, "");
if (mapset == NULL) {
- G_fatal_error(_("Cell file [%s] not found\n"),
+ G_fatal_error(_("Raster map <%s not found"),
param.elevationmap->answer);
exit(EXIT_FAILURE);
}
@@ -57,7 +57,7 @@
mapset = NULL;
mapset = G_find_cell2(param.input->answers[i], "");
if (mapset == NULL) {
- G_fatal_error(_("Cell file [%s] not found\n"),
+ G_fatal_error(_("Raster map <%s not found"),
param.input->answers[i]);
exit(EXIT_FAILURE);
}
@@ -76,7 +76,7 @@
mapset = NULL;
mapset = G_find_cell2(param.rgbmaps->answers[i], "");
if (mapset == NULL) {
- G_fatal_error(_("rgb cell map [%s] not found\n"),
+ G_fatal_error(_("RGB raster map <%s> not found"),
param.rgbmaps->answers[i]);
exit(EXIT_FAILURE);
}
@@ -100,7 +100,7 @@
mapset = NULL;
mapset = G_find_cell2(param.vectmaps->answers[i], "");
if (mapset == NULL) {
- G_fatal_error(_("vector cell map [%s] not found\n"),
+ G_fatal_error(_("Vector cell map <%s> not found"),
param.vectmaps->answers[i]);
exit(EXIT_FAILURE);
}
@@ -221,7 +221,7 @@
/* open raster map */
fd = G_open_cell_old(param.elevationmap->answer, mapset);
if (fd < 0)
- G_fatal_error(_("Could not open map %s"),
+ G_fatal_error(_("Unable to open raster map <%s>"),
param.elevationmap->answer);
out_type = G_get_raster_map_type(fd);
@@ -283,7 +283,7 @@
/* open raster map */
fd = G_open_cell_old(param.input->answers[i], mapset);
if (fd < 0)
- G_fatal_error(_("Could not open map %s"),
+ G_fatal_error(_("Unable to open raster map <%s>"),
param.input->answers[i]);
out_type = G_get_raster_map_type(fd);
/*Now write the data */
@@ -311,7 +311,7 @@
/* open raster map */
rgbfd[i] = G_open_cell_old(param.rgbmaps->answers[i], mapset);
if (rgbfd[i] < 0)
- G_fatal_error(_("Could not open map %s"),
+ G_fatal_error(_("Unable to open raster map <%s>"),
param.rgbmaps->answers[i]);
celltype[i] = G_get_raster_map_type(rgbfd[i]);
}
@@ -357,7 +357,7 @@
/* open raster map */
vectfd[i] = G_open_cell_old(param.vectmaps->answers[i], mapset);
if (vectfd[i] < 0)
- G_fatal_error(_("Could not open map %s"),
+ G_fatal_error(_("Unable to open raster map <%s>"),
param.vectmaps->answers[i]);
celltype[i] =
G_get_raster_map_type(vectfd[i]);
More information about the grass-commit
mailing list