summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authortrilene <trilene@runbox.com>2020-07-24 13:30:12 -0400
committertrilene <trilene@runbox.com>2020-07-24 13:30:12 -0400
commitaec24efbe2a41c17104ea98ad9e35463b16d5d80 (patch)
tree0211f6786c8dce2618a04789e4f62adef639a7fa /resources
parentCancel sent CallInvite if no response within expiry (diff)
downloadnheko-aec24efbe2a41c17104ea98ad9e35463b16d5d80.tar.xz
Specify call type on timeline
Diffstat (limited to 'resources')
-rw-r--r--resources/langs/nheko_en.ts4
-rw-r--r--resources/qml/delegates/MessageDelegate.qml2
2 files changed, 3 insertions, 3 deletions
diff --git a/resources/langs/nheko_en.ts b/resources/langs/nheko_en.ts

index 27d739f2..f2bb04f9 100644 --- a/resources/langs/nheko_en.ts +++ b/resources/langs/nheko_en.ts
@@ -406,8 +406,8 @@ Example: https://server.my:8787</translation> </message> <message> <location line="+6"/> - <source>%1 placed a voice call.</source> - <translation>%1 placed a voice call.</translation> + <source>%1 placed a %2 call.</source> + <translation>%1 placed a %2 call.</translation> </message> <message> <location line="+6"/> 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 {