diff options
Diffstat (limited to 'client/src/assets/player/videojs-components')
-rw-r--r-- | client/src/assets/player/videojs-components/resolution-menu-button.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/assets/player/videojs-components/resolution-menu-button.ts b/client/src/assets/player/videojs-components/resolution-menu-button.ts index 445b14b2b..86be03af7 100644 --- a/client/src/assets/player/videojs-components/resolution-menu-button.ts +++ b/client/src/assets/player/videojs-components/resolution-menu-button.ts | |||
@@ -75,11 +75,15 @@ class ResolutionMenuButton extends MenuButton { | |||
75 | // Skip auto resolution, we'll add it ourselves | 75 | // Skip auto resolution, we'll add it ourselves |
76 | if (d.id === -1) continue | 76 | if (d.id === -1) continue |
77 | 77 | ||
78 | const label = d.id === 0 | ||
79 | ? this.player.localize('Audio-only') | ||
80 | : d.label | ||
81 | |||
78 | this.menu.addChild(new ResolutionMenuItem( | 82 | this.menu.addChild(new ResolutionMenuItem( |
79 | this.player_, | 83 | this.player_, |
80 | { | 84 | { |
81 | id: d.id, | 85 | id: d.id, |
82 | label: d.id == 0 ? this.player .localize('Audio-only') : d.label, | 86 | label, |
83 | selected: d.selected, | 87 | selected: d.selected, |
84 | callback: data.qualitySwitchCallback | 88 | callback: data.qualitySwitchCallback |
85 | }) | 89 | }) |