summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Winkler <git@lw1.at>2021-06-28 21:35:26 +0200
committerAarni Koskela <akx@iki.fi>2022-01-28 13:56:43 +0200
commit90739af21f7f26b126ffb52a136c624aba969acd (patch)
treea84296932151b71defe5c57044d78e5e82ba5144
parent9033f020783117b8cc069249d98f8a6060916f8d (diff)
downloadbabel-90739af21f7f26b126ffb52a136c624aba969acd.tar.gz
fix maltese plurals
-rw-r--r--babel/messages/plurals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/babel/messages/plurals.py b/babel/messages/plurals.py
index 9e25a80..52711a2 100644
--- a/babel/messages/plurals.py
+++ b/babel/messages/plurals.py
@@ -154,7 +154,7 @@ PLURALS = {
# Latvian
'lv': (3, '(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)'),
# Maltese - From Pootle's PO's
- 'mt': (4, '(n==1 ? 0 : n==0 || ( n%100=>1 && n%100<=10) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3)'),
+ 'mt': (4, '(n==1 ? 0 : n==0 || ( n%100>=1 && n%100<=10) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3)'),
# Norwegian Bokmål
'nb': (2, '(n != 1)'),
# Dutch