|
@@ -148,13 +148,15 @@ export class VideoQualityLabel extends Component {
|
148
|
148
|
const opening = this.state.togglingToVisible ? 'opening' : '';
|
149
|
149
|
const classNames
|
150
|
150
|
= `${baseClasses} ${filmstrip} ${remoteVideosVisible} ${opening}`;
|
|
151
|
+ const tooltipKey
|
|
152
|
+ = `videoStatus.labelTooltip${_audioOnly ? 'AudioOnly' : 'Video'}`;
|
151
|
153
|
|
152
|
154
|
return (
|
153
|
155
|
<div
|
154
|
156
|
className = { classNames }
|
155
|
157
|
id = 'videoResolutionLabel'>
|
156
|
158
|
<Tooltip
|
157
|
|
- description = { t('videoStatus.labelTooltip') }
|
|
159
|
+ description = { t(tooltipKey) }
|
158
|
160
|
position = { 'left' }>
|
159
|
161
|
<div className = 'video-quality-label-status'>
|
160
|
162
|
{ _audioOnly
|