From 42702ccf0ebc530df94c0e7de1ce68517aec3779 Mon Sep 17 00:00:00 2001 From: creedofscience <> Date: Sun, 22 Jan 2017 08:31:48 +0100 Subject: [Bug #1656726] Adding Russian translation for the shortcut comment. Fixed bugs: - https://launchpad.net/bugs/1656726 (bzr r15429) --- setup/gui/inkscape.desktop | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- cgit v1.2.3 From 10141c4f5a78c99811a52ace4ee9b46ad5cbc3b5 Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Sun, 22 Jan 2017 16:37:47 +0100 Subject: i18n. Fixing gettext initialization in the Uniconvertor related extensions. (bzr r15430) --- share/extensions/uniconv-ext.py | 3 ++- share/extensions/uniconv_output.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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'+\ -- cgit v1.2.3 From 2975cae69ee6b1b35dc586e908fc6679ce165938 Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Sun, 22 Jan 2017 18:23:34 +0100 Subject: i18n. Fixing gettext initialization in the HPGL related extensions. (bzr r15431) --- share/extensions/hpgl_input.py | 2 ++ 1 file changed, 2 insertions(+) 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)') -- cgit v1.2.3