Rename 'start chat' into 'start conversation'
This commit is contained in:
parent
0d5735d22e
commit
f0dd0e0c3a
|
@ -3,7 +3,7 @@
|
||||||
<section>
|
<section>
|
||||||
<item>
|
<item>
|
||||||
<attribute name="action">app.add_chat</attribute>
|
<attribute name="action">app.add_chat</attribute>
|
||||||
<attribute name="label" translatable="yes">Start Chat</attribute>
|
<attribute name="label" translatable="yes">Start Conversation</attribute>
|
||||||
</item>
|
</item>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
|
|
|
@ -82,7 +82,7 @@ public class AddChatDialog : SelectContactDialog {
|
||||||
|
|
||||||
public AddChatDialog(StreamInteractor stream_interactor, Gee.List<Account> accounts) {
|
public AddChatDialog(StreamInteractor stream_interactor, Gee.List<Account> accounts) {
|
||||||
base(stream_interactor, accounts);
|
base(stream_interactor, accounts);
|
||||||
title = _("Start Chat");
|
title = _("Start Conversation");
|
||||||
ok_button.label = _("Start");
|
ok_button.label = _("Start");
|
||||||
selected.connect((account, jid) => {
|
selected.connect((account, jid) => {
|
||||||
Conversation conversation = stream_interactor.get_module(ConversationManager.IDENTITY).create_conversation(jid, account, Conversation.Type.CHAT);
|
Conversation conversation = stream_interactor.get_module(ConversationManager.IDENTITY).create_conversation(jid, account, Conversation.Type.CHAT);
|
||||||
|
|
|
@ -172,7 +172,7 @@ public class NoAccountsPlaceholder : UnifiedWindowPlaceholder {
|
||||||
public class NoConversationsPlaceholder : UnifiedWindowPlaceholder {
|
public class NoConversationsPlaceholder : UnifiedWindowPlaceholder {
|
||||||
public NoConversationsPlaceholder() {
|
public NoConversationsPlaceholder() {
|
||||||
label.label = _("No active conversations");
|
label.label = _("No active conversations");
|
||||||
primary_button.label = _("Start Chat");
|
primary_button.label = _("Start Conversation");
|
||||||
secondary_button.label = _("Join Conference");
|
secondary_button.label = _("Join Conference");
|
||||||
secondary_button.visible = true;
|
secondary_button.visible = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue