Slightly improve i18n script

This commit is contained in:
Jon Tibble 2009-11-05 16:29:49 +00:00
parent cb9b39c493
commit b6289db8a8
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ ts_message = u""" <message>
<translation type="unfinished"></translation>
</message>
"""
find_trUtf8 = re.compile(r"trUtf8\(u'([\w]+)'\)", re.UNICODE)
find_trUtf8 = re.compile(r"trUtf8\(u'([\.:;\\&\w]+)'\)", re.UNICODE)
strings = {}
def parse_file(filename):
@ -83,7 +83,7 @@ def write_file(filename):
file.close()
def main():
start_dir = u'/home/raoul/Projects/openlp/i18n'
start_dir = u'.'
for root, dirs, files in os.walk(start_dir):
for file in files:
if file.endswith(u'.py'):