add french to ongoing and completed status (#6577)

This commit is contained in:
OncePunchedMan 2021-04-16 14:31:25 +02:00 committed by GitHub
parent 9d35c8638b
commit aa1753ea25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -350,8 +350,8 @@ abstract class Madara(
manga.status = when (it.text()) {
// I don't know what's the corresponding for COMPLETED and LICENSED
// There's no support for "Canceled" or "On Hold"
"Completed", "Completo", "Concluído" -> SManga.COMPLETED
"OnGoing", "Продолжается", "Updating", "Em Lançamento", "Em andamento" -> SManga.ONGOING
"Completed", "Completo", "Concluído", "Terminé" -> SManga.COMPLETED
"OnGoing", "Продолжается", "Updating", "Em Lançamento", "Em andamento", "En cours" -> SManga.ONGOING
else -> SManga.UNKNOWN
}
}