[GRASS-SVN] r66333 - in grass/branches/releasebranch_7_0: gui/wxpython/vnet lib/python/pygrass/raster lib/python/temporal locale/po scripts/v.what.strds
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Sep 25 06:59:13 PDT 2015
Author: neteler
Date: 2015-09-25 06:59:13 -0700 (Fri, 25 Sep 2015)
New Revision: 66333
Modified:
grass/branches/releasebranch_7_0/gui/wxpython/vnet/dialogs.py
grass/branches/releasebranch_7_0/lib/python/pygrass/raster/__init__.py
grass/branches/releasebranch_7_0/lib/python/temporal/abstract_space_time_dataset.py
grass/branches/releasebranch_7_0/lib/python/temporal/space_time_datasets.py
grass/branches/releasebranch_7_0/locale/po/grasslibs_ar.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_cs.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_de.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_el.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_es.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_fi.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_fr.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_it.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_ja.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_ko.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_lv.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_ml.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_pl.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_pt.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_pt_br.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_ro.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_ru.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_sl.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_th.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_tr.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_vi.po
grass/branches/releasebranch_7_0/locale/po/grasslibs_zh.po
grass/branches/releasebranch_7_0/locale/po/grassmods_es.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_cs.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_de.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_el.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_es.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_fi.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_fr.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_id.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_it.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_ja.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_ko.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_lv.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_ml.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_pl.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_pt.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_pt_br.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_ro.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_ru.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_th.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_tr.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_vi.po
grass/branches/releasebranch_7_0/locale/po/grasswxpy_zh.po
grass/branches/releasebranch_7_0/scripts/v.what.strds/v.what.strds.py
Log:
fix msg grammar
Modified: grass/branches/releasebranch_7_0/gui/wxpython/vnet/dialogs.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/vnet/dialogs.py 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/gui/wxpython/vnet/dialogs.py 2015-09-25 13:59:13 UTC (rev 66333)
@@ -795,7 +795,7 @@
if "input" in err_params:
GMessage(parent = self,
- message = _("Input vector map does not exists."))
+ message = _("Input vector map does not exist."))
if ["turn_layer", "turn_cat_layer"] in err_params:
GMessage(parent = self, message = "Please choose existing turntable layer and unique categories layer in Parameters tab.")
Modified: grass/branches/releasebranch_7_0/lib/python/pygrass/raster/__init__.py
===================================================================
--- grass/branches/releasebranch_7_0/lib/python/pygrass/raster/__init__.py 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/lib/python/pygrass/raster/__init__.py 2015-09-25 13:59:13 UTC (rev 66333)
@@ -429,7 +429,7 @@
self._fd = libraster.Rast_open_new(self.name, self._gtype)
else:
if self.mode == "r":
- str_err = _("Raster map <{0}> does not exists")
+ str_err = _("Raster map <{0}> does not exist")
raise OpenError(str_err.format(self.name))
self._gtype = RTYPE[self.mtype]['grass type']
Modified: grass/branches/releasebranch_7_0/lib/python/temporal/abstract_space_time_dataset.py
===================================================================
--- grass/branches/releasebranch_7_0/lib/python/temporal/abstract_space_time_dataset.py 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/lib/python/temporal/abstract_space_time_dataset.py 2015-09-25 13:59:13 UTC (rev 66333)
@@ -327,7 +327,7 @@
dbif, connected = init_dbif(dbif)
- # We need to create the register table if it does not exists
+ # We need to create the register table if it does not exist
stds_register_table = self.get_map_register()
# Create the map register table
Modified: grass/branches/releasebranch_7_0/lib/python/temporal/space_time_datasets.py
===================================================================
--- grass/branches/releasebranch_7_0/lib/python/temporal/space_time_datasets.py 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/lib/python/temporal/space_time_datasets.py 2015-09-25 13:59:13 UTC (rev 66333)
@@ -171,7 +171,7 @@
the map will be exported using r.out.bin to a temporary location
and assigned to the memmap object that is returned by this function.
- In case the raster map does not exists, an empty temporary
+ In case the raster map does not exist, an empty temporary
binary file will be created and assigned to the memap object.
You need to call the write function to write the memmap
@@ -505,7 +505,7 @@
the map will be exported using r3.out.bin to a temporary location
and assigned to the memmap object that is returned by this function.
- In case the 3D raster map does not exists, an empty temporary
+ In case the 3D raster map does not exist, an empty temporary
binary file will be created and assigned to the memap object.
You need to call the write function to write the memmap
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_ar.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_ar.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_ar.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3513,7 +3513,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "'%s' ÙÙ
ÙÙ
ÙÙ ÙØªØ Ù
Ù٠اÙتارÙØ® ÙÙÙÙÙتÙر"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_cs.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_cs.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_cs.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3560,7 +3560,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Tabulka <%s> pÅipojená k vektorové mapÄ <%s> neexistuje"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_de.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_de.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_de.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3552,7 +3552,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Tabelle <%s> verknüpft mit Vektorkarte <%s> existiert nicht."
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_el.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_el.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_el.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3553,7 +3553,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr ""
"Î ÏÎ¯Î½Î±ÎºÎ±Ï <%s> ÏοÏ
είναι ÏÏ
νδεδεμÎÎ½Î¿Ï Î¼Îµ Ïον διανÏ
ÏμαÏÎ¹ÎºÏ ÏάÏÏη <%s> δεν "
"Ï
ÏάÏÏει"
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_es.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_es.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_es.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3689,7 +3689,7 @@
#
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "La tabla <%s> enlazada con el mapa vectorial <%s> no existe."
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_fi.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_fi.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_fi.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3378,7 +3378,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr ""
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_fr.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_fr.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_fr.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3582,7 +3582,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "La table <%s> liée à la carte vecteur <%s> n'existe pas "
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_it.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_it.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_it.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3563,7 +3563,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Tabella <%s> collegata al vettoriale <%s> non esiste"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_ja.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_ja.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_ja.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3551,7 +3551,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "ãã¯ãã«ããã <%s> ã«ãªã³ã¯ãããã¼ãã« <%s> ã¯åå¨ãã¾ãã"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_ko.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_ko.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_ko.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3472,7 +3472,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "ììíì¼ì ì´ ì ììµëë¤"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_lv.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_lv.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_lv.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3500,7 +3500,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Nevar atvÄrt vÄsturi vektoram '%s'"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_ml.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_ml.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_ml.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3441,7 +3441,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "à´àµà´°àµà´ªàµà´ªàµ <%s> à´à´¾à´²à´¿à´¯à´¾à´£àµâ \n"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_pl.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_pl.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_pl.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3522,7 +3522,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Tabela <%s> podÅÄ
czona do mapy wektorowej <%s> nie istnieje"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_pt.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_pt.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_pt.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3544,7 +3544,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Impossível abrir topologia para mapa vetorial <%s>"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_pt_br.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_pt_br.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_pt_br.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3536,7 +3536,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Não consegui abrir histórico para o vetor %s"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_ro.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_ro.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_ro.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3444,7 +3444,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Harta raster <%s> nu este gÄsitÄ"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_ru.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_ru.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_ru.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3562,7 +3562,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "ТаблиÑа <%s> ÑвÑÐ·Ð°Ð½Ð½Ð°Ñ Ñ Ð²ÐµÐºÑоÑнÑм Ñлоем <%s> не ÑÑÑеÑÑвÑеÑ"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_sl.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_sl.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_sl.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3536,7 +3536,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Ne morem odpreti datoteke z zgodovino za vektor '%s'"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_th.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_th.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_th.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3552,7 +3552,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "à¹à¸¡à¹à¸ªà¸²à¸¡à¸²à¸£à¸à¸à¹à¸à¸«à¸²à¸à¸²à¸£à¸²à¸ <%s> à¸à¸µà¹à¹à¸à¸·à¹à¸à¸¡à¸à¸±à¸à¸à¹à¸à¸¡à¸¹à¸¥à¹à¸à¸´à¸à¹à¸ªà¹à¸ <%s>"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_tr.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_tr.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_tr.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3484,7 +3484,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "<%s> raster haritası boÅ"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_vi.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_vi.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_vi.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3554,7 +3554,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "Bảng <%s> Äược liên kết và o bản Äá» vec-tÆ¡ <%s> không tá»n tại"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grasslibs_zh.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasslibs_zh.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasslibs_zh.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -3553,7 +3553,7 @@
#: ../lib/python/pygrass/raster/__init__.py:432
#, fuzzy, python-brace-format
-msgid "Raster map <{0}> does not exists"
+msgid "Raster map <{0}> does not exist"
msgstr "æ æ³æå¼ç¢é'%s'çåå²è®°å½"
#: ../lib/python/pygrass/raster/abstract.py:274
Modified: grass/branches/releasebranch_7_0/locale/po/grassmods_es.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grassmods_es.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grassmods_es.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -43330,7 +43330,7 @@
#~ msgstr "No se puede abrir el mapa vectorial <%s>"
#, fuzzy
-#~ msgid "Arc layer <%s> does not exists in map <%s>."
+#~ msgid "Arc layer <%s> does not exist in map <%s>."
#~ msgstr "La tabla <%s> no existe en la base de datos <%s>"
#, fuzzy
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_cs.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_cs.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_cs.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6698,7 +6698,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Vektorová mapa <%s> nebyla nalezena."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_de.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_de.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_de.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6583,7 +6583,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Verzeichnis %s existiert nicht."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_el.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_el.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_el.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6294,7 +6294,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Î ÏÎ¬ÎºÎµÎ»Î¿Ï %s δεν Ï
ÏάÏÏει,"
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_es.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_es.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_es.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6662,7 +6662,7 @@
msgstr "Cargando datos."
#: ../gui/wxpython/vnet/dialogs.py:798
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Mapa vectorial de entrada no existe."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_fi.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_fi.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_fi.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6132,7 +6132,7 @@
msgstr ""
#: ../gui/wxpython/vnet/dialogs.py:798
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr ""
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_fr.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_fr.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_fr.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6541,7 +6541,7 @@
msgstr ""
#: ../gui/wxpython/vnet/dialogs.py:798
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "La couche vecteur entrée n'existe pas."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_id.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_id.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_id.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6801,7 +6801,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "ERROR: Mapset <%s> tidak ada"
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_it.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_it.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_it.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6417,7 +6417,7 @@
msgstr "Creando la tabella delle svolte..."
#: ../gui/wxpython/vnet/dialogs.py:798
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Il vettoriale di input non esiste."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_ja.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_ja.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_ja.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6608,7 +6608,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "ãã¯ãã«ããã <%s> ãè¦ã¤ããã¾ãã"
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_ko.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_ko.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_ko.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6123,7 +6123,7 @@
msgstr ""
#: ../gui/wxpython/vnet/dialogs.py:798
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr ""
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_lv.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_lv.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_lv.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6261,7 +6261,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "ĪpaÅ¡Ä«ba %s neeksistÄ"
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_ml.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_ml.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_ml.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6541,7 +6541,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "മാപàµà´ªàµ <%s> à´à´£àµà´®à´¨à´¿à´²àµà´²"
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_pl.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_pl.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_pl.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6479,7 +6479,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Katalog %s nie istnieje."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_pt.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_pt.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_pt.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6838,7 +6838,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Mapa <%s> não encontrado"
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_pt_br.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_pt_br.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_pt_br.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6978,7 +6978,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Mapa <%s> não encontrado"
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_ro.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_ro.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_ro.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6624,7 +6624,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Directorul %s nu existÄ."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_ru.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_ru.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_ru.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6761,7 +6761,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Слой <%s> не найден."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_th.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_th.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_th.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6513,7 +6513,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "à¹à¸à¸à¸à¸µà¹à¹à¸à¸´à¸à¸ าà¸à¹à¸¡à¹à¹à¸à¹ 3มิà¸à¸´"
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_tr.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_tr.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_tr.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6774,7 +6774,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "<%s>haritası bulunamadı."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_vi.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_vi.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_vi.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6773,7 +6773,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "Không tìm thấy bản Äá» <%s>."
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/locale/po/grasswxpy_zh.po
===================================================================
--- grass/branches/releasebranch_7_0/locale/po/grasswxpy_zh.po 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/locale/po/grasswxpy_zh.po 2015-09-25 13:59:13 UTC (rev 66333)
@@ -6667,7 +6667,7 @@
#: ../gui/wxpython/vnet/dialogs.py:798
#, fuzzy
-msgid "Input vector map does not exists."
+msgid "Input vector map does not exist."
msgstr "æ
æ ¼å°å¾ [%s] æªåç°"
#: ../gui/wxpython/vnet/dialogs.py:816
Modified: grass/branches/releasebranch_7_0/scripts/v.what.strds/v.what.strds.py
===================================================================
--- grass/branches/releasebranch_7_0/scripts/v.what.strds/v.what.strds.py 2015-09-25 13:48:44 UTC (rev 66332)
+++ grass/branches/releasebranch_7_0/scripts/v.what.strds/v.what.strds.py 2015-09-25 13:59:13 UTC (rev 66333)
@@ -22,6 +22,7 @@
#% keyword: position
#% keyword: querying
#% keyword: attribute table
+#% keyword: time
#%end
#%option G_OPT_V_INPUT
More information about the grass-commit
mailing list