validate_po.py: Fix typo "varialbes"

This commit is contained in:
Sebastian Pipping 2023-08-03 16:43:14 +02:00
parent e6112a87a9
commit 104b31c5b0
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ def validate_po(locale, path):
po = polib.pofile(path)
for entry in po:
if entry.msgstr and (entry.msgid.count("%") != entry.msgstr.count("%")):
print("Number of varialbes mismatched in " + locale)
print("Number of variables mismatched in " + locale)
print(entry.msgid + " -> " + entry.msgstr)
print()