Skip to content

Commit

Permalink
Start: Fixed single quotes display
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Dec 30, 2018
1 parent 0bf6ca9 commit 6cdeab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Start/StartPage/TranslationTexts.py
Expand Up @@ -37,7 +37,7 @@ def translate(context,text):
if sys.version_info.major < 3:
u = u.encode("utf8")

return u.replace(chr(39), "\\'")
return u.replace(chr(39), "&rsquo;")

T_TITLE = translate("StartPage", "Start")
T_DOCUMENTS = translate("StartPage", "Documents")
Expand Down

0 comments on commit 6cdeab9

Please sign in to comment.