Browse Source

v.what.strds: some msg standardization, see https://trac.osgeo.org/grass/wiki/MessageStandardization

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@68438 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 9 years ago
parent
commit
1bffafa951
1 changed files with 2 additions and 2 deletions
  1. 2 2
      scripts/v.what.strds/v.what.strds.py

+ 2 - 2
scripts/v.what.strds/v.what.strds.py

@@ -201,14 +201,14 @@ def main():
         pymap.open('r')
     except:
         dbif.close()
-        grass.fatal(_("It is not possible to open the new map %s" % output))
+        grass.fatal(_("Unable to create vector map <%s>" % output))
 
     if len(pymap.dblinks) == 0:
         try:
             grass.run_command("v.db.addtable", map=output)
         except CalledModuleError:
             dbif.close()
-            grass.fatal(_("Impossible add table to vector %s" % output))
+            grass.fatal(_("Unable to add table <%s> to vector map <%s>" % output))
     pymap.close()
     for sample in samples:
         raster_names = sample.raster_names