You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnt('spreed', 'Your internet connection or computer are busy and other participants might be unable to understand you.')
247
+
return {
248
+
message:t('spreed', 'Your internet connection or computer are busy and other participants might be unable to understand you.'),
249
+
actionLabel:'',
250
+
action:'',
251
+
}
244
252
},
245
253
246
254
qualityWarningVideoTooltip() {
247
255
if (!this.showQualityWarning||!this.localMediaModel.attributes.videoEnabled) {
248
256
return''
249
257
}
250
258
251
-
let message=''
259
+
consttooltip={}
252
260
if (this.localMediaModel.attributes.audioEnabled&&this.localMediaModel.attributes.localScreen) {
253
-
message =t('spreed', 'Your internet connection or computer are busy and other participants might be unable to understand and see you. To improve the situation try to disable your video while doing a screenshare.')
261
+
tooltip.message=t('spreed', 'Your internet connection or computer are busy and other participants might be unable to understand and see you. To improve the situation try to disable your video while doing a screenshare.')
message =t('spreed', 'Your internet connection or computer are busy and other participants might be unable to understand and see you. To improve the situation try to disable your video.')
265
+
tooltip.message=t('spreed', 'Your internet connection or computer are busy and other participants might be unable to understand and see you. To improve the situation try to disable your video.')
message =t('spreed', 'Your internet connection or computer are busy and other participants might be unable to see you. To improve the situation try to disable your video while doing a screenshare.')
269
+
tooltip.message=t('spreed', 'Your internet connection or computer are busy and other participants might be unable to see you. To improve the situation try to disable your video while doing a screenshare.')
270
+
tooltip.actionLabel=t('spreed', 'Disable Video')
271
+
tooltip.action='disableVideo'
258
272
} else {
259
-
message =t('spreed', 'Your internet connection or computer are busy and other participants might be unable to see you.')
273
+
tooltip.message=t('spreed', 'Your internet connection or computer are busy and other participants might be unable to see you.')
274
+
tooltip.actionLabel=t('spreed', '')
275
+
tooltip.action=''
260
276
}
261
277
262
-
returnmessage
278
+
returntooltip
263
279
},
264
280
265
281
qualityWarningScreenTooltip() {
266
282
if (!this.showQualityWarning||!this.localMediaModel.attributes.localScreen||this.localMediaModel.attributes.videoEnabled) {
267
283
return''
268
284
}
269
285
270
-
let message=''
286
+
consttooltip={}
271
287
if (this.localMediaModel.attributes.audioEnabled) {
272
-
message =t('spreed', 'Your internet connection or computer are busy and other participants might be unable to understand and see your screen. To improve the situation try to disable your screenshare.')
288
+
tooltip.message=t('spreed', 'Your internet connection or computer are busy and other participants might be unable to understand and see your screen. To improve the situation try to disable your screenshare.')
0 commit comments