Update translations

Another update for strings already translated in php code and were
missing in gettext.
This commit is contained in:
Michal Čihař
2010-03-15 13:47:26 +01:00
parent c7e289d6fd
commit dcf52474a3
7 changed files with 118 additions and 113 deletions

View File

@@ -12,6 +12,11 @@ for origentry in po.fuzzy_entries():
origentry.msgstr = updateentry.msgstr
origentry.flags.remove('fuzzy')
break
for origentry in po.untranslated_entries():
for updateentry in poupdate.translated_entries():
if origentry.msgctxt is None and origentry.msgid == updateentry.msgid:
origentry.msgstr = updateentry.msgstr
break
po.save()