mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-10-23 03:31:56 +00:00
15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
import {defineConfig} from "i18next-cli";
|
|
|
|
export default defineConfig({
|
|
locales: ["en"],
|
|
extract: {
|
|
input: ["app/**/*.ts"],
|
|
output: "public/translations/{{language}}.json",
|
|
functions: ["t.__", "t.__mf"],
|
|
keySeparator: false,
|
|
nsSeparator: false,
|
|
sort: (a, b) => (a.key < b.key ? -1 : a.key > b.key ? 1 : 0),
|
|
indentation: "\t",
|
|
},
|
|
});
|