File tree 2 files changed +10
-1
lines changed
app/src/main/java/mihon/feature/upcoming
i18n-kmk/src/commonMain/moko-resources/base
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ import mihon.feature.upcoming.components.calendar.Calendar
35
35
import tachiyomi.core.common.Constants
36
36
import tachiyomi.domain.manga.model.Manga
37
37
import tachiyomi.i18n.MR
38
+ import tachiyomi.i18n.kmk.KMR
38
39
import tachiyomi.presentation.core.components.FastScrollLazyColumn
39
40
import tachiyomi.presentation.core.components.TwoPanelBox
40
41
import tachiyomi.presentation.core.components.material.Scaffold
@@ -129,7 +130,12 @@ private fun UpcomingToolbar(
129
130
val uriHandler = LocalUriHandler .current
130
131
131
132
AppBar (
132
- title = stringResource(MR .strings.label_upcoming),
133
+ title =
134
+ if (isShowingUpdatingMangas) {
135
+ stringResource(KMR .strings.label_to_be_updated)
136
+ } else {
137
+ stringResource(MR .strings.label_upcoming)
138
+ },
133
139
navigateUp = navigator::pop,
134
140
actions = {
135
141
// KMK -->
Original file line number Diff line number Diff line change 138
138
139
139
<!-- Migration -->
140
140
<string name =" current_" >Current: %1$s</string >
141
+
142
+ <!-- Misc -->
143
+ <string name =" label_to_be_updated" >To be updated</string >
141
144
</resources >
You can’t perform that action at this time.
0 commit comments