From ae8d359284b1a3ee678d4c5f14db5d6a45acba60 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 16 Nov 2023 07:27:06 -0600 Subject: [PATCH] missed a spot to update filename to synthetic.pot --- tools/check_translations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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