From 104b31c5b0dfbddd1b12c9847529fc7c4f294782 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Thu, 3 Aug 2023 16:43:14 +0200 Subject: [PATCH] validate_po.py: Fix typo "varialbes" --- validate_po.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate_po.py b/validate_po.py index 7865a6d..707d56d 100644 --- a/validate_po.py +++ b/validate_po.py @@ -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()