BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<?xml version="1.0"encoding="utf-8" ?> <resources> <string name="quarter">Trimestre</string> <string name="q">Q</string> <string name="week">Semana</string> <string name="w">W</string> </resources> |
I want to do the same on iOS since it does not take into account my device settings (Spanish), and it says week instead of semana. Also I would want it to be configurable (e.g. the app language should be independent from the device settings language, as I have many users and depending on the user I select one or other language)
Resources res = this.ApplicationContext.Resources; // Change locale settings in the app. DisplayMetrics dm = res.DisplayMetrics; Android.Content.Res.Configuration conf = res.Configuration; conf.SetLocale(newLocale("es")); // Your language code res.UpdateConfiguration(conf, dm); |
It works, but is not a solution for me since having:
Is just a static value and I need to change dinamically the language like we do on Android, and its working (I do the SetLocale dinamically, I did it even before your post).
Thank you.
Hello?
Can you provide a solution for changing the language dinamically on iOS?