diff --git a/tools/check_translations.py b/tools/check_translations.py index e6cc1532a8..2f6177cf8a 100644 --- a/tools/check_translations.py +++ b/tools/check_translations.py @@ -13,7 +13,7 @@ import polib template_filename = sys.argv[1] po_filenames = sys.argv[2:] -synthetic = polib.pofile("locale/synthetic.po") +synthetic = polib.pofile("locale/synthetic.pot") synthetic_ids = set([x.msgid for x in synthetic]) template = polib.pofile(template_filename) all_ids = set([x.msgid for x in template]) - synthetic_ids