fcad-core-dragon 2.0.0-beta.1 → 2.0.0-beta.3

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.
Files changed (118) hide show
  1. package/.editorconfig +33 -33
  2. package/.eslintignore +29 -29
  3. package/{.eslintrc.js → .eslintrc.cjs} +81 -86
  4. package/CHANGELOG +364 -364
  5. package/README.md +71 -71
  6. package/bk.scss +117 -0
  7. package/package.json +61 -63
  8. package/src/$locales/en.json +143 -179
  9. package/src/$locales/fr.json +105 -181
  10. package/src/assets/data/onboardingMessages.json +47 -47
  11. package/src/components/AppBase.vue +1054 -614
  12. package/src/components/AppBaseButton.vue +87 -63
  13. package/src/components/AppBaseErrorDisplay.vue +438 -420
  14. package/src/components/AppBaseFlipCard.vue +84 -83
  15. package/src/components/AppBaseModule.vue +1673 -1842
  16. package/src/components/AppBasePage.vue +779 -312
  17. package/src/components/AppBasePopover.vue +41 -0
  18. package/src/components/AppCompAudio.vue +234 -0
  19. package/src/components/AppCompBranchButtons.vue +552 -582
  20. package/src/components/AppCompButtonProgress.vue +126 -147
  21. package/src/components/AppCompCarousel.vue +298 -192
  22. package/src/components/AppCompInputCheckBoxNext.vue +195 -0
  23. package/src/components/AppCompInputDropdownNext.vue +159 -0
  24. package/src/components/AppCompInputRadioNext.vue +152 -0
  25. package/src/components/{AppCompInputTextBox.vue → AppCompInputTextNext.vue} +106 -91
  26. package/src/components/AppCompInputTextTableNext.vue +141 -0
  27. package/src/components/AppCompInputTextToFillDropdownNext.vue +230 -0
  28. package/src/components/{AppCompInputTextToFillText.vue → AppCompInputTextToFillNext.vue} +171 -164
  29. package/src/components/AppCompJauge.vue +74 -55
  30. package/src/components/AppCompMenu.vue +413 -209
  31. package/src/components/AppCompMenuItem.vue +228 -174
  32. package/src/components/AppCompNavigation.vue +960 -949
  33. package/src/components/AppCompNoteCall.vue +133 -126
  34. package/src/components/AppCompNoteCredit.vue +292 -164
  35. package/src/components/AppCompPlayBar.vue +1218 -1319
  36. package/src/components/AppCompPlayBarNext.vue +2052 -0
  37. package/src/components/AppCompPlayBarProgress.vue +82 -0
  38. package/src/components/AppCompPopUpNext.vue +503 -0
  39. package/src/components/{AppCompQuiz.vue → AppCompQuizNext.vue} +2904 -2989
  40. package/src/components/AppCompQuizRecall.vue +276 -250
  41. package/src/components/AppCompSVGNext.vue +347 -0
  42. package/src/components/AppCompSettingsMenu.vue +172 -171
  43. package/src/components/AppCompTableOfContent.vue +387 -264
  44. package/src/components/AppCompTranscript.vue +24 -19
  45. package/src/components/AppCompVideoPlayer.vue +368 -336
  46. package/src/components/AppCompViewDisplay.vue +6 -6
  47. package/src/components/BaseModule.vue +72 -67
  48. package/src/composables/useQuiz.js +206 -0
  49. package/src/externalComps/ModuleView.vue +22 -0
  50. package/src/externalComps/SummaryView.vue +91 -0
  51. package/src/main.js +272 -227
  52. package/src/mixins/$mediaMixins.js +819 -0
  53. package/src/mixins/timerMixin.js +155 -156
  54. package/src/module/stores/appStore.js +893 -0
  55. package/src/module/xapi/ADL.js +376 -339
  56. package/src/module/xapi/Crypto/Hasher.js +241 -241
  57. package/src/module/xapi/Crypto/WordArray.js +278 -278
  58. package/src/module/xapi/Crypto/algorithms/BufferedBlockAlgorithm.js +103 -103
  59. package/src/module/xapi/Crypto/algorithms/C_algo.js +315 -319
  60. package/src/module/xapi/Crypto/algorithms/HMAC.js +9 -9
  61. package/src/module/xapi/Crypto/algorithms/SHA1.js +9 -9
  62. package/src/module/xapi/Crypto/encoders/Base.js +105 -105
  63. package/src/module/xapi/Crypto/encoders/Base64.js +99 -99
  64. package/src/module/xapi/Crypto/encoders/Hex.js +61 -61
  65. package/src/module/xapi/Crypto/encoders/Latin1.js +61 -61
  66. package/src/module/xapi/Crypto/encoders/Utf8.js +45 -45
  67. package/src/module/xapi/Crypto/index.js +53 -53
  68. package/src/module/xapi/Statement/activity.js +47 -47
  69. package/src/module/xapi/Statement/agent.js +55 -55
  70. package/src/module/xapi/Statement/group.js +26 -26
  71. package/src/module/xapi/Statement/index.js +259 -259
  72. package/src/module/xapi/Statement/statement.js +253 -253
  73. package/src/module/xapi/Statement/statementRef.js +23 -23
  74. package/src/module/xapi/Statement/substatement.js +22 -22
  75. package/src/module/xapi/Statement/verb.js +36 -36
  76. package/src/module/xapi/activitytypes.js +17 -17
  77. package/src/module/xapi/launch.js +157 -157
  78. package/src/module/xapi/utils.js +167 -167
  79. package/src/module/xapi/verbs.js +294 -294
  80. package/src/module/xapi/wrapper.js +1963 -1890
  81. package/src/module/xapi/xapiStatement.js +444 -444
  82. package/src/plugins/bus.js +8 -3
  83. package/src/plugins/gsap.js +14 -17
  84. package/src/plugins/helper.js +308 -295
  85. package/src/plugins/i18n.js +44 -31
  86. package/src/plugins/idb.js +219 -212
  87. package/src/plugins/save.js +37 -37
  88. package/src/plugins/scorm.js +287 -287
  89. package/src/plugins/xapi.js +11 -11
  90. package/src/public/index.html +33 -21
  91. package/src/router/index.js +43 -41
  92. package/src/router/routes.js +312 -337
  93. package/src/shared/generalfuncs.js +210 -188
  94. package/src/shared/validators.js +1069 -249
  95. package/vite.config.js +27 -0
  96. package/.prettierrc.js +0 -5
  97. package/babel.config.js +0 -3
  98. package/src/components/AppBaseDragChoice.vue +0 -91
  99. package/src/components/AppBaseDropZone.vue +0 -112
  100. package/src/components/AppCompBif.vue +0 -120
  101. package/src/components/AppCompDragAndDrop.vue +0 -339
  102. package/src/components/AppCompInputAssociation.vue +0 -332
  103. package/src/components/AppCompInputCheckBox.vue +0 -227
  104. package/src/components/AppCompInputDropdown.vue +0 -184
  105. package/src/components/AppCompInputRadio.vue +0 -169
  106. package/src/components/AppCompInputTextTable.vue +0 -155
  107. package/src/components/AppCompInputTextToFillDropdown.vue +0 -255
  108. package/src/components/AppCompMediaPlayer.vue +0 -397
  109. package/src/components/AppCompPopUp.vue +0 -522
  110. package/src/components/AppCompPopover.vue +0 -27
  111. package/src/components/AppCompSVG.vue +0 -309
  112. package/src/mixins/$pageMixins.js +0 -459
  113. package/src/mixins/$quizMixins.js +0 -456
  114. package/src/module/store.js +0 -895
  115. package/src/plugins/timeManager.js +0 -77
  116. package/src/routes_bckp.js +0 -313
  117. package/src/routes_static.js +0 -344
  118. package/vue.config.js +0 -83
