2300410b4d
* Add Greek language support to the application * Add support for Greek language in date handling and tests * Update Greek locale file with translator and team information * Add support for Greek language in date handling and tests * Add support for Greek language in app configuration, and updated translation from the reviewers' comments * Update src/locale/i18n.ts Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Update src/locale/i18n.ts Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com> Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>
45 lines
560 B
JavaScript
45 lines
560 B
JavaScript
/** @type {import('@lingui/conf').LinguiConfig} */
|
|
module.exports = {
|
|
locales: [
|
|
'en',
|
|
'an',
|
|
'ast',
|
|
'ca',
|
|
'de',
|
|
'el',
|
|
'en-GB',
|
|
'es',
|
|
'fi',
|
|
'fr',
|
|
'ga',
|
|
'gl',
|
|
'hi',
|
|
'hu',
|
|
'id',
|
|
'it',
|
|
'ja',
|
|
'km',
|
|
'ko',
|
|
'ne',
|
|
'nl',
|
|
'pl',
|
|
'pt-BR',
|
|
'ro',
|
|
'ru',
|
|
'th',
|
|
'tr',
|
|
'uk',
|
|
'vi',
|
|
'zh-CN',
|
|
'zh-HK',
|
|
'zh-TW',
|
|
],
|
|
catalogs: [
|
|
{
|
|
path: '<rootDir>/src/locale/locales/{locale}/messages',
|
|
include: ['src'],
|
|
},
|
|
],
|
|
format: 'po',
|
|
}
|