mirror of
https://github.com/maputnik/editor.git
synced 2026-05-20 15:10:00 +00:00
## Launch Checklist <!-- Thanks for the PR! Feel free to add or remove items from the checklist. --> - [x] Briefly describe the changes in this PR. - [x] Link to related issues. - [x] Include before/after visuals or gifs if this PR includes visual changes. - [x] Write tests for all new functionality. - [x] Add an entry to `CHANGELOG.md` under the `## main` section. --------- Co-authored-by: Harel M <harel.mazor@gmail.com>
11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
import { defineConfig } from "i18next-cli";
|
|
|
|
export default defineConfig({
|
|
locales: ["de", "fr", "he", "it", "ja", "ko", "tr", "zh"],
|
|
extract: {
|
|
input: ["src/**/*.{js,jsx,ts,tsx}"],
|
|
output: "src/locales/{{language}}/{{namespace}}.json",
|
|
defaultValue: "__STRING_NOT_TRANSLATED__"
|
|
}
|
|
});
|