diff options
author | kali <kali@leap.se> | 2013-01-24 02:39:34 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2013-01-24 02:39:34 +0900 |
commit | fea677bb0e3c9ec43353f644879636b9a63a3634 (patch) | |
tree | b53baf5046ed0bd996967bf5d332fb6f83de1f92 /src/leap/gui/firstrun/intro.py | |
parent | 8226d6032b6db0c15ff70e377f87f4acfdd21787 (diff) | |
parent | ff59da55ef9a176b36cef19d67e7ec363bf5d739 (diff) |
Merge branch 'feature/fix-connect-page' into develop
Diffstat (limited to 'src/leap/gui/firstrun/intro.py')
-rw-r--r-- | src/leap/gui/firstrun/intro.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/gui/firstrun/intro.py b/src/leap/gui/firstrun/intro.py index 0425b764..b519362f 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(self.tr("First run wizard.")) + self.setTitle(self.tr("First run wizard")) #self.setPixmap( #QtGui.QWizard.WatermarkPixmap, @@ -35,10 +35,10 @@ class IntroPage(QtGui.QWizardPage): radiobuttonGroup = QtGui.QGroupBox() self.sign_up = QtGui.QRadioButton( - self.tr("Sign up for a new account.")) + self.tr("Sign up for a new account")) self.sign_up.setChecked(True) self.log_in = QtGui.QRadioButton( - self.tr("Log In with my credentials.")) + self.tr("Log In with my credentials")) radiobLayout = QtGui.QVBoxLayout() radiobLayout.addWidget(self.sign_up) |