i18n: Don't strip spaces at the end of translated strings. Closes GH-750.

This commit is contained in:
Valentin Lorentz 2014-06-19 10:28:08 +00:00
parent 00c1c62346
commit aad0f0c88c
1 changed files with 0 additions and 1 deletions

View File

@ -135,7 +135,6 @@ def normalize(string, removeNewline=False):
string = string.replace('\\"', '"')
string = string.replace("\'", "'")
string = utils.str.normalizeWhitespace(string, removeNewline)
string = string.strip(' ')
string = string.strip('\n')
string = string.strip('\t')
return string