Fill in link to PHP doc

This commit is contained in:
Michal Čihař
2011-02-17 10:42:12 +01:00
parent 295ce60ae9
commit 4c1ee06bb3
63 changed files with 63444 additions and 58954 deletions

View File

@@ -12,11 +12,18 @@ for origentry in po.fuzzy_entries():
origentry.msgstr = updateentry.msgstr
origentry.flags.remove('fuzzy')
break
if origentry.msgctxt == updateentry.msgctxt and origentry.msgid == updateentry.msgid:
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
if origentry.msgctxt == updateentry.msgctxt and origentry.msgid == updateentry.msgid:
origentry.msgstr = updateentry.msgstr
break
po.save()