From 498a0e34072424d8e2adf7c12cb0c77f1680a8d2 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Mon, 12 Mar 2018 18:23:33 +0530 Subject: [PATCH] sharing: Update description Signed-off-by: Joseph Nuthalapati Reviewed-by: Sunil Mohan Adapa --- plinth/modules/sharing/__init__.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/plinth/modules/sharing/__init__.py b/plinth/modules/sharing/__init__.py index ed7527a32..62d83ee43 100644 --- a/plinth/modules/sharing/__init__.py +++ b/plinth/modules/sharing/__init__.py @@ -22,16 +22,19 @@ import json from django.utils.translation import ugettext_lazy as _ -from plinth import actions +from plinth import actions, cfg from plinth.menu import main_menu +from plinth.utils import format_lazy version = 1 name = _('Sharing') description = [ - _('Sharing allows you to share your content over web with chosen groups' - 'of users. Add the content you would like to share in the sharing app.'), + format_lazy( + _('Sharing allows you to share files and folders on your {box_name} ' + 'over the web with chosen groups of users.'), box_name=_( + cfg.box_name)) ]