circuitpython/tools/check_translations.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
979 B
Python
Raw Normal View History

2020-06-03 18:40:05 -04:00
# SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
#
# SPDX-License-Identifier: MIT
2018-07-31 19:53:54 -04:00
# Validate that all entries in the .pot are in every .po. Only the .pot is updated so we can detect
# if a translation was added to the source but isn't in a .po. This ensures translators can grab
# complete files to work on.
import sys
import polib
template_filename = sys.argv[1]
po_filenames = sys.argv[2:]
template = polib.pofile(template_filename)
all_ids = set([x.msgid for x in template])
for po_filename in po_filenames:
print("Checking", po_filename)
po_file = polib.pofile(po_filename)
po_ids = set([x.msgid for x in po_file])
missing = all_ids - po_ids
if missing:
2023-07-29 08:39:44 -04:00
print(
"Missing message id. Please run `make translate` and then `git commit locale/circuitpython.pot`"
)
print(missing)
2018-07-31 19:53:54 -04:00
sys.exit(-1)
else:
print("ok")