From 8194628eb3b0b1bd66db98f01b0c245ad5e573c3 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 18 Aug 2020 20:22:52 -0700 Subject: [PATCH] bepasty: Update UI strings for permissions - Make them slightly more verbose. Avoid text in parenthesis. - 'Web link' is likely more easily associated with URL than 'web address'. Signed-off-by: Sunil Mohan Adapa Reviewed-by: Joseph Nuthalapati --- plinth/modules/bepasty/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plinth/modules/bepasty/__init__.py b/plinth/modules/bepasty/__init__.py index 953f009ae..a474bdd42 100644 --- a/plinth/modules/bepasty/__init__.py +++ b/plinth/modules/bepasty/__init__.py @@ -39,16 +39,16 @@ _description = [ app = None PERMISSIONS = { - 'read': _('Read files (using their web address)'), + 'read': _('Read a file, if a web link to the file is available'), 'create': _('Create or upload files'), - 'list': _('List all files'), + 'list': _('List all files and their web links'), 'delete': _('Delete files'), - 'admin': _('Admin (lock/unlock files)'), + 'admin': _('Administer files: lock/unlock files'), } DEFAULT_PERMISSIONS = { - '': _('None (password always required)'), - 'read': _('Read files (using their web address)'), + '': _('None, password is always required'), + 'read': _('Read a file, if a web link to the file is available'), 'read list': _('List and read all files'), }