mirror of
https://github.com/fankes/beszel.git
synced 2025-10-18 17:29:28 +08:00
46 lines
512 B
TypeScript
46 lines
512 B
TypeScript
import { defineConfig } from "@lingui/cli"
|
|
|
|
export default defineConfig({
|
|
locales: [
|
|
"en",
|
|
"ar",
|
|
"bg",
|
|
"cs",
|
|
"da",
|
|
"de",
|
|
"es",
|
|
"fa",
|
|
"fr",
|
|
"hr",
|
|
"hu",
|
|
"it",
|
|
"is",
|
|
"ja",
|
|
"ko",
|
|
"nl",
|
|
"no",
|
|
"pl",
|
|
"pt",
|
|
"tr",
|
|
"ru",
|
|
"sl",
|
|
"sv",
|
|
"uk",
|
|
"vi",
|
|
"zh",
|
|
"zh-CN",
|
|
"zh-HK",
|
|
],
|
|
sourceLocale: "en",
|
|
compileNamespace: "ts",
|
|
formatOptions: {
|
|
lineNumbers: false,
|
|
},
|
|
catalogs: [
|
|
{
|
|
path: "<rootDir>/src/locales/{locale}/{locale}",
|
|
include: ["src"],
|
|
},
|
|
],
|
|
})
|