mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-16 18:26:16 +01:00
16 lines
353 B
TypeScript
16 lines
353 B
TypeScript
import type { LinguiConfig } from "@lingui/conf"
|
|
|
|
const config: LinguiConfig = {
|
|
locales: ["en", "ar", "de", "es", "fr", "ja", "ko", "pt", "tr", "ru", "uk", "vi", "zh-CN", "zh-HK"],
|
|
sourceLocale: "en",
|
|
compileNamespace: "ts",
|
|
catalogs: [
|
|
{
|
|
path: "<rootDir>/src/locales/{locale}/{locale}",
|
|
include: ["src"],
|
|
},
|
|
],
|
|
}
|
|
|
|
export default config
|