Skip to content

Commit

Permalink
fix: permissions locale for configuration page[WTEL-3818]
Browse files Browse the repository at this point in the history
  • Loading branch information
Lera24 committed Oct 23, 2023
1 parent c34a300 commit 6ecfc2b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/app/locale/en/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export default {
manageUserRoles: 'Manage user roles',
manageUserLicense: 'Manage user license',
changeUserPassword: 'Change user password',
systemSetting: 'Manage system settings',
manageConfiguration: 'Manage system configurations',
addDescription: 'Grants permission to create any objects',
deleteDescription: 'Grants permission to remove any objects',
readDescription: 'Grants permission to select any objects',
Expand All @@ -298,7 +298,7 @@ export default {
manageUserRolesDescription: 'Grants permission to manage a set of user roles',
manageUserLicenseDescription: 'Grants permission to manage a set of user license',
changeUserPasswordDescription: 'Grants permission to change the users password',
systemSettingDescription: 'Grants permission to access and manage the System section',
manageConfigurationDescription: 'Grants permission to access and manage the Configuration section',
},
addPermission: 'Add role permission',
usage: 'Usage',
Expand Down
4 changes: 2 additions & 2 deletions src/app/locale/ru/ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export default {
manageUserRoles: 'Управление ролями пользователей',
manageUserLicense: 'Управление лицензиями пользователей',
changeUserPassword: 'Изменять пароли пользователей',
systemSetting: 'Управление системными настройками',
manageConfiguration: 'Управление системными конфигурациями',
addDescription: 'Предоставляет разрешение на создание объектов',
deleteDescription: 'Предоставляет разрешение на удаление объектов',
readDescription: 'Предоставляет разрешение на выбор объектов',
Expand All @@ -298,7 +298,7 @@ export default {
manageUserRolesDescription: 'Предоставляет разрешение на управление набором ролей пользователей',
manageUserLicenseDescription: 'Предоставляет разрешение на управление набором пользовательских лицензий',
changeUserPasswordDescription: 'Предоставляет разрешение на изменение пароля пользователя',
systemSettingDescription: 'Предоставляет разрешение на управление разделом системных настроек',
manageConfigurationDescription: 'Предоставляет разрешение на управление разделом Конфигурация',
},
addPermission: 'Добавить право доступа для роли',
usage: 'Использование',
Expand Down
4 changes: 2 additions & 2 deletions src/app/locale/ua/ua.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export default {
manageUserRoles: 'Управління ролями користувачів',
manageUserLicense: 'Управління ліцензіями користувачів',
changeUserPassword: 'Змінювати паролі користувачів',
systemSetting: 'Управління системними налаштуваннями',
manageConfiguration: 'Управління системними конфігураціями',
addDescription: 'Надає дозвіл на створення об’єктів',
deleteDescription: 'Надає дозвіл на видалення об’єктів',
readDescription: 'Надає дозвіл на вибір об’єктів',
Expand All @@ -298,7 +298,7 @@ export default {
manageUserRolesDescription: 'Надає дозвіл на керування набором ролей користувачів',
manageUserLicenseDescription: 'Надає дозвіл на керування набором ліцензій користувача',
changeUserPasswordDescription: 'Надає дозвіл на зміну пароля користувача',
systemSettingDescription: 'Надає дозвіл на керування розділом системних налаштувань',
manageConfigurationDescription: 'Надає дозвіл на керування розділом Конфігурація',
},
addPermission: 'Надати дозвіл',
usage: 'Використання',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default {
manage_user_roles: this.$t('objects.permissions.roles.permissions.manageUserRoles'),
manage_user_license: this.$t('objects.permissions.roles.permissions.manageUserLicense'),
change_user_password: this.$t('objects.permissions.roles.permissions.changeUserPassword'),
system_setting: this.$t('objects.permissions.roles.permissions.systemSetting'),
system_setting: this.$t('objects.permissions.roles.permissions.manageConfiguration'),
};
},
permissionUsageLocale() {
Expand All @@ -129,7 +129,7 @@ export default {
manage_user_roles: this.$t('objects.permissions.roles.permissions.manageUserRolesDescription'),
manage_user_license: this.$t('objects.permissions.roles.permissions.manageUserLicenseDescription'),
change_user_password: this.$t('objects.permissions.roles.permissions.changeUserPasswordDescription'),
system_setting: this.$t('objects.permissions.roles.permissions.systemSettingDescription'),
system_setting: this.$t('objects.permissions.roles.permissions.manageConfigurationDescription'),
};
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default {
path() {
return [
{ name: this.$t('objects.system.system') },
{ name: this.$tc('objects.system.configuration.configuration', 1), route: namespace },
{ name: this.$tc('objects.system.configuration.configuration', 1), route: 'configuration' },
];
},
},
Expand Down

0 comments on commit 6ecfc2b

Please sign in to comment.