diff --git a/plinth/modules/cockpit/__init__.py b/plinth/modules/cockpit/__init__.py
index f6c8f2c38..1e4e8eb7d 100644
--- a/plinth/modules/cockpit/__init__.py
+++ b/plinth/modules/cockpit/__init__.py
@@ -54,11 +54,9 @@ description = [
'required. A web based terminal for console operations is also '
'available.'), box_name=_(cfg.box_name)),
format_lazy(
- _('When enabled, Cockpit will be available from /_cockpit/ path on the web server. It '
- 'can be accessed by any user on '
+ _('It can be accessed by any user on '
'{box_name} belonging to the admin group.'),
- box_name=_(cfg.box_name), users_url=reverse_lazy('users:index')),
+ box_name=_(cfg.box_name), users_url=reverse_lazy('users:index'))
]
manual_page = 'Cockpit'
diff --git a/plinth/modules/deluge/__init__.py b/plinth/modules/deluge/__init__.py
index 93e515b06..4eb6bcbca 100644
--- a/plinth/modules/deluge/__init__.py
+++ b/plinth/modules/deluge/__init__.py
@@ -42,9 +42,7 @@ short_description = _('BitTorrent Web Client')
description = [
_('Deluge is a BitTorrent client that features a Web UI.'),
- _('When enabled, the Deluge web client will be available from '
- '/deluge path on the web '
- 'server. The default password is \'deluge\', but you should log in and '
+ _('The default password is \'deluge\', but you should log in and '
'change it immediately after enabling this service.')
]
@@ -71,10 +69,11 @@ class DelugeApp(app_module.App):
'deluge:index', parent_url_name='apps')
self.add(menu_item)
- shortcut = frontpage.Shortcut(
- 'shortcut-deluge', name, short_description=short_description,
- url='/deluge', icon='deluge', clients=clients, login_required=True,
- allowed_groups=[group[0]])
+ shortcut = frontpage.Shortcut('shortcut-deluge', name,
+ short_description=short_description,
+ url='/deluge', icon='deluge',
+ clients=clients, login_required=True,
+ allowed_groups=[group[0]])
self.add(shortcut)
firewall = Firewall('firewall-deluge', name, ports=['http', 'https'],
diff --git a/plinth/modules/ikiwiki/__init__.py b/plinth/modules/ikiwiki/__init__.py
index f7ecd9adc..1af5afe8d 100644
--- a/plinth/modules/ikiwiki/__init__.py
+++ b/plinth/modules/ikiwiki/__init__.py
@@ -45,10 +45,7 @@ short_description = _('Wiki and Blog')
description = [
_('ikiwiki is a simple wiki and blog application. It supports '
'several lightweight markup languages, including Markdown, and '
- 'common blogging functionality such as comments and RSS feeds. '
- 'When enabled, the blogs and wikis will be available at '
- '/ikiwiki '
- '(once created).'),
+ 'common blogging functionality such as comments and RSS feeds.'),
format_lazy(
_('Only {box_name} users in the admin group can create '
'and manage blogs and wikis, but any user in the wiki '
diff --git a/plinth/modules/syncthing/__init__.py b/plinth/modules/syncthing/__init__.py
index da7742810..273bf6a0f 100644
--- a/plinth/modules/syncthing/__init__.py
+++ b/plinth/modules/syncthing/__init__.py
@@ -54,10 +54,6 @@ description = [
'user\'s set of devices may be synchronized with a distinct set of '
'folders. The web interface on {box_name} is only available for '
'users belonging to the "admin" group.'), box_name=_(cfg.box_name)),
- _('When enabled, Syncthing\'s web interface will be available from '
- '/syncthing. '
- 'Desktop and mobile clients are also '
- 'available.'),
]
clients = clients
@@ -82,10 +78,11 @@ class SyncthingApp(app_module.App):
parent_url_name='apps')
self.add(menu_item)
- shortcut = frontpage.Shortcut(
- 'shortcut-syncthing', name, short_description=short_description,
- icon='syncthing', url='/syncthing/', clients=clients,
- login_required=True, allowed_groups=[group[0]])
+ shortcut = frontpage.Shortcut('shortcut-syncthing', name,
+ short_description=short_description,
+ icon='syncthing', url='/syncthing/',
+ clients=clients, login_required=True,
+ allowed_groups=[group[0]])
self.add(shortcut)
firewall = Firewall('firewall-syncthing-web', name,
diff --git a/plinth/modules/transmission/__init__.py b/plinth/modules/transmission/__init__.py
index 5dd37b104..466f3a578 100644
--- a/plinth/modules/transmission/__init__.py
+++ b/plinth/modules/transmission/__init__.py
@@ -46,8 +46,6 @@ description = [
_('BitTorrent is a peer-to-peer file sharing protocol. '
'Transmission daemon handles Bitorrent file sharing. Note that '
'BitTorrent is not anonymous.'),
- _('Access the web interface at '
- '/transmission.')
]
clients = clients
@@ -74,10 +72,11 @@ class TransmissionApp(app_module.App):
parent_url_name='apps')
self.add(menu_item)
- shortcut = frontpage.Shortcut(
- 'shortcut-transmission', name, short_description=short_description,
- icon='transmission', url='/transmission', clients=clients,
- login_required=True, allowed_groups=[group[0]])
+ shortcut = frontpage.Shortcut('shortcut-transmission', name,
+ short_description=short_description,
+ icon='transmission', url='/transmission',
+ clients=clients, login_required=True,
+ allowed_groups=[group[0]])
self.add(shortcut)
firewall = Firewall('firewall-transmission', name,
diff --git a/plinth/modules/ttrss/__init__.py b/plinth/modules/ttrss/__init__.py
index 23a00f6d3..9fe10b9a6 100644
--- a/plinth/modules/ttrss/__init__.py
+++ b/plinth/modules/ttrss/__init__.py
@@ -49,10 +49,8 @@ description = [
'designed to allow reading news from any location, while feeling as '
'close to a real desktop application as possible.'),
format_lazy(
- _('When enabled, Tiny Tiny RSS will be available from /tt-rss path on the web server. '
- 'It can be accessed by any user with a '
- '{box_name} login.'),
+ _('When enabled, Tiny Tiny RSS can be accessed by any '
+ 'user with a {box_name} login.'),
box_name=_(cfg.box_name), users_url=reverse_lazy('users:index')),
format_lazy(
_('When using a mobile or desktop application for Tiny Tiny RSS, use '
@@ -81,10 +79,11 @@ class TTRSSApp(app_module.App):
'ttrss:index', parent_url_name='apps')
self.add(menu_item)
- shortcut = frontpage.Shortcut(
- 'shortcut-ttrss', name, short_description=short_description,
- icon='ttrss', url='/tt-rss', clients=clients, login_required=True,
- allowed_groups=[group[0]])
+ shortcut = frontpage.Shortcut('shortcut-ttrss', name,
+ short_description=short_description,
+ icon='ttrss', url='/tt-rss',
+ clients=clients, login_required=True,
+ allowed_groups=[group[0]])
self.add(shortcut)
firewall = Firewall('firewall-ttrss', name, ports=['http', 'https'],