I have an application with only russian locale. If I am not mistaken, the string.xml
in the res/values
is the english locale by default. But english and russian have different plurals. For example:
In russian:
- 1,21,31..x1 книга
- 2-4, 2(2-4), 3(2-4), .., x(2-4) книги
- in other cases - книг
In english:
- 1 book
- n books
Problems begin when the user changes system language from russian to other language. How can I change default language for my application? Or maybe it is possible to force the application to use the russian plurals?