diff --git a/src/webpage/role.ts b/src/webpage/role.ts index 852554a..f6a75f2 100644 --- a/src/webpage/role.ts +++ b/src/webpage/role.ts @@ -543,7 +543,7 @@ class RoleList extends Buttons { const roleRow = document.createElement("div"); roleRow.classList.add("flexltr", "rolesheader"); - roleRow.append(I18n.role.roles()); + roleRow.append(this.channel ? I18n.role.perms() : I18n.role.roles()); const add = document.createElement("span"); add.classList.add("svg-plus", "svgicon", "addrole"); add.onclick = async (e) => { diff --git a/translations/en.json b/translations/en.json index 4347464..63e0cec 100644 --- a/translations/en.json +++ b/translations/en.json @@ -418,6 +418,7 @@ "displaySettings": "Display settings", "name": "Role name:", "roles":"Roles", + "perms":"Permissions", "hoisted": "Hoisted:", "mentionable": "Allow anyone to ping this role:", "color": "Color",