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:16:38 (GMT)
commit7029205131d1f8a776f226f74d09458e3e882728 (patch)
tree0980e9c05b60ff1db7a5db72dab528d4d3cdee39
parent9908d46b7e8dfed26cd3b87ed57b18322e42f1f2 (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)