diff --git a/plinth/modules/tor/templates/tor.html b/plinth/modules/tor/templates/tor.html index 2860c9516..ad35369d6 100644 --- a/plinth/modules/tor/templates/tor.html +++ b/plinth/modules/tor/templates/tor.html @@ -22,7 +22,7 @@ {% block content %} -

Tor

+

Anonymity Network (Tor)

Status

diff --git a/plinth/modules/tor/tor.py b/plinth/modules/tor/tor.py index 5f6eba542..a2627bb05 100644 --- a/plinth/modules/tor/tor.py +++ b/plinth/modules/tor/tor.py @@ -38,9 +38,10 @@ class TorForm(forms.Form): # pylint: disable=W0232 def init(): - """Initialize the Tor module""" + """Initialize the Tor module.""" menu = cfg.main_menu.get('apps:index') - menu.add_urlname('Tor', 'glyphicon-eye-close', 'tor:index', 30) + menu.add_urlname(_('Anonymity Network (Tor)'), 'glyphicon-eye-close', + 'tor:index', 30) @package.required(['tor'])