forked from AFPy/python-docs-fr
import polib import pathlib def check(file): pofile = polib.pofile(file) for entry in pofile: if not entry.msgstr: continue if entry.msgid.endswith(" ::"): entry.msgstr = entry.msgstr.rstrip(": \u202f\u00A0") + " ::" if entry.msgid.endswith("::") and not entry.msgid.endswith(" ::"): entry.msgstr = entry.msgstr.rstrip(": ,. \u202f\u00A0") + "\u00A0::" pofile.save() for file in pathlib.Path(".").glob("*.po"): check(file) for file in pathlib.Path(".").glob("*/*.po"): check(file) | ||
|---|---|---|
| .. | ||
| design.po | ||
| extending.po | ||
| general.po | ||
| gui.po | ||
| index.po | ||
| installed.po | ||
| library.po | ||
| programming.po | ||
| windows.po | ||