VBV-489: Übersetzungen

This commit is contained in:
Daniel Egger 2023-09-08 09:53:43 +02:00
parent 56fa5372b7
commit 06a3706d29
5 changed files with 8 additions and 8 deletions

View File

@ -67,7 +67,7 @@ const clickLink = (to: string | undefined) => {
data-cy="medialibrary-link" data-cy="medialibrary-link"
@click="clickLink(`${courseSession?.media_library_url}`)" @click="clickLink(`${courseSession?.media_library_url}`)"
> >
{{ $t("mediaLibrary.title") }} {{ $t("a.Mediathek") }}
</button> </button>
</li> </li>
</ul> </ul>

View File

@ -13,7 +13,7 @@ const emit = defineEmits(["closemodal"]);
<template> <template>
<ItFullScreenModal :show="show" @closemodal="emit('closemodal')"> <ItFullScreenModal :show="show" @closemodal="emit('closemodal')">
<div v-if="circle" class="container-medium"> <div v-if="circle" class="container-medium">
<h2 data-cy="lc-title">Überblick: Circle «{{ circle.title }}»</h2> <h2 data-cy="lc-title">{{ $t("a.Übersicht") }}: Circle «{{ circle.title }}»</h2>
<!-- eslint-disable vue/no-v-html --> <!-- eslint-disable vue/no-v-html -->
<div <div

View File

@ -69,7 +69,7 @@ async function startTest() {
class="btn-primary inline-flex items-center" class="btn-primary inline-flex items-center"
@click="startTest()" @click="startTest()"
> >
Test starten {{ $t("edoniqTest.startTest") }}
<it-icon-external-link class="it-icon ml-2 h-5 w-5"></it-icon-external-link> <it-icon-external-link class="it-icon ml-2 h-5 w-5"></it-icon-external-link>
</button> </button>
</div> </div>

View File

@ -69,8 +69,8 @@ onUnmounted(() => {
> >
<LearningContentMultiLayout <LearningContentMultiLayout
:current-step="questionIndex" :current-step="questionIndex"
:sub-title="$t('selfEvaluation.title')" :sub-title="$t('a.Selbsteinschätzung')"
:title="$t('selfEvaluation.title', { title: learningUnit.title })" :title="`${$t('a.Selbsteinschätzung')}: ${learningUnit.title}`"
icon="it-icon-lc-learning-module" icon="it-icon-lc-learning-module"
:steps-count="questions.length" :steps-count="questions.length"
:show-next-button="showNextButton" :show-next-button="showNextButton"
@ -101,7 +101,7 @@ onUnmounted(() => {
> >
<it-icon-smiley-happy class="mr-4 h-16 w-16"></it-icon-smiley-happy> <it-icon-smiley-happy class="mr-4 h-16 w-16"></it-icon-smiley-happy>
<span class="text-large font-bold"> <span class="text-large font-bold">
{{ $t("selfEvaluation.yes") }}. {{ $t("selfEvaluation.yes") }}
</span> </span>
</button> </button>
<button <button
@ -117,7 +117,7 @@ onUnmounted(() => {
<it-icon-smiley-thinking <it-icon-smiley-thinking
class="mr-4 h-16 w-16" class="mr-4 h-16 w-16"
></it-icon-smiley-thinking> ></it-icon-smiley-thinking>
<span class="text-xl font-bold">{{ $t("selfEvaluation.no") }}.</span> <span class="text-xl font-bold">{{ $t("selfEvaluation.no") }}</span>
</button> </button>
</div> </div>

View File

@ -44,7 +44,7 @@ export function learningContentTypeData(
icon: "it-icon-lc-learning-module", icon: "it-icon-lc-learning-module",
}; };
case "learnpath.LearningContentMediaLibrary": case "learnpath.LearningContentMediaLibrary":
return { title: t("mediaLibrary.title"), icon: "it-icon-lc-media-library" }; return { title: t("a.Mediathek"), icon: "it-icon-lc-media-library" };
case "learnpath.LearningContentVideo": case "learnpath.LearningContentVideo":
return { title: t("learningContentTypes.video"), icon: "it-icon-lc-video" }; return { title: t("learningContentTypes.video"), icon: "it-icon-lc-video" };
case "learnpath.LearningContentEdoniqTest": case "learnpath.LearningContentEdoniqTest":