Rename season UI language to years

This commit is contained in:
AzuTear
2026-06-17 13:45:06 +02:00
parent 33975a633c
commit 567f0e2ebf
9 changed files with 29 additions and 25 deletions
@@ -28,12 +28,12 @@ const currentSeason = computed(() => store.adminSeasonDetail)
<template>
<div class="flex flex-col gap-3 rounded-lg border border-violet-100 bg-white/80 px-4 py-3 lg:flex-row lg:items-center lg:justify-between">
<div class="flex flex-wrap items-center gap-2">
<p class="text-xs font-semibold uppercase tracking-[0.22em] text-violet-500">Season</p>
<p class="text-xs font-semibold uppercase tracking-[0.22em] text-violet-500">Jahr</p>
<span class="rounded-full border border-violet-100 bg-violet-50/70 px-3 py-1.5 text-xs font-semibold text-slate-600">
{{ currentSeason.currentPhase || 'Kein Status' }}
</span>
<span class="rounded-full border border-violet-100 bg-white px-3 py-1.5 text-xs font-semibold text-slate-600">
{{ currentSeason.isCurrent ? 'Public Season' : 'Nicht aktiv' }}
{{ currentSeason.isCurrent ? 'Public-Jahr' : 'Nicht aktiv' }}
</span>
</div>