From de6ccac54b55513bd920f10e7faa3b0baf8dc80d Mon Sep 17 00:00:00 2001 From: Simon Schampijer Date: Thu, 20 Aug 2009 13:48:38 +0000 Subject: CP: Language section - explanation string #562 --- diff --git a/extensions/cpsection/language/view.py b/extensions/cpsection/language/view.py index 30dc05d..261529d 100644 --- a/extensions/cpsection/language/view.py +++ b/extensions/cpsection/language/view.py @@ -1,4 +1,5 @@ # 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 @@ -52,6 +53,13 @@ class Language(SectionView): self.set_border_width(style.DEFAULT_SPACING * 2) self.set_spacing(style.DEFAULT_SPACING) + explanation = "Add languages in the order you prefer. If a " \ + "translation is not available, the next in the list will be used." + self._text = gtk.Label(explanation) + self._text.set_alignment(0, 0) + self.pack_start(self._text, False) + self._text.show() + self._table = gtk.Table(rows=1, columns=3, homogeneous=False) self.pack_start(self._table, False) self._table.show() -- cgit v0.9.1