fix title for Checking update screen to "To be updated"
This commit is contained in:
parent
e6c46a60b8
commit
94515957ee
2 changed files with 10 additions and 1 deletions
|
|
@ -35,6 +35,7 @@ import mihon.feature.upcoming.components.calendar.Calendar
|
||||||
import tachiyomi.core.common.Constants
|
import tachiyomi.core.common.Constants
|
||||||
import tachiyomi.domain.manga.model.Manga
|
import tachiyomi.domain.manga.model.Manga
|
||||||
import tachiyomi.i18n.MR
|
import tachiyomi.i18n.MR
|
||||||
|
import tachiyomi.i18n.kmk.KMR
|
||||||
import tachiyomi.presentation.core.components.FastScrollLazyColumn
|
import tachiyomi.presentation.core.components.FastScrollLazyColumn
|
||||||
import tachiyomi.presentation.core.components.TwoPanelBox
|
import tachiyomi.presentation.core.components.TwoPanelBox
|
||||||
import tachiyomi.presentation.core.components.material.Scaffold
|
import tachiyomi.presentation.core.components.material.Scaffold
|
||||||
|
|
@ -129,7 +130,12 @@ private fun UpcomingToolbar(
|
||||||
val uriHandler = LocalUriHandler.current
|
val uriHandler = LocalUriHandler.current
|
||||||
|
|
||||||
AppBar(
|
AppBar(
|
||||||
title = stringResource(MR.strings.label_upcoming),
|
title =
|
||||||
|
if (isShowingUpdatingMangas) {
|
||||||
|
stringResource(KMR.strings.label_to_be_updated)
|
||||||
|
} else {
|
||||||
|
stringResource(MR.strings.label_upcoming)
|
||||||
|
},
|
||||||
navigateUp = navigator::pop,
|
navigateUp = navigator::pop,
|
||||||
actions = {
|
actions = {
|
||||||
// KMK -->
|
// KMK -->
|
||||||
|
|
|
||||||
|
|
@ -138,4 +138,7 @@
|
||||||
|
|
||||||
<!-- Migration -->
|
<!-- Migration -->
|
||||||
<string name="current_">Current: %1$s</string>
|
<string name="current_">Current: %1$s</string>
|
||||||
|
|
||||||
|
<!-- Misc -->
|
||||||
|
<string name="label_to_be_updated">To be updated</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue