Skip to content

Commit

Permalink
fix: replace één with een
Browse files Browse the repository at this point in the history
  • Loading branch information
EdoStorm96 committed Sep 4, 2024
1 parent 716cbbc commit 6ea6b68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion studies/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def clean(self):
# error msg to a built-in required error message.
if not "study_types" in cleaned_data:
error = forms.ValidationError(
_("Je dient minstens één van de opties te selecteren."), code="required"
_("Je dient minstens een van de opties te selecteren."), code="required"
)
self.errors["study_types"] = error

Expand Down
2 changes: 1 addition & 1 deletion tasks/templates/tasks/session_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h4 class="mt-2">
{% include "tasks/task_list.html" %}
</div>
{% empty %}
<div class="alert alert-info" role="alert">{% trans "Nog geen sessies. Tijd om er één aan te maken!" %}</div>
<div class="alert alert-info" role="alert">{% trans "Nog geen sessies. Tijd om er een aan te maken!" %}</div>
{% endfor %}
{% if can_edit_sessions %}
<div class="mt-3 mb-3">
Expand Down
2 changes: 1 addition & 1 deletion tasks/templates/tasks/task_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</table>
{% else %}
<div class="alert alert-info" role="alert">
{% trans "Deze sessie bevat nog geen taken. Tijd om er één aan te maken!" %}
{% trans "Deze sessie bevat nog geen taken. Tijd om er een aan te maken!" %}
</div>
{% endif %}
{% if can_edit_tasks %}
Expand Down

0 comments on commit 6ea6b68

Please sign in to comment.