* Update app.config.js * Update lingui.config.js * Update dates.ts * Update helpers.ts * Update i18n.ts * Update i18n.web.ts * Update languages.ts * Create messages.po * prettier
54 lines
653 B
JavaScript
54 lines
653 B
JavaScript
/** @type {import('@lingui/conf').LinguiConfig} */
|
|
module.exports = {
|
|
locales: [
|
|
'en',
|
|
'an',
|
|
'ast',
|
|
'ca',
|
|
'cy',
|
|
'da',
|
|
'de',
|
|
'el',
|
|
'en-GB',
|
|
'eo',
|
|
'es',
|
|
'eu',
|
|
'fi',
|
|
'fr',
|
|
'fy',
|
|
'ga',
|
|
'gd',
|
|
'gl',
|
|
'hi',
|
|
'hu',
|
|
'ia',
|
|
'id',
|
|
'it',
|
|
'ja',
|
|
'km',
|
|
'ko',
|
|
'ne',
|
|
'nl',
|
|
'pl',
|
|
'pt-BR',
|
|
'pt-PT',
|
|
'ro',
|
|
'ru',
|
|
'sv',
|
|
'th',
|
|
'tr',
|
|
'uk',
|
|
'vi',
|
|
'zh-CN',
|
|
'zh-HK',
|
|
'zh-TW',
|
|
],
|
|
catalogs: [
|
|
{
|
|
path: '<rootDir>/src/locale/locales/{locale}/messages',
|
|
include: ['src'],
|
|
},
|
|
],
|
|
format: 'po',
|
|
}
|