summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2012-07-13 10:29:03 +0000
committerJazzyNico <nicoduf@yahoo.fr>2012-07-13 10:29:03 +0000
commitb10017b88d18499060bd76242bfe89e994f96e1c (patch)
tree7793b20e72f924b96230c72897fc88d90d3842e4
parentBug #781893 (Crash after moving a Bezier node after Knot path effect) (diff)
downloadinkscape-b10017b88d18499060bd76242bfe89e994f96e1c.tar.gz
inkscape-b10017b88d18499060bd76242bfe89e994f96e1c.zip
Fix for bug #1024325 (DXF output, Python script error: No translation file found for domain: inkscape).
(bzr r11548)
-rwxr-xr-xshare/extensions/inkex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/inkex.py b/share/extensions/inkex.py
index e55c78530..02658ca9c 100755
--- a/share/extensions/inkex.py
+++ b/share/extensions/inkex.py
@@ -40,7 +40,7 @@ if sys.platform.startswith('win'):
import locale
current_locale, encoding = locale.getdefaultlocale()
os.environ['LANG'] = current_locale
- gettext= gettext.translation('inkscape', "C:\Program Files\Inkscape\locale", [current_locale])
+ gettext= gettext.translation('inkscape', "C:\Program Files\Inkscape\locale", [current_locale], fallback=True)
else:
gettext= gettext.translation('inkscape')