summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2017-01-22 17:54:05 +0000
committerJabiertxof <jtx@jtx>2017-01-22 17:54:05 +0000
commita6853dd8d889f0929bac8fe3f3732f577e3c4c50 (patch)
treed71bb519b6260a2e5cdf1606e4285813e0ce21e6
parentUpdate to new code in trunk (diff)
parenti18n. Fixing gettext initialization in the HPGL related extensions. (diff)
downloadinkscape-a6853dd8d889f0929bac8fe3f3732f577e3c4c50.tar.gz
inkscape-a6853dd8d889f0929bac8fe3f3732f577e3c4c50.zip
Update to trunk
(bzr r13645.1.167)
-rw-r--r--setup/gui/inkscape.desktop3
-rwxr-xr-xshare/extensions/hpgl_input.py2
-rwxr-xr-xshare/extensions/uniconv-ext.py3
-rwxr-xr-xshare/extensions/uniconv_output.py3
4 files changed, 8 insertions, 3 deletions
diff --git a/setup/gui/inkscape.desktop b/setup/gui/inkscape.desktop
index f7eb9cbef..7abc4e355 100644
--- a/setup/gui/inkscape.desktop
+++ b/setup/gui/inkscape.desktop
@@ -261,7 +261,7 @@ Comment[pl]=Tworzenie i edycja grafiki wektorowej SVG
Comment[pt_BR]=Crie e edite desenhos vetoriais escaláveis (SVG)
Comment[pt]=Crie e edite imagens Gráficas Vectoriais Escalaveis
Comment[ro]=Creează și editează imagini în format Scalable Vector Graphics
-Comment[ru]=Создание и редактирование масштабируемой векторной графики в формате SVG
+Comment[ru]=Создавайте и редактируйте масштабируемые векторные изображения
Comment[sa]=माप्य-वेक्टर्-सुचित्रीय-चित्राणि उत्पाद्य सम्पादय
Comment[sat@deva]=नाप दाड़ेयाक् वेक्टर गार चिता़र आहला तेयार मे आर सासापड़ाव मे
Comment[sat]=ᱱᱟᱯ ᱫᱟᱲᱮᱭᱟᱜ ᱣᱮᱠᱴᱨ ᱜᱟᱨ ᱪᱤᱛᱟᱹᱨ ᱟᱦᱞᱟ ᱛᱮᱭᱟᱨ ᱢᱮ ᱟᱨ ᱥᱟᱥᱟᱯᱲᱟᱣ ᱢᱮ
@@ -289,6 +289,7 @@ Keywords[is]=mynd;ritill;vigur;vektor;línur;teikning;
Keywords[it]=immagine;editor;vettoriale;disegno;
Keywords[lv]=attēls;redaktors;vektors;zīmējums;
Keywords[nl]=image;editor;vector;drawing;
+Keywords[ru]=изображение;редактор;вектор;рисунок;
Keywords[uk]=image;editor;vector;drawing;зображення;редактор;векторне;вектор;малювання;
Keywords[zh_CN]=image;editor;vector;drawing;矢量;图像;编辑;编辑器;向量;绘图;
Keywords=image;editor;vector;drawing;
diff --git a/share/extensions/hpgl_input.py b/share/extensions/hpgl_input.py
index 2b275cbf8..13d6d00ec 100755
--- a/share/extensions/hpgl_input.py
+++ b/share/extensions/hpgl_input.py
@@ -26,6 +26,8 @@ import hpgl_decoder
import inkex
import sys
+inkex.localize()
+
# parse options
parser = inkex.optparse.OptionParser(usage='usage: %prog [options] HPGLfile', option_class=inkex.InkOption)
parser.add_option('--resolutionX', action='store', type='float', dest='resolutionX', default=1016.0, help='Resolution X (dpi)')
diff --git a/share/extensions/uniconv-ext.py b/share/extensions/uniconv-ext.py
index c84ee2e0a..6ce0d7fab 100755
--- a/share/extensions/uniconv-ext.py
+++ b/share/extensions/uniconv-ext.py
@@ -51,7 +51,8 @@ if cmd == None:
import imp
imp.find_module("uniconvertor")
except ImportError:
- sys.stderr.write(_('You need to install the UniConvertor software.\n'+\
+ inkex.localize()
+ inkex.errormsg(_('You need to install the UniConvertor software.\n'+\
'For GNU/Linux: install the package python-uniconvertor.\n'+\
'For Windows: download it from\n'+\
'http://sk1project.org/modules.php?name=Products&product=uniconvertor\n'+\
diff --git a/share/extensions/uniconv_output.py b/share/extensions/uniconv_output.py
index 7815137b6..a02a16d95 100755
--- a/share/extensions/uniconv_output.py
+++ b/share/extensions/uniconv_output.py
@@ -118,7 +118,8 @@ def get_command():
import imp
imp.find_module("uniconvertor")
except ImportError:
- sys.stderr.write(_('You need to install the UniConvertor software.\n'+\
+ inkex.localize()
+ inkex.errormsg(_('You need to install the UniConvertor software.\n'+\
'For GNU/Linux: install the package python-uniconvertor.\n'+\
'For Windows: download it from\n'+\
'http://sk1project.org/modules.php?name=Products&product=uniconvertor\n'+\