mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-17 07:21:58 +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-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-config>
|
</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.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 org.jetbrains.compose.resources.StringResource
|
import org.jetbrains.compose.resources.StringResource
|
||||||
|
|
||||||
enum class AppLanguage(
|
enum class AppLanguage(
|
||||||
|
|
@ -11,6 +12,7 @@ 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),
|
||||||
;
|
;
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue