-
-
Notifications
You must be signed in to change notification settings - Fork 147
/
Locale.jsx
24 lines (23 loc) · 944 Bytes
/
Locale.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const defaultLocale = {
landingHeaderText: '<questionLength> Questions',
question: 'Question',
startQuizBtn: 'Start Quiz',
resultFilterAll: 'All',
resultFilterCorrect: 'Correct',
resultFilterIncorrect: 'Incorrect',
resultFilterUnanswered: 'Unanswered',
nextQuestionBtn: 'Next',
prevQuestionBtn: 'Prev',
resultPageHeaderText: 'You have completed the quiz. You got <correctIndexLength> out of <questionLength> questions.',
resultPagePoint: 'You scored <correctPoints> out of <totalPoints>.',
pauseScreenDisplay: 'Test is paused. Clicked the Resume button to continue',
timerTimeRemaining: 'Time Remaining',
timerTimeTaken: 'Time Taken',
pauseScreenPause: 'Pause',
pauseScreenResume: 'Resume',
singleSelectionTagText: 'Single Selection',
multipleSelectionTagText: 'Multiple Selection',
pickNumberOfSelection: 'Pick <numberOfSelection>',
marksOfQuestion: '(<marks> marks)',
};
export default defaultLocale;