Skip to content

Commit

Permalink
fix: little translations
Browse files Browse the repository at this point in the history
  • Loading branch information
BramMeir committed Apr 18, 2024
1 parent 56c21f7 commit a57bd16
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions frontend/src/assets/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"courses": "My courses",
"projects": "Current projects",
"noProjects": "No projects available for this academic year.",
"noIncomingProjects": "No projects with a deadline within 7 days.",
"noCourses": "No courses available for this academic year.",
"select_course": "Select the course for which you want to create a project:",
"showPastProjects": "Projects with passed deadline"
Expand Down
6 changes: 4 additions & 2 deletions frontend/src/assets/lang/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"courses": "Mijn vakken",
"projects": "Lopende projecten",
"noProjects": "Geen projecten beschikbaar voor dit academiejaar.",
"noIncomingProjects": "Geen projecten met een deadline binnen de 7 dagen.",
"noCourses": "Geen vakken beschikbaar voor dit academiejaar.",
"select_course": "Selecteer het vak waarvoor je een project wil maken:",
"showPastProjects": "Projecten met verstreken deadline"
Expand Down Expand Up @@ -138,8 +139,9 @@
}
},
"components": {
"buttons": {
"academic_year": "Academiejaar {0}"
"button": {
"academic_year": "Academiejaar {0}",
"createProject": "Creëer nieuw project"
},
"card": {
"open": "Details",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/projects/ProjectList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const incomingProjects = computed<Project[] | null>(() => {
</template>
<template v-else>
<div class="col-12">
<p class="mt-0">{{ t('views.dashboard.noProjects') }}</p>
<p class="mt-0">{{ t('views.dashboard.noIncomingProjects') }}</p>
</div>
</template>
</template>
Expand Down

0 comments on commit a57bd16

Please sign in to comment.