diff options
author | kali <kali@leap.se> | 2012-12-20 08:20:56 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-12-20 08:20:56 +0900 |
commit | a7b091a0553e6120f3e0eb6d4e73a89732c589b2 (patch) | |
tree | 55036b34f7d8e92b46472218553984870c036730 /src/leap/gui/firstrun/intro.py | |
parent | e98c3cc5fad75bea038dc67238e5ce85d701b1e1 (diff) | |
parent | 06bccc52c84a93407ab4699a2749b24f55fe3061 (diff) |
Merge branch 'feature/translations-setup' into develop
Diffstat (limited to 'src/leap/gui/firstrun/intro.py')
-rw-r--r-- | src/leap/gui/firstrun/intro.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/leap/gui/firstrun/intro.py b/src/leap/gui/firstrun/intro.py index 4bb008c7..0a7484e2 100644 --- a/src/leap/gui/firstrun/intro.py +++ b/src/leap/gui/firstrun/intro.py @@ -11,7 +11,7 @@ class IntroPage(QtGui.QWizardPage): def __init__(self, parent=None): super(IntroPage, self).__init__(parent) - self.setTitle("First run wizard.") + self.setTitle(self.tr("First run wizard.")) #self.setPixmap( #QtGui.QWizard.WatermarkPixmap, @@ -21,7 +21,7 @@ class IntroPage(QtGui.QWizardPage): QtGui.QWizard.LogoPixmap, QtGui.QPixmap(APP_LOGO)) - label = QtGui.QLabel( + label = QtGui.QLabel(self.tr( "Now we will guide you through " "some configuration that is needed before you " "can connect for the first time.<br><br>" @@ -29,16 +29,16 @@ class IntroPage(QtGui.QWizardPage): "you can find the wizard in the '<i>Settings</i>' menu from the " "main window.<br><br>" "Do you want to <b>sign up</b> for a new account, or <b>log " - "in</b> with an already existing username?<br>") + "in</b> with an already existing username?<br>")) label.setWordWrap(True) radiobuttonGroup = QtGui.QGroupBox() self.sign_up = QtGui.QRadioButton( - "Sign up for a new account.") + self.tr("Sign up for a new account.")) self.sign_up.setChecked(True) self.log_in = QtGui.QRadioButton( - "Log In with my credentials.") + self.tr("Log In with my credentials.")) radiobLayout = QtGui.QVBoxLayout() radiobLayout.addWidget(self.sign_up) |