Merge pull request #852 from skoruppa/cmp-rewrite

Polish Translation
This commit is contained in:
Nayif 2026-04-28 16:44:04 +05:30 committed by GitHub
commit 430e3c601f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 1164 additions and 0 deletions

View file

@ -7,4 +7,5 @@
<locale android:name="tr"/>
<locale android:name="it"/>
<locale android:name="el"/>
<locale android:name="pl"/>
</locale-config>

File diff suppressed because it is too large Load diff

View file

@ -8,6 +8,7 @@ import nuvio.composeapp.generated.resources.lang_portuguese_portugal
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 org.jetbrains.compose.resources.StringResource
enum class AppLanguage(
@ -20,6 +21,7 @@ enum class AppLanguage(
TURKISH("tr", Res.string.lang_turkish),
ITALIAN("it", Res.string.lang_italian),
GREEK("el", Res.string.lang_greek),
POLISH("pl", Res.string.lang_polish),
;
companion object {