Julien Palard 5646bc52a4
Yet another batch of : :: and no break spaces... (#1148)
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)
2020-02-05 23:32:21 +01:00
..
design.po Yet another batch of : :: and no break spaces... (#1148) 2020-02-05 23:32:21 +01:00
extending.po Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +01:00
general.po Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +01:00
gui.po Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +01:00
index.po Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +01:00
installed.po Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +01:00
library.po Few errors found while working on a new release of pospell. (#1056) 2019-12-13 12:17:13 +01:00
programming.po Yet another batch of : :: and no break spaces... (#1148) 2020-02-05 23:32:21 +01:00
windows.po Few errors found while working on a new release of pospell. (#1056) 2019-12-13 12:17:13 +01:00