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
33 lines (31 loc) · 1.17 KB
/
messages.ts
File metadata and controls
33 lines (31 loc) · 1.17 KB
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
27
28
29
30
31
32
33
import { defineMessages } from '@edx/frontend-platform/i18n';
const messages = defineMessages(
{
'authz.user.table.role.column.header': {
id: 'authz.user.table.role.column.header',
defaultMessage: 'Role',
description: 'Header for the role column in the user table',
},
'authz.user.table.organization.column.header': {
id: 'authz.user.table.organization.column.header',
defaultMessage: 'Organization',
description: 'Header for the organization column in the user table',
},
'authz.user.table.scope.column.header': {
id: 'authz.user.table.scope.column.header',
defaultMessage: 'Scope',
description: 'Header for the scope column in the user table',
},
'authz.user.table.permissions.column.header': {
id: 'authz.user.table.permissions.column.header',
defaultMessage: 'Permissions',
description: 'Header for the permissions column in the user table',
},
'authz.user.table.action.column.header': {
id: 'authz.user.table.action.column.header',
defaultMessage: 'Actions',
description: 'Header for the actions column in the user table',
},
},
);
export default messages;