Merge branch 'cmp-rewrite' of https://github.com/NuvioMedia/NuvioMobile into cmp-rewrite

This commit is contained in:
tapframe 2026-04-26 00:51:07 +05:30
commit 0fbdcf18c0
5 changed files with 3139 additions and 0 deletions

View file

@ -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>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -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 {