mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #5829 from polyzen/capital-mute
Display mute keyboard shortcut in uppercase
This commit is contained in:
commit
7991d15177
1 changed files with 2 additions and 2 deletions
|
@ -870,10 +870,10 @@ export default function (view) {
|
|||
buttonMuteIcon.classList.remove('volume_off', 'volume_up');
|
||||
|
||||
if (isMuted) {
|
||||
buttonMute.setAttribute('title', globalize.translate('Unmute') + ' (m)');
|
||||
buttonMute.setAttribute('title', globalize.translate('Unmute') + ' (M)');
|
||||
buttonMuteIcon.classList.add('volume_off');
|
||||
} else {
|
||||
buttonMute.setAttribute('title', globalize.translate('Mute') + ' (m)');
|
||||
buttonMute.setAttribute('title', globalize.translate('Mute') + ' (M)');
|
||||
buttonMuteIcon.classList.add('volume_up');
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue