Skip to content

Set Handsontable’s UI language to one of the built-in translations, or create your own language set using our templates.

Overview

You can easily change the text of the UI for the purpose of translating it to specific languages. We provide the developer with predefined languages, which can be applied by loading the language set and changing just one setting, and an ability to use their own language sets, created using templates of existing language files.

Load the prepared language files

To properly use the internationalization feature, you need to load the language sets. It’s important that they’re included after the Handsontable files. You can do it by getting the necessary files created with the UMD standard:

  1. ES modules (ESM)

    import Handsontable from 'handsontable/base';
    import { registerLanguageDictionary, deDE } from 'handsontable/i18n';
    registerLanguageDictionary(deDE);
    const hot = new Handsontable(container, {
    language: deDE.languageCode,
    });
  2. CommonJS (CJS)

    const Handsontable = require('handsontable/base').default;
    const { registerLanguageDictionary, deDE } = require('handsontable/i18n');
    registerLanguageDictionary(deDE);
    const hot = new Handsontable(container, {
    language: deDE.languageCode,
    });
  3. Universal Module Definition (UMD)

    Languages included this way are ready to use immediately after loading the file. Each file contains a UMD loader that looks for Handsontable in a global/externals context. If Handsontable is available then it registers itself in the proper context.

    <script type="text/javascript" src="dist/handsontable.full.js"></script>
    <script type="text/javascript" src="dist/languages/de-DE.js"></script>
    <script>
    const hot = new Handsontable(container, {
    language: 'de-DE',
    });
    </script>

Demo

To see the translated context menu, right-click on a cell.

Language files were loaded after loading Handsontable.

JavaScript
import Handsontable from 'handsontable/base';
import { registerAllModules } from 'handsontable/registry';
import { registerLanguageDictionary, deDE } from 'handsontable/i18n';
// Register all Handsontable's modules.
registerAllModules();
registerLanguageDictionary(deDE);
const container = document.querySelector('#example1');
const data = [
['Lorem', 'ipsum', 'dolor', 'sit', '12/1/2015', 23],
['adipiscing', 'elit', 'Ut', 'imperdiet', '5/12/2015', 6],
['Pellentesque', 'vulputate', 'leo', 'semper', '10/23/2015', 26],
['diam', 'et', 'malesuada', 'libero', '12/1/2014', 98],
['orci', 'et', 'dignissim', 'hendrerit', '12/1/2016', 8.5],
];
new Handsontable(container, {
data,
contextMenu: true,
height: 'auto',
language: 'de-DE',
autoWrapRow: true,
autoWrapCol: true,
licenseKey: 'non-commercial-and-evaluation',
});
TypeScript
import Handsontable from 'handsontable/base';
import { registerAllModules } from 'handsontable/registry';
import { registerLanguageDictionary, deDE } from 'handsontable/i18n';
// Register all Handsontable's modules.
registerAllModules();
registerLanguageDictionary(deDE);
const container: Element = document.querySelector('#example1')!;
const data: [string, string, string, string, string, number][] = [
['Lorem', 'ipsum', 'dolor', 'sit', '12/1/2015', 23],
['adipiscing', 'elit', 'Ut', 'imperdiet', '5/12/2015', 6],
['Pellentesque', 'vulputate', 'leo', 'semper', '10/23/2015', 26],
['diam', 'et', 'malesuada', 'libero', '12/1/2014', 98],
['orci', 'et', 'dignissim', 'hendrerit', '12/1/2016', 8.5],
];
new Handsontable(container, {
data,
contextMenu: true,
height: 'auto',
language: 'de-DE',
autoWrapRow: true,
autoWrapCol: true,
licenseKey: 'non-commercial-and-evaluation',
});

List of translatable features

Below is a list of features which can be translated:

  • Alignment
  • Comments
  • Context menu
  • Cut and Copy (along with headers)
  • Custom borders
  • Dropdown menu
  • Filtering
  • Freezing
  • Hiding columns
  • Hiding rows
  • Merge cells
  • Nesting rows
  • Pagination
  • Read-only
  • Undo and Redo
  • Dialogs (including Loading indicator)

List of available languages

By default, Handsontable uses the English - United States language-country set (en-US code) for creating the text of UI elements. However, it can be used like every extra, “non-standard” language file, thus the en-US.js file can be found in /dist/languages, /languages and /src/languages folders. Currently, we also distribute extra language-country files:

Language fileLanguageCodeNote
ar-AR.jsArabic - Globalar-ARSet the layout direction to RTL
cs-CZ.jsCzech - Czechiacs-CZ
de-CH.jsGerman - Switzerlandde-CH
de-DE.jsGerman - Germanyde-DE
es-MX.jsSpanish - Mexicoes-MX
fa-IR.jsPersian - Iranfa-IR
fr-FR.jsFrench - Francefr-FR
hr-HR.jsCroatian - Croatiahr-HR
it-IT.jsItalian - Italyit-IT
ja-JP.jsJapanese - Japanja-JPEnable imeFastEdit for better editing experience
ko-KR.jsKorean - Koreako-KREnable imeFastEdit for better editing experience
lv-LV.jsLatvian - Latvialv-LV
nb-NO.jsNorwegian (Bokmål) - Norwaynb-NO
nl-NL.jsDutch - Netherlandsnl-NL
pl-PL.jsPolish - Polandpl-PL
pt-BR.jsPortuguese - Brazilpt-BR
ru-RU.jsRussian - Russiaru-RU
sr-SP.jsSerbian (Latin) - Serbiasr-SP
zh-CN.jsChinese - Chinazh-CNEnable imeFastEdit for better editing experience
zh-TW.jsChinese - Taiwanzh-TWEnable imeFastEdit for better editing experience

