diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2024-12-02 17:28:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-02 17:28:11 +0000 |
commit | 770eeb59ca583c9bbc121790e0393195eda6b796 (patch) | |
tree | 0a270aa544f67d0719a723250bb6fff8c1eb428e /app.config.js | |
parent | 5f4a0f2881b9420f3a3f3fb6527352f58a99d9ea (diff) | |
download | voidsky-770eeb59ca583c9bbc121790e0393195eda6b796.tar.zst |
Add new languages to `CFBundleLocalizations` key (#6835)
* Order tweak in lingui.config.js * Add new languages to `CFBundleLocalizations` key * Order tweak in dates.ts * hyphen to en-dash * change two `zh` tags to use script rather than region * `zh_HK` ➡️ `yue-Hant` * `pt` ➡️ `pt-BR`
Diffstat (limited to 'app.config.js')
-rw-r--r-- | app.config.js | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/app.config.js b/app.config.js index fd754a50f..650191758 100644 --- a/app.config.js +++ b/app.config.js @@ -95,27 +95,32 @@ module.exports = function (config) { CFBundleSpokenName: 'Blue Sky', CFBundleLocalizations: [ 'en', + 'an', + 'ast', 'ca', 'de', 'es', 'fi', 'fr', 'ga', + 'gl', 'hi', 'hu', 'id', 'it', 'ja', 'ko', + 'nl', 'pl', - 'pt', + 'pt-BR', 'ru', 'th', 'tr', 'uk', - 'zh_CN', - 'zh_HK', - 'zh_TW', + 'vi', + 'yue-Hant', + 'zh-Hans', + 'zh-Hant', ], }, associatedDomains: ASSOCIATED_DOMAINS, |