Add Spanish and Spanish Translation to Webtoons (#5401)
* Added Spanish and Spanish Traslation * Update build.gradle * Update WebtoonsFactory.kt
This commit is contained in:
parent
f55ce85459
commit
d69bf37f73
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'Webtoons'
|
||||
pkgNameSuffix = 'all.webtoons'
|
||||
extClass = '.WebtoonsFactory'
|
||||
extVersionCode = 22
|
||||
extVersionCode = 23
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ class WebtoonsFactory : SourceFactory {
|
|||
WebtoonsIndonesian(),
|
||||
WebtoonsThai(),
|
||||
WebtoonsFr(),
|
||||
WebtoonsEs(),
|
||||
DongmanManhua(),
|
||||
|
||||
// Fan translations
|
||||
|
@ -46,7 +47,8 @@ class WebtoonsFactory : SourceFactory {
|
|||
WebtoonsTranslate("sv", "SWE"),
|
||||
WebtoonsTranslate("bn", "BEN"),
|
||||
WebtoonsTranslate("fa", "PER"),
|
||||
WebtoonsTranslate("uk", "UKR")
|
||||
WebtoonsTranslate("uk", "UKR"),
|
||||
WebtoonsTranslate("es", "SPA")
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -74,3 +76,5 @@ class WebtoonsThai : WebtoonsDefault("th", dateFormat = SimpleDateFormat("d MMM
|
|||
class WebtoonsChineseTraditional : WebtoonsDefault("zh", "zh-hant", "zh_TW", SimpleDateFormat("yyyy/MM/dd", Locale.TRADITIONAL_CHINESE))
|
||||
|
||||
class WebtoonsFr : WebtoonsDefault("fr", dateFormat = SimpleDateFormat("d MMM yyyy", Locale.FRENCH))
|
||||
|
||||
class WebtoonsEs : WebtoonsDefault("es", dateFormat = SimpleDateFormat("d MMM yyyy", Locale("es")))
|
||||
|
|
Loading…
Reference in New Issue