i18n.py: declare plural forms for the Turkish language

I'm not quite sure, but it seems to me that Qt Linguist treats the
Turkish language as having one "universal form". We need plural forms
for Turkish since FGData commit c0bb8d8a8d64e1 in branch
'release/2020.3' added a 'tr' translation.
This commit is contained in:
Florent Rougon 2022-02-03 15:30:46 +01:00
parent 4730d57d40
commit 7bcff8eaf4

View File

@ -98,6 +98,7 @@ PLURAL_FORMS = {
"pt": ["singular", "plural"],
"ru": ["singular", "plural"],
"sk": ["singular", "paucal", "plural"],
"tr": ["universal"],
"zh": ["universal"] # universal form
}