1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Display mute keyboard shortcut in uppercase

This commit is contained in:
Daniel M. Capella 2024-07-25 18:31:37 -04:00
parent b6844e61e2
commit f6acb157c6
No known key found for this signature in database
GPG key ID: EA4F7B321A906AD9

View file

@ -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');
}