Create custom languages

You can create custom language sets for your implementations, or share them, as they’re easily applicable to any Handsontable implementation.

Language file

It’s really important for us, that the community is a important part of the growth of our library. We encourage you to create and share your translations!

Additional languages files should be placed in the src/i18n/languages folder of the Handsontable repository with name corresponding to the chosen language code (described below, for example: es-VE.js). You can incorporate your translations to the Handsontable library by sending us a pull request. It’s important, that your changes are not made to the /languages and /dist/languages directories! We will generate the final files to be placed there. After that, you’ll be able to use the languages in Handsontable.

You can see a full template of a sample language at the bottom of this paragraph. We’re basing it on our default language pack. Parts of the file creation process are described below.

  1. Add a file header comment

    The file should start with a comment containing the translation authors (separated by commas, for example: Authors: Chris Wick, John Kyle), “last updated” date (in format: mmm dd, yyyy, for example: Last updated: Jan 01, 2017) and a description.

    /**
    * @preserve
    * Authors: Chris Wick, John Kyle
    * Last updated: Nov 15, 2017
    *
    * Description: Definition file for Spanish - Venezuela language-country.
    */
  2. Import the dictionary keys

    Import the dictionary keys to be used in the translation.

    import * as C from '../constants';
  3. Create the language dictionary object

    The language dictionary object should contain a languageCode key (in format: two lowercase letters, hyphen, two uppercase letters, for example: languageCode: ‘es-PY’) which will determine the language code to be used in the language property in the Handsontable settings and dictionaries keys with their corresponding translations.

    const dictionary = {
    languageCode: 'es-VE',
    [C.CONTEXTMENU_ITEMS_ROW_ABOVE]: 'Insertar fila arriba',
    ...
    }
  4. Export the dictionary

    Place a default export of the created dictionary.

    export default dictionary;
  5. Review the complete file

    A simple, sample language dictionary can look like the snippet below. The /languages and /dist/languages folders will be generated by the build process. Files from those localizations can be included as shown in this section. After loading them, you will be able to use the language. You can do it by changing the language setting of Handsontable to es-VE.

    /**
    * @preserve
    * Authors: Chris Wick, John Kyle
    * Last updated: Nov 15, 2017
    *
    * Description: Definition file for Spanish - Venezuela language-country.
    */
    import * as C from '../constants';
    const dictionary = {
    languageCode: 'es-VE',
    [C.CONTEXTMENU_ITEMS_ROW_ABOVE]: 'Insertar fila arriba',
    };
    export default dictionary;
  6. Register the file in the index

    Import the already created file inside the src/i18n/languages/index.js file and export it like it’s shown in the snippet below (keys in a alphabetical order).

    import deCH from './de-CH';
    import deDE from './de-DE';
    import enUS from './en-US';
    import esVE from './es-VE';
    import plPL from './pl-PL';
    export {
    deCH,
    deDE,
    enUS,
    esVE,
    plPL
    };
  7. Share your translation

    You’ve created a language which can be used just by you or shared with others. We wait for at least 5 positive feedback from users to accept a created pull request.

Local language

You can register a language dictionary which is not a part of the Handsontable package. To do so, use the static Handsontable.languages.registerLanguageDictionary method and the static constant Handsontable.languages.dictionaryKeys which are described briefly in the next section.

const C = Handsontable.languages.dictionaryKeys;
Handsontable.languages.registerLanguageDictionary({
languageCode: 'morse',
// Your translation in the Morse code
[C.FILTERS_BUTTONS_OK]: '--- -•-'
});

Use custom keys in the translation

You can register a language dictionary containing custom keys. These entries can be used like any other keys, so you’re not limited to using our pre-defined constants (the ones that are present within src/i18n/constants.js file and may be accessed by Handsontable.languages.dictionaryKeys alias).

const enUSDictionary = Handsontable.languages.getLanguageDictionary('en-US');
enUSDictionary.customKey = 'Hello world';
Handsontable.languages.registerLanguageDictionary(enUSDictionary); // re-registration
Handsontable.languages.getTranslatedPhrase('en-US', 'customKey'); // 'Hello world'

Static Handsontable methods and properties

Handsontable has a few static methods and properties connected with languages. They are stored in the languages key of the global Handsontable variable. All of them are described below.

Get language dictionary for specific language code

Handsontable.languages.getLanguageDictionary(languageCode: String)

Returns: Object

Get the registered language dictionaries

Handsontable.languages.getLanguagesDictionaries()

Returns: Array

Get the phrase for specified dictionary key

Handsontable.languages.getTranslatedPhrase(languageCode: String, dictionaryKey: String, extraArguments: Mixed)

Returns: Object

Register a language dictionary for a specific language code

Handsontable.languages.registerLanguageDictionary(languageCodeOrDictionary: Mixed, dictionary: Object)

Returns: Object

Dictionary constants

Handsontable.languages.dictionaryKeys

Contains: Object

Related guides

Configuration options

Core methods

Hooks