Translation not working for QuickAccessToolBar

0 Answers 31 Views
Localization RibbonView and RibbonWindow
Alessandro
Top achievements
Rank 1
Alessandro asked on 13 Nov 2023, 03:24 PM | edited on 13 Nov 2023, 03:28 PM

We are trying to add the translation for the QuickAccessToolBar ribbon, but altough I have added the Identifier in our Resources. The entries remains in english.

if I select Show below the Ribbon, then some translation are applied others not:

What are we missing?

We using Telerik Version: 2022.2.815.45

We have added the identifier defined in this link in our resources:

WPF RibbonView - Localization - Telerik UI for WPF

 

Dinko
Telerik team
commented on 15 Nov 2023, 03:48 PM

Hi Alessandro,

I prepared a sample project where I added German culture without using custom localization, but cannot recreate the issue.

public partial class MainWindow : Window
{
	public MainWindow()
	{
		Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("de-DE");
		Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("de-DE");

		InitializeComponent();
	}
}

The result is as following:

Can you show me your setup that recreates this?

Also, you can take a look at this tutorial about how to create a custom localization for the RadRibbonView QuickAccessToolBar if you want to create your own custom localization.

Regards,
Dinko
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

No answers yet. Maybe you can help?

Tags
Localization RibbonView and RibbonWindow
Asked by
Alessandro
Top achievements
Rank 1
Share this question
or