]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/settings/basic.py
osqa - 235
[osqa.git] / forum / settings / basic.py
index 23427ea0fed8253fdc1703b5e8f627efbc579ab2..25afd95172800d42e111fd74fa363c0c4aebd05d 100644 (file)
@@ -18,28 +18,38 @@ label = _("Favicon"),
 help_text = _("Your site favicon."),\r
 widget=ImageFormWidget))\r
 \r
-APP_TITLE = Setting('APP_TITLE', 'OSQA: Open Source Q&A Forum', BASIC_SET, dict(\r
+APP_TITLE = Setting('APP_TITLE', u'OSQA: Open Source Q&A Forum', BASIC_SET, dict(\r
 label = _("Application title"),\r
 help_text = _("The title of your application that will show in the browsers title bar")))\r
 \r
-APP_SHORT_NAME = Setting('APP_SHORT_NAME', 'OSQA', BASIC_SET, dict(\r
+APP_SHORT_NAME = Setting(u'APP_SHORT_NAME', 'OSQA', BASIC_SET, dict(\r
 label = _("Application short name"),\r
 help_text = "The short name for your application that will show up in many places."))\r
 \r
-APP_KEYWORDS = Setting('APP_KEYWORDS', 'OSQA,CNPROG,forum,community', BASIC_SET, dict(\r
+APP_KEYWORDS = Setting('APP_KEYWORDS', u'OSQA,CNPROG,forum,community', BASIC_SET, dict(\r
 label = _("Application keywords"),\r
 help_text = _("The meta keywords that will be available through the HTML meta tags.")))\r
 \r
-APP_DESCRIPTION = Setting('APP_DESCRIPTION', 'Ask and answer questions.', BASIC_SET, dict(\r
+APP_DESCRIPTION = Setting('APP_DESCRIPTION', u'Ask and answer questions.', BASIC_SET, dict(\r
 label = _("Application description"),\r
 help_text = _("The description of your application"),\r
 widget=Textarea))\r
 \r
-APP_INTRO = Setting('APP_INTRO', '<p>Ask and answer questions, make the world better!</p>', BASIC_SET, dict(\r
+APP_INTRO = Setting('APP_INTRO', u'<p>Ask and answer questions, make the world better!</p>', BASIC_SET, dict(\r
 label = _("Application intro"),\r
 help_text = _("The introductory page that is visible in the sidebar for anonymous users."),\r
 widget=Textarea))\r
 \r
-APP_COPYRIGHT = Setting('APP_COPYRIGHT', 'Copyright OSQA, 2010. Some rights reserved under creative commons license.', BASIC_SET, dict(\r
+APP_COPYRIGHT = Setting('APP_COPYRIGHT', u'Copyright OSQA, 2010. Some rights reserved under creative commons license.', BASIC_SET, dict(\r
 label = _("Copyright notice"),\r
-help_text = _("The copyright notice visible at the footer of your page.")))
\ No newline at end of file
+help_text = _("The copyright notice visible at the footer of your page.")))\r
+\r
+FEEDBACK_SITE_URL = Setting('FEEDBACK_SITE_URL', '', BASIC_SET, dict(\r
+label = _("Feedback site url"),\r
+help_text = _("If you have a specific place to get feedback from your users, use this field and the fedback link on the footer will point there."),\r
+required=False))\r
+\r
+SHOW_WELCOME_BOX = Setting('SHOW_WELCOME_BOX', False, BASIC_SET, dict(\r
+label = _("Show the Welcome box"),\r
+help_text = _("Do you want to show the welcome box when a user first visits your site."),\r
+required=False))\r