=== 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 @@
     def __construct_info_page(self):
         """Build the initial info page."""
         page = Gtk.VBox()
-        page.set_border_width(12)
+        page.set_border_width(24)
         page.show()
 
-        label = Gtk.Label('')
+        label = Gtk.Label(
+            u'<big><b>{}</b></big>\n\n {}\n {}\n {}'.format(
+                u'The personal cloud that brings your digital life together',
+                u'•  Synchronize files across devices\n',
+                u'•  Access files from anywhere\n',
+                (u'•  Add Music Streaming for unlimited'
+                 u' music on the go')))
+        label.set_use_markup(True)
+        label.set_alignment(0.0, 0.0)
         page.add(label)
         label.show()
 
@@ -150,10 +158,16 @@
     def __construct_progress_page(self):
         """Build the install progress page."""
         page = Gtk.VBox()
-        page.set_border_width(12)
+        page.set_border_width(24)
+        page.set_spacing(6)
         page.show()
 
-        page.pack_start(self.__apt_progress, True, False, 0)
+        label = Gtk.Label(u'Ubuntu One is installing…')
+        label.set_alignment(0.0, 0.0)
+        page.pack_start(label, False, True, 0)
+        label.show()
+
+        page.pack_start(self.__apt_progress, False, True, 0)
         self.__apt_progress.show()
 
         return page

