@ -23,7 +23,7 @@
:href="goToCourseTool(course, tool)"
>
<!-- {{ tool.ctool.nameToTranslate }} -->
{{ tool.tool.nameToShow }}
{{ $t(tool.tool.nameToShow) }}
</a>
<button v-if="isCurrentTeacher && changeVisibility" @click="changeVisibility(course, tool)">
@ -42,7 +42,7 @@
v-for="tool in tools.admin"
<q-item-section>
{{ $t(tool.ctool.nameToTranslate) }}
</q-item-section>
</q-item>
</q-list>
@ -63,6 +63,7 @@ class UpdateVueTranslations extends Command
$newLanguageToString = json_encode($newLanguage, JSON_PRETTY_PRINT);
$fileToSave = $vueLocalePath.'en.json';
file_put_contents($fileToSave, $newLanguageToString);
continue;
}