From: Lukas Winkler Date: Mon, 28 Jun 2021 19:35:26 +0000 (+0200) Subject: fix maltese plurals X-Git-Tag: v2.10.0~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90739af21f7f26b126ffb52a136c624aba969acd;p=thirdparty%2Fbabel.git fix maltese plurals --- diff --git a/babel/messages/plurals.py b/babel/messages/plurals.py index 9e25a806..52711a29 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