MMRCMS: Fix search and add Spanish translations (#1333)
Fix search and add (es) translations
This commit is contained in:
parent
ea913b5957
commit
3ce4e729f9
|
@ -0,0 +1,10 @@
|
||||||
|
filter_warning=Ignorados si se realiza una búsqueda textual
|
||||||
|
filter_missing_warning=Presione 'Restablecer' para intentar mostrar los filtros
|
||||||
|
category_filter_title=Categoría
|
||||||
|
status_filter_title=Estado
|
||||||
|
type_filter_title=Tipo
|
||||||
|
year_filter_title=Año de lanzamiento
|
||||||
|
author_filter_title=Autor
|
||||||
|
tag_filter_title=Etiqueta
|
||||||
|
title_begins_with_filter_title=El título comienza con
|
||||||
|
sort_by_filter_title=Ordenar por
|
|
@ -2,7 +2,7 @@ plugins {
|
||||||
id("lib-multisrc")
|
id("lib-multisrc")
|
||||||
}
|
}
|
||||||
|
|
||||||
baseVersionCode = 10
|
baseVersionCode = 11
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":lib:i18n"))
|
api(project(":lib:i18n"))
|
||||||
|
|
|
@ -32,6 +32,7 @@ import uy.kohesive.injekt.injectLazy
|
||||||
import java.text.ParseException
|
import java.text.ParseException
|
||||||
import java.text.SimpleDateFormat
|
import java.text.SimpleDateFormat
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
|
import kotlin.math.min
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param dateFormat The date format used for parsing chapter dates.
|
* @param dateFormat The date format used for parsing chapter dates.
|
||||||
|
@ -73,7 +74,7 @@ constructor(
|
||||||
|
|
||||||
protected val intl = Intl(
|
protected val intl = Intl(
|
||||||
lang,
|
lang,
|
||||||
setOf("en"),
|
setOf("en", "es"),
|
||||||
"en",
|
"en",
|
||||||
this::class.java.classLoader!!,
|
this::class.java.classLoader!!,
|
||||||
)
|
)
|
||||||
|
@ -208,7 +209,7 @@ constructor(
|
||||||
override fun searchMangaNextPageSelector(): String? = ".pagination a[rel=next]"
|
override fun searchMangaNextPageSelector(): String? = ".pagination a[rel=next]"
|
||||||
|
|
||||||
protected fun parseSearchDirectory(page: Int): MangasPage {
|
protected fun parseSearchDirectory(page: Int): MangasPage {
|
||||||
val manga = searchDirectory.subList((page - 1) * 24, page * 24)
|
val manga = searchDirectory.subList((page - 1) * 24, min(page * 24, searchDirectory.size))
|
||||||
.map {
|
.map {
|
||||||
SManga.create().apply {
|
SManga.create().apply {
|
||||||
url = "/$itemPath/${it.data}"
|
url = "/$itemPath/${it.data}"
|
||||||
|
|
Loading…
Reference in New Issue