🌐 Add translation for configureTimetableGroup
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
import { computed } from "@vue/reactivity";
|
||||
import { ref, watch } from "vue";
|
||||
import router from "./router";
|
||||
import i18n from "./main";
|
||||
|
||||
export const lastRoute = ref();
|
||||
export const loading = ref(false);
|
||||
@ -85,7 +86,7 @@ export const parsedTimetable = computed(() => {
|
||||
if (!matchingLesson) {
|
||||
matchingLesson = {
|
||||
subject: lesson.map((e) => e.subject).join(" / "),
|
||||
teacher: "Please configure a timetable group in the settings",
|
||||
teacher: i18n.global.t("timetable.configureTimetableGroup"),
|
||||
length: lesson[0].length || 1,
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user