diff --git a/src/messages/fr.json b/src/messages/fr.json
index e61affc..9015125 100644
--- a/src/messages/fr.json
+++ b/src/messages/fr.json
@@ -16,7 +16,7 @@
"reflexion": "Réflexion théorique",
"lecture": "Lecture rapprochée",
"sensible": "Expérience sensible",
- "kit": "Fiche-outil de désapprentisage",
+ "kit": "Fiche-outil de désapprentissage",
"creation": "Création numérique"
},
"options": {
@@ -28,7 +28,8 @@
"card-list": "Alphabétique"
},
"go-to-char": "Aller à la lettre",
- "shuffle": "Mélanger"
+ "shuffle": "Mélanger",
+ "select-text": "Sélectionner un texte de départ"
},
"filters": {
"title": "Filtres",
diff --git a/src/pages/library/LibraryOptions.vue b/src/pages/library/LibraryOptions.vue
index f1e4470..c63b82e 100644
--- a/src/pages/library/LibraryOptions.vue
+++ b/src/pages/library/LibraryOptions.vue
@@ -87,7 +87,7 @@
-
+
diff --git a/src/store/modules/library.js b/src/store/modules/library.js
index a7c7ed0..3d4220d 100644
--- a/src/store/modules/library.js
+++ b/src/store/modules/library.js
@@ -116,7 +116,8 @@ export default {
async 'INIT_LIBRARY_TREE' ({ state, commit, dispatch, rootState }) {
const ids = await dispatch('INIT_LIBRARY')
- return dispatch('SET_NODE_DEPART_ID', ids[ids.length - 1])
+ // set Katalin Molnár "Quant à je" (id: 8) as default selected node
+ return dispatch('SET_NODE_DEPART_ID', 8)
},
async 'INIT_LIBRARY_MAP' ({ state, commit, dispatch }) {