summaryrefslogtreecommitdiff
path: root/modules/installed/privacy/privacy.py
diff options
context:
space:
mode:
authorSean O'Brien <diggity@diggmobile.(none)>2012-02-27 17:18:41 -0500
committerJames Vasile <james@jamesvasile.com>2012-03-12 14:39:31 -0400
commit638b287d1bf9e2772716cc6391a18d65ade3e18b (patch)
treec8f3f8d9f85cd7fec4232e6b3f25c825220478d0 /modules/installed/privacy/privacy.py
parentd2bcebf6766ef2dec4827006198296161d1b49be (diff)
new template based upon bootstrap
Diffstat (limited to 'modules/installed/privacy/privacy.py')
-rw-r--r--modules/installed/privacy/privacy.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/installed/privacy/privacy.py b/modules/installed/privacy/privacy.py
index 8eee565..a0eeffa 100644
--- a/modules/installed/privacy/privacy.py
+++ b/modules/installed/privacy/privacy.py
@@ -9,7 +9,7 @@ class Privacy(PagePlugin):
def __init__(self, *args, **kwargs):
PagePlugin.__init__(self, *args, **kwargs)
self.register_page("privacy")
- self.menu = cfg.main_menu.add_item("Privacy Controls", "/privacy", 12)
+ self.menu = cfg.main_menu.add_item("Privacy", "/privacy", 12)
self.menu.add_item("General Config", "/privacy/config", 10)
self.menu.add_item("Ad Blocking", "/privacy/adblock", 20)
self.menu.add_item("TOR", "/privacy/TOR", 30)
@@ -29,7 +29,7 @@ class Privacy(PagePlugin):
is a founding consideration, not an afterthought.</p>
"""
return self.fill_template(title=_("Privacy Control Panel"), main=main,
-sidebar_right=_("""<h2>Statement of Principles</h2><p>When we say your
+sidebar_right=_("""<strong>Statement of Principles</strong><p>When we say your
privacy is important, it's not just an empty pleasantry. We really
mean it. Your privacy control panel should give you fine-grained
control over exactly who can access your %s and the
@@ -37,6 +37,6 @@ information on it.</p>
<p>Your personal information should not leave this box without your
knowledge and direction. And if companies or government wants this
-information, they have to ask <b>you</b> for it. This gives you a
+information, they have to ask <strong>you</strong> for it. This gives you a
change to refuse and also tells you who wants your data.</p>
""") % cfg.product_name)