diff options
author | kali <kali@leap.se> | 2013-01-09 06:24:52 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2013-01-09 06:24:52 +0900 |
commit | 6fe187c4ea2a32105c712d34167058707f8f82f8 (patch) | |
tree | 134225514144924027d9eee3ee8ef19d2878c6af /src/leap/gui/firstrun/last.py | |
parent | 289722fe0eda46c8f5fbbecb84c8a0fbbe36a15f (diff) | |
parent | a5b4b7020daebbcb25c016cf1821818b71a2e457 (diff) |
Merge branch 'feature/translation-fixes' into develop
Diffstat (limited to 'src/leap/gui/firstrun/last.py')
-rw-r--r-- | src/leap/gui/firstrun/last.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/leap/gui/firstrun/last.py b/src/leap/gui/firstrun/last.py index 1d8caca4..e097b2ae 100644 --- a/src/leap/gui/firstrun/last.py +++ b/src/leap/gui/firstrun/last.py @@ -15,7 +15,7 @@ class LastPage(QtGui.QWizardPage): def __init__(self, parent=None): super(LastPage, self).__init__(parent) - self.setTitle("Connecting to Encrypted Internet Proxy service...") + self.setTitle(self.tr("Connecting to Encrypted Internet Proxy service...")) self.setPixmap( QtGui.QWizard.LogoPixmap, @@ -51,13 +51,13 @@ class LastPage(QtGui.QWizardPage): statusline.setText(status) def set_finished_status(self): - self.setTitle('You are now using an encrypted connection!') + self.setTitle(self.tr('You are now using an encrypted connection!')) finishText = self.wizard().buttonText( QtGui.QWizard.FinishButton) finishText = finishText.replace('&', '') - self.label.setText( + self.label.setText(self.tr( "Click '<i>%s</i>' to end the wizard and " - "save your settings." % finishText) + "save your settings." % finishText)) # XXX init network checker # trigger signal |