@coorpacademy/app-review 0.7.4 → 0.7.5-alpha.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/actions/api/fetch-slides-to-review-by-skill-ref.d.ts +11 -0
- package/es/actions/api/fetch-slides-to-review-by-skill-ref.js +21 -0
- package/es/actions/api/post-answer.js +2 -0
- package/es/services/fetch-slides-to-review-by-skill-ref.d.ts +1 -1
- package/es/services/fetch-slides-to-review-by-skill-ref.js +5 -3
- package/es/types/common.d.ts +1 -2
- package/es/views/slides/index.js +8 -8
- package/lib/actions/api/fetch-slides-to-review-by-skill-ref.d.ts +11 -0
- package/lib/actions/api/fetch-slides-to-review-by-skill-ref.js +28 -0
- package/lib/actions/api/post-answer.js +2 -0
- package/lib/services/fetch-slides-to-review-by-skill-ref.d.ts +1 -1
- package/lib/services/fetch-slides-to-review-by-skill-ref.js +5 -3
- package/lib/types/common.d.ts +1 -2
- package/lib/views/slides/index.js +8 -8
- package/locales/bs/review.json +5 -1
- package/locales/cs/review.json +16 -12
- package/locales/de/review.json +16 -12
- package/locales/en/review.json +4 -0
- package/locales/es/review.json +16 -12
- package/locales/et/review.json +5 -1
- package/locales/fr/review.json +16 -12
- package/locales/hr/review.json +16 -12
- package/locales/hu/review.json +16 -12
- package/locales/hy/review.json +5 -1
- package/locales/it/review.json +16 -12
- package/locales/ja/review.json +16 -12
- package/locales/ko/review.json +16 -12
- package/locales/nl/review.json +16 -12
- package/locales/pl/review.json +16 -12
- package/locales/pt/review.json +16 -12
- package/locales/ro/review.json +16 -12
- package/locales/ru/review.json +16 -12
- package/locales/sk/review.json +16 -12
- package/locales/tl/review.json +16 -12
- package/locales/tr/review.json +16 -12
- package/locales/uk/review.json +16 -12
- package/locales/vi/review.json +16 -12
- package/locales/zh/review.json +16 -12
- package/locales/zh_TW/review.json +5 -1
- package/package.json +3 -3
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Dispatch } from 'redux';
|
|
2
|
+
import type { StoreState } from '../../reducers';
|
|
3
|
+
import type { Options, SlideIdFromAPI } from '../../types/common';
|
|
4
|
+
export declare const SLIDES_TO_REVIEW_FETCH_REQUEST: "@@slidesToReview/FETCH_REQUEST";
|
|
5
|
+
export declare const SLIDES_TO_REVIEW_FETCH_SUCCESS: "@@slidesToReview/FETCH_SUCCESS";
|
|
6
|
+
export declare const SLIDES_TO_REVIEW_FETCH_FAILURE: "@@slidesToReview/FETCH_FAILURE";
|
|
7
|
+
export declare type ReceivedSlidesToReviewBySkillRef = {
|
|
8
|
+
type: typeof SLIDES_TO_REVIEW_FETCH_SUCCESS;
|
|
9
|
+
payload: SlideIdFromAPI[];
|
|
10
|
+
};
|
|
11
|
+
export declare const fetchSlidesToReviewBySkillRef: (dispatch: Dispatch, getState: () => StoreState, { services }: Options) => ReceivedSlidesToReviewBySkillRef;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import buildTask from '@coorpacademy/redux-task';
|
|
2
|
+
export const SLIDES_TO_REVIEW_FETCH_REQUEST = '@@slidesToReview/FETCH_REQUEST';
|
|
3
|
+
export const SLIDES_TO_REVIEW_FETCH_SUCCESS = '@@slidesToReview/FETCH_SUCCESS';
|
|
4
|
+
export const SLIDES_TO_REVIEW_FETCH_FAILURE = '@@slidesToReview/FETCH_FAILURE';
|
|
5
|
+
export const fetchSlidesToReviewBySkillRef = (dispatch, getState, { services }) => {
|
|
6
|
+
const action = buildTask({
|
|
7
|
+
types: [
|
|
8
|
+
SLIDES_TO_REVIEW_FETCH_REQUEST,
|
|
9
|
+
SLIDES_TO_REVIEW_FETCH_SUCCESS,
|
|
10
|
+
SLIDES_TO_REVIEW_FETCH_FAILURE
|
|
11
|
+
],
|
|
12
|
+
task: () => {
|
|
13
|
+
const state = getState();
|
|
14
|
+
const token = state.data.token;
|
|
15
|
+
const progression = state.data.progression;
|
|
16
|
+
const skillRef = progression.content.ref;
|
|
17
|
+
return services.fetchSlidesToReviewBySkillRef(token, skillRef);
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
return dispatch(action);
|
|
21
|
+
};
|
|
@@ -3,6 +3,7 @@ import get from 'lodash/fp/get';
|
|
|
3
3
|
import { fetchCorrection } from './fetch-correction';
|
|
4
4
|
import { fetchSlide } from './fetch-slide';
|
|
5
5
|
import { fetchEndRank, fetchStartRank } from './fetch-rank';
|
|
6
|
+
import { fetchSlidesToReviewBySkillRef } from './fetch-slides-to-review-by-skill-ref';
|
|
6
7
|
export const POST_ANSWER_REQUEST = '@@answer/POST_REQUEST';
|
|
7
8
|
export const POST_ANSWER_SUCCESS = '@@answer/POST_SUCCESS';
|
|
8
9
|
export const POST_ANSWER_FAILURE = '@@answer/POST_FAILURE';
|
|
@@ -31,6 +32,7 @@ export const postAnswer = async (dispatch, getState, { services }) => {
|
|
|
31
32
|
else {
|
|
32
33
|
await dispatch(fetchCorrection);
|
|
33
34
|
await dispatch(fetchEndRank);
|
|
35
|
+
await dispatch(fetchSlidesToReviewBySkillRef);
|
|
34
36
|
}
|
|
35
37
|
}
|
|
36
38
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SlideIdFromAPI } from '../types/common';
|
|
2
|
-
export declare const fetchSlidesToReviewBySkillRef: (
|
|
2
|
+
export declare const fetchSlidesToReviewBySkillRef: (token: string, skillRef: string) => Promise<SlideIdFromAPI[]>;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import crossFetch from 'cross-fetch';
|
|
2
2
|
import decode from 'jwt-decode';
|
|
3
3
|
import { toJSON } from './tools/fetch-responses';
|
|
4
|
-
export const fetchSlidesToReviewBySkillRef = async (
|
|
5
|
-
const { user: userId } = decode(token);
|
|
6
|
-
const response = await crossFetch(`${
|
|
4
|
+
export const fetchSlidesToReviewBySkillRef = async (token, skillRef) => {
|
|
5
|
+
const { user: userId, host } = decode(token);
|
|
6
|
+
const response = await crossFetch(`${host}/api/v2/skills/${skillRef}/review/user/${userId}/slide`, {
|
|
7
|
+
headers: { authorization: token }
|
|
8
|
+
});
|
|
7
9
|
return toJSON(response);
|
|
8
10
|
};
|
package/es/types/common.d.ts
CHANGED
|
@@ -135,7 +135,7 @@ export declare type Services = {
|
|
|
135
135
|
postAnswer(progression: ProgressionFromAPI, token: string, answer: string[]): Promise<ProgressionFromAPI>;
|
|
136
136
|
fetchCorrection(slideRef: string, token: string, progressionId: string, answer: string[]): Promise<CorrectionFromAPI | void>;
|
|
137
137
|
fetchRank(token: string): Promise<Rank>;
|
|
138
|
-
fetchSlidesToReviewBySkillRef(
|
|
138
|
+
fetchSlidesToReviewBySkillRef(token: string, skillRef: string): Promise<SlideIdFromAPI[]>;
|
|
139
139
|
};
|
|
140
140
|
export declare type Options = {
|
|
141
141
|
services: Services;
|
|
@@ -148,7 +148,6 @@ export declare type AppOptions = ConnectedOptions & {
|
|
|
148
148
|
token: string;
|
|
149
149
|
skillRef?: string;
|
|
150
150
|
services: Services;
|
|
151
|
-
url: string;
|
|
152
151
|
callbackOnViewChanged?: (viewName: ViewName) => void;
|
|
153
152
|
};
|
|
154
153
|
export declare type ThunkOptions = {
|
package/es/views/slides/index.js
CHANGED
|
@@ -189,28 +189,28 @@ const getCorrectionPopinProps = (dispatch) => (isCorrect, correctAnswer, klf, tr
|
|
|
189
189
|
type: isCorrect ? 'right' : 'wrong'
|
|
190
190
|
};
|
|
191
191
|
};
|
|
192
|
-
const buildQuitPopinProps = (dispatch) => (onQuitClick) => {
|
|
192
|
+
const buildQuitPopinProps = (dispatch) => (onQuitClick, translate) => {
|
|
193
193
|
return {
|
|
194
|
-
content:
|
|
194
|
+
content: translate('Quit Title'),
|
|
195
195
|
icon: `MoonRocket`,
|
|
196
196
|
mode: 'alert',
|
|
197
|
-
descriptionText:
|
|
197
|
+
descriptionText: translate('Quit Description Text'),
|
|
198
198
|
firstButton: {
|
|
199
|
-
label: '
|
|
199
|
+
label: translate('Stop learning'),
|
|
200
200
|
type: 'tertiary',
|
|
201
201
|
customStyle: {
|
|
202
202
|
color: '#ED3436'
|
|
203
203
|
},
|
|
204
204
|
handleOnclick: onQuitClick,
|
|
205
|
-
'aria-label': 'Stop
|
|
205
|
+
'aria-label': translate('Stop learning')
|
|
206
206
|
},
|
|
207
207
|
secondButton: {
|
|
208
|
-
label:
|
|
208
|
+
label: translate('Continue learning'),
|
|
209
209
|
type: 'primary',
|
|
210
210
|
handleOnclick: () => {
|
|
211
211
|
dispatch(closeQuitPopin);
|
|
212
212
|
},
|
|
213
|
-
'aria-label': 'Continue
|
|
213
|
+
'aria-label': translate('Continue learning')
|
|
214
214
|
}
|
|
215
215
|
};
|
|
216
216
|
};
|
|
@@ -314,6 +314,6 @@ export const mapStateToSlidesProps = (state, dispatch, options) => {
|
|
|
314
314
|
endReview: endReview && state.ui.showCongrats
|
|
315
315
|
},
|
|
316
316
|
congrats: buildCongratsProps(state, translate),
|
|
317
|
-
quitPopin: showQuitPopin ? buildQuitPopinProps(dispatch)(onQuitClick) : undefined
|
|
317
|
+
quitPopin: showQuitPopin ? buildQuitPopinProps(dispatch)(onQuitClick, translate) : undefined
|
|
318
318
|
};
|
|
319
319
|
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Dispatch } from 'redux';
|
|
2
|
+
import type { StoreState } from '../../reducers';
|
|
3
|
+
import type { Options, SlideIdFromAPI } from '../../types/common';
|
|
4
|
+
export declare const SLIDES_TO_REVIEW_FETCH_REQUEST: "@@slidesToReview/FETCH_REQUEST";
|
|
5
|
+
export declare const SLIDES_TO_REVIEW_FETCH_SUCCESS: "@@slidesToReview/FETCH_SUCCESS";
|
|
6
|
+
export declare const SLIDES_TO_REVIEW_FETCH_FAILURE: "@@slidesToReview/FETCH_FAILURE";
|
|
7
|
+
export declare type ReceivedSlidesToReviewBySkillRef = {
|
|
8
|
+
type: typeof SLIDES_TO_REVIEW_FETCH_SUCCESS;
|
|
9
|
+
payload: SlideIdFromAPI[];
|
|
10
|
+
};
|
|
11
|
+
export declare const fetchSlidesToReviewBySkillRef: (dispatch: Dispatch, getState: () => StoreState, { services }: Options) => ReceivedSlidesToReviewBySkillRef;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.fetchSlidesToReviewBySkillRef = exports.SLIDES_TO_REVIEW_FETCH_FAILURE = exports.SLIDES_TO_REVIEW_FETCH_SUCCESS = exports.SLIDES_TO_REVIEW_FETCH_REQUEST = void 0;
|
|
7
|
+
const redux_task_1 = __importDefault(require("@coorpacademy/redux-task"));
|
|
8
|
+
exports.SLIDES_TO_REVIEW_FETCH_REQUEST = '@@slidesToReview/FETCH_REQUEST';
|
|
9
|
+
exports.SLIDES_TO_REVIEW_FETCH_SUCCESS = '@@slidesToReview/FETCH_SUCCESS';
|
|
10
|
+
exports.SLIDES_TO_REVIEW_FETCH_FAILURE = '@@slidesToReview/FETCH_FAILURE';
|
|
11
|
+
const fetchSlidesToReviewBySkillRef = (dispatch, getState, { services }) => {
|
|
12
|
+
const action = (0, redux_task_1.default)({
|
|
13
|
+
types: [
|
|
14
|
+
exports.SLIDES_TO_REVIEW_FETCH_REQUEST,
|
|
15
|
+
exports.SLIDES_TO_REVIEW_FETCH_SUCCESS,
|
|
16
|
+
exports.SLIDES_TO_REVIEW_FETCH_FAILURE
|
|
17
|
+
],
|
|
18
|
+
task: () => {
|
|
19
|
+
const state = getState();
|
|
20
|
+
const token = state.data.token;
|
|
21
|
+
const progression = state.data.progression;
|
|
22
|
+
const skillRef = progression.content.ref;
|
|
23
|
+
return services.fetchSlidesToReviewBySkillRef(token, skillRef);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
return dispatch(action);
|
|
27
|
+
};
|
|
28
|
+
exports.fetchSlidesToReviewBySkillRef = fetchSlidesToReviewBySkillRef;
|
|
@@ -9,6 +9,7 @@ const get_1 = __importDefault(require("lodash/fp/get"));
|
|
|
9
9
|
const fetch_correction_1 = require("./fetch-correction");
|
|
10
10
|
const fetch_slide_1 = require("./fetch-slide");
|
|
11
11
|
const fetch_rank_1 = require("./fetch-rank");
|
|
12
|
+
const fetch_slides_to_review_by_skill_ref_1 = require("./fetch-slides-to-review-by-skill-ref");
|
|
12
13
|
exports.POST_ANSWER_REQUEST = '@@answer/POST_REQUEST';
|
|
13
14
|
exports.POST_ANSWER_SUCCESS = '@@answer/POST_SUCCESS';
|
|
14
15
|
exports.POST_ANSWER_FAILURE = '@@answer/POST_FAILURE';
|
|
@@ -37,6 +38,7 @@ const postAnswer = async (dispatch, getState, { services }) => {
|
|
|
37
38
|
else {
|
|
38
39
|
await dispatch(fetch_correction_1.fetchCorrection);
|
|
39
40
|
await dispatch(fetch_rank_1.fetchEndRank);
|
|
41
|
+
await dispatch(fetch_slides_to_review_by_skill_ref_1.fetchSlidesToReviewBySkillRef);
|
|
40
42
|
}
|
|
41
43
|
}
|
|
42
44
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SlideIdFromAPI } from '../types/common';
|
|
2
|
-
export declare const fetchSlidesToReviewBySkillRef: (
|
|
2
|
+
export declare const fetchSlidesToReviewBySkillRef: (token: string, skillRef: string) => Promise<SlideIdFromAPI[]>;
|
|
@@ -7,9 +7,11 @@ exports.fetchSlidesToReviewBySkillRef = void 0;
|
|
|
7
7
|
const cross_fetch_1 = __importDefault(require("cross-fetch"));
|
|
8
8
|
const jwt_decode_1 = __importDefault(require("jwt-decode"));
|
|
9
9
|
const fetch_responses_1 = require("./tools/fetch-responses");
|
|
10
|
-
const fetchSlidesToReviewBySkillRef = async (
|
|
11
|
-
const { user: userId } = (0, jwt_decode_1.default)(token);
|
|
12
|
-
const response = await (0, cross_fetch_1.default)(`${
|
|
10
|
+
const fetchSlidesToReviewBySkillRef = async (token, skillRef) => {
|
|
11
|
+
const { user: userId, host } = (0, jwt_decode_1.default)(token);
|
|
12
|
+
const response = await (0, cross_fetch_1.default)(`${host}/api/v2/skills/${skillRef}/review/user/${userId}/slide`, {
|
|
13
|
+
headers: { authorization: token }
|
|
14
|
+
});
|
|
13
15
|
return (0, fetch_responses_1.toJSON)(response);
|
|
14
16
|
};
|
|
15
17
|
exports.fetchSlidesToReviewBySkillRef = fetchSlidesToReviewBySkillRef;
|
package/lib/types/common.d.ts
CHANGED
|
@@ -135,7 +135,7 @@ export declare type Services = {
|
|
|
135
135
|
postAnswer(progression: ProgressionFromAPI, token: string, answer: string[]): Promise<ProgressionFromAPI>;
|
|
136
136
|
fetchCorrection(slideRef: string, token: string, progressionId: string, answer: string[]): Promise<CorrectionFromAPI | void>;
|
|
137
137
|
fetchRank(token: string): Promise<Rank>;
|
|
138
|
-
fetchSlidesToReviewBySkillRef(
|
|
138
|
+
fetchSlidesToReviewBySkillRef(token: string, skillRef: string): Promise<SlideIdFromAPI[]>;
|
|
139
139
|
};
|
|
140
140
|
export declare type Options = {
|
|
141
141
|
services: Services;
|
|
@@ -148,7 +148,6 @@ export declare type AppOptions = ConnectedOptions & {
|
|
|
148
148
|
token: string;
|
|
149
149
|
skillRef?: string;
|
|
150
150
|
services: Services;
|
|
151
|
-
url: string;
|
|
152
151
|
callbackOnViewChanged?: (viewName: ViewName) => void;
|
|
153
152
|
};
|
|
154
153
|
export declare type ThunkOptions = {
|
|
@@ -196,28 +196,28 @@ const getCorrectionPopinProps = (dispatch) => (isCorrect, correctAnswer, klf, tr
|
|
|
196
196
|
type: isCorrect ? 'right' : 'wrong'
|
|
197
197
|
};
|
|
198
198
|
};
|
|
199
|
-
const buildQuitPopinProps = (dispatch) => (onQuitClick) => {
|
|
199
|
+
const buildQuitPopinProps = (dispatch) => (onQuitClick, translate) => {
|
|
200
200
|
return {
|
|
201
|
-
content:
|
|
201
|
+
content: translate('Quit Title'),
|
|
202
202
|
icon: `MoonRocket`,
|
|
203
203
|
mode: 'alert',
|
|
204
|
-
descriptionText:
|
|
204
|
+
descriptionText: translate('Quit Description Text'),
|
|
205
205
|
firstButton: {
|
|
206
|
-
label: '
|
|
206
|
+
label: translate('Stop learning'),
|
|
207
207
|
type: 'tertiary',
|
|
208
208
|
customStyle: {
|
|
209
209
|
color: '#ED3436'
|
|
210
210
|
},
|
|
211
211
|
handleOnclick: onQuitClick,
|
|
212
|
-
'aria-label': 'Stop
|
|
212
|
+
'aria-label': translate('Stop learning')
|
|
213
213
|
},
|
|
214
214
|
secondButton: {
|
|
215
|
-
label:
|
|
215
|
+
label: translate('Continue learning'),
|
|
216
216
|
type: 'primary',
|
|
217
217
|
handleOnclick: () => {
|
|
218
218
|
dispatch(quit_popin_1.closeQuitPopin);
|
|
219
219
|
},
|
|
220
|
-
'aria-label': 'Continue
|
|
220
|
+
'aria-label': translate('Continue learning')
|
|
221
221
|
}
|
|
222
222
|
};
|
|
223
223
|
};
|
|
@@ -321,7 +321,7 @@ const mapStateToSlidesProps = (state, dispatch, options) => {
|
|
|
321
321
|
endReview: endReview && state.ui.showCongrats
|
|
322
322
|
},
|
|
323
323
|
congrats: buildCongratsProps(state, translate),
|
|
324
|
-
quitPopin: showQuitPopin ? buildQuitPopinProps(dispatch)(onQuitClick) : undefined
|
|
324
|
+
quitPopin: showQuitPopin ? buildQuitPopinProps(dispatch)(onQuitClick, translate) : undefined
|
|
325
325
|
};
|
|
326
326
|
};
|
|
327
327
|
exports.mapStateToSlidesProps = mapStateToSlidesProps;
|
package/locales/bs/review.json
CHANGED
|
@@ -10,5 +10,9 @@
|
|
|
10
10
|
"You are now": "You are now",
|
|
11
11
|
"Revise another skill": "Review another skill",
|
|
12
12
|
"Continue reviewing": "Keep reviewing",
|
|
13
|
-
"Congratulations!": "Congratulations!"
|
|
13
|
+
"Congratulations!": "Congratulations!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/cs/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Kontrolní režim",
|
|
3
|
+
"Content Parent Title": "Od `{{obsahNázev}}` `{{obsahTyp}}`",
|
|
4
|
+
"Validate": "Ověřit",
|
|
5
|
+
"Next question": "Další otázka",
|
|
6
|
+
"KLF": "Klíčový vzdělávací faktor",
|
|
7
|
+
"Correct Answer": "Správná odpověď",
|
|
8
|
+
"Wrong Answer": "Špatná odpověď",
|
|
9
|
+
"You have won": "Vyhráli jste",
|
|
10
|
+
"You are now": "Právě jste",
|
|
11
|
+
"Revise another skill": "Zopakovat si další dovednost",
|
|
12
|
+
"Continue reviewing": "Pokračovat v kontrole",
|
|
13
|
+
"Congratulations!": "Gratulujeme!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/de/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Überprüfungsmodus",
|
|
3
|
+
"Content Parent Title": "Von `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Bestätigen",
|
|
5
|
+
"Next question": "Nächste Frage",
|
|
6
|
+
"KLF": "Wichtigster Lernfaktor",
|
|
7
|
+
"Correct Answer": "Richtige Antwort",
|
|
8
|
+
"Wrong Answer": "Falsche Antwort",
|
|
9
|
+
"You have won": "Sie haben gewonnen",
|
|
10
|
+
"You are now": "Sie sind jetzt",
|
|
11
|
+
"Revise another skill": "Andere Fertigkeit überarbeiten",
|
|
12
|
+
"Continue reviewing": "Überprüfung fortsetzen",
|
|
13
|
+
"Congratulations!": "Herzlichen Glückwunsch!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/en/review.json
CHANGED
|
@@ -12,6 +12,10 @@
|
|
|
12
12
|
"Continue reviewing": "Keep reviewing",
|
|
13
13
|
"Congratulations!": "Congratulations!",
|
|
14
14
|
"aria_label": "Review Skills Template",
|
|
15
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
16
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
17
|
+
"Stop learning": "End session",
|
|
18
|
+
"Continue learning": "Continue learning",
|
|
15
19
|
"presentation": {
|
|
16
20
|
"aria_label": "Review Presentation Container",
|
|
17
21
|
"title": "What is<br/>Revision Mode ?",
|
package/locales/es/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Modo revisión",
|
|
3
|
+
"Content Parent Title": "De `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Validar",
|
|
5
|
+
"Next question": "Siguiente pregunta",
|
|
6
|
+
"KLF": "Factor clave de aprendizaje",
|
|
7
|
+
"Correct Answer": "Respuesta correcta",
|
|
8
|
+
"Wrong Answer": "Respuesta incorrecta",
|
|
9
|
+
"You have won": "Has ganado",
|
|
10
|
+
"You are now": "Ahora eres",
|
|
11
|
+
"Revise another skill": "Repasar otra habilidad",
|
|
12
|
+
"Continue reviewing": "Seguir revisando",
|
|
13
|
+
"Congratulations!": "¡Enhorabuena!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/et/review.json
CHANGED
|
@@ -10,5 +10,9 @@
|
|
|
10
10
|
"You are now": "You are now",
|
|
11
11
|
"Revise another skill": "Review another skill",
|
|
12
12
|
"Continue reviewing": "Keep reviewing",
|
|
13
|
-
"Congratulations!": "Congratulations!"
|
|
13
|
+
"Congratulations!": "Congratulations!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/fr/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Mode Révision",
|
|
3
|
+
"Content Parent Title": "de `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Valider",
|
|
5
|
+
"Next question": "Question Suivante",
|
|
6
|
+
"KLF": "Principal facteur d'apprentissage",
|
|
7
|
+
"Correct Answer": "Bonne Réponse",
|
|
8
|
+
"Wrong Answer": "Mauvaise Réponse",
|
|
9
|
+
"You have won": "Vous avez gagné",
|
|
10
|
+
"You are now": "Vous êtes à présent",
|
|
11
|
+
"Revise another skill": "Réviser une autre compétence",
|
|
12
|
+
"Continue reviewing": "Poursuivre la révision",
|
|
13
|
+
"Congratulations!": "Félicitations !",
|
|
14
|
+
"Quit Title": "Tu nous quittes déjà ?",
|
|
15
|
+
"Quit Description Text": "Tu vas t'en sortir ! Si tu arrêtes maintenant, tu vas perdre ta progression.",
|
|
16
|
+
"Stop learning": "Arrêter ma session",
|
|
17
|
+
"Continue learning": "Continuer d'apprendre"
|
|
14
18
|
}
|
package/locales/hr/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Način provjere",
|
|
3
|
+
"Content Parent Title": "Iz\n`{{naslovSadržaja}}` `{{vrstaSadržaja}}",
|
|
4
|
+
"Validate": "Potvrdite",
|
|
5
|
+
"Next question": "Sljedeće pitanje ",
|
|
6
|
+
"KLF": "Ključni čimbenik učenja ",
|
|
7
|
+
"Correct Answer": "Točan odgovor",
|
|
8
|
+
"Wrong Answer": "Pogrešan odgovor",
|
|
9
|
+
"You have won": "Pobijedili ste",
|
|
10
|
+
"You are now": "Sada ste",
|
|
11
|
+
"Revise another skill": "Izmijenite drugu vještinu",
|
|
12
|
+
"Continue reviewing": "Nastavite s provjerom",
|
|
13
|
+
"Congratulations!": "Čestitamo!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/hu/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Felülvizsgálati mód",
|
|
3
|
+
"Content Parent Title": "Forrás: `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Érvényesít",
|
|
5
|
+
"Next question": "Következő kérdés",
|
|
6
|
+
"KLF": "Kulcsfontosságú tanulási tényező",
|
|
7
|
+
"Correct Answer": "Helyes válasz",
|
|
8
|
+
"Wrong Answer": "Rossz válasz",
|
|
9
|
+
"You have won": "Ön nyert",
|
|
10
|
+
"You are now": "Most maga van",
|
|
11
|
+
"Revise another skill": "Tekintsen át egy másik képességet",
|
|
12
|
+
"Continue reviewing": "Folytassa az áttekintést",
|
|
13
|
+
"Congratulations!": "Gratulálunk!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/hy/review.json
CHANGED
|
@@ -10,5 +10,9 @@
|
|
|
10
10
|
"You are now": "You are now",
|
|
11
11
|
"Revise another skill": "Review another skill",
|
|
12
12
|
"Continue reviewing": "Keep reviewing",
|
|
13
|
-
"Congratulations!": "Congratulations!"
|
|
13
|
+
"Congratulations!": "Congratulations!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/it/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Modalità revisione",
|
|
3
|
+
"Content Parent Title": "Da `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Convalida",
|
|
5
|
+
"Next question": "Domanda successiva",
|
|
6
|
+
"KLF": "Fattore di apprendimento chiave",
|
|
7
|
+
"Correct Answer": "Risposta corretta",
|
|
8
|
+
"Wrong Answer": "Risposta errata",
|
|
9
|
+
"You have won": "Hai vinto",
|
|
10
|
+
"You are now": "Adesso sei",
|
|
11
|
+
"Revise another skill": "Rivedi un'altra competenza",
|
|
12
|
+
"Continue reviewing": "Continua la revisione",
|
|
13
|
+
"Congratulations!": "Congratulazioni!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/ja/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "レビューモード",
|
|
3
|
+
"Content Parent Title": "`{{contentTitle}}` `{{contentType}}` から",
|
|
4
|
+
"Validate": "検証",
|
|
5
|
+
"Next question": "次の質問",
|
|
6
|
+
"KLF": "主な学習要因",
|
|
7
|
+
"Correct Answer": "正解",
|
|
8
|
+
"Wrong Answer": "間違った答え",
|
|
9
|
+
"You have won": "勝ちました",
|
|
10
|
+
"You are now": "あなたは現在",
|
|
11
|
+
"Revise another skill": "別のスキルを修正する",
|
|
12
|
+
"Continue reviewing": "レビューを続ける",
|
|
13
|
+
"Congratulations!": "おめでとうございます!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/ko/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "복습 모드",
|
|
3
|
+
"Content Parent Title": "`{{contentTitle}}` `{{contentType}}`에서 출제",
|
|
4
|
+
"Validate": "검증하기",
|
|
5
|
+
"Next question": "다음 질문",
|
|
6
|
+
"KLF": "핵심 학습 요소",
|
|
7
|
+
"Correct Answer": "정답",
|
|
8
|
+
"Wrong Answer": "오답",
|
|
9
|
+
"You have won": "이겼습니다",
|
|
10
|
+
"You are now": "이제",
|
|
11
|
+
"Revise another skill": "새로운 스킬을 수정합니다",
|
|
12
|
+
"Continue reviewing": "계속 복습니다",
|
|
13
|
+
"Congratulations!": "축하드립니다!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/nl/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Beoordelingsmodus",
|
|
3
|
+
"Content Parent Title": "Van `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Valideren",
|
|
5
|
+
"Next question": "Volgende vraag",
|
|
6
|
+
"KLF": "Belangrijkste leerfactor",
|
|
7
|
+
"Correct Answer": "Juiste antwoord",
|
|
8
|
+
"Wrong Answer": "Foute antwoord",
|
|
9
|
+
"You have won": "Je hebt gewonnen",
|
|
10
|
+
"You are now": "Nu ben je",
|
|
11
|
+
"Revise another skill": "Beoordeel een andere vaardigheid",
|
|
12
|
+
"Continue reviewing": "Ga door met beoordelen",
|
|
13
|
+
"Congratulations!": "Gefeliciteerd!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/pl/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Tryb przeglądania",
|
|
3
|
+
"Content Parent Title": "Od `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Zatwierdź",
|
|
5
|
+
"Next question": "Następne pytanie",
|
|
6
|
+
"KLF": "Kluczowy czynnik uczenia się",
|
|
7
|
+
"Correct Answer": "Poprawna odpowiedź",
|
|
8
|
+
"Wrong Answer": "Błędna odpowiedź",
|
|
9
|
+
"You have won": "Wygrano",
|
|
10
|
+
"You are now": "Jesteś teraz",
|
|
11
|
+
"Revise another skill": "Zobacz inną umiejętność",
|
|
12
|
+
"Continue reviewing": "Kontynuuj przeglądanie",
|
|
13
|
+
"Congratulations!": "Gratulacje!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/pt/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Modo de Revisão",
|
|
3
|
+
"Content Parent Title": "De`{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Validar",
|
|
5
|
+
"Next question": "Próxima pergunta",
|
|
6
|
+
"KLF": "Fator de aprendizagem chave",
|
|
7
|
+
"Correct Answer": "Resposta correta",
|
|
8
|
+
"Wrong Answer": "Resposta errada",
|
|
9
|
+
"You have won": "Ganhou",
|
|
10
|
+
"You are now": "Agora é",
|
|
11
|
+
"Revise another skill": "Rever outra competência",
|
|
12
|
+
"Continue reviewing": "Continuar a rever",
|
|
13
|
+
"Congratulations!": "Parabéns!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/ro/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Modul de revizuire",
|
|
3
|
+
"Content Parent Title": "De la `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Validați",
|
|
5
|
+
"Next question": "Următoarea întrebare",
|
|
6
|
+
"KLF": "Factor cheie de învățare",
|
|
7
|
+
"Correct Answer": "Răspuns corect",
|
|
8
|
+
"Wrong Answer": "Răspuns greșit",
|
|
9
|
+
"You have won": "Ați câștigat",
|
|
10
|
+
"You are now": "Sunteți acum",
|
|
11
|
+
"Revise another skill": "Revizuiți o altă abilitate",
|
|
12
|
+
"Continue reviewing": "Continuați să revizuiți",
|
|
13
|
+
"Congratulations!": "\nFelicitări!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/ru/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Режим повторения",
|
|
3
|
+
"Content Parent Title": "Из `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Подтвердить",
|
|
5
|
+
"Next question": "Следующий вопрос",
|
|
6
|
+
"KLF": "Ключевой фактор обучения",
|
|
7
|
+
"Correct Answer": "Правильный ответ",
|
|
8
|
+
"Wrong Answer": "Неправильный ответ",
|
|
9
|
+
"You have won": "Вы выиграли",
|
|
10
|
+
"You are now": "Вы сейчас",
|
|
11
|
+
"Revise another skill": "Повторить другой навык",
|
|
12
|
+
"Continue reviewing": "Продолжить повтор",
|
|
13
|
+
"Congratulations!": "Поздравляем!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/sk/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Režim kontroly",
|
|
3
|
+
"Content Parent Title": "Z `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Overiť",
|
|
5
|
+
"Next question": "Ďalšia otázka",
|
|
6
|
+
"KLF": "Kľúčový faktor učenia",
|
|
7
|
+
"Correct Answer": "Správna odpoveď",
|
|
8
|
+
"Wrong Answer": "Nesprávna odpoveď",
|
|
9
|
+
"You have won": "Vyhrali ste",
|
|
10
|
+
"You are now": "Teraz ste",
|
|
11
|
+
"Revise another skill": "Zopakovať si ďalšiu zručnosť",
|
|
12
|
+
"Continue reviewing": "Pokračovať v kontrole",
|
|
13
|
+
"Congratulations!": "Blahoželáme!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/tl/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Mode Para Sa Pagrerebyu",
|
|
3
|
+
"Content Parent Title": "Mula sa `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Patunayan",
|
|
5
|
+
"Next question": "Susunod Na Tanong",
|
|
6
|
+
"KLF": "Mahalagang salik sa pagkatuto",
|
|
7
|
+
"Correct Answer": "Tamang Sagot",
|
|
8
|
+
"Wrong Answer": "Maling Sagot",
|
|
9
|
+
"You have won": "Nanalo ka na ng",
|
|
10
|
+
"You are now": "Ikaw ngayon ay",
|
|
11
|
+
"Revise another skill": "Rebisahin ang isa pang kasanayan",
|
|
12
|
+
"Continue reviewing": "Ipagpatuloy ang pagrerebyu",
|
|
13
|
+
"Congratulations!": "Binabati kita!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/tr/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "İnceleme Modu",
|
|
3
|
+
"Content Parent Title": "`{{contentTitle}}` `{{contentType}}` içeriğinden",
|
|
4
|
+
"Validate": "Doğrula",
|
|
5
|
+
"Next question": "Sonraki Soru",
|
|
6
|
+
"KLF": "Anahtar öğrenme faktörü",
|
|
7
|
+
"Correct Answer": "Doğru Cevap",
|
|
8
|
+
"Wrong Answer": "Yanlış Cevap",
|
|
9
|
+
"You have won": "Kazandın",
|
|
10
|
+
"You are now": "Şu anda",
|
|
11
|
+
"Revise another skill": "Başka bir beceriyi incele",
|
|
12
|
+
"Continue reviewing": "İncelemeye devam et",
|
|
13
|
+
"Congratulations!": "Tebrikler!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/uk/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Режим перегляду",
|
|
3
|
+
"Content Parent Title": "Від `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Підтвердити",
|
|
5
|
+
"Next question": "Наступне питання",
|
|
6
|
+
"KLF": "Ключовий навчальний фактор",
|
|
7
|
+
"Correct Answer": "Правильна відповідь",
|
|
8
|
+
"Wrong Answer": "Неправильна відповідь",
|
|
9
|
+
"You have won": "Ви виграли",
|
|
10
|
+
"You are now": "Ви зараз",
|
|
11
|
+
"Revise another skill": "Переглянути іншу навичку",
|
|
12
|
+
"Continue reviewing": "Продовжити огляд",
|
|
13
|
+
"Congratulations!": "Вітаємо!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/vi/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "Chế độ soát lại",
|
|
3
|
+
"Content Parent Title": "Từ `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Xác thực",
|
|
5
|
+
"Next question": "Câu hỏi tiếp theo",
|
|
6
|
+
"KLF": "Yếu tố học tập chính",
|
|
7
|
+
"Correct Answer": "Câu trả lời đúng",
|
|
8
|
+
"Wrong Answer": "Câu trả lời sai",
|
|
9
|
+
"You have won": "Bạn đã thắng",
|
|
10
|
+
"You are now": "Giờ bạn đang",
|
|
11
|
+
"Revise another skill": "Ôn tập kỹ năng khác",
|
|
12
|
+
"Continue reviewing": "Tiếp tục soát lại",
|
|
13
|
+
"Congratulations!": "Chúc mừng bạn!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/locales/zh/review.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Review Title": "
|
|
3
|
-
"Content Parent Title": "
|
|
4
|
-
"Validate": "
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
8
|
-
"Wrong Answer": "
|
|
9
|
-
"You have won": "
|
|
10
|
-
"You are now": "
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
13
|
-
"Congratulations!": "
|
|
2
|
+
"Review Title": "复习模式\n",
|
|
3
|
+
"Content Parent Title": "从`{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "验证",
|
|
5
|
+
"Next question": "下一题",
|
|
6
|
+
"KLF": "学习要点",
|
|
7
|
+
"Correct Answer": "正确答案",
|
|
8
|
+
"Wrong Answer": "错误答案",
|
|
9
|
+
"You have won": "您已赢得",
|
|
10
|
+
"You are now": "您现在",
|
|
11
|
+
"Revise another skill": "复习另一项技能",
|
|
12
|
+
"Continue reviewing": "继续复习",
|
|
13
|
+
"Congratulations!": "恭喜您!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
|
@@ -10,5 +10,9 @@
|
|
|
10
10
|
"You are now": "You are now",
|
|
11
11
|
"Revise another skill": "Review another skill",
|
|
12
12
|
"Continue reviewing": "Keep reviewing",
|
|
13
|
-
"Congratulations!": "Congratulations!"
|
|
13
|
+
"Congratulations!": "Congratulations!",
|
|
14
|
+
"Quit Title": "Are you sure you want to quit ?",
|
|
15
|
+
"Quit Description Text": "You’re right on track! If you quit now, you’ll lose your progress.",
|
|
16
|
+
"Stop learning": "End session",
|
|
17
|
+
"Continue learning": "Continue learning"
|
|
14
18
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coorpacademy/app-review",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.5-alpha.27+9cd0bb80f",
|
|
4
4
|
"description": "",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16.15.0"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@coorpacademy/components": "10.27.3",
|
|
39
39
|
"@coorpacademy/redux-task": "1.1.6",
|
|
40
|
-
"@coorpacademy/translate": "
|
|
40
|
+
"@coorpacademy/translate": "6.1.5",
|
|
41
41
|
"cross-fetch": "^3.1.5",
|
|
42
42
|
"jwt-decode": "^3.1.2",
|
|
43
43
|
"react-redux": "^7.2.9",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"webpack-cli": "^4.10.0",
|
|
72
72
|
"webpack-dev-server": "^4.11.1"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "9cd0bb80f5b60ef4f58645c9a85115e353fc2fd1"
|
|
75
75
|
}
|