@coorpacademy/app-review 0.9.5 → 0.9.7
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/reducers/ui/slide.d.ts +1 -0
- package/es/reducers/ui/slide.js +3 -2
- package/es/views/slides/index.js +2 -0
- package/lib/reducers/ui/slide.d.ts +1 -0
- package/lib/reducers/ui/slide.js +3 -2
- package/lib/views/slides/index.js +2 -0
- package/locales/bs/review.json +4 -1
- package/locales/cs/review.json +6 -6
- package/locales/de/review.json +7 -7
- package/locales/es/review.json +7 -7
- package/locales/hr/review.json +1 -1
- package/locales/hu/review.json +7 -7
- package/locales/hy/review.json +4 -1
- package/locales/id/review.json +3 -3
- package/locales/it/review.json +6 -6
- package/locales/ja/review.json +5 -5
- package/locales/ko/review.json +7 -7
- package/locales/nl/review.json +6 -6
- package/locales/pl/review.json +6 -6
- package/locales/pt/review.json +7 -7
- package/locales/ro/review.json +6 -6
- package/locales/sk/review.json +3 -3
- package/locales/th/review.json +5 -5
- package/locales/tl/review.json +7 -7
- package/locales/tr/review.json +2 -2
- package/locales/uk/review.json +7 -7
- package/locales/vi/review.json +3 -3
- package/locales/zh/review.json +4 -4
- package/locales/zh_TW/review.json +6 -6
- package/package.json +3 -3
|
@@ -10,6 +10,7 @@ export declare type UISlide = {
|
|
|
10
10
|
animateCorrectionPopin: boolean;
|
|
11
11
|
showCorrectionPopin: boolean;
|
|
12
12
|
animationType?: SlideUIAnimations;
|
|
13
|
+
pendingAnswerRequest: boolean;
|
|
13
14
|
};
|
|
14
15
|
export declare type UISlideState = Record<string, UISlide>;
|
|
15
16
|
export declare const initialState: UISlideState;
|
package/es/reducers/ui/slide.js
CHANGED
|
@@ -18,7 +18,8 @@ state = initialState, action) => {
|
|
|
18
18
|
return pipe(unset([action.meta.slideRef, 'animationType']), set([action.meta.slideRef], {
|
|
19
19
|
validateButton: false,
|
|
20
20
|
animateCorrectionPopin: false,
|
|
21
|
-
showCorrectionPopin: false
|
|
21
|
+
showCorrectionPopin: false,
|
|
22
|
+
pendingAnswerRequest: false
|
|
22
23
|
}))(state);
|
|
23
24
|
}
|
|
24
25
|
case EDIT_QCM:
|
|
@@ -30,7 +31,7 @@ state = initialState, action) => {
|
|
|
30
31
|
return set([action.meta.slideRef, 'validateButton'], !pipe(compact, isEmpty)(action.payload), state);
|
|
31
32
|
}
|
|
32
33
|
case POST_ANSWER_REQUEST: {
|
|
33
|
-
return set([action.meta.slideRef, 'validateButton'], false, state);
|
|
34
|
+
return pipe(set([action.meta.slideRef, 'validateButton'], false), set([action.meta.slideRef, 'pendingAnswerRequest'], true))(state);
|
|
34
35
|
}
|
|
35
36
|
case CORRECTION_FETCH_SUCCESS: {
|
|
36
37
|
return pipe(set([action.meta.slideRef, 'animateCorrectionPopin'], true), set([action.meta.slideRef, 'showCorrectionPopin'], true))(state);
|
package/es/views/slides/index.js
CHANGED
|
@@ -92,6 +92,7 @@ const buildStackSlides = (state, dispatch, options) => {
|
|
|
92
92
|
const animateCorrectionPopin = isCurrentSlideRef && slideUI.animateCorrectionPopin;
|
|
93
93
|
const showCorrectionPopin = isCurrentSlideRef && slideUI.showCorrectionPopin;
|
|
94
94
|
const animationType = lastAnsweredSlideRef ? slideUI.animationType : undefined;
|
|
95
|
+
const disabledContent = get(['ui', 'slide', slideRef, 'pendingAnswerRequest'], state);
|
|
95
96
|
const updatedUiSlide = {
|
|
96
97
|
...uiSlide,
|
|
97
98
|
position,
|
|
@@ -100,6 +101,7 @@ const buildStackSlides = (state, dispatch, options) => {
|
|
|
100
101
|
loading: false,
|
|
101
102
|
questionText,
|
|
102
103
|
answerUI,
|
|
104
|
+
disabledContent,
|
|
103
105
|
parentContentTitle: translate('Content Parent Title', {
|
|
104
106
|
contentTitle: parentContentTitle,
|
|
105
107
|
contentType: parentContentType
|
|
@@ -10,6 +10,7 @@ export declare type UISlide = {
|
|
|
10
10
|
animateCorrectionPopin: boolean;
|
|
11
11
|
showCorrectionPopin: boolean;
|
|
12
12
|
animationType?: SlideUIAnimations;
|
|
13
|
+
pendingAnswerRequest: boolean;
|
|
13
14
|
};
|
|
14
15
|
export declare type UISlideState = Record<string, UISlide>;
|
|
15
16
|
export declare const initialState: UISlideState;
|
package/lib/reducers/ui/slide.js
CHANGED
|
@@ -24,7 +24,8 @@ state = exports.initialState, action) => {
|
|
|
24
24
|
return (0, pipe_1.default)((0, unset_1.default)([action.meta.slideRef, 'animationType']), (0, set_1.default)([action.meta.slideRef], {
|
|
25
25
|
validateButton: false,
|
|
26
26
|
animateCorrectionPopin: false,
|
|
27
|
-
showCorrectionPopin: false
|
|
27
|
+
showCorrectionPopin: false,
|
|
28
|
+
pendingAnswerRequest: false
|
|
28
29
|
}))(state);
|
|
29
30
|
}
|
|
30
31
|
case answers_1.EDIT_QCM:
|
|
@@ -36,7 +37,7 @@ state = exports.initialState, action) => {
|
|
|
36
37
|
return (0, set_1.default)([action.meta.slideRef, 'validateButton'], !(0, pipe_1.default)(compact_1.default, isEmpty_1.default)(action.payload), state);
|
|
37
38
|
}
|
|
38
39
|
case post_answer_1.POST_ANSWER_REQUEST: {
|
|
39
|
-
return (0, set_1.default)([action.meta.slideRef, 'validateButton'], false, state);
|
|
40
|
+
return (0, pipe_1.default)((0, set_1.default)([action.meta.slideRef, 'validateButton'], false), (0, set_1.default)([action.meta.slideRef, 'pendingAnswerRequest'], true))(state);
|
|
40
41
|
}
|
|
41
42
|
case fetch_correction_1.CORRECTION_FETCH_SUCCESS: {
|
|
42
43
|
return (0, pipe_1.default)((0, set_1.default)([action.meta.slideRef, 'animateCorrectionPopin'], true), (0, set_1.default)([action.meta.slideRef, 'showCorrectionPopin'], true))(state);
|
|
@@ -98,6 +98,7 @@ const buildStackSlides = (state, dispatch, options) => {
|
|
|
98
98
|
const animateCorrectionPopin = isCurrentSlideRef && slideUI.animateCorrectionPopin;
|
|
99
99
|
const showCorrectionPopin = isCurrentSlideRef && slideUI.showCorrectionPopin;
|
|
100
100
|
const animationType = lastAnsweredSlideRef ? slideUI.animationType : undefined;
|
|
101
|
+
const disabledContent = (0, get_1.default)(['ui', 'slide', slideRef, 'pendingAnswerRequest'], state);
|
|
101
102
|
const updatedUiSlide = {
|
|
102
103
|
...uiSlide,
|
|
103
104
|
position,
|
|
@@ -106,6 +107,7 @@ const buildStackSlides = (state, dispatch, options) => {
|
|
|
106
107
|
loading: false,
|
|
107
108
|
questionText,
|
|
108
109
|
answerUI,
|
|
110
|
+
disabledContent,
|
|
109
111
|
parentContentTitle: translate('Content Parent Title', {
|
|
110
112
|
contentTitle: parentContentTitle,
|
|
111
113
|
contentType: parentContentType
|
package/locales/bs/review.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Review Title": "Recenzija Mode",
|
|
3
|
-
"Content Parent Title": "Od
|
|
3
|
+
"Content Parent Title": "Od \"{{contentTitle}}\" {{contentType}}",
|
|
4
4
|
"Validate": "Potvrdi",
|
|
5
5
|
"Next Question": "Sljedeće pitanje",
|
|
6
6
|
"KLF": "Ključna tačka",
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
"Quit Description Text": "Na pravom ste putu! Ako sada odustanete, izgubit ćete svoj napredak.",
|
|
17
17
|
"Stop learning": "Završi sesiju",
|
|
18
18
|
"Continue learning": "Nastavite sa učenjem",
|
|
19
|
+
"Continue": "Nastavi",
|
|
20
|
+
"Type here": "Unesite ovdje",
|
|
21
|
+
"Select an answer": "Odaberite odgovor",
|
|
19
22
|
"presentation": {
|
|
20
23
|
"aria_label": "Pregledajte Presentation Container",
|
|
21
24
|
"title": "Šta je<br/> Revision Mode ?",
|
package/locales/cs/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "Dovednosti, které můžete
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "Dovednosti, které si můžete zobrazit",
|
|
47
|
+
"list_aria_label": "Zobrazit zásobník dovedností",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "Karta dovedností",
|
|
50
|
-
"text": "{{total}} otázek k
|
|
51
|
-
"button_text": "
|
|
50
|
+
"text": "{{total}} otázek k zobrazení",
|
|
51
|
+
"button_text": "Zobrazit tuto dovednost"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "Dosud nemáte k revizi žádnou dovednost",
|
|
55
|
+
"text": "Nejprve musíte dokončit kursy a teprve poté si zobrazíte různé dovednosti."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/de/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "Fähigkeiten, die
|
|
47
|
-
"list_aria_label": "Fähigkeiten-Container
|
|
46
|
+
"list_title": "Fähigkeiten, die Sie überprüfen können",
|
|
47
|
+
"list_aria_label": "Fähigkeiten-überprüfen-Container",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "
|
|
50
|
-
"text": "{{total}} Fragen zum
|
|
51
|
-
"button_text": "Diese Fähigkeit
|
|
49
|
+
"aria_label": "Fähigkeitenkarte",
|
|
50
|
+
"text": "{{total}} Fragen zum Überprüfen",
|
|
51
|
+
"button_text": "Diese Fähigkeit überprüfen"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "Sie haben noch keine Fähigkeiten zum Überarbeiten",
|
|
55
|
+
"text": "Zuerst müssen Sie Kurse absolvieren, ehe Sie verschiedene Fähigkeiten überprüfen können."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/es/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "Competencias que puedes revisar",
|
|
47
|
+
"list_aria_label": "Contenedor de competencias a revisar",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "Tarjeta de
|
|
50
|
-
"text": "{{total}} preguntas
|
|
51
|
-
"button_text": "Revisa esta
|
|
49
|
+
"aria_label": "Tarjeta de competencia",
|
|
50
|
+
"text": "{{total}} preguntas a revisar",
|
|
51
|
+
"button_text": "Revisa esta competencia"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "No
|
|
55
|
-
"text": "Primero
|
|
54
|
+
"title": "No tiene aún competencias que revisar",
|
|
55
|
+
"text": "Primero necesitas completar cursos antes de poder revisar alguna competencia."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/hr/review.json
CHANGED
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"list_aria_label": "Pregledajte spremnik vještina",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "Kartica vještina",
|
|
50
|
-
"text": "{{
|
|
50
|
+
"text": "{{total}} pitanja za pregled",
|
|
51
51
|
"button_text": "Pregledajte ovu vještinu"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
package/locales/hu/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "Ellenőrizhető készségek",
|
|
47
|
+
"list_aria_label": "Készségellenörző tároló",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "
|
|
50
|
-
"text": "{{total}}
|
|
51
|
-
"button_text": "
|
|
49
|
+
"aria_label": "Készségkártya",
|
|
50
|
+
"text": "{{total}} ellenőrizendő kérdés",
|
|
51
|
+
"button_text": "Készség ellenőrzése"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "
|
|
55
|
-
"text": "Először
|
|
54
|
+
"title": "Még nincs ellenőriendő készsége",
|
|
55
|
+
"text": "Először tanfolyamokat kell elvégeznie, mielőtt különböző készségeket ellenőrizhetne."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/hy/review.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Review Title": "Վերանայման ռեժիմ",
|
|
3
|
-
"Content Parent Title": "
|
|
3
|
+
"Content Parent Title": "\"{{contentTitle}}\"-ից {{contentType}}",
|
|
4
4
|
"Validate": "Վավերացնել",
|
|
5
5
|
"Next Question": "Հաջորդ Հարցը",
|
|
6
6
|
"KLF": "Կարեւոր կետ",
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
"Quit Description Text": "Դուք ճիշտ ուղու վրա եք: Եթե հիմա թողնեք, կկորցնեք ձեր առաջընթացը:",
|
|
17
17
|
"Stop learning": "Ավարտել նիստը",
|
|
18
18
|
"Continue learning": "Շարունակեք սովորել",
|
|
19
|
+
"Continue": "Շարունակել",
|
|
20
|
+
"Type here": "Գրեք այստեղ",
|
|
21
|
+
"Select an answer": "Ընտրեք պատասխան",
|
|
19
22
|
"presentation": {
|
|
20
23
|
"aria_label": "Վերանայման ներկայացման կոնտեյներ",
|
|
21
24
|
"title": "Ինչ է<br/> Վերանայման ռեժիմ.",
|
package/locales/id/review.json
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "Keterampilan yang
|
|
46
|
+
"list_title": "Keterampilan yang dapat Anda ulas",
|
|
47
47
|
"list_aria_label": "Tinjau Wadah Keterampilan",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "Kartu Keterampilan",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"button_text": "Tinjau keterampilan ini"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "Anda belum memiliki keterampilan untuk
|
|
55
|
-
"text": "Anda harus
|
|
54
|
+
"title": "Anda belum memiliki keterampilan untuk merevisi",
|
|
55
|
+
"text": "Pertama, Anda harus menyelesaikan kursus sebelum Anda dapat mengulas keterampilan yang berbeda."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/it/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "
|
|
47
|
-
"list_aria_label": "Contenitore di
|
|
46
|
+
"list_title": "Abilità che puoi rivedere",
|
|
47
|
+
"list_aria_label": "Contenitore di abilità da rivedere",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "
|
|
49
|
+
"aria_label": "Scheda abilità",
|
|
50
50
|
"text": "{{total}} domande da rivedere",
|
|
51
|
-
"button_text": "Rivedi questa
|
|
51
|
+
"button_text": "Rivedi questa abilità"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "Non hai ancora
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "Non hai ancora alcuna abilità da rivedere",
|
|
55
|
+
"text": "Devi completare i corsi prima di poter rivedere le varie abilità."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/ja/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "レビューできるスキル",
|
|
47
|
+
"list_aria_label": "スキルコンテナのレビュー",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "スキルカード",
|
|
50
|
-
"text": "
|
|
51
|
-
"button_text": "
|
|
50
|
+
"text": " {{total}} のレビューする質問",
|
|
51
|
+
"button_text": "このスキルをレビュー"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
54
|
"title": "修正するスキルはまだありません",
|
|
55
|
-
"text": "
|
|
55
|
+
"text": "さまざまなスキルをレビューする前に、まずコースを完了する必要があります。"
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/ko/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "검토할 수 있는
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "검토할 수 있는 기술",
|
|
47
|
+
"list_aria_label": "기술 보관함 검토",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "
|
|
50
|
-
"text": "
|
|
51
|
-
"button_text": "이
|
|
49
|
+
"aria_label": "기술 카드",
|
|
50
|
+
"text": "{{total}} 검토할 문제",
|
|
51
|
+
"button_text": "이 기술 검토"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "아직
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "아직 수정할 기술이 없습니다",
|
|
55
|
+
"text": "다른 기술을 검토할 수 있으려면 먼저 코스를 완료해야 합니다."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/nl/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "Vaardigheden die
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "Vaardigheden die je kunt beoordelen",
|
|
47
|
+
"list_aria_label": "Beoordeel vaardigheden container",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "Vaardighedenkaart",
|
|
50
|
-
"text": "{{total}} vragen om te
|
|
51
|
-
"button_text": "
|
|
50
|
+
"text": "{{total}} vragen om te beoordelen",
|
|
51
|
+
"button_text": "Beoordeel deze vaardigheid"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "Je hebt nog geen vaardigheden om aan te passen",
|
|
55
|
+
"text": "Je moet eerst cursussen afronden voor je verschillende vaardigheden kunt beoordelen."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/pl/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "Umiejętności, które możesz
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "Umiejętności, które możesz przejrzeć",
|
|
47
|
+
"list_aria_label": "Przejrzyj kontener umiejętności",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "Karta umiejętności",
|
|
50
|
-
"text": "
|
|
51
|
-
"button_text": "
|
|
50
|
+
"text": "Liczba pytań od przejrzenia: {{total}}",
|
|
51
|
+
"button_text": "Przejrzyj tę umiejętność"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "Nie masz
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "Nie masz jeszcze umiejętności do przejrzenia",
|
|
55
|
+
"text": "Musisz najpierw ukończyć kursy, aby być w stanie przeglądać różne umiejętności."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/pt/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "Competências que pode
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "Competências que pode rever",
|
|
47
|
+
"list_aria_label": "Rever contentor de competências",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "Cartão de
|
|
50
|
-
"text": "{{total}}
|
|
51
|
-
"button_text": "
|
|
49
|
+
"aria_label": "Cartão de competências",
|
|
50
|
+
"text": "{{total}} questões para rever",
|
|
51
|
+
"button_text": "Rever esta competência"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "Ainda não tem nenhuma competência para
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "Ainda não tem nenhuma competência para rever",
|
|
55
|
+
"text": "Antes de poder rever diferentes competências, precisa de concluir os cursos."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/ro/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "Abilități pe care le puteți revizui",
|
|
47
|
+
"list_aria_label": "Revizuirea Containerului de abilități",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "
|
|
50
|
-
"text": "
|
|
51
|
-
"button_text": "Revizuiți această abilitate"
|
|
49
|
+
"aria_label": "Carte de abilități",
|
|
50
|
+
"text": "{{total}} întrebări de analizat",
|
|
51
|
+
"button_text": "Revizuiți această abilitate\n"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
54
|
"title": "Nu aveți încă nicio abilitate de revizuit",
|
|
55
|
-
"text": "Mai întâi
|
|
55
|
+
"text": "Mai întâi trebuie să finalizați cursuri înainte de a putea revizui diferite abilități."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/sk/review.json
CHANGED
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"list_title": "Zručnosti, ktoré si môžete skontrolovať",
|
|
47
|
-
"list_aria_label": "
|
|
47
|
+
"list_aria_label": "Kontajner zručností na kontrolu",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "Karta zručností",
|
|
50
|
-
"text": "{{total}} otázok na
|
|
50
|
+
"text": "{{total}} otázok na skontrolovanie",
|
|
51
51
|
"button_text": "Skontrolujte túto zručnosť"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
54
|
"title": "Zatiaľ nemáte žiadne zručnosti na revíziu",
|
|
55
|
-
"text": "Najprv musíte
|
|
55
|
+
"text": "Najprv musíte dokončiť kurzy a až potom si môžete skontrolovať rôzne zručnosti."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/th/review.json
CHANGED
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"list_title": "ทักษะที่คุณสามารถทบทวนได้",
|
|
47
|
-
"list_aria_label": "
|
|
47
|
+
"list_aria_label": "คอนเทนเนอร์ทักษะเพื่อทบทวน",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "
|
|
50
|
-
"text": "{{total}}
|
|
49
|
+
"aria_label": "การ์ดทักษะ",
|
|
50
|
+
"text": "มีคำถาม {{total}} ข้อเพื่อทบทวน",
|
|
51
51
|
"button_text": "ทบทวนทักษะนี้"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "คุณยังไม่มีทักษะให้ปรับปรุง",
|
|
55
|
+
"text": "ขั้นแรกคุณจำเป็นต้องจบคอร์สก่อนที่คุณจะสามารถทบทวนทักษะต่าง ๆ ได้"
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/tl/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "Mga
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "Mga skill na maaari mong repasuhin",
|
|
47
|
+
"list_aria_label": "Repasuhin ang Skill Container",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "Card
|
|
50
|
-
"text": "{{total}} tanong na rerepasuhin",
|
|
51
|
-
"button_text": "Repasuhin ang
|
|
49
|
+
"aria_label": "Skill Card",
|
|
50
|
+
"text": "{{total}} (na) tanong na rerepasuhin",
|
|
51
|
+
"button_text": "Repasuhin ang skill na ito"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "Wala ka pang
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "Wala ka pang skill na rerebisahin",
|
|
55
|
+
"text": "Una, kailangan mong kumpletuhin ang mga kurso bago ka makapag-repaso ng iba't ibang skill."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/tr/review.json
CHANGED
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"button_text": "Bu beceriyi incele"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "Henüz
|
|
55
|
-
"text": "Farklı becerileri
|
|
54
|
+
"title": "Henüz revize etme becerin yok",
|
|
55
|
+
"text": "Farklı becerileri inceleyebilmen için önce kursları tamamlaman gerekir."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/uk/review.json
CHANGED
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "Навички, які ви можете
|
|
47
|
-
"list_aria_label": "Контейнер
|
|
46
|
+
"list_title": "Навички, які ви можете оглянути",
|
|
47
|
+
"list_aria_label": "Оглянути Контейнер Навичок",
|
|
48
48
|
"card": {
|
|
49
|
-
"aria_label": "Картка
|
|
50
|
-
"text": "{{total}}
|
|
51
|
-
"button_text": "
|
|
49
|
+
"aria_label": "Картка навички",
|
|
50
|
+
"text": "{{total}} питання, які слід переглянути",
|
|
51
|
+
"button_text": "Оглянути навичку"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "У вас ще немає навичок
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "У вас ще немає навичок до перегляду",
|
|
55
|
+
"text": "Спершу вам потрібно завершити курси, до того як ви зможете оглядати різні навички."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/vi/review.json
CHANGED
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"list_title": "Các kỹ năng bạn có thể ôn tập",
|
|
47
|
-
"list_aria_label": "
|
|
47
|
+
"list_aria_label": "Bộ chứa Ôn tập Kỹ năng",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "Thẻ Kỹ năng",
|
|
50
|
-
"text": "{{total}} câu hỏi
|
|
50
|
+
"text": "{{total}} câu hỏi để ôn tập",
|
|
51
51
|
"button_text": "Ôn tập kỹ năng này"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
54
|
"title": "Bạn chưa có kỹ năng nào để ôn tập",
|
|
55
|
-
"text": "Trước tiên, bạn cần hoàn thành các khóa học
|
|
55
|
+
"text": "Trước tiên, bạn cần hoàn thành các khóa học rồi mới có thể ôn tập các kỹ năng khác nhau."
|
|
56
56
|
}
|
|
57
57
|
}
|
package/locales/zh/review.json
CHANGED
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"list_title": "您可以复习的技能",
|
|
47
|
-
"list_aria_label": "
|
|
47
|
+
"list_aria_label": "复习技能箱",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "技能卡",
|
|
50
|
-
"text": "
|
|
50
|
+
"text": "{{total}}个问题需要复习",
|
|
51
51
|
"button_text": "复习此技能"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "您还没有需要修改的技能",
|
|
55
|
+
"text": "您需要先完成课程,才能复习不同的技能。"
|
|
56
56
|
}
|
|
57
57
|
}
|
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"list_title": "
|
|
47
|
-
"list_aria_label": "
|
|
46
|
+
"list_title": "您能複習的技能",
|
|
47
|
+
"list_aria_label": "複習技能",
|
|
48
48
|
"card": {
|
|
49
49
|
"aria_label": "技能卡",
|
|
50
|
-
"text": "{{total}}
|
|
51
|
-
"button_text": "
|
|
50
|
+
"text": "共有 {{total}} 個問題可複習",
|
|
51
|
+
"button_text": "複習該技能"
|
|
52
52
|
},
|
|
53
53
|
"no_skills": {
|
|
54
|
-
"title": "
|
|
55
|
-
"text": "
|
|
54
|
+
"title": "您還沒有能溫習的技能",
|
|
55
|
+
"text": "首先您必須完成課程,才能複習不同的技能。"
|
|
56
56
|
}
|
|
57
57
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coorpacademy/app-review",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16.15.0"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"main": "lib/index.js",
|
|
36
36
|
"module": "es/index.js",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@coorpacademy/components": "10.29.
|
|
38
|
+
"@coorpacademy/components": "10.29.6",
|
|
39
39
|
"@coorpacademy/progression-engine": "11.5.2",
|
|
40
40
|
"@coorpacademy/redux-task": "1.1.6",
|
|
41
41
|
"@coorpacademy/translate": "6.2.0",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"webpack-cli": "^4.10.0",
|
|
73
73
|
"webpack-dev-server": "^4.11.1"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "6c47db2b4f14131249c57d399e67b5e01b4c0593"
|
|
76
76
|
}
|