@coorpacademy/app-review 0.7.5 → 0.7.6-alpha.24
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-skills.d.ts +2 -2
- package/es/types/common.d.ts +6 -2
- package/lib/actions/api/fetch-skills.d.ts +2 -2
- package/lib/reducers/data/skills.d.ts +2 -2
- package/lib/services/fetch-skills.d.ts +2 -2
- package/lib/types/common.d.ts +6 -2
- 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/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 +4 -4
|
@@ -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;
|
|
@@ -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/types/common.d.ts
CHANGED
|
@@ -122,14 +122,18 @@ 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
|
+
skillRef: string;
|
|
134
|
+
};
|
|
131
135
|
export declare type Services = {
|
|
132
|
-
fetchSkills(token: string): Promise<
|
|
136
|
+
fetchSkills(token: string): Promise<SkillToReview[]>;
|
|
133
137
|
fetchSlide(slideRef: string, token: string): Promise<SlideFromAPI | void>;
|
|
134
138
|
postProgression(skillRef: string, token: string): Promise<ProgressionFromAPI>;
|
|
135
139
|
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;
|
|
@@ -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/types/common.d.ts
CHANGED
|
@@ -122,14 +122,18 @@ 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
|
+
skillRef: string;
|
|
134
|
+
};
|
|
131
135
|
export declare type Services = {
|
|
132
|
-
fetchSkills(token: string): Promise<
|
|
136
|
+
fetchSkills(token: string): Promise<SkillToReview[]>;
|
|
133
137
|
fetchSlide(slideRef: string, token: string): Promise<SlideFromAPI | void>;
|
|
134
138
|
postProgression(skillRef: string, token: string): Promise<ProgressionFromAPI>;
|
|
135
139
|
postAnswer(progression: ProgressionFromAPI, token: string, answer: string[]): Promise<ProgressionFromAPI>;
|
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
|
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Review Title": "Mode Tinjauan",
|
|
3
|
+
"Content Parent Title": "Dari `{{contentTitle}}` `{{contentType}}`",
|
|
4
|
+
"Validate": "Validasi",
|
|
5
|
+
"Next Question": "Pertanyaan Berikutnya",
|
|
6
|
+
"KLF": "Poin utama",
|
|
7
|
+
"Correct Answer": "Jawaban Bagus",
|
|
8
|
+
"Wrong Answer": "Jawaban Salah",
|
|
9
|
+
"You have won": "Anda telah menang",
|
|
10
|
+
"You are now": "Anda kini",
|
|
11
|
+
"Revise another skill": "Tinjau keterampilan lain",
|
|
12
|
+
"Continue reviewing": "Tinjau terus",
|
|
13
|
+
"Congratulations!": "Selamat!",
|
|
14
|
+
"aria_label": "Tinjau Templat Keterampilan",
|
|
15
|
+
"Quit Title": "Anda yakin ingin berhenti?",
|
|
16
|
+
"Quit Description Text": "Anda berada di jalur yang tepat! Jika berhenti sekarang, Anda akan kehilangan kemajuan Anda.",
|
|
17
|
+
"Stop learning": "Akhiri sesi",
|
|
18
|
+
"Continue learning": "Lanjutkan belajar",
|
|
19
|
+
"presentation": {
|
|
20
|
+
"aria_label": "Tinjau Wadah Presentasi",
|
|
21
|
+
"title": "Apa itu<br/>Mode Revisi?",
|
|
22
|
+
"text": "Informasi langsung hilang dari pikiran Anda begitu memasukinya? Itu sangat normal: tidak ada retensi tanpa pengulangan! Untuk mempertahankan pengetahuan Anda dalam jangka panjang, gunakan Mode Revisi untuk menyegarkan ingatan Anda!",
|
|
23
|
+
"button": "Oke, saya mengerti!",
|
|
24
|
+
"label_list": {
|
|
25
|
+
"skills": {
|
|
26
|
+
"text": "Pilih 1 keterampilan",
|
|
27
|
+
"tooltip": "Anda hanya bisa meninjau keterampilan satu per satu."
|
|
28
|
+
},
|
|
29
|
+
"questions": {
|
|
30
|
+
"text": "Jawab 5 pertanyaan",
|
|
31
|
+
"tooltip": "Jawab 5 pertanyaan dengan benar untuk memvalidasi sesi mode revisi Anda."
|
|
32
|
+
},
|
|
33
|
+
"lifes": {
|
|
34
|
+
"text": "Anda memiliki hidup yang tak terbatas",
|
|
35
|
+
"tooltip": "Anda bisa menjawab sebanyak yang Anda mau untuk menuntaskan sesi Anda."
|
|
36
|
+
},
|
|
37
|
+
"allright": {
|
|
38
|
+
"text": "Jawab semua dengan benar",
|
|
39
|
+
"tooltip": "Untuk memvalidasi sesi Anda, Anda harus menjawab semua pertanyaan dengan benar."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"list_title": "Keterampilan yang bisa Anda tinjau",
|
|
44
|
+
"list_aria_label": "Tinjau Wadah Keterampilan",
|
|
45
|
+
"card": {
|
|
46
|
+
"aria_label": "Kartu Keterampilan",
|
|
47
|
+
"text": "{{total}} pertanyaan untuk ditinjau",
|
|
48
|
+
"button_text": "Tinjau keterampilan ini"
|
|
49
|
+
},
|
|
50
|
+
"no_skills": {
|
|
51
|
+
"title": "Anda belum memiliki keterampilan untuk direvisi",
|
|
52
|
+
"text": "Anda harus menuntaskan kursus terlebih dulu sebelum bisa meninjau keterampilan yang lain."
|
|
53
|
+
}
|
|
54
|
+
}
|
package/locales/it/review.json
CHANGED
|
@@ -2,17 +2,53 @@
|
|
|
2
2
|
"Review Title": "Modalità revisione",
|
|
3
3
|
"Content Parent Title": "Da `{{contentTitle}}` `{{contentType}}`",
|
|
4
4
|
"Validate": "Convalida",
|
|
5
|
-
"Next
|
|
6
|
-
"KLF": "
|
|
7
|
-
"Correct Answer": "
|
|
5
|
+
"Next Question": "Domanda seguente",
|
|
6
|
+
"KLF": "Punto chiave",
|
|
7
|
+
"Correct Answer": "Buona risposta",
|
|
8
8
|
"Wrong Answer": "Risposta errata",
|
|
9
9
|
"You have won": "Hai vinto",
|
|
10
10
|
"You are now": "Adesso sei",
|
|
11
|
-
"Revise another skill": "Rivedi un'altra
|
|
12
|
-
"Continue reviewing": "Continua
|
|
11
|
+
"Revise another skill": "Rivedi un'altra abilità",
|
|
12
|
+
"Continue reviewing": "Continua a ripetere",
|
|
13
13
|
"Congratulations!": "Congratulazioni!",
|
|
14
|
-
"
|
|
15
|
-
"Quit
|
|
16
|
-
"
|
|
17
|
-
"
|
|
14
|
+
"aria_label": "Modello di ripetizione delle competenze",
|
|
15
|
+
"Quit Title": "Vuoi davvero uscire?",
|
|
16
|
+
"Quit Description Text": "Sei sulla buona strada! Se esci ora, perderai i tuoi progressi.",
|
|
17
|
+
"Stop learning": "Termina sessione",
|
|
18
|
+
"Continue learning": "Continua a imparare",
|
|
19
|
+
"presentation": {
|
|
20
|
+
"aria_label": "Contenitore di presentazione di ripetizione",
|
|
21
|
+
"title": "Cos'è<br/> la modalità ripetizione?",
|
|
22
|
+
"text": "Le informazioni svaniscono dalla tua mente non appena ci entrano? È perfettamente normale: non c'è memorizzazione senza ripetizione! Per mantenere le tue conoscenze a lungo termine, usa la modalità di ripetizione per rinfrescarti la memoria!",
|
|
23
|
+
"button": "Ok ho capito!",
|
|
24
|
+
"label_list": {
|
|
25
|
+
"skills": {
|
|
26
|
+
"text": "Scegli 1 competenza",
|
|
27
|
+
"tooltip": "Puoi ripetere una competenza alla volta."
|
|
28
|
+
},
|
|
29
|
+
"questions": {
|
|
30
|
+
"text": "Rispondi a 5 domande",
|
|
31
|
+
"tooltip": "Rispondi correttamente alle 5 domande per convalidare la tua sessione in modalità ripetizione."
|
|
32
|
+
},
|
|
33
|
+
"lifes": {
|
|
34
|
+
"text": "Hai vite infinite",
|
|
35
|
+
"tooltip": "Puoi rispondere tutte le volte che vuoi per completare la sessione."
|
|
36
|
+
},
|
|
37
|
+
"allright": {
|
|
38
|
+
"text": "Rispondi correttamente a tutto",
|
|
39
|
+
"tooltip": "Per convalidare la tua sessione, devi ottenere una risposta corretta a ciascuna domanda."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"list_title": "Competenze che puoi rivedere",
|
|
44
|
+
"list_aria_label": "Contenitore di ripetizione delle competenze",
|
|
45
|
+
"card": {
|
|
46
|
+
"aria_label": "Skill Card",
|
|
47
|
+
"text": "{{total}} domande da rivedere",
|
|
48
|
+
"button_text": "Rivedi questa competenza"
|
|
49
|
+
},
|
|
50
|
+
"no_skills": {
|
|
51
|
+
"title": "Non hai ancora competenze da rivedere",
|
|
52
|
+
"text": "Per prima cosa devi completare i corsi prima di poter rivedere diverse competenze."
|
|
53
|
+
}
|
|
18
54
|
}
|