Rename 'start chat' into 'start conversation'

This commit is contained in:
Michael Vetter 2018-02-08 11:45:31 +01:00 committed by fiaxh
parent 0d5735d22e
commit f0dd0e0c3a
3 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@
<section>
<item>
<attribute name="action">app.add_chat</attribute>
<attribute name="label" translatable="yes">Start Chat</attribute>
<attribute name="label" translatable="yes">Start Conversation</attribute>
</item>
</section>
<section>

View file

@ -82,7 +82,7 @@ public class AddChatDialog : SelectContactDialog {
public AddChatDialog(StreamInteractor stream_interactor, Gee.List<Account> accounts) {
base(stream_interactor, accounts);
title = _("Start Chat");
title = _("Start Conversation");
ok_button.label = _("Start");
selected.connect((account, jid) => {
Conversation conversation = stream_interactor.get_module(ConversationManager.IDENTITY).create_conversation(jid, account, Conversation.Type.CHAT);

View file

@ -172,7 +172,7 @@ public class NoAccountsPlaceholder : UnifiedWindowPlaceholder {
public class NoConversationsPlaceholder : UnifiedWindowPlaceholder {
public NoConversationsPlaceholder() {
label.label = _("No active conversations");
primary_button.label = _("Start Chat");
primary_button.label = _("Start Conversation");
secondary_button.label = _("Join Conference");
secondary_button.visible = true;
}