aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-07-21 14:47:34 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-07-21 14:47:34 +0000
commit9b3338c4de54e5430dd33665e7fce6d0bdbacb5f (patch)
treef02a73765047053a855c6094a3e2c1bb664a6956
parentiw/welcome_gui.py: make getScreen return an align (diff)
downloadanaconda-9b3338c4de54e5430dd33665e7fce6d0bdbacb5f.tar.gz
anaconda-9b3338c4de54e5430dd33665e7fce6d0bdbacb5f.tar.bz2
anaconda-9b3338c4de54e5430dd33665e7fce6d0bdbacb5f.zip
iw/welcome_gui.py: fix font size markup
-rw-r--r--iw/welcome_gui.py48
1 files changed, 24 insertions, 24 deletions
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py
index 23336f6..538e04c 100644
--- a/iw/welcome_gui.py
+++ b/iw/welcome_gui.py
@@ -32,50 +32,50 @@ class WelcomeWindow (InstallWindow):
"welcomescreen" : (
_("Welcome to the Gentoo installer!"),
_("This wizard will take you through installing Gentoo \
- on your computer. We will follow the official Gentoo \
- Handbook (with a few changes) and if at any point \
- you'd like to consult the handbook, you'll find the \
- link in the top-right corner of the window.\n\n\
- We'll start off asking you for the language and \
- keyboard layout you'd like the installer and your \
- future system to use. We will then skip straight to \
- Chapter 4 and continue with the installation."),
+on your computer. We will follow the official Gentoo \
+Handbook (with a few changes) and if at any point \
+you'd like to consult the handbook, you'll find the \
+link in the top-right corner of the window.\n\n\
+We'll start off asking you for the language and \
+keyboard layout you'd like the installer and your \
+future system to use. We will then skip straight to \
+Chapter 4 and continue with the installation."),
0, "Gentoo Handbook"),
"preparedisks" : (
_("Preparing the Disks"),
_("To be able to install Gentoo, you must create the \
- necessary partitions. The following screens will \
- help you choose the right disk configuration for \
- your system."),
+necessary partitions. The following screens will \
+help you choose the right disk configuration for \
+your system."),
4, None),
"installationfiles" : (
_("Installing the Gentoo Installation Files"),
_("Gentoo installs work through a stage3 archive. In \
- this chapter the installer will help you choose the \
- right compilation options for your machine. "),
+this chapter the installer will help you choose the \
+right compilation options for your machine. "),
5, None),
"basesystem" : (
_("Installing the Gentoo Installation Files"),
_("In this chapter you will set your Gentoo mirrors, \
- select your profile and choose your the USE flags."),
+select your profile and choose your the USE flags."),
6, None),
"configurekernel": (
_("Configuring the Kernel"),
_("The Linux kernel is the core of every distribution. \
- This chapter explains how to configure your kernel. \
- You will only have to set your timezone, as the \
- installer will just copy the LiveDVD kernel to your \
- new system."),
+This chapter explains how to configure your kernel. \
+You will only have to set your timezone, as the \
+installer will just copy the LiveDVD kernel to your \
+new system."),
7, None),
"configuresystem" : (
_("Configuring your System"),
_("In this chapter you will only have to set your root \
- password as the rest is figured out automatically ;-)"),
+password as the rest is figured out automatically ;-)"),
8, None),
"systools" : (
@@ -91,10 +91,10 @@ class WelcomeWindow (InstallWindow):
"finalizing" : (
_("Finalizing your Gentoo Installation"),
_("You're almost done. We'll just create a user for \
- your system.\n\
- You'll also be able to choose if you'd like the X \
- Window System and a desktop environment installed on \
- your new system. "),
+your system.\n\
+You'll also be able to choose if you'd like the X \
+Window System and a desktop environment installed on \
+your new system. "),
11, None)
}
@@ -107,7 +107,7 @@ class WelcomeWindow (InstallWindow):
(xml, align) = gui.getGladeWidget("welcome.glade", "welcome_align")
title_ = xml.get_widget("title")
text_ = xml.get_widget("text")
- title_.set_markup("<span style=\"font-size: 200%\">%s</span>")
+ title_.set_markup("<span size=\"large\">%s</span>")
title_.set_text(_("Chapter %i: %s") % (chapter, title))
text_.set_text(text)
return align