Fix occurences to occurrences in convert_l10n.py

This commit is contained in:
heinrich5991 2014-03-22 11:49:05 +01:00 committed by oy
parent 25b17a8828
commit b5f7549192

View file

@ -86,7 +86,7 @@ def write_languagefile(outputfilename, l10n_src, old_l10n_data):
msgid=msg, msgid=msg,
msgstr=translations.get(msg, ""), msgstr=translations.get(msg, ""),
obsolete=(msg in old_items), obsolete=(msg in old_items),
occurences=l10n_src[msg], occurrences=l10n_src[msg],
)) ))
po.save(outputfilename) po.save(outputfilename)