Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
70
Change localization language
posted

Hi, I'm trying Xamarin components and I want to show the scheduler component in spanish language, it's possible to change language?

Thanks.

Parents
No Data
Reply
  • 1530
    Verified Answer
    posted

    Hi Andres,

    The XamScheduler is localized for English, German, Spanish, Japanese and French languages and by default use the system language of  the device on which the app is deployed. So if you want the use the XamScheduler with spanish language you just have to switch the language of the device to spanish or set the CurrentThread's culture to spanish in the app itself like this:


    Thread.CurrentThread.CurrentCulture = new CultureInfo("es-ES");
    Thread.CurrentThread.CurrentUICulture = new CultureInfo("es-ES");

    If you require any further assistance on the matter, please let me know.

    Sincerely,
    Teodor Tenev
    Software Developer

Children