具有不同文化的 Telerik 报告的本地化-在 MVC 应用程序中

Localization of Telerik Reports with different Cultures- in MVC application

我目前正在使用 Telerik Reporting localization.i 是 telerik 的新手 reports.please 任何人都可以帮助我如何本地化 telerik 报告以在我的 MVC 应用程序中以特定文化的语言显示.例如,我的报告必须根据用户要求以英语和马来语显示。

只需几个步骤即可在 Telerik Report 中添加本地化(您可以在 official documentation 中轻松找到):

  1. 像往常一样构建您的报告。例如用英文制作。
  2. 单击报表区域的任意位置,然后单击右键打开报表属性 window。在那里,将报告 Localizable 属性 设置为 true.
  3. Select 语言 属性 列表中的马来语。
  4. 您可以将静态文本更改为马来语。

在保存设计视图时,您会看到创建了另一个资源文件,结果架构如下:

  • MyReport.cs
    • MyReport.Designer.resx
    • MyReport.ms.resx
    • MyReport.resx
    • 我的报告

感谢您的回复。我们完成了这个Localization in ASP.NET MVC 4 "article,and we rechecked what mistake we done previously,we follow all the steps which mentioned in ther telerik reporting official document,但我们错过了 route.config 文件中的设置。现在通过应用这些设置解决了这个问题。