diff --git a/frontend/src/i18n/locales/en.ts b/frontend/src/i18n/locales/en.ts index 21ce6a4f..651400b9 100644 --- a/frontend/src/i18n/locales/en.ts +++ b/frontend/src/i18n/locales/en.ts @@ -126,4 +126,10 @@ export default { all_students: "All students", all_students_course: "All students in course:", }, + about: { + about: "About this project", + p_1: "This project was made as part of the course", + p_2: "The source code is publicly available at", + developers: "Our developers", + }, }; diff --git a/frontend/src/i18n/locales/nl.ts b/frontend/src/i18n/locales/nl.ts index 9ff4509f..4de142fa 100644 --- a/frontend/src/i18n/locales/nl.ts +++ b/frontend/src/i18n/locales/nl.ts @@ -127,4 +127,10 @@ export default { all_students: "Alle studenten", all_students_course: "Alle studenten in vak:", }, + about: { + about: "Over dit project", + p_1: "Dit project is gemaakt in het kader van het vak", + p_2: "De broncode is publiek beschikbaar op", + developers: "Onze developers", + }, }; diff --git a/frontend/src/views/AboutView.vue b/frontend/src/views/AboutView.vue index 7afc61a6..d94b68ef 100644 --- a/frontend/src/views/AboutView.vue +++ b/frontend/src/views/AboutView.vue @@ -1,18 +1,20 @@