Index: trunk/phase3/languages/classes/LanguageCy.php |
— | — | @@ -15,8 +15,6 @@ |
16 | 16 | function convertPlural( $count, $forms ) { |
17 | 17 | if ( !count( $forms ) ) { return ''; } |
18 | 18 | |
19 | | - // @todo FIXME: CLDR defines 4 plural forms; very different, actually. |
20 | | - // See http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html#cy |
21 | 19 | $forms = $this->preConvertPlural( $forms, 6 ); |
22 | 20 | $count = abs( $count ); |
23 | 21 | if ( $count >= 0 && $count <= 3 ) { |