4
in a C# application I’m looking to pluralize some words in English. But apparently there is no native support for en-BR.
var pluralizador = System.Data.Entity.Design.PluralizationServices.PluralizationService.CreateService(new System.Globalization.CultureInfo("pt-BR"));
when executing this method, the following exception is thrown.:
There is no support for the 'Portuguese' (Brazil) culture. At the moment, there is only support for pluralization in the English language.
Is there any way to add this support in?
I tested the tool and it works very well. Unfortunately it does not add support for System.Data.Entity.Design for en-BR. But I will now use it.
– Daniel Santos