e-nms_qa_automation/data/roles_dict.py

14 lines
682 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

"""Модуль roles_dict содержит словарь соответствия ролей.
Содержит сопоставление системных названий ролей с их отображаемыми названиями.
"""
# Словарь соответствия системных названий ролей их отображаемым названиям
roles_dict = {
"administrator": "Администратор",
"manager": "Контактное лицо",
"operator": "Оператор",
"inform_secur_user": "Специалист информационной безопасности",
"user": "Пользователь"
}