mirror of
https://github.com/zoriya/flood.git
synced 2025-12-05 23:06:20 +00:00
45 lines
631 B
JavaScript
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'}),
|
|
};
|