summaryrefslogtreecommitdiffstats
path: root/share/extensions
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2016-05-30 16:30:27 +0000
committerJazzyNico <nicoduf@yahoo.fr>2016-05-30 16:30:27 +0000
commit8bf4778fb8e114c23222ab5a6c58b11f4dca3051 (patch)
tree63e7a4dd55eba6c3c09e272a379a60dbc8dea8de /share/extensions
parentTranslations. PO template update. (diff)
downloadinkscape-8bf4778fb8e114c23222ab5a6c58b11f4dca3051.tar.gz
inkscape-8bf4778fb8e114c23222ab5a6c58b11f4dca3051.zip
Extensions. Fix localization in the webbrowser launcher extension (missing call to inkex.localize()).
(bzr r14929)
Diffstat (limited to 'share/extensions')
-rwxr-xr-xshare/extensions/launch_webbrowser.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/share/extensions/launch_webbrowser.py b/share/extensions/launch_webbrowser.py
index 1ee6caca8..225484393 100755
--- a/share/extensions/launch_webbrowser.py
+++ b/share/extensions/launch_webbrowser.py
@@ -16,6 +16,7 @@ class VisitWebSiteWithoutLockingInkscape(threading.Thread):
(self.options, args) = parser.parse_args()
def run(self):
+ inkex.localize()
webbrowser.open(_(self.options.url))
vwswli = VisitWebSiteWithoutLockingInkscape()