🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@grapecity-software/activereportsjs-i18n

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@grapecity-software/activereportsjs-i18n

Localization resources for ActiveReportsJS

latest
npmnpm
Version
6.1.2
Version published
Weekly downloads
39
-80%
Maintainers
2
Weekly downloads
 
Created
Source

ActiveReportsJS Localization

This package is part of ActiveReportsJS and provides localization resources for both the Report Viewer and Report Designer components.

Supported Languages

Localization support varies between components. Please refer to the lists below for the languages currently available:

Report Viewer Component

The Report Viewer supports the following localizations:

  • English (en)
  • Japanese (ja)
  • Chinese (zh)
  • Korean (ko)
  • Dutch (nl)
  • German (de)
  • Italian (it)
  • Brazilian Portuguese (pt-BR)
  • French (fr)

Report Designer Component

The Report Designer currently supports a more limited set of localizations:

  • English (en)
  • Japanese (ja)
  • Chinese (zh)
  • Korean (ko)
  • French (fr)
  • Italian (it)

Installation and Usage

Install ARJS Localization package

npm install @grapecity-software/activereportsjs-i18n

ActiveReportsJS Viewer

  • Add reference to localization package

using html script tag:

<script type="text/javascript" src="./dist/ar-js-locales.js"></script>

or import:

import '@grapecity-software/activereportsjs-i18n';
  • Pass necessary language to viewer using language property:
var viewer = new GCCN.ActiveReportsJS.ReportViewer.Viewer('#root', { language: 'ja' });

or in components

<Viewer language="ja" />
  • Also you can pass language property to PageReport ctr (can be used in exporting/printing reports without viewer):
var pageReport = new ARJS.PageReport({ language: 'ja' });

ActiveReportsJS Designer

  • Add reference to localization package

using html script tag:

<script type="text/javascript" src="./dist/designer/ja-locale.js"></script>
  • Pass necessary language to designer using language property:
var designer = new GCCN.ActiveReportsJS.ReportDesigner.Designer('#designer-host', { language: 'ja' });

Documentation

For more information on how to use ActiveReportsJS and available tools, refer to the Documentation or API reference for guidance.

Keywords

dt

FAQs

Package last updated on 25 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts