Setup with React project
Learn how to add internationalization to a React application using Lingui. This guide applies to any React project, including those created with Create React App.
Installation
- Babel
- SWC
-
Install
@lingui/cli
,@lingui/babel-plugin-lingui-macro
and Babel core packages as a development dependencies, and@lingui/react
as a runtime dependency:- npm
- Yarn
- pnpm
npm install --save-dev @lingui/cli @babel/core
npm install --save-dev @lingui/babel-plugin-lingui-macro
npm install --save @lingui/reactyarn add --dev @lingui/cli @babel/core
yarn add --dev @lingui/babel-plugin-lingui-macro
yarn add @lingui/reactpnpm add --save-dev @lingui/cli @babel/core
pnpm add --save-dev @lingui/babel-plugin-lingui-macro
pnpm add @lingui/react -
Add
lingui-macro
plugin to Babel config (e.g:.babelrc
):{
"plugins": ["@lingui/babel-plugin-lingui-macro"]
}When using any preset, first check if it includes the
macros
plugin. If so, then you don't need to install and set up@lingui/babel-plugin-lingui-macro
. For example, thereact-scripts
preset is known to contain themacros
plugin.
-
Install
@lingui/cli
, and@lingui/react
as a runtime dependency:- npm
- Yarn
- pnpm
npm install --save-dev @lingui/cli
npm install --save @lingui/reactyarn add --dev @lingui/cli
yarn add @lingui/reactpnpm add --save-dev @lingui/cli
pnpm add @lingui/react -
Install the
@lingui/swc-plugin
package as a development dependency:- npm
- Yarn
- pnpm
npm install --save-dev @lingui/swc-plugin
yarn add --dev @lingui/swc-plugin
pnpm add --save-dev @lingui/swc-plugin
Don't miss the Lingui ESLint Plugin which can help you find and prevent common l10n mistakes in your code.
Configuration
-
Create
lingui.config.js
file with LinguiJS configuration in root of your project (next topackage.json
). Replacesrc
with the directory name where you have source files:lingui.config.js/** @type {import('@lingui/conf').LinguiConfig} */
module.exports = {
locales: ["en", "cs", "fr"],
sourceLocale: "en",
catalogs: [
{
path: "<rootDir>/src/locales/{locale}/messages",
include: ["src"],
},
],
format: "po",
};This configuration will extract messages from source files inside
src
directory and write them into message catalogs insrc/locales
(English catalog would be in e.g:src/locales/en/messages.po
).PO format is recommended for message catalogs. See
format
documentation for other available formats. -
Add following scripts to your
package.json
:package.json{
"scripts": {
"extract": "lingui extract",
"compile": "lingui compile"
}
}
If you use TypeScript, you can add --typescript
flag to compile
script to produce compiled message catalogs with TypeScript types.
Usage
Check the installation by running:
- npm
- Yarn
- pnpm
npm run extract
yarn extract
pnpm run extract
There should be no error and you should see output similar following:
- npm
- Yarn
- pnpm
> npm run extract
Catalog statistics:
┌──────────┬─────────────┬─────────┐
│ Language │ Total count │ Missing │
├──────────┼─────────────┼─────────┤
│ cs │ 0 │ 0 │
│ en │ 0 │ 0 │
│ fr │ 0 │ 0 │
└──────────┴─────────────┴─────────┘
(use "lingui extract" to update catalogs with new messages)
(use "lingui compile" to compile catalogs for production)
> yarn extract
Catalog statistics:
┌──────────┬─────────────┬─────────┐
│ Language │ Total count │ Missing │
├──────────┼─────────────┼─────────┤
│ cs │ 0 │ 0 │
│ en │ 0 │ 0 │
│ fr │ 0 │ 0 │
└──────────┴─────────────┴─────────┘
(use "lingui extract" to update catalogs with new messages)
(use "lingui compile" to compile catalogs for production)
> pnpm run extract
Catalog statistics:
┌──────────┬─────────────┬─────────┐
│ Language │ Total count │ Missing │
├──────────┼─────────────┼─────────┤
│ cs │ 0 │ 0 │
│ en │ 0 │ 0 │
│ fr │ 0 │ 0 │
└──────────┴─────────────┴─────────┘
(use "lingui extract" to update catalogs with new messages)
(use "lingui compile" to compile catalogs for production)
Congratulations! You've successfully set up project with Lingui. Now it's good time to follow the React tutorial or read about ICU Message Format which is used in messages.