forked from openedx/frontend-app-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessages.js
More file actions
41 lines (39 loc) · 1.61 KB
/
messages.js
File metadata and controls
41 lines (39 loc) · 1.61 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
37
38
39
40
41
import { defineMessages } from '@edx/frontend-platform/i18n';
const messages = defineMessages({
headerPlaceholder: {
id: 'learn.header.h2.placeholder',
defaultMessage: 'Level 2 headings may be created by course providers in the future.',
description: 'Message spoken by a screenreader indicating that the h2 tag is a placeholder.',
},
loadFailure: {
id: 'learn.course.load.failure',
defaultMessage: 'There was an error loading this course.',
description: 'Message when a course fails to load',
},
loadingHonorCode: {
id: 'learn.loading.honor.codk',
defaultMessage: 'Loading honor code messaging...',
description: 'Message shown when an interface about the honor code is being loaded',
},
loadingLockedContent: {
id: 'learn.loading.content.lock',
defaultMessage: 'Loading locked content messaging...',
description: 'Message shown when an interface about locked content is being loaded',
},
loadingSequence: {
id: 'learn.loading.learning.sequence',
defaultMessage: 'Loading learning sequence...',
description: 'Message when learning sequence is being loaded',
},
noContent: {
id: 'learn.sequence.no.content',
defaultMessage: 'There is no content here.',
description: 'Message shown when there is no content to show a user inside a learning sequence.',
},
optionalCompletionUnitAlert: {
id: 'learn.optionalCompletionUnitAlert',
defaultMessage: 'This is optional content and will not affect your course score or completion.',
description: 'Alert message shown in a unit when the unit has optional completion.',
},
});
export default messages;