From 16ab02b02e4af985b4437c04514ac68fd58b4ff1 Mon Sep 17 00:00:00 2001 From: Blatzar <46196380+Blatzar@users.noreply.github.com> Date: Thu, 8 Sep 2022 18:36:22 +0200 Subject: [PATCH] Add language in app and readme --- README.md | 1 + .../com/lagradost/cloudstream3/ui/settings/SettingsGeneral.kt | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 0035daf7..7a33a5da 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ You can find the list of community-maintained extension repositories [here ***The list of supported languages:*** * 🇱🇧 Arabic +* 🇭🇷 Croatian * 🇨🇿 Czech * 🇳🇱 Dutch * 🇬🇧 English diff --git a/app/src/main/java/com/lagradost/cloudstream3/ui/settings/SettingsGeneral.kt b/app/src/main/java/com/lagradost/cloudstream3/ui/settings/SettingsGeneral.kt index 0ae7a258..57074e74 100644 --- a/app/src/main/java/com/lagradost/cloudstream3/ui/settings/SettingsGeneral.kt +++ b/app/src/main/java/com/lagradost/cloudstream3/ui/settings/SettingsGeneral.kt @@ -78,6 +78,7 @@ val appLanguages = arrayListOf( Triple("", "Chinese", "zh"), Triple("\uD83C\uDDEE\uD83C\uDDE9", "Indonesian", "in"), Triple("", "Czech", "cs"), + Triple("", "Croatian", "hr"), ).sortedBy { it.second } //ye, we go alphabetical, so ppl don't put their lang on top class SettingsGeneral : PreferenceFragmentCompat() {