Java internationalization (i18n) with proper plurals
Well, you already tagged the question correctly, so I assume you know thing or two about ICU. With ICU you have two choices for proper handling of plural forms: PluralRules, which gives you the rules for given Locale PluralFormat, which uses aforementioned rules to allow formatting Which one to use? Personally, I prefer to use … Read more