Skip to content

Commit

Permalink
+ Fix translation issue in StartPage
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Jan 9, 2014
1 parent 5c6761d commit 3395a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Start/StartPage/StartPage.py
Expand Up @@ -34,7 +34,7 @@ def translate(context,text):
"convenience function for the Qt translator"
# return str(QtGui.QApplication.translate(context, text, None, QtGui.QApplication.UnicodeUTF8).toUtf8())
u = QtGui.QApplication.translate(context, text, None,
QtGui.QApplication.UnicodeUTF8)
QtGui.QApplication.UnicodeUTF8).encode("utf8")
s = cStringIO.StringIO()
for i in u:
if ord(i) == 39:
Expand Down

0 comments on commit 3395a32

Please sign in to comment.