mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Added Last Used header to browse
This commit is contained in:
		@@ -240,6 +240,7 @@ class SourceController : NucleusController<SourceMainControllerBinding, SourcePr
 | 
			
		||||
        adapter?.removeAllScrollableHeaders()
 | 
			
		||||
        if (item != null) {
 | 
			
		||||
            adapter?.addScrollableHeader(item)
 | 
			
		||||
            adapter?.addScrollableHeader(LangItem(SourcePresenter.LAST_USED_KEY))
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -113,5 +113,6 @@ class SourcePresenter(
 | 
			
		||||
 | 
			
		||||
    companion object {
 | 
			
		||||
        const val PINNED_KEY = "pinned"
 | 
			
		||||
        const val LAST_USED_KEY = "last_used"
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -50,6 +50,7 @@ object LocaleHelper {
 | 
			
		||||
    fun getSourceDisplayName(lang: String?, context: Context): String {
 | 
			
		||||
        return when (lang) {
 | 
			
		||||
            "" -> context.getString(R.string.other_source)
 | 
			
		||||
            SourcePresenter.LAST_USED_KEY -> context.getString(R.string.last_used_source)
 | 
			
		||||
            SourcePresenter.PINNED_KEY -> context.getString(R.string.pinned_sources)
 | 
			
		||||
            "all" -> context.getString(R.string.all_lang)
 | 
			
		||||
            else -> getDisplayName(lang)
 | 
			
		||||
 
 | 
			
		||||
@@ -395,6 +395,7 @@
 | 
			
		||||
    <string name="http_error_hint">Check website in WebView</string>
 | 
			
		||||
    <string name="local_source">Local source</string>
 | 
			
		||||
    <string name="other_source">Other</string>
 | 
			
		||||
    <string name="last_used_source">Last used</string>
 | 
			
		||||
    <string name="pinned_sources">Pinned</string>
 | 
			
		||||
    <string name="invalid_combination">Default can\'t be selected with other categories</string>
 | 
			
		||||
    <string name="added_to_library">The manga has been added to your library</string>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user