mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-07-27 06:52:18 +00:00
Merge pull request #1386 from Joe00011/feat/japanese-translation
feat: Add Japanese language support
This commit is contained in:
commit
d7eea90691
3 changed files with 1873 additions and 0 deletions
|
|
@ -12,4 +12,5 @@
|
|||
<locale android:name="es"/>
|
||||
<locale android:name="tr"/>
|
||||
<locale android:name="nb"/>
|
||||
<locale android:name="ja"/>
|
||||
</locale-config>
|
||||
|
|
|
|||
1870
composeApp/src/commonMain/composeResources/values-ja/strings.xml
Normal file
1870
composeApp/src/commonMain/composeResources/values-ja/strings.xml
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -13,6 +13,7 @@ import nuvio.composeapp.generated.resources.lang_portuguese_portugal
|
|||
import nuvio.composeapp.generated.resources.lang_spanish
|
||||
import nuvio.composeapp.generated.resources.lang_turkish
|
||||
import nuvio.composeapp.generated.resources.lang_norwegian
|
||||
import nuvio.composeapp.generated.resources.lang_japanese
|
||||
import nuvio.composeapp.generated.resources.settings_appearance_app_language_device
|
||||
import org.jetbrains.compose.resources.StringResource
|
||||
|
||||
|
|
@ -33,6 +34,7 @@ enum class AppLanguage(
|
|||
SPANISH("es", Res.string.lang_spanish),
|
||||
TURKISH("tr", Res.string.lang_turkish),
|
||||
NORWEGIAN("nb", Res.string.lang_norwegian),
|
||||
JAPANESE("ja", Res.string.lang_japanese),
|
||||
;
|
||||
|
||||
companion object {
|
||||
|
|
|
|||
Loading…
Reference in a new issue