1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-09 10:50:24 +00:00

[permission] changed 'Preview-on-Cloud' to 'Online Read-Only', and etc.

This commit is contained in:
llj
2019-06-25 17:58:02 +08:00
parent b079bbe190
commit abbe7d4d1b

View File

@@ -329,10 +329,10 @@ export const Utils = {
title = gettext('Read-Only library'); title = gettext('Read-Only library');
break; break;
case 'cloud-edit': case 'cloud-edit':
title = gettext('Preview-Edit-on-Cloud library'); title = gettext('Online Read-Write library');
break; break;
case 'preview': case 'preview':
title = gettext('Preview-on-Cloud library'); title = gettext('Online Read-Only library');
break; break;
} }
} }
@@ -349,10 +349,10 @@ export const Utils = {
title = gettext('Read-Only folder'); title = gettext('Read-Only folder');
break; break;
case 'cloud-edit': case 'cloud-edit':
title = gettext('Preview-Edit-on-Cloud folder'); title = gettext('Online Read-Write folder');
break; break;
case 'preview': case 'preview':
title = gettext('Preview-on-Cloud folder'); title = gettext('Online Read-Only folder');
break; break;
} }
return title; return title;
@@ -371,10 +371,10 @@ export const Utils = {
title = gettext('Admin'); title = gettext('Admin');
break; break;
case 'cloud-edit': case 'cloud-edit':
title = gettext('Preview-Edit-on-Cloud'); title = gettext('Online Read-Write');
break; break;
case 'preview': case 'preview':
title = gettext('Preview-on-Cloud'); title = gettext('Online Read-Only');
break; break;
} }
return title; return title;