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

Adding Telerik.Windows.Controls.resources.dll to SL

2 Answers 369 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Alex Sorokoletov
Top achievements
Rank 1
Alex Sorokoletov asked on 07 May 2010, 02:19 PM
Hi!
I've found inside telerik folder in /Silverlight/Binaries/de/ file called Telerik.Windows.Controls.resources.dll.
I suppose it's a satellite assembly with deutch resources for silverlight controls.
The problem, however, is that I cannot reference this assembly, because it's not Silverlight-compiled assembly.

Assembly version is: 2009.3.1314.1030.

Thank you.

2 Answers, 1 is accepted

Sort by
0
Yordanka
Telerik team
answered on 13 May 2010, 11:11 AM
Hi Alex Sorokoletov,

Please, excuse us for the late respond.
This file cannot be used as a reference. It will be added automatically in the project .xap file when <SupportedCultures> has been set. To localize your application you need to perform some actions described in the steps below:
- Unload the project, right click on it and select to edit the project file. Set the supported culture - in your case it will be
<SupportedCultures>de</SupportedCultures>

- Reload the project. In App.xaml.cs file define the culture in the application's constructor:
Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("de-DE");

You can refer to this help article for more information.

Best wishes,
Yordanka
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.
0
Alex Sorokoletov
Top achievements
Rank 1
answered on 13 May 2010, 11:43 AM
Hi guys!
We have the supported cultures set, but still have no "de" assemblies in output.

Tags
General Discussions
Asked by
Alex Sorokoletov
Top achievements
Rank 1
Answers by
Yordanka
Telerik team
Alex Sorokoletov
Top achievements
Rank 1
Share this question
or