mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-08-14 19:40:23 +00:00
Merge branch 'cmp-rewrite' of https://github.com/NuvioMedia/NuvioMobile into cmp-rewrite
This commit is contained in:
commit
35be889711
4 changed files with 3832 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<locale android:name="bg"/>
|
||||
<locale android:name="cs"/>
|
||||
<locale android:name="en"/>
|
||||
<locale android:name="fr"/>
|
||||
|
|
@ -11,6 +12,7 @@
|
|||
<locale android:name="pl"/>
|
||||
<locale android:name="pt-BR"/>
|
||||
<locale android:name="pt"/>
|
||||
<locale android:name="sk"/>
|
||||
<locale android:name="es"/>
|
||||
<locale android:name="tr"/>
|
||||
<locale android:name="nb"/>
|
||||
|
|
|
|||
1898
composeApp/src/commonMain/composeResources/values-bg/strings.xml
Normal file
1898
composeApp/src/commonMain/composeResources/values-bg/strings.xml
Normal file
File diff suppressed because it is too large
Load diff
1928
composeApp/src/commonMain/composeResources/values-sk/strings.xml
Normal file
1928
composeApp/src/commonMain/composeResources/values-sk/strings.xml
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,7 @@
|
|||
package com.nuvio.app.features.settings
|
||||
|
||||
import nuvio.composeapp.generated.resources.Res
|
||||
import nuvio.composeapp.generated.resources.lang_bulgarian
|
||||
import nuvio.composeapp.generated.resources.lang_czech
|
||||
import nuvio.composeapp.generated.resources.lang_english
|
||||
import nuvio.composeapp.generated.resources.lang_french
|
||||
|
|
@ -12,6 +13,7 @@ import nuvio.composeapp.generated.resources.lang_italian
|
|||
import nuvio.composeapp.generated.resources.lang_polish
|
||||
import nuvio.composeapp.generated.resources.lang_portuguese_brazil
|
||||
import nuvio.composeapp.generated.resources.lang_portuguese_portugal
|
||||
import nuvio.composeapp.generated.resources.lang_slovak
|
||||
import nuvio.composeapp.generated.resources.lang_spanish
|
||||
import nuvio.composeapp.generated.resources.lang_turkish
|
||||
import nuvio.composeapp.generated.resources.lang_norwegian
|
||||
|
|
@ -24,6 +26,7 @@ enum class AppLanguage(
|
|||
val labelRes: StringResource,
|
||||
) {
|
||||
DEVICE("device", Res.string.settings_appearance_app_language_device),
|
||||
BULGARIAN("bg", Res.string.lang_bulgarian),
|
||||
CZECH("cs", Res.string.lang_czech),
|
||||
ENGLISH("en", Res.string.lang_english),
|
||||
FRENCH("fr", Res.string.lang_french),
|
||||
|
|
@ -35,6 +38,7 @@ enum class AppLanguage(
|
|||
POLISH("pl", Res.string.lang_polish),
|
||||
PORTUGUESE_BRAZIL("pt-BR", Res.string.lang_portuguese_brazil),
|
||||
PORTUGUESE("pt", Res.string.lang_portuguese_portugal),
|
||||
SLOVAK("sk", Res.string.lang_slovak),
|
||||
SPANISH("es", Res.string.lang_spanish),
|
||||
TURKISH("tr", Res.string.lang_turkish),
|
||||
NORWEGIAN("nb", Res.string.lang_norwegian),
|
||||
|
|
|
|||
Loading…
Reference in a new issue