mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-16 23:12:12 +00:00
Merge branch 'cmp-rewrite' of https://github.com/NuvioMedia/NuvioMobile into cmp-rewrite
This commit is contained in:
commit
0fbdcf18c0
5 changed files with 3139 additions and 0 deletions
|
|
@ -2,4 +2,7 @@
|
||||||
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
|
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<locale android:name="en"/>
|
<locale android:name="en"/>
|
||||||
<locale android:name="es"/>
|
<locale android:name="es"/>
|
||||||
|
<locale android:name="tr"/>
|
||||||
|
<locale android:name="it"/>
|
||||||
|
<locale android:name="el"/>
|
||||||
</locale-config>
|
</locale-config>
|
||||||
|
|
|
||||||
1043
composeApp/src/commonMain/composeResources/values-el/strings.xml
Normal file
1043
composeApp/src/commonMain/composeResources/values-el/strings.xml
Normal file
File diff suppressed because it is too large
Load diff
1043
composeApp/src/commonMain/composeResources/values-it/strings.xml
Normal file
1043
composeApp/src/commonMain/composeResources/values-it/strings.xml
Normal file
File diff suppressed because it is too large
Load diff
1044
composeApp/src/commonMain/composeResources/values-tr/strings.xml
Normal file
1044
composeApp/src/commonMain/composeResources/values-tr/strings.xml
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -3,6 +3,9 @@ package com.nuvio.app.features.settings
|
||||||
import nuvio.composeapp.generated.resources.Res
|
import nuvio.composeapp.generated.resources.Res
|
||||||
import nuvio.composeapp.generated.resources.lang_english
|
import nuvio.composeapp.generated.resources.lang_english
|
||||||
import nuvio.composeapp.generated.resources.lang_spanish
|
import nuvio.composeapp.generated.resources.lang_spanish
|
||||||
|
import nuvio.composeapp.generated.resources.lang_turkish
|
||||||
|
import nuvio.composeapp.generated.resources.lang_italian
|
||||||
|
import nuvio.composeapp.generated.resources.lang_greek
|
||||||
import org.jetbrains.compose.resources.StringResource
|
import org.jetbrains.compose.resources.StringResource
|
||||||
|
|
||||||
enum class AppLanguage(
|
enum class AppLanguage(
|
||||||
|
|
@ -11,6 +14,9 @@ enum class AppLanguage(
|
||||||
) {
|
) {
|
||||||
ENGLISH("en", Res.string.lang_english),
|
ENGLISH("en", Res.string.lang_english),
|
||||||
SPANISH("es", Res.string.lang_spanish),
|
SPANISH("es", Res.string.lang_spanish),
|
||||||
|
TURKISH("tr", Res.string.lang_turkish),
|
||||||
|
ITALIAN("it", Res.string.lang_italian),
|
||||||
|
GREEK("el", Res.string.lang_greek),
|
||||||
;
|
;
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue