fcad-core-dragon 2.0.0-beta.2 → 2.0.0-beta.4
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/.eslintrc.cjs +1 -1
- package/CHANGELOG +9 -0
- package/package.json +26 -12
- package/src/$locales/en.json +37 -87
- package/src/$locales/fr.json +17 -106
- package/src/assets/data/onboardingMessages.json +1 -1
- package/src/components/AppBase.vue +241 -143
- package/src/components/AppBaseButton.vue +2 -6
- package/src/components/AppBaseErrorDisplay.vue +193 -183
- package/src/components/AppBaseFlipCard.vue +1 -0
- package/src/components/AppBaseModule.vue +195 -225
- package/src/components/AppBasePage.vue +519 -64
- package/src/components/AppBasePopover.vue +41 -0
- package/src/components/AppCompAudio.vue +32 -64
- package/src/components/AppCompBranchButtons.vue +52 -71
- package/src/components/AppCompButtonProgress.vue +12 -18
- package/src/components/AppCompCarousel.vue +102 -0
- package/src/components/{AppCompInputCheckBox.vue → AppCompInputCheckBoxNext.vue} +56 -94
- package/src/components/AppCompInputDropdownNext.vue +159 -0
- package/src/components/{AppCompInputRadio.vue → AppCompInputRadioNext.vue} +53 -63
- package/src/components/AppCompInputTextNext.vue +106 -0
- package/src/components/AppCompInputTextTableNext.vue +141 -0
- package/src/components/AppCompInputTextToFillDropdownNext.vue +230 -0
- package/src/components/{AppCompInputTextToFillText.vue → AppCompInputTextToFillNext.vue} +71 -64
- package/src/components/AppCompJauge.vue +16 -9
- package/src/components/AppCompMenu.vue +50 -29
- package/src/components/AppCompMenuItem.vue +52 -15
- package/src/components/AppCompNavigation.vue +225 -211
- package/src/components/AppCompNoteCall.vue +22 -30
- package/src/components/AppCompNoteCredit.vue +45 -20
- package/src/components/AppCompPlayBar.vue +55 -108
- package/src/components/AppCompPlayBarNext.vue +2052 -0
- package/src/components/AppCompPlayBarProgress.vue +10 -1
- package/src/components/AppCompPopUpNext.vue +503 -0
- package/src/components/{AppCompQuiz.vue → AppCompQuizNext.vue} +632 -703
- package/src/components/AppCompQuizRecall.vue +74 -75
- package/src/components/{AppCompSVG.vue → AppCompSVGNext.vue} +111 -99
- package/src/components/AppCompSettingsMenu.vue +11 -8
- package/src/components/AppCompTableOfContent.vue +78 -76
- package/src/components/AppCompTranscript.vue +5 -0
- package/src/components/AppCompVideoPlayer.vue +30 -42
- package/src/components/BaseModule.vue +1 -0
- 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 +99 -90
- package/src/mixins/$mediaMixins.js +13 -21
- package/src/mixins/timerMixin.js +1 -1
- package/src/module/stores/appStore.js +901 -0
- package/src/module/xapi/ADL.js +8 -4
- package/src/plugins/bus.js +7 -2
- package/src/plugins/gsap.js +4 -7
- package/src/plugins/helper.js +33 -13
- package/src/plugins/i18n.js +2 -2
- package/src/plugins/idb.js +44 -29
- package/src/plugins/save.js +1 -1
- package/src/plugins/scorm.js +2 -2
- package/src/plugins/xapi.js +2 -2
- package/src/public/index.html +22 -10
- package/src/router/index.js +13 -10
- package/src/router/routes.js +20 -25
- package/src/shared/generalfuncs.js +33 -18
- package/src/shared/validators.js +116 -6
- package/src/components/AppCompInputDropdown.vue +0 -182
- package/src/components/AppCompInputTextBox.vue +0 -91
- package/src/components/AppCompInputTextTable.vue +0 -158
- package/src/components/AppCompInputTextToFillDropdown.vue +0 -257
- package/src/components/AppCompPopUp.vue +0 -583
- package/src/components/AppCompPopover.vue +0 -27
- package/src/mixins/$pageMixins.js +0 -415
- package/src/mixins/$quizMixins.js +0 -442
- package/src/module/store.js +0 -1014
package/.eslintrc.cjs
CHANGED
|
@@ -6,7 +6,7 @@ module.exports = {
|
|
|
6
6
|
browser: true
|
|
7
7
|
},
|
|
8
8
|
plugins: ['prettier'],
|
|
9
|
-
extends: [
|
|
9
|
+
extends: ['eslint:recommended', 'plugin:vue/vue3-recommended', 'prettier'],
|
|
10
10
|
rules: {
|
|
11
11
|
// Only allow debugger in development
|
|
12
12
|
'no-debugger': process.env.PRE_COMMIT ? 'error' : 'off',
|
package/CHANGELOG
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
2.0.0-beta.3(24 octobre 2024)
|
|
2
|
+
Framework JS : Migration de Vue 2 à Vue 3
|
|
3
|
+
|
|
4
|
+
Framework CSS : Migration de Bootstrap-vue à Vuetify
|
|
5
|
+
|
|
6
|
+
Build tool : Migration de Webpack à Vite
|
|
7
|
+
|
|
8
|
+
Vuejs Store : Migration de VueX à Pinia
|
|
9
|
+
|
|
1
10
|
1.3.0(17 avril 2023)
|
|
2
11
|
|
|
3
12
|
[sprint 14.2]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fcad-core-dragon",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/main.js",
|
|
@@ -8,33 +8,47 @@
|
|
|
8
8
|
"projname": ""
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"watch": "nodemon -e js,vue,html,json -x yalc push",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
11
|
+
"watch": "nodemon -e js,vue,html,json -x yalc publish --push",
|
|
12
|
+
"lintfix": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
|
|
13
|
+
"lintreport": "eslint src --ext .js,.vue --ignore-path .gitignore",
|
|
14
|
+
"vue": "vue",
|
|
15
|
+
"dev": "vite",
|
|
16
|
+
"format": "prettier --write src/",
|
|
17
|
+
"reset": "rm -rf ./node_modules package-lock.json .cache dist && npm i && npm run watch",
|
|
18
|
+
"build": "vite build",
|
|
19
|
+
"preview": "vite preview",
|
|
20
|
+
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
|
|
21
|
+
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
|
|
22
|
+
"test:unit": "cypress run --component",
|
|
23
|
+
"test:unit:dev": "cypress open --component"
|
|
14
24
|
},
|
|
15
25
|
"dependencies": {
|
|
16
26
|
"axios": "^1.6.8",
|
|
17
27
|
"gsap": "^3.12.5",
|
|
18
28
|
"idb": "^8.0.0",
|
|
19
29
|
"mobile-detect": "^1.4.5",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
30
|
+
"pinia": "^2.1.7",
|
|
31
|
+
"tiny-emitter": "^2.1.0",
|
|
32
|
+
"vue-safe-teleport": "^0.1.2"
|
|
22
33
|
},
|
|
23
34
|
"devDependencies": {
|
|
35
|
+
"@vitejs/plugin-vue": "^5.0.5",
|
|
24
36
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
25
|
-
"bootstrap-vue": "^2.23.1",
|
|
26
37
|
"eslint": "^8.57.0",
|
|
27
38
|
"eslint-config-prettier": "^9.1.0",
|
|
39
|
+
"eslint-plugin-cypress": "^3.3.0",
|
|
28
40
|
"eslint-plugin-prettier": "^5.1.3",
|
|
29
41
|
"eslint-plugin-vue": "^9.26.0",
|
|
30
42
|
"nodemon": "^3.1.0",
|
|
31
43
|
"prettier": "^3.2.5",
|
|
32
44
|
"prettier-eslint": "^16.3.0",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
45
|
+
"sass": "^1.77.6",
|
|
46
|
+
"start-server-and-test": "^2.0.4",
|
|
47
|
+
"vite": "^5.3.1",
|
|
48
|
+
"vite-plugin-dynamic-import": "^1.5.0",
|
|
49
|
+
"vue": "~3.4.29",
|
|
50
|
+
"vue-i18n": "^9.13.1",
|
|
51
|
+
"vue-router": "^4.3.3"
|
|
38
52
|
},
|
|
39
53
|
"browserslist": [
|
|
40
54
|
"> 1%",
|
package/src/$locales/en.json
CHANGED
|
@@ -1,73 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"button": {
|
|
3
|
-
"accessibility":"Subtitles and text alternative",
|
|
4
3
|
"alert_close":"Close this window",
|
|
5
|
-
"back_to_branching":"Go back to the main page",
|
|
6
|
-
"back_to_menu": "Back to the menu",
|
|
7
|
-
"btn_branch":"Explore this topic further",
|
|
8
4
|
"cancel_pop": "Cancel",
|
|
9
5
|
"carousel_next": "Next",
|
|
10
6
|
"carousel_prev": "Previous",
|
|
11
7
|
"confirm_pop": "Confirm",
|
|
12
|
-
"copyright": "Copyright",
|
|
13
|
-
"download_transcript": "Download text alternative",
|
|
14
8
|
"full_screen_on": "Full-screen",
|
|
15
9
|
"full_screen_off": "Exit full-screen",
|
|
16
|
-
"go_to_conclusion": "Go to the lesson conclusion",
|
|
17
10
|
"go_to_next_page": "Go to the next page",
|
|
18
11
|
"go_to_previous_page": "Go to the previous page",
|
|
19
12
|
"go_to_first_page": "Go to the first page",
|
|
20
|
-
"go_to_introduction": "Go to the lesson introduction",
|
|
21
|
-
"go_to_branch":"Go to the next topic",
|
|
22
|
-
"go_to_module_conclusion":"Go to the module conclusion",
|
|
23
13
|
"go_to_lesson" : "Go to the next lesson",
|
|
24
14
|
"go_to_menu": "Go to the lesson contents page",
|
|
25
15
|
"go_to_first_page": "Go to the first page",
|
|
26
|
-
"hide_nav_bar": "Hide navigation bar",
|
|
27
16
|
"info": "Info",
|
|
28
|
-
"instructions": "technical instruction",
|
|
29
17
|
"menu": "Start",
|
|
30
|
-
"menu_anchor": "Menu anchors",
|
|
31
18
|
"menu_item": {
|
|
32
19
|
"end": "Pick up where I left off",
|
|
33
|
-
"middle": "Pick up where I left off",
|
|
34
20
|
"start": "Start the lesson"
|
|
35
21
|
},
|
|
36
22
|
"mute": "Mute",
|
|
37
23
|
"next": "Next",
|
|
38
24
|
"next_activity": "Go to the next activity",
|
|
39
|
-
"note_call":"Revenir plus haut",
|
|
40
|
-
"note_call_in_page":"Atteindre la note de bas de page",
|
|
41
25
|
"pause": "Pause",
|
|
42
26
|
"play": "Play",
|
|
43
|
-
"previous": "
|
|
44
|
-
"previous_activity": "Previous",
|
|
45
|
-
"quiz_close_no_answer": "Stay and complete the exercise",
|
|
46
|
-
"quiz_confirm": "Confirm",
|
|
47
|
-
"quiz_multiple": "my answers",
|
|
48
|
-
"quiz_save": "Save",
|
|
49
|
-
"quiz_single": "my answer",
|
|
27
|
+
"previous": "Previous",
|
|
50
28
|
"quiz_verify": "Check",
|
|
51
29
|
"replay": "Replay",
|
|
52
|
-
"reset": "Reset",
|
|
53
|
-
"return_to_branch":"return to main content",
|
|
54
30
|
"save": "Save",
|
|
55
|
-
"setting": "Settings",
|
|
56
|
-
"skip_nav_content": "skip to main containt",
|
|
57
31
|
"subtitle_off": "Hide subtitles",
|
|
58
32
|
"subtitle_on": "Display subtitles",
|
|
59
|
-
"submit": "Check
|
|
60
|
-
"stay_on_page":"Stay on this page",
|
|
61
|
-
"switch_off": "off",
|
|
62
|
-
"switch_on": "on",
|
|
33
|
+
"submit": "Check",
|
|
63
34
|
"toc":"Progression",
|
|
64
35
|
"transcript_off": "Hide transcript",
|
|
65
36
|
"transcript_on": "Show transcript",
|
|
66
37
|
"unmute": "Unmute",
|
|
67
|
-
"volume":"Volume",
|
|
38
|
+
"volume": "Volume",
|
|
68
39
|
"closePopUp": "Close"
|
|
69
40
|
},
|
|
70
|
-
|
|
41
|
+
"instruction": {
|
|
71
42
|
"branch": "Click on the item to find additional information.",
|
|
72
43
|
"bif": "Select the path you wish to discover.",
|
|
73
44
|
"choix_mult": "Select one or more options, then check your answer.",
|
|
@@ -80,114 +51,93 @@
|
|
|
80
51
|
"pop_over": "Hover over the item to display the information.",
|
|
81
52
|
"reponse_ouverte": "Write your answer and save it.",
|
|
82
53
|
"reponse_ouverte_no_validation": "Write your answer and save it.",
|
|
83
|
-
"texte_tableau":
|
|
84
|
-
"multi":"Write your answers, then check them.",
|
|
85
|
-
"single":"Write your answer, then check it."
|
|
54
|
+
"texte_tableau": {
|
|
55
|
+
"multi": "Write your answers, then check them.",
|
|
56
|
+
"single": "Write your answer, then check it."
|
|
86
57
|
},
|
|
87
|
-
"texte_tableau_no_validation":
|
|
88
|
-
"multi":"Write your answers, then save them.",
|
|
89
|
-
"single":"Write your answer and save it."
|
|
58
|
+
"texte_tableau_no_validation": {
|
|
59
|
+
"multi": "Write your answers, then save them.",
|
|
60
|
+
"single": "Write your answer and save it."
|
|
90
61
|
},
|
|
91
62
|
"texte_troue": {
|
|
92
|
-
"multi":"Write your answers, then check them.",
|
|
93
|
-
"single":"Write your answer, then check it."
|
|
63
|
+
"multi": "Write your answers, then check them.",
|
|
64
|
+
"single": "Write your answer, then check it."
|
|
94
65
|
},
|
|
95
|
-
"texte_troue_no_validation":
|
|
96
|
-
"multi":"Write your answers, then save them.",
|
|
97
|
-
"single":"Write your answer and save it."
|
|
66
|
+
"texte_troue_no_validation": {
|
|
67
|
+
"multi": "Write your answers, then save them.",
|
|
68
|
+
"single": "Write your answer and save it."
|
|
98
69
|
},
|
|
99
|
-
"texte_troue_select":
|
|
100
|
-
"multi":"Select some options, then check your answers.",
|
|
101
|
-
"single":"Select an option, then check your answer."
|
|
70
|
+
"texte_troue_select": {
|
|
71
|
+
"multi": "Select some options, then check your answers.",
|
|
72
|
+
"single": "Select an option, then check your answer."
|
|
102
73
|
},
|
|
103
|
-
"texte_troue_select_no_validation":
|
|
104
|
-
"multi":"Select some options, then save them.",
|
|
105
|
-
"single":"Select an option, and save it."
|
|
74
|
+
"texte_troue_select_no_validation": {
|
|
75
|
+
"multi": "Select some options, then save them.",
|
|
76
|
+
"single": "Select an option, and save it."
|
|
106
77
|
}
|
|
107
78
|
},
|
|
108
79
|
"label": {
|
|
109
|
-
"for_pagination": "page",
|
|
110
|
-
"for_volume_level": "volume",
|
|
111
|
-
"section":"Go to the section named",
|
|
112
80
|
"timer":"estimated time"
|
|
113
81
|
},
|
|
114
82
|
"message": {
|
|
115
|
-
"bad_orientation_msg": "Please, turn your device for a better experience.",
|
|
116
|
-
"bad_orientation_title": "Warning",
|
|
117
83
|
"err_download_file": "The file download has failed.",
|
|
118
|
-
"err_download_transcript":"There was a problem to download the transcript file",
|
|
119
84
|
"first_option_dropdown": "Choose an option",
|
|
120
|
-
"no_answer": "You did not answer.",
|
|
121
85
|
"no_attempts": "You have no more attempts.",
|
|
122
|
-
"loading_state_msg":"Loading. Please wait...",
|
|
123
|
-
"progress_card":"État d’avancement:",
|
|
124
|
-
"recall_done":"You have answered the question :",
|
|
125
|
-
"recall_undone":"You have not answered the question.",
|
|
126
|
-
"skip_content":"Skip to the main content."
|
|
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."
|
|
127
91
|
},
|
|
128
92
|
"popup": {
|
|
129
|
-
"
|
|
130
|
-
"text_noanswer_back_root": "You didn’t enter an answer. Do you really want to go back to the main page?",
|
|
131
|
-
"text_noanswer_next_activity": "You didn’t enter an answer. Do you really want to go to the next activity?",
|
|
132
|
-
"text_noanswer_go_to_branch": "You didn’t enter an answer. Do you really want to go to the next topic?",
|
|
133
|
-
"text_noanswer_next_page": "You didn’t enter an answer. Do you really want to go to the next page?",
|
|
134
|
-
"text_what_to_do": "What do you wish to do?",
|
|
135
|
-
"title_warning": "Oops!"
|
|
93
|
+
"text_what_to_do": "What do you wish to do?"
|
|
136
94
|
},
|
|
137
95
|
"text": {
|
|
138
96
|
"activity": "Activity",
|
|
139
97
|
"activity_title":"My activitys",
|
|
140
98
|
"activity_progress":"Progress status:",
|
|
141
|
-
"anchors":"Section",
|
|
142
99
|
"carousel":"Carousel",
|
|
143
100
|
"conclusion": "Conclusion",
|
|
144
|
-
"complete":"Completed",
|
|
101
|
+
"complete": "Completed",
|
|
145
102
|
"introduction": "Introduction",
|
|
146
103
|
"lesson": "Lesson",
|
|
147
104
|
"quiz":"Words to complete the sentence",
|
|
148
105
|
"place_holder":{
|
|
149
|
-
"for_branch_title":"Title for branch",
|
|
150
106
|
"for_lesson_title":"Title of this lesson",
|
|
151
107
|
"for_textarea": "Write here.",
|
|
152
|
-
"for_download_file_name":"file",
|
|
153
108
|
"for_title_btn_progress":"Click to discover the content"
|
|
154
109
|
},
|
|
155
110
|
"of":"of",
|
|
156
|
-
"no_note":"Il n'y a pas de note.",
|
|
157
|
-
"no_credit":"Il n'y a pas de crédit.",
|
|
158
111
|
"slide":"Slide",
|
|
159
112
|
"title_note": "Note(s)",
|
|
160
113
|
"title_credit": "Credit(s)",
|
|
161
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é.",
|
|
162
|
-
"title_end_activity": "What do you wish to do?",
|
|
163
115
|
"title_link_bas": "Go back to the text",
|
|
164
116
|
"title_link_call": "Go to the footnote",
|
|
165
|
-
"toc":"
|
|
117
|
+
"toc":"Table of contents",
|
|
166
118
|
"title_content_view":"Lesson contents",
|
|
167
|
-
"transcript": "Transcript"
|
|
168
|
-
"you_are_here":"You are in : "
|
|
119
|
+
"transcript": "Transcript"
|
|
169
120
|
},
|
|
170
121
|
"user_settings": {
|
|
171
122
|
"autoplay": "Automatic playback of multimedia content",
|
|
172
123
|
"close": "Close this window",
|
|
173
124
|
"onboarding": "Turn on the guided tour",
|
|
174
|
-
"subtitles":"Always show subtitles when playing multimedia content",
|
|
125
|
+
"subtitles": "Always show subtitles when playing multimedia content",
|
|
175
126
|
"title": "Settings"
|
|
176
127
|
},
|
|
177
128
|
"quizState":{
|
|
178
|
-
"selected":"Option selected",
|
|
179
129
|
"goodAnswer":"Good answer",
|
|
180
130
|
"badAnswer":"Wrong answer",
|
|
181
131
|
"neutralAnswer":"Neutral answer",
|
|
182
132
|
"answers" : "Answer choices"
|
|
183
133
|
},
|
|
184
|
-
"a11y_sr":{
|
|
134
|
+
"a11y_sr": {
|
|
185
135
|
"time": {
|
|
186
|
-
"hours":"hour | hours",
|
|
187
|
-
"minute":"minute | minutes",
|
|
188
|
-
"second":"second |seconds"
|
|
136
|
+
"hours": "hour | hours",
|
|
137
|
+
"minute": "minute | minutes",
|
|
138
|
+
"second": "second |seconds"
|
|
189
139
|
},
|
|
190
|
-
"seek_slider":"Seek slider",
|
|
191
|
-
"range_expression":"at
|
|
140
|
+
"seek_slider": "Seek slider",
|
|
141
|
+
"range_expression": "at %x of %y."
|
|
192
142
|
}
|
|
193
143
|
}
|
package/src/$locales/fr.json
CHANGED
|
@@ -1,194 +1,105 @@
|
|
|
1
1
|
{
|
|
2
2
|
"button": {
|
|
3
|
-
"accessibility":"Sous-titres et version texte",
|
|
4
3
|
"alert_close":"Fermer cette fenêtre",
|
|
5
|
-
"back_to_branching":"Retourner à la page d’origine",
|
|
6
|
-
"back_to_menu": "Retour au sommaire",
|
|
7
|
-
"btn_branch":"Approfondir ce sujet",
|
|
8
4
|
"cancel_pop": "Annuler",
|
|
9
5
|
"carousel_next": "Suivant",
|
|
10
6
|
"carousel_prev": "Précédent",
|
|
11
7
|
"confirm_pop": "Confirmer",
|
|
12
|
-
"copyright": "Droit d'auteur",
|
|
13
|
-
"download_transcript": "Télécharger une version texte",
|
|
14
8
|
"full_screen_on": "Plein-écran",
|
|
15
9
|
"full_screen_off": "Quitter le mode plein-écran",
|
|
16
|
-
"go_to_conclusion": "Aller à la conclusion de la leçon",
|
|
17
10
|
"go_to_first_page": "Aller à la première page",
|
|
18
11
|
"go_to_next_page": "Aller à la page suivante",
|
|
19
12
|
"go_to_previous_page": "Aller à la page précédente",
|
|
20
|
-
"go_to_introduction": "Aller à l'introduction de la leçon",
|
|
21
|
-
"go_to_branch":"Aller au sujet suivant",
|
|
22
|
-
"go_to_module_conclusion":"Aller à la conclusion du module",
|
|
23
13
|
"go_to_lesson" : "Aller à la leçon suivante",
|
|
24
14
|
"go_to_menu": "Aller au sommaire de la leçon",
|
|
25
15
|
"go_to_first_page": "Aller à la première page",
|
|
26
|
-
"hide_nav_bar": "Masquer la barre de navigation",
|
|
27
|
-
"instructions": "consigne technique",
|
|
28
16
|
"info": "Info",
|
|
29
17
|
"menu": "Début",
|
|
30
|
-
"menu_anchor": "Menu des ancres",
|
|
31
18
|
"menu_item": {
|
|
32
19
|
"end": "Reprendre là où j’étais",
|
|
33
|
-
"middle": "Reprendre là où j’étais",
|
|
34
20
|
"start": "Commencer la leçon"
|
|
35
21
|
},
|
|
36
22
|
"mute": "Désactiver le son",
|
|
37
23
|
"next": "Suivant",
|
|
38
24
|
"next_activity": "Aller à l’activité suivante",
|
|
39
|
-
"note_call":"Revenir plus haut",
|
|
40
|
-
"note_call_in_page":"Atteindre la note de bas de page",
|
|
41
25
|
"pause": "Pause",
|
|
42
26
|
"play": "Jouer",
|
|
43
27
|
"previous": "Précédent",
|
|
44
|
-
"previous_activity": "Aller à l’activité précédente",
|
|
45
|
-
"quiz_close_no_answer": "Rester et faire cet exercice",
|
|
46
|
-
"quiz_confirm": "Confirmer",
|
|
47
|
-
"quiz_multiple": "mes réponses",
|
|
48
|
-
"quiz_save": "Enregistrer",
|
|
49
|
-
"quiz_single": "ma réponse",
|
|
50
28
|
"quiz_verify": "Vérifier",
|
|
51
29
|
"replay": "Rejouer",
|
|
52
|
-
"reset": "Réinitialiser",
|
|
53
|
-
"return_to_branch":"Retour au résumé",
|
|
54
30
|
"save": "Enregistrer",
|
|
55
|
-
"setting": "Paramètres",
|
|
56
|
-
"skip_nav_content": "Passer au contenu principal",
|
|
57
31
|
"subtitle_off": "Masquer les sous-titres",
|
|
58
32
|
"subtitle_on": "Afficher les sous-titres",
|
|
59
33
|
"submit": "Valider",
|
|
60
|
-
"stay_on_page":"Rester sur cette page",
|
|
61
|
-
"switch_off": "off",
|
|
62
|
-
"switch_on": "on",
|
|
63
34
|
"toc":"Progression",
|
|
64
35
|
"transcript_off": "Fermer la transcription",
|
|
65
36
|
"transcript_on": "Afficher la transcription",
|
|
66
37
|
"unmute": "Activer le son",
|
|
67
|
-
"volume":"Volume",
|
|
38
|
+
"volume": "Volume",
|
|
68
39
|
"closePopUp": "Fermer"
|
|
69
40
|
},
|
|
70
|
-
"instruction": {
|
|
71
|
-
"branch": "Cliquez sur l’élément pour découvrir l’information supplémentaire.",
|
|
72
|
-
"bif": "Sélectionnez le chemin que vous souhaitez découvrir.",
|
|
73
|
-
"choix_mult": "Sélectionnez une ou plusieurs réponses, puis vérifiez votre choix.",
|
|
74
|
-
"choix_mult_no_validation": "Sélectionnez une ou plusieurs réponses, puis confirmez votre choix.",
|
|
75
|
-
"choix_unique": "Sélectionnez votre réponse, puis vérifiez-la.",
|
|
76
|
-
"choix_unique_no_validation": "Sélectionnez une réponse, puis confirmez-la.",
|
|
77
|
-
"click_show": "Cliquez sur l’élément pour découvrir l’information supplémentaire.",
|
|
78
|
-
"dropdown": "Associez les bonnes réponses aux énoncés correspondants, puis vérifiez vos réponses.",
|
|
79
|
-
"dropdown_no_validation": "Associez une réponse à chaque énoncé, puis confirmez vos réponses.",
|
|
80
|
-
"pop_over": "Survolez l’élément pour afficher l'information.",
|
|
81
|
-
"reponse_ouverte": "Rédigez votre réponse, puis enregistrez-la.",
|
|
82
|
-
"reponse_ouverte_no_validation": "Rédigez votre réponse, puis enregistrez-la.",
|
|
83
|
-
"texte_tableau": {
|
|
84
|
-
"multi":"Écrivez vos réponses, puis vérifiez-les.",
|
|
85
|
-
"single":"Écrivez votre réponse, puis vérifiez-la."
|
|
86
|
-
},
|
|
87
|
-
"texte_tableau_no_validation": {
|
|
88
|
-
"multi":"Écrivez vos réponses, puis enregistrez-les.",
|
|
89
|
-
"single":"Rédigez votre réponse, puis enregistrez-la."
|
|
90
|
-
},
|
|
91
|
-
"texte_troue": {
|
|
92
|
-
"multi":"Écrivez vos réponses, puis vérifiez-les.",
|
|
93
|
-
"single":"Écrivez votre réponse, puis vérifiez-la."
|
|
94
|
-
},
|
|
95
|
-
"texte_troue_no_validation": {
|
|
96
|
-
"multi":"Écrivez vos réponses, puis enregistrez-les.",
|
|
97
|
-
"single":"Rédigez votre réponse, puis enregistrez-la."
|
|
98
|
-
},
|
|
99
|
-
"texte_troue_select":{
|
|
100
|
-
"multi":"Sélectionnez des réponses, puis vérifiez-les.",
|
|
101
|
-
"single":"Sélectionnez une réponse, puis vérifiez-la."
|
|
102
|
-
},
|
|
103
|
-
"texte_troue_select_no_validation": {
|
|
104
|
-
"multi":"Sélectionnez des réponses, puis enregistrez-les.",
|
|
105
|
-
"single":"Sélectionnez une réponse, puis enregistrez-la."
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
41
|
"label": {
|
|
109
|
-
"for_pagination": "page",
|
|
110
|
-
"for_volume_level": "volume",
|
|
111
|
-
"section":"Aller à la section intitulée",
|
|
112
42
|
"timer":"temps estimé"
|
|
113
43
|
},
|
|
114
44
|
"message": {
|
|
115
|
-
"bad_orientation_msg": "Veuillez retourner votre appareil pour une meilleur expérience.",
|
|
116
|
-
"bad_orientation_title": "Attention",
|
|
117
45
|
"err_download_file": "Le téléchargement de ce fichier a échoué.",
|
|
118
|
-
"err_download_transcript":"Impossible de télécharger le fichier de transcription",
|
|
119
46
|
"first_option_dropdown": "Choisir une option",
|
|
120
|
-
"no_answer": "Vous n'avez pas répondu.",
|
|
121
47
|
"no_attempts": "Vous n'avez plus d'essai.",
|
|
122
|
-
"loading_state_msg":"Chargement. Veuillez patienter...",
|
|
123
|
-
"progress_card":"État d’avancement:",
|
|
124
|
-
"recall_done":"Vous avez répondu précédemment à la question :",
|
|
125
|
-
"recall_undone":"Vous n'avez pas répondu à la question concernée.",
|
|
126
|
-
"skip_content":"Passer au contenu principal"
|
|
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"
|
|
127
53
|
},
|
|
128
54
|
"popup": {
|
|
129
|
-
"
|
|
130
|
-
"text_noanswer_back_root": "Vous n’avez pas entré de réponse. Voulez-vous tout de même retourner à la page d’origine?",
|
|
131
|
-
"text_noanswer_next_activity": "Vous n’avez pas entré de réponse. Voulez-vous tout de même aller à l’activité suivante?",
|
|
132
|
-
"text_noanswer_go_to_branch": "Vous n’avez pas entré de réponse. Voulez-vous tout de même aller au sujet suivant?",
|
|
133
|
-
"text_noanswer_next_page": "Vous n’avez pas entré de réponse. Voulez-vous tout de même aller à la page suivante?",
|
|
134
|
-
"text_what_to_do": "Que voulez-vous faire?",
|
|
135
|
-
"title_warning": "Attention!"
|
|
136
|
-
|
|
55
|
+
"text_what_to_do": "Que voulez-vous faire?"
|
|
137
56
|
},
|
|
138
57
|
"text": {
|
|
139
58
|
"activity": "Activité",
|
|
140
59
|
"activity_title": "Mes activités",
|
|
141
60
|
"activity_progress":"État d’avancement :",
|
|
142
|
-
"anchors":"Section",
|
|
143
61
|
"carousel":"Carrousel",
|
|
144
62
|
"conclusion": "Conclusion",
|
|
145
|
-
"complete":"Terminé",
|
|
63
|
+
"complete": "Terminé",
|
|
146
64
|
"introduction": "Introduction",
|
|
147
65
|
"lesson": "Leçon",
|
|
148
66
|
"quiz": "Mot complétant la phrase",
|
|
149
67
|
"place_holder": {
|
|
150
|
-
"for_branch_title": "Titre de la branche",
|
|
151
68
|
"for_lesson_title": "Titre de la leçon",
|
|
152
69
|
"for_textarea": "Écrivez ici.",
|
|
153
|
-
"for_download_file_name": "fichier",
|
|
154
70
|
"for_title_btn_progress": "Cliquer pour découvrir le contenu"
|
|
155
71
|
},
|
|
156
72
|
"of":"de",
|
|
157
|
-
"no_note": "Il n'y a pas de note.",
|
|
158
|
-
"no_credit": "Il n'y a pas de crédit.",
|
|
159
73
|
"slide":"Diapositive",
|
|
160
74
|
"title_note": "Note(s)",
|
|
161
75
|
"title_credit": "Source(s)",
|
|
162
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é.",
|
|
163
|
-
"title_end_activity": "Que souhaitez-vous faire?",
|
|
164
77
|
"title_link_bas": "Revenir au texte",
|
|
165
78
|
"title_link_call": "Accéder à la note",
|
|
166
|
-
"title_content_view":"
|
|
79
|
+
"title_content_view":"Sommaire des activités",
|
|
167
80
|
"toc":"Table des matières",
|
|
168
|
-
"transcript": "Transcription"
|
|
169
|
-
"you_are_here":"Vous êtes dans : "
|
|
81
|
+
"transcript": "Transcription"
|
|
170
82
|
},
|
|
171
83
|
"user_settings": {
|
|
172
84
|
"autoplay": "Lecture automatique du contenu multimédia",
|
|
173
85
|
"close": "Fermer cette fenêtre",
|
|
174
86
|
"onboarding": "Activer la visite guidée",
|
|
175
|
-
"subtitles":"Activer le soutitrage par défault",
|
|
87
|
+
"subtitles": "Activer le soutitrage par défault",
|
|
176
88
|
"title": "Paramètres"
|
|
177
89
|
},
|
|
178
90
|
"quizState":{
|
|
179
|
-
"selected":"Réponse sélectionnée",
|
|
180
91
|
"goodAnswer":"Bonne réponse",
|
|
181
92
|
"badAnswer":"Mauvaise réponse",
|
|
182
93
|
"neutralAnswer":"Réponse neutre",
|
|
183
94
|
"answers" : "Choix de réponses"
|
|
184
95
|
},
|
|
185
|
-
"a11y_sr":{
|
|
96
|
+
"a11y_sr": {
|
|
186
97
|
"time": {
|
|
187
|
-
"hours":"heure | heures",
|
|
188
|
-
"minute":"minute | minutes",
|
|
189
|
-
"second":"seconde |secondes"
|
|
98
|
+
"hours": "heure | heures",
|
|
99
|
+
"minute": "minute | minutes",
|
|
100
|
+
"second": "seconde |secondes"
|
|
190
101
|
},
|
|
191
|
-
"seek_slider":"Barre de lecture",
|
|
192
|
-
"range_expression":"à
|
|
102
|
+
"seek_slider": "Barre de lecture",
|
|
103
|
+
"range_expression": "à %x sur %y."
|
|
193
104
|
}
|
|
194
105
|
}
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"message_4": {
|
|
26
26
|
"type": "tooltip",
|
|
27
27
|
"value": {
|
|
28
|
-
"target":"primary_activity",
|
|
28
|
+
"target": "primary_activity",
|
|
29
29
|
"title": "Navigation principale",
|
|
30
30
|
"content": "<p>La navigation principale permet de valider ses réponses de quiz et de passer à la page suivante.</p>"
|
|
31
31
|
}
|