diff options
author | kali <kali@leap.se> | 2012-10-26 02:04:34 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-10-26 02:04:34 +0900 |
commit | 593e4ba1ddf185d14f27c96ffb970fde7a3271fa (patch) | |
tree | d448619e6487d4f17edd936344700206862ea30f /src/leap/gui/firstrunwizard.py | |
parent | b847bbfb8e1fed3dd478a0314ed618b6a1ae8cb6 (diff) |
fix systray context menu.
Closes #761
Diffstat (limited to 'src/leap/gui/firstrunwizard.py')
-rwxr-xr-x | src/leap/gui/firstrunwizard.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/gui/firstrunwizard.py b/src/leap/gui/firstrunwizard.py index fd49380c..6b9921d9 100755 --- a/src/leap/gui/firstrunwizard.py +++ b/src/leap/gui/firstrunwizard.py @@ -1218,7 +1218,7 @@ class LastPage(QtGui.QWizardPage): def __init__(self, parent=None): super(LastPage, self).__init__(parent) - self.setTitle("Connecting...") + self.setTitle("Connecting to Encrypted Internet Proxy service...") self.setPixmap( QtGui.QWizard.LogoPixmap, @@ -1253,7 +1253,7 @@ class LastPage(QtGui.QWizardPage): statusline.setText(status) def set_finished_status(self): - self.setTitle('You are using an encrypted connection!') + self.setTitle('You are now using an encrypted connection!') finishText = self.wizard().buttonText( QtGui.QWizard.FinishButton) finishText = finishText.replace('&', '') |