mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Backport pull request #5829 from jellyfin-web/release-10.9.z
Display mute keyboard shortcut in uppercase
Original-merge: 7991d15177
Merged-by: thornbill <thornbill@users.noreply.github.com>
Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
parent
031ed45c87
commit
da2d825625
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