yup, you create the service for a given culture.
in .NET 4.0, however (my en-US install, anyway), it throws for anything but "en"
public static PluralizationService CreateService(CultureInfo culture) { EDesignUtil.CheckArgumentNull<CultureInfo>(culture, "culture"); if (culture.TwoLetterISOLanguageName != "en") { throw new NotImplementedException("We don't support locales other than english yet"); } return new EnglishPluralizationService(); } |
from android nexus1