🌐 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

@ -15,27 +15,27 @@ const router = createRouter({
},
{
path: "/timetable",
name: "Timetable",
name: "title.timetable",
component: TimetableView,
},
{
path: "/substitutions",
name: "Substitutions",
name: "title.substitutions",
component: SubstitutionView,
},
{
path: "/history",
name: "History",
name: "title.history",
component: HistoryView,
},
{
path: "/settings",
name: "Settings",
name: "title.settings",
component: SettingsView,
},
{
path: "/login",
name: "Login",
name: "title.login",
component: LoginView,
},
],