fcad-core-dragon 2.0.0-beta.0 → 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.
- package/{.eslintrc.js → .eslintrc.cjs} +13 -18
- package/README.md +1 -1
- package/bk.scss +117 -0
- package/package.json +22 -40
- package/src/$locales/en.json +57 -19
- package/src/$locales/fr.json +66 -28
- package/src/components/AppBase.vue +790 -376
- package/src/components/AppBaseButton.vue +33 -5
- package/src/components/AppBaseErrorDisplay.vue +62 -25
- package/src/components/AppBaseModule.vue +831 -754
- package/src/components/AppBasePage.vue +60 -74
- package/src/components/AppCompAudio.vue +266 -0
- package/src/components/AppCompBranchButtons.vue +79 -89
- package/src/components/AppCompButtonProgress.vue +35 -61
- package/src/components/AppCompCarousel.vue +160 -249
- package/src/components/AppCompInputCheckBox.vue +9 -3
- package/src/components/AppCompInputDropdown.vue +2 -4
- package/src/components/AppCompInputRadio.vue +8 -15
- package/src/components/AppCompInputTextTable.vue +15 -12
- package/src/components/AppCompInputTextToFillDropdown.vue +16 -14
- package/src/components/AppCompInputTextToFillText.vue +2 -2
- package/src/components/AppCompJauge.vue +14 -3
- package/src/components/AppCompMenu.vue +284 -85
- package/src/components/AppCompMenuItem.vue +67 -92
- package/src/components/AppCompNavigation.vue +945 -0
- package/src/components/AppCompNoteCall.vue +141 -0
- package/src/components/AppCompNoteCredit.vue +267 -0
- package/src/components/AppCompPlayBar.vue +1122 -1391
- package/src/components/AppCompPlayBarProgress.vue +73 -0
- package/src/components/AppCompPopUp.vue +195 -135
- package/src/components/AppCompPopover.vue +27 -0
- package/src/components/AppCompQuiz.vue +90 -113
- package/src/components/AppCompQuizRecall.vue +277 -0
- package/src/components/AppCompSVG.vue +335 -0
- package/src/components/AppCompSettingsMenu.vue +7 -8
- package/src/components/AppCompTableOfContent.vue +264 -88
- package/src/components/AppCompTranscript.vue +19 -0
- package/src/components/AppCompVideoPlayer.vue +380 -0
- package/src/components/BaseModule.vue +37 -114
- package/src/main.js +130 -85
- package/src/mixins/$mediaMixins.js +827 -0
- package/src/mixins/$pageMixins.js +149 -115
- package/src/mixins/$quizMixins.js +12 -26
- package/src/mixins/timerMixin.js +39 -16
- package/src/module/store.js +218 -78
- package/src/module/xapi/ADL.js +90 -53
- package/src/module/xapi/Crypto/Hasher.js +8 -8
- package/src/module/xapi/Crypto/WordArray.js +6 -6
- package/src/module/xapi/Crypto/algorithms/BufferedBlockAlgorithm.js +4 -4
- package/src/module/xapi/Crypto/algorithms/C_algo.js +14 -18
- package/src/module/xapi/Crypto/algorithms/HMAC.js +1 -1
- package/src/module/xapi/Crypto/algorithms/SHA1.js +1 -1
- package/src/module/xapi/Crypto/encoders/Base.js +7 -7
- package/src/module/xapi/Crypto/encoders/Base64.js +3 -3
- package/src/module/xapi/Crypto/encoders/Hex.js +4 -3
- package/src/module/xapi/Crypto/encoders/Latin1.js +3 -3
- package/src/module/xapi/Crypto/encoders/Utf8.js +3 -3
- package/src/module/xapi/Statement/index.js +1 -1
- package/src/module/xapi/launch.js +10 -10
- package/src/module/xapi/utils.js +17 -17
- package/src/module/xapi/wrapper.js +127 -54
- package/src/module/xapi/xapiStatement.js +29 -29
- package/src/plugins/gsap.js +4 -1
- package/src/plugins/helper.js +58 -24
- package/src/plugins/i18n.js +23 -10
- package/src/plugins/idb.js +1 -0
- package/src/plugins/scorm.js +14 -14
- package/src/public/index.html +1 -1
- package/src/router/index.js +40 -0
- package/src/router/routes.js +317 -0
- package/src/shared/generalfuncs.js +91 -9
- package/src/shared/validators.js +959 -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/AppCompDragAndDrop.vue +0 -339
- package/src/components/AppCompInputAssociation.vue +0 -332
- package/src/components/AppCompMediaPlayer.vue +0 -365
- package/src/components/AppCompNavigationFull.vue +0 -1791
- package/src/components/AppCompToolTip.vue +0 -94
- package/src/plugins/timeManager.js +0 -77
- package/src/routes.js +0 -734
- 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
|
-
|
|
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,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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
|
-
|
|
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/README.md
CHANGED
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,59 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fcad-core-dragon",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
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
|
-
"
|
|
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
|
-
"
|
|
17
|
-
"gsap": "^3.
|
|
18
|
-
"idb": "^
|
|
19
|
-
"
|
|
16
|
+
"axios": "^1.6.8",
|
|
17
|
+
"gsap": "^3.12.5",
|
|
18
|
+
"idb": "^8.0.0",
|
|
19
|
+
"mobile-detect": "^1.4.5",
|
|
20
20
|
"portal-vue": "^2.1.7",
|
|
21
|
-
"
|
|
22
|
-
"core-js": "~3.9.1"
|
|
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"
|
|
21
|
+
"vue-axios": "^3.5.2"
|
|
30
22
|
},
|
|
31
23
|
"devDependencies": {
|
|
32
|
-
"@vue/
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"eslint": "^
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"eslint
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
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
|
-
|
|
56
|
-
|
|
57
39
|
"browserslist": [
|
|
58
40
|
"> 1%",
|
|
59
41
|
"last 2 versions",
|
package/src/$locales/en.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"button": {
|
|
3
|
-
"accessibility":"Subtitles and
|
|
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
6
|
"back_to_menu": "Back to the menu",
|
|
@@ -11,11 +11,22 @@
|
|
|
11
11
|
"confirm_pop": "Confirm",
|
|
12
12
|
"copyright": "Copyright",
|
|
13
13
|
"download_transcript": "Download text alternative",
|
|
14
|
-
"
|
|
14
|
+
"full_screen_on": "Full-screen",
|
|
15
|
+
"full_screen_off": "Exit full-screen",
|
|
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",
|
|
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
|
+
"go_to_lesson" : "Go to the next lesson",
|
|
24
|
+
"go_to_menu": "Go to the lesson contents page",
|
|
25
|
+
"go_to_first_page": "Go to the first page",
|
|
15
26
|
"hide_nav_bar": "Hide navigation bar",
|
|
16
|
-
"
|
|
27
|
+
"info": "Info",
|
|
17
28
|
"instructions": "technical instruction",
|
|
18
|
-
"menu": "
|
|
29
|
+
"menu": "Start",
|
|
19
30
|
"menu_anchor": "Menu anchors",
|
|
20
31
|
"menu_item": {
|
|
21
32
|
"end": "Pick up where I left off",
|
|
@@ -23,17 +34,14 @@
|
|
|
23
34
|
"start": "Start the lesson"
|
|
24
35
|
},
|
|
25
36
|
"mute": "Mute",
|
|
26
|
-
"next": "
|
|
37
|
+
"next": "Next",
|
|
27
38
|
"next_activity": "Go to the next activity",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"next_branch":"Go to the next topic",
|
|
31
|
-
"next_before_conclu_module":"Go to the module conclusion",
|
|
32
|
-
"next_lesson" : "Go to the next lesson",
|
|
39
|
+
"note_call":"Revenir plus haut",
|
|
40
|
+
"note_call_in_page":"Atteindre la note de bas de page",
|
|
33
41
|
"pause": "Pause",
|
|
34
42
|
"play": "Play",
|
|
35
43
|
"previous": "Go to the previous page",
|
|
36
|
-
"previous_activity": "
|
|
44
|
+
"previous_activity": "Previous",
|
|
37
45
|
"quiz_close_no_answer": "Stay and complete the exercise",
|
|
38
46
|
"quiz_confirm": "Confirm",
|
|
39
47
|
"quiz_multiple": "my answers",
|
|
@@ -45,11 +53,16 @@
|
|
|
45
53
|
"return_to_branch":"return to main content",
|
|
46
54
|
"save": "Save",
|
|
47
55
|
"setting": "Settings",
|
|
48
|
-
"show_subtitle": "Display subtitles",
|
|
49
56
|
"skip_nav_content": "skip to main containt",
|
|
57
|
+
"subtitle_off": "Hide subtitles",
|
|
58
|
+
"subtitle_on": "Display subtitles",
|
|
50
59
|
"submit": "Check my answer",
|
|
60
|
+
"stay_on_page":"Stay on this page",
|
|
51
61
|
"switch_off": "off",
|
|
52
62
|
"switch_on": "on",
|
|
63
|
+
"toc":"Progression",
|
|
64
|
+
"transcript_off": "Hide transcript",
|
|
65
|
+
"transcript_on": "Show transcript",
|
|
53
66
|
"unmute": "Unmute",
|
|
54
67
|
"volume":"Volume",
|
|
55
68
|
"closePopUp": "Close"
|
|
@@ -95,7 +108,6 @@
|
|
|
95
108
|
"label": {
|
|
96
109
|
"for_pagination": "page",
|
|
97
110
|
"for_volume_level": "volume",
|
|
98
|
-
"splashscreen": "Welcome",
|
|
99
111
|
"section":"Go to the section named",
|
|
100
112
|
"timer":"estimated time"
|
|
101
113
|
},
|
|
@@ -107,19 +119,29 @@
|
|
|
107
119
|
"first_option_dropdown": "Choose an option",
|
|
108
120
|
"no_answer": "You did not answer.",
|
|
109
121
|
"no_attempts": "You have no more attempts.",
|
|
110
|
-
"
|
|
111
|
-
"
|
|
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."
|
|
112
127
|
},
|
|
113
128
|
"popup": {
|
|
129
|
+
"text_congratulation": "Congratulation",
|
|
114
130
|
"text_noanswer_back_root": "You didn’t enter an answer. Do you really want to go back to the main page?",
|
|
115
131
|
"text_noanswer_next_activity": "You didn’t enter an answer. Do you really want to go to the next activity?",
|
|
116
|
-
"
|
|
132
|
+
"text_noanswer_go_to_branch": "You didn’t enter an answer. Do you really want to go to the next topic?",
|
|
117
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?",
|
|
118
135
|
"title_warning": "Oops!"
|
|
119
136
|
},
|
|
120
137
|
"text": {
|
|
121
138
|
"activity": "Activity",
|
|
139
|
+
"activity_title":"My activitys",
|
|
140
|
+
"activity_progress":"Progress status:",
|
|
141
|
+
"anchors":"Section",
|
|
142
|
+
"carousel":"Carousel",
|
|
122
143
|
"conclusion": "Conclusion",
|
|
144
|
+
"complete":"Completed",
|
|
123
145
|
"introduction": "Introduction",
|
|
124
146
|
"lesson": "Lesson",
|
|
125
147
|
"quiz":"Words to complete the sentence",
|
|
@@ -129,7 +151,21 @@
|
|
|
129
151
|
"for_textarea": "Write here.",
|
|
130
152
|
"for_download_file_name":"file",
|
|
131
153
|
"for_title_btn_progress":"Click to discover the content"
|
|
132
|
-
}
|
|
154
|
+
},
|
|
155
|
+
"of":"of",
|
|
156
|
+
"no_note":"Il n'y a pas de note.",
|
|
157
|
+
"no_credit":"Il n'y a pas de crédit.",
|
|
158
|
+
"slide":"Slide",
|
|
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 : "
|
|
133
169
|
},
|
|
134
170
|
"user_settings": {
|
|
135
171
|
"autoplay": "Automatic playback of multimedia content",
|
|
@@ -139,9 +175,11 @@
|
|
|
139
175
|
"title": "Settings"
|
|
140
176
|
},
|
|
141
177
|
"quizState":{
|
|
142
|
-
"
|
|
178
|
+
"selected":"Option selected",
|
|
143
179
|
"goodAnswer":"Good answer",
|
|
144
|
-
"badAnswer":"Wrong answer"
|
|
180
|
+
"badAnswer":"Wrong answer",
|
|
181
|
+
"neutralAnswer":"Neutral answer",
|
|
182
|
+
"answers" : "Answer choices"
|
|
145
183
|
},
|
|
146
184
|
"a11y_sr":{
|
|
147
185
|
"time": {
|
package/src/$locales/fr.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"button": {
|
|
3
|
-
"accessibility":"Sous-titres et
|
|
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
6
|
"back_to_menu": "Retour au sommaire",
|
|
@@ -11,11 +11,22 @@
|
|
|
11
11
|
"confirm_pop": "Confirmer",
|
|
12
12
|
"copyright": "Droit d'auteur",
|
|
13
13
|
"download_transcript": "Télécharger une version texte",
|
|
14
|
-
"
|
|
14
|
+
"full_screen_on": "Plein-écran",
|
|
15
|
+
"full_screen_off": "Quitter le mode plein-écran",
|
|
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",
|
|
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
|
+
"go_to_lesson" : "Aller à la leçon suivante",
|
|
24
|
+
"go_to_menu": "Aller au sommaire de la leçon",
|
|
25
|
+
"go_to_first_page": "Aller à la première page",
|
|
15
26
|
"hide_nav_bar": "Masquer la barre de navigation",
|
|
16
|
-
"hide_subtitle": "Masquer les sous-titres",
|
|
17
27
|
"instructions": "consigne technique",
|
|
18
|
-
"
|
|
28
|
+
"info": "Info",
|
|
29
|
+
"menu": "Début",
|
|
19
30
|
"menu_anchor": "Menu des ancres",
|
|
20
31
|
"menu_item": {
|
|
21
32
|
"end": "Reprendre là où j’étais",
|
|
@@ -23,16 +34,13 @@
|
|
|
23
34
|
"start": "Commencer la leçon"
|
|
24
35
|
},
|
|
25
36
|
"mute": "Désactiver le son",
|
|
26
|
-
"next": "
|
|
37
|
+
"next": "Suivant",
|
|
27
38
|
"next_activity": "Aller à l’activité suivante",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"next_branch":"Aller au sujet suivant",
|
|
31
|
-
"next_before_conclu_module":"Aller à la conclusion du module",
|
|
32
|
-
"next_lesson" : "Aller à la leçon suivante",
|
|
39
|
+
"note_call":"Revenir plus haut",
|
|
40
|
+
"note_call_in_page":"Atteindre la note de bas de page",
|
|
33
41
|
"pause": "Pause",
|
|
34
|
-
"play": "
|
|
35
|
-
"previous": "
|
|
42
|
+
"play": "Jouer",
|
|
43
|
+
"previous": "Précédent",
|
|
36
44
|
"previous_activity": "Aller à l’activité précédente",
|
|
37
45
|
"quiz_close_no_answer": "Rester et faire cet exercice",
|
|
38
46
|
"quiz_confirm": "Confirmer",
|
|
@@ -45,11 +53,16 @@
|
|
|
45
53
|
"return_to_branch":"Retour au résumé",
|
|
46
54
|
"save": "Enregistrer",
|
|
47
55
|
"setting": "Paramètres",
|
|
48
|
-
"show_subtitle": "Afficher les sous-titres",
|
|
49
56
|
"skip_nav_content": "Passer au contenu principal",
|
|
50
|
-
"
|
|
57
|
+
"subtitle_off": "Masquer les sous-titres",
|
|
58
|
+
"subtitle_on": "Afficher les sous-titres",
|
|
59
|
+
"submit": "Valider",
|
|
60
|
+
"stay_on_page":"Rester sur cette page",
|
|
51
61
|
"switch_off": "off",
|
|
52
62
|
"switch_on": "on",
|
|
63
|
+
"toc":"Progression",
|
|
64
|
+
"transcript_off": "Fermer la transcription",
|
|
65
|
+
"transcript_on": "Afficher la transcription",
|
|
53
66
|
"unmute": "Activer le son",
|
|
54
67
|
"volume":"Volume",
|
|
55
68
|
"closePopUp": "Fermer"
|
|
@@ -95,7 +108,6 @@
|
|
|
95
108
|
"label": {
|
|
96
109
|
"for_pagination": "page",
|
|
97
110
|
"for_volume_level": "volume",
|
|
98
|
-
"splashscreen": "Contenu multimédia",
|
|
99
111
|
"section":"Aller à la section intitulée",
|
|
100
112
|
"timer":"temps estimé"
|
|
101
113
|
},
|
|
@@ -107,30 +119,54 @@
|
|
|
107
119
|
"first_option_dropdown": "Choisir une option",
|
|
108
120
|
"no_answer": "Vous n'avez pas répondu.",
|
|
109
121
|
"no_attempts": "Vous n'avez plus d'essai.",
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
|
|
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"
|
|
113
127
|
},
|
|
114
128
|
"popup": {
|
|
129
|
+
"text_congratulation": "Félicitation",
|
|
115
130
|
"text_noanswer_back_root": "Vous n’avez pas entré de réponse. Voulez-vous tout de même retourner à la page d’origine?",
|
|
116
131
|
"text_noanswer_next_activity": "Vous n’avez pas entré de réponse. Voulez-vous tout de même aller à l’activité suivante?",
|
|
117
|
-
"
|
|
132
|
+
"text_noanswer_go_to_branch": "Vous n’avez pas entré de réponse. Voulez-vous tout de même aller au sujet suivant?",
|
|
118
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?",
|
|
119
135
|
"title_warning": "Attention!"
|
|
136
|
+
|
|
120
137
|
},
|
|
121
138
|
"text": {
|
|
122
139
|
"activity": "Activité",
|
|
140
|
+
"activity_title": "Mes activités",
|
|
141
|
+
"activity_progress":"État d’avancement :",
|
|
142
|
+
"anchors":"Section",
|
|
143
|
+
"carousel":"Carrousel",
|
|
123
144
|
"conclusion": "Conclusion",
|
|
145
|
+
"complete":"Terminé",
|
|
124
146
|
"introduction": "Introduction",
|
|
125
147
|
"lesson": "Leçon",
|
|
126
|
-
"quiz":"Mot complétant la phrase",
|
|
127
|
-
"place_holder":{
|
|
128
|
-
"for_branch_title":"Titre de la branche",
|
|
129
|
-
"for_lesson_title":"Titre de la leçon",
|
|
148
|
+
"quiz": "Mot complétant la phrase",
|
|
149
|
+
"place_holder": {
|
|
150
|
+
"for_branch_title": "Titre de la branche",
|
|
151
|
+
"for_lesson_title": "Titre de la leçon",
|
|
130
152
|
"for_textarea": "Écrivez ici.",
|
|
131
|
-
"for_download_file_name":"fichier",
|
|
132
|
-
"for_title_btn_progress":"Cliquer pour découvrir le contenu"
|
|
133
|
-
}
|
|
153
|
+
"for_download_file_name": "fichier",
|
|
154
|
+
"for_title_btn_progress": "Cliquer pour découvrir le contenu"
|
|
155
|
+
},
|
|
156
|
+
"of":"de",
|
|
157
|
+
"no_note": "Il n'y a pas de note.",
|
|
158
|
+
"no_credit": "Il n'y a pas de crédit.",
|
|
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",
|
|
169
|
+
"you_are_here":"Vous êtes dans : "
|
|
134
170
|
},
|
|
135
171
|
"user_settings": {
|
|
136
172
|
"autoplay": "Lecture automatique du contenu multimédia",
|
|
@@ -140,9 +176,11 @@
|
|
|
140
176
|
"title": "Paramètres"
|
|
141
177
|
},
|
|
142
178
|
"quizState":{
|
|
143
|
-
"
|
|
179
|
+
"selected":"Réponse sélectionnée",
|
|
144
180
|
"goodAnswer":"Bonne réponse",
|
|
145
|
-
"badAnswer":"Mauvaise réponse"
|
|
181
|
+
"badAnswer":"Mauvaise réponse",
|
|
182
|
+
"neutralAnswer":"Réponse neutre",
|
|
183
|
+
"answers" : "Choix de réponses"
|
|
146
184
|
},
|
|
147
185
|
"a11y_sr":{
|
|
148
186
|
"time": {
|