mirror of
https://github.com/mudler/LocalAI.git
synced 2026-06-12 18:58:49 -04:00
13 lines
365 B
JavaScript
13 lines
365 B
JavaScript
export default {
|
|
locales: ['en', 'it', 'es', 'de', 'zh-CN', 'id'],
|
|
defaultNamespace: 'common',
|
|
output: 'public/locales/$LOCALE/$NAMESPACE.json',
|
|
input: ['src/**/*.{js,jsx}'],
|
|
keySeparator: '.',
|
|
namespaceSeparator: ':',
|
|
defaultValue: (locale, _ns, key) => (locale === 'en' ? key : ''),
|
|
sort: true,
|
|
createOldCatalogs: false,
|
|
keepRemoved: false,
|
|
}
|