In R2 2019 RichTextEditor has a new GUI element, a toggle button named Simplified Ribbon. It looks neat, and I like it, but now I have to localize it. There is a link to a strings file on page https://docs.telerik.com/devtools/winforms/controls/richtexteditor/localization , but I can't find the text "simplified ribbon" in that xml file.
My fallback plan is to download the whole Telerik source code, I'm just reminding you here to update the file. And to ask you to update the file together with Telerik update in the future.
radRibbonBar1.RibbonBarElement.OptionsButton.Text =
"Options"
;
radRibbonBar1.RibbonBarElement.ExitButton.Text =
"Exit"
;
Two notes. Text "Simplfied Ribbon" is set to `Text` property of both `layoutModeButton` and `layoutModeTextElement`.
Also, there are also `OptionsButton` and `ExitButton` that should be localized.
this
.radRibbonBar1.LocalizationSettings.LayoutModeText =
"Compact Layout"
;
this
.richTextEditorRibbonBar1.RibbonBarElement.LayoutModeTextElement.Text =
"my text"
;
I have also updated your Telerik points.
I hope this information helps. If you need any further assistance please don't hesitate to contact me.