forked from openedx/frontend-app-admin-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessages.ts
More file actions
26 lines (24 loc) · 767 Bytes
/
messages.ts
File metadata and controls
26 lines (24 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { defineMessages } from '@edx/frontend-platform/i18n';
const messages = defineMessages({
'authz.manage.page.title': {
id: 'authz.manage.page.title',
defaultMessage: 'Roles and Permissions Management',
description: 'AuthZ home page title',
},
'authz.breadcrumb.root': {
id: 'authz.breadcrumb.root',
defaultMessage: 'Manage Access',
description: 'AuthZ root breadcrumb',
},
'authz.tabs.team': {
id: 'authz.tabs.team',
defaultMessage: 'Team Members',
description: 'AuthZ title for the team management tab',
},
'authz.tabs.permissionsRoles': {
id: 'authz.tabs.permissionsRoles',
defaultMessage: 'Roles and Permissions',
description: 'AuthZ title for the roles tab',
},
});
export default messages;