ActiveReports 13
Localize and Deploy
ActiveReports 13 > ActiveReports User Guide > Viewing Reports > HTML5 > Localize and Deploy

Localization

The HTML5 viewer can be localized by localizing the strings present in the en.txt file and then using it through the localeUri option while initializing the viewer. The en.txt file contains strings for viewer's toolbar items, panes, dialogs and errors. These strings can be localized to any culture and should be saved in the UTF-8 format. Follow these steps to learn localizing the HTML5 viewer:

  1. Go to C:\Program Files (x86)\GrapeCity\ActiveReports 13\Deployment\Html\i18n and open the en.txt file in a Notepad.
  2. Localize the strings in the file to any desired culture and save the file in the UTF-8 format as jp.txt.
  3. Add the newly created localized file to the project containing the HTML5 viewer. See Using Javascript to learn creating the HTML5 viewer.
  4. In the targeted HTML page that contains code to create the HTML5 viewer, paste the following code:
    XML
    Copy Code
    var viewer = GrapeCity.ActiveReports.Viewer(
    {
       localeUri: 'Scripts/i18n/jp.txt'
    });     
    
  5. Press F5 to run the project and navigate to the webpage containing the HTML5 Viewer with localized strings.

Deployment

You can deploy the HTML5 viewer on IIS by deploying the ActiveReports Web Application that contains the viewer.

See Using Javascript to learn creating the HTML5 viewer in a ASP.Net Web Application project and Deploy Web Applications to learn deploying an ActiveReport Web Application.