MangaPlus: Add German lang (#1691)

Add GERMAN
This commit is contained in:
bapeey 2024-03-03 21:12:27 -05:00 committed by Draff
parent 2bb5ef9059
commit a8cd270d86
2 changed files with 2 additions and 0 deletions

View File

@ -290,6 +290,7 @@ enum class Language {
RUSSIAN,
THAI,
VIETNAMESE,
GERMAN,
}
@Serializable

View File

@ -13,5 +13,6 @@ class MangaPlusFactory : SourceFactory {
MangaPlus("ru", "rus", Language.RUSSIAN),
MangaPlus("th", "tha", Language.THAI),
MangaPlus("vi", "vie", Language.VIETNAMESE),
MangaPlus("de", "deu", Language.GERMAN),
)
}