]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/extkeys.py
Remove footer link to squatted domain
[osqa.git] / forum / settings / extkeys.py
1 from base import Setting, SettingSet
2 from django.utils.translation import ugettext_lazy as _
3
4 EXT_KEYS_SET = SettingSet('extkeys', _('External Keys'), _("Keys for various external providers that your application may optionally use."), 100)
5
6 GOOGLE_SITEMAP_CODE = Setting('GOOGLE_SITEMAP_CODE', '', EXT_KEYS_SET, dict(
7 label = _("Google sitemap code"),
8 help_text = _("This is the code you get when you register your site at <a href='https://www.google.com/webmasters/tools/'>Google webmaster central</a>."),
9 required=False))
10
11 GOOGLE_ANALYTICS_KEY = Setting('GOOGLE_ANALYTICS_KEY', '', EXT_KEYS_SET, dict(
12 label = _("Google analytics key"),
13 help_text = _("Your Google analytics key. You can get one at the <a href='http://www.google.com/analytics/'>Google analytics official website</a>"),
14 required=False))
15