Update to use shorter wording in limited and protected permissions

This commit is contained in:
Wu Cheng-Han 2017-01-12 23:36:23 +08:00
parent 5f65795e79
commit 8b378d7847
2 changed files with 4 additions and 4 deletions
public/js

View file

@ -2289,7 +2289,7 @@ function updatePermission(newPermission) {
break;
case "limited":
label = '<i class="fa fa-id-card"></i> Limited';
title = "Signed people can edit & guest can't view"
title = "Signed people can edit (forbid guest)"
break;
case "locked":
label = '<i class="fa fa-lock"></i> Locked';
@ -2297,7 +2297,7 @@ function updatePermission(newPermission) {
break;
case "protected":
label = '<i class="fa fa-umbrella"></i> Protected';
title = "Only owner can edit & guest can't view";
title = "Only owner can edit (forbid guest)";
break;
case "private":
label = '<i class="fa fa-hand-stop-o"></i> Private';