diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-11-19 19:15:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 19:15:48 +0100 |
commit | 025b9137512704f8b20f75a59ae369eb50046a1d (patch) | |
tree | 7568e357658acc12ce585a2d14204a583e552d62 /application/palemoon/locales/en-US | |
parent | 4fd1385943b0d24fa785bbdd53053d53412f391a (diff) | |
parent | af0164310dd94e24bf7b44ebb6d9b146eb5db241 (diff) | |
download | UXP-025b9137512704f8b20f75a59ae369eb50046a1d.tar UXP-025b9137512704f8b20f75a59ae369eb50046a1d.tar.gz UXP-025b9137512704f8b20f75a59ae369eb50046a1d.tar.lz UXP-025b9137512704f8b20f75a59ae369eb50046a1d.tar.xz UXP-025b9137512704f8b20f75a59ae369eb50046a1d.zip |
Merge pull request #874 from FranklinDM/sound_indicator-work
Add mute/media playing indicator to tabs
Diffstat (limited to 'application/palemoon/locales/en-US')
3 files changed, 11 insertions, 0 deletions
diff --git a/application/palemoon/locales/en-US/chrome/browser/browser.dtd b/application/palemoon/locales/en-US/chrome/browser/browser.dtd index 2d80c8078..8632b44b4 100644 --- a/application/palemoon/locales/en-US/chrome/browser/browser.dtd +++ b/application/palemoon/locales/en-US/chrome/browser/browser.dtd @@ -507,6 +507,8 @@ you can use these alternative items. Otherwise, their values should be empty. - <!ENTITY closeCmd.key "W"> <!ENTITY closeCmd.accesskey "C"> +<!ENTITY toggleMuteCmd.key "M"> + <!ENTITY pageStyleMenu.label "Page Style"> <!ENTITY pageStyleMenu.accesskey "y"> <!ENTITY pageStyleNoStyle.label "No Style"> diff --git a/application/palemoon/locales/en-US/chrome/browser/browser.properties b/application/palemoon/locales/en-US/chrome/browser/browser.properties index 9969bd753..dbe6dbaa1 100644 --- a/application/palemoon/locales/en-US/chrome/browser/browser.properties +++ b/application/palemoon/locales/en-US/chrome/browser/browser.properties @@ -397,3 +397,8 @@ slowStartup.helpButton.label = Learn How to Speed It Up slowStartup.helpButton.accesskey = L slowStartup.disableNotificationButton.label = Don't Tell Me Again slowStartup.disableNotificationButton.accesskey = A + +muteTab.label = Mute Tab +muteTab.accesskey = M +unmuteTab.label = Unmute Tab +unmuteTab.accesskey = M
\ No newline at end of file diff --git a/application/palemoon/locales/en-US/chrome/browser/tabbrowser.properties b/application/palemoon/locales/en-US/chrome/browser/tabbrowser.properties index 0d21d4d14..a4a0be0a0 100644 --- a/application/palemoon/locales/en-US/chrome/browser/tabbrowser.properties +++ b/application/palemoon/locales/en-US/chrome/browser/tabbrowser.properties @@ -24,3 +24,7 @@ tabs.closeWarningTitle=Confirm close tabs.closeWarningMultipleTabs=You are about to close %S tabs. Are you sure you want to continue? tabs.closeButtonMultiple=Close tabs tabs.closeWarningPromptMe=Warn me when I attempt to close multiple tabs + +tabs.muteAudio.tooltip=Mute tab +tabs.unmuteAudio.tooltip=Unmute tab +tabs.unblockAudio.tooltip=Play tab |