Skip to main content
All docs
V25.2
  • Localization in Reporting for Vue

    • 4 minutes to read

    This topic describes how to localize the Document Viewer and End-User Report Designer UI in a Vue application.

    Use JSON Files

    In Vue applications, load the localized JSON resources and use the CustomizeLocalization callback to load localized strings using the LoadMessages method. You can also use the UpdateLocalization method to substitute particular strings.

    Obtain JSON Files from the Localization Service

    1. Log into the DevExpress website.

    2. Open the DevExpress Localization Service.

    3. Select your target language, modify translations, and click the Download button. Refer to the following help topic for detailed information: Localization Service.

    4. Unpack the downloaded executable file to get the satellite assemblies and json resources directory. This directory contains the following JSON files required to localize the reporting controls (where xx is a culture name):

      File Name Localization Strings
      dx-analytics-core.xx.json Shared Components: Query Builder, Data Source Wizard, Filter Editor, Expression Editor
      dx-reporting.xx.json Web Document Viewer, End-User Report Designer and other reporting-specific components
      dx-rich.xx.json (optional) Inline Rich Text Editor used in the End-User Report Designer

    Tip

    The component’s UI is built on DevExtreme widgets, so to localize the editors you should also use one of the approaches described in the following topic: DevExtreme - Localization. Specify web server’s thread culture to apply culture-specific formats to numbers and dates.

    Localize the Application

    1. Copy the dx-analytics-core.xx.json, dx-reporting.xx.json, and dx-rich.xx.json (optional) (where xx is the culture ID) files obtained in the previous section to the application root folder.

    2. Open the component file and add the code that handles the CustomizeLocalization callback. The following code uses JQuery to load JSON files with translations and substitutes localizable strings with their German equivalents:

      <script>
      // ...
      import $ from "jquery";
      
      export default {
          //...
          mounted() {
              // ...
              var    callbacks = {  
                  CustomizeLocalization: function (s,e) {
                      e.LoadMessages($.get("./dx-analytics-core.de.json"));
                      e.LoadMessages($.get("./dx-reporting.de.json"));
                      s.UpdateLocalization({
                          'Search': 'Suche',
                          'Search result': 'Suchergebnisse',
                          'Next Page': 'Nächste Seite',
                          'Export Options': 'Exportoptionen',
                          'The document does not contain any pages.': 'Keine Daten'
                      });                
                  }
              };    
              ko.applyBindings({
                  // ...
                  callbacks: callbacks
              }, this.$refs.viewer);
          }
      };
      </script>
      
    3. Recompile the project and open the application in the browser (default URL is http://localhost:8080/).

    Use UI Localization Client

    Note

    The UI Localization Client requires localization resources to be loaded from the server to work properly in a Vue application.

    The UI Localization Client is a cross-platform utility that helps you identify non-translated strings in DevExpress UI controls and translate them during a debug session. The utility generates RESX files with translated resources and adds them to the project. The UI Localization Client loads all Web Reporting resource strings after the controls are rendered and does not reflect later UI interactions.

    To use the UI Localization Client in your application:

    For more information refer to the following topic: UI Localization Client.

    The resource strings for the Web Reporting Controls (Web Document Viewer and Web Report Designer) are located in the following localization containers in the UI Localization Client window:

    DevExpress.XtraReports.Web.Localization.LocalizationContainer
    Contains localization strings specific only to the Web Reporting Controls.
    DevExpress.Utils.Localization.CoreLibraryResources
    Contains cross-platform localization strings used in the Web Reporting Controls.
    DevExpress.Web.Resources.Localization.LocalizationContainer
    Contains localization strings common to DevExpress Web Components used in the Web Reporting Controls.

    Troubleshooting

    • If you followed the instructions in the UI Localization Client topic and the translated resources do not appear on your web page, try clearing browser cache.
    • If you use an ASP.NET Core backend and after following the instructions in the UI Localization Client topic the resource strings do not appear in the UI Localization Client window, call the HandleRequestsFromAllThreads() method at application startup to use localizer objects across all application threads.

    Identify Non-Translated Strings

    • Use our UI Localization Client tool shipped as part of your DevExpress subscription. This tool streamlines the entire localization process. You can quickly find non-translated strings and translate them during a debug session.
    • Handle the XtraLocalizer.QueryLocalizedStringNonTranslated event to collect non-localized resource strings for further translation. The event allows you to focus on strings that require translation in your application.