From 94d0e44d4f74070265bdad81ad855ecc1adbfc45 Mon Sep 17 00:00:00 2001
From: timClicks <paperless@timmcnamara.co.nz>
Date: Mon, 3 May 2010 16:57:43 +1200
Subject: [PATCH] Enabled word wrap on lengthy gtk.Label

The current copyright attribution extends past the screen size of
the XOs. This looks out of place.

Additionally, this patch fixes some punctuation errors & a
removes the capitalisation from 'collaborators', which is not a
pronoun.

Summary:
  - Enabled word wrapping, so that the message now fits without
    scrolling.
  - Changed semi-colons to commas in the list.
  - Removed capitalisation from non-pronoun.
---
 extensions/cpsection/aboutcomputer/view.py |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/extensions/cpsection/aboutcomputer/view.py b/extensions/cpsection/aboutcomputer/view.py
index dd4f8f3..da20275 100644
--- a/extensions/cpsection/aboutcomputer/view.py
+++ b/extensions/cpsection/aboutcomputer/view.py
@@ -175,8 +175,9 @@ class AboutComputer(SectionView):
         vbox_copyright.set_spacing(style.DEFAULT_SPACING)
 
         label_copyright = gtk.Label("© 2006-2009 One Laptop per Child "
-                                    "Association Inc; Red Hat Inc; Collabora Ltd; "
-                                    "and Contributors.")
+                                    "Association Inc, Red Hat Inc, Collabora Ltd; "
+                                    "and contributors.")
+        label_info.set_line_wrap(True)
         label_copyright.set_alignment(0, 0)
         label_copyright.show()
         vbox_copyright.pack_start(label_copyright, expand=False)
-- 
1.7.0.2

