diff options
author | Ansh <anshnanda10@gmail.com> | 2023-12-22 23:30:39 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 23:30:39 +0530 |
commit | c1d7d9a41b091811d8f99a7627d8311468ca6683 (patch) | |
tree | 4bba3f70f7920364a95d97a37c35e521b6017e2f /lingui.config.js | |
parent | a5c151c04177e539543b6ad3e9c4504efc722468 (diff) | |
download | voidsky-c1d7d9a41b091811d8f99a7627d8311468ca6683.tar.zst |
Add Spanish localization (#2267)
* add french localization * get dynamic import to work * fix broken strings * fix bug * fix tests * build files again * add german locale * Add german translated strings * update file details * fix plural case errors * make german translations work * add 'es' as a locale option * enable spanish translations * fix spelling mistake
Diffstat (limited to 'lingui.config.js')
-rw-r--r-- | lingui.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lingui.config.js b/lingui.config.js index 3af72ebd0..58e8d65c5 100644 --- a/lingui.config.js +++ b/lingui.config.js @@ -1,6 +1,6 @@ /** @type {import('@lingui/conf').LinguiConfig} */ module.exports = { - locales: ['en', 'hi', 'ja', 'fr'], + locales: ['en', 'hi', 'ja', 'fr', 'de', 'es'], catalogs: [ { path: '<rootDir>/src/locale/locales/{locale}/messages', |