From 1c5f4c04ec5db08be4ac91f1d279a79fb0257376 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 28 Jul 2015 12:04:04 +0530 Subject: [PATCH] owncloud: Update menu item with generic name --- plinth/modules/owncloud/owncloud.py | 3 ++- plinth/modules/owncloud/templates/owncloud.html | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plinth/modules/owncloud/owncloud.py b/plinth/modules/owncloud/owncloud.py index d62770616..a37651824 100644 --- a/plinth/modules/owncloud/owncloud.py +++ b/plinth/modules/owncloud/owncloud.py @@ -37,7 +37,8 @@ class OwnCloudForm(forms.Form): # pylint: disable-msg=W0232 def init(): """Initialize the ownCloud module""" menu = cfg.main_menu.get('apps:index') - menu.add_urlname('ownCloud', 'glyphicon-picture', 'owncloud:index', 35) + menu.add_urlname(_('File Hosting (ownCloud)'), 'glyphicon-picture', + 'owncloud:index', 35) status = get_status() diff --git a/plinth/modules/owncloud/templates/owncloud.html b/plinth/modules/owncloud/templates/owncloud.html index b5242d5ed..465d1125f 100644 --- a/plinth/modules/owncloud/templates/owncloud.html +++ b/plinth/modules/owncloud/templates/owncloud.html @@ -25,7 +25,7 @@
{% csrf_token %} -

ownCloud

+

File Hosting (ownCloud)

When enabled, the ownCloud installation will be available from /owncloud path on the web server.