mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-17 15:32:01 +00:00
Merge pull request #843 from halibiram/feature/add-turkish-localization
Add Turkish language translation
This commit is contained in:
commit
8b993f8933
3 changed files with 1047 additions and 0 deletions
|
|
@ -2,4 +2,5 @@
|
|||
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<locale android:name="en"/>
|
||||
<locale android:name="es"/>
|
||||
<locale android:name="tr"/>
|
||||
</locale-config>
|
||||
|
|
|
|||
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,7 @@ package com.nuvio.app.features.settings
|
|||
import nuvio.composeapp.generated.resources.Res
|
||||
import nuvio.composeapp.generated.resources.lang_english
|
||||
import nuvio.composeapp.generated.resources.lang_spanish
|
||||
import nuvio.composeapp.generated.resources.lang_turkish
|
||||
import org.jetbrains.compose.resources.StringResource
|
||||
|
||||
enum class AppLanguage(
|
||||
|
|
@ -11,6 +12,7 @@ enum class AppLanguage(
|
|||
) {
|
||||
ENGLISH("en", Res.string.lang_english),
|
||||
SPANISH("es", Res.string.lang_spanish),
|
||||
TURKISH("tr", Res.string.lang_turkish),
|
||||
;
|
||||
|
||||
companion object {
|
||||
|
|
|
|||
Loading…
Reference in a new issue