missed a spot to update filename to synthetic.pot

This commit is contained in:
Jeff Epler 2023-11-16 07:27:06 -06:00
parent 8e23a553e5
commit ae8d359284
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE
1 changed files with 1 additions and 1 deletions

View File

@ -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