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

Error in Localization CustomizeDialogBoxCaption

1 Answer 35 Views
Toolstrip (obsolete as of Q3 2010)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
slear
Top achievements
Rank 1
slear asked on 18 Apr 2010, 12:10 AM
Correct me if I'm wrong, but it seems that in this scenario

    public class ItalianToolStripLocalizationProvider : RadToolStripLocalizationProvider
    {
        public override string GetLocalizationString(RadToolStripLocalizationStringId localizationString)
        {
            switch (localizationString)
            {
                case RadToolStripLocalizationStringId.CloseButton:
                    return "Chiudi";
                case RadToolStripLocalizationStringId.ResetButton:
                    return "Resetta";
                case RadToolStripLocalizationStringId.ToolBarsTabItem:
                    return "Barre Strumenti";
                case RadToolStripLocalizationStringId.CustomizeDialogCaption:
                    return "Personalizza";
                case RadToolStripLocalizationStringId.AddorRemoveButtons:
                    return "Aggiungi o rimuovi pulsanti";
                case RadToolStripLocalizationStringId.NoTextAssociated:
                    return "Nessun testo associato";
                case RadToolStripLocalizationStringId.ResetToolBar:
                    return "Resetta Barra Strumenti";
                case RadToolStripLocalizationStringId.Customize:
                    return "Personalizza";
                case RadToolStripLocalizationStringId.ResetToolBarsAlertMessage:
                    return "Si desidera veramente resettare la barra degli strumenti?";
            }
            System.Diagnostics.Debug.WriteLine("TOOLSTRIP:" + localizationString);
            return string.Empty;
        }
the case in bold font will never be called, so when you open the customize dialog box you see the english text.
(By the way 'Cusomize' is not right too)..

1 Answer, 1 is accepted

Sort by
0
Nikolay
Telerik team
answered on 22 Apr 2010, 12:45 PM
Hello slear,

Thank you for reporting these issues.

I was able to reproduce them. They will be addressed in Q1 2010 SP2 due in the first half of May.

Your Telerik points have been updated for your feedback.

All the best,
Nikolay
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
Toolstrip (obsolete as of Q3 2010)
Asked by
slear
Top achievements
Rank 1
Answers by
Nikolay
Telerik team
Share this question
or