From fcc2e3a8cf90dcc6c01997db489c196726f26553 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Br=C3=B6tzmann?= Date: Fri, 28 Sep 2018 14:59:49 +0200 Subject: [PATCH] Fix #9045, desync'ed --- gajim/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/roster_window.py b/gajim/roster_window.py index 1815868d2..2f9632380 100644 --- a/gajim/roster_window.py +++ b/gajim/roster_window.py @@ -2351,7 +2351,7 @@ class RosterWindow: else: uf_show = helpers.get_uf_show(show) liststore.prepend(['SEPARATOR', None, '', True]) - status_combobox_text = uf_show + ' (' + _("desync'ed") + ')' + status_combobox_text = uf_show + ' (' + _("desynced") + ')' liststore.prepend( [status_combobox_text, show, 'desync', False]) self.status_combobox.set_active(0)