[GRASS-SVN] r62392 - grass/branches/releasebranch_7_0/lib/vector/Vlib

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Oct 26 13:28:00 PDT 2014


Author: mmetz
Date: 2014-10-26 13:28:00 -0700 (Sun, 26 Oct 2014)
New Revision: 62392

Modified:
   grass/branches/releasebranch_7_0/lib/vector/Vlib/open.c
Log:
Vlib: sync messages

Modified: grass/branches/releasebranch_7_0/lib/vector/Vlib/open.c
===================================================================
--- grass/branches/releasebranch_7_0/lib/vector/Vlib/open.c	2014-10-26 20:27:50 UTC (rev 62391)
+++ grass/branches/releasebranch_7_0/lib/vector/Vlib/open.c	2014-10-26 20:28:00 UTC (rev 62392)
@@ -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