This is a migrated thread and some comments may be shown as answers.

Culture pt-BR

2 Answers 90 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
cayo fontana
Top achievements
Rank 1
cayo fontana asked on 17 Aug 2011, 12:09 AM
Hi there,

I'm using RadScheduler, and other RadControls, on development in the my WPF software. However, i encountered some problems:
I try change CultureInfo for pt-BR and the properties on RadScheduler don't change languages. But when i changed for "en" or "it", the properties is changed with sucessfully.

Can you help me?

Thanks. Sorry for bad english.

2 Answers, 1 is accepted

Sort by
0
Accepted
Dimitrina
Telerik team
answered on 18 Aug 2011, 03:29 PM
Hello Cayo Fontana,

Yes, you are right, the English and the Italian translations are provided with the installation of the RadControls. Unfortunately we do not provide localization support for "pt-BR" at the moment. Nevertheless you can easily modify our localization mechanism to provide pt-BR   translations.

  You will need to add a Custom Localization Manager adding your preferred translations, like so:

public class CustomLocalizationManager : LocalizationManager
{
   public override string GetStringOverride( string key )
   {
       switch( key )
       {
           case "Timeline":
               return "Your translation";
...
       }
       return base.GetStringOverride( key );
   }
}

You may reference the explanations and the list of all resource keys here

Greetings,
Didie
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>

0
cayo fontana
Top achievements
Rank 1
answered on 19 Aug 2011, 06:35 PM
Great Didie! This works fine! Thanks!
Tags
General Discussions
Asked by
cayo fontana
Top achievements
Rank 1
Answers by
Dimitrina
Telerik team
cayo fontana
Top achievements
Rank 1
Share this question
or