Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/copyrightF14dex.diff
blob: c8e05aa22a591dffc90be97320f9c0d08647bbae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--- view.py.orig	2011-12-21 03:33:57.193629633 +0930
+++ view.py	2011-12-21 04:21:52.337987791 +0930
@@ -1,6 +1,7 @@
 # coding=utf-8
 # Copyright (C) 2008, OLPC
 # Copyright (C) 2009 Simon Schampijer
+# Copyright (C) 2011, OLPC-AU
 #
 # 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
@@ -230,6 +231,22 @@
         label_info.set_size_request(gtk.gdk.screen_width() / 2, -1)
         label_info.show()
         vbox_copyright.pack_start(label_info, expand=False)
+        label_fonts = gtk.Label(_("School Fonts © 2011 Free for use as part of the One Laptop "
+                                  "per Child and Sugar projects. For any other use, visit: "
+                                  "http://www.schoolfonts.com.au/"))
+        label_fonts.set_alignment(0, 0)
+        label_fonts.set_line_wrap(True)
+        label_fonts.show()
+        vbox_copyright.pack_start(label_fonts, expand=False)
+
+        label_adobe = gtk.Label(_("Adobe® Flash® Player. Copyright © 1996 - 2011. Adobe Systems "
+                                  "Incorporated. All Rights Reserved. Adobe and Flash are either "
+                                  "trademark or registered trademarks in the United States and/or "
+                                  "other countries."))
+        label_adobe.set_alignment(0, 0)
+        label_adobe.set_line_wrap(True)
+        label_adobe.show()
+        vbox_copyright.pack_start(label_adobe, expand=False)

         expander = gtk.Expander(_('Full license:'))
         expander.connect('notify::expanded', self.license_expander_cb)