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

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 (78) hide show
  1. package/{.eslintrc.js → .eslintrc.cjs} +13 -18
  2. package/bk.scss +117 -0
  3. package/package.json +23 -39
  4. package/src/$locales/en.json +30 -16
  5. package/src/$locales/fr.json +29 -16
  6. package/src/components/AppBase.vue +740 -305
  7. package/src/components/AppBaseButton.vue +33 -5
  8. package/src/components/AppBaseErrorDisplay.vue +43 -35
  9. package/src/components/AppBaseModule.vue +447 -623
  10. package/src/components/AppBasePage.vue +37 -25
  11. package/src/components/AppCompAudio.vue +266 -0
  12. package/src/components/AppCompBranchButtons.vue +52 -63
  13. package/src/components/AppCompButtonProgress.vue +1 -16
  14. package/src/components/AppCompCarousel.vue +43 -39
  15. package/src/components/AppCompInputCheckBox.vue +9 -3
  16. package/src/components/AppCompInputDropdown.vue +2 -4
  17. package/src/components/AppCompInputRadio.vue +8 -15
  18. package/src/components/AppCompInputTextTable.vue +15 -12
  19. package/src/components/AppCompInputTextToFillDropdown.vue +16 -14
  20. package/src/components/AppCompInputTextToFillText.vue +2 -2
  21. package/src/components/AppCompJauge.vue +13 -1
  22. package/src/components/AppCompMenu.vue +203 -10
  23. package/src/components/AppCompMenuItem.vue +20 -3
  24. package/src/components/AppCompNavigation.vue +351 -355
  25. package/src/components/AppCompNoteCall.vue +62 -47
  26. package/src/components/AppCompNoteCredit.vue +182 -79
  27. package/src/components/AppCompPlayBar.vue +975 -1023
  28. package/src/components/AppCompPlayBarProgress.vue +73 -0
  29. package/src/components/AppCompPopUp.vue +175 -114
  30. package/src/components/AppCompQuiz.vue +67 -81
  31. package/src/components/AppCompQuizRecall.vue +32 -5
  32. package/src/components/AppCompSVG.vue +66 -40
  33. package/src/components/AppCompSettingsMenu.vue +6 -8
  34. package/src/components/AppCompTableOfContent.vue +166 -45
  35. package/src/components/AppCompVideoPlayer.vue +154 -110
  36. package/src/components/BaseModule.vue +21 -17
  37. package/src/main.js +124 -88
  38. package/src/mixins/$mediaMixins.js +827 -0
  39. package/src/mixins/$pageMixins.js +65 -109
  40. package/src/mixins/$quizMixins.js +12 -26
  41. package/src/mixins/timerMixin.js +8 -9
  42. package/src/module/store.js +187 -68
  43. package/src/module/xapi/ADL.js +90 -53
  44. package/src/module/xapi/Crypto/Hasher.js +8 -8
  45. package/src/module/xapi/Crypto/WordArray.js +6 -6
  46. package/src/module/xapi/Crypto/algorithms/BufferedBlockAlgorithm.js +4 -4
  47. package/src/module/xapi/Crypto/algorithms/C_algo.js +14 -18
  48. package/src/module/xapi/Crypto/algorithms/HMAC.js +1 -1
  49. package/src/module/xapi/Crypto/algorithms/SHA1.js +1 -1
  50. package/src/module/xapi/Crypto/encoders/Base.js +7 -7
  51. package/src/module/xapi/Crypto/encoders/Base64.js +3 -3
  52. package/src/module/xapi/Crypto/encoders/Hex.js +2 -2
  53. package/src/module/xapi/Crypto/encoders/Latin1.js +3 -3
  54. package/src/module/xapi/Crypto/encoders/Utf8.js +3 -3
  55. package/src/module/xapi/Statement/index.js +1 -1
  56. package/src/module/xapi/launch.js +10 -10
  57. package/src/module/xapi/utils.js +17 -17
  58. package/src/module/xapi/wrapper.js +123 -50
  59. package/src/module/xapi/xapiStatement.js +29 -29
  60. package/src/plugins/helper.js +8 -9
  61. package/src/plugins/i18n.js +23 -10
  62. package/src/plugins/scorm.js +14 -14
  63. package/src/router/index.js +3 -4
  64. package/src/router/routes.js +10 -30
  65. package/src/shared/generalfuncs.js +31 -24
  66. package/src/shared/validators.js +730 -20
  67. package/.prettierrc.js +0 -5
  68. package/babel.config.js +0 -3
  69. package/src/components/AppBaseDragChoice.vue +0 -91
  70. package/src/components/AppBaseDropZone.vue +0 -112
  71. package/src/components/AppCompBif.vue +0 -120
  72. package/src/components/AppCompDragAndDrop.vue +0 -339
  73. package/src/components/AppCompInputAssociation.vue +0 -332
  74. package/src/components/AppCompMediaPlayer.vue +0 -397
  75. package/src/plugins/timeManager.js +0 -77
  76. package/src/routes_bckp.js +0 -313
  77. package/src/routes_static.js +0 -344
  78. package/vue.config.js +0 -83
