Skip to content

Commit

Permalink
fix maltese plurals
Browse files Browse the repository at this point in the history
  • Loading branch information
Findus23 authored and akx committed Jan 28, 2022
1 parent 9033f02 commit 90739af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion babel/messages/plurals.py
Expand Up @@ -154,7 +154,7 @@
# 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
Expand Down

0 comments on commit 90739af

Please sign in to comment.