Add Vietnamese language to MangaPlus (#17233)

Add Vietnamese language to MangaPlus.
This commit is contained in:
Alessandro Jean 2023-07-23 12:47:31 -03:00 committed by GitHub
parent e258e74746
commit 3a36568ed9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'MANGA Plus by SHUEISHA'
pkgNameSuffix = 'all.mangaplus'
extClass = '.MangaPlusFactory'
extVersionCode = 42
extVersionCode = 43
}
apply from: "$rootDir/common.gradle"

View File

@ -146,6 +146,7 @@ enum class Language {
PORTUGUESE_BR,
RUSSIAN,
THAI,
VIETNAMESE,
}
@Serializable

View File

@ -12,5 +12,6 @@ class MangaPlusFactory : SourceFactory {
MangaPlus("pt-BR", "ptb", Language.PORTUGUESE_BR),
MangaPlus("ru", "rus", Language.RUSSIAN),
MangaPlus("th", "tha", Language.THAI),
MangaPlus("vi", "vie", Language.VIETNAMESE),
)
}