@coorpacademy/app-review 0.7.5 → 0.7.6-alpha.26
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-skills.d.ts +2 -2
- package/es/reducers/data/skills.d.ts +2 -2
- package/es/services/fetch-skill.d.ts +2 -0
- package/es/services/fetch-skill.js +10 -0
- package/es/services/fetch-skills.d.ts +2 -2
- package/es/services/index.js +2 -0
- package/es/types/common.d.ts +7 -2
- package/lib/actions/api/fetch-skills.d.ts +2 -2
- package/lib/reducers/data/skills.d.ts +2 -2
- package/lib/services/fetch-skill.d.ts +2 -0
- package/lib/services/fetch-skill.js +17 -0
- package/lib/services/fetch-skills.d.ts +2 -2
- package/lib/services/index.js +2 -0
- package/lib/types/common.d.ts +7 -2
- package/locales/bs/review.json +44 -8
- package/locales/cs/review.json +45 -9
- package/locales/de/review.json +45 -9
- package/locales/es/review.json +44 -8
- package/locales/fr/review.json +44 -8
- package/locales/hr/review.json +45 -9
- package/locales/hu/review.json +44 -8
- package/locales/hy/review.json +43 -7
- package/locales/id/review.json +54 -0
- package/locales/it/review.json +45 -9
- package/locales/ja/review.json +45 -9
- package/locales/ko/review.json +45 -9
- package/locales/nl/review.json +45 -9
- package/locales/pl/review.json +45 -9
- package/locales/pt/review.json +45 -9
- package/locales/ro/review.json +43 -7
- package/locales/ru/review.json +43 -7
- package/locales/sk/review.json +44 -8
- package/locales/th/review.json +54 -0
- package/locales/tl/review.json +45 -9
- package/locales/tr/review.json +43 -7
- package/locales/uk/review.json +44 -8
- package/locales/vi/review.json +45 -9
- package/locales/zh/review.json +44 -8
- package/locales/zh_TW/review.json +45 -9
- package/package.json +3 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { Dispatch } from 'redux';
|
|
2
2
|
import type { StoreState } from '../../reducers';
|
|
3
|
-
import type { ThunkOptions,
|
|
3
|
+
import type { ThunkOptions, SkillToReview } from '../../types/common';
|
|
4
4
|
export declare const SKILLS_FETCH_REQUEST: "@@skills/FETCH_REQUEST";
|
|
5
5
|
export declare const SKILLS_FETCH_SUCCESS: "@@skills/FETCH_SUCCESS";
|
|
6
6
|
export declare const SKILLS_FETCH_FAILURE: "@@skills/FETCH_FAILURE";
|
|
7
7
|
export declare type ReceivedSkills = {
|
|
8
8
|
type: typeof SKILLS_FETCH_SUCCESS;
|
|
9
|
-
payload:
|
|
9
|
+
payload: SkillToReview[];
|
|
10
10
|
};
|
|
11
11
|
export declare const fetchSkills: (dispatch: Dispatch, getState: () => StoreState, { services }: ThunkOptions) => ReceivedSkills;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SkillToReview } from '../../types/common';
|
|
2
2
|
import { ReceivedSkills } from '../../actions/api/fetch-skills';
|
|
3
|
-
export declare type SkillsState =
|
|
3
|
+
export declare type SkillsState = SkillToReview[];
|
|
4
4
|
declare const reducer: (state: SkillsState | undefined, action: ReceivedSkills) => SkillsState;
|
|
5
5
|
export default reducer;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import crossFetch from 'cross-fetch';
|
|
2
|
+
import decode from 'jwt-decode';
|
|
3
|
+
import { toJSON } from './tools/fetch-responses';
|
|
4
|
+
export const fetchSkill = async (skillRef, token) => {
|
|
5
|
+
const { host } = decode(token);
|
|
6
|
+
const response = await crossFetch(`${host}/api/v2/skills?conditions={"ref":"${skillRef}"}`, {
|
|
7
|
+
headers: { authorization: token }
|
|
8
|
+
});
|
|
9
|
+
return toJSON(response);
|
|
10
|
+
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const fetchSkills: (token: string) => Promise<
|
|
1
|
+
import { SkillToReview } from '../types/common';
|
|
2
|
+
export declare const fetchSkills: (token: string) => Promise<SkillToReview[]>;
|
package/es/services/index.js
CHANGED
|
@@ -5,9 +5,11 @@ import { fetchSlide } from './fetch-slide';
|
|
|
5
5
|
import { fetchSlidesToReviewBySkillRef } from './fetch-slides-to-review-by-skill-ref';
|
|
6
6
|
import { postAnswer } from './post-answer';
|
|
7
7
|
import { postProgression } from './post-progression';
|
|
8
|
+
import { fetchSkill } from './fetch-skill';
|
|
8
9
|
export const getServices = () => ({
|
|
9
10
|
fetchCorrection,
|
|
10
11
|
fetchRank,
|
|
12
|
+
fetchSkill,
|
|
11
13
|
fetchSkills,
|
|
12
14
|
fetchSlide,
|
|
13
15
|
fetchSlidesToReviewBySkillRef,
|
package/es/types/common.d.ts
CHANGED
|
@@ -122,14 +122,19 @@ export declare type CorrectionFromAPI = {
|
|
|
122
122
|
correctAnswer: string[];
|
|
123
123
|
corrections: CorrectedChoice[];
|
|
124
124
|
};
|
|
125
|
-
export declare type
|
|
125
|
+
export declare type SkillToReview = {
|
|
126
126
|
skillRef: string;
|
|
127
127
|
slidesToReview: number;
|
|
128
128
|
custom: boolean;
|
|
129
129
|
name: string;
|
|
130
130
|
};
|
|
131
|
+
export declare type Skill = {
|
|
132
|
+
name: string;
|
|
133
|
+
ref: string;
|
|
134
|
+
};
|
|
131
135
|
export declare type Services = {
|
|
132
|
-
|
|
136
|
+
fetchSkill(skillRef: string, token: string): Promise<Skill>;
|
|
137
|
+
fetchSkills(token: string): Promise<SkillToReview[]>;
|
|
133
138
|
fetchSlide(slideRef: string, token: string): Promise<SlideFromAPI | void>;
|
|
134
139
|
postProgression(skillRef: string, token: string): Promise<ProgressionFromAPI>;
|
|
135
140
|
postAnswer(progression: ProgressionFromAPI, token: string, answer: string[]): Promise<ProgressionFromAPI>;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { Dispatch } from 'redux';
|
|
2
2
|
import type { StoreState } from '../../reducers';
|
|
3
|
-
import type { ThunkOptions,
|
|
3
|
+
import type { ThunkOptions, SkillToReview } from '../../types/common';
|
|
4
4
|
export declare const SKILLS_FETCH_REQUEST: "@@skills/FETCH_REQUEST";
|
|
5
5
|
export declare const SKILLS_FETCH_SUCCESS: "@@skills/FETCH_SUCCESS";
|
|
6
6
|
export declare const SKILLS_FETCH_FAILURE: "@@skills/FETCH_FAILURE";
|
|
7
7
|
export declare type ReceivedSkills = {
|
|
8
8
|
type: typeof SKILLS_FETCH_SUCCESS;
|
|
9
|
-
payload:
|
|
9
|
+
payload: SkillToReview[];
|
|
10
10
|
};
|
|
11
11
|
export declare const fetchSkills: (dispatch: Dispatch, getState: () => StoreState, { services }: ThunkOptions) => ReceivedSkills;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SkillToReview } from '../../types/common';
|
|
2
2
|
import { ReceivedSkills } from '../../actions/api/fetch-skills';
|
|
3
|
-
export declare type SkillsState =
|
|
3
|
+
export declare type SkillsState = SkillToReview[];
|
|
4
4
|
declare const reducer: (state: SkillsState | undefined, action: ReceivedSkills) => SkillsState;
|
|
5
5
|
export default reducer;
|
|
@@ -0,0 +1,17 @@
|
|
|
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.fetchSkill = void 0;
|
|
7
|
+
const cross_fetch_1 = __importDefault(require("cross-fetch"));
|
|
8
|
+
const jwt_decode_1 = __importDefault(require("jwt-decode"));
|
|
9
|
+
const fetch_responses_1 = require("./tools/fetch-responses");
|
|
10
|
+
const fetchSkill = async (skillRef, token) => {
|
|
11
|
+
const { host } = (0, jwt_decode_1.default)(token);
|
|
12
|
+
const response = await (0, cross_fetch_1.default)(`${host}/api/v2/skills?conditions={"ref":"${skillRef}"}`, {
|
|
13
|
+
headers: { authorization: token }
|
|
14
|
+
});
|
|
15
|
+
return (0, fetch_responses_1.toJSON)(response);
|
|
16
|
+
};
|
|
17
|
+
exports.fetchSkill = fetchSkill;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const fetchSkills: (token: string) => Promise<
|
|
1
|
+
import { SkillToReview } from '../types/common';
|
|
2
|
+
export declare const fetchSkills: (token: string) => Promise<SkillToReview[]>;
|
package/lib/services/index.js
CHANGED
|
@@ -8,9 +8,11 @@ const fetch_slide_1 = require("./fetch-slide");
|
|
|
8
8
|
const fetch_slides_to_review_by_skill_ref_1 = require("./fetch-slides-to-review-by-skill-ref");
|
|
9
9
|
const post_answer_1 = require("./post-answer");
|
|
10
10
|
const post_progression_1 = require("./post-progression");
|
|
11
|
+
const fetch_skill_1 = require("./fetch-skill");
|
|
11
12
|
const getServices = () => ({
|
|
12
13
|
fetchCorrection: fetch_correction_1.fetchCorrection,
|
|
13
14
|
fetchRank: fetch_rank_1.fetchRank,
|
|
15
|
+
fetchSkill: fetch_skill_1.fetchSkill,
|
|
14
16
|
fetchSkills: fetch_skills_1.fetchSkills,
|
|
15
17
|
fetchSlide: fetch_slide_1.fetchSlide,
|
|
16
18
|
fetchSlidesToReviewBySkillRef: fetch_slides_to_review_by_skill_ref_1.fetchSlidesToReviewBySkillRef,
|
package/lib/types/common.d.ts
CHANGED
|
@@ -122,14 +122,19 @@ export declare type CorrectionFromAPI = {
|
|
|
122
122
|
correctAnswer: string[];
|
|
123
123
|
corrections: CorrectedChoice[];
|
|
124
124
|
};
|
|
125
|
-
export declare type
|
|
125
|
+
export declare type SkillToReview = {
|
|
126
126
|
skillRef: string;
|
|
127
127
|
slidesToReview: number;
|
|
128
128
|
custom: boolean;
|
|
129
129
|
name: string;
|
|
130
130
|
};
|
|
131
|
+
export declare type Skill = {
|
|
132
|
+
name: string;
|
|
133
|
+
ref: string;
|
|
134
|
+
};
|
|
131
135
|
export declare type Services = {
|
|
132
|
-
|
|
136
|
+
fetchSkill(skillRef: string, token: string): Promise<Skill>;
|
|
137
|
+
fetchSkills(token: string): Promise<SkillToReview[]>;
|
|
133
138
|
fetchSlide(slideRef: string, token: string): Promise<SlideFromAPI | void>;
|
|
134
139
|
postProgression(skillRef: string, token: string): Promise<ProgressionFromAPI>;
|
|
135
140
|
postAnswer(progression: ProgressionFromAPI, token: string, answer: string[]): Promise<ProgressionFromAPI>;
|
package/locales/bs/review.json
CHANGED
|
@@ -2,17 +2,53 @@
|
|
|
2
2
|
"Review Title": "Recenzija Mode",
|
|
3
3
|
"Content Parent Title": "Od `{{contentTitle}}` `{{contentType}}`",
|
|
4
4
|
"Validate": "Potvrdi",
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
5
|
+
"Next Question": "Sljedeće pitanje",
|
|
6
|
+
"KLF": "Ključna tačka",
|
|
7
|
+
"Correct Answer": "Dobar odgovor",
|
|
8
8
|
"Wrong Answer": "Pogrešan odgovor",
|
|
9
9
|
"You have won": "Pobijedio si",
|
|
10
10
|
"You are now": "Sada jesi",
|
|
11
|
-
"Revise another skill": "
|
|
11
|
+
"Revise another skill": "Pregledajte drugu vještinu",
|
|
12
12
|
"Continue reviewing": "Nastavite sa pregledom",
|
|
13
13
|
"Congratulations!": "Čestitamo!",
|
|
14
|
-
"
|
|
15
|
-
"Quit
|
|
16
|
-
"
|
|
17
|
-
"
|
|
14
|
+
"aria_label": "Pregledajte predložak vještina",
|
|
15
|
+
"Quit Title": "Jeste li sigurni da želite odustati?",
|
|
16
|
+
"Quit Description Text": "Na pravom ste putu! Ako sada odustanete, izgubit ćete svoj napredak.",
|
|
17
|
+
"Stop learning": "Završi sesiju",
|
|
18
|
+
"Continue learning": "Nastavite sa učenjem",
|
|
19
|
+
"presentation": {
|
|
20
|
+
"aria_label": "Pregledajte Presentation Container",
|
|
21
|
+
"title": "Šta je<br/> Revision Mode ?",
|
|
22
|
+
"text": "Informacije nestaju iz vašeg uma čim uđu u njega? Sasvim je normalno: nema zadržavanja bez ponavljanja! Da biste zadržali svoje znanje dugoročno, koristite Revision Mode da osvježite svoje pamćenje!",
|
|
23
|
+
"button": "Ok, shvatio sam!",
|
|
24
|
+
"label_list": {
|
|
25
|
+
"skills": {
|
|
26
|
+
"text": "Odaberite 1 vještinu",
|
|
27
|
+
"tooltip": "Možete pregledati jednu po jednu vještinu."
|
|
28
|
+
},
|
|
29
|
+
"questions": {
|
|
30
|
+
"text": "Odgovorite na 5 pitanja",
|
|
31
|
+
"tooltip": "Odgovorite na 5 pitanja ispravno da potvrdite svoju sesiju modusa revizije."
|
|
32
|
+
},
|
|
33
|
+
"lifes": {
|
|
34
|
+
"text": "Imate beskonačan život",
|
|
35
|
+
"tooltip": "Možete odgovoriti koliko god puta želite da završite sesiju."
|
|
36
|
+
},
|
|
37
|
+
"allright": {
|
|
38
|
+
"text": "U redu",
|
|
39
|
+
"tooltip": "Da biste potvrdili svoju sesiju, morate dobiti tačan odgovor na svako pitanje."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"list_title": "Vještine koje možete pregledati",
|
|
44
|
+
"list_aria_label": "Pregledajte Spremnik vještina",
|
|
45
|
+
"card": {
|
|
46
|
+
"aria_label": "Kartica vještina",
|
|
47
|
+
"text": "{{total}} pitanja za pregled",
|
|
48
|
+
"button_text": "Pregledajte ovu vještinu"
|
|
49
|
+
},
|
|
50
|
+
"no_skills": {
|
|
51
|
+
"title": "Još nemate vještinu za reviziju",
|
|
52
|
+
"text": "Prvo morate završiti kurseve prije nego što možete provjeriti različite vještine."
|
|
53
|
+
}
|
|
18
54
|
}
|
package/locales/cs/review.json
CHANGED
|
@@ -2,17 +2,53 @@
|
|
|
2
2
|
"Review Title": "Kontrolní režim",
|
|
3
3
|
"Content Parent Title": "Od `{{obsahNázev}}` `{{obsahTyp}}`",
|
|
4
4
|
"Validate": "Ověřit",
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "Klíčový
|
|
7
|
-
"Correct Answer": "
|
|
5
|
+
"Next Question": "Další otázka",
|
|
6
|
+
"KLF": "Klíčový bod",
|
|
7
|
+
"Correct Answer": "Dobrá odpověď",
|
|
8
8
|
"Wrong Answer": "Špatná odpověď",
|
|
9
9
|
"You have won": "Vyhráli jste",
|
|
10
10
|
"You are now": "Právě jste",
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "Pokračovat v
|
|
11
|
+
"Revise another skill": "Prověřit jinou dovednost",
|
|
12
|
+
"Continue reviewing": "Pokračovat v prověřování",
|
|
13
13
|
"Congratulations!": "Gratulujeme!",
|
|
14
|
-
"
|
|
15
|
-
"Quit
|
|
16
|
-
"
|
|
17
|
-
"
|
|
14
|
+
"aria_label": "Šablona prověřování dovedností",
|
|
15
|
+
"Quit Title": "Opravdu chcete skončit?",
|
|
16
|
+
"Quit Description Text": "Jste na správné cestě! Pokud skončíte nyní, ztratíte svůj postup.",
|
|
17
|
+
"Stop learning": "Ukončit relaci",
|
|
18
|
+
"Continue learning": "Pokračovat v učení",
|
|
19
|
+
"presentation": {
|
|
20
|
+
"aria_label": "Schránka prověření prezentace",
|
|
21
|
+
"title": "Co je <br/>režim revizí?",
|
|
22
|
+
"text": "Vypaří se vám informace z hlavy hned, jak do ní vstoupí? To je naprosto normální: neexistuje retence bez opakování! Pro dlouhodobé uchování svých znalostí použijte režim revizí, abyste si osvěžili paměť!",
|
|
23
|
+
"button": "Ok, mám to!",
|
|
24
|
+
"label_list": {
|
|
25
|
+
"skills": {
|
|
26
|
+
"text": "Vyberte si 1 dovednost",
|
|
27
|
+
"tooltip": "Můžete prověřit 1 dovednost najednou."
|
|
28
|
+
},
|
|
29
|
+
"questions": {
|
|
30
|
+
"text": "Zodpovězte 5 otázek",
|
|
31
|
+
"tooltip": "Zodpovězte správně 5 otázek, abyste ověřili svoji relaci v režimu revizí."
|
|
32
|
+
},
|
|
33
|
+
"lifes": {
|
|
34
|
+
"text": "Máte nekonečně živých",
|
|
35
|
+
"tooltip": "Pro dokončení své relace můžete odpovědět tolikrát, kolikrát chcete."
|
|
36
|
+
},
|
|
37
|
+
"allright": {
|
|
38
|
+
"text": "Mějte vše správně",
|
|
39
|
+
"tooltip": "Pro ověření své relace musíte správně zodpovědět všechny otázky."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"list_title": "Dovednosti, které můžete prověřit",
|
|
44
|
+
"list_aria_label": "Schránka prověření dovedností",
|
|
45
|
+
"card": {
|
|
46
|
+
"aria_label": "Karta dovedností",
|
|
47
|
+
"text": "{{total}} otázek k prověření",
|
|
48
|
+
"button_text": "Prověřit tuto dovednost"
|
|
49
|
+
},
|
|
50
|
+
"no_skills": {
|
|
51
|
+
"title": "Zatím nemáte žádné dovednosti k revidování",
|
|
52
|
+
"text": "Před prověřením různých dovedností musíte nejdřív dokončit kurzy."
|
|
53
|
+
}
|
|
18
54
|
}
|
package/locales/de/review.json
CHANGED
|
@@ -2,17 +2,53 @@
|
|
|
2
2
|
"Review Title": "Überprüfungsmodus",
|
|
3
3
|
"Content Parent Title": "Von `{{contentTitle}}` `{{contentType}}`",
|
|
4
4
|
"Validate": "Bestätigen",
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
5
|
+
"Next Question": "Nächste Frage",
|
|
6
|
+
"KLF": "Schwerpunkt",
|
|
7
|
+
"Correct Answer": "Gute Antwort",
|
|
8
8
|
"Wrong Answer": "Falsche Antwort",
|
|
9
9
|
"You have won": "Sie haben gewonnen",
|
|
10
10
|
"You are now": "Sie sind jetzt",
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
11
|
+
"Revise another skill": "Eine andere Fähigkeit prüfen",
|
|
12
|
+
"Continue reviewing": "Weiter prüfen",
|
|
13
13
|
"Congratulations!": "Herzlichen Glückwunsch!",
|
|
14
|
-
"
|
|
15
|
-
"Quit
|
|
16
|
-
"
|
|
17
|
-
"
|
|
14
|
+
"aria_label": "Fähigkeiten-Vorlage prüfen",
|
|
15
|
+
"Quit Title": "Bist du sicher, dass du aufhören möchtest?",
|
|
16
|
+
"Quit Description Text": "Du bist auf dem richtigen Weg! Wenn du jetzt aufhörst, verlierst du deine Fortschritte.",
|
|
17
|
+
"Stop learning": "Lerneinheit beenden",
|
|
18
|
+
"Continue learning": "Weiter lernen",
|
|
19
|
+
"presentation": {
|
|
20
|
+
"aria_label": "Präsentations-Container prüfen",
|
|
21
|
+
"title": "Was ist der<br/>Wiederholungsmodus?",
|
|
22
|
+
"text": "Das Wissen verschwindet wieder aus deinem Kopf, kaum dass es dort angekommen ist? Das ist ganz normal: Ohne regelmäßige Wiederholung bleibt nichts hängen! Nutze den Wiederholungsmodus, um dein Wissen langfristig zu behalten und dein Erinnerungsvermögen zu verbessern!",
|
|
23
|
+
"button": "Ok, verstanden!",
|
|
24
|
+
"label_list": {
|
|
25
|
+
"skills": {
|
|
26
|
+
"text": "Wähle 1 Fähigkeit",
|
|
27
|
+
"tooltip": "Du kannst jeweils nur eine Fähigkeit auf einmal prüfen."
|
|
28
|
+
},
|
|
29
|
+
"questions": {
|
|
30
|
+
"text": "Beantworte 5 Fragen",
|
|
31
|
+
"tooltip": "Beantworte die 5 Fragen richtig, um den Wiederholungsmodus erfolgreich abzuschließen."
|
|
32
|
+
},
|
|
33
|
+
"lifes": {
|
|
34
|
+
"text": "Du hast eine unbegrenzte Anzahl von Leben",
|
|
35
|
+
"tooltip": "Um die Lerneinheit abzuschließen, kannst du so oft antworten, wie du möchtest."
|
|
36
|
+
},
|
|
37
|
+
"allright": {
|
|
38
|
+
"text": "Mache alles richtig",
|
|
39
|
+
"tooltip": "Um die Lerneinheit abzuschließen, musst du auf jede Frage die richtige Antwort geben."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"list_title": "Fähigkeiten, die du prüfen lassen kannst",
|
|
44
|
+
"list_aria_label": "Fähigkeiten-Container prüfen",
|
|
45
|
+
"card": {
|
|
46
|
+
"aria_label": "Fähigkeitskarte",
|
|
47
|
+
"text": "{{total}} Fragen zum Prüfen",
|
|
48
|
+
"button_text": "Diese Fähigkeit prüfen"
|
|
49
|
+
},
|
|
50
|
+
"no_skills": {
|
|
51
|
+
"title": "Du hast noch keine Fähigkeiten zum Prüfen",
|
|
52
|
+
"text": "Du musst zuerst Kurse absolvieren, bevor du verschiedene Fähigkeiten prüfen lassen kannst."
|
|
53
|
+
}
|
|
18
54
|
}
|
package/locales/es/review.json
CHANGED
|
@@ -2,17 +2,53 @@
|
|
|
2
2
|
"Review Title": "Modo revisión",
|
|
3
3
|
"Content Parent Title": "De `{{contentTitle}}` `{{contentType}}`",
|
|
4
4
|
"Validate": "Validar",
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
5
|
+
"Next Question": "Siguiente pregunta",
|
|
6
|
+
"KLF": "Aspecto clave",
|
|
7
|
+
"Correct Answer": "Buena respuesta",
|
|
8
8
|
"Wrong Answer": "Respuesta incorrecta",
|
|
9
9
|
"You have won": "Has ganado",
|
|
10
10
|
"You are now": "Ahora eres",
|
|
11
|
-
"Revise another skill": "
|
|
11
|
+
"Revise another skill": "Revisar otra habilidad",
|
|
12
12
|
"Continue reviewing": "Seguir revisando",
|
|
13
13
|
"Congratulations!": "¡Enhorabuena!",
|
|
14
|
-
"
|
|
15
|
-
"Quit
|
|
16
|
-
"
|
|
17
|
-
"
|
|
14
|
+
"aria_label": "Revisar plantilla de habilidades",
|
|
15
|
+
"Quit Title": "¿Estás seguro de que quieres salir?",
|
|
16
|
+
"Quit Description Text": "¡Vas por buen camino! Si sales ahora perderás tu progreso.",
|
|
17
|
+
"Stop learning": "Finalizar sesión",
|
|
18
|
+
"Continue learning": "Seguir aprendiendo",
|
|
19
|
+
"presentation": {
|
|
20
|
+
"aria_label": "Revisar contenedor de presentación",
|
|
21
|
+
"title": "¿Qué es el <br/>Modo revisión?",
|
|
22
|
+
"text": "¿La información desaparece de tu mente en cuanto entra en ella? Es totalmente normal: ¡sin repetición no hay retención! Para conservar tus conocimientos a largo plazo, ¡usa el Modo revisión para refrescarte la memoria!",
|
|
23
|
+
"button": "Vale, ¡entendido!",
|
|
24
|
+
"label_list": {
|
|
25
|
+
"skills": {
|
|
26
|
+
"text": "Elige 1 habilidad",
|
|
27
|
+
"tooltip": "Puedes revisar las habilidades de una en una."
|
|
28
|
+
},
|
|
29
|
+
"questions": {
|
|
30
|
+
"text": "Responde a 5 preguntas",
|
|
31
|
+
"tooltip": "Responde las 5 preguntas correctamente para validar tu sesión del modo revisión."
|
|
32
|
+
},
|
|
33
|
+
"lifes": {
|
|
34
|
+
"text": "Tienes vida infinita",
|
|
35
|
+
"tooltip": "Puedes responder todas las veces que quieras para completar tu sesión."
|
|
36
|
+
},
|
|
37
|
+
"allright": {
|
|
38
|
+
"text": "Acierta todas",
|
|
39
|
+
"tooltip": "Para poder validar tu sesión, debes responder correctamente a cada pregunta."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"list_title": "Habilidades que puedes revisar",
|
|
44
|
+
"list_aria_label": "Revisar contenedor de habilidades",
|
|
45
|
+
"card": {
|
|
46
|
+
"aria_label": "Tarjeta de habilidades",
|
|
47
|
+
"text": "{{total}} preguntas para revisar",
|
|
48
|
+
"button_text": "Revisa esta habilidad"
|
|
49
|
+
},
|
|
50
|
+
"no_skills": {
|
|
51
|
+
"title": "No tienes ninguna habilidad para revisar todavía",
|
|
52
|
+
"text": "Primero tienes que completar cursos antes de que puedas revisar distintas habilidades."
|
|
53
|
+
}
|
|
18
54
|
}
|
package/locales/fr/review.json
CHANGED
|
@@ -2,17 +2,53 @@
|
|
|
2
2
|
"Review Title": "Mode Révision",
|
|
3
3
|
"Content Parent Title": "de `{{contentTitle}}` `{{contentType}}`",
|
|
4
4
|
"Validate": "Valider",
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "Bonne
|
|
5
|
+
"Next Question": "Question suivante",
|
|
6
|
+
"KLF": "Point clé",
|
|
7
|
+
"Correct Answer": "Bonne réponse",
|
|
8
8
|
"Wrong Answer": "Mauvaise Réponse",
|
|
9
9
|
"You have won": "Vous avez gagné",
|
|
10
10
|
"You are now": "Vous êtes à présent",
|
|
11
11
|
"Revise another skill": "Réviser une autre compétence",
|
|
12
|
-
"Continue reviewing": "
|
|
12
|
+
"Continue reviewing": "Continuer à réviser",
|
|
13
13
|
"Congratulations!": "Félicitations !",
|
|
14
|
-
"
|
|
15
|
-
"Quit
|
|
16
|
-
"
|
|
17
|
-
"
|
|
14
|
+
"aria_label": "Revoir le modèle de compétences",
|
|
15
|
+
"Quit Title": "Êtes-vous sûr de vouloir quitter ?",
|
|
16
|
+
"Quit Description Text": "Vous êtes sur la bonne voie ! Si vous partez maintenant, vous perdrez votre progression.",
|
|
17
|
+
"Stop learning": "Terminer la session",
|
|
18
|
+
"Continue learning": "Continuer à apprendre",
|
|
19
|
+
"presentation": {
|
|
20
|
+
"aria_label": "Revoir le conteneur de présentation",
|
|
21
|
+
"title": "Qu'est-ce que le mode<br/>Révision ?",
|
|
22
|
+
"text": "Les informations vous entrent par une oreille et ressortent par l'autre ? C'est parfaitement normal : seule la répétition permet de retenir de nouvelles choses ! Pour conserver vos connaissances sur le long terme et vous rafraîchir la mémoire, utilisez le mode « Révision » !",
|
|
23
|
+
"button": "D'accord, j'ai compris !",
|
|
24
|
+
"label_list": {
|
|
25
|
+
"skills": {
|
|
26
|
+
"text": "Choisissez une compétence",
|
|
27
|
+
"tooltip": "Vous pouvez réviser une compétence à la fois."
|
|
28
|
+
},
|
|
29
|
+
"questions": {
|
|
30
|
+
"text": "Répondez aux cinq questions",
|
|
31
|
+
"tooltip": "Répondez correctement aux cinq questions pour valider votre session en mode révision."
|
|
32
|
+
},
|
|
33
|
+
"lifes": {
|
|
34
|
+
"text": "Vous pouvez réessayer autant de fois que vous voulez",
|
|
35
|
+
"tooltip": "Vous pouvez répondre autant de fois que vous le souhaitez pour terminer votre session."
|
|
36
|
+
},
|
|
37
|
+
"allright": {
|
|
38
|
+
"text": "Trouvez toutes les bonnes réponses",
|
|
39
|
+
"tooltip": "Pour valider votre session, vous devez trouver la bonne réponse à toutes les questions."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"list_title": "Compétences que vous pouvez réviser",
|
|
44
|
+
"list_aria_label": "Revoir le conteneur de compétences",
|
|
45
|
+
"card": {
|
|
46
|
+
"aria_label": "Carte de compétence",
|
|
47
|
+
"text": "{{total}} questions à revoir",
|
|
48
|
+
"button_text": "Réviser cette compétence"
|
|
49
|
+
},
|
|
50
|
+
"no_skills": {
|
|
51
|
+
"title": "Vous n'avez encore aucune compétence à réviser",
|
|
52
|
+
"text": "Vous devez d'abord suivre des cours pour pouvoir réviser des compétences."
|
|
53
|
+
}
|
|
18
54
|
}
|
package/locales/hr/review.json
CHANGED
|
@@ -2,17 +2,53 @@
|
|
|
2
2
|
"Review Title": "Način provjere",
|
|
3
3
|
"Content Parent Title": "Iz\n`{{naslovSadržaja}}` `{{vrstaSadržaja}}",
|
|
4
4
|
"Validate": "Potvrdite",
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
5
|
+
"Next Question": "Sljedeće pitanje",
|
|
6
|
+
"KLF": "Ključna stvar",
|
|
7
|
+
"Correct Answer": "Dobar odgovor",
|
|
8
8
|
"Wrong Answer": "Pogrešan odgovor",
|
|
9
9
|
"You have won": "Pobijedili ste",
|
|
10
10
|
"You are now": "Sada ste",
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "Nastavite s
|
|
11
|
+
"Revise another skill": "Pregledajte drugu vještinu",
|
|
12
|
+
"Continue reviewing": "Nastavite s pregledom",
|
|
13
13
|
"Congratulations!": "Čestitamo!",
|
|
14
|
-
"
|
|
15
|
-
"Quit
|
|
16
|
-
"
|
|
17
|
-
"
|
|
14
|
+
"aria_label": "Pregledajte predložak vještina",
|
|
15
|
+
"Quit Title": "Jesi li siguran da želiš odustati ?",
|
|
16
|
+
"Quit Description Text": "Na pravom ste putu! Ako sada odustanete, izgubit ćete svoj napredak.",
|
|
17
|
+
"Stop learning": "Završi sesiju",
|
|
18
|
+
"Continue learning": "Nastavite učiti",
|
|
19
|
+
"presentation": {
|
|
20
|
+
"aria_label": "Pregledajte prezentacijski spremnik",
|
|
21
|
+
"title": "Što je<br/>način revizije?",
|
|
22
|
+
"text": "Informacija nestaje iz vašeg uma čim u njega uđe? Sasvim je normalno: nema zadržavanja bez ponavljanja! Kako biste dugoročno zadržali svoje znanje, upotrijebite način revizije da osvježite pamćenje!",
|
|
23
|
+
"button": "U redu, shvatio sam!",
|
|
24
|
+
"label_list": {
|
|
25
|
+
"skills": {
|
|
26
|
+
"text": "Odaberite 1 vještinu",
|
|
27
|
+
"tooltip": "Možete pregledavati jednu po jednu vještinu."
|
|
28
|
+
},
|
|
29
|
+
"questions": {
|
|
30
|
+
"text": "Odgovorite na 5 pitanja",
|
|
31
|
+
"tooltip": "Odgovorite točno na 5 pitanja kako biste potvrdili svoju sesiju načina revizije."
|
|
32
|
+
},
|
|
33
|
+
"lifes": {
|
|
34
|
+
"text": "Imate beskonačan život",
|
|
35
|
+
"tooltip": "Možete odgovoriti onoliko puta koliko želite da dovršite sesiju."
|
|
36
|
+
},
|
|
37
|
+
"allright": {
|
|
38
|
+
"text": "Uredi sve",
|
|
39
|
+
"tooltip": "Da biste potvrdili svoju sesiju, morate dobiti točan odgovor na svako pitanje."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"list_title": "Vještine koje možete pregledati",
|
|
44
|
+
"list_aria_label": "Pregledajte spremnik vještina",
|
|
45
|
+
"card": {
|
|
46
|
+
"aria_label": "Kartica vještina",
|
|
47
|
+
"text": "{{ukupno}} pitanja za pregled",
|
|
48
|
+
"button_text": "Pregledajte ovu vještinu"
|
|
49
|
+
},
|
|
50
|
+
"no_skills": {
|
|
51
|
+
"title": "Još nemate vještinu za reviziju",
|
|
52
|
+
"text": "Prvo morate završiti tečajeve prije nego što možete pregledati različite vještine."
|
|
53
|
+
}
|
|
18
54
|
}
|
package/locales/hu/review.json
CHANGED
|
@@ -2,17 +2,53 @@
|
|
|
2
2
|
"Review Title": "Felülvizsgálati mód",
|
|
3
3
|
"Content Parent Title": "Forrás: `{{contentTitle}}` `{{contentType}}`",
|
|
4
4
|
"Validate": "Érvényesít",
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "Kulcsfontosságú
|
|
5
|
+
"Next Question": "Következő kérdés",
|
|
6
|
+
"KLF": "Kulcsfontosságú pont",
|
|
7
7
|
"Correct Answer": "Helyes válasz",
|
|
8
8
|
"Wrong Answer": "Rossz válasz",
|
|
9
9
|
"You have won": "Ön nyert",
|
|
10
10
|
"You are now": "Most maga van",
|
|
11
|
-
"Revise another skill": "
|
|
12
|
-
"Continue reviewing": "
|
|
11
|
+
"Revise another skill": "Tekints át egy másik készséget",
|
|
12
|
+
"Continue reviewing": "Folytasd az áttekintést",
|
|
13
13
|
"Congratulations!": "Gratulálunk!",
|
|
14
|
-
"
|
|
15
|
-
"Quit
|
|
16
|
-
"
|
|
17
|
-
"
|
|
14
|
+
"aria_label": "Készségek-mintasablon áttekintése",
|
|
15
|
+
"Quit Title": "Biztosan ki szeretnél lépni ?",
|
|
16
|
+
"Quit Description Text": "Jó úton haladsz! Ha most kilépsz, eddig elért eredményeid odavesznek.",
|
|
17
|
+
"Stop learning": "Munkamenet befejezése",
|
|
18
|
+
"Continue learning": "Folytasd a tanulást ",
|
|
19
|
+
"presentation": {
|
|
20
|
+
"aria_label": "Prezentációs konténer áttekintése",
|
|
21
|
+
"title": "Mi az a <br/> Áttekintés mód?",
|
|
22
|
+
"text": "Az információ amint bekerül ez elmédbe, azon nyomban el is illan onnan? Ez teljesen normális: ismétlés a tudás anyja! Használd az Áttekintés módot memóriád frissítésére, hogy ismereteidet sokáig megtartsd!",
|
|
23
|
+
"button": "Rendben, értem!",
|
|
24
|
+
"label_list": {
|
|
25
|
+
"skills": {
|
|
26
|
+
"text": "Válassz 1 készséget",
|
|
27
|
+
"tooltip": "Egyszerre csak egy készséget tekinthetsz át."
|
|
28
|
+
},
|
|
29
|
+
"questions": {
|
|
30
|
+
"text": "Válaszolj 5 kérdésre",
|
|
31
|
+
"tooltip": "Válaszolj helyesen az 5 kérdésre az áttekintés mód munkameneted érvényesítéséhez."
|
|
32
|
+
},
|
|
33
|
+
"lifes": {
|
|
34
|
+
"text": "Korlátlan számú esélyed van",
|
|
35
|
+
"tooltip": "Munkameneted teljesítéséhez annyiszor válaszolhatsz, ahányszor csak akarsz."
|
|
36
|
+
},
|
|
37
|
+
"allright": {
|
|
38
|
+
"text": "Old meg hibátlanul.",
|
|
39
|
+
"tooltip": "Munkameneted érvényesítéséhez, valamennyi kérdésre helyes választ kell adnod."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"list_title": "Számodra áttekinthető készségek",
|
|
44
|
+
"list_aria_label": "Készségek konténer áttekintése",
|
|
45
|
+
"card": {
|
|
46
|
+
"aria_label": "Készségek kártya",
|
|
47
|
+
"text": "{{total}} áttekintendő kérdés",
|
|
48
|
+
"button_text": "Tekintsd át ezt a készséget"
|
|
49
|
+
},
|
|
50
|
+
"no_skills": {
|
|
51
|
+
"title": "Egyenlőre nincs számodra áttekintendő készség",
|
|
52
|
+
"text": "Először el kell végezned egy tanfolyamot, mielőtt áttekinthetsz különféle készségeket."
|
|
53
|
+
}
|
|
18
54
|
}
|