Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 5.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 90 KiB |
@@ -0,0 +1,15 @@
|
||||
package eu.kanade.tachiyomi.extension.fr.lecercleduscan
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.foolslide.FoolSlide
|
||||
import java.util.Locale
|
||||
|
||||
class LeCercleDuScan : FoolSlide("Le Cercle du Scan", "https://lel.lecercleduscan.com", "fr") {
|
||||
override fun parseChapterDate(date: String) = super.parseChapterDate(
|
||||
when (val lcDate = date.lowercase(Locale.FRENCH)) {
|
||||
"hier" -> "yesterday"
|
||||
"aujourd'hui" -> "today"
|
||||
"demain" -> "tomorrow"
|
||||
else -> lcDate
|
||||
},
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user