Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: little translations #335

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading