PluralNet icon indicating copy to clipboard operation
PluralNet copied to clipboard

Improve the localization of your application with support of plural forms. Support all existing languages and decimal numbers. Available for UWP, WinRT, Windows Phone, Xamarin Android and iOS, ASP.Net...

Results 3 PluralNet issues
Sort by recently updated
recently updated
newest added

if (imod10 != 4 && imod10 != 6 || imod10 != 9) return PluralType.ONE; this if statement always evaluates to true.. should it be if (imod10 != 4 && imod10...

In .NET Core localization, you have IStringLocalizer, which have GetString(name) method. How can I use this library with that?

DecimalExt.GetNumberOfDigitsAfterDecimal and DecimalExt.DigitsAfterDecimal failed on negative numbers. Fix for both methods and added xUnit tests for DecimalExt. So I have to modify .gitignore to add .vs and .cr folders to...