Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2008-09-01 17:46:21 (GMT)
committer Simon Schampijer <simon@schampijer.de>2008-09-01 17:47:56 (GMT)
commit3fac8422ef96620dc9bb5bd0e477324637009165 (patch)
tree026bd8c2c4ca7920109d8d79bbd61157d07c6511
parent736875a2715502796a08cfb053e75e4275938c6a (diff)
CP: make copyright one string and fix typo #8250
-rw-r--r--src/controlpanel/view/aboutxo.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/controlpanel/view/aboutxo.py b/src/controlpanel/view/aboutxo.py
index 783f7fc..6db7176 100644
--- a/src/controlpanel/view/aboutxo.py
+++ b/src/controlpanel/view/aboutxo.py
@@ -157,17 +157,18 @@ class AboutXO(SectionView):
vbox_copyright.set_border_width(style.DEFAULT_SPACING * 2)
vbox_copyright.set_spacing(style.DEFAULT_SPACING)
- label_copyright = gtk.Label(_("© 2008 One Laptop per Child Assocation "
- + "Inc; Red Hat, Inc; and Contributors."))
+ label_copyright = gtk.Label(_("© 2008 One Laptop per Child Association "
+ "Inc; Red Hat Inc; and Contributors."))
label_copyright.set_alignment(0, 0)
label_copyright.show()
vbox_copyright.pack_start(label_copyright, expand=False)
label_info = gtk.Label(_("Sugar is the graphical user interface that "
- + "you are looking at. Sugar is free software, covered by the "
- + "GNU General Public License, and you are welcome to change it "
- + "and/or distribute copies of it under certain conditions "
- + "described therein."))
+ "you are looking at. Sugar is free software, "
+ "covered by the GNU General Public License, "
+ "and you are welcome to change it and/or "
+ "distribute copies of it under certain "
+ "conditions described therein."))
label_info.set_alignment(0, 0)
label_info.set_line_wrap(True)
label_info.set_size_request(gtk.gdk.screen_width() / 2, -1)