-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not possible to change "Cyrillic" to "Latin". #54
Comments
Hello, this project is not supported anymore? |
Hey @menscikov! Thanks for submitting this issue and for your interest in the project The project is live, but I'm unable to look deeply into this issue due to a lack of free time in the next week or two. Have you been able to find out the root cause of the issue? I'd appreciate any contribution to the library. So far I have 2 points here:
|
Helllo, Thank you very much for your answer. Could you please try to create |
Hello,
I have Serbian language in the app. It can be "Latin" or "Cyrillic".
It's not possible to change this using this library.
For example to change letters to "Latin", you have to do this:
Lingver.getInstance().setLocale(context, new Locale.Builder().setLanguage("sr").setScript("Latn").build());
But it's not working as expected.
In this case this code is resetting the app language to default system language, English in my case.
This one is working fine when ".setScript("Latn")" is not being used:
Lingver.getInstance().setLocale(context, new Locale.Builder().setLanguage("sr").build());
Could you fix this bug please?
The text was updated successfully, but these errors were encountered: