diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/App.vue b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/App.vue
index d357a2b00..85f20b455 100644
--- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/App.vue
+++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/App.vue
@@ -12,7 +12,7 @@
- {{ $t('my_works') }}
+ {{ $t('my_works.tab') }}
@@ -20,28 +20,28 @@
- {{ $t('my_evaluations') }}
+ {{ $t('my_evaluations.tab') }}
- {{ $t('my_task') }}
+ {{ $t('my_tasks.tab') }}
- {{ $t('my_accompanying_courses') }}
+ {{ $t('my_accompanying_courses.tab') }}
- {{ $t('my_notifications') }}
+ {{ $t('my_notifications.tab') }}
@@ -106,8 +106,8 @@ export default {
},
methods: {
selectTab(tab) {
- this.activeTab = tab;
this.$store.dispatch('getByTab', tab);
+ this.activeTab = tab;
}
}
}
diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/MyAccompanyingCourses.vue b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/MyAccompanyingCourses.vue
index f94a042dc..5e363e032 100644
--- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/MyAccompanyingCourses.vue
+++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/MyAccompanyingCourses.vue
@@ -1,12 +1,23 @@
- MyAccompanyingCourses
+ {{ $t('my_accompanying_courses.title') }}
+
+
+
+
+
+
+
-
\ No newline at end of file
diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/MyTasks.vue b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/MyTasks.vue
index 0378ea092..65a0eba16 100644
--- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/MyTasks.vue
+++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/MyTasks.vue
@@ -1,12 +1,34 @@
- MyTasks
+ {{ $t('my_tasks.title_warning') }}
+
+
+
+
+
+
+
+
+
+ {{ $t('my_tasks.title_alert') }}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/js/i18n.js b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/js/i18n.js
index e67b7f5d3..603d464da 100644
--- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/js/i18n.js
+++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/js/i18n.js
@@ -1,10 +1,32 @@
const appMessages = {
fr: {
- my_works: "Actions d'accompagnement",
- my_evaluations: "Évaluations",
- my_task: "Tâches",
- my_accompanying_courses: "Parcours",
- my_notifications: "Notifications",
+ my_works: {
+ tab: "Actions d'accompagnement",
+ title: "Mes actions d'accompagnement qui arrivent à échéance",
+ },
+ my_evaluations: {
+ tab: "Évaluations",
+ title: "Mes évaluations qui arrivent à échéance",
+ },
+ my_tasks: {
+ tab: "Tâches",
+ title_warning: "Mes tâches avec date d'échéance dépassée",
+ title_alert: "Mes tâches avec date de rappel dépassée",
+ },
+ my_accompanying_courses: {
+ tab: "Parcours",
+ title: "Les parcours que l'on vient de m'attribuer",
+ },
+ my_notifications: {
+ tab: "Notifications",
+ title: "Mes notifications reçues (et non lues)",
+ },
+ Date: "Date",
+ Subject: "Objet",
+ Entity: "Associé à",
+ show_entity: "Voir {entity}",
+ the_activity: "l'échange",
+ the_course: "le parcours"
}
};