chore: translations
This commit is contained in:
parent
19cf993748
commit
33415b12aa
|
|
@ -65,11 +65,12 @@ const total = (metrics: AssignmentCompletionMetricsType) => {
|
||||||
{{ (item as AssignmentStatisticsRecordType).assignment_title }}
|
{{ (item as AssignmentStatisticsRecordType).assignment_title }}
|
||||||
</h4>
|
</h4>
|
||||||
<div>
|
<div>
|
||||||
Durchführung «{{ courseSessionName(item.course_session_id) }}» - Circle
|
{{ $t("a.Durchführung") }} «{{
|
||||||
«{{ circleMeta(item.circle_id)?.name }}»
|
courseSessionName(item.course_session_id)
|
||||||
|
}}» - Circle «{{ circleMeta(item.circle_id)?.name }}»
|
||||||
</div>
|
</div>
|
||||||
<div class="mt-4">
|
<div class="mt-4">
|
||||||
Abgabetermin:
|
{{ $t("a.Abgabetermin") }}:
|
||||||
{{
|
{{
|
||||||
getDateString(
|
getDateString(
|
||||||
dayjs((item as AssignmentStatisticsRecordType).deadline)
|
dayjs((item as AssignmentStatisticsRecordType).deadline)
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ const attendanceStats = (present: number, total: number) => {
|
||||||
<template>
|
<template>
|
||||||
<main v-if="statistics">
|
<main v-if="statistics">
|
||||||
<div class="mb-10 flex items-center justify-between">
|
<div class="mb-10 flex items-center justify-between">
|
||||||
<h3>Anwesenheit</h3>
|
<h3>{{ $t("Anwesenheit") }}</h3>
|
||||||
<ItDropdownSelect
|
<ItDropdownSelect
|
||||||
:model-value="dashboardStore.currentDashboardConfig"
|
:model-value="dashboardStore.currentDashboardConfig"
|
||||||
class="mt-4 w-full lg:mt-0 lg:w-96"
|
class="mt-4 w-full lg:mt-0 lg:w-96"
|
||||||
|
|
@ -44,18 +44,29 @@ const attendanceStats = (present: number, total: number) => {
|
||||||
<div class="flex justify-between">
|
<div class="flex justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h4 class="font-bold">
|
<h4 class="font-bold">
|
||||||
Präsenztag: Circle «{{ circleMeta(item.circle_id)?.name }}»
|
{{ $t("a.Präsenztag") }}: Circle «{{
|
||||||
|
circleMeta(item.circle_id)?.name
|
||||||
|
}}»
|
||||||
</h4>
|
</h4>
|
||||||
<div>Durchführung «{{ courseSessionName(item.course_session_id) }}»</div>
|
<div>
|
||||||
|
{{ $t("a.Durchfuehrung") }} «{{
|
||||||
|
courseSessionName(item.course_session_id)
|
||||||
|
}}»
|
||||||
|
</div>
|
||||||
<div class="mt-4">
|
<div class="mt-4">
|
||||||
Termin: {{ (item as PresenceRecordStatisticsType).due_date }}
|
{{ $t("a.Termin") }}:
|
||||||
|
{{ (item as PresenceRecordStatisticsType).due_date }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
{{ (item as PresenceRecordStatisticsType).participants_present }} von
|
{{
|
||||||
{{ (item as PresenceRecordStatisticsType).participants_total }}
|
$t("a.present von total Teilnehmenden anwesend", {
|
||||||
Teilnehmenden anwesend
|
present: (item as PresenceRecordStatisticsType)
|
||||||
|
.participants_present,
|
||||||
|
total: (item as PresenceRecordStatisticsType).participants_total,
|
||||||
|
})
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
<ItProgress
|
<ItProgress
|
||||||
:status-count="
|
:status-count="
|
||||||
|
|
|
||||||
|
|
@ -42,8 +42,9 @@ const { courseSessionName, circleMeta } = useCourseStatistics();
|
||||||
Feedback: Circle «{{ circleMeta(item.circle_id)?.name }}»
|
Feedback: Circle «{{ circleMeta(item.circle_id)?.name }}»
|
||||||
</h4>
|
</h4>
|
||||||
<div>
|
<div>
|
||||||
Durchführung «{{ courseSessionName(item.course_session_id) }}» -
|
{{ $t("a.Durchführung") }} «{{
|
||||||
Trainer: {{ circleMeta(item.circle_id)?.experts[0] }}
|
courseSessionName(item.course_session_id)
|
||||||
|
}}» - Trainer: {{ circleMeta(item.circle_id)?.experts[0] }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue