Help
Javascript app internationalization and localization
JavaScript (JS) is a lightweight interpreted or JIT-compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles.
- Created by
- Brendan Eich
- Released
- December 4, 1995
- Links
-
https://developer.mozilla.org/en-US/docs/Web/JavaScript
Wikipedia
🔗Javascript applications are usually translated these file formats
🔗Related Platforms
🔗Best way to localize Javascript
The first step is to extract the text to translate into language files. This process is called internationalization. You can move the text to translate into JSON hashes and call them in your Javascript.
Once you have internationalized your Javascript, use a translation software localization tool such as WebTranslateIt to manage your localization workflow.
It is easy to translate a Javascript app with WebTranslateIt. Create a project, upload your source language file in the File Manager and translate it on the Translation Interface.
The tools included in WebTranslateIt, such as Batch Operations, the Translation Memory or Machine Translation can help you translate that file automatically, faster and cost effectively.
🔗Links of interest
- WebTranslateIt’s CLI to help sync language files.
- airbnb.io/polyglot.js Tiny i18n helper library written in JavaScript, made to work both in the browser and in CommonJS environments
- MDN: Intl object Documentation for standard intl object from JavaScript
- Format.JS Internationalize your web apps on the client & server
- MessageFormat/Jed Gettext support for Javascript
- Lisan Fast and small i18n library for Javascript.
- Lingui/LinguiJS A readable, automated, and optimized (5 kb) internationalization for JavaScript
- ttag Modern javascript i18n localization library based on ES6 tagged templates
- messageformat/messageformat ICU MessageFormat for JavaScript.
- lukeed/rosetta A general purpose internationalization library in 292 bytes.