Index: trunk/phase3/languages/LanguageHr.php |
— | — | @@ -1866,6 +1866,7 @@ |
1867 | 1867 | } |
1868 | 1868 | |
1869 | 1869 | function convertPlural( $count, $wordform1, $wordform2, $wordform3) { |
| 1870 | + $count = strtr( $count, '.', '' ); |
1870 | 1871 | if ($count > 10 && floor(($count % 100) / 10) == 1) { |
1871 | 1872 | return $wordform3; |
1872 | 1873 | } else { |