]> git.openstreetmap.org Git - osqa.git/commitdiff
Merge pull request #11 from udacity/make_faq_settings_translatable
authorJavyer Der Derian <javier@tribalo.net>
Wed, 15 Jan 2014 16:06:03 +0000 (08:06 -0800)
committerJavyer Der Derian <javier@tribalo.net>
Wed, 15 Jan 2014 16:06:03 +0000 (08:06 -0800)
Make FAQ admin setting descriptions translateable

forum/settings/faq.py

index 16377f68712419dcc57f7ec3b470e0cbb5e2c34a..7dbbe4b2521e56433f611a78abefe3bae79f0063 100644 (file)
@@ -1,7 +1,8 @@
 from base import Setting, SettingSet
 from django.forms.widgets import Textarea
+from django.utils.translation import ugettext_lazy as _
 
-FAQ_SET = SettingSet('faq', 'FAQ page', "Define the text in the about page. You can use markdown and some basic html tags.", 2000, True)
+FAQ_SET = SettingSet('faq', _('FAQ page'), _("Define the text in the about page. You can use markdown and some basic html tags."), 2000, True)
 
 FAQ_PAGE_TEXT = Setting('FAQ_PAGE_TEXT',
 u"""
@@ -74,6 +75,6 @@ Allowing experienced members of this community to curate the questions and answe
 
 Please ask your question, help make our community better!
 """, FAQ_SET, dict(
-label = "FAQ page text",
-help_text = " The faq page. ",
+label = _("FAQ page text"),
+help_text = _("The faq page."),
 widget=Textarea(attrs={'rows': '25'})))
\ No newline at end of file