🌐 Add Localization feature

This commit is contained in:
2022-08-21 16:57:06 +02:00
parent 710a07b04b
commit 59a2c0eacb
17 changed files with 301 additions and 123 deletions

View File

@@ -10,19 +10,19 @@ import { RouterLink } from "vue-router";
<div class="entry">
<RouterLink to="/timetable">
<CalendarIcon class="icon" />
<span class="title">Timetable</span>
<span class="title">{{ $t("title.timetable") }}</span>
</RouterLink>
</div>
<div class="entry">
<RouterLink to="/substitutions">
<BellIcon class="icon" />
<span class="title">Substitutions</span>
<span class="title">{{ $t("title.substitutions") }}</span>
</RouterLink>
</div>
<div class="entry">
<RouterLink to="/history">
<ClockIcon class="icon" />
<span class="title">History</span>
<span class="title">{{ $t("title.history") }}</span>
</RouterLink>
</div>
</div>