Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2009-08-20 13:58:59 (GMT)
committer Simon Schampijer <simon@schampijer.de>2009-08-20 13:58:59 (GMT)
commit80f31c11d7f528495a56fa0f9a4569e12349a44d (patch)
tree47aa5a776a31a227fd4fe6bad37afb269bf90e9d /extensions
parentde6ccac54b55513bd920f10e7faa3b0baf8dc80d (diff)
CP: explanation string, make it translatable
Diffstat (limited to 'extensions')
-rw-r--r--extensions/cpsection/language/view.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/extensions/cpsection/language/view.py b/extensions/cpsection/language/view.py
index 261529d..30dccf2 100644
--- a/extensions/cpsection/language/view.py
+++ b/extensions/cpsection/language/view.py
@@ -53,8 +53,9 @@ 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."
+ explanation = gettext.gettext("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)