summaryrefslogtreecommitdiff
path: root/lib/extensions/install.py
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2018-09-21 22:09:50 -0400
committerGitHub <noreply@github.com>2018-09-21 22:09:50 -0400
commit3ca3045328be5882bd3d8acb2e4e32d65c901ec6 (patch)
tree9155f4ad1770c8f06d34c1c05e12624a52e76dd6 /lib/extensions/install.py
parentd8560b60458da536d0236b0d80c4a25202d0dd99 (diff)
parentac77a72f3f60706e6394e827877b6a772b432519 (diff)
Merge pull request #321 from inkstitch/lexelby/ugettext
use ugettext() instead of gettext()
Diffstat (limited to 'lib/extensions/install.py')
-rw-r--r--lib/extensions/install.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extensions/install.py b/lib/extensions/install.py
index c6dadd42..f9ffe958 100644
--- a/lib/extensions/install.py
+++ b/lib/extensions/install.py
@@ -24,8 +24,8 @@ class InstallerFrame(wx.Frame):
text = (_('Ink/Stitch can install files ("add-ons") that make it easier to use Inkscape to create machine embroidery designs. '
'These add-ons will be installed:') +
- "\n\n • " + _("thread manufacturer color palettes") +
- "\n • " + _("Ink/Stitch visual commands (Object -> Symbols...)"))
+ u"\n\n • " + _("thread manufacturer color palettes") +
+ u"\n • " + _("Ink/Stitch visual commands (Object -> Symbols...)"))
static_text = wx.StaticText(panel, label=text)
font = wx.Font(12, wx.DEFAULT, wx.NORMAL, wx.NORMAL)