C#C
C#3y ago
MakroCZ

ICU globalization get plural rule keywords

Hi, I am writing C# plugin for some simple translation validation. I need to validate plural form, because translators have problems to do it automatically, even if we provide them details several times.
I know C++ and think also Java version of ICU library contains function for getting all valid plural keywords for given culture.
C++ example: icu::StringEnumeration* ICUAvailablePluralForms = InICUPluralRules->getKeywords(ICUStatus);
I tried to search through documentation, googling it, visited several SO, clicked through Globalization.XYZ metadata definition but no luck.
Is it possible to get this in C#? Or do I need to copy&paste database from UNICODE page?
Thanks
Was this page helpful?