Translatable (desync'ed)
This commit is contained in:
parent
47bc1d61b4
commit
2c891b5b87
|
@ -1621,7 +1621,8 @@ class JoinGroupchatWindow:
|
||||||
if password:
|
if password:
|
||||||
self._password_entry.set_text(password)
|
self._password_entry.set_text(password)
|
||||||
self.xml.signal_autoconnect(self)
|
self.xml.signal_autoconnect(self)
|
||||||
gajim.interface.instances[account]['join_gc'] = self #now add us to open windows
|
# now add us to open windows
|
||||||
|
gajim.interface.instances[account]['join_gc'] = self
|
||||||
if len(gajim.connections) > 1:
|
if len(gajim.connections) > 1:
|
||||||
title = _('Join Group Chat with account %s') % account
|
title = _('Join Group Chat with account %s') % account
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -1831,7 +1831,8 @@ class RosterWindow:
|
||||||
uf_show = helpers.get_uf_show(show)
|
uf_show = helpers.get_uf_show(show)
|
||||||
liststore = self.status_combobox.get_model()
|
liststore = self.status_combobox.get_model()
|
||||||
liststore.prepend(['SEPARATOR', None, '', True])
|
liststore.prepend(['SEPARATOR', None, '', True])
|
||||||
liststore.prepend([uf_show + ' ' +"(desync'ed)",
|
status_combobox_text = uf_show + ' (' + _("desync'ed") +')'
|
||||||
|
liststore.prepend([status_combobox_text,
|
||||||
gajim.interface.jabber_state_images['16'][show], show, False])
|
gajim.interface.jabber_state_images['16'][show], show, False])
|
||||||
self.status_combobox.set_active(0)
|
self.status_combobox.set_active(0)
|
||||||
self._change_awn_icon_status(show)
|
self._change_awn_icon_status(show)
|
||||||
|
|
Loading…
Reference in New Issue