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
5549
Translate Words in UltraCalendarCombo
posted

Hi, i need to translate several words from the ultracalendarcombo.
i need my own routines and cannot work with the system localisation (culture system) or use local ressourcestrings of the project.
i have several languages in a database which the user can edit by himself.
so i need translate here the label

august;
button today
and in the right picture Mai, Juni,Juli ....
can anyone help me?
thanks martin

Parents
  • 5118
    posted

    Hi Martin,

    The today button can be changed using the resource customizer (help topic: http://help.infragistics.com/NetAdvantage/WinForms/2011.1/CLR2.0/?page=Win_Assembly_Resource_Strings.html) and an example snippet is as follows:

    Infragistics.Shared.ResourceCustomizer rc = null;
    rc = Infragistics.Win.UltraWinSchedule.Resources.Customizer;
    rc.SetCustomizedString("LDR_DateButton_DefCaption_Today", "new today caption");

    As far as the other items (the month names) I believe that is just culture aware (change the UI Culture and the control should dislpay the month names in that culture) and we can't change it but let me dig a little deeper and see what I can come up with. 

Reply Children
No Data