Localization is the process of supporting multiple languages and regions in your apps and components. Lit has first-party support for localization through the @lit/localize library, which has a number of advantages that can make it a good choice over third-party localization libraries:
Native support for expressions and HTML markup inside localized templates. No need for a new syntax and interpolation runtime for variable substitution—just use the templates you already have.
Automatic re-rendering of Lit components when the locale switches.
Only 1.27 KiB (minified + compressed) of extra JavaScript.
Optionally compile for each locale, reducing extra JavaScript to 0 KiB.
To make a string or Lit template localizable, wrap it in the msg function. The msg function returns a version of the given string or template in whichever locale is currently active.
Before you have any translations available, msg simply returns the original string or template, so it's safe to use even if you're not yet ready to actually localize.
Strings that contain an expression must be tagged with either html or str in order to be localizable. You should prefer str over html when your string doesn't contain any HTML markup, because it has slightly less performance overhead. An error will be raised when you run the lit-localize command if you forget the html or str tag on a string with an expression.
Incorrect:
import {msg} from'@lit/localize';
msg(`Hello ${name}`);
Correct:
import {msg, str} from'@lit/localize';
msg(str`Hello ${name}`);
The str tag is required in these cases because untagged template string literals are evaluated to regular strings before they are received by the msg function, which means dynamic expression values could not otherwise be captured and substituted into the localized versions of the string.
A locale code is a string that identifies a human language, and sometimes also includes a region, script, or other variation.
Lit Localize does not mandate use any particular system of locale codes, though it is strongly recommended to use the BCP 47 language tag standard. Some examples of BCP 47 language tags are:
Lit Localize defines a few terms that refer to locale codes. These terms are used in this documentation, in the Lit Localize config file, and in the Lit Localize API:
Source locale
The locale that is used to write strings and templates in your source code.
Target locales
The locales that your strings and templates can be translated into.
Active locale
The global locale that is currently being displayed.
In runtime mode, one JavaScript or TypeScript module is generated for each of your locales. Each module contains the localized templates for that locale. When the active locale switches, the module for that locale is imported, and all localized components are re-rendered.
Runtime mode makes switching locales very fast because a page reload is not required. However, there is a slight performance cost to rendering performance compared to transform mode.
In transform mode, a separate folder is generated for each locale. Each folder contains a complete standalone build of your application in that locale, with msg wrappers and all other Lit Localize runtime code completely removed.
Transform mode requires 0 KiB of extra JavaScript and is extremely fast to render. However, switching locales requires re-loading the page so that a new JavaScript bundle can be loaded.
The lit-localize command-line tool looks for a config file called lit-localize.json in the current directory. Copy-paste the example below for a quick start, and see the CLI and config page for a full reference of all options.
If you're writing JavaScript, set the inputFiles property to the location of your .js source files. If you're writing TypeScript, set the tsConfig property to the location of your tsconfig.json file, and leave inputFiles blank.
Run lit-localize extract to generate an XLIFF file for each target locale. XLIFF is an XML format supported by most localization tools and services. XLIFF files will be written to the directory specified by the interchange.xliffDirconfig option.
lit-localize extract
For example, given the source:
msg('Hello World');
msg(str`Hello ${name}`);
msg(html`Hello <b>World</b>`);
Then a <xliffDir>/<locale>.xlf file will be generated for each target locale:
XLIFF files can be edited manually, but more typically they are sent to a third-party translation service where they are edited by language experts using specialized tools.
After uploading your XLIFF files to your chosen translation service, you will eventually receive new XLIFF files in response. The new XLIFF files will look just like the ones you uploaded, but with <target> tags inserted into each <trans-unit>.
When you receive new translation XLIFF files, save them to your configured interchange.xliffDir directory, overwriting the original versions.
Use the lit-localize build command to incorporate translations back into your application. The behavior of this command depends on the output mode you have configured.
Use the desc option to the msg function to provide human-readable descriptions for your strings and templates. These descriptions are shown to translators by most translation tools, and are highly recommended to help explain and contextualize the meaning of messages.
render() {
returnhtml`<button>
${msg("Launch", {
desc: "Button that begins rocket launch sequence.",
})}
</button>`;
}
Descriptions are represented in XLIFF files using <note> elements.
<trans-unit id="s512957aa09384646">
<source>Launch</source>
<note from="lit-localize">Button that begins rocket launch sequence.</note>
Lit Localize automatically generates an ID for every msg call using a hash of the string.
If two msg calls share the same ID, then they are treated as the same message, meaning they will be translated as a single unit and the same translations will be substituted in both places.
For example, these two msg calls are in two different files, but since they have the same content they will be treated as one message:
The following content does not affect ID generation:
The code inside an expression
The computed value of an expression
File location
For example, all of these messages share the same ID:
msg(html`Hello <b>${name}</b>`);
msg(html`Hello <b>${this.name}</b>`);
But this message has a different ID:
msg(html`Hello <i>${name}</i>`);
Note, while providing a description does not affect ID generation, multiple messages with the same ID but different description will produce an error during analysis to avoid ambiguity in the extracted translation unit. The following is considered invalid:
msg(html`Hello <b>${name}</b>`);
msg(html`Hello <b>${name}</b>`, {desc: 'A friendly greeting'});
Make sure that all messages with the same ID also have the same description.
Message IDs can be overridden by specifying the id option to the msg function. In some cases this may be necessary, such as when an identical string has multiple meanings, because each might be written differently in another language: