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 <sunil@medhas.org>
Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
This commit is contained in:
Sunil Mohan Adapa 2020-08-18 20:22:52 -07:00 committed by Joseph Nuthalapati
parent 253e30c8e6
commit 8194628eb3
No known key found for this signature in database
GPG Key ID: 5398F00A2FA43C35

View File

@ -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'),
}