summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-08-12 16:51:51 -0300
committerTomás Touceda <chiiph@leap.se>2013-08-12 16:51:51 -0300
commit948d1832785516f58598174197e542d8f489fa95 (patch)
treeac47686955fc3b0882691f72bc1533223432cce2
parent75a1b6e96b789a8d3d4b9b22bbf62e30ffe62751 (diff)
Translate RECONNECTING openvpn state
-rw-r--r--changes/bug_handle_reconnecting1
-rw-r--r--src/leap/bitmask/gui/statuspanel.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug_handle_reconnecting b/changes/bug_handle_reconnecting
new file mode 100644
index 00000000..c6465949
--- /dev/null
+++ b/changes/bug_handle_reconnecting
@@ -0,0 +1 @@
+ o Reword RECONNECTING state of openvpn. Fixes #3429. \ No newline at end of file
diff --git a/src/leap/bitmask/gui/statuspanel.py b/src/leap/bitmask/gui/statuspanel.py
index 8f5427ad..eb731927 100644
--- a/src/leap/bitmask/gui/statuspanel.py
+++ b/src/leap/bitmask/gui/statuspanel.py
@@ -421,6 +421,8 @@ class StatusPanelWidget(QtGui.QWidget):
self.set_eip_status(self.tr("Waiting to start..."))
elif status == "ASSIGN_IP":
self.set_eip_status(self.tr("Assigning IP"))
+ elif status == "RECONNECTING":
+ self.set_eip_status(self.tr("Reconnecting..."))
elif status == "ALREADYRUNNING":
# Put the following calls in Qt's event queue, otherwise
# the UI won't update properly