This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
stores/room-list/previews Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 437437 "You joined the call" : " You joined the call" ,
438438 "%(senderName)s joined the call" : " %(senderName)s joined the call" ,
439439 "Call in progress" : " Call in progress" ,
440- "You left the call" : " You left the call" ,
441- "%(senderName)s left the call" : " %(senderName)s left the call" ,
440+ "You ended the call" : " You ended the call" ,
441+ "%(senderName)s ended the call" : " %(senderName)s ended the call" ,
442442 "Call ended" : " Call ended" ,
443443 "You started a call" : " You started a call" ,
444444 "%(senderName)s started a call" : " %(senderName)s started a call" ,
Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ export class CallHangupEvent implements IPreview {
2424 public getTextFor ( event : MatrixEvent , tagId ?: TagID ) : string {
2525 if ( shouldPrefixMessagesIn ( event . getRoomId ( ) , tagId ) ) {
2626 if ( isSelf ( event ) ) {
27- return _t ( "You left the call" ) ;
27+ return _t ( "You ended the call" ) ;
2828 } else {
29- return _t ( "%(senderName)s left the call" , { senderName : getSenderName ( event ) } ) ;
29+ return _t ( "%(senderName)s ended the call" , { senderName : getSenderName ( event ) } ) ;
3030 }
3131 } else {
3232 return _t ( "Call ended" ) ;
You can’t perform that action at this time.
0 commit comments