diff --git a/assets/vue/components/course/CourseToolList.vue b/assets/vue/components/course/CourseToolList.vue
index 1dc86a374a..9db4076a7d 100644
--- a/assets/vue/components/course/CourseToolList.vue
+++ b/assets/vue/components/course/CourseToolList.vue
@@ -37,6 +37,14 @@
size="lg"
/>
+
+
+
@@ -59,6 +67,10 @@ export default {
type: Function,
required: false
},
+ goToSettingCourseTool: {
+ type: Function,
+ required: false
+ },
},
computed: {
...mapGetters({
diff --git a/assets/vue/views/course/Home.vue b/assets/vue/views/course/Home.vue
index a65d065ae1..612cf9f566 100644
--- a/assets/vue/views/course/Home.vue
+++ b/assets/vue/views/course/Home.vue
@@ -9,7 +9,7 @@
- You don't have course content
+ {{ $t('You don\'t have course content') }}
- Add a course introduction to display to your students.
+ {{ $t('Add a course introduction to display to your students.') }}
mdi-plus
- Course introduction
+ {{ $t('Course introduction') }}
-
- Tools
+ {{ $t('Tools') }}
@@ -97,6 +96,7 @@
:tool="tool"
:go-to-course-tool="goToCourseTool"
:change-visibility="changeVisibility"
+ :go-to-setting-course-tool="goToSettingCourseTool"
/>