@@ -226,7 +226,7 @@ function _onAction(payload) {
226
226
const ErrorDialog = sdk . getComponent ( "dialogs.ErrorDialog" ) ;
227
227
Modal . createDialog ( ErrorDialog , {
228
228
title : _t ( 'Existing Call' ) ,
229
- description : _t ( 'You are already in a call' ) + '.' ,
229
+ description : _t ( 'You are already in a call.' ) ,
230
230
} ) ;
231
231
return ; // don't allow >1 call to be placed.
232
232
}
@@ -236,7 +236,7 @@ function _onAction(payload) {
236
236
const ErrorDialog = sdk . getComponent ( "dialogs.ErrorDialog" ) ;
237
237
Modal . createDialog ( ErrorDialog , {
238
238
title : _t ( 'VoIP is unsupported' ) ,
239
- description : _t ( 'You cannot place VoIP calls in this browser' ) + '.' ,
239
+ description : _t ( 'You cannot place VoIP calls in this browser.' ) ,
240
240
} ) ;
241
241
return ;
242
242
}
@@ -251,7 +251,7 @@ function _onAction(payload) {
251
251
if ( members . length <= 1 ) {
252
252
const ErrorDialog = sdk . getComponent ( "dialogs.ErrorDialog" ) ;
253
253
Modal . createDialog ( ErrorDialog , {
254
- description : _t ( 'You cannot place a call with yourself' ) + '.' ,
254
+ description : _t ( 'You cannot place a call with yourself.' ) ,
255
255
} ) ;
256
256
return ;
257
257
}
@@ -284,7 +284,7 @@ function _onAction(payload) {
284
284
const ErrorDialog = sdk . getComponent ( "dialogs.ErrorDialog" ) ;
285
285
Modal . createDialog ( ErrorDialog , {
286
286
title : _t ( 'VoIP is unsupported' ) ,
287
- description : _t ( 'You cannot place VoIP calls in this browser' ) + '.' ,
287
+ description : _t ( 'You cannot place VoIP calls in this browser.' ) ,
288
288
} ) ;
289
289
}
290
290
else if ( MatrixClientPeg . get ( ) . isRoomEncrypted ( payload . room_id ) ) {
@@ -303,7 +303,7 @@ function _onAction(payload) {
303
303
var QuestionDialog = sdk . getComponent ( "dialogs.QuestionDialog" ) ;
304
304
Modal . createDialog ( QuestionDialog , {
305
305
title : _t ( 'Warning!' ) ,
306
- description : _t ( 'Conference calling is in development and may not be reliable' ) + '.' ,
306
+ description : _t ( 'Conference calling is in development and may not be reliable.' ) ,
307
307
onFinished : confirm => {
308
308
if ( confirm ) {
309
309
ConferenceHandler . createNewMatrixCall (
@@ -315,7 +315,7 @@ function _onAction(payload) {
315
315
console . error ( "Conference call failed: " + err ) ;
316
316
Modal . createDialog ( ErrorDialog , {
317
317
title : _t ( 'Failed to set up conference call' ) ,
318
- description : _t ( 'Conference call failed' ) + '. ' + ( ( err && err . message ) ? err . message : '' ) ,
318
+ description : _t ( 'Conference call failed. ' ) + ' ' + ( ( err && err . message ) ? err . message : '' ) ,
319
319
} ) ;
320
320
} ) ;
321
321
}
0 commit comments