diff options
author | fiaxh <git@lightrise.org> | 2021-09-25 16:04:13 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-09-25 16:04:13 +0200 |
commit | 69a26ebcef2fe43942c26812f4969a62126bd0b9 (patch) | |
tree | 06ab4bc421072b687851e459da4e42e887e64f02 /main/src/ui/conversation_titlebar | |
parent | ce227f7189e8f1a3434c1991780089e7801e07fa (diff) | |
download | dino-69a26ebcef2fe43942c26812f4969a62126bd0b9.tar.gz dino-69a26ebcef2fe43942c26812f4969a62126bd0b9.zip |
Improve call related wording
Diffstat (limited to 'main/src/ui/conversation_titlebar')
-rw-r--r-- | main/src/ui/conversation_titlebar/call_entry.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/ui/conversation_titlebar/call_entry.vala b/main/src/ui/conversation_titlebar/call_entry.vala index 9353f631..4bf946d2 100644 --- a/main/src/ui/conversation_titlebar/call_entry.vala +++ b/main/src/ui/conversation_titlebar/call_entry.vala @@ -34,8 +34,8 @@ namespace Dino.Ui { private StreamInteractor stream_interactor; private Conversation conversation; - private ModelButton audio_button = new ModelButton() { text="Audio call", visible=true }; - private ModelButton video_button = new ModelButton() { text="Video call", visible=true }; + private ModelButton audio_button = new ModelButton() { text=_("Audio call"), visible=true }; + private ModelButton video_button = new ModelButton() { text=_("Video call"), visible=true }; public CallButton(StreamInteractor stream_interactor) { this.stream_interactor = stream_interactor; |