android, desktop: add Ukrainian language

This commit is contained in:
Evgeny Poberezkin 2023-08-25 11:30:26 +01:00
parent bcc265a3b1
commit 22dc58b735
2 changed files with 3 additions and 1 deletions

View File

@ -95,6 +95,7 @@ android {
"pt-rBR",
"ru",
"th",
"uk",
"zh-rCN"
)
// }

View File

@ -210,9 +210,10 @@ object AppearanceScope {
"ja" to "日本語",
"nl" to "Nederlands",
"pl" to "Polski",
"pt-BR" to "Português (Brasil)",
"pt-BR" to "Português, Brasil",
"ru" to "Русский",
"th" to "ภาษาไทย",
"uk" to "Українська",
"zh-CN" to "简体中文"
)
val values by remember(ChatController.appPrefs.appLanguage.state.value) { mutableStateOf(supportedLanguages.map { it.key to it.value }) }