Merge pull request #1010 from Pupon11/cmp-rewrite

czech language
This commit is contained in:
Muhammed Nayif Rahman 2026-05-10 12:34:03 +05:30 committed by GitHub
commit 920a22631c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1248 additions and 0 deletions

View file

@ -9,4 +9,5 @@
<locale android:name="el"/>
<locale android:name="pl"/>
<locale android:name="de"/>
<locale android:name="cs"/>
</locale-config>

File diff suppressed because it is too large Load diff

View file

@ -10,6 +10,7 @@ import nuvio.composeapp.generated.resources.lang_turkish
import nuvio.composeapp.generated.resources.lang_italian
import nuvio.composeapp.generated.resources.lang_greek
import nuvio.composeapp.generated.resources.lang_polish
import nuvio.composeapp.generated.resources.lang_czech
import org.jetbrains.compose.resources.StringResource
enum class AppLanguage(
@ -25,6 +26,7 @@ enum class AppLanguage(
ITALIAN("it", Res.string.lang_italian),
GREEK("el", Res.string.lang_greek),
POLISH("pl", Res.string.lang_polish),
CZECH("cs", Res.string.lang_czech),
;
companion object {