namespace Ice\I18n\Plural;
/**
* Plural rules for the following locales and languages:
*
* Locales: ak am bh fil tl guw hi ln mg nso ti wa
*
* Rules:
* one → n in 0..1;
* other → everything else
*
* Reference CLDR Version 21 (2012-03-01 03:27:30 GMT)
* @see http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html
* @see http://unicode.org/repos/cldr/trunk/common/supplemental/plurals.xml
*
* @package Ice/I18n
* @category Plural rules
* @author Ice Team
* @copyright (c) 2014-2025 Ice Team
* @license http://iceframework.org/license
*/
class Zero implements PluralInterface
{
public function getCategory(int count) -> string
{
if count == 0 || count == 1 {
return "one";
} else {
return "other";
}
}
}