TOMASZ KUBIK
Posted
on Aug 9, 2011
(permalink)
I have problem with translating my scheduler. Days of week and months are translated. However scheduler modes (Day,
Week,...) are not. "Open recurring item" dialog is also not translated.
This is how I tried to make this working:
public CustomCalendar()
{
InitializeComponent();
LocalizationManager.DefaultCulture = new CultureInfo("pl");
this.scheduler.Culture = System.Globalization.CultureInfo.CreateSpecificCulture("pl-PL");
this.ResetTemplate();
}
private void ResetTemplate()
{
ControlTemplate template = this.scheduler.Template;
this.scheduler.Template = null;
this.scheduler.Template = template;
}
I am using Q3 2010.What is wrong?
Reply
Answer
Yana
Yana
Posted
on Aug 9, 2011
(permalink)
Hello Tomasz,
RadScheduler provides you with built-in resources for several cultures, but I'm afraid that Polish is not amongst them. You should manually create the .resx file and set the LocalizationManager, please check
here for more details.
Best wishes,
Yana
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>
Reply