Skip to content
Snippets Groups Projects
Commit 5214a2f2 authored by Daniel Brötzmann's avatar Daniel Brötzmann Committed by Philipp Hörist
Browse files

StartChat: Use Join Group Chat as label

parent cc9d1804
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ def __init__(self):
self.set_application(app.app)
self.set_position(Gtk.WindowPosition.CENTER)
self.set_show_menubar(False)
self.set_title(_('Start new Conversation'))
self.set_title(_('Start New Conversation'))
self.set_default_size(-1, 400)
self.ready_to_destroy = False
self._parameter_form = None
......@@ -419,9 +419,9 @@ def __init__(self, account, contact, jid, name, show_account,
if self.name is None:
if self.groupchat:
self.name = _('New Groupchat')
self.name = _('Join Group Chat')
else:
self.name = _('New Contact')
self.name = _('Add Contact')
self.name_label = Gtk.Label(label=self.name)
self.name_label.set_ellipsize(Pango.EllipsizeMode.END)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment