diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2024-11-22 11:34:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-22 11:34:37 +0000 |
commit | 058a29c6e3e4e00c9ee71d56382435b95cb3d3be (patch) | |
tree | ace5728b77afd048fc944291e9cd688b2560810a /app.config.js | |
parent | 09ce65b24e968cfc0c45d8239dfbc995afcc78a8 (diff) | |
download | voidsky-058a29c6e3e4e00c9ee71d56382435b95cb3d3be.tar.zst |
Add `CFBundleLocalizations` key to `Info.plist` (#6567)
Diffstat (limited to 'app.config.js')
-rw-r--r-- | app.config.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app.config.js b/app.config.js index 56142c5f1..149b949e6 100644 --- a/app.config.js +++ b/app.config.js @@ -93,6 +93,30 @@ module.exports = function (config) { NSPhotoLibraryUsageDescription: 'Used for profile pictures, posts, and other kinds of content', CFBundleSpokenName: 'Blue Sky', + CFBundleLocalizations: [ + 'en', + 'ca', + 'de', + 'es', + 'fi', + 'fr', + 'ga', + 'hi', + 'hu', + 'id', + 'it', + 'ja', + 'ko', + 'pl', + 'pt', + 'ru', + 'th', + 'tr', + 'uk', + 'zh_CN', + 'zh_HK', + 'zh_TW', + ], }, associatedDomains: ASSOCIATED_DOMAINS, splash: { |