@@ -6,12 +6,7 @@ module.exports = {
6
6
  browser: true
7
7
  },
8
8
  plugins: ['prettier'],
9
- extends: [
10
- 'plugin:vue/recommended',
11
- 'eslint:recommended',
12
- 'prettier',
13
- '@vue/prettier'
14
- ],
9
+ extends: ["eslint:recommended", "plugin:vue/vue3-recommended", "prettier"],
15
10
  rules: {
16
11
  // Only allow debugger in development
17
12
  'no-debugger': process.env.PRE_COMMIT ? 'error' : 'off',
@@ -23,10 +18,10 @@ module.exports = {
23
18
  'no-alert': 'off',
24
19
  //'vue/array-bracket-spacing': 'error',
25
20
  //'vue/block-spacing': 'error',
26
- // 'vue/comma-dangle': ['error', 'never'],
21
+ // 'vue/comma-dangle': ['error', 'never'],
27
22
  //'vue/object-curly-spacing': ['error', 'always'],
28
- 'vue/no-v-for-template-key':'off',
29
- 'vue/valid-template-root':'off',
23
+ 'vue/no-v-for-template-key': 'off',
24
+ 'vue/valid-template-root': 'off',
30
25
  // 'vue/no-v-for-template-key-on-child':'off',
31
26
  'vue/component-name-in-template-casing': [
32
27
  'error',
@@ -35,16 +30,17 @@ module.exports = {
35
30
  ignores: []
36
31
  }
37
32
  ],
38
- 'vue/no-v-html':'off',
33
+ 'vue/no-v-html': 'off',
39
34
  'prettier/prettier': [
40
35
  'error',
41
36
  {
42
37
  singleQuote: true,
43
- semi: false,tabWidth: 2,
44
- trailingComma: "none",
45
- arrowParens: "always",
46
- htmlWhitespaceSensitivity: "ignore",
47
- endOfLine: 'auto',
38
+ semi: false,
39
+ tabWidth: 2,
40
+ trailingComma: 'none',
41
+ arrowParens: 'always',
42
+ htmlWhitespaceSensitivity: 'ignore',
43
+ endOfLine: 'auto'
48
44
  }
49
45
  ],
50
46
  'no-param-reassign': [0, { allowPassedByValue: true }],
@@ -64,12 +60,11 @@ module.exports = {
64
60
  'default-case': 'off',
65
61
  'no-plusplus': 'off',
66
62
  'no-loop-func': 'off',
67
- 'no-prototype-builtins':'off',
63
+ 'no-prototype-builtins': 'off',
68
64
  'func-names': 'off',
69
- 'no-unused-vars': ["error", {"args": "none" , "ignoreRestSiblings": true }]
65
+ 'no-unused-vars': ['error', { args: 'none', ignoreRestSiblings: true }]
70
66
  },
71
67
  parserOptions: {
72
- parser: 'babel-eslint',
73
68
  sourceType: 'module'
74
69
  },
75
70
  overrides: [
package/bk.scss ADDED
@@ -0,0 +1,117 @@
1
+
2
+
3
+ .navbar {
4
+ position: absolute;
5
+ top: 0;
6
+ left: 0;
7
+ z-index: 10;
8
+ display: flex;
9
+ flex-direction: column;
10
+ flex-wrap: wrap;
11
+ align-content: start;
12
+ width: 67px;
13
+ height: 100%;
14
+ }
15
+
16
+ .module-wrapper {
17
+ width: 100%;
18
+ position: relative;
19
+
20
+ #wrapper-content {
21
+ width: 100%;
22
+ position: relative;
23
+ padding-right: 0 !important;
24
+ padding-left: 0 !important;
25
+
26
+ &.active {
27
+ overflow: hidden;
28
+ }
29
+
30
+ .box {
31
+ width: 100%;
32
+ height: 95%;
33
+
34
+ .app-page {
35
+ width: 100%;
36
+ margin-top: 60px;
37
+
38
+ .row {
39
+ width: 100%;
40
+ margin-right: 0;
41
+ margin-left: 0;
42
+ }
43
+ }
44
+ }
45
+ }
46
+
47
+ .app-comp-table-of-content {
48
+ display: -webkit-flex;
49
+ display: flex;
50
+ flex-direction: column;
51
+ flex-wrap: wrap;
52
+ position: absolute;
53
+ top: 0px;
54
+ min-height: 100%;
55
+ z-index: 1;
56
+ }
57
+ }
58
+
59
+ .app-nav {
60
+ .md-controller {
61
+ display: -webkit-flex;
62
+ display: flex;
63
+ flex-direction: row;
64
+ align-items: baseline;
65
+ //width: $widthPlayer;
66
+ width: 50%;
67
+
68
+ .ctrl-play {
69
+ display: -webkit-flex;
70
+ display: flex;
71
+ flex-direction: row;
72
+ align-items: baseline;
73
+ //width: $widthPlayer;
74
+ width: 50%;
75
+
76
+ #progress-bar {
77
+ display: block;
78
+ //width: $widthProgressBar;
79
+ width: 150px;
80
+ //height: $heigthProgressBar;
81
+ height: 10px;
82
+ position: relative;
83
+ overflow: hidden;
84
+
85
+ #progress {
86
+ display: block;
87
+ height: 100%;
88
+ background-color: red;
89
+ }
90
+
91
+ #progress-shaddow {
92
+ display: block;
93
+ height: 100%;
94
+ position: absolute;
95
+ top: 0px;
96
+ left: 0px;
97
+ z-index: -1;
98
+ }
99
+ }
100
+ }
101
+
102
+ .ctrl-subtitle {
103
+ //width: $widthCtrSubtitle;
104
+ width: 10%;
105
+ }
106
+
107
+ .ctrl-sound {
108
+ display: -webkit-flex;
109
+ display: flex;
110
+ flex-direction: row;
111
+ align-items: baseline;
112
+ justify-content: space-between;
113
+ //width: $widthCtrlSound;
114
+ width: 40%;
115
+ }
116
+ }
117
+ }
package/package.json CHANGED
@@ -1,56 +1,40 @@
1
1
  {
2
2
  "name": "fcad-core-dragon",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0-beta.2",
4
4
  "private": false,
5
+ "type": "module",
5
6
  "main": "./src/main.js",
6
7
  "config": {
7
8
  "projname": ""
8
9
  },
9
10
  "scripts": {
10
11
  "watch": "nodemon -e js,vue,html,json -x yalc push",
11
- "build": "vue-cli-service build --target lib --name fcadCoreNext ./src/main.js",
12
- "lint": "vue-cli-service lint",
12
+ "lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
13
13
  "vue": "vue"
14
14
  },
15
15
  "dependencies": {
16
- "axios": "^0.27.2",
17
- "core-js": "~3.9.1",
18
- "crypto-js": "^4.0.0",
19
- "gsap": "^3.12.2",
20
- "idb": "^6.1.2",
21
- "mobile-detect": "^1.4.4",
22
- "portal-vue": "^2.1.7"
23
- },
24
- "peerDependencies": {
25
- "vuex": "~3.0.1",
26
- "vue-axios": "~3.3.7",
27
- "vue-router": "~3.2.0",
28
- "vue-i18n": "~8.26.3",
29
- "vue": "~2.6.11"
16
+ "axios": "^1.6.8",
17
+ "gsap": "^3.12.5",
18
+ "idb": "^8.0.0",
19
+ "mobile-detect": "^1.4.5",
20
+ "portal-vue": "^2.1.7",
21
+ "vue-axios": "^3.5.2"
30
22
  },
31
23
  "devDependencies": {
32
- "@vue/cli-plugin-babel": "^4.5.11",
33
- "@vue/cli-plugin-eslint": "^4.5.11",
34
- "@vue/cli-service": "^4.5.11",
35
- "@vue/eslint-config-prettier": "^5.0.0",
36
- "babel-eslint": "^10.1.0",
37
- "eslint": "^6.7.2",
38
- "eslint-config-airbnb-base": "^14.2.1",
39
- "eslint-config-prettier": "^6.12.0",
40
- "eslint-plugin-import": "^2.22.1",
41
- "eslint-plugin-prettier": "^3.3.1",
42
- "eslint-plugin-vue": "^6.2.2",
43
- "prettier": "^1.19.1",
44
- "sass": "~1.26.5",
45
- "sass-loader": "~8.0.2",
46
- "vue-loader": "~15.9.8",
47
- "vue-template-compiler": "~2.6.14",
48
- "bootstrap-vue": "~2.21.2",
49
- "vuex": "~3.0.1",
50
- "vue-axios": "~3.3.7",
51
- "vue-router": "~3.2.0",
52
- "vue-i18n": "~8.26.3",
53
- "vue": "~2.6.11"
24
+ "@vue/eslint-config-prettier": "^9.0.0",
25
+ "bootstrap-vue": "^2.23.1",
26
+ "eslint": "^8.57.0",
27
+ "eslint-config-prettier": "^9.1.0",
28
+ "eslint-plugin-prettier": "^5.1.3",
29
+ "eslint-plugin-vue": "^9.26.0",
30
+ "nodemon": "^3.1.0",
31
+ "prettier": "^3.2.5",
32
+ "prettier-eslint": "^16.3.0",
33
+ "vue": "~2.7.16",
34
+ "vue-i18n": "^8.28.2",
35
+ "vue-loader": "^15.11.1",
36
+ "vue-router": "^3.6.5",
37
+ "vuex": "~3.6.2"
54
38
  },
55
39
  "browserslist": [
56
40
  "> 1%",
@@ -3,7 +3,6 @@
3
3
  "accessibility":"Subtitles and text alternative",
4
4
  "alert_close":"Close this window",
5
5
  "back_to_branching":"Go back to the main page",
6
- "back_to_first_page": "Go back to the first page",
7
6
  "back_to_menu": "Back to the menu",
8
7
  "btn_branch":"Explore this topic further",
9
8
  "cancel_pop": "Cancel",
@@ -15,15 +14,19 @@
15
14
  "full_screen_on": "Full-screen",
16
15
  "full_screen_off": "Exit full-screen",
17
16
  "go_to_conclusion": "Go to the lesson conclusion",
17
+ "go_to_next_page": "Go to the next page",
18
+ "go_to_previous_page": "Go to the previous page",
19
+ "go_to_first_page": "Go to the first page",
18
20
  "go_to_introduction": "Go to the lesson introduction",
19
21
  "go_to_branch":"Go to the next topic",
20
22
  "go_to_module_conclusion":"Go to the module conclusion",
21
23
  "go_to_lesson" : "Go to the next lesson",
22
24
  "go_to_menu": "Go to the lesson contents page",
25
+ "go_to_first_page": "Go to the first page",
23
26
  "hide_nav_bar": "Hide navigation bar",
24
- "info": "infos",
27
+ "info": "Info",
25
28
  "instructions": "technical instruction",
26
- "menu": "Lesson contents",
29
+ "menu": "Start",
27
30
  "menu_anchor": "Menu anchors",
28
31
  "menu_item": {
29
32
  "end": "Pick up where I left off",
@@ -31,14 +34,14 @@
31
34
  "start": "Start the lesson"
32
35
  },
33
36
  "mute": "Mute",
34
- "next": "Go to the next page",
37
+ "next": "Next",
35
38
  "next_activity": "Go to the next activity",
36
39
  "note_call":"Revenir plus haut",
37
40
  "note_call_in_page":"Atteindre la note de bas de page",
38
41
  "pause": "Pause",
39
42
  "play": "Play",
40
43
  "previous": "Go to the previous page",
41
- "previous_activity": "Go to the previous activity",
44
+ "previous_activity": "Previous",
42
45
  "quiz_close_no_answer": "Stay and complete the exercise",
43
46
  "quiz_confirm": "Confirm",
44
47
  "quiz_multiple": "my answers",
@@ -116,6 +119,10 @@
116
119
  "first_option_dropdown": "Choose an option",
117
120
  "no_answer": "You did not answer.",
118
121
  "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.",
119
126
  "skip_content":"Skip to the main content."
120
127
  },
121
128
  "popup": {
@@ -130,9 +137,11 @@
130
137
  "text": {
131
138
  "activity": "Activity",
132
139
  "activity_title":"My activitys",
133
- "activity_progress":"Progress in the activity",
140
+ "activity_progress":"Progress status:",
134
141
  "anchors":"Section",
142
+ "carousel":"Carousel",
135
143
  "conclusion": "Conclusion",
144
+ "complete":"Completed",
136
145
  "introduction": "Introduction",
137
146
  "lesson": "Lesson",
138
147
  "quiz":"Words to complete the sentence",
@@ -143,17 +152,20 @@
143
152
  "for_download_file_name":"file",
144
153
  "for_title_btn_progress":"Click to discover the content"
145
154
  },
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.",
155
+ "of":"of",
152
156
  "no_note":"Il n'y a pas de note.",
153
- "you_are_here":"You are in : ",
154
- "carousel":"Carousel",
157
+ "no_credit":"Il n'y a pas de crédit.",
155
158
  "slide":"Slide",
156
- "of":"of"
159
+ "title_note": "Note(s)",
160
+ "title_credit": "Credit(s)",
161
+ "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
+ "title_link_bas": "Go back to the text",
164
+ "title_link_call": "Go to the footnote",
165
+ "toc":"Contents",
166
+ "title_content_view":"Lesson contents",
167
+ "transcript": "Transcript",
168
+ "you_are_here":"You are in : "
157
169
  },
158
170
  "user_settings": {
159
171
  "autoplay": "Automatic playback of multimedia content",
@@ -165,7 +177,9 @@
165
177
  "quizState":{
166
178
  "selected":"Option selected",
167
179
  "goodAnswer":"Good answer",
168
- "badAnswer":"Wrong answer"
180
+ "badAnswer":"Wrong answer",
181
+ "neutralAnswer":"Neutral answer",
182
+ "answers" : "Answer choices"
169
183
  },
170
184
  "a11y_sr":{
171
185
  "time": {
@@ -3,7 +3,6 @@
3
3
  "accessibility":"Sous-titres et version texte",
4
4
  "alert_close":"Fermer cette fenêtre",
5
5
  "back_to_branching":"Retourner à la page d’origine",
6
- "back_to_first_page": "Retourner à la première page",
7
6
  "back_to_menu": "Retour au sommaire",
8
7
  "btn_branch":"Approfondir ce sujet",
9
8
  "cancel_pop": "Annuler",
@@ -15,15 +14,19 @@
15
14
  "full_screen_on": "Plein-écran",
16
15
  "full_screen_off": "Quitter le mode plein-écran",
17
16
  "go_to_conclusion": "Aller à la conclusion de la leçon",
17
+ "go_to_first_page": "Aller à la première page",
18
+ "go_to_next_page": "Aller à la page suivante",
19
+ "go_to_previous_page": "Aller à la page précédente",
18
20
  "go_to_introduction": "Aller à l'introduction de la leçon",
19
21
  "go_to_branch":"Aller au sujet suivant",
20
22
  "go_to_module_conclusion":"Aller à la conclusion du module",
21
23
  "go_to_lesson" : "Aller à la leçon suivante",
22
24
  "go_to_menu": "Aller au sommaire de la leçon",
25
+ "go_to_first_page": "Aller à la première page",
23
26
  "hide_nav_bar": "Masquer la barre de navigation",
24
27
  "instructions": "consigne technique",
25
- "info": "infos",
26
- "menu": "Menu",
28
+ "info": "Info",
29
+ "menu": "Début",
27
30
  "menu_anchor": "Menu des ancres",
28
31
  "menu_item": {
29
32
  "end": "Reprendre là où j’étais",
@@ -31,13 +34,13 @@
31
34
  "start": "Commencer la leçon"
32
35
  },
33
36
  "mute": "Désactiver le son",
34
- "next": "Aller à la page suivante",
37
+ "next": "Suivant",
35
38
  "next_activity": "Aller à l’activité suivante",
36
39
  "note_call":"Revenir plus haut",
37
40
  "note_call_in_page":"Atteindre la note de bas de page",
38
41
  "pause": "Pause",
39
42
  "play": "Jouer",
40
- "previous": "Aller à la page précédente",
43
+ "previous": "Précédent",
41
44
  "previous_activity": "Aller à l’activité précédente",
42
45
  "quiz_close_no_answer": "Rester et faire cet exercice",
43
46
  "quiz_confirm": "Confirmer",
@@ -53,7 +56,7 @@
53
56
  "skip_nav_content": "Passer au contenu principal",
54
57
  "subtitle_off": "Masquer les sous-titres",
55
58
  "subtitle_on": "Afficher les sous-titres",
56
- "submit": "Vérifier ma réponse",
59
+ "submit": "Valider",
57
60
  "stay_on_page":"Rester sur cette page",
58
61
  "switch_off": "off",
59
62
  "switch_on": "on",
@@ -116,8 +119,11 @@
116
119
  "first_option_dropdown": "Choisir une option",
117
120
  "no_answer": "Vous n'avez pas répondu.",
118
121
  "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.",
119
126
  "skip_content":"Passer au contenu principal"
120
-
121
127
  },
122
128
  "popup": {
123
129
  "text_congratulation": "Félicitation",
@@ -132,10 +138,11 @@
132
138
  "text": {
133
139
  "activity": "Activité",
134
140
  "activity_title": "Mes activités",
135
- "activity_progress":"Progression dans l'activité",
141
+ "activity_progress":"État d’avancement :",
136
142
  "anchors":"Section",
137
143
  "carousel":"Carrousel",
138
144
  "conclusion": "Conclusion",
145
+ "complete":"Terminé",
139
146
  "introduction": "Introduction",
140
147
  "lesson": "Leçon",
141
148
  "quiz": "Mot complétant la phrase",
@@ -146,15 +153,19 @@
146
153
  "for_download_file_name": "fichier",
147
154
  "for_title_btn_progress": "Cliquer pour découvrir le contenu"
148
155
  },
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
156
  "of":"de",
157
+ "no_note": "Il n'y a pas de note.",
158
+ "no_credit": "Il n'y a pas de crédit.",
157
159
  "slide":"Diapositive",
160
+ "title_note": "Note(s)",
161
+ "title_credit": "Source(s)",
162
+ "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
+ "title_link_bas": "Revenir au texte",
165
+ "title_link_call": "Accéder à la note",
166
+ "title_content_view":"sommaire des activités",
167
+ "toc":"Table des matières",
168
+ "transcript": "Transcription",
158
169
  "you_are_here":"Vous êtes dans : "
159
170
  },
160
171
  "user_settings": {
@@ -167,7 +178,9 @@
167
178
  "quizState":{
168
179
  "selected":"Réponse sélectionnée",
169
180
  "goodAnswer":"Bonne réponse",
170
- "badAnswer":"Mauvaise réponse"
181
+ "badAnswer":"Mauvaise réponse",
182
+ "neutralAnswer":"Réponse neutre",
183
+ "answers" : "Choix de réponses"
171
184
  },
172
185
  "a11y_sr":{
173
186
  "time": {