User:SaoMikoto/js/Usergroup.js: Difference between revisions
From Test Wiki
Content deleted Content added
// Edit via InPageEdit |
// Edit via InPageEdit |
||
| Line 6: | Line 6: | ||
// 用户组配置 |
// 用户组配置 |
||
const USER_GROUPS = { |
const USER_GROUPS = { |
||
' |
'sysadmin': { label: '系', color: '#FF4500', name: '系统管理员' }, |
||
' |
'steward': { label: '裁', color: '#9400D3', name: '监管员' }, |
||
' |
'bureaucrat': { label: '行', color: '#008080', name: '行政员' }, |
||
' |
'checkuser': { label: '查', color: '#4B0082', name: '用户查核员' }, |
||
' |
'suppress': { label: '监', color: '#000000', name: '监督员' }, |
||
' |
'sysop': { label: '管', color: '#2E8B57', name: '管理员' }, |
||
' |
'interface-admin': { label: '界', color: '#FF8C00', name: '界面管理员' }, |
||
' |
'interwiki-admin': { label: '域', color: '#4682B4', name: '跨wiki管理员' }, |
||
'electionadmin': { label: '选', color: '#9932CC', name: '选举管理员' }, |
|||
'abusefilter-admin': { label: '滤', color: '#DC143C', name: '滥用过滤器管理员' }, |
|||
'translateadmin': { label: '译', color: '#7FFFD4', name: '翻译管理员' }, |
|||
'chatmod': { label: '聊', color: '#20B2AA', name: '聊天版主' }, |
|||
'patroller': { label: '巡', color: '#3CB371', name: '巡查员' }, |
|||
'reviewer': { label: '核', color: '#6495ED', name: '复核员' }, |
|||
'autopatrol': { label: '免', color: '#9ACD32', name: '巡查豁免者' }, |
|||
'autoreview': { label: '复', color: '#00CED1', name: '自动复核用户' }, |
|||
'bot': { label: '机', color: '#A9A9A9', name: '机器人' }, |
|||
'confirmed': { label: '确', color: '#87CEEB', name: '确认用户' } |
|||
}; |
}; |
||