android, desktop: add Indonesian, Romanian and Vietnamese UI languages

This commit is contained in:
Evgeny Poberezkin
2025-07-26 11:28:45 +01:00
parent c7db7527ab
commit 3e23918c1e
2 changed files with 6 additions and 0 deletions
@@ -93,6 +93,7 @@ android {
"fi",
"fr",
"hu",
"in",
"it",
"iw",
"ja",
@@ -100,10 +101,12 @@ android {
"nl",
"pl",
"pt-rBR",
"ro",
"ru",
"th",
"tr",
"uk",
"vi",
"zh-rCN"
)
ndkVersion = "23.1.7779620"
@@ -1106,6 +1106,7 @@ object AppearanceScope {
"fi" to "Suomi",
"fr" to "Français",
"hu" to "Magyar",
"in" to "Indonesia",
"it" to "Italiano",
"iw" to "עִברִית",
"ja" to "日本語",
@@ -1113,10 +1114,12 @@ object AppearanceScope {
"nl" to "Nederlands",
"pl" to "Polski",
"pt-BR" to "Português, Brasil",
"ro" to "Română",
"ru" to "Русский",
"th" to "ภาษาไทย",
"tr" to "Türkçe",
"uk" to "Українська",
"vi" to "Tiếng Việt",
"zh-CN" to "简体中文"
)
val values by remember(appPrefs.appLanguage.state.value) { mutableStateOf(supportedLanguages.map { it.key to it.value }) }