2017-04-10 11:09:26 +02:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2017-05-25 12:39:08 +02:00
|
|
|
import { _t } from './languageHandler';
|
2017-05-23 16:16:31 +02:00
|
|
|
|
2017-11-13 13:08:53 +01:00
|
|
|
export function levelRoleMap(usersDefault) {
|
2017-05-25 18:17:37 +02:00
|
|
|
return {
|
|
|
|
undefined: _t('Default'),
|
2017-11-13 13:08:53 +01:00
|
|
|
0: _t('Restricted'),
|
|
|
|
[usersDefault]: _t('Default'),
|
2017-07-01 15:50:22 +02:00
|
|
|
50: _t('Moderator'),
|
2017-05-25 18:17:37 +02:00
|
|
|
100: _t('Admin'),
|
|
|
|
};
|
2017-05-23 16:16:31 +02:00
|
|
|
}
|
2017-04-10 11:09:26 +02:00
|
|
|
|
2017-11-13 13:08:53 +01:00
|
|
|
export function textualPowerLevel(level, usersDefault) {
|
2019-09-18 10:27:43 +02:00
|
|
|
const LEVEL_ROLE_MAP = levelRoleMap(usersDefault);
|
2017-04-10 11:09:26 +02:00
|
|
|
if (LEVEL_ROLE_MAP[level]) {
|
2019-11-14 16:58:56 +01:00
|
|
|
return LEVEL_ROLE_MAP[level];
|
2017-04-10 11:09:26 +02:00
|
|
|
} else {
|
2019-11-15 15:16:23 +01:00
|
|
|
return _t("Custom (%(level)s)", {level});
|
2017-04-10 11:09:26 +02:00
|
|
|
}
|
|
|
|
}
|