2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-19 09:25:34 +00:00
This commit is contained in:
Emily Kager 2019-04-23 13:49:14 -07:00 committed by Colin Lee
parent 9c347a31ba
commit 7083f346bf
4 changed files with 5 additions and 3 deletions

View File

@ -110,7 +110,7 @@ class DefaultToolbarMenu(
}, },
BrowserMenuImageText( BrowserMenuImageText(
context.getString(R.string.browser_menu_library), context.getString(R.string.browser_menu_your_library),
R.drawable.ic_library, R.drawable.ic_library,
DefaultThemeManager.resolveAttribute(R.attr.primaryText, context) DefaultThemeManager.resolveAttribute(R.attr.primaryText, context)
) { ) {

View File

@ -34,7 +34,7 @@ class HomeMenu(
}, },
BrowserMenuImageText( BrowserMenuImageText(
context.getString(R.string.browser_menu_library), context.getString(R.string.browser_menu_your_library),
R.drawable.ic_library, R.drawable.ic_library,
DefaultThemeManager.resolveAttribute(R.attr.primaryText, context) DefaultThemeManager.resolveAttribute(R.attr.primaryText, context)
) { ) {

View File

@ -34,7 +34,7 @@ class LibraryListItem @JvmOverloads constructor(
libraryItemTitle?.text = resources.getString( libraryItemTitle?.text = resources.getString(
getResourceId( getResourceId(
R.styleable.LibraryListItem_listItemTitle, R.styleable.LibraryListItem_listItemTitle,
R.string.browser_menu_library R.string.browser_menu_your_library
) )
) )
} finally { } finally {

View File

@ -44,6 +44,8 @@
<!-- Browser menu button that opens the settings menu --> <!-- Browser menu button that opens the settings menu -->
<string name="browser_menu_settings">Settings</string> <string name="browser_menu_settings">Settings</string>
<!-- Browser menu button that opens a user's library --> <!-- Browser menu button that opens a user's library -->
<string name="browser_menu_your_library">Your Library</string>
<!-- Deprecated: Browser menu button that opens a user's library -->
<string name="browser_menu_library">Library</string> <string name="browser_menu_library">Library</string>
<!-- Browser menu toggle that requests a desktop site --> <!-- Browser menu toggle that requests a desktop site -->
<string name="browser_menu_desktop_site">Desktop site</string> <string name="browser_menu_desktop_site">Desktop site</string>