Skip to content

Commit 90739af

Browse files
Findus23akx
authored andcommitted
fix maltese plurals
1 parent 9033f02 commit 90739af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

babel/messages/plurals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
# Latvian
155155
'lv': (3, '(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)'),
156156
# Maltese - From Pootle's PO's
157-
'mt': (4, '(n==1 ? 0 : n==0 || ( n%100=>1 && n%100<=10) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3)'),
157+
'mt': (4, '(n==1 ? 0 : n==0 || ( n%100>=1 && n%100<=10) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3)'),
158158
# Norwegian Bokmål
159159
'nb': (2, '(n != 1)'),
160160
# Dutch

0 commit comments

Comments
 (0)