diff options
author | trilene <trilene@runbox.com> | 2020-07-24 13:30:12 -0400 |
---|---|---|
committer | trilene <trilene@runbox.com> | 2020-07-24 13:30:12 -0400 |
commit | aec24efbe2a41c17104ea98ad9e35463b16d5d80 (patch) | |
tree | 0211f6786c8dce2618a04789e4f62adef639a7fa /resources/qml/delegates | |
parent | Cancel sent CallInvite if no response within expiry (diff) | |
download | nheko-aec24efbe2a41c17104ea98ad9e35463b16d5d80.tar.xz |
Specify call type on timeline
Diffstat (limited to 'resources/qml/delegates')
-rw-r--r-- | resources/qml/delegates/MessageDelegate.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/MessageDelegate.qml b/resources/qml/delegates/MessageDelegate.qml index 52e628be..ed18b2e5 100644 --- a/resources/qml/delegates/MessageDelegate.qml +++ b/resources/qml/delegates/MessageDelegate.qml @@ -93,7 +93,7 @@ Item { DelegateChoice { roleValue: MtxEvent.CallInvite NoticeMessage { - text: qsTr("%1 placed a voice call.").arg(model.data.userName) + text: qsTr("%1 placed a %2 call.").arg(model.data.userName).arg(model.data.callType) } } DelegateChoice { |