[GRASS-SVN] r32039 - grass/trunk/imagery/i.rectify
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Jul 7 07:58:13 EDT 2008
Author: msieczka
Date: 2008-07-07 07:58:13 -0400 (Mon, 07 Jul 2008)
New Revision: 32039
Modified:
grass/trunk/imagery/i.rectify/main.c
Log:
Messages standarization
Modified: grass/trunk/imagery/i.rectify/main.c
===================================================================
--- grass/trunk/imagery/i.rectify/main.c 2008-07-07 09:54:55 UTC (rev 32038)
+++ grass/trunk/imagery/i.rectify/main.c 2008-07-07 11:58:13 UTC (rev 32039)
@@ -68,7 +68,7 @@
ext->type = TYPE_STRING;
ext->required = YES;
ext->multiple = NO;
- ext->description = _("Output file extension (inputfile(s) + extension)");
+ ext->description = _("Output raster map(s) suffix");
val = G_define_option();
val->key = "order";
@@ -83,7 +83,7 @@
a = G_define_flag();
a->key = 'a';
- a->description = _("Rectify all images in group");
+ a->description = _("Rectify all raster maps in group");
if (G_parser(argc, argv))
@@ -106,7 +106,7 @@
}
if (order < 1 || order > MAXORDER)
- G_fatal_error(_("Invalid order (%d) please enter 1 to %d"), order,
+ G_fatal_error(_("Invalid order (%d); please enter 1 to %d"), order,
MAXORDER);
/* determine the number of files in this group */
@@ -114,7 +114,7 @@
G_fatal_error(_("Group <%s> does not exist"), grp->answer);
if (ref.nfiles <= 0) {
- G_important_message(_("Group <%s> contains no maps. Run i.group"), grp->answer);
+ G_important_message(_("Group <%s> contains no raster maps; run i.group"), grp->answer);
exit(EXIT_SUCCESS);
}
@@ -181,7 +181,7 @@
{
int n;
- fprintf(stderr, "Input file <%s> does not exist in group <%s>.\n Try:\n",
+ fprintf(stderr, "Input raster map <%s> does not exist in group <%s>.\n Try:\n",
file, grp);
for (n = 0; n < ref.nfiles; n++)
More information about the grass-commit
mailing list