-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathmessages.ts
More file actions
36 lines (34 loc) · 1.67 KB
/
messages.ts
File metadata and controls
36 lines (34 loc) · 1.67 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
34
35
36
import { defineMessages } from '@edx/frontend-platform/i18n';
const messages = defineMessages({
createLibrary: {
id: 'course-authoring.library-authoring.create-legacy-library',
defaultMessage: 'Create new legacy library',
description: 'Header for the create legacy library form',
},
titleLabel: {
id: 'course-authoring.library-authoring.create-legacy-library.form.title.label',
defaultMessage: 'Legacy library name',
description: 'Label for the title field when creating a legacy library.',
},
warningTitle: {
id: 'course-authoring.library-authoring.create-legacy-library.warning.title',
defaultMessage: 'You are creating content in a deprecated format',
description: 'Warning to discourage users from creating a new Legacy Library',
},
warningBody: {
id: 'course-authoring.library-authoring.create-legacy-library.warning.body',
defaultMessage: 'Legacy libraries will be unsupported in a future release. Any content you create in a legacy library will soon need to be migrated. Consider using the Libraries (Beta) feature instead.',
description: 'Warning to discourage users from creating a new Legacy Library',
},
createLibraryButton: {
id: 'course-authoring.library-authoring.create-legacy-library.form.create-library.button',
defaultMessage: 'Create legacy library',
description: 'Button text for creating a new legacy library.',
},
createLibraryButtonPending: {
id: 'course-authoring.library-authoring.create-legacy-library.form.create-library.button.pending',
defaultMessage: 'Creating legacy library..',
description: 'Button text while the legacy library is being created.',
},
});
export default messages;