Index: branches/js2-work/phase3/js/mwEmbed/includes/languages/classes/LanguageBe.js |
— | — | @@ -19,7 +19,7 @@ |
20 | 20 | // http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html |
21 | 21 | forms = mw.lang.preConvertPlural( forms, 3 ); |
22 | 22 | |
23 | | - if (count > 10 && floor((count % 100) / 10) == 1) { |
| 23 | + if (count > 10 && Math.floor((count % 100) / 10) == 1) { |
24 | 24 | return forms[2]; |
25 | 25 | } else { |
26 | 26 | switch (count % 10) { |