WPF report viewer: localization of export formats

0 Answers 74 Views
Localization Report Viewer - WPF
Patrick
Top achievements
Rank 2
Iron
Iron
Iron
Patrick asked on 14 Mar 2022, 08:57 AM

Hello,

For the WPF report viewer, we can localize almost everything... excepted for the export formats.

I'm talking of the list that appears when we click the "Export" button on the viewer. The drop down list contains English text, such as "Acrobat (PDF) file" that can't be localized.

Do you have any tip to make them change to another language?

Regards

Neli
Telerik team
commented on 17 Mar 2022, 07:19 AM

Hi Patrrick,

You can change the description in the app.config file as follows:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
		<configSections>
		<section
				name="Telerik.Reporting"
				type="Telerik.Reporting.Configuration.ReportingConfigurationSection, Telerik.Reporting"
				allowLocation="true"
				allowDefinition="Everywhere"/>
    
	</configSections>
	<Telerik.Reporting>
		<extensions>
			<render>
				<extension name="PDF" description="My PDF Description">
					<parameters>
						<parameter name="DocumentAuthor" value="John Doe"/>
					</parameters>
				</extension>
			</render>
		</extensions>
	</Telerik.Reporting>
</configuration>

Patrick
Top achievements
Rank 2
Iron
Iron
Iron
commented on 17 Mar 2022, 03:25 PM

Thank you Neli, it works!

No answers yet. Maybe you can help?

Tags
Localization Report Viewer - WPF
Asked by
Patrick
Top achievements
Rank 2
Iron
Iron
Iron
Share this question
or