[GRASS-SVN] r62391 - grass/trunk/lib/vector/Vlib
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Oct 26 13:27:50 PDT 2014
Author: mmetz
Date: 2014-10-26 13:27:50 -0700 (Sun, 26 Oct 2014)
New Revision: 62391
Modified:
grass/trunk/lib/vector/Vlib/open.c
Log:
Vlib: sync messages
Modified: grass/trunk/lib/vector/Vlib/open.c
===================================================================
--- grass/trunk/lib/vector/Vlib/open.c 2014-10-26 20:23:56 UTC (rev 62390)
+++ grass/trunk/lib/vector/Vlib/open.c 2014-10-26 20:27:50 UTC (rev 62391)
@@ -765,7 +765,7 @@
/* check for fully-qualified map name */
if (G_name_is_fully_qualified(name, xname, xmapset)) {
if (strcmp(xmapset, G_mapset()) != 0) {
- G_warning(_("Unable to create new vector map: <%s> is not the current mapset (%s)"),
+ G_warning(_("Unable to create vector map: <%s> is not in the current mapset (%s)"),
name, G_mapset());
return -1;
}
@@ -774,7 +774,7 @@
/* check for [A-Za-z][A-Za-z0-9_]* in name */
if (Vect_legal_filename(name) < 0) {
- G_fatal_error(_("Unable to create vector map <%s>. Name is not SQL compliant."),
+ G_fatal_error(_("Unable to create vector map: <%s> is not SQL compliant"),
name);
return -1;
}
More information about the grass-commit
mailing list