@@ -1,179 +1,143 @@
1
- {
2
- "button": {
3
- "accessibility":"Subtitles and text alternative",
4
- "alert_close":"Close this window",
5
- "back_to_branching":"Go back to the main page",
6
- "back_to_first_page": "Go back to the first page",
7
- "back_to_menu": "Back to the menu",
8
- "btn_branch":"Explore this topic further",
9
- "cancel_pop": "Cancel",
10
- "carousel_next": "Next",
11
- "carousel_prev": "Previous",
12
- "confirm_pop": "Confirm",
13
- "copyright": "Copyright",
14
- "download_transcript": "Download text alternative",
15
- "full_screen_on": "Full-screen",
16
- "full_screen_off": "Exit full-screen",
17
- "go_to_conclusion": "Go to the lesson conclusion",
18
- "go_to_introduction": "Go to the lesson introduction",
19
- "go_to_branch":"Go to the next topic",
20
- "go_to_module_conclusion":"Go to the module conclusion",
21
- "go_to_lesson" : "Go to the next lesson",
22
- "go_to_menu": "Go to the lesson contents page",
23
- "hide_nav_bar": "Hide navigation bar",
24
- "info": "infos",
25
- "instructions": "technical instruction",
26
- "menu": "Lesson contents",
27
- "menu_anchor": "Menu anchors",
28
- "menu_item": {
29
- "end": "Pick up where I left off",
30
- "middle": "Pick up where I left off",
31
- "start": "Start the lesson"
32
- },
33
- "mute": "Mute",
34
- "next": "Go to the next page",
35
- "next_activity": "Go to the next activity",
36
- "note_call":"Revenir plus haut",
37
- "note_call_in_page":"Atteindre la note de bas de page",
38
- "pause": "Pause",
39
- "play": "Play",
40
- "previous": "Go to the previous page",
41
- "previous_activity": "Go to the previous activity",
42
- "quiz_close_no_answer": "Stay and complete the exercise",
43
- "quiz_confirm": "Confirm",
44
- "quiz_multiple": "my answers",
45
- "quiz_save": "Save",
46
- "quiz_single": "my answer",
47
- "quiz_verify": "Check",
48
- "replay": "Replay",
49
- "reset": "Reset",
50
- "return_to_branch":"return to main content",
51
- "save": "Save",
52
- "setting": "Settings",
53
- "skip_nav_content": "skip to main containt",
54
- "subtitle_off": "Hide subtitles",
55
- "subtitle_on": "Display subtitles",
56
- "submit": "Check my answer",
57
- "stay_on_page":"Stay on this page",
58
- "switch_off": "off",
59
- "switch_on": "on",
60
- "toc":"Progression",
61
- "transcript_off": "Hide transcript",
62
- "transcript_on": "Show transcript",
63
- "unmute": "Unmute",
64
- "volume":"Volume",
65
- "closePopUp": "Close"
66
- },
67
- "instruction": {
68
- "branch": "Click on the item to find additional information.",
69
- "bif": "Select the path you wish to discover.",
70
- "choix_mult": "Select one or more options, then check your answer.",
71
- "choix_mult_no_validation": "Select one or more options, then confirm your answer.",
72
- "choix_unique": "Select your answer, then check it.",
73
- "choix_unique_no_validation": "Select an option, then confirm your answer.",
74
- "click_show": "Click on the item to find additional information.",
75
- "dropdown": "Match the correct answers to the corresponding statements, then check your answers.",
76
- "dropdown_no_validation": "Match an answer to each statement, then confirm your answers.",
77
- "pop_over": "Hover over the item to display the information.",
78
- "reponse_ouverte": "Write your answer and save it.",
79
- "reponse_ouverte_no_validation": "Write your answer and save it.",
80
- "texte_tableau": {
81
- "multi":"Write your answers, then check them.",
82
- "single":"Write your answer, then check it."
83
- },
84
- "texte_tableau_no_validation": {
85
- "multi":"Write your answers, then save them.",
86
- "single":"Write your answer and save it."
87
- },
88
- "texte_troue": {
89
- "multi":"Write your answers, then check them.",
90
- "single":"Write your answer, then check it."
91
- },
92
- "texte_troue_no_validation": {
93
- "multi":"Write your answers, then save them.",
94
- "single":"Write your answer and save it."
95
- },
96
- "texte_troue_select": {
97
- "multi":"Select some options, then check your answers.",
98
- "single":"Select an option, then check your answer."
99
- },
100
- "texte_troue_select_no_validation": {
101
- "multi":"Select some options, then save them.",
102
- "single":"Select an option, and save it."
103
- }
104
- },
105
- "label": {
106
- "for_pagination": "page",
107
- "for_volume_level": "volume",
108
- "section":"Go to the section named",
109
- "timer":"estimated time"
110
- },
111
- "message": {
112
- "bad_orientation_msg": "Please, turn your device for a better experience.",
113
- "bad_orientation_title": "Warning",
114
- "err_download_file": "The file download has failed.",
115
- "err_download_transcript":"There was a problem to download the transcript file",
116
- "first_option_dropdown": "Choose an option",
117
- "no_answer": "You did not answer.",
118
- "no_attempts": "You have no more attempts.",
119
- "skip_content":"Skip to the main content."
120
- },
121
- "popup": {
122
- "text_congratulation": "Congratulation",
123
- "text_noanswer_back_root": "You didn’t enter an answer. Do you really want to go back to the main page?",
124
- "text_noanswer_next_activity": "You didn’t enter an answer. Do you really want to go to the next activity?",
125
- "text_noanswer_go_to_branch": "You didn’t enter an answer. Do you really want to go to the next topic?",
126
- "text_noanswer_next_page": "You didn’t enter an answer. Do you really want to go to the next page?",
127
- "text_what_to_do": "What do you wish to do?",
128
- "title_warning": "Oops!"
129
- },
130
- "text": {
131
- "activity": "Activity",
132
- "activity_title":"My activitys",
133
- "activity_progress":"Progress in the activity",
134
- "anchors":"Section",
135
- "conclusion": "Conclusion",
136
- "introduction": "Introduction",
137
- "lesson": "Lesson",
138
- "quiz":"Words to complete the sentence",
139
- "place_holder":{
140
- "for_branch_title":"Title for branch",
141
- "for_lesson_title":"Title of this lesson",
142
- "for_textarea": "Write here.",
143
- "for_download_file_name":"file",
144
- "for_title_btn_progress":"Click to discover the content"
145
- },
146
- "title_note": "Notes",
147
- "title_credit": "Credits",
148
- "title_end_activity": "What do you wish to do?",
149
- "title_link_bas": "Revenir plus haut",
150
- "title_link_call": "Atteindre la note de bas de page",
151
- "no_credit":"Il n'y a pas de crédit.",
152
- "no_note":"Il n'y a pas de note.",
153
- "you_are_here":"You are in : ",
154
- "carousel":"Carousel",
155
- "slide":"Slide",
156
- "of":"of"
157
- },
158
- "user_settings": {
159
- "autoplay": "Automatic playback of multimedia content",
160
- "close": "Close this window",
161
- "onboarding": "Turn on the guided tour",
162
- "subtitles":"Always show subtitles when playing multimedia content",
163
- "title": "Settings"
164
- },
165
- "quizState":{
166
- "selected":"Option selected",
167
- "goodAnswer":"Good answer",
168
- "badAnswer":"Wrong answer"
169
- },
170
- "a11y_sr":{
171
- "time": {
172
- "hours":"hour | hours",
173
- "minute":"minute | minutes",
174
- "second":"second |seconds"
175
- },
176
- "seek_slider":"Seek slider",
177
- "range_expression":"at {x} of {y}."
178
- }
179
- }
1
+ {
2
+ "button": {
3
+ "alert_close":"Close this window",
4
+ "cancel_pop": "Cancel",
5
+ "carousel_next": "Next",
6
+ "carousel_prev": "Previous",
7
+ "confirm_pop": "Confirm",
8
+ "full_screen_on": "Full-screen",
9
+ "full_screen_off": "Exit full-screen",
10
+ "go_to_next_page": "Go to the next page",
11
+ "go_to_previous_page": "Go to the previous page",
12
+ "go_to_first_page": "Go to the first page",
13
+ "go_to_lesson" : "Go to the next lesson",
14
+ "go_to_menu": "Go to the lesson contents page",
15
+ "go_to_first_page": "Go to the first page",
16
+ "info": "Info",
17
+ "menu": "Start",
18
+ "menu_item": {
19
+ "end": "Pick up where I left off",
20
+ "start": "Start the lesson"
21
+ },
22
+ "mute": "Mute",
23
+ "next": "Next",
24
+ "next_activity": "Go to the next activity",
25
+ "pause": "Pause",
26
+ "play": "Play",
27
+ "previous": "Previous",
28
+ "quiz_verify": "Check",
29
+ "replay": "Replay",
30
+ "save": "Save",
31
+ "subtitle_off": "Hide subtitles",
32
+ "subtitle_on": "Display subtitles",
33
+ "submit": "Check",
34
+ "toc":"Progression",
35
+ "transcript_off": "Hide transcript",
36
+ "transcript_on": "Show transcript",
37
+ "unmute": "Unmute",
38
+ "volume": "Volume",
39
+ "closePopUp": "Close"
40
+ },
41
+ "instruction": {
42
+ "branch": "Click on the item to find additional information.",
43
+ "bif": "Select the path you wish to discover.",
44
+ "choix_mult": "Select one or more options, then check your answer.",
45
+ "choix_mult_no_validation": "Select one or more options, then confirm your answer.",
46
+ "choix_unique": "Select your answer, then check it.",
47
+ "choix_unique_no_validation": "Select an option, then confirm your answer.",
48
+ "click_show": "Click on the item to find additional information.",
49
+ "dropdown": "Match the correct answers to the corresponding statements, then check your answers.",
50
+ "dropdown_no_validation": "Match an answer to each statement, then confirm your answers.",
51
+ "pop_over": "Hover over the item to display the information.",
52
+ "reponse_ouverte": "Write your answer and save it.",
53
+ "reponse_ouverte_no_validation": "Write your answer and save it.",
54
+ "texte_tableau": {
55
+ "multi": "Write your answers, then check them.",
56
+ "single": "Write your answer, then check it."
57
+ },
58
+ "texte_tableau_no_validation": {
59
+ "multi": "Write your answers, then save them.",
60
+ "single": "Write your answer and save it."
61
+ },
62
+ "texte_troue": {
63
+ "multi": "Write your answers, then check them.",
64
+ "single": "Write your answer, then check it."
65
+ },
66
+ "texte_troue_no_validation": {
67
+ "multi": "Write your answers, then save them.",
68
+ "single": "Write your answer and save it."
69
+ },
70
+ "texte_troue_select": {
71
+ "multi": "Select some options, then check your answers.",
72
+ "single": "Select an option, then check your answer."
73
+ },
74
+ "texte_troue_select_no_validation": {
75
+ "multi": "Select some options, then save them.",
76
+ "single": "Select an option, and save it."
77
+ }
78
+ },
79
+ "label": {
80
+ "timer":"estimated time"
81
+ },
82
+ "message": {
83
+ "err_download_file": "The file download has failed.",
84
+ "first_option_dropdown": "Choose an option",
85
+ "no_attempts": "You have no more attempts.",
86
+ "loading_state_msg": "Loading. Please wait...",
87
+ "progress_card": "État d’avancement:",
88
+ "recall_done": "You have answered the question :",
89
+ "recall_undone": "You have not answered the question.",
90
+ "skip_content": "Skip to the main content."
91
+ },
92
+ "popup": {
93
+ "text_what_to_do": "What do you wish to do?"
94
+ },
95
+ "text": {
96
+ "activity": "Activity",
97
+ "activity_title":"My activitys",
98
+ "activity_progress":"Progress status:",
99
+ "carousel":"Carousel",
100
+ "conclusion": "Conclusion",
101
+ "complete": "Completed",
102
+ "introduction": "Introduction",
103
+ "lesson": "Lesson",
104
+ "quiz":"Words to complete the sentence",
105
+ "place_holder":{
106
+ "for_lesson_title":"Title of this lesson",
107
+ "for_textarea": "Write here.",
108
+ "for_title_btn_progress":"Click to discover the content"
109
+ },
110
+ "of":"of",
111
+ "slide":"Slide",
112
+ "title_note": "Note(s)",
113
+ "title_credit": "Credit(s)",
114
+ "err_credit": "Le texte de la page ne comporte pas d’appel de note correspondant à cette note-ci. Un appel de note doit être ajouté.",
115
+ "title_link_bas": "Go back to the text",
116
+ "title_link_call": "Go to the footnote",
117
+ "toc":"Table of contents",
118
+ "title_content_view":"Lesson contents",
119
+ "transcript": "Transcript"
120
+ },
121
+ "user_settings": {
122
+ "autoplay": "Automatic playback of multimedia content",
123
+ "close": "Close this window",
124
+ "onboarding": "Turn on the guided tour",
125
+ "subtitles": "Always show subtitles when playing multimedia content",
126
+ "title": "Settings"
127
+ },
128
+ "quizState":{
129
+ "goodAnswer":"Good answer",
130
+ "badAnswer":"Wrong answer",
131
+ "neutralAnswer":"Neutral answer",
132
+ "answers" : "Answer choices"
133
+ },
134
+ "a11y_sr": {
135
+ "time": {
136
+ "hours": "hour | hours",
137
+ "minute": "minute | minutes",
138
+ "second": "second |seconds"
139
+ },
140
+ "seek_slider": "Seek slider",
141
+ "range_expression": "at %x of %y."
142
+ }
143
+ }
@@ -1,181 +1,105 @@
1
- {
2
- "button": {
3
- "accessibility":"Sous-titres et version texte",
4
- "alert_close":"Fermer cette fenêtre",
5
- "back_to_branching":"Retourner à la page d’origine",
6
- "back_to_first_page": "Retourner à la première page",
7
- "back_to_menu": "Retour au sommaire",
8
- "btn_branch":"Approfondir ce sujet",
9
- "cancel_pop": "Annuler",
10
- "carousel_next": "Suivant",
11
- "carousel_prev": "Précédent",
12
- "confirm_pop": "Confirmer",
13
- "copyright": "Droit d'auteur",
14
- "download_transcript": "Télécharger une version texte",
15
- "full_screen_on": "Plein-écran",
16
- "full_screen_off": "Quitter le mode plein-écran",
17
- "go_to_conclusion": "Aller à la conclusion de la leçon",
18
- "go_to_introduction": "Aller à l'introduction de la leçon",
19
- "go_to_branch":"Aller au sujet suivant",
20
- "go_to_module_conclusion":"Aller à la conclusion du module",
21
- "go_to_lesson" : "Aller à la leçon suivante",
22
- "go_to_menu": "Aller au sommaire de la leçon",
23
- "hide_nav_bar": "Masquer la barre de navigation",
24
- "instructions": "consigne technique",
25
- "info": "infos",
26
- "menu": "Menu",
27
- "menu_anchor": "Menu des ancres",
28
- "menu_item": {
29
- "end": "Reprendre là où j’étais",
30
- "middle": "Reprendre là où j’étais",
31
- "start": "Commencer la leçon"
32
- },
33
- "mute": "Désactiver le son",
34
- "next": "Aller à la page suivante",
35
- "next_activity": "Aller à l’activité suivante",
36
- "note_call":"Revenir plus haut",
37
- "note_call_in_page":"Atteindre la note de bas de page",
38
- "pause": "Pause",
39
- "play": "Jouer",
40
- "previous": "Aller à la page précédente",
41
- "previous_activity": "Aller à l’activité précédente",
42
- "quiz_close_no_answer": "Rester et faire cet exercice",
43
- "quiz_confirm": "Confirmer",
44
- "quiz_multiple": "mes réponses",
45
- "quiz_save": "Enregistrer",
46
- "quiz_single": "ma réponse",
47
- "quiz_verify": "Vérifier",
48
- "replay": "Rejouer",
49
- "reset": "Réinitialiser",
50
- "return_to_branch":"Retour au résumé",
51
- "save": "Enregistrer",
52
- "setting": "Paramètres",
53
- "skip_nav_content": "Passer au contenu principal",
54
- "subtitle_off": "Masquer les sous-titres",
55
- "subtitle_on": "Afficher les sous-titres",
56
- "submit": "Vérifier ma réponse",
57
- "stay_on_page":"Rester sur cette page",
58
- "switch_off": "off",
59
- "switch_on": "on",
60
- "toc":"Progression",
61
- "transcript_off": "Fermer la transcription",
62
- "transcript_on": "Afficher la transcription",
63
- "unmute": "Activer le son",
64
- "volume":"Volume",
65
- "closePopUp": "Fermer"
66
- },
67
- "instruction": {
68
- "branch": "Cliquez sur l’élément pour découvrir l’information supplémentaire.",
69
- "bif": "Sélectionnez le chemin que vous souhaitez découvrir.",
70
- "choix_mult": "Sélectionnez une ou plusieurs réponses, puis vérifiez votre choix.",
71
- "choix_mult_no_validation": "Sélectionnez une ou plusieurs réponses, puis confirmez votre choix.",
72
- "choix_unique": "Sélectionnez votre réponse, puis vérifiez-la.",
73
- "choix_unique_no_validation": "Sélectionnez une réponse, puis confirmez-la.",
74
- "click_show": "Cliquez sur l’élément pour découvrir l’information supplémentaire.",
75
- "dropdown": "Associez les bonnes réponses aux énoncés correspondants, puis vérifiez vos réponses.",
76
- "dropdown_no_validation": "Associez une réponse à chaque énoncé, puis confirmez vos réponses.",
77
- "pop_over": "Survolez l’élément pour afficher l'information.",
78
- "reponse_ouverte": "Rédigez votre réponse, puis enregistrez-la.",
79
- "reponse_ouverte_no_validation": "Rédigez votre réponse, puis enregistrez-la.",
80
- "texte_tableau": {
81
- "multi":"Écrivez vos réponses, puis vérifiez-les.",
82
- "single":"Écrivez votre réponse, puis vérifiez-la."
83
- },
84
- "texte_tableau_no_validation": {
85
- "multi":"Écrivez vos réponses, puis enregistrez-les.",
86
- "single":"Rédigez votre réponse, puis enregistrez-la."
87
- },
88
- "texte_troue": {
89
- "multi":"Écrivez vos réponses, puis vérifiez-les.",
90
- "single":"Écrivez votre réponse, puis vérifiez-la."
91
- },
92
- "texte_troue_no_validation": {
93
- "multi":"Écrivez vos réponses, puis enregistrez-les.",
94
- "single":"Rédigez votre réponse, puis enregistrez-la."
95
- },
96
- "texte_troue_select":{
97
- "multi":"Sélectionnez des réponses, puis vérifiez-les.",
98
- "single":"Sélectionnez une réponse, puis vérifiez-la."
99
- },
100
- "texte_troue_select_no_validation": {
101
- "multi":"Sélectionnez des réponses, puis enregistrez-les.",
102
- "single":"Sélectionnez une réponse, puis enregistrez-la."
103
- }
104
- },
105
- "label": {
106
- "for_pagination": "page",
107
- "for_volume_level": "volume",
108
- "section":"Aller à la section intitulée",
109
- "timer":"temps estimé"
110
- },
111
- "message": {
112
- "bad_orientation_msg": "Veuillez retourner votre appareil pour une meilleur expérience.",
113
- "bad_orientation_title": "Attention",
114
- "err_download_file": "Le téléchargement de ce fichier a échoué.",
115
- "err_download_transcript":"Impossible de télécharger le fichier de transcription",
116
- "first_option_dropdown": "Choisir une option",
117
- "no_answer": "Vous n'avez pas répondu.",
118
- "no_attempts": "Vous n'avez plus d'essai.",
119
- "skip_content":"Passer au contenu principal"
120
-
121
- },
122
- "popup": {
123
- "text_congratulation": "Félicitation",
124
- "text_noanswer_back_root": "Vous n’avez pas entré de réponse. Voulez-vous tout de même retourner à la page d’origine?",
125
- "text_noanswer_next_activity": "Vous n’avez pas entré de réponse. Voulez-vous tout de même aller à l’activité suivante?",
126
- "text_noanswer_go_to_branch": "Vous n’avez pas entré de réponse. Voulez-vous tout de même aller au sujet suivant?",
127
- "text_noanswer_next_page": "Vous n’avez pas entré de réponse. Voulez-vous tout de même aller à la page suivante?",
128
- "text_what_to_do": "Que voulez-vous faire?",
129
- "title_warning": "Attention!"
130
-
131
- },
132
- "text": {
133
- "activity": "Activité",
134
- "activity_title": "Mes activités",
135
- "activity_progress":"Progression dans l'activité",
136
- "anchors":"Section",
137
- "carousel":"Carrousel",
138
- "conclusion": "Conclusion",
139
- "introduction": "Introduction",
140
- "lesson": "Leçon",
141
- "quiz": "Mot complétant la phrase",
142
- "place_holder": {
143
- "for_branch_title": "Titre de la branche",
144
- "for_lesson_title": "Titre de la leçon",
145
- "for_textarea": "Écrivez ici.",
146
- "for_download_file_name": "fichier",
147
- "for_title_btn_progress": "Cliquer pour découvrir le contenu"
148
- },
149
- "title_note": "Notes",
150
- "title_credit": "Crédits",
151
- "title_end_activity": "Que souhaitez-vous faire?",
152
- "title_link_bas": "Revenir plus haut",
153
- "title_link_call": "Atteindre la note de bas de page",
154
- "no_credit": "Il n'y a pas de crédit.",
155
- "no_note": "Il n'y a pas de note.",
156
- "of":"de",
157
- "slide":"Diapositive",
158
- "you_are_here":"Vous êtes dans : "
159
- },
160
- "user_settings": {
161
- "autoplay": "Lecture automatique du contenu multimédia",
162
- "close": "Fermer cette fenêtre",
163
- "onboarding": "Activer la visite guidée",
164
- "subtitles":"Activer le soutitrage par défault",
165
- "title": "Paramètres"
166
- },
167
- "quizState":{
168
- "selected":"Réponse sélectionnée",
169
- "goodAnswer":"Bonne réponse",
170
- "badAnswer":"Mauvaise réponse"
171
- },
172
- "a11y_sr":{
173
- "time": {
174
- "hours":"heure | heures",
175
- "minute":"minute | minutes",
176
- "second":"seconde |secondes"
177
- },
178
- "seek_slider":"Barre de lecture",
179
- "range_expression":"à {x} sur {y}."
180
- }
181
- }
1
+ {
2
+ "button": {
3
+ "alert_close":"Fermer cette fenêtre",
4
+ "cancel_pop": "Annuler",
5
+ "carousel_next": "Suivant",
6
+ "carousel_prev": "Précédent",
7
+ "confirm_pop": "Confirmer",
8
+ "full_screen_on": "Plein-écran",
9
+ "full_screen_off": "Quitter le mode plein-écran",
10
+ "go_to_first_page": "Aller à la première page",
11
+ "go_to_next_page": "Aller à la page suivante",
12
+ "go_to_previous_page": "Aller à la page précédente",
13
+ "go_to_lesson" : "Aller à la leçon suivante",
14
+ "go_to_menu": "Aller au sommaire de la leçon",
15
+ "go_to_first_page": "Aller à la première page",
16
+ "info": "Info",
17
+ "menu": "Début",
18
+ "menu_item": {
19
+ "end": "Reprendre j’étais",
20
+ "start": "Commencer la leçon"
21
+ },
22
+ "mute": "Désactiver le son",
23
+ "next": "Suivant",
24
+ "next_activity": "Aller à l’activité suivante",
25
+ "pause": "Pause",
26
+ "play": "Jouer",
27
+ "previous": "Précédent",
28
+ "quiz_verify": "Vérifier",
29
+ "replay": "Rejouer",
30
+ "save": "Enregistrer",
31
+ "subtitle_off": "Masquer les sous-titres",
32
+ "subtitle_on": "Afficher les sous-titres",
33
+ "submit": "Valider",
34
+ "toc":"Progression",
35
+ "transcript_off": "Fermer la transcription",
36
+ "transcript_on": "Afficher la transcription",
37
+ "unmute": "Activer le son",
38
+ "volume": "Volume",
39
+ "closePopUp": "Fermer"
40
+ },
41
+ "label": {
42
+ "timer":"temps estimé"
43
+ },
44
+ "message": {
45
+ "err_download_file": "Le téléchargement de ce fichier a échoué.",
46
+ "first_option_dropdown": "Choisir une option",
47
+ "no_attempts": "Vous n'avez plus d'essai.",
48
+ "loading_state_msg": "Chargement. Veuillez patienter...",
49
+ "progress_card": "État d’avancement:",
50
+ "recall_done": "Vous avez répondu précédemment à la question :",
51
+ "recall_undone": "Vous n'avez pas répondu à la question concernée.",
52
+ "skip_content": "Passer au contenu principal"
53
+ },
54
+ "popup": {
55
+ "text_what_to_do": "Que voulez-vous faire?"
56
+ },
57
+ "text": {
58
+ "activity": "Activité",
59
+ "activity_title": "Mes activités",
60
+ "activity_progress":"État d’avancement :",
61
+ "carousel":"Carrousel",
62
+ "conclusion": "Conclusion",
63
+ "complete": "Terminé",
64
+ "introduction": "Introduction",
65
+ "lesson": "Leçon",
66
+ "quiz": "Mot complétant la phrase",
67
+ "place_holder": {
68
+ "for_lesson_title": "Titre de la leçon",
69
+ "for_textarea": "Écrivez ici.",
70
+ "for_title_btn_progress": "Cliquer pour découvrir le contenu"
71
+ },
72
+ "of":"de",
73
+ "slide":"Diapositive",
74
+ "title_note": "Note(s)",
75
+ "title_credit": "Source(s)",
76
+ "err_credit": "Le texte de la page ne comporte pas d’appel de note correspondant à cette note-ci. Un appel de note doit être ajouté.",
77
+ "title_link_bas": "Revenir au texte",
78
+ "title_link_call": "Accéder à la note",
79
+ "title_content_view":"Sommaire des activités",
80
+ "toc":"Table des matières",
81
+ "transcript": "Transcription"
82
+ },
83
+ "user_settings": {
84
+ "autoplay": "Lecture automatique du contenu multimédia",
85
+ "close": "Fermer cette fenêtre",
86
+ "onboarding": "Activer la visite guidée",
87
+ "subtitles": "Activer le soutitrage par défault",
88
+ "title": "Paramètres"
89
+ },
90
+ "quizState":{
91
+ "goodAnswer":"Bonne réponse",
92
+ "badAnswer":"Mauvaise réponse",
93
+ "neutralAnswer":"Réponse neutre",
94
+ "answers" : "Choix de réponses"
95
+ },
96
+ "a11y_sr": {
97
+ "time": {
98
+ "hours": "heure | heures",
99
+ "minute": "minute | minutes",
100
+ "second": "seconde |secondes"
101
+ },
102
+ "seek_slider": "Barre de lecture",
103
+ "range_expression": "à %x sur %y."
104
+ }
105
+ }