Hi i'm having trouble with localizing my component to Croatian language or any language for that matter. I followed the tutorial in the documentation and I can't seem to get where im wrong. This is how my app.xaml. cs looks like
public App()
{
InitializeComponent();
CultureInfo.CurrentUICulture = new CultureInfo("hr-HR");
SfSchedulerResources.ResourceManager = new ResourceManager("eOdvjetnik.Resources.SfScheduler", Application.Current.GetType().Assembly); MainPage = new AppShell();
}
Also my sfScheduler.hr-HR.resx file is in the eOdvjetnik/resources, and it is set to embedded resource like the tutorial says
what happens is that some of the app is translated(ex. days in the week, and months respectively), and other things like views, weeks counter and mostly elements of the scheduler don't get translated.
Any help is welcome