Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2009-03-30 07:16:38 (GMT)
committer Simon Schampijer <simon@schampijer.de>2009-03-30 07:57:37 (GMT)
commite37b8705c68f21b1531844bf07c23385d6a306d5 (patch)
treeb7fbaece685ff891377a1cda09ff16ed83f0e190
parenta214bed2d1c2face8c116066c3ae23aeb7431758 (diff)
Correct date in 'About my Computer' CP section #639
Added Collabora; ungettextize the string
-rw-r--r--extensions/cpsection/aboutcomputer/view.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/extensions/cpsection/aboutcomputer/view.py b/extensions/cpsection/aboutcomputer/view.py
index f8739ee..dd4f8f3 100644
--- a/extensions/cpsection/aboutcomputer/view.py
+++ b/extensions/cpsection/aboutcomputer/view.py
@@ -1,5 +1,6 @@
# coding=utf-8
# Copyright (C) 2008, OLPC
+# Copyright (C) 2009 Simon Schampijer
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -173,9 +174,9 @@ class AboutComputer(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 "
- "Association Inc; Red Hat Inc; "
- "and Contributors."))
+ label_copyright = gtk.Label("© 2006-2009 One Laptop per Child "
+ "Association Inc; Red Hat Inc; Collabora Ltd; "
+ "and Contributors.")
label_copyright.set_alignment(0, 0)
label_copyright.show()
vbox_copyright.pack_start(label_copyright, expand=False)