In a C # application I want to pluralize a few words in Portuguese. But apparently there is no native support for pt-BR.
var pluralizador = System.Data.Entity.Design.PluralizationServices.PluralizationService.CreateService(new System.Globalization.CultureInfo("pt-BR"));
When you execute this method, the following exception is thrown.:
The 'Portuguese (Brazil) culture' is not supported. Currently, pluralization is only supported in the English language.
Is there any way to add this support in pt-br?