mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-07-28 07:22:22 +00:00
Merge pull request #1429 from khanh71/cmp-rewrite
Add Vietnamese language support for Nuvio Mobile
This commit is contained in:
commit
cc381eb186
3 changed files with 1930 additions and 0 deletions
|
|
@ -19,4 +19,5 @@
|
|||
<locale android:name="nb"/>
|
||||
<locale android:name="nl"/>
|
||||
<locale android:name="ja"/>
|
||||
<locale android:name="vi"/>
|
||||
</locale-config>
|
||||
|
|
|
|||
1927
composeApp/src/commonMain/composeResources/values-vi/strings.xml
Normal file
1927
composeApp/src/commonMain/composeResources/values-vi/strings.xml
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -20,6 +20,7 @@ import nuvio.composeapp.generated.resources.lang_turkish
|
|||
import nuvio.composeapp.generated.resources.lang_norwegian
|
||||
import nuvio.composeapp.generated.resources.lang_dutch
|
||||
import nuvio.composeapp.generated.resources.lang_japanese
|
||||
import nuvio.composeapp.generated.resources.lang_vietnamese
|
||||
import nuvio.composeapp.generated.resources.settings_appearance_app_language_device
|
||||
import org.jetbrains.compose.resources.StringResource
|
||||
|
||||
|
|
@ -47,6 +48,7 @@ enum class AppLanguage(
|
|||
NORWEGIAN("nb", Res.string.lang_norwegian),
|
||||
DUTCH("nl", Res.string.lang_dutch),
|
||||
JAPANESE("ja", Res.string.lang_japanese),
|
||||
VIETNAMESE("vi", Res.string.lang_vietnamese),
|
||||
;
|
||||
|
||||
companion object {
|
||||
|
|
|
|||
Loading…
Reference in a new issue