Browse Source
Merge pull request #10760 from FearlessTobi/translations
android: Declare languages in locales_config.xml
pull/15/merge
Charles Lombardo
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
18 additions and
0 deletions
-
src/android/app/src/main/AndroidManifest.xml
-
src/android/app/src/main/res/xml/locales_config.xml
|
|
|
@ -24,6 +24,7 @@ SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
android:hasFragileUserData="true" |
|
|
|
android:supportsRtl="true" |
|
|
|
android:isGame="true" |
|
|
|
android:localeConfig="@xml/locales_config" |
|
|
|
android:banner="@drawable/tv_banner" |
|
|
|
android:extractNativeLibs="true" |
|
|
|
android:fullBackupContent="@xml/data_extraction_rules" |
|
|
|
|
|
|
|
@ -0,0 +1,17 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<locale-config xmlns:android="http://schemas.android.com/apk/res/android"> |
|
|
|
<locale android:name="en" /> <!-- English (default) --> |
|
|
|
<locale android:name="de" /> <!-- German --> |
|
|
|
<locale android:name="es" /> <!-- Spanish --> |
|
|
|
<locale android:name="fr" /> <!-- French --> |
|
|
|
<locale android:name="it" /> <!-- Italian --> |
|
|
|
<locale android:name="ja" /> <!-- Japanese --> |
|
|
|
<locale android:name="nb" /> <!-- Norwegian Bokmal --> |
|
|
|
<locale android:name="pl" /> <!-- Polish --> |
|
|
|
<locale android:name="pt-rBR" /> <!-- Portuguese (Brazil) --> |
|
|
|
<locale android:name="pt-RPT" /> <!-- Portuguese (Portugal) --> |
|
|
|
<locale android:name="ru" /> <!-- Russian --> |
|
|
|
<locale android:name="uk" /> <!-- Ukranian --> |
|
|
|
<locale android:name="zh-rCN" /> <!-- Chinese (China) --> |
|
|
|
<locale android:name="zh-rTW" /> <!-- Chinese (Taiwan) --> |
|
|
|
</locale-config> |