Merge lp:~dobey/ubuntuone-installer/le-appertif into lp:ubuntuone-installer

Proposed by dobey
Status: Merged
Approved by: dobey
Approved revision: 4
Merged at revision: 8
Proposed branch: lp:~dobey/ubuntuone-installer/le-appertif
Merge into: lp:ubuntuone-installer
Diff against target: 43 lines (+18/-4)
1 file modified
ubuntuone/installer/gui.py (+18/-4)
To merge this branch: bzr merge lp:~dobey/ubuntuone-installer/le-appertif
Reviewer Review Type Date Requested Status
Roberto Alsina (community) Approve
Review via email: mp+70499@code.launchpad.net

Commit message

Add some textual content to the installer

To post a comment you must log in.
Revision history for this message
Roberto Alsina (ralsina) wrote :

+1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'ubuntuone/installer/gui.py'
--- ubuntuone/installer/gui.py 2011-08-03 16:55:35 +0000
+++ ubuntuone/installer/gui.py 2011-08-04 22:08:36 +0000
@@ -138,10 +138,18 @@
138 def __construct_info_page(self):138 def __construct_info_page(self):
139 """Build the initial info page."""139 """Build the initial info page."""
140 page = Gtk.VBox()140 page = Gtk.VBox()
141 page.set_border_width(12)141 page.set_border_width(24)
142 page.show()142 page.show()
143143
144 label = Gtk.Label('')144 label = Gtk.Label(
145 u'<big><b>{}</b></big>\n\n {}\n {}\n {}'.format(
146 u'The personal cloud that brings your digital life together',
147 u'• Synchronize files across devices\n',
148 u'• Access files from anywhere\n',
149 (u'• Add Music Streaming for unlimited'
150 u' music on the go')))
151 label.set_use_markup(True)
152 label.set_alignment(0.0, 0.0)
145 page.add(label)153 page.add(label)
146 label.show()154 label.show()
147155
@@ -150,10 +158,16 @@
150 def __construct_progress_page(self):158 def __construct_progress_page(self):
151 """Build the install progress page."""159 """Build the install progress page."""
152 page = Gtk.VBox()160 page = Gtk.VBox()
153 page.set_border_width(12)161 page.set_border_width(24)
162 page.set_spacing(6)
154 page.show()163 page.show()
155164
156 page.pack_start(self.__apt_progress, True, False, 0)165 label = Gtk.Label(u'Ubuntu One is installing…')
166 label.set_alignment(0.0, 0.0)
167 page.pack_start(label, False, True, 0)
168 label.show()
169
170 page.pack_start(self.__apt_progress, False, True, 0)
157 self.__apt_progress.show()171 self.__apt_progress.show()
158172
159 return page173 return page

Subscribers

People subscribed via source and target branches

to all changes: