Change latest chapter sort string to "Latest chapter" instead of "Last chapter"

This commit is contained in:
FlaminSarge 2020-02-10 05:06:22 -08:00
parent a096e6b337
commit 4a52869d23
2 changed files with 2 additions and 1 deletions

View File

@ -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 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)

View File

@ -39,6 +39,7 @@
<string name="action_sort_total">Total chapters</string>
<string name="action_sort_last_read">Last read</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_global_search">Global search</string>
<string name="action_select_all">Select all</string>