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.
- package/.editorconfig +33 -33
- package/.eslintignore +29 -29
- package/{.eslintrc.js → .eslintrc.cjs} +81 -86
- package/CHANGELOG +364 -364
- package/README.md +71 -71
- package/bk.scss +117 -0
- package/package.json +61 -63
- package/src/$locales/en.json +143 -179
- package/src/$locales/fr.json +105 -181
- package/src/assets/data/onboardingMessages.json +47 -47
- package/src/components/AppBase.vue +1054 -614
- package/src/components/AppBaseButton.vue +87 -63
- package/src/components/AppBaseErrorDisplay.vue +438 -420
- package/src/components/AppBaseFlipCard.vue +84 -83
- package/src/components/AppBaseModule.vue +1673 -1842
- package/src/components/AppBasePage.vue +779 -312
- package/src/components/AppBasePopover.vue +41 -0
- package/src/components/AppCompAudio.vue +234 -0
- package/src/components/AppCompBranchButtons.vue +552 -582
- package/src/components/AppCompButtonProgress.vue +126 -147
- package/src/components/AppCompCarousel.vue +298 -192
- package/src/components/AppCompInputCheckBoxNext.vue +195 -0
- package/src/components/AppCompInputDropdownNext.vue +159 -0
- package/src/components/AppCompInputRadioNext.vue +152 -0
- package/src/components/{AppCompInputTextBox.vue → AppCompInputTextNext.vue} +106 -91
- package/src/components/AppCompInputTextTableNext.vue +141 -0
- package/src/components/AppCompInputTextToFillDropdownNext.vue +230 -0
- package/src/components/{AppCompInputTextToFillText.vue → AppCompInputTextToFillNext.vue} +171 -164
- package/src/components/AppCompJauge.vue +74 -55
- package/src/components/AppCompMenu.vue +413 -209
- package/src/components/AppCompMenuItem.vue +228 -174
- package/src/components/AppCompNavigation.vue +960 -949
- package/src/components/AppCompNoteCall.vue +133 -126
- package/src/components/AppCompNoteCredit.vue +292 -164
- package/src/components/AppCompPlayBar.vue +1218 -1319
- package/src/components/AppCompPlayBarNext.vue +2052 -0
- package/src/components/AppCompPlayBarProgress.vue +82 -0
- package/src/components/AppCompPopUpNext.vue +503 -0
- package/src/components/{AppCompQuiz.vue → AppCompQuizNext.vue} +2904 -2989
- package/src/components/AppCompQuizRecall.vue +276 -250
- package/src/components/AppCompSVGNext.vue +347 -0
- package/src/components/AppCompSettingsMenu.vue +172 -171
- package/src/components/AppCompTableOfContent.vue +387 -264
- package/src/components/AppCompTranscript.vue +24 -19
- package/src/components/AppCompVideoPlayer.vue +368 -336
- package/src/components/AppCompViewDisplay.vue +6 -6
- package/src/components/BaseModule.vue +72 -67
- package/src/composables/useQuiz.js +206 -0
- package/src/externalComps/ModuleView.vue +22 -0
- package/src/externalComps/SummaryView.vue +91 -0
- package/src/main.js +272 -227
- package/src/mixins/$mediaMixins.js +819 -0
- package/src/mixins/timerMixin.js +155 -156
- package/src/module/stores/appStore.js +893 -0
- package/src/module/xapi/ADL.js +376 -339
- package/src/module/xapi/Crypto/Hasher.js +241 -241
- package/src/module/xapi/Crypto/WordArray.js +278 -278
- package/src/module/xapi/Crypto/algorithms/BufferedBlockAlgorithm.js +103 -103
- package/src/module/xapi/Crypto/algorithms/C_algo.js +315 -319
- package/src/module/xapi/Crypto/algorithms/HMAC.js +9 -9
- package/src/module/xapi/Crypto/algorithms/SHA1.js +9 -9
- package/src/module/xapi/Crypto/encoders/Base.js +105 -105
- package/src/module/xapi/Crypto/encoders/Base64.js +99 -99
- package/src/module/xapi/Crypto/encoders/Hex.js +61 -61
- package/src/module/xapi/Crypto/encoders/Latin1.js +61 -61
- package/src/module/xapi/Crypto/encoders/Utf8.js +45 -45
- package/src/module/xapi/Crypto/index.js +53 -53
- package/src/module/xapi/Statement/activity.js +47 -47
- package/src/module/xapi/Statement/agent.js +55 -55
- package/src/module/xapi/Statement/group.js +26 -26
- package/src/module/xapi/Statement/index.js +259 -259
- package/src/module/xapi/Statement/statement.js +253 -253
- package/src/module/xapi/Statement/statementRef.js +23 -23
- package/src/module/xapi/Statement/substatement.js +22 -22
- package/src/module/xapi/Statement/verb.js +36 -36
- package/src/module/xapi/activitytypes.js +17 -17
- package/src/module/xapi/launch.js +157 -157
- package/src/module/xapi/utils.js +167 -167
- package/src/module/xapi/verbs.js +294 -294
- package/src/module/xapi/wrapper.js +1963 -1890
- package/src/module/xapi/xapiStatement.js +444 -444
- package/src/plugins/bus.js +8 -3
- package/src/plugins/gsap.js +14 -17
- package/src/plugins/helper.js +308 -295
- package/src/plugins/i18n.js +44 -31
- package/src/plugins/idb.js +219 -212
- package/src/plugins/save.js +37 -37
- package/src/plugins/scorm.js +287 -287
- package/src/plugins/xapi.js +11 -11
- package/src/public/index.html +33 -21
- package/src/router/index.js +43 -41
- package/src/router/routes.js +312 -337
- package/src/shared/generalfuncs.js +210 -188
- package/src/shared/validators.js +1069 -249
- package/vite.config.js +27 -0
- package/.prettierrc.js +0 -5
- package/babel.config.js +0 -3
- package/src/components/AppBaseDragChoice.vue +0 -91
- package/src/components/AppBaseDropZone.vue +0 -112
- package/src/components/AppCompBif.vue +0 -120
- package/src/components/AppCompDragAndDrop.vue +0 -339
- package/src/components/AppCompInputAssociation.vue +0 -332
- package/src/components/AppCompInputCheckBox.vue +0 -227
- package/src/components/AppCompInputDropdown.vue +0 -184
- package/src/components/AppCompInputRadio.vue +0 -169
- package/src/components/AppCompInputTextTable.vue +0 -155
- package/src/components/AppCompInputTextToFillDropdown.vue +0 -255
- package/src/components/AppCompMediaPlayer.vue +0 -397
- package/src/components/AppCompPopUp.vue +0 -522
- package/src/components/AppCompPopover.vue +0 -27
- package/src/components/AppCompSVG.vue +0 -309
- package/src/mixins/$pageMixins.js +0 -459
- package/src/mixins/$quizMixins.js +0 -456
- package/src/module/store.js +0 -895
- package/src/plugins/timeManager.js +0 -77
- package/src/routes_bckp.js +0 -313
- package/src/routes_static.js +0 -344
- package/vue.config.js +0 -83
package/src/$locales/en.json
CHANGED
|
@@ -1,179 +1,143 @@
|
|
|
1
|
-
{
|
|
2
|
-
"button": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
"
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
},
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
"
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
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
|
+
}
|
package/src/$locales/fr.json
CHANGED
|
@@ -1,181 +1,105 @@
|
|
|
1
|
-
{
|
|
2
|
-
"button": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
}
|
|
105
|
-
|
|
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 là où 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
|
+
}
|