Localize Find in another source
This commit is contained in:
parent
834e3d78ab
commit
9e63f32a82
@ -78,7 +78,7 @@ class SourceController(bundle: Bundle? = null) :
|
|||||||
// SY -->
|
// SY -->
|
||||||
return when (mode) {
|
return when (mode) {
|
||||||
Mode.CATALOGUE -> applicationContext?.getString(R.string.label_sources)
|
Mode.CATALOGUE -> applicationContext?.getString(R.string.label_sources)
|
||||||
Mode.SMART_SEARCH -> "Find in another source"
|
Mode.SMART_SEARCH -> applicationContext?.getString(R.string.find_in_another_source)
|
||||||
}
|
}
|
||||||
// SY <--
|
// SY <--
|
||||||
}
|
}
|
||||||
@ -143,7 +143,9 @@ class SourceController(bundle: Bundle? = null) :
|
|||||||
Mode.CATALOGUE -> {
|
Mode.CATALOGUE -> {
|
||||||
// Open the catalogue view.
|
// Open the catalogue view.
|
||||||
// SY -->
|
// SY -->
|
||||||
if (source.supportsLatest && preferences.useNewSourceNavigation().get()) openIndexSource(source) else openSource(source, BrowseSourceController(source))
|
if (source.supportsLatest && preferences.useNewSourceNavigation().get()) {
|
||||||
|
openIndexSource(source)
|
||||||
|
} else openSource(source, BrowseSourceController(source))
|
||||||
// SY <--
|
// SY <--
|
||||||
}
|
}
|
||||||
Mode.SMART_SEARCH -> router.pushController(
|
Mode.SMART_SEARCH -> router.pushController(
|
||||||
|
@ -322,6 +322,9 @@
|
|||||||
<string name="cover_reset_toast">The cover will be updated when you exit manga info edit</string>
|
<string name="cover_reset_toast">The cover will be updated when you exit manga info edit</string>
|
||||||
|
|
||||||
<!-- Browse -->
|
<!-- Browse -->
|
||||||
|
<!-- Sources Tab -->
|
||||||
|
<string name="find_in_another_source">Find in another source</string>
|
||||||
|
|
||||||
<!-- Smart Search -->
|
<!-- Smart Search -->
|
||||||
<string name="searching_source">Searching source…</string>
|
<string name="searching_source">Searching source…</string>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user