mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-11 16:30:49 +01:00
Change latest chapter sort string to "Latest chapter" instead of "Last chapter"
This commit is contained in:
parent
a096e6b337
commit
4a52869d23
2 changed files with 2 additions and 1 deletions
|
@ -117,7 +117,7 @@ class LibraryNavigationView @JvmOverloads constructor(context: Context, attrs: A
|
||||||
|
|
||||||
private val source = Item.MultiSort(R.string.manga_info_source_label, this)
|
private val source = Item.MultiSort(R.string.manga_info_source_label, this)
|
||||||
|
|
||||||
private val latestChapter = Item.MultiSort(R.string.manga_info_last_chapter_label, this)
|
private val latestChapter = Item.MultiSort(R.string.action_sort_latest_chapter, this)
|
||||||
|
|
||||||
override val items = listOf(alphabetically, lastRead, lastUpdated, unread, total, source, latestChapter)
|
override val items = listOf(alphabetically, lastRead, lastUpdated, unread, total, source, latestChapter)
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
<string name="action_sort_total">Total chapters</string>
|
<string name="action_sort_total">Total chapters</string>
|
||||||
<string name="action_sort_last_read">Last read</string>
|
<string name="action_sort_last_read">Last read</string>
|
||||||
<string name="action_sort_last_updated">Last updated</string>
|
<string name="action_sort_last_updated">Last updated</string>
|
||||||
|
<string name="action_sort_latest_chapter">Latest chapter</string>
|
||||||
<string name="action_search">Search</string>
|
<string name="action_search">Search</string>
|
||||||
<string name="action_global_search">Global search</string>
|
<string name="action_global_search">Global search</string>
|
||||||
<string name="action_select_all">Select all</string>
|
<string name="action_select_all">Select all</string>
|
||||||
|
|
Loading…
Reference in a new issue