Files
flood/lingui.config.js
2024-08-10 21:12:22 +08:00

45 lines
631 B
JavaScript

import {formatter} from '@lingui/format-json';
export default {
locales: [
'af',
'ar',
'ca',
'cs',
'da',
'de',
'el',
'en',
'es',
'fi',
'fr',
'he',
'hu',
'it',
'ja',
'ko',
'nl',
'no',
'pl',
'pt',
'ro',
'ru',
'sr',
'sv',
'tr',
'uk',
'vi',
'zh-Hans',
'zh-Hant',
],
sourceLocale: 'en',
catalogs: [
{
path: 'client/src/javascript/i18n/strings/{locale}',
include: ['<rootDir>/client/src/javascript'],
exclude: ['**/node_modules/**'],
},
],
format: formatter({style: 'minimal'}),
};