68c4737b82
* Add Danish localization * Fix * Update src/locale/locales/da/messages.po Co-authored-by: Frudrax Cheng <i@cynosura.one> * Typo * Inconsistent translation of "draft" * Do not use "post" as verb * Change "post"/"repost" to "opslag"/"videredeling" * Fix "About" * Fix * Add to iOS config * Sort alphabetically * Typo fixes by @kseistrup * Fix gender of "opslag" * Plural * "videredeling" > "deling" * Be specific that ÆØÅ is not allowed * Add new strings from main --------- Co-authored-by: Frudrax Cheng <i@cynosura.one>
48 lines
590 B
JavaScript
48 lines
590 B
JavaScript
/** @type {import('@lingui/conf').LinguiConfig} */
|
|
module.exports = {
|
|
locales: [
|
|
'en',
|
|
'an',
|
|
'ast',
|
|
'ca',
|
|
'da',
|
|
'de',
|
|
'el',
|
|
'en-GB',
|
|
'es',
|
|
'eu',
|
|
'fi',
|
|
'fr',
|
|
'ga',
|
|
'gl',
|
|
'hi',
|
|
'hu',
|
|
'id',
|
|
'it',
|
|
'ja',
|
|
'km',
|
|
'ko',
|
|
'ne',
|
|
'nl',
|
|
'pl',
|
|
'pt-BR',
|
|
'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',
|
|
}
|