diff --git a/amelie/activities/templates/activity_list.html b/amelie/activities/templates/activity_list.html index cb1cc0c..f79b4b7 100644 --- a/amelie/activities/templates/activity_list.html +++ b/amelie/activities/templates/activity_list.html @@ -41,7 +41,6 @@

{% trans "Activities you don't want to miss" %}

{% if not only_open_enrollments or activity.enrollment_open %} - @@ -50,15 +49,21 @@

{% trans "Activities you don't want to miss" %}

{{ activity.begin|date:"d-b (D)" }} -
- - {{ activity.activity_label.name }} - -
-
- {{ activity.activity_label.name }} -
+
+
+ + {{ activity.activity_label.name }} + +
+
+ {{ activity.activity_label.name }} +
+
{% trans "Activities you don't want to miss" %} {% else %} -

{% trans 'There are no planned events. Maybe because it is holiday?' %}

+ {% if act_type %} +

{% blocktrans with type=act_type %}It looks like there are no events with label {{ type }}{% endblocktrans %}

+ {% else %} +

{% trans 'There are no planned events. Maybe because it is holiday?' %}

+ {% endif %} {% endif %} {% if request.person.current_committees|length > 0 or request.person.is_board %} diff --git a/amelie/activities/urls.py b/amelie/activities/urls.py index 893dd22..4718841 100644 --- a/amelie/activities/urls.py +++ b/amelie/activities/urls.py @@ -27,6 +27,7 @@ urlpatterns = [ # URLs that are not about a specific activity path('', views.activities, name='activities'), + path('', views.activities, name='activities_type'), path('old/', views.activities_old, name='activities_old'), # URLs about the photo gallery path('photos/', views.photos, name='photos'), diff --git a/amelie/activities/views.py b/amelie/activities/views.py index 4529ecd..007e9e1 100644 --- a/amelie/activities/views.py +++ b/amelie/activities/views.py @@ -114,11 +114,15 @@ def activity_ics(request, pk): return resp -def activities(request): +def activities(request, act_type=None): """ Gives an overview of all upcoming activities and recent past activities. """ activities = Event.objects.filter_public(request) + + if act_type: + activities = activities.filter(Q(activity__activity_label__name_en=act_type) | Q(activity__activity_label__name_nl=act_type)) + old_activities = list(activities.filter(end__lt=timezone.now()))[-10:] new_activities = list(activities.filter(end__gte=timezone.now())) diff --git a/amelie/calendar/models.py b/amelie/calendar/models.py index 9248779..dc3596e 100644 --- a/amelie/calendar/models.py +++ b/amelie/calendar/models.py @@ -195,7 +195,9 @@ def save(self, *args, **kwargs): def description_short(self): char_limit = 150 - total_string = f"{self.begin.strftime('%d/%m/%Y, %H:%M')} @{self.location} {self.promo_en}" + location_prefix = " @" if self.location is not "" else "" + activity_prefix = (self.as_leaf_class().activity_label.name_en + " - ") if self.as_leaf_class().activity_label else "" + total_string = f"{activity_prefix}{self.begin.strftime('%d/%m/%Y, %H:%M')}{location_prefix}{self.location} {self.promo_en}" if len(total_string) > char_limit: total_string = total_string[:char_limit] + '...' diff --git a/amelie/weekmail/templates/weekmail/weekmail_mail_html.mail b/amelie/weekmail/templates/weekmail/weekmail_mail_html.mail index 4350fb1..ca04c8b 100644 --- a/amelie/weekmail/templates/weekmail/weekmail_mail_html.mail +++ b/amelie/weekmail/templates/weekmail/weekmail_mail_html.mail @@ -169,4 +169,4 @@ - + \ No newline at end of file diff --git a/locale/nl/LC_MESSAGES/django.mo b/locale/nl/LC_MESSAGES/django.mo deleted file mode 100644 index e0ec4ff..0000000 Binary files a/locale/nl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/locale/nl/LC_MESSAGES/django.po b/locale/nl/LC_MESSAGES/django.po index 62eab73..06cf4ff 100644 --- a/locale/nl/LC_MESSAGES/django.po +++ b/locale/nl/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-18 22:41+0100\n" +"POT-Creation-Date: 2024-04-29 22:12+0200\n" "PO-Revision-Date: 2024-03-18 22:45+0018\n" "Last-Translator: Kevin Alberts <>\n" "Language: en\n" @@ -12,11 +12,44 @@ msgstr "" "Used command: ./manage.py makemessages -e py,html,txt,mail\n" "X-Translated-Using: django-rosetta 0.9.9\n" -#: amelie/about/models.py:9 amelie/activities/models.py:26 amelie/activities/models.py:464 amelie/activities/templates/activity_enrollment_overview.html:62 amelie/activities/templates/activity_enrollment_overview.html:180 amelie/activities/templates/activity_enrollment_print.html:29 amelie/claudia/templates/claudia/aliasgroup_list.html:21 amelie/claudia/templates/claudia/contact_list.html:20 amelie/claudia/templates/claudia/email_detail.html:16 amelie/claudia/templates/claudia/extragroup_list.html:21 amelie/claudia/templates/claudia/extraperson_list.html:20 amelie/claudia/templates/claudia/mapping_detail.html:18 amelie/claudia/templates/claudia/mapping_detail.html:84 amelie/claudia/templates/claudia/mapping_detail.html:139 amelie/claudia/templates/claudia/mapping_timeline.html:21 amelie/claudia/templates/claudia/shareddrive_list.html:21 amelie/claudia/templates/claudia/timeline_list.html:20 amelie/education/models.py:25 amelie/education/models.py:47 amelie/education/models.py:132 amelie/education/models.py:178 amelie/members/models.py:36 amelie/members/models.py:57 amelie/members/models.py:81 amelie/members/models.py:121 amelie/members/models.py:218 amelie/members/models.py:248 amelie/members/models.py:688 amelie/members/models.py:718 amelie/members/models.py:902 amelie/members/models.py:925 amelie/members/templates/committee_members.html:7 amelie/members/templates/includes/registration/personal_details.html:14 amelie/members/templates/includes/registration/personal_details_employee.html:14 amelie/members/templates/registration_check.html:34 amelie/personal_tab/models.py:253 amelie/personal_tab/models.py:281 amelie/personal_tab/models.py:319 amelie/personal_tab/statistics.py:266 amelie/personal_tab/templates/exports/screen.html:67 amelie/room_duty/models.py:17 amelie/tools/pdf.py:98 +#: amelie/about/models.py:9 amelie/activities/models.py:26 +#: amelie/activities/models.py:464 +#: amelie/activities/templates/activity_enrollment_overview.html:62 +#: amelie/activities/templates/activity_enrollment_overview.html:180 +#: amelie/activities/templates/activity_enrollment_print.html:29 +#: amelie/claudia/templates/claudia/aliasgroup_list.html:21 +#: amelie/claudia/templates/claudia/contact_list.html:20 +#: amelie/claudia/templates/claudia/email_detail.html:16 +#: amelie/claudia/templates/claudia/extragroup_list.html:21 +#: amelie/claudia/templates/claudia/extraperson_list.html:20 +#: amelie/claudia/templates/claudia/mapping_detail.html:18 +#: amelie/claudia/templates/claudia/mapping_detail.html:84 +#: amelie/claudia/templates/claudia/mapping_detail.html:139 +#: amelie/claudia/templates/claudia/mapping_timeline.html:21 +#: amelie/claudia/templates/claudia/shareddrive_list.html:21 +#: amelie/claudia/templates/claudia/timeline_list.html:20 +#: amelie/education/models.py:25 amelie/education/models.py:47 +#: amelie/education/models.py:132 amelie/education/models.py:178 +#: amelie/members/models.py:36 amelie/members/models.py:57 +#: amelie/members/models.py:81 amelie/members/models.py:121 +#: amelie/members/models.py:218 amelie/members/models.py:248 +#: amelie/members/models.py:688 amelie/members/models.py:718 +#: amelie/members/models.py:902 amelie/members/models.py:925 +#: amelie/members/templates/committee_members.html:7 +#: amelie/members/templates/includes/registration/personal_details.html:14 +#: amelie/members/templates/includes/registration/personal_details_employee.html:14 +#: amelie/members/templates/registration_check.html:34 +#: amelie/personal_tab/models.py:253 amelie/personal_tab/models.py:281 +#: amelie/personal_tab/models.py:319 amelie/personal_tab/statistics.py:266 +#: amelie/personal_tab/templates/exports/screen.html:67 +#: amelie/room_duty/models.py:17 amelie/tools/pdf.py:98 msgid "Name" msgstr "Naam" -#: amelie/about/models.py:10 amelie/activities/models.py:25 amelie/education/models.py:26 amelie/education/models.py:48 amelie/members/models.py:82 amelie/members/models.py:689 amelie/personal_tab/models.py:282 amelie/personal_tab/models.py:320 +#: amelie/about/models.py:10 amelie/activities/models.py:25 +#: amelie/education/models.py:26 amelie/education/models.py:48 +#: amelie/members/models.py:82 amelie/members/models.py:689 +#: amelie/personal_tab/models.py:282 amelie/personal_tab/models.py:320 msgid "Name (en)" msgstr "Naam (en)" @@ -24,7 +57,9 @@ msgstr "Naam (en)" msgid "Educational page?" msgstr "Onderwijspagina?" -#: amelie/about/models.py:14 amelie/education/models.py:51 amelie/news/templates/news_item_form.html:60 amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:46 +#: amelie/about/models.py:14 amelie/education/models.py:51 +#: amelie/news/templates/news_item_form.html:60 +#: amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:46 msgid "Content" msgstr "Inhoud" @@ -32,7 +67,8 @@ msgstr "Inhoud" msgid "Content (en)" msgstr "Inhoud (en)" -#: amelie/about/models.py:20 amelie/education/models.py:58 amelie/statistics/models.py:8 +#: amelie/about/models.py:20 amelie/education/models.py:58 +#: amelie/statistics/models.py:8 msgid "Page" msgstr "Pagina" @@ -40,11 +76,15 @@ msgstr "Pagina" msgid "Pages" msgstr "Pagina's" -#: amelie/about/templates/page.html:16 amelie/education/templates/awards.html:15 amelie/education/templates/educational_bouquet.html:58 amelie/education/templates/overview.html:58 +#: amelie/about/templates/page.html:16 +#: amelie/education/templates/awards.html:15 +#: amelie/education/templates/educational_bouquet.html:58 +#: amelie/education/templates/overview.html:58 msgid "Edit Page" msgstr "Wijzig pagina" -#: amelie/about/templates/page.html:17 amelie/education/templates/overview.html:62 +#: amelie/about/templates/page.html:17 +#: amelie/education/templates/overview.html:62 msgid "Delete page" msgstr "Verwijder pagina" @@ -60,19 +100,25 @@ msgstr "Weet je zeker dat je deze pagina wilt verwijderen?" msgid "Remove page" msgstr "Pagina verwijderen" -#: amelie/about/templates/page_form.html:6 amelie/about/templates/page_form.html:16 amelie/education/templates/educationpage_new.html:4 amelie/education/templates/educationpage_new.html:9 +#: amelie/about/templates/page_form.html:6 +#: amelie/about/templates/page_form.html:16 +#: amelie/education/templates/educationpage_new.html:4 +#: amelie/education/templates/educationpage_new.html:9 msgid "New page" msgstr "Nieuwe pagina" -#: amelie/about/templates/page_form.html:8 amelie/about/templates/page_form.html:18 +#: amelie/about/templates/page_form.html:8 +#: amelie/about/templates/page_form.html:18 msgid "Edit new" msgstr "Nieuwe bewerken" -#: amelie/about/templates/page_form.html:29 amelie/education/templates/educationpage_new.html:18 +#: amelie/about/templates/page_form.html:29 +#: amelie/education/templates/educationpage_new.html:18 msgid "Create page" msgstr "Pagina aanmaken" -#: amelie/about/templates/page_form.html:31 amelie/education/templates/educationpage_edit.html:18 +#: amelie/about/templates/page_form.html:31 +#: amelie/education/templates/educationpage_edit.html:18 msgid "Save page" msgstr "Pagina opslaan" @@ -105,7 +151,10 @@ msgstr "IA Activiteiten" msgid "Inter-Actief's activities in the coming weeks" msgstr "De activiteiten van I.C.T.S.V. Inter-Actief in de komende tijd" -#: amelie/activities/forms.py:28 amelie/activities/templates/activity_enrollment_overview.html:192 amelie/activities/templates/activity_enrollment_print.html:36 amelie/calendar/models.py:30 +#: amelie/activities/forms.py:28 +#: amelie/activities/templates/activity_enrollment_overview.html:192 +#: amelie/activities/templates/activity_enrollment_print.html:36 +#: amelie/calendar/models.py:30 msgid "Method of payment" msgstr "Betaalwijze" @@ -121,7 +170,39 @@ msgstr "Wachtlijstactie" msgid "Skip waiting list and enroll immediately" msgstr "Sla de wachtlijst over en schrijf direct in" -#: amelie/activities/forms.py:51 amelie/activities/models.py:465 amelie/activities/templates/activity_enrollment_overview.html:136 amelie/activities/templates/activity_enrollment_print.html:69 amelie/members/models.py:691 amelie/members/models.py:885 amelie/personal_tab/forms.py:32 amelie/personal_tab/models.py:122 amelie/personal_tab/models.py:286 amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:32 amelie/personal_tab/templates/cookie_corner_authorization_view.html:120 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:70 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:95 amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:17 amelie/personal_tab/templates/cookie_corner_process_batch.html:52 amelie/personal_tab/templates/cookie_corner_statistics.html:193 amelie/personal_tab/templates/cookie_corner_statistics.html:248 amelie/personal_tab/templates/cookie_corner_statistics.html:291 amelie/personal_tab/templates/cookie_corner_statistics.html:327 amelie/personal_tab/templates/cookie_corner_statistics.html:381 amelie/personal_tab/templates/cookie_corner_statistics.html:420 amelie/personal_tab/templates/exports/screen.html:69 amelie/personal_tab/templates/info/debt_collection_instructions.html:19 amelie/personal_tab/templates/info/transaction_information.html:11 amelie/personal_tab/templates/lists/activity_transactions.html:14 amelie/personal_tab/templates/lists/alexia_transactions.html:12 amelie/personal_tab/templates/lists/cookie_corner_transactions.html:14 amelie/personal_tab/templates/lists/custom_transactions.html:12 amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:12 amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:11 amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:12 amelie/personal_tab/templates/lists/transactions.html:12 amelie/personal_tab/templates/price_list.html:16 amelie/personal_tab/templates/wrapped.html:63 amelie/personal_tab/templates/wrapped.html:128 amelie/personal_tab/templates/wrapped.html:169 +#: amelie/activities/forms.py:51 amelie/activities/models.py:465 +#: amelie/activities/templates/activity_enrollment_overview.html:136 +#: amelie/activities/templates/activity_enrollment_print.html:69 +#: amelie/members/models.py:691 amelie/members/models.py:885 +#: amelie/personal_tab/forms.py:32 amelie/personal_tab/models.py:122 +#: amelie/personal_tab/models.py:286 +#: amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:32 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:120 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:70 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:95 +#: amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:17 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:52 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:193 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:248 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:291 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:327 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:381 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:420 +#: amelie/personal_tab/templates/exports/screen.html:69 +#: amelie/personal_tab/templates/info/debt_collection_instructions.html:19 +#: amelie/personal_tab/templates/info/transaction_information.html:11 +#: amelie/personal_tab/templates/lists/activity_transactions.html:14 +#: amelie/personal_tab/templates/lists/alexia_transactions.html:12 +#: amelie/personal_tab/templates/lists/cookie_corner_transactions.html:14 +#: amelie/personal_tab/templates/lists/custom_transactions.html:12 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:12 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:11 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:12 +#: amelie/personal_tab/templates/lists/transactions.html:12 +#: amelie/personal_tab/templates/price_list.html:16 +#: amelie/personal_tab/templates/wrapped.html:63 +#: amelie/personal_tab/templates/wrapped.html:128 +#: amelie/personal_tab/templates/wrapped.html:169 msgid "Price" msgstr "Prijs" @@ -158,27 +239,59 @@ msgstr "Sorry, maar er zijn niet genoeg plekken over!" msgid "Photographer" msgstr "Fotograaf" -#: amelie/activities/forms.py:236 amelie/members/models.py:302 amelie/members/models.py:814 amelie/members/models.py:1120 amelie/members/templates/members/datablock_html.mail:4 amelie/members/templates/members/datablock_plain.mail:3 +#: amelie/activities/forms.py:236 amelie/members/models.py:302 +#: amelie/members/models.py:814 amelie/members/models.py:1120 +#: amelie/members/templates/members/datablock_html.mail:4 +#: amelie/members/templates/members/datablock_plain.mail:3 msgid "First name" msgstr "Voornaam" -#: amelie/activities/forms.py:237 amelie/activities/forms.py:239 amelie/activities/forms.py:241 +#: amelie/activities/forms.py:237 amelie/activities/forms.py:239 +#: amelie/activities/forms.py:241 msgid "Use this field if a non-member is the owner of these pictures" msgstr "Gebruik dit veld als een extern iemand deze foto's heeft gemaakt." -#: amelie/activities/forms.py:238 amelie/members/models.py:303 amelie/members/models.py:815 amelie/members/models.py:1121 amelie/members/templates/members/datablock_html.mail:5 amelie/members/templates/members/datablock_plain.mail:4 +#: amelie/activities/forms.py:238 amelie/members/models.py:303 +#: amelie/members/models.py:815 amelie/members/models.py:1121 +#: amelie/members/templates/members/datablock_html.mail:5 +#: amelie/members/templates/members/datablock_plain.mail:4 msgid "Last name pre-fix" msgstr "Tussenvoegsels" -#: amelie/activities/forms.py:240 amelie/members/models.py:304 amelie/members/models.py:816 amelie/members/models.py:1122 amelie/members/templates/members/datablock_html.mail:6 amelie/members/templates/members/datablock_plain.mail:5 +#: amelie/activities/forms.py:240 amelie/members/models.py:304 +#: amelie/members/models.py:816 amelie/members/models.py:1122 +#: amelie/members/templates/members/datablock_html.mail:6 +#: amelie/members/templates/members/datablock_plain.mail:5 msgid "Last name" msgstr "Achternaam" -#: amelie/activities/forms.py:242 amelie/activities/models.py:82 amelie/activities/models.py:83 amelie/activities/templates/activity_list.html:4 amelie/activities/templates/activity_list.html:35 amelie/activities/templates/activity_list.html:106 amelie/activities/templates/activity_old.html:4 amelie/activities/templates/activity_old.html:34 amelie/calendar/models.py:27 amelie/calendar/models.py:127 amelie/calendar/models.py:128 amelie/companies/templates/companies/company_event_list.html:4 amelie/companies/templates/companies/company_event_old.html:34 amelie/personal_tab/models.py:179 amelie/personal_tab/statistics.py:285 amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:14 amelie/personal_tab/templates/cookie_corner_statistics.html:182 amelie/personal_tab/templates/cookie_corner_statistics.html:190 amelie/personal_tab/templates/cookie_corner_transactions_new.html:42 amelie/personal_tab/templates/lists/activity_transactions.html:11 amelie/personal_tab/templates/lists/transactions_totals.html:22 amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:16 templates/basis.html:141 templates/basis.html:228 +#: amelie/activities/forms.py:242 amelie/activities/models.py:82 +#: amelie/activities/models.py:83 +#: amelie/activities/templates/activity_list.html:4 +#: amelie/activities/templates/activity_list.html:35 +#: amelie/activities/templates/activity_list.html:115 +#: amelie/activities/templates/activity_old.html:4 +#: amelie/activities/templates/activity_old.html:34 +#: amelie/calendar/models.py:27 amelie/calendar/models.py:127 +#: amelie/calendar/models.py:128 +#: amelie/companies/templates/companies/company_event_list.html:4 +#: amelie/companies/templates/companies/company_event_old.html:34 +#: amelie/personal_tab/models.py:179 amelie/personal_tab/statistics.py:285 +#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:14 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:182 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:190 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:42 +#: amelie/personal_tab/templates/lists/activity_transactions.html:11 +#: amelie/personal_tab/templates/lists/transactions_totals.html:22 +#: amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:16 +#: templates/basis.html:141 templates/basis.html:228 msgid "Activities" msgstr "Activiteiten" -#: amelie/activities/forms.py:243 amelie/calendar/models.py:110 amelie/education/models.py:257 amelie/education/models.py:285 amelie/education/templates/education_event_overview.html:18 amelie/oauth/forms.py:11 amelie/videos/models.py:19 +#: amelie/activities/forms.py:243 amelie/calendar/models.py:110 +#: amelie/education/models.py:257 amelie/education/models.py:285 +#: amelie/education/templates/education_event_overview.html:18 +#: amelie/oauth/forms.py:11 amelie/videos/models.py:19 msgid "Public" msgstr "Publiek" @@ -186,7 +299,20 @@ msgstr "Publiek" msgid "Photos are also available without logging in" msgstr "Foto's zijn ook beschikbaar zonder in te loggen" -#: amelie/activities/forms.py:245 amelie/activities/templates/activity_list.html:107 amelie/activities/templates/activity_old.html:35 amelie/activities/templates/gallery.html:4 amelie/activities/templates/gallery.html:9 amelie/activities/templates/gallery_overview.html:4 amelie/activities/templates/gallery_overview.html:34 amelie/activities/templates/gallery_overview.html:201 amelie/activities/templates/gallery_photo.html:4 amelie/activities/templates/gallery_photo.html:13 amelie/activities/templates/includes/activity_list_photos.html:4 amelie/activities/templates/photo_upload.html:26 amelie/companies/templates/companies/company_event_old.html:35 amelie/statistics/templates/statistics.html:48 +#: amelie/activities/forms.py:245 +#: amelie/activities/templates/activity_list.html:116 +#: amelie/activities/templates/activity_old.html:35 +#: amelie/activities/templates/gallery.html:4 +#: amelie/activities/templates/gallery.html:9 +#: amelie/activities/templates/gallery_overview.html:4 +#: amelie/activities/templates/gallery_overview.html:34 +#: amelie/activities/templates/gallery_overview.html:201 +#: amelie/activities/templates/gallery_photo.html:4 +#: amelie/activities/templates/gallery_photo.html:13 +#: amelie/activities/templates/includes/activity_list_photos.html:4 +#: amelie/activities/templates/photo_upload.html:26 +#: amelie/companies/templates/companies/company_event_old.html:35 +#: amelie/statistics/templates/statistics.html:48 msgid "Photos" msgstr "Foto's" @@ -195,11 +321,14 @@ msgstr "Foto's" msgid "File extension “%(extension)s” is not allowed. Allowed extensions are: %(allowed_extensions)s." msgstr "Bestandsextensie \"%(extension)s\" is niet toegestaan. Toegestane bestandsextensies zijn: %(allowed_extensions)s." -#: amelie/activities/forms.py:294 amelie/activities/templates/activities/eventdesk/message_list.html:70 amelie/activities/templates/activities/eventdesk/message_list.html:102 +#: amelie/activities/forms.py:294 +#: amelie/activities/templates/activities/eventdesk/message_list.html:70 +#: amelie/activities/templates/activities/eventdesk/message_list.html:102 msgid "Activity" msgstr "Activiteit" -#: amelie/activities/mail.py:62 amelie/activities/mail.py:64 amelie/activities/mail.py:127 amelie/activities/mail.py:129 +#: amelie/activities/mail.py:62 amelie/activities/mail.py:64 +#: amelie/activities/mail.py:127 amelie/activities/mail.py:129 msgid "Inter-Activity" msgstr "Inter-Activiteit" @@ -219,7 +348,9 @@ msgstr "Uitleg over icoon (en)" msgid "Explanation on icon" msgstr "Uitleg over icoon" -#: amelie/activities/models.py:31 amelie/companies/templates/companies/company_statistics.html:75 amelie/companies/templates/companies/company_statistics.html:105 +#: amelie/activities/models.py:31 +#: amelie/companies/templates/companies/company_statistics.html:75 +#: amelie/companies/templates/companies/company_statistics.html:105 msgid "Active?" msgstr "Actief?" @@ -263,7 +394,18 @@ msgstr "Afbeelding van 175 bij 275 pixels." msgid "Facebook event id, numerical value in the facebook event url." msgstr "Facebook event id, numerieke waarde in de facebook event url." -#: amelie/activities/models.py:219 amelie/activities/templates/activities/enrollmentoption_list.html:41 amelie/activities/templates/activities/enrollmentoption_list.html:87 amelie/activities/templates/activities/enrollmentoption_list.html:135 amelie/activities/templates/activities/enrollmentoption_list.html:177 amelie/members/templates/includes/query/query_push.html:51 amelie/news/templates/news_item_form.html:17 amelie/publications/templates/publications/publication_form.html:31 amelie/room_duty/models.py:38 amelie/room_duty/models.py:163 amelie/videos/templates/videos/ia_video_form.html:54 amelie/videos/templates/videos/yt_video_form.html:54 amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:22 +#: amelie/activities/models.py:219 +#: amelie/activities/templates/activities/enrollmentoption_list.html:41 +#: amelie/activities/templates/activities/enrollmentoption_list.html:87 +#: amelie/activities/templates/activities/enrollmentoption_list.html:135 +#: amelie/activities/templates/activities/enrollmentoption_list.html:177 +#: amelie/members/templates/includes/query/query_push.html:51 +#: amelie/news/templates/news_item_form.html:17 +#: amelie/publications/templates/publications/publication_form.html:31 +#: amelie/room_duty/models.py:38 amelie/room_duty/models.py:163 +#: amelie/videos/templates/videos/ia_video_form.html:54 +#: amelie/videos/templates/videos/yt_video_form.html:54 +#: amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:22 msgid "Title" msgstr "Titel" @@ -271,15 +413,21 @@ msgstr "Titel" msgid "Enrollment option" msgstr "Inschrijfoptie" -#: amelie/activities/models.py:226 amelie/activities/templates/activities/enrollmentoption_list.html:5 amelie/activities/templates/activity_enrollment_form.html:47 amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:39 +#: amelie/activities/models.py:226 +#: amelie/activities/templates/activities/enrollmentoption_list.html:5 +#: amelie/activities/templates/activity_enrollment_form.html:47 +#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:39 msgid "Enrollment options" msgstr "Inschrijfopties" -#: amelie/activities/models.py:267 amelie/activities/models.py:477 amelie/activities/templates/activities/enrollmentoption_list.html:136 amelie/activities/templates/activities/enrollmentoption_list.html:178 +#: amelie/activities/models.py:267 amelie/activities/models.py:477 +#: amelie/activities/templates/activities/enrollmentoption_list.html:136 +#: amelie/activities/templates/activities/enrollmentoption_list.html:178 msgid "Required" msgstr "Verplicht" -#: amelie/activities/models.py:280 amelie/activities/models.py:306 amelie/activities/models.py:343 +#: amelie/activities/models.py:280 amelie/activities/models.py:306 +#: amelie/activities/models.py:343 msgid "Price extra" msgstr "Prijs extra" @@ -287,7 +435,8 @@ msgstr "Prijs extra" msgid "Maximum limit of selections" msgstr "Limiet van selecties" -#: amelie/activities/models.py:281 amelie/activities/models.py:307 amelie/activities/models.py:308 +#: amelie/activities/models.py:281 amelie/activities/models.py:307 +#: amelie/activities/models.py:308 msgid "Set as 0 for unlimited" msgstr "Houd op 0 voor onbeperkt" @@ -303,7 +452,9 @@ msgstr "Inschrijfoptieantwoord" msgid "Anwers to enrollment option" msgstr "Inschrijfoptieantwoorden" -#: amelie/activities/models.py:402 amelie/activities/models.py:415 amelie/activities/models.py:430 amelie/activities/models.py:442 amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:47 +#: amelie/activities/models.py:402 amelie/activities/models.py:415 +#: amelie/activities/models.py:430 amelie/activities/models.py:442 +#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:47 msgid "Respons" msgstr "Antwoord" @@ -311,11 +462,39 @@ msgstr "Antwoord" msgid "A response is required" msgstr "Antwoord is verplicht" -#: amelie/activities/models.py:420 amelie/activities/templates/activities/eventdesk/message_list.html:212 amelie/activities/templates/activity_confirm_cancellation.html:21 amelie/activities/templates/activity_confirm_delete.html:21 amelie/activities/templates/activity_confirm_unenrollment.html:19 amelie/activities/templates/forms/enrollmentoption_checkbox_answer.html:18 amelie/activities/templates/photo_upload_clear_confirm.html:25 amelie/calendar/templates/confirm_payment.html:19 amelie/claudia/templates/claudia/add_to_mapping_confirm.html:21 amelie/claudia/templates/claudia/confirm_add.html:21 amelie/claudia/templates/claudia/confirm_delete.html:21 amelie/companies/templates/companies/company_confirm_delete.html:19 amelie/education/templates/education_event_delete.html:19 amelie/members/templates/members/datablock_html.mail:26 amelie/members/templates/preregistration_delete_confirm.html:17 amelie/weekmail/templates/weekmail/weekmailnewsarticle_confirm_delete.html:16 +#: amelie/activities/models.py:420 +#: amelie/activities/templates/activities/eventdesk/message_list.html:212 +#: amelie/activities/templates/activity_confirm_cancellation.html:21 +#: amelie/activities/templates/activity_confirm_delete.html:21 +#: amelie/activities/templates/activity_confirm_unenrollment.html:19 +#: amelie/activities/templates/forms/enrollmentoption_checkbox_answer.html:18 +#: amelie/activities/templates/photo_upload_clear_confirm.html:25 +#: amelie/calendar/templates/confirm_payment.html:19 +#: amelie/claudia/templates/claudia/add_to_mapping_confirm.html:21 +#: amelie/claudia/templates/claudia/confirm_add.html:21 +#: amelie/claudia/templates/claudia/confirm_delete.html:21 +#: amelie/companies/templates/companies/company_confirm_delete.html:19 +#: amelie/education/templates/education_event_delete.html:19 +#: amelie/members/templates/members/datablock_html.mail:26 +#: amelie/members/templates/preregistration_delete_confirm.html:17 +#: amelie/weekmail/templates/weekmail/weekmailnewsarticle_confirm_delete.html:16 msgid "Yes" msgstr "Ja" -#: amelie/activities/models.py:420 amelie/activities/templates/activities/eventdesk/message_list.html:215 amelie/activities/templates/activity_confirm_cancellation.html:22 amelie/activities/templates/activity_confirm_delete.html:22 amelie/activities/templates/activity_confirm_unenrollment.html:20 amelie/activities/templates/photo_upload_clear_confirm.html:26 amelie/calendar/templates/confirm_payment.html:20 amelie/claudia/templates/claudia/add_to_mapping_confirm.html:22 amelie/claudia/templates/claudia/confirm_add.html:22 amelie/claudia/templates/claudia/confirm_delete.html:22 amelie/companies/templates/companies/company_confirm_delete.html:20 amelie/education/templates/education_event_delete.html:20 amelie/members/templates/members/datablock_html.mail:26 amelie/members/templates/preregistration_delete_confirm.html:18 +#: amelie/activities/models.py:420 +#: amelie/activities/templates/activities/eventdesk/message_list.html:215 +#: amelie/activities/templates/activity_confirm_cancellation.html:22 +#: amelie/activities/templates/activity_confirm_delete.html:22 +#: amelie/activities/templates/activity_confirm_unenrollment.html:20 +#: amelie/activities/templates/photo_upload_clear_confirm.html:26 +#: amelie/calendar/templates/confirm_payment.html:20 +#: amelie/claudia/templates/claudia/add_to_mapping_confirm.html:22 +#: amelie/claudia/templates/claudia/confirm_add.html:22 +#: amelie/claudia/templates/claudia/confirm_delete.html:22 +#: amelie/companies/templates/companies/company_confirm_delete.html:20 +#: amelie/education/templates/education_event_delete.html:20 +#: amelie/members/templates/members/datablock_html.mail:26 +#: amelie/members/templates/preregistration_delete_confirm.html:18 msgid "No" msgstr "Nee" @@ -327,11 +506,13 @@ msgstr "(geen)" msgid "Restaurant" msgstr "Restaurant" -#: amelie/activities/models.py:466 amelie/personal_tab/models.py:287 amelie/personal_tab/models.py:321 amelie/room_duty/models.py:242 +#: amelie/activities/models.py:466 amelie/personal_tab/models.py:287 +#: amelie/personal_tab/models.py:321 amelie/room_duty/models.py:242 msgid "Available" msgstr "Beschikbaar" -#: amelie/activities/models.py:467 amelie/activities/templates/forms/enrollmentoption_foodquestion_answer.html:35 +#: amelie/activities/models.py:467 +#: amelie/activities/templates/forms/enrollmentoption_foodquestion_answer.html:35 msgid "Allergens" msgstr "Allergiën" @@ -347,15 +528,22 @@ msgstr "Inschrijfoptievraag" msgid "Dish cost" msgstr "Prijs voor gerecht" -#: amelie/activities/models.py:537 amelie/activities/templates/activities/eventdesk/message_list.html:51 amelie/personal_tab/templates/info/rfid_cards.html:15 +#: amelie/activities/models.py:537 +#: amelie/activities/templates/activities/eventdesk/message_list.html:51 +#: amelie/personal_tab/templates/info/rfid_cards.html:15 msgid "Registered" msgstr "Aangemeld" -#: amelie/activities/models.py:538 amelie/activities/templates/activities/eventdesk/message_list.html:55 +#: amelie/activities/models.py:538 +#: amelie/activities/templates/activities/eventdesk/message_list.html:55 msgid "Accepted" msgstr "Geaccepteerd" -#: amelie/activities/models.py:539 amelie/activities/views.py:1450 amelie/activities/views.py:1456 amelie/activities/views.py:1462 amelie/members/models.py:287 amelie/personal_tab/templates/info/rfid_cards.html:45 templates/profile_overview.html:213 +#: amelie/activities/models.py:539 amelie/activities/views.py:1454 +#: amelie/activities/views.py:1460 amelie/activities/views.py:1466 +#: amelie/members/models.py:287 +#: amelie/personal_tab/templates/info/rfid_cards.html:45 +#: templates/profile_overview.html:213 msgid "Unknown" msgstr "Onbekend" @@ -404,17 +592,34 @@ msgstr "n.v.t." msgid "{0:.1f}% certain" msgstr "{0:.1f}% zeker" -#: amelie/activities/templates/activities/activity_cancelled.mail:3 amelie/activities/templates/activities/activity_cancelled_from_waiting_list.mail:3 +#: amelie/activities/templates/activities/activity_cancelled.mail:3 +#: amelie/activities/templates/activities/activity_cancelled_from_waiting_list.mail:3 msgid "Cancellation of " msgstr "Annulering van " -#: amelie/activities/templates/activities/activity_cancelled.mail:4 amelie/activities/templates/activities/activity_cancelled_from_waiting_list.mail:4 amelie/activities/templates/activities/activity_enrolled.mail:5 amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:5 amelie/activities/templates/activities/activity_enrolled_on_waiting_list.mail:5 amelie/claudia/templates/accounts/password_reset.mail:5 amelie/claudia/templates/claudia/account_created.mail:5 amelie/data_export/templates/data_export/mails/export_complete.mail:5 amelie/education/templates/education/complaint_closed.mail:10 amelie/members/templates/members/datamail_html.mail:2 amelie/members/templates/members/preregistration_welcome.mail:6 amelie/members/templates/members/verification_reminder.mail:6 amelie/members/templates/members/yeartransfer_ended.mail:6 amelie/members/templates/members/yeartransfer_ended_eniac.mail:6 amelie/members/templates/members/yeartransfer_ended_final.mail:6 amelie/members/templates/members/yeartransfer_prolonged.mail:6 amelie/tools/templates/send_oauth_link_code.mail:6 amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:1 +#: amelie/activities/templates/activities/activity_cancelled.mail:4 +#: amelie/activities/templates/activities/activity_cancelled_from_waiting_list.mail:4 +#: amelie/activities/templates/activities/activity_enrolled.mail:5 +#: amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:5 +#: amelie/activities/templates/activities/activity_enrolled_on_waiting_list.mail:5 +#: amelie/claudia/templates/accounts/password_reset.mail:5 +#: amelie/claudia/templates/claudia/account_created.mail:5 +#: amelie/data_export/templates/data_export/mails/export_complete.mail:5 +#: amelie/education/templates/education/complaint_closed.mail:10 +#: amelie/members/templates/members/datamail_html.mail:2 +#: amelie/members/templates/members/preregistration_welcome.mail:6 +#: amelie/members/templates/members/verification_reminder.mail:6 +#: amelie/members/templates/members/yeartransfer_ended.mail:6 +#: amelie/members/templates/members/yeartransfer_ended_eniac.mail:6 +#: amelie/members/templates/members/yeartransfer_ended_final.mail:6 +#: amelie/members/templates/members/yeartransfer_prolonged.mail:6 +#: amelie/tools/templates/send_oauth_link_code.mail:6 +#: amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:1 msgid "Dear" msgstr "Beste" #: amelie/activities/templates/activities/activity_cancelled.mail:5 #, python-format -#| msgid "You receive this email because you have been enrolled for %(summary)s. This activity starts at %(begindate)s hour on %(begintime)s." msgid "" "\n" "You receive this email because you were enrolled for %(summary)s. This activity has been cancelled.\n" @@ -427,7 +632,10 @@ msgstr "" msgid "The total costs were %(participation_costs)s euro. Your payment method was %(paymentmethod)s. These costs will be refunded on your personal tab in the case of a mandate or you can collect your cash payment at the association room in the case of a cash payment." msgstr "De totale kosten waren %(participation_costs)s euro. Jouw betaalmethode was %(paymentmethod)s. Deze kosten krijg je teruggestort op je streeplijst als je via een machtiging hebt betaald. Als je contant betaald hebt, dan kan je bij de vereningskamer je geld ophalen." -#: amelie/activities/templates/activities/activity_cancelled.mail:9 amelie/activities/templates/activities/activity_cancelled_from_waiting_list.mail:7 amelie/activities/templates/activities/activity_cancelled_treasurer.mail:13 amelie/activities/templates/activities/activity_enrolled_on_waiting_list.mail:15 +#: amelie/activities/templates/activities/activity_cancelled.mail:9 +#: amelie/activities/templates/activities/activity_cancelled_from_waiting_list.mail:7 +#: amelie/activities/templates/activities/activity_cancelled_treasurer.mail:13 +#: amelie/activities/templates/activities/activity_enrolled_on_waiting_list.mail:15 msgid "" "\n" "Kind regards," @@ -437,7 +645,6 @@ msgstr "" #: amelie/activities/templates/activities/activity_cancelled_from_waiting_list.mail:5 #, python-format -#| msgid "You receive this email because you have been enrolled on the waiting list for %(summary)s. This activity starts at %(begindate)s hour on %(begintime)s." msgid "" "\n" "You receive this email because you were on the waiting list for %(summary)s. This activity has been cancelled.\n" @@ -470,34 +677,42 @@ msgstr "Bevestiging voor inschrijving activiteit" msgid "You receive this email because you have been enrolled for %(summary)s. This activity starts at %(begindate)s hour on %(begintime)s." msgstr "Je ontvangt deze e-mail omdat je bent ingeschreven voor %(summary)s. Deze activiteit begint op %(begindate)s om %(begintime)s uur." -#: amelie/activities/templates/activities/activity_enrolled.mail:9 amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:9 +#: amelie/activities/templates/activities/activity_enrolled.mail:9 +#: amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:9 #, python-format msgid "The total costs are %(costs)s euro. Payment method: %(paymentmethod)s." msgstr "De kosten zijn totaal %(costs)s euro. Betaalwijze: %(paymentmethod)s." -#: amelie/activities/templates/activities/activity_enrolled.mail:11 amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:11 +#: amelie/activities/templates/activities/activity_enrolled.mail:11 +#: amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:11 msgid "For this activity, the following enrollment options exist:" msgstr "Bij deze activiteit zijn de volgende inschrijfopties ingevuld:" -#: amelie/activities/templates/activities/activity_enrolled.mail:21 amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:21 +#: amelie/activities/templates/activities/activity_enrolled.mail:21 +#: amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:21 #, python-format msgid "It's possible to edit your enrollment or unenroll until %(enrollment_end)s." msgstr "Tot %(enrollment_end)s is het mogelijk om je inschrijving te wijzigen of te annuleren." -#: amelie/activities/templates/activities/activity_enrolled.mail:23 amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:23 +#: amelie/activities/templates/activities/activity_enrolled.mail:23 +#: amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:23 msgid "For this activity, you can only unenroll yourself by contacting the board." msgstr "Voor deze activiteit kun je jezelf alleen uitschrijven indien je contact met het bestuur opneemt." -#: amelie/activities/templates/activities/activity_enrolled.mail:25 amelie/activities/templates/activities/activity_enrolled_on_waiting_list.mail:11 +#: amelie/activities/templates/activities/activity_enrolled.mail:25 +#: amelie/activities/templates/activities/activity_enrolled_on_waiting_list.mail:11 #, python-format msgid "You have been enrolled by %(enrolled_by)s. In case you did not approve this, get in touch with the board." msgstr "Je bent ingeschreven door %(enrolled_by)s. Indien je hier geen toestemming voor gegeven hebt, neem dan contact op met het bestuur." -#: amelie/activities/templates/activities/activity_enrolled.mail:27 amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:25 amelie/activities/templates/activities/activity_enrolled_on_waiting_list.mail:13 +#: amelie/activities/templates/activities/activity_enrolled.mail:27 +#: amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:25 +#: amelie/activities/templates/activities/activity_enrolled_on_waiting_list.mail:13 msgid "An invite is attached. You can import this in your agenda. In case you no longer want to receive invites through e-mail, edit your preferences on the website." msgstr "In de bijlage is een invite toegevoegd. Deze is te importeren in je agenda. Wil je geen invite meer ontvangen in de e-mail, wijzig dan je voorkeuren op de website." -#: amelie/activities/templates/activities/activity_enrolled.mail:29 amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:27 +#: amelie/activities/templates/activities/activity_enrolled.mail:29 +#: amelie/activities/templates/activities/activity_enrolled_from_waiting_list.mail:27 msgid "" "See you then!\n" "\n" @@ -541,11 +756,20 @@ msgstr "er is nog geen plek beschikbaar" msgid "If a spot becomes available, you will be enrolled automatically and receive another email." msgstr "Als een plek beschikbaar komt, zal je automatisch ingeschreven worden en een mail ontvangen." -#: amelie/activities/templates/activities/activity_form.html:6 amelie/activities/templates/activities/activity_form.html:17 amelie/activities/templates/activity_list.html:87 amelie/companies/templates/companies/company_event_form.html:6 amelie/companies/templates/companies/company_event_form.html:17 amelie/companies/templates/companies/company_event_list.html:59 amelie/education/templates/education_event_form.html:21 amelie/education/templates/education_event_overview.html:51 +#: amelie/activities/templates/activities/activity_form.html:6 +#: amelie/activities/templates/activities/activity_form.html:17 +#: amelie/activities/templates/activity_list.html:96 +#: amelie/companies/templates/companies/company_event_form.html:6 +#: amelie/companies/templates/companies/company_event_form.html:17 +#: amelie/companies/templates/companies/company_event_list.html:59 +#: amelie/education/templates/education_event_form.html:21 +#: amelie/education/templates/education_event_overview.html:51 msgid "Add event" msgstr "Activiteit toevoegen" -#: amelie/activities/templates/activities/activity_form.html:8 amelie/activities/templates/activities/activity_form.html:17 amelie/companies/templates/companies/company_event_form.html:8 +#: amelie/activities/templates/activities/activity_form.html:8 +#: amelie/activities/templates/activities/activity_form.html:17 +#: amelie/companies/templates/companies/company_event_form.html:8 msgid "Edit this event" msgstr "Activiteit wijzigen" @@ -579,7 +803,48 @@ msgstr "" "\n" "Als je deze nieuwe activiteit opslaat, zal deze direct worden aangekondigd op onze Discord-server en op ons IRC-kanaal. Kijk alsjeblieft nog een keer of alle details kloppen en dat je in ieder geval een korte samenvatting van de activiteit hebt ingevuld, en niet iets als Meer informatie volgt...." -#: amelie/activities/templates/activities/activity_form.html:99 amelie/activities/templates/activities/enrollmentoption_form.html:35 amelie/activities/templates/activities/eventdesk/match.html:86 amelie/claudia/templates/accounts/mailing_alias.html:21 amelie/claudia/templates/claudia/aliasgroup_form.html:18 amelie/claudia/templates/claudia/contact_form.html:18 amelie/claudia/templates/claudia/extragroup_form.html:18 amelie/claudia/templates/claudia/extraperson_form.html:18 amelie/claudia/templates/claudia/extrapersonalalias_form.html:18 amelie/claudia/templates/claudia/shareddrive_form.html:18 amelie/companies/templates/companies/company_event_form.html:107 amelie/education/templates/complaint_new.html:132 amelie/education/templates/course_new.html:41 amelie/education/templates/education_event_form.html:70 amelie/education/templates/module_new.html:34 amelie/members/templates/committee_edit_data.html:11 amelie/members/templates/committee_edit_members.html:76 amelie/members/templates/committee_edit_single_member.html:69 amelie/members/templates/person_edit_data.html:20 amelie/members/templates/person_edit_employee.html:16 amelie/members/templates/person_edit_functions.html:60 amelie/members/templates/person_edit_preferences.html:20 amelie/members/templates/person_edit_study.html:51 amelie/members/templates/person_end_mandate.html:14 amelie/members/templates/person_end_membership.html:19 amelie/personal_tab/templates/cookie_corner_authorization_amendment.html:20 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_reversal.html:19 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:23 amelie/personal_tab/templates/cookie_corner_process_batch.html:37 amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:60 amelie/room_duty/templates/room_duty/pool/form.html:18 amelie/room_duty/templates/room_duty/table/change.html:15 amelie/room_duty/templates/room_duty/table/change.html:26 amelie/room_duty/templates/room_duty/table/fill.html:56 amelie/room_duty/templates/room_duty/table/form.html:57 amelie/room_duty/templates/room_duty/table/overview.html:148 amelie/room_duty/templates/room_duty/table/room_duty_add.html:15 amelie/room_duty/templates/room_duty/template/add.html:18 amelie/room_duty/templates/room_duty/template/change.html:15 amelie/room_duty/templates/room_duty/template/change.html:26 amelie/room_duty/templates/room_duty/template/room_duty_add.html:15 templates/profile_edit.html:96 templates/profile_edit.html:104 +#: amelie/activities/templates/activities/activity_form.html:99 +#: amelie/activities/templates/activities/enrollmentoption_form.html:35 +#: amelie/activities/templates/activities/eventdesk/match.html:86 +#: amelie/claudia/templates/accounts/mailing_alias.html:21 +#: amelie/claudia/templates/claudia/aliasgroup_form.html:18 +#: amelie/claudia/templates/claudia/contact_form.html:18 +#: amelie/claudia/templates/claudia/extragroup_form.html:18 +#: amelie/claudia/templates/claudia/extraperson_form.html:18 +#: amelie/claudia/templates/claudia/extrapersonalalias_form.html:18 +#: amelie/claudia/templates/claudia/shareddrive_form.html:18 +#: amelie/companies/templates/companies/company_event_form.html:107 +#: amelie/education/templates/complaint_new.html:132 +#: amelie/education/templates/course_new.html:41 +#: amelie/education/templates/education_event_form.html:70 +#: amelie/education/templates/module_new.html:34 +#: amelie/members/templates/committee_edit_data.html:11 +#: amelie/members/templates/committee_edit_members.html:76 +#: amelie/members/templates/committee_edit_single_member.html:69 +#: amelie/members/templates/person_edit_data.html:20 +#: amelie/members/templates/person_edit_employee.html:16 +#: amelie/members/templates/person_edit_functions.html:60 +#: amelie/members/templates/person_edit_preferences.html:20 +#: amelie/members/templates/person_edit_study.html:51 +#: amelie/members/templates/person_end_mandate.html:14 +#: amelie/members/templates/person_end_membership.html:19 +#: amelie/personal_tab/templates/cookie_corner_authorization_amendment.html:20 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_reversal.html:19 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:23 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:37 +#: amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:60 +#: amelie/room_duty/templates/room_duty/pool/form.html:18 +#: amelie/room_duty/templates/room_duty/table/change.html:15 +#: amelie/room_duty/templates/room_duty/table/change.html:26 +#: amelie/room_duty/templates/room_duty/table/fill.html:56 +#: amelie/room_duty/templates/room_duty/table/form.html:57 +#: amelie/room_duty/templates/room_duty/table/overview.html:148 +#: amelie/room_duty/templates/room_duty/table/room_duty_add.html:15 +#: amelie/room_duty/templates/room_duty/template/add.html:18 +#: amelie/room_duty/templates/room_duty/template/change.html:15 +#: amelie/room_duty/templates/room_duty/template/change.html:26 +#: amelie/room_duty/templates/room_duty/template/room_duty_add.html:15 +#: templates/profile_edit.html:96 templates/profile_edit.html:104 msgid "Save" msgstr "Opslaan" @@ -587,11 +852,50 @@ msgstr "Opslaan" msgid "Save and add enrollment options" msgstr "Opslaan en inschrijfopties toevoegen" -#: amelie/activities/templates/activities/activity_form.html:104 amelie/activities/templates/activities/activity_form.html:107 amelie/activities/templates/activities/enrollmentoption_confirm_delete.html:21 amelie/activities/templates/activity_enrollment_form.html:107 amelie/claudia/templates/accounts/mailing_alias.html:18 amelie/claudia/templates/claudia/extrapersonalalias_delete.html:21 amelie/companies/templates/companies/company_event_form.html:111 amelie/companies/templates/companies/company_event_form.html:113 amelie/education/templates/education_event_form.html:74 amelie/education/templates/education_event_form.html:76 amelie/members/templates/committee_edit_data.html:8 amelie/members/templates/committee_edit_members.html:73 amelie/members/templates/committee_edit_single_member.html:66 amelie/members/templates/members/payment_confirm_delete.html:21 amelie/members/templates/person_activate_mandate.html:19 amelie/members/templates/person_edit_data.html:17 amelie/members/templates/person_edit_employee.html:9 amelie/members/templates/person_edit_functions.html:57 amelie/members/templates/person_edit_preferences.html:17 amelie/members/templates/person_edit_study.html:48 amelie/members/templates/person_edit_studyperiod.html:12 amelie/members/templates/person_end_mandate.html:11 amelie/members/templates/person_end_membership.html:16 amelie/members/templates/person_new_mandate.html:11 amelie/members/templates/person_new_membership.html:11 amelie/members/templates/person_payment.html:15 amelie/personal_tab/templates/cookie_corner/transaction_delete.html:16 amelie/personal_tab/templates/pos/register_external_card.html:40 amelie/personal_tab/templates/pos/scan_external_card.html:27 amelie/room_duty/templates/room_duty/balcony_duty/delete.html:17 amelie/room_duty/templates/room_duty/pool/delete.html:38 amelie/room_duty/templates/room_duty/pool/form.html:17 amelie/room_duty/templates/room_duty/table/delete.html:18 amelie/room_duty/templates/room_duty/table/form.html:56 amelie/room_duty/templates/room_duty/table/room_duty_delete.html:26 amelie/room_duty/templates/room_duty/template/add.html:17 amelie/room_duty/templates/room_duty/template/delete.html:18 templates/oauth2_provider/authorize.html:35 +#: amelie/activities/templates/activities/activity_form.html:104 +#: amelie/activities/templates/activities/activity_form.html:107 +#: amelie/activities/templates/activities/enrollmentoption_confirm_delete.html:21 +#: amelie/activities/templates/activity_enrollment_form.html:107 +#: amelie/claudia/templates/accounts/mailing_alias.html:18 +#: amelie/claudia/templates/claudia/extrapersonalalias_delete.html:21 +#: amelie/companies/templates/companies/company_event_form.html:111 +#: amelie/companies/templates/companies/company_event_form.html:113 +#: amelie/education/templates/education_event_form.html:74 +#: amelie/education/templates/education_event_form.html:76 +#: amelie/members/templates/committee_edit_data.html:8 +#: amelie/members/templates/committee_edit_members.html:73 +#: amelie/members/templates/committee_edit_single_member.html:66 +#: amelie/members/templates/members/payment_confirm_delete.html:21 +#: amelie/members/templates/person_activate_mandate.html:19 +#: amelie/members/templates/person_edit_data.html:17 +#: amelie/members/templates/person_edit_employee.html:9 +#: amelie/members/templates/person_edit_functions.html:57 +#: amelie/members/templates/person_edit_preferences.html:17 +#: amelie/members/templates/person_edit_study.html:48 +#: amelie/members/templates/person_edit_studyperiod.html:12 +#: amelie/members/templates/person_end_mandate.html:11 +#: amelie/members/templates/person_end_membership.html:16 +#: amelie/members/templates/person_new_mandate.html:11 +#: amelie/members/templates/person_new_membership.html:11 +#: amelie/members/templates/person_payment.html:15 +#: amelie/personal_tab/templates/cookie_corner/transaction_delete.html:16 +#: amelie/personal_tab/templates/pos/register_external_card.html:40 +#: amelie/personal_tab/templates/pos/scan_external_card.html:27 +#: amelie/room_duty/templates/room_duty/balcony_duty/delete.html:17 +#: amelie/room_duty/templates/room_duty/pool/delete.html:38 +#: amelie/room_duty/templates/room_duty/pool/form.html:17 +#: amelie/room_duty/templates/room_duty/table/delete.html:18 +#: amelie/room_duty/templates/room_duty/table/form.html:56 +#: amelie/room_duty/templates/room_duty/table/room_duty_delete.html:26 +#: amelie/room_duty/templates/room_duty/template/add.html:17 +#: amelie/room_duty/templates/room_duty/template/delete.html:18 +#: templates/oauth2_provider/authorize.html:35 msgid "Cancel" msgstr "Annuleer" -#: amelie/activities/templates/activities/activity_form.html:118 amelie/activities/templates/activity_list.html:36 amelie/personal_tab/models.py:181 +#: amelie/activities/templates/activities/activity_form.html:118 +#: amelie/activities/templates/activity_list.html:36 +#: amelie/personal_tab/models.py:181 msgid "Enrollment" msgstr "Inschrijving" @@ -613,7 +917,40 @@ msgstr "" "\n" "Weet je zeker dat je inschrijfoptie %(object)s voor %(activity)s wilt verwijderen?" -#: amelie/activities/templates/activities/enrollmentoption_confirm_delete.html:19 amelie/activities/templates/activities/enrollmentoption_list.html:47 amelie/activities/templates/activities/enrollmentoption_list.html:58 amelie/activities/templates/activities/enrollmentoption_list.html:94 amelie/activities/templates/activities/enrollmentoption_list.html:106 amelie/activities/templates/activities/enrollmentoption_list.html:139 amelie/activities/templates/activities/enrollmentoption_list.html:148 amelie/activities/templates/activities/enrollmentoption_list.html:181 amelie/activities/templates/activities/enrollmentoption_list.html:190 amelie/activities/templates/activity.html:52 amelie/claudia/templates/claudia/extrapersonalalias_delete.html:19 amelie/companies/templates/companies/company_event.html:20 amelie/education/templates/education_event.html:19 amelie/members/templates/members/payment_confirm_delete.html:19 amelie/members/templates/person_edit_employee.html:13 amelie/personal_tab/templates/cookie_corner/transaction_delete.html:21 amelie/personal_tab/templates/info/rfid_cards.html:63 amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:26 amelie/room_duty/templates/room_duty/balcony_duty/delete.html:22 amelie/room_duty/templates/room_duty/pool/delete.html:42 amelie/room_duty/templates/room_duty/pool/list.html:24 amelie/room_duty/templates/room_duty/pool/persons_change.html:20 amelie/room_duty/templates/room_duty/table/change.html:41 amelie/room_duty/templates/room_duty/table/change_persons.html:20 amelie/room_duty/templates/room_duty/table/delete.html:22 amelie/room_duty/templates/room_duty/table/list.html:24 amelie/room_duty/templates/room_duty/table/overview.html:89 amelie/room_duty/templates/room_duty/table/room_duty_delete.html:30 amelie/room_duty/templates/room_duty/template/change.html:41 amelie/room_duty/templates/room_duty/template/delete.html:22 amelie/room_duty/templates/room_duty/template/list.html:23 amelie/weekmail/templates/weekmail/weekmail_wizard.html:83 templates/oauth2_provider/authorized-token-delete.html:13 templates/oauth2_provider/includes/user_oauth_table.html:9 +#: amelie/activities/templates/activities/enrollmentoption_confirm_delete.html:19 +#: amelie/activities/templates/activities/enrollmentoption_list.html:47 +#: amelie/activities/templates/activities/enrollmentoption_list.html:58 +#: amelie/activities/templates/activities/enrollmentoption_list.html:94 +#: amelie/activities/templates/activities/enrollmentoption_list.html:106 +#: amelie/activities/templates/activities/enrollmentoption_list.html:139 +#: amelie/activities/templates/activities/enrollmentoption_list.html:148 +#: amelie/activities/templates/activities/enrollmentoption_list.html:181 +#: amelie/activities/templates/activities/enrollmentoption_list.html:190 +#: amelie/activities/templates/activity.html:52 +#: amelie/claudia/templates/claudia/extrapersonalalias_delete.html:19 +#: amelie/companies/templates/companies/company_event.html:20 +#: amelie/education/templates/education_event.html:19 +#: amelie/members/templates/members/payment_confirm_delete.html:19 +#: amelie/members/templates/person_edit_employee.html:13 +#: amelie/personal_tab/templates/cookie_corner/transaction_delete.html:21 +#: amelie/personal_tab/templates/info/rfid_cards.html:63 +#: amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:26 +#: amelie/room_duty/templates/room_duty/balcony_duty/delete.html:22 +#: amelie/room_duty/templates/room_duty/pool/delete.html:42 +#: amelie/room_duty/templates/room_duty/pool/list.html:24 +#: amelie/room_duty/templates/room_duty/pool/persons_change.html:20 +#: amelie/room_duty/templates/room_duty/table/change.html:41 +#: amelie/room_duty/templates/room_duty/table/change_persons.html:20 +#: amelie/room_duty/templates/room_duty/table/delete.html:22 +#: amelie/room_duty/templates/room_duty/table/list.html:24 +#: amelie/room_duty/templates/room_duty/table/overview.html:89 +#: amelie/room_duty/templates/room_duty/table/room_duty_delete.html:30 +#: amelie/room_duty/templates/room_duty/template/change.html:41 +#: amelie/room_duty/templates/room_duty/template/delete.html:22 +#: amelie/room_duty/templates/room_duty/template/list.html:23 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:83 +#: templates/oauth2_provider/authorized-token-delete.html:13 +#: templates/oauth2_provider/includes/user_oauth_table.html:9 msgid "Delete" msgstr "Verwijder" @@ -668,27 +1005,65 @@ msgstr "" msgid "Checkboxes" msgstr "Checkboxen" -#: amelie/activities/templates/activities/enrollmentoption_list.html:42 amelie/activities/templates/activities/enrollmentoption_list.html:88 +#: amelie/activities/templates/activities/enrollmentoption_list.html:42 +#: amelie/activities/templates/activities/enrollmentoption_list.html:88 msgid "Extra price" msgstr "Extra prijs" -#: amelie/activities/templates/activities/enrollmentoption_list.html:43 amelie/activities/templates/activities/enrollmentoption_list.html:89 +#: amelie/activities/templates/activities/enrollmentoption_list.html:43 +#: amelie/activities/templates/activities/enrollmentoption_list.html:89 msgid "Limit" msgstr "Limiet" -#: amelie/activities/templates/activities/enrollmentoption_list.html:44 amelie/activities/templates/activities/enrollmentoption_list.html:90 +#: amelie/activities/templates/activities/enrollmentoption_list.html:44 +#: amelie/activities/templates/activities/enrollmentoption_list.html:90 msgid "Spots left" msgstr "Plekken over" -#: amelie/activities/templates/activities/enrollmentoption_list.html:45 amelie/activities/templates/activities/enrollmentoption_list.html:56 amelie/activities/templates/activities/enrollmentoption_list.html:92 amelie/activities/templates/activities/enrollmentoption_list.html:104 amelie/activities/templates/activities/enrollmentoption_list.html:137 amelie/activities/templates/activities/enrollmentoption_list.html:146 amelie/activities/templates/activities/enrollmentoption_list.html:179 amelie/activities/templates/activities/enrollmentoption_list.html:188 amelie/activities/templates/activity.html:35 amelie/companies/templates/companies/company_event.html:19 amelie/companies/templates/companies/includes/company_grid_item.html:20 amelie/education/templates/complaint.html:21 amelie/education/templates/education_event.html:18 amelie/members/templates/includes/committee_data.html:50 amelie/members/templates/includes/person_data_table.html:189 amelie/members/templates/person_employee.html:14 amelie/members/templates/person_functions.html:10 amelie/members/templates/person_functions.html:18 amelie/members/templates/person_preferences.html:18 amelie/members/templates/person_study.html:38 amelie/personal_tab/templates/cookie_corner/transaction_form.html:32 amelie/personal_tab/templates/info/account_information.html:62 amelie/room_duty/templates/room_duty/table/list.html:21 amelie/room_duty/templates/room_duty/table/overview.html:87 amelie/room_duty/templates/room_duty/template/list.html:20 amelie/weekmail/templates/weekmail/weekmail_list.html:20 amelie/weekmail/templates/weekmail/weekmail_list.html:29 amelie/weekmail/templates/weekmail/weekmail_wizard.html:85 amelie/weekmail/templates/weekmail/weekmail_wizard.html:142 amelie/weekmail/templates/weekmail/weekmail_wizard.html:226 templates/profile_overview.html:17 +#: amelie/activities/templates/activities/enrollmentoption_list.html:45 +#: amelie/activities/templates/activities/enrollmentoption_list.html:56 +#: amelie/activities/templates/activities/enrollmentoption_list.html:92 +#: amelie/activities/templates/activities/enrollmentoption_list.html:104 +#: amelie/activities/templates/activities/enrollmentoption_list.html:137 +#: amelie/activities/templates/activities/enrollmentoption_list.html:146 +#: amelie/activities/templates/activities/enrollmentoption_list.html:179 +#: amelie/activities/templates/activities/enrollmentoption_list.html:188 +#: amelie/activities/templates/activity.html:35 +#: amelie/companies/templates/companies/company_event.html:19 +#: amelie/companies/templates/companies/includes/company_grid_item.html:20 +#: amelie/education/templates/complaint.html:21 +#: amelie/education/templates/education_event.html:18 +#: amelie/members/templates/includes/committee_data.html:50 +#: amelie/members/templates/includes/person_data_table.html:189 +#: amelie/members/templates/person_employee.html:14 +#: amelie/members/templates/person_functions.html:10 +#: amelie/members/templates/person_functions.html:18 +#: amelie/members/templates/person_preferences.html:18 +#: amelie/members/templates/person_study.html:38 +#: amelie/personal_tab/templates/cookie_corner/transaction_form.html:32 +#: amelie/personal_tab/templates/info/account_information.html:62 +#: amelie/room_duty/templates/room_duty/table/list.html:21 +#: amelie/room_duty/templates/room_duty/table/overview.html:87 +#: amelie/room_duty/templates/room_duty/template/list.html:20 +#: amelie/weekmail/templates/weekmail/weekmail_list.html:20 +#: amelie/weekmail/templates/weekmail/weekmail_list.html:29 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:85 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:142 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:226 +#: templates/profile_overview.html:17 msgid "Edit" msgstr "Wijzig" -#: amelie/activities/templates/activities/enrollmentoption_list.html:54 amelie/activities/templates/activities/enrollmentoption_list.html:101 amelie/personal_tab/templates/pos/home.html:76 +#: amelie/activities/templates/activities/enrollmentoption_list.html:54 +#: amelie/activities/templates/activities/enrollmentoption_list.html:101 +#: amelie/personal_tab/templates/pos/home.html:76 msgid "Unlimited" msgstr "Ongelimiteerd" -#: amelie/activities/templates/activities/enrollmentoption_list.html:67 amelie/activities/templates/activities/enrollmentoption_list.html:115 amelie/activities/templates/activities/enrollmentoption_list.html:157 amelie/activities/templates/activities/enrollmentoption_list.html:199 +#: amelie/activities/templates/activities/enrollmentoption_list.html:67 +#: amelie/activities/templates/activities/enrollmentoption_list.html:115 +#: amelie/activities/templates/activities/enrollmentoption_list.html:157 +#: amelie/activities/templates/activities/enrollmentoption_list.html:199 msgid "None" msgstr "Geen" @@ -724,35 +1099,80 @@ msgstr "Eten" msgid "Add food" msgstr "Eten toevoegen" -#: amelie/activities/templates/activities/eventdesk/detail.html:5 amelie/activities/templates/activities/eventdesk/match.html:5 +#: amelie/activities/templates/activities/eventdesk/detail.html:5 +#: amelie/activities/templates/activities/eventdesk/match.html:5 msgid "Event Desk message detail" msgstr "Evenementenbureau Berichtdetails" -#: amelie/activities/templates/activities/eventdesk/detail.html:12 amelie/activities/templates/activities/eventdesk/match.html:12 +#: amelie/activities/templates/activities/eventdesk/detail.html:12 +#: amelie/activities/templates/activities/eventdesk/match.html:12 msgid "Metadata" msgstr "Metadata" -#: amelie/activities/templates/activities/eventdesk/detail.html:17 amelie/activities/templates/activities/eventdesk/match.html:17 amelie/activities/templates/activity_list.html:33 amelie/activities/templates/activity_list.html:105 amelie/activities/templates/activity_old.html:33 amelie/companies/templates/companies/company_event_list.html:16 amelie/companies/templates/companies/company_event_list.html:73 amelie/companies/templates/companies/company_event_old.html:33 amelie/companies/templates/companies/company_statistics.html:137 amelie/education/templates/education_event_overview.html:15 amelie/education/templates/education_event_overview.html:65 amelie/members/models.py:883 amelie/members/templates/statistics/overview.html:15 amelie/personal_tab/forms.py:16 amelie/personal_tab/forms.py:24 amelie/personal_tab/forms.py:75 amelie/personal_tab/models.py:121 amelie/personal_tab/templates/cookie_corner_authorization_view.html:66 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:109 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:141 amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:15 amelie/personal_tab/templates/cookie_corner_statistics.html:188 amelie/personal_tab/templates/cookie_corner_statistics.html:242 amelie/personal_tab/templates/cookie_corner_statistics.html:323 amelie/personal_tab/templates/info/debt_collection_instructions.html:17 amelie/personal_tab/templates/info/transaction_information.html:3 amelie/personal_tab/templates/lists/alexia_transactions.html:8 amelie/personal_tab/templates/lists/cookie_corner_transactions.html:8 amelie/personal_tab/templates/lists/custom_transactions.html:8 amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:8 amelie/personal_tab/templates/lists/transactions.html:8 amelie/personal_tab/templates/wrapped.html:168 +#: amelie/activities/templates/activities/eventdesk/detail.html:17 +#: amelie/activities/templates/activities/eventdesk/match.html:17 +#: amelie/activities/templates/activity_list.html:33 +#: amelie/activities/templates/activity_list.html:114 +#: amelie/activities/templates/activity_old.html:33 +#: amelie/companies/templates/companies/company_event_list.html:16 +#: amelie/companies/templates/companies/company_event_list.html:73 +#: amelie/companies/templates/companies/company_event_old.html:33 +#: amelie/companies/templates/companies/company_statistics.html:137 +#: amelie/education/templates/education_event_overview.html:15 +#: amelie/education/templates/education_event_overview.html:65 +#: amelie/members/models.py:883 +#: amelie/members/templates/statistics/overview.html:15 +#: amelie/personal_tab/forms.py:16 amelie/personal_tab/forms.py:24 +#: amelie/personal_tab/forms.py:75 amelie/personal_tab/models.py:121 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:66 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:109 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:141 +#: amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:15 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:188 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:242 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:323 +#: amelie/personal_tab/templates/info/debt_collection_instructions.html:17 +#: amelie/personal_tab/templates/info/transaction_information.html:3 +#: amelie/personal_tab/templates/lists/alexia_transactions.html:8 +#: amelie/personal_tab/templates/lists/cookie_corner_transactions.html:8 +#: amelie/personal_tab/templates/lists/custom_transactions.html:8 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:8 +#: amelie/personal_tab/templates/lists/transactions.html:8 +#: amelie/personal_tab/templates/wrapped.html:168 msgid "Date" msgstr "Datum" -#: amelie/activities/templates/activities/eventdesk/detail.html:21 amelie/activities/templates/activities/eventdesk/history.html:60 amelie/activities/templates/activities/eventdesk/match.html:21 amelie/activities/templates/activities/eventdesk/message_list.html:150 amelie/activities/templates/activities/eventdesk/message_list.html:191 +#: amelie/activities/templates/activities/eventdesk/detail.html:21 +#: amelie/activities/templates/activities/eventdesk/history.html:60 +#: amelie/activities/templates/activities/eventdesk/match.html:21 +#: amelie/activities/templates/activities/eventdesk/message_list.html:150 +#: amelie/activities/templates/activities/eventdesk/message_list.html:191 msgid "Requester" msgstr "Aanvrager" -#: amelie/activities/templates/activities/eventdesk/detail.html:25 amelie/activities/templates/activities/eventdesk/history.html:61 amelie/activities/templates/activities/eventdesk/match.html:25 amelie/activities/templates/activities/eventdesk/message_list.html:151 amelie/activities/templates/activities/eventdesk/message_list.html:192 +#: amelie/activities/templates/activities/eventdesk/detail.html:25 +#: amelie/activities/templates/activities/eventdesk/history.html:61 +#: amelie/activities/templates/activities/eventdesk/match.html:25 +#: amelie/activities/templates/activities/eventdesk/message_list.html:151 +#: amelie/activities/templates/activities/eventdesk/message_list.html:192 msgid "Event name" msgstr "Naam evenement" -#: amelie/activities/templates/activities/eventdesk/detail.html:29 amelie/activities/templates/activities/eventdesk/history.html:62 amelie/activities/templates/activities/eventdesk/match.html:29 +#: amelie/activities/templates/activities/eventdesk/detail.html:29 +#: amelie/activities/templates/activities/eventdesk/history.html:62 +#: amelie/activities/templates/activities/eventdesk/match.html:29 msgid "Event start" msgstr "Begintijd evenement" -#: amelie/activities/templates/activities/eventdesk/detail.html:33 amelie/activities/templates/activities/eventdesk/history.html:63 amelie/activities/templates/activities/eventdesk/match.html:33 +#: amelie/activities/templates/activities/eventdesk/detail.html:33 +#: amelie/activities/templates/activities/eventdesk/history.html:63 +#: amelie/activities/templates/activities/eventdesk/match.html:33 msgid "Event end" msgstr "Eindtijd evenement" -#: amelie/activities/templates/activities/eventdesk/detail.html:37 amelie/activities/templates/activities/eventdesk/history.html:64 amelie/activities/templates/activities/eventdesk/match.html:37 +#: amelie/activities/templates/activities/eventdesk/detail.html:37 +#: amelie/activities/templates/activities/eventdesk/history.html:64 +#: amelie/activities/templates/activities/eventdesk/match.html:37 msgid "Event location" msgstr "Locatie evenement" @@ -760,19 +1180,23 @@ msgstr "Locatie evenement" msgid "Activity link" msgstr "Activiteitenkoppeling" -#: amelie/activities/templates/activities/eventdesk/detail.html:51 amelie/activities/templates/activities/eventdesk/match.html:51 +#: amelie/activities/templates/activities/eventdesk/detail.html:51 +#: amelie/activities/templates/activities/eventdesk/match.html:51 msgid "Matching certainty" msgstr "Zekerheidspercentage" -#: amelie/activities/templates/activities/eventdesk/detail.html:57 amelie/activities/templates/activities/eventdesk/match.html:55 +#: amelie/activities/templates/activities/eventdesk/detail.html:57 +#: amelie/activities/templates/activities/eventdesk/match.html:55 msgid "New state (as of this e-mail)" msgstr "Nieuwe status (vanaf deze e-mail)" -#: amelie/activities/templates/activities/eventdesk/detail.html:64 amelie/activities/templates/activities/eventdesk/match.html:62 +#: amelie/activities/templates/activities/eventdesk/detail.html:64 +#: amelie/activities/templates/activities/eventdesk/match.html:62 msgid "Go back to message list" msgstr "Terug naar berichtenlijst" -#: amelie/activities/templates/activities/eventdesk/detail.html:66 amelie/activities/templates/activities/eventdesk/match.html:64 +#: amelie/activities/templates/activities/eventdesk/detail.html:66 +#: amelie/activities/templates/activities/eventdesk/match.html:64 msgid "All messages for the linked event" msgstr "Alle berichten voor het gekoppelde evenement" @@ -788,11 +1212,14 @@ msgstr "Activiteitenkoppeling verwijderen" msgid "Link to activity" msgstr "Koppel aan activiteit" -#: amelie/activities/templates/activities/eventdesk/detail.html:82 amelie/members/templates/includes/query/query_push.html:74 amelie/members/templates/message.html:4 +#: amelie/activities/templates/activities/eventdesk/detail.html:82 +#: amelie/members/templates/includes/query/query_push.html:74 +#: amelie/members/templates/message.html:4 msgid "Message" msgstr "Bericht" -#: amelie/activities/templates/activities/eventdesk/detail.html:87 amelie/companies/forms.py:17 +#: amelie/activities/templates/activities/eventdesk/detail.html:87 +#: amelie/companies/forms.py:17 msgid "From" msgstr "Van" @@ -800,7 +1227,9 @@ msgstr "Van" msgid "To" msgstr "Naar" -#: amelie/activities/templates/activities/eventdesk/detail.html:93 amelie/education/forms.py:53 amelie/education/forms.py:54 amelie/education/models.py:251 amelie/education/models.py:263 +#: amelie/activities/templates/activities/eventdesk/detail.html:93 +#: amelie/education/forms.py:53 amelie/education/forms.py:54 +#: amelie/education/models.py:251 amelie/education/models.py:263 msgid "Subject" msgstr "Onderwerp" @@ -818,35 +1247,68 @@ msgstr "" msgid "Activity information" msgstr "Activiteitsinformatie" -#: amelie/activities/templates/activities/eventdesk/history.html:18 amelie/activities/templates/activity.html:72 amelie/companies/templates/companies/company_event.html:34 amelie/education/templates/education_event.html:33 +#: amelie/activities/templates/activities/eventdesk/history.html:18 +#: amelie/activities/templates/activity.html:72 +#: amelie/companies/templates/companies/company_event.html:34 +#: amelie/education/templates/education_event.html:33 msgid "Who" msgstr "Wie" -#: amelie/activities/templates/activities/eventdesk/history.html:21 amelie/activities/templates/activity.html:75 amelie/companies/templates/companies/company_event.html:43 amelie/education/templates/education_event.html:38 +#: amelie/activities/templates/activities/eventdesk/history.html:21 +#: amelie/activities/templates/activity.html:75 +#: amelie/companies/templates/companies/company_event.html:43 +#: amelie/education/templates/education_event.html:38 msgid "What" msgstr "Wat" -#: amelie/activities/templates/activities/eventdesk/history.html:24 amelie/activities/templates/activity.html:78 amelie/companies/templates/companies/company_event.html:46 amelie/education/templates/education_event.html:41 amelie/weekmail/templates/weekmail/weekmail_wizard.html:178 amelie/weekmail/templates/weekmail/weekmail_wizard.html:206 +#: amelie/activities/templates/activities/eventdesk/history.html:24 +#: amelie/activities/templates/activity.html:78 +#: amelie/companies/templates/companies/company_event.html:46 +#: amelie/education/templates/education_event.html:41 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:178 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:206 msgid "Where" msgstr "Waar" -#: amelie/activities/templates/activities/eventdesk/history.html:27 amelie/activities/templates/activity.html:81 amelie/companies/templates/companies/company_event.html:49 amelie/education/templates/education_event.html:44 +#: amelie/activities/templates/activities/eventdesk/history.html:27 +#: amelie/activities/templates/activity.html:81 +#: amelie/companies/templates/companies/company_event.html:49 +#: amelie/education/templates/education_event.html:44 msgid "When" msgstr "Wanneer" -#: amelie/activities/templates/activities/eventdesk/history.html:31 amelie/activities/templates/activities/eventdesk/history.html:34 amelie/activities/templates/activity.html:85 amelie/activities/templates/activity.html:88 amelie/companies/models.py:61 amelie/companies/templates/companies/company_event.html:53 amelie/companies/templates/companies/company_event.html:56 amelie/education/templates/education_event.html:48 amelie/education/templates/education_event.html:51 amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:12 amelie/personal_tab/templates/cookie_corner_transactions_new.html:12 +#: amelie/activities/templates/activities/eventdesk/history.html:31 +#: amelie/activities/templates/activities/eventdesk/history.html:34 +#: amelie/activities/templates/activity.html:85 +#: amelie/activities/templates/activity.html:88 amelie/companies/models.py:61 +#: amelie/companies/templates/companies/company_event.html:53 +#: amelie/companies/templates/companies/company_event.html:56 +#: amelie/education/templates/education_event.html:48 +#: amelie/education/templates/education_event.html:51 +#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:12 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:12 msgid "from" msgstr "van" -#: amelie/activities/templates/activities/eventdesk/history.html:32 amelie/activities/templates/activities/eventdesk/history.html:35 amelie/activities/templates/activity.html:86 amelie/activities/templates/activity.html:89 amelie/companies/models.py:64 amelie/companies/templates/companies/company_event.html:54 amelie/companies/templates/companies/company_event.html:57 amelie/education/templates/education_event.html:49 amelie/education/templates/education_event.html:52 +#: amelie/activities/templates/activities/eventdesk/history.html:32 +#: amelie/activities/templates/activities/eventdesk/history.html:35 +#: amelie/activities/templates/activity.html:86 +#: amelie/activities/templates/activity.html:89 amelie/companies/models.py:64 +#: amelie/companies/templates/companies/company_event.html:54 +#: amelie/companies/templates/companies/company_event.html:57 +#: amelie/education/templates/education_event.html:49 +#: amelie/education/templates/education_event.html:52 msgid "until" msgstr "tot" -#: amelie/activities/templates/activities/eventdesk/history.html:40 amelie/activities/templates/activity.html:128 amelie/companies/templates/companies/company_event.html:64 +#: amelie/activities/templates/activities/eventdesk/history.html:40 +#: amelie/activities/templates/activity.html:128 +#: amelie/companies/templates/companies/company_event.html:64 msgid "Dutch will be spoken at this activity." msgstr "Bij deze activiteit wordt Nederlands gesproken" -#: amelie/activities/templates/activities/eventdesk/history.html:48 amelie/activities/templates/activities/eventdesk/message_list.html:5 +#: amelie/activities/templates/activities/eventdesk/history.html:48 +#: amelie/activities/templates/activities/eventdesk/message_list.html:5 msgid "Event Desk messages" msgstr "Berichten van Evenementenbureau" @@ -858,15 +1320,26 @@ msgstr "Alle berichten" msgid "These are the UT event desk messages that we received for this activity." msgstr "Dit zijn de berichten die we hebben gekregen van het UT evenementenbureau over deze activiteit." -#: amelie/activities/templates/activities/eventdesk/history.html:59 amelie/activities/templates/activities/eventdesk/message_list.html:149 amelie/activities/templates/activities/eventdesk/message_list.html:190 +#: amelie/activities/templates/activities/eventdesk/history.html:59 +#: amelie/activities/templates/activities/eventdesk/message_list.html:149 +#: amelie/activities/templates/activities/eventdesk/message_list.html:190 msgid "Date of message" msgstr "Datum van bericht" -#: amelie/activities/templates/activities/eventdesk/history.html:65 amelie/activities/templates/activities/eventdesk/message_list.html:154 amelie/activities/templates/activities/eventdesk/message_list.html:195 +#: amelie/activities/templates/activities/eventdesk/history.html:65 +#: amelie/activities/templates/activities/eventdesk/message_list.html:154 +#: amelie/activities/templates/activities/eventdesk/message_list.html:195 msgid "State" msgstr "Status" -#: amelie/activities/templates/activities/eventdesk/history.html:66 amelie/activities/templates/activities/eventdesk/history.html:81 amelie/activities/templates/activities/eventdesk/message_list.html:72 amelie/activities/templates/activities/eventdesk/message_list.html:104 amelie/activities/templates/activities/eventdesk/message_list.html:156 amelie/activities/templates/activities/eventdesk/message_list.html:169 amelie/activities/templates/activities/eventdesk/message_list.html:197 amelie/activities/templates/activities/eventdesk/message_list.html:218 +#: amelie/activities/templates/activities/eventdesk/history.html:66 +#: amelie/activities/templates/activities/eventdesk/history.html:81 +#: amelie/activities/templates/activities/eventdesk/message_list.html:72 +#: amelie/activities/templates/activities/eventdesk/message_list.html:104 +#: amelie/activities/templates/activities/eventdesk/message_list.html:156 +#: amelie/activities/templates/activities/eventdesk/message_list.html:169 +#: amelie/activities/templates/activities/eventdesk/message_list.html:197 +#: amelie/activities/templates/activities/eventdesk/message_list.html:218 msgid "Details" msgstr "Details" @@ -931,7 +1404,10 @@ msgstr "Alleen activiteiten die jij mag aanpassen worden getoond." msgid "Legend" msgstr "Legenda" -#: amelie/activities/templates/activities/eventdesk/message_list.html:47 amelie/activities/templates/activities/eventdesk/message_list.html:86 amelie/activities/templates/activities/eventdesk/message_list.html:118 amelie/activities/templates/activity.html:115 +#: amelie/activities/templates/activities/eventdesk/message_list.html:47 +#: amelie/activities/templates/activities/eventdesk/message_list.html:86 +#: amelie/activities/templates/activities/eventdesk/message_list.html:118 +#: amelie/activities/templates/activity.html:115 msgid "Unregistered" msgstr "Niet aangemeld" @@ -956,23 +1432,35 @@ msgstr "Elke status (oranje rand)" msgid "(Match between UT and IA activity <60%% certain)" msgstr "(Koppeling tussen UT en IA <60%% zeker)" -#: amelie/activities/templates/activities/eventdesk/message_list.html:66 templates/frontpage.html:14 +#: amelie/activities/templates/activities/eventdesk/message_list.html:66 +#: templates/frontpage.html:14 msgid "Upcoming activities" msgstr "Komende activiteiten" -#: amelie/activities/templates/activities/eventdesk/message_list.html:69 amelie/activities/templates/activities/eventdesk/message_list.html:101 +#: amelie/activities/templates/activities/eventdesk/message_list.html:69 +#: amelie/activities/templates/activities/eventdesk/message_list.html:101 msgid "Start date/time" msgstr "Begindatum/tijd" -#: amelie/activities/templates/activities/eventdesk/message_list.html:71 amelie/activities/templates/activities/eventdesk/message_list.html:103 amelie/data_export/templates/data_export/dataexport_detail.html:89 amelie/members/templates/registration_check.html:100 amelie/personal_tab/forms.py:125 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:80 amelie/personal_tab/templates/cookie_corner_process_batch.html:36 amelie/personal_tab/templates/info/rfid_cards.html:14 amelie/weekmail/templates/weekmail/weekmail_wizard.html:36 +#: amelie/activities/templates/activities/eventdesk/message_list.html:71 +#: amelie/activities/templates/activities/eventdesk/message_list.html:103 +#: amelie/data_export/templates/data_export/dataexport_detail.html:89 +#: amelie/members/templates/registration_check.html:100 +#: amelie/personal_tab/forms.py:125 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:80 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:36 +#: amelie/personal_tab/templates/info/rfid_cards.html:14 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:36 msgid "Status" msgstr "Status" -#: amelie/activities/templates/activities/eventdesk/message_list.html:84 amelie/activities/templates/activities/eventdesk/message_list.html:116 +#: amelie/activities/templates/activities/eventdesk/message_list.html:84 +#: amelie/activities/templates/activities/eventdesk/message_list.html:116 msgid "History" msgstr "Geschiedenis" -#: amelie/activities/templates/activities/eventdesk/message_list.html:92 amelie/activities/templates/activities/eventdesk/message_list.html:124 +#: amelie/activities/templates/activities/eventdesk/message_list.html:92 +#: amelie/activities/templates/activities/eventdesk/message_list.html:124 msgid "There are no activities visible to you in this timeframe." msgstr "Er zijn geen activiteiten zichtbaar in deze tijdsperiode." @@ -996,15 +1484,19 @@ msgstr "Dit kan betekenen dat het evenement nog niet op de website is aangemaakt msgid "You can manually match these messages to an activity by clicking the \"Match\" button, if necessary." msgstr "Je kan deze berichten handmatig aan een activiteit koppelen door op de \"Koppel\" knop te drukken, als dat nodig is." -#: amelie/activities/templates/activities/eventdesk/message_list.html:152 amelie/activities/templates/activities/eventdesk/message_list.html:193 +#: amelie/activities/templates/activities/eventdesk/message_list.html:152 +#: amelie/activities/templates/activities/eventdesk/message_list.html:193 msgid "Start/end time" msgstr "Start/eindtijd" -#: amelie/activities/templates/activities/eventdesk/message_list.html:153 amelie/activities/templates/activities/eventdesk/message_list.html:194 amelie/calendar/models.py:107 +#: amelie/activities/templates/activities/eventdesk/message_list.html:153 +#: amelie/activities/templates/activities/eventdesk/message_list.html:194 +#: amelie/calendar/models.py:107 msgid "Location" msgstr "Locatie" -#: amelie/activities/templates/activities/eventdesk/message_list.html:155 amelie/activities/templates/activities/eventdesk/message_list.html:168 +#: amelie/activities/templates/activities/eventdesk/message_list.html:155 +#: amelie/activities/templates/activities/eventdesk/message_list.html:168 msgid "Match" msgstr "Koppelen" @@ -1084,32 +1576,40 @@ msgid "Undo event cancellation" msgstr "Maak annuleren van evenement ongedaan" #: amelie/activities/templates/activity.html:45 amelie/calendar/models.py:118 -#| msgid "new events" msgid "Cancel event" msgstr "Annuleer evenement" #: amelie/activities/templates/activity.html:57 -#| msgid "The board can remove activities." msgid "The board can cancel and remove activities." msgstr "Het bestuur kan activiteiten annuleren en verwijderen." -#: amelie/activities/templates/activity.html:68 amelie/companies/templates/companies/company_event.html:30 amelie/education/templates/education_event.html:29 +#: amelie/activities/templates/activity.html:68 +#: amelie/companies/templates/companies/company_event.html:30 +#: amelie/education/templates/education_event.html:29 msgid "Who, what, where, when..." msgstr "Wie, wat, waar, wanneer..." -#: amelie/activities/templates/activity.html:91 amelie/activities/templates/activity_list.html:13 amelie/companies/templates/companies/company_event.html:59 amelie/companies/templates/companies/company_event_list.html:10 amelie/members/templates/committee.html:66 +#: amelie/activities/templates/activity.html:91 +#: amelie/activities/templates/activity_list.html:13 +#: amelie/companies/templates/companies/company_event.html:59 +#: amelie/companies/templates/companies/company_event_list.html:10 +#: amelie/members/templates/committee.html:66 msgid "iCal-file with activity." msgstr "iCal-document met activiteit." -#: amelie/activities/templates/activity.html:93 amelie/activities/templates/activity_list.html:34 +#: amelie/activities/templates/activity.html:93 +#: amelie/activities/templates/activity_list.html:34 msgid "Label" msgstr "Type" -#: amelie/activities/templates/activity.html:96 amelie/activities/templates/activity_enrollment_form.html:79 amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:48 +#: amelie/activities/templates/activity.html:96 +#: amelie/activities/templates/activity_enrollment_form.html:79 +#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:48 msgid "Costs" msgstr "Kosten" -#: amelie/activities/templates/activity.html:99 amelie/members/templates/members/yeartransfer_prolonged.mail:11 +#: amelie/activities/templates/activity.html:99 +#: amelie/members/templates/members/yeartransfer_prolonged.mail:11 msgid "free" msgstr "gratis" @@ -1141,25 +1641,25 @@ msgstr "Exporteer inschrijvingen (CSV)" msgid "Print enrollments" msgstr "Print inschrijvingen" -#: amelie/activities/templates/activity.html:170 amelie/members/templates/includes/query/query_results.html:16 amelie/tools/templates/data_export_statistics.html:5 amelie/tools/templates/data_export_statistics.html:10 +#: amelie/activities/templates/activity.html:170 +#: amelie/members/templates/includes/query/query_results.html:16 +#: amelie/tools/templates/data_export_statistics.html:5 +#: amelie/tools/templates/data_export_statistics.html:10 msgid "Data export statistics" msgstr "Data-exportstatistieken" -#: amelie/activities/templates/activity.html:182 amelie/personal_tab/templates/cookie_corner_statistics.html:192 +#: amelie/activities/templates/activity.html:182 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:192 msgid "Enrollments" msgstr "Inschrijvingen" -#: amelie/activities/templates/activity_confirm_cancellation.html:4 amelie/activities/templates/activity_confirm_cancellation.html:8 -#| msgid "Confirmation delete" +#: amelie/activities/templates/activity_confirm_cancellation.html:4 +#: amelie/activities/templates/activity_confirm_cancellation.html:8 msgid "Confirmation cancel" msgstr "Bevestig verwijdering" #: amelie/activities/templates/activity_confirm_cancellation.html:11 #, python-format -#| msgid "" -#| "\n" -#| " Are you sure you want to remove %(obj)s?\n" -#| " " msgid "" "\n" " Are you sure you want to cancel %(obj)s?\n" @@ -1169,15 +1669,21 @@ msgstr "" "Weet je zeker dat je %(obj)s wilt annuleren?" #: amelie/activities/templates/activity_confirm_cancellation.html:16 -#| msgid "All enrollments will be deleted and the transactions will be undone" msgid "All enrollments will be cancelled, the transactions will be undone, and all the participants will receive an email." msgstr "Alle inschrijvingen worden verwijderd, de transacties worden ongedaan gemaakt, en alle deelnemers krijgen hiervan een email." -#: amelie/activities/templates/activity_confirm_delete.html:4 amelie/activities/templates/activity_confirm_delete.html:8 amelie/companies/templates/companies/company_confirm_delete.html:4 amelie/companies/templates/companies/company_confirm_delete.html:8 amelie/education/templates/education_event_delete.html:4 amelie/education/templates/education_event_delete.html:8 +#: amelie/activities/templates/activity_confirm_delete.html:4 +#: amelie/activities/templates/activity_confirm_delete.html:8 +#: amelie/companies/templates/companies/company_confirm_delete.html:4 +#: amelie/companies/templates/companies/company_confirm_delete.html:8 +#: amelie/education/templates/education_event_delete.html:4 +#: amelie/education/templates/education_event_delete.html:8 msgid "Confirmation delete" msgstr "Bevestiging verwijdering" -#: amelie/activities/templates/activity_confirm_delete.html:11 amelie/companies/templates/companies/company_confirm_delete.html:11 amelie/education/templates/education_event_delete.html:11 +#: amelie/activities/templates/activity_confirm_delete.html:11 +#: amelie/companies/templates/companies/company_confirm_delete.html:11 +#: amelie/education/templates/education_event_delete.html:11 #, python-format msgid "" "\n" @@ -1209,7 +1715,8 @@ msgstr "" "\n" "Weet je zeker dat je %(person)s wil uitschrijven voor %(obj)s?" -#: amelie/activities/templates/activity_enrollment_form.html:5 amelie/activities/templates/activity_enrollment_form.html:16 +#: amelie/activities/templates/activity_enrollment_form.html:5 +#: amelie/activities/templates/activity_enrollment_form.html:16 msgid "Enroll for" msgstr "Inschrijven voor" @@ -1278,7 +1785,40 @@ msgstr "" "inschrijfkosten door Inter-Actief van mijn rekening zullen worden afschreven conform de door\n" "mij getekende machtiging voor consumpties en activiteiten." -#: amelie/activities/templates/activity_enrollment_form.html:102 amelie/activities/templates/activity_enrollment_overview.html:142 amelie/activities/templates/activity_enrollment_print.html:73 amelie/members/templates/statistics/overview.html:44 amelie/members/templates/statistics/overview.html:133 amelie/members/templates/statistics/payments.html:19 amelie/personal_tab/templates/cookie_corner_balance.html:47 amelie/personal_tab/templates/cookie_corner_balance.html:77 amelie/personal_tab/templates/cookie_corner_statistics.html:124 amelie/personal_tab/templates/cookie_corner_statistics.html:165 amelie/personal_tab/templates/cookie_corner_statistics.html:220 amelie/personal_tab/templates/cookie_corner_statistics.html:268 amelie/personal_tab/templates/cookie_corner_statistics.html:303 amelie/personal_tab/templates/cookie_corner_statistics.html:359 amelie/personal_tab/templates/cookie_corner_statistics.html:393 amelie/personal_tab/templates/cookie_corner_statistics.html:439 amelie/personal_tab/templates/exports/screen.html:82 amelie/personal_tab/templates/lists/activity_transactions.html:56 amelie/personal_tab/templates/lists/alexia_transactions.html:42 amelie/personal_tab/templates/lists/cookie_corner_transactions.html:48 amelie/personal_tab/templates/lists/custom_transactions.html:42 amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:50 amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:48 amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:21 amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:50 amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:38 amelie/personal_tab/templates/lists/transactions.html:44 amelie/personal_tab/templates/lists/transactions_totals.html:25 amelie/personal_tab/templates/lists/transactions_totals.html:56 amelie/personal_tab/templates/pos/shop.html:107 amelie/personal_tab/templates/wrapped.html:142 amelie/personal_tab/templates/wrapped.html:181 amelie/room_duty/templates/room_duty/table/overview.html:142 amelie/room_duty/templates/room_duty/table/overview.html:176 +#: amelie/activities/templates/activity_enrollment_form.html:102 +#: amelie/activities/templates/activity_enrollment_overview.html:142 +#: amelie/activities/templates/activity_enrollment_print.html:73 +#: amelie/members/templates/statistics/overview.html:44 +#: amelie/members/templates/statistics/overview.html:133 +#: amelie/members/templates/statistics/payments.html:19 +#: amelie/personal_tab/templates/cookie_corner_balance.html:47 +#: amelie/personal_tab/templates/cookie_corner_balance.html:77 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:124 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:165 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:220 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:268 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:303 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:359 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:393 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:439 +#: amelie/personal_tab/templates/exports/screen.html:82 +#: amelie/personal_tab/templates/lists/activity_transactions.html:56 +#: amelie/personal_tab/templates/lists/alexia_transactions.html:42 +#: amelie/personal_tab/templates/lists/cookie_corner_transactions.html:48 +#: amelie/personal_tab/templates/lists/custom_transactions.html:42 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:50 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:48 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:21 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:50 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:38 +#: amelie/personal_tab/templates/lists/transactions.html:44 +#: amelie/personal_tab/templates/lists/transactions_totals.html:25 +#: amelie/personal_tab/templates/lists/transactions_totals.html:56 +#: amelie/personal_tab/templates/pos/shop.html:107 +#: amelie/personal_tab/templates/wrapped.html:142 +#: amelie/personal_tab/templates/wrapped.html:181 +#: amelie/room_duty/templates/room_duty/table/overview.html:142 +#: amelie/room_duty/templates/room_duty/table/overview.html:176 msgid "Total" msgstr "Totaal" @@ -1286,7 +1826,9 @@ msgstr "Totaal" msgid "Update" msgstr "Aanpassen" -#: amelie/activities/templates/activity_enrollment_form.html:106 amelie/activities/templates/activity_enrollment_person_search.html:30 amelie/activities/templates/includes/activity_enrollment.html:130 +#: amelie/activities/templates/activity_enrollment_form.html:106 +#: amelie/activities/templates/activity_enrollment_person_search.html:30 +#: amelie/activities/templates/includes/activity_enrollment.html:130 msgid "Enroll" msgstr "Inschrijven" @@ -1362,19 +1904,25 @@ msgstr "Heb je een lijst met minderjarige deelnemers nodig? Vraag het bestuur!" msgid "You are currently only viewing underage participants!" msgstr "Je bekijkt nu alleen minderjarige deelnemers!" -#: amelie/activities/templates/activity_enrollment_overview.html:59 amelie/activities/templates/activity_enrollment_overview.html:177 amelie/personal_tab/models.py:323 +#: amelie/activities/templates/activity_enrollment_overview.html:59 +#: amelie/activities/templates/activity_enrollment_overview.html:177 +#: amelie/personal_tab/models.py:323 msgid "Sequence" msgstr "Volgorde" -#: amelie/activities/templates/activity_enrollment_overview.html:66 amelie/activities/templates/activity_enrollment_overview.html:184 +#: amelie/activities/templates/activity_enrollment_overview.html:66 +#: amelie/activities/templates/activity_enrollment_overview.html:184 msgid "Enrollment #" msgstr "Inschrijving #" -#: amelie/activities/templates/activity_enrollment_overview.html:74 amelie/members/models.py:884 amelie/members/templates/person_membership.html:36 +#: amelie/activities/templates/activity_enrollment_overview.html:74 +#: amelie/members/models.py:884 +#: amelie/members/templates/person_membership.html:36 msgid "Payment" msgstr "Betaling" -#: amelie/activities/templates/activity_enrollment_overview.html:93 amelie/activities/templates/activity_enrollment_overview.html:95 +#: amelie/activities/templates/activity_enrollment_overview.html:93 +#: amelie/activities/templates/activity_enrollment_overview.html:95 msgid "This participant turns 18 during the activity!" msgstr "Deze deelnemer wordt 18 tijdens de activiteit!" @@ -1386,27 +1934,50 @@ msgstr "Door hier te klikken, bevestig je het complete contante bedrag ontvangen msgid "Register cash payment" msgstr "Registreer contante betaling" -#: amelie/activities/templates/activity_enrollment_overview.html:114 amelie/activities/templates/activity_enrollment_overview.html:223 amelie/activities/templates/includes/activity_enrollment.html:87 +#: amelie/activities/templates/activity_enrollment_overview.html:114 +#: amelie/activities/templates/activity_enrollment_overview.html:223 +#: amelie/activities/templates/includes/activity_enrollment.html:87 msgid "Edit enrollment" msgstr "Inschrijving aanpassen" -#: amelie/activities/templates/activity_enrollment_overview.html:119 amelie/activities/templates/activity_enrollment_overview.html:228 amelie/activities/templates/activity_enrollment_print.html:53 amelie/activities/templates/includes/activity_enrollment.html:85 +#: amelie/activities/templates/activity_enrollment_overview.html:119 +#: amelie/activities/templates/activity_enrollment_overview.html:228 +#: amelie/activities/templates/activity_enrollment_print.html:53 +#: amelie/activities/templates/includes/activity_enrollment.html:85 msgid "Deregister" msgstr "Uitschrijven" -#: amelie/activities/templates/activity_enrollment_overview.html:133 amelie/activities/templates/activity_enrollment_print.html:66 +#: amelie/activities/templates/activity_enrollment_overview.html:133 +#: amelie/activities/templates/activity_enrollment_print.html:66 msgid "Order totals" msgstr "Totalen bestellingen" -#: amelie/activities/templates/activity_enrollment_overview.html:136 amelie/activities/templates/activity_enrollment_print.html:69 +#: amelie/activities/templates/activity_enrollment_overview.html:136 +#: amelie/activities/templates/activity_enrollment_print.html:69 msgid "Dish" msgstr "Gerecht" -#: amelie/activities/templates/activity_enrollment_overview.html:136 amelie/activities/templates/activity_enrollment_print.html:69 amelie/members/templates/statistics/overview.html:35 amelie/members/templates/statistics/overview.html:124 amelie/personal_tab/models.py:200 amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:31 amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:18 amelie/personal_tab/templates/cookie_corner_statistics.html:61 amelie/personal_tab/templates/cookie_corner_statistics.html:107 amelie/personal_tab/templates/cookie_corner_statistics.html:148 amelie/personal_tab/templates/cookie_corner_statistics.html:290 amelie/personal_tab/templates/cookie_corner_statistics.html:380 amelie/personal_tab/templates/cookie_corner_statistics.html:417 amelie/personal_tab/templates/lists/cookie_corner_transactions.html:12 amelie/personal_tab/templates/pos/success.html:35 amelie/personal_tab/templates/wrapped.html:65 +#: amelie/activities/templates/activity_enrollment_overview.html:136 +#: amelie/activities/templates/activity_enrollment_print.html:69 +#: amelie/members/templates/statistics/overview.html:35 +#: amelie/members/templates/statistics/overview.html:124 +#: amelie/personal_tab/models.py:200 +#: amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:31 +#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:18 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:61 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:107 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:148 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:290 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:380 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:417 +#: amelie/personal_tab/templates/lists/cookie_corner_transactions.html:12 +#: amelie/personal_tab/templates/pos/success.html:35 +#: amelie/personal_tab/templates/wrapped.html:65 msgid "Amount" msgstr "Aantal" -#: amelie/activities/templates/activity_enrollment_overview.html:136 amelie/activities/templates/activity_enrollment_print.html:69 +#: amelie/activities/templates/activity_enrollment_overview.html:136 +#: amelie/activities/templates/activity_enrollment_print.html:69 msgid "Total price" msgstr "Totale prijs" @@ -1414,15 +1985,22 @@ msgstr "Totale prijs" msgid "Grand Total" msgstr "Eindtotaal" -#: amelie/activities/templates/activity_enrollment_overview.html:152 amelie/activities/templates/activity_enrollment_print.html:81 +#: amelie/activities/templates/activity_enrollment_overview.html:152 +#: amelie/activities/templates/activity_enrollment_print.html:81 msgid "Enroll people" msgstr "Personen inschrijven" -#: amelie/activities/templates/activity_enrollment_overview.html:157 amelie/activities/templates/activity_enrollment_print.html:87 amelie/members/templates/includes/query/query_mailing.html:4 amelie/members/templates/includes/query/query_mailing.html:66 amelie/members/templates/includes/query/query_mailing.html:144 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:46 +#: amelie/activities/templates/activity_enrollment_overview.html:157 +#: amelie/activities/templates/activity_enrollment_print.html:87 +#: amelie/members/templates/includes/query/query_mailing.html:4 +#: amelie/members/templates/includes/query/query_mailing.html:66 +#: amelie/members/templates/includes/query/query_mailing.html:144 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:46 msgid "Send mailing" msgstr "Mailing versturen" -#: amelie/activities/templates/activity_enrollment_overview.html:162 amelie/activities/templates/activity_enrollment_print.html:92 +#: amelie/activities/templates/activity_enrollment_overview.html:162 +#: amelie/activities/templates/activity_enrollment_print.html:92 msgid "View transactions" msgstr "Transacties bekijken" @@ -1483,23 +2061,41 @@ msgstr "Alle komende activiteiten weergeven" msgid "Show only activities with open enrollments" msgstr "Alleen activiteiten met open inschrijvingen weergeven" -#: amelie/activities/templates/activity_list.html:47 amelie/activities/templates/activity_old.html:43 amelie/companies/templates/companies/company_event_list.html:29 amelie/companies/templates/companies/company_event_list.html:81 +#: amelie/activities/templates/activity_list.html:46 +#: amelie/activities/templates/activity_old.html:43 +#: amelie/companies/templates/companies/company_event_list.html:29 +#: amelie/companies/templates/companies/company_event_list.html:81 msgid "iCal document with activity" msgstr "iCal-document met activiteit" -#: amelie/activities/templates/activity_list.html:65 amelie/activities/templates/activity_list.html:66 amelie/activities/templates/activity_list.html:118 amelie/calendar/models.py:112 amelie/companies/templates/companies/company_event_list.html:36 amelie/companies/templates/companies/company_event_list.html:86 templates/frontpage.html:28 templates/frontpage.html:29 templates/frontpage.html:56 templates/frontpage.html:57 +#: amelie/activities/templates/activity_list.html:70 +#: amelie/activities/templates/activity_list.html:71 +#: amelie/activities/templates/activity_list.html:127 +#: amelie/calendar/models.py:112 +#: amelie/companies/templates/companies/company_event_list.html:36 +#: amelie/companies/templates/companies/company_event_list.html:86 +#: templates/frontpage.html:28 templates/frontpage.html:29 +#: templates/frontpage.html:62 templates/frontpage.html:63 msgid "Dutch-only" msgstr "Nederlands gesproken" -#: amelie/activities/templates/activity_list.html:82 +#: amelie/activities/templates/activity_list.html:88 +#, python-format +msgid "It looks like there are no events with label %(type)s" +msgstr "Het lijk er op dat er geen activiteiten met het label %(type)s zijn" + +#: amelie/activities/templates/activity_list.html:90 msgid "There are no planned events. Maybe because it is holiday?" msgstr "Er zijn geen aankomende activiteiten, is het toevallig vakantie?" -#: amelie/activities/templates/activity_list.html:89 +#: amelie/activities/templates/activity_list.html:98 msgid "UT Event Desk status" msgstr "UT Evenementenbureau status" -#: amelie/activities/templates/activity_list.html:98 amelie/companies/templates/companies/company_event_list.html:66 amelie/education/templates/education_event_overview.html:58 templates/slider.html:3 +#: amelie/activities/templates/activity_list.html:107 +#: amelie/companies/templates/companies/company_event_list.html:66 +#: amelie/education/templates/education_event_overview.html:58 +#: templates/slider.html:3 msgid "Past activities" msgstr "Afgelopen activiteiten" @@ -1507,11 +2103,24 @@ msgstr "Afgelopen activiteiten" msgid "Old events" msgstr "Oude activiteiten" -#: amelie/activities/templates/activity_old.html:15 amelie/claudia/forms.py:19 amelie/claudia/templates/claudia/mapping_detail.html:126 amelie/claudia/templates/claudia/mapping_detail.html:181 amelie/claudia/templates/claudia/mapping_list.html:10 amelie/claudia/templates/claudia/mapping_list.html:36 amelie/companies/templates/companies/company_event_old.html:15 amelie/education/templates/summaries.html:15 amelie/members/forms.py:300 amelie/members/templates/query.html:34 amelie/members/templates/query.html:54 amelie/members/templates/query.html:67 amelie/members/templates/registration_check.html:21 amelie/personal_tab/forms.py:123 amelie/personal_tab/templates/cookie_corner_authorization_list.html:52 +#: amelie/activities/templates/activity_old.html:15 amelie/claudia/forms.py:19 +#: amelie/claudia/templates/claudia/mapping_detail.html:126 +#: amelie/claudia/templates/claudia/mapping_detail.html:181 +#: amelie/claudia/templates/claudia/mapping_list.html:10 +#: amelie/claudia/templates/claudia/mapping_list.html:36 +#: amelie/companies/templates/companies/company_event_old.html:15 +#: amelie/education/templates/summaries.html:15 amelie/members/forms.py:300 +#: amelie/members/templates/query.html:34 +#: amelie/members/templates/query.html:54 +#: amelie/members/templates/query.html:67 +#: amelie/members/templates/registration_check.html:21 +#: amelie/personal_tab/forms.py:123 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:52 msgid "Search" msgstr "Zoek" -#: amelie/activities/templates/activity_old.html:23 amelie/companies/templates/companies/company_event_old.html:23 +#: amelie/activities/templates/activity_old.html:23 +#: amelie/companies/templates/companies/company_event_old.html:23 #, python-format msgid "" "\n" @@ -1529,11 +2138,13 @@ msgstr "Meerprijs:" msgid "Discount" msgstr "Korting:" -#: amelie/activities/templates/forms/enrollmentoption_checkbox_answer.html:28 amelie/activities/templates/forms/enrollmentoption_numeric_answer.html:28 +#: amelie/activities/templates/forms/enrollmentoption_checkbox_answer.html:28 +#: amelie/activities/templates/forms/enrollmentoption_numeric_answer.html:28 msgid "spot(s) left" msgstr "plek(ken) over" -#: amelie/activities/templates/forms/enrollmentoption_foodquestion_answer.html:17 amelie/activities/templates/forms/enrollmentoption_question_answer.html:16 +#: amelie/activities/templates/forms/enrollmentoption_foodquestion_answer.html:17 +#: amelie/activities/templates/forms/enrollmentoption_question_answer.html:16 msgid "required" msgstr "verplicht" @@ -1553,11 +2164,14 @@ msgstr "Het maximum per persoon is " msgid "All albums" msgstr "Alle albums" -#: amelie/activities/templates/gallery.html:24 amelie/activities/templates/gallery_overview.html:186 +#: amelie/activities/templates/gallery.html:24 +#: amelie/activities/templates/gallery_overview.html:186 msgid "More photos are available if you" msgstr "Meer foto's zijn beschikbaar als je bent " -#: amelie/activities/templates/gallery.html:24 amelie/activities/templates/gallery_overview.html:187 amelie/videos/templates/videos/videos.html:34 +#: amelie/activities/templates/gallery.html:24 +#: amelie/activities/templates/gallery_overview.html:187 +#: amelie/videos/templates/videos/videos.html:34 msgid "logged in" msgstr "ingelogd" @@ -1590,7 +2204,8 @@ msgstr "" msgid "Search for pictures" msgstr "Zoeken naar foto's" -#: amelie/activities/templates/gallery_overview.html:204 amelie/activities/templates/gallery_overview.html:206 +#: amelie/activities/templates/gallery_overview.html:204 +#: amelie/activities/templates/gallery_overview.html:206 msgid "albums" msgstr "albums" @@ -1732,7 +2347,8 @@ msgstr "" msgid "You have enrolled yourself for this event." msgstr "Je hebt je ingeschreven voor deze activiteit." -#: amelie/activities/templates/includes/activity_enrollment.html:61 amelie/activities/templates/includes/activity_enrollment.html:154 +#: amelie/activities/templates/includes/activity_enrollment.html:61 +#: amelie/activities/templates/includes/activity_enrollment.html:154 msgid "You are enrolled on the waiting list for this event." msgstr "Je hebt je ingeschreven voor deze activiteit op de wachtlijst." @@ -1744,7 +2360,8 @@ msgstr "Je hebt je ingeschreven voor deze activiteit op de wachtlijst met de vol msgid "You have enrolled for this event with the following options:" msgstr "Je hebt je ingeschreven voor deze activiteit met de volgende inschrijfopties:" -#: amelie/activities/templates/includes/activity_enrollment.html:78 amelie/activities/templates/includes/activity_enrollment.html:155 +#: amelie/activities/templates/includes/activity_enrollment.html:78 +#: amelie/activities/templates/includes/activity_enrollment.html:155 msgid "Your spot on the waiting list is" msgstr "Jouw plek op de wachtlijst is" @@ -1815,7 +2432,8 @@ msgstr "" msgid "You can only enroll for this activity on the website of this activity" msgstr "Je kan je voor deze activiteit alleen inschrijven via de website van deze activiteit" -#: amelie/activities/templates/includes/activity_enrollment.html:151 amelie/activities/templates/includes/activity_list_enrollment.html:5 +#: amelie/activities/templates/includes/activity_enrollment.html:151 +#: amelie/activities/templates/includes/activity_list_enrollment.html:5 msgid "You have enrolled for this event" msgstr "Je hebt je ingeschreven voor deze activiteit" @@ -1854,23 +2472,87 @@ msgstr "Schrijf je nu in!" msgid "Subscription is open from %(date)s" msgstr "Inschrijven kan vanaf %(date)s" -#: amelie/activities/templates/includes/gallery_paginator.html:5 amelie/activities/templates/includes/gallery_paginator.html:8 amelie/activities/templates/includes/gallery_photo_paginator.html:6 amelie/activities/templates/includes/photo_overview_paginator.html:5 amelie/activities/templates/includes/photo_overview_paginator.html:8 amelie/education/templates/includes/education_news_paginator.html:5 amelie/education/templates/includes/education_news_paginator.html:8 amelie/members/templates/includes/query/query_results.html:30 amelie/members/templates/includes/query/query_results.html:81 amelie/news/templates/includes/news_paginator.html:5 amelie/news/templates/includes/news_paginator.html:8 amelie/publications/templates/publications/includes/publications_paginator.html:5 amelie/publications/templates/publications/includes/publications_paginator.html:8 amelie/tools/templates/paginator.html:6 amelie/videos/templates/videos/includes/videos_paginator.html:5 amelie/videos/templates/videos/includes/videos_paginator.html:8 +#: amelie/activities/templates/includes/gallery_paginator.html:5 +#: amelie/activities/templates/includes/gallery_paginator.html:8 +#: amelie/activities/templates/includes/gallery_photo_paginator.html:6 +#: amelie/activities/templates/includes/photo_overview_paginator.html:5 +#: amelie/activities/templates/includes/photo_overview_paginator.html:8 +#: amelie/education/templates/includes/education_news_paginator.html:5 +#: amelie/education/templates/includes/education_news_paginator.html:8 +#: amelie/members/templates/includes/query/query_results.html:30 +#: amelie/members/templates/includes/query/query_results.html:81 +#: amelie/news/templates/includes/news_paginator.html:5 +#: amelie/news/templates/includes/news_paginator.html:8 +#: amelie/publications/templates/publications/includes/publications_paginator.html:5 +#: amelie/publications/templates/publications/includes/publications_paginator.html:8 +#: amelie/tools/templates/paginator.html:6 +#: amelie/videos/templates/videos/includes/videos_paginator.html:5 +#: amelie/videos/templates/videos/includes/videos_paginator.html:8 msgid "First" msgstr "Eerste" -#: amelie/activities/templates/includes/gallery_paginator.html:6 amelie/activities/templates/includes/gallery_paginator.html:9 amelie/activities/templates/includes/gallery_photo_paginator.html:7 amelie/activities/templates/includes/photo_overview_paginator.html:6 amelie/activities/templates/includes/photo_overview_paginator.html:9 amelie/education/templates/includes/education_news_paginator.html:6 amelie/education/templates/includes/education_news_paginator.html:9 amelie/members/templates/includes/query/query_push.html:23 amelie/members/templates/includes/query/query_results.html:31 amelie/members/templates/includes/query/query_results.html:82 amelie/news/templates/includes/news_paginator.html:6 amelie/news/templates/includes/news_paginator.html:9 amelie/publications/templates/publications/includes/publications_paginator.html:6 amelie/publications/templates/publications/includes/publications_paginator.html:9 amelie/tools/templates/paginator.html:7 amelie/videos/templates/videos/includes/videos_paginator.html:6 amelie/videos/templates/videos/includes/videos_paginator.html:9 +#: amelie/activities/templates/includes/gallery_paginator.html:6 +#: amelie/activities/templates/includes/gallery_paginator.html:9 +#: amelie/activities/templates/includes/gallery_photo_paginator.html:7 +#: amelie/activities/templates/includes/photo_overview_paginator.html:6 +#: amelie/activities/templates/includes/photo_overview_paginator.html:9 +#: amelie/education/templates/includes/education_news_paginator.html:6 +#: amelie/education/templates/includes/education_news_paginator.html:9 +#: amelie/members/templates/includes/query/query_push.html:23 +#: amelie/members/templates/includes/query/query_results.html:31 +#: amelie/members/templates/includes/query/query_results.html:82 +#: amelie/news/templates/includes/news_paginator.html:6 +#: amelie/news/templates/includes/news_paginator.html:9 +#: amelie/publications/templates/publications/includes/publications_paginator.html:6 +#: amelie/publications/templates/publications/includes/publications_paginator.html:9 +#: amelie/tools/templates/paginator.html:7 +#: amelie/videos/templates/videos/includes/videos_paginator.html:6 +#: amelie/videos/templates/videos/includes/videos_paginator.html:9 msgid "Back" msgstr "Vorige" -#: amelie/activities/templates/includes/gallery_paginator.html:21 amelie/activities/templates/includes/gallery_paginator.html:24 amelie/activities/templates/includes/gallery_photo_paginator.html:11 amelie/activities/templates/includes/photo_overview_paginator.html:22 amelie/activities/templates/includes/photo_overview_paginator.html:25 amelie/education/templates/includes/education_news_paginator.html:21 amelie/education/templates/includes/education_news_paginator.html:24 amelie/members/templates/includes/query/query_results.html:45 amelie/members/templates/includes/query/query_results.html:96 amelie/news/templates/includes/news_paginator.html:21 amelie/news/templates/includes/news_paginator.html:24 amelie/publications/templates/publications/includes/publications_paginator.html:21 amelie/publications/templates/publications/includes/publications_paginator.html:24 amelie/tools/templates/paginator.html:23 amelie/videos/templates/videos/includes/videos_paginator.html:21 amelie/videos/templates/videos/includes/videos_paginator.html:24 +#: amelie/activities/templates/includes/gallery_paginator.html:21 +#: amelie/activities/templates/includes/gallery_paginator.html:24 +#: amelie/activities/templates/includes/gallery_photo_paginator.html:11 +#: amelie/activities/templates/includes/photo_overview_paginator.html:22 +#: amelie/activities/templates/includes/photo_overview_paginator.html:25 +#: amelie/education/templates/includes/education_news_paginator.html:21 +#: amelie/education/templates/includes/education_news_paginator.html:24 +#: amelie/members/templates/includes/query/query_results.html:45 +#: amelie/members/templates/includes/query/query_results.html:96 +#: amelie/news/templates/includes/news_paginator.html:21 +#: amelie/news/templates/includes/news_paginator.html:24 +#: amelie/publications/templates/publications/includes/publications_paginator.html:21 +#: amelie/publications/templates/publications/includes/publications_paginator.html:24 +#: amelie/tools/templates/paginator.html:23 +#: amelie/videos/templates/videos/includes/videos_paginator.html:21 +#: amelie/videos/templates/videos/includes/videos_paginator.html:24 msgid "Next" msgstr "Volgende" -#: amelie/activities/templates/includes/gallery_paginator.html:22 amelie/activities/templates/includes/gallery_paginator.html:25 amelie/activities/templates/includes/gallery_photo_paginator.html:12 amelie/activities/templates/includes/photo_overview_paginator.html:23 amelie/activities/templates/includes/photo_overview_paginator.html:26 amelie/education/templates/includes/education_news_paginator.html:22 amelie/education/templates/includes/education_news_paginator.html:25 amelie/members/templates/includes/query/query_results.html:46 amelie/members/templates/includes/query/query_results.html:97 amelie/news/templates/includes/news_paginator.html:22 amelie/news/templates/includes/news_paginator.html:25 amelie/publications/templates/publications/includes/publications_paginator.html:22 amelie/publications/templates/publications/includes/publications_paginator.html:25 amelie/tools/templates/paginator.html:24 amelie/videos/templates/videos/includes/videos_paginator.html:22 amelie/videos/templates/videos/includes/videos_paginator.html:25 +#: amelie/activities/templates/includes/gallery_paginator.html:22 +#: amelie/activities/templates/includes/gallery_paginator.html:25 +#: amelie/activities/templates/includes/gallery_photo_paginator.html:12 +#: amelie/activities/templates/includes/photo_overview_paginator.html:23 +#: amelie/activities/templates/includes/photo_overview_paginator.html:26 +#: amelie/education/templates/includes/education_news_paginator.html:22 +#: amelie/education/templates/includes/education_news_paginator.html:25 +#: amelie/members/templates/includes/query/query_results.html:46 +#: amelie/members/templates/includes/query/query_results.html:97 +#: amelie/news/templates/includes/news_paginator.html:22 +#: amelie/news/templates/includes/news_paginator.html:25 +#: amelie/publications/templates/publications/includes/publications_paginator.html:22 +#: amelie/publications/templates/publications/includes/publications_paginator.html:25 +#: amelie/tools/templates/paginator.html:24 +#: amelie/videos/templates/videos/includes/videos_paginator.html:22 +#: amelie/videos/templates/videos/includes/videos_paginator.html:25 msgid "Last" msgstr "Laatste" -#: amelie/activities/templates/photo_upload.html:4 amelie/activities/templates/photo_upload.html:8 amelie/activities/templates/photo_upload_files.html:4 amelie/activities/templates/photo_upload_files.html:8 +#: amelie/activities/templates/photo_upload.html:4 +#: amelie/activities/templates/photo_upload.html:8 +#: amelie/activities/templates/photo_upload_files.html:4 +#: amelie/activities/templates/photo_upload_files.html:8 msgid "Upload photos" msgstr "Foto's uploaden" @@ -1905,7 +2587,13 @@ msgstr "Maak uploadmap leeg" msgid "Clear photo upload directory" msgstr "Maak foto uploadmap leeg" -#: amelie/activities/templates/photo_upload_clear_confirm.html:8 amelie/claudia/templates/claudia/add_to_mapping_confirm.html:4 amelie/claudia/templates/claudia/add_to_mapping_confirm.html:10 amelie/claudia/templates/claudia/confirm_add.html:4 amelie/claudia/templates/claudia/confirm_add.html:10 amelie/claudia/templates/claudia/confirm_delete.html:4 amelie/claudia/templates/claudia/confirm_delete.html:10 +#: amelie/activities/templates/photo_upload_clear_confirm.html:8 +#: amelie/claudia/templates/claudia/add_to_mapping_confirm.html:4 +#: amelie/claudia/templates/claudia/add_to_mapping_confirm.html:10 +#: amelie/claudia/templates/claudia/confirm_add.html:4 +#: amelie/claudia/templates/claudia/confirm_add.html:10 +#: amelie/claudia/templates/claudia/confirm_delete.html:4 +#: amelie/claudia/templates/claudia/confirm_delete.html:10 msgid "Confirmation" msgstr "Bevestiging" @@ -1930,7 +2618,8 @@ msgstr "Foto's uploaden" msgid "Enrollment for {activity} is not possible. You do not have an active membership at Inter-Actief" msgstr "Inschrijven voor {activity} is niet mogelijk. Je hebt geen actief lidmaatschap bij Inter-Actief." -#: amelie/activities/utils.py:43 amelie/activities/utils.py:101 amelie/activities/utils.py:133 +#: amelie/activities/utils.py:43 amelie/activities/utils.py:101 +#: amelie/activities/utils.py:133 #, python-brace-format msgid "Unenrollment for {activity} is not possible." msgstr "Uitschrijven voor {activity} is niet mogelijk." @@ -1984,137 +2673,140 @@ msgstr "{person} is gepromoveerd van de wachtlijst naar bevestigde deelname voor msgid "Events of Inter-Actief" msgstr "Activiteiten IA" -#: amelie/activities/views.py:265 amelie/activities/views.py:1033 +#: amelie/activities/views.py:269 amelie/activities/views.py:1037 msgid "No photo" msgstr "Geen foto" -#: amelie/activities/views.py:319 +#: amelie/activities/views.py:323 #, python-brace-format msgid "{obj} has been successfully re-opened. Please note that all previous enrollments are not added again and that enrollments will have to be manually re-opened." msgstr "{obj} is succesvol heropend. Let erop dat alle vorige aanmeldingen niet opnieuw zijn toegevoegd en dat je inschrijvingen weer handmatig open moet zetten." -#: amelie/activities/views.py:326 +#: amelie/activities/views.py:330 #, python-brace-format msgid "We were unable to cancel {obj}, since it has already started." msgstr "Het annuleren van {obj} is niet meer mogelijk, omdat deze al is begonnen." -#: amelie/activities/views.py:347 +#: amelie/activities/views.py:351 #, python-brace-format msgid "{obj} was cancelled successfully." msgstr "{obj} is succesvol geannuleerd." -#: amelie/activities/views.py:385 +#: amelie/activities/views.py:389 #, python-brace-format msgid "You are now enrolled for {activity}." msgstr "Je bent nu ingeschreven voor {activity}." -#: amelie/activities/views.py:391 +#: amelie/activities/views.py:395 #, python-brace-format msgid "You are now on the waiting list for {activity}." msgstr "Je staat nu op de wachtlijst voor {activity}." -#: amelie/activities/views.py:427 +#: amelie/activities/views.py:431 #, python-brace-format msgid "You are now unenrolled for {activity}." msgstr "Je bent nu uitgeschreven voor {activity}." -#: amelie/activities/views.py:550 +#: amelie/activities/views.py:554 #, python-brace-format msgid "{person} is now unenrolled for {activity}." msgstr "{person} is nu uitgeschreven voor {activity}." -#: amelie/activities/views.py:743 +#: amelie/activities/views.py:747 msgid "the waitinglist of" msgstr "de wachtlijst voor" -#: amelie/activities/views.py:747 +#: amelie/activities/views.py:751 #, python-brace-format msgid "{person} is now enrolled for {waiting_list} {activity}." msgstr "{person} is nu ingeschreven voor {waiting_list} {activity}." -#: amelie/activities/views.py:754 +#: amelie/activities/views.py:758 #, python-brace-format msgid "You are now enrolled for {waiting_list} {activity}." msgstr "Je bent nu ingeschreven voor {waiting_list} {activity}." -#: amelie/activities/views.py:823 +#: amelie/activities/views.py:827 msgid "The photos are being uploaded. This might take while." msgstr "De foto's worden verwerkt. Dit kan even duren." -#: amelie/activities/views.py:840 amelie/activities/views.py:845 amelie/activities/views.py:849 amelie/activities/views.py:877 +#: amelie/activities/views.py:844 amelie/activities/views.py:849 +#: amelie/activities/views.py:853 amelie/activities/views.py:881 msgid "This picture does not exist." msgstr "Deze foto bestaat niet." -#: amelie/activities/views.py:1048 +#: amelie/activities/views.py:1052 msgid "No participants" msgstr "Geen deelnemers" -#: amelie/activities/views.py:1101 +#: amelie/activities/views.py:1105 msgid "You do not have permissions to edit this activity" msgstr "Je mag deze activiteit niet bewerken" -#: amelie/activities/views.py:1104 +#: amelie/activities/views.py:1108 msgid "You cannot edit this activity, because it is cancelled" msgstr "Je kunt deze activiteit niet aanpassen, omdat hij is geannuleerd" -#: amelie/activities/views.py:1125 +#: amelie/activities/views.py:1129 msgid "You did not fill in an English summary/description." msgstr "Je hebt geen Engelse samenvatting/omschrijving ingevuld." -#: amelie/activities/views.py:1126 amelie/activities/views.py:1133 +#: amelie/activities/views.py:1130 amelie/activities/views.py:1137 msgid "edit event" msgstr "activiteit wijzigen" -#: amelie/activities/views.py:1132 +#: amelie/activities/views.py:1136 msgid "You did not fill in a Dutch summary/description." msgstr "Je hebt geen Nederlandse samenvatting/omschrijving ingevuld." -#: amelie/activities/views.py:1219 amelie/activities/views.py:1229 +#: amelie/activities/views.py:1223 amelie/activities/views.py:1233 msgid "This activity already has enrollments, therefore options can no longer be added!" msgstr "Deze activiteit heeft inschrijvingen, er kunnen geen opties toegevoegd worden!" -#: amelie/activities/views.py:1268 amelie/activities/views.py:1282 +#: amelie/activities/views.py:1272 amelie/activities/views.py:1286 msgid "This activity already has enrollments, therefore options cannot be deleted!" msgstr "Deze activiteit heeft inschrijvingen, er kunnen geen opties verwijderd worden!" -#: amelie/activities/views.py:1274 +#: amelie/activities/views.py:1278 #, python-format msgid "Enrollment options %(object)s has been deleted" msgstr "Inschrijfoptie %(object)s is verwijderd" -#: amelie/activities/views.py:1295 +#: amelie/activities/views.py:1299 msgid "Only accessible for the board and the organisers of this activity." msgstr "Uitsluitend toegankelijk voor het bestuur en de organisators van de activiteit." -#: amelie/activities/views.py:1301 amelie/activities/views.py:1315 +#: amelie/activities/views.py:1305 amelie/activities/views.py:1319 msgid "No activity found or invalid activity ID given." msgstr "Geen activiteit gevonden of je hebt een ongeldige activiteit-id meegegeven." -#: amelie/activities/views.py:1310 +#: amelie/activities/views.py:1314 msgid "Invalid activity ID" msgstr "Ongeldige activiteit-id." -#: amelie/activities/views.py:1331 amelie/personal_tab/views.py:1359 +#: amelie/activities/views.py:1335 amelie/personal_tab/views.py:1359 msgid "Could not create data export, because an unknown data-exporttype is provided." msgstr "Kon geen data-export maken, omdat er een onbekend data-exporttype is opegeven." -#: amelie/activities/views.py:1338 amelie/members/query_views.py:237 amelie/personal_tab/views.py:1366 +#: amelie/activities/views.py:1342 amelie/members/query_views.py:237 +#: amelie/personal_tab/views.py:1366 msgid "Could not create data export, because something went wrong while saving information about the export." msgstr "Kon geen data-export maken, omdat er iets mis ging bij het opslaan van gegevens over de data-export." -#: amelie/activities/views.py:1416 amelie/activities/views.py:1426 amelie/activities/views.py:1428 +#: amelie/activities/views.py:1420 amelie/activities/views.py:1430 +#: amelie/activities/views.py:1432 msgid "You are not allowed to edit this activity" msgstr "Je mag deze activiteit niet bewerken" -#: amelie/activities/views.py:1468 +#: amelie/activities/views.py:1472 msgid "Unknown error occurred." msgstr "Er is een onbekende fout opgetreden." -#: amelie/activities/views.py:1484 amelie/activities/views.py:1499 +#: amelie/activities/views.py:1488 amelie/activities/views.py:1503 msgid "Message is not encoded in UTF-8, Latin-1 or ASCII, giving up..." msgstr "Bericht is niet geëncodeerd in UTF-8, Latin-1 of ASCII, ik geef het op..." -#: amelie/activities/views.py:1505 +#: amelie/activities/views.py:1509 msgid "Could not retrieve this message from Google. {}" msgstr "Kon dit bericht niet ophalen bij Google. {}" @@ -2126,16 +2818,23 @@ msgstr "Pushnotificatie" msgid "Push Notifications" msgstr "Pushnotificaties" -#: amelie/blame/templates/blame/blame_changelog.html:5 amelie/blame/templates/blame/blame_detail.html:5 amelie/blame/templates/blame/model_overview.html:5 amelie/blame/templates/blame/overview.html:4 +#: amelie/blame/templates/blame/blame_changelog.html:5 +#: amelie/blame/templates/blame/blame_detail.html:5 +#: amelie/blame/templates/blame/model_overview.html:5 +#: amelie/blame/templates/blame/overview.html:4 msgid "Blame" msgstr "Blame" -#: amelie/blame/templates/blame/blame_changelog.html:5 amelie/blame/templates/blame/blame_changelog.html:10 +#: amelie/blame/templates/blame/blame_changelog.html:5 +#: amelie/blame/templates/blame/blame_changelog.html:10 #, python-format msgid "Log for %(modelname)s %(objectname)s" msgstr "Logboek voor %(modelname)s %(objectname)s" -#: amelie/blame/templates/blame/blame_changelog.html:14 amelie/blame/templates/blame/blame_detail.html:20 amelie/blame/templates/blame/model_overview.html:13 amelie/blame/templates/blame/overview.html:8 +#: amelie/blame/templates/blame/blame_changelog.html:14 +#: amelie/blame/templates/blame/blame_detail.html:20 +#: amelie/blame/templates/blame/model_overview.html:13 +#: amelie/blame/templates/blame/overview.html:8 msgid "Blame overview" msgstr "Blame-overzicht" @@ -2143,31 +2842,46 @@ msgstr "Blame-overzicht" msgid "Model overview" msgstr "Modeloverzicht" -#: amelie/blame/templates/blame/blame_changelog.html:23 amelie/blame/templates/blame/blame_detail.html:43 amelie/blame/templates/blame/model_overview.html:19 +#: amelie/blame/templates/blame/blame_changelog.html:23 +#: amelie/blame/templates/blame/blame_detail.html:43 +#: amelie/blame/templates/blame/model_overview.html:19 msgid "Object" msgstr "Object" -#: amelie/blame/templates/blame/blame_changelog.html:24 amelie/blame/templates/blame/blame_detail.html:57 amelie/blame/templates/blame/model_overview.html:20 amelie/claudia/templates/claudia/extrapersonalalias_list.html:30 +#: amelie/blame/templates/blame/blame_changelog.html:24 +#: amelie/blame/templates/blame/blame_detail.html:57 +#: amelie/blame/templates/blame/model_overview.html:20 +#: amelie/claudia/templates/claudia/extrapersonalalias_list.html:30 msgid "Action" msgstr "Actie" -#: amelie/blame/templates/blame/blame_changelog.html:25 amelie/blame/templates/blame/blame_detail.html:29 amelie/blame/templates/blame/model_overview.html:21 amelie/tools/models.py:46 amelie/tools/templates/data_export_statistics.html:26 +#: amelie/blame/templates/blame/blame_changelog.html:25 +#: amelie/blame/templates/blame/blame_detail.html:29 +#: amelie/blame/templates/blame/model_overview.html:21 +#: amelie/tools/models.py:46 +#: amelie/tools/templates/data_export_statistics.html:26 msgid "Timestamp" msgstr "Tijdstempel" -#: amelie/blame/templates/blame/blame_changelog.html:26 amelie/blame/templates/blame/blame_detail.html:62 amelie/blame/templates/blame/model_overview.html:22 +#: amelie/blame/templates/blame/blame_changelog.html:26 +#: amelie/blame/templates/blame/blame_detail.html:62 +#: amelie/blame/templates/blame/model_overview.html:22 msgid "Changes" msgstr "Wijzigingen" -#: amelie/blame/templates/blame/blame_changelog.html:27 amelie/blame/templates/blame/model_overview.html:23 +#: amelie/blame/templates/blame/blame_changelog.html:27 +#: amelie/blame/templates/blame/model_overview.html:23 msgid "Changed by" msgstr "Gewijzigd door" -#: amelie/blame/templates/blame/blame_changelog.html:33 amelie/blame/templates/blame/blame_detail.html:46 amelie/blame/templates/blame/model_overview.html:29 +#: amelie/blame/templates/blame/blame_changelog.html:33 +#: amelie/blame/templates/blame/blame_detail.html:46 +#: amelie/blame/templates/blame/model_overview.html:29 msgid "Detail page of this object" msgstr "Detailpagina van dit object" -#: amelie/blame/templates/blame/blame_changelog.html:35 amelie/blame/templates/blame/model_overview.html:31 +#: amelie/blame/templates/blame/blame_changelog.html:35 +#: amelie/blame/templates/blame/model_overview.html:31 msgid "No detail page found for this object" msgstr "Geen detailpagina gevonden voor dit object" @@ -2175,19 +2889,25 @@ msgstr "Geen detailpagina gevonden voor dit object" msgid "Details of this change" msgstr "Details van deze wijziging" -#: amelie/blame/templates/blame/blame_changelog.html:43 amelie/blame/templates/blame/blame_detail.html:35 amelie/blame/templates/blame/model_overview.html:40 +#: amelie/blame/templates/blame/blame_changelog.html:43 +#: amelie/blame/templates/blame/blame_detail.html:35 +#: amelie/blame/templates/blame/model_overview.html:40 msgid "System" msgstr "Systeem" -#: amelie/blame/templates/blame/blame_changelog.html:45 amelie/blame/templates/blame/blame_detail.html:37 amelie/blame/templates/blame/model_overview.html:42 +#: amelie/blame/templates/blame/blame_changelog.html:45 +#: amelie/blame/templates/blame/blame_detail.html:37 +#: amelie/blame/templates/blame/model_overview.html:42 msgid "Anonymous" msgstr "Anoniem" -#: amelie/blame/templates/blame/blame_changelog.html:52 amelie/blame/templates/blame/model_overview.html:49 +#: amelie/blame/templates/blame/blame_changelog.html:52 +#: amelie/blame/templates/blame/model_overview.html:49 msgid "No changes recorded" msgstr "Geen wijzigingen opgeslagen" -#: amelie/blame/templates/blame/blame_detail.html:5 amelie/blame/templates/blame/blame_detail.html:25 +#: amelie/blame/templates/blame/blame_detail.html:5 +#: amelie/blame/templates/blame/blame_detail.html:25 #, python-format msgid "Change to %(actual_obj)s" msgstr "Wijziging aan %(actual_obj)s" @@ -2215,7 +2935,9 @@ msgstr "Door" msgid "Object type" msgstr "Objecttype" -#: amelie/blame/templates/blame/blame_detail.html:64 amelie/blame/templatetags/blame_tags.py:44 amelie/blame/templatetags/blame_tags.py:61 +#: amelie/blame/templates/blame/blame_detail.html:64 +#: amelie/blame/templatetags/blame_tags.py:44 +#: amelie/blame/templatetags/blame_tags.py:61 msgid "This object has been removed." msgstr "Dit object is verwijderd." @@ -2237,7 +2959,9 @@ msgstr "Alle wijzigingen van dit object bekijken" msgid "Detail page for this change" msgstr "Detailpagina van deze wijziging" -#: amelie/blame/templates/blame/overview.html:4 amelie/room_duty/templates/room_duty/table/overview.html:6 amelie/room_duty/templates/room_duty/table/overview.html:86 +#: amelie/blame/templates/blame/overview.html:4 +#: amelie/room_duty/templates/room_duty/table/overview.html:6 +#: amelie/room_duty/templates/room_duty/table/overview.html:86 msgid "Overview" msgstr "Overzicht" @@ -2257,15 +2981,51 @@ msgstr "Geen betaling" msgid "Cash at the board/committee" msgstr "Contant bij bestuur/commissie" -#: amelie/calendar/models.py:24 amelie/members/query_forms.py:82 amelie/members/templates/includes/query/query_mandate.html:4 amelie/personal_tab/templates/cookie_corner_authorization_view.html:4 amelie/personal_tab/templates/cookie_corner_authorization_view.html:8 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:36 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:92 amelie/personal_tab/templates/cookie_corner_process_batch.html:49 amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:11 amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:10 +#: amelie/calendar/models.py:24 amelie/members/query_forms.py:82 +#: amelie/members/templates/includes/query/query_mandate.html:4 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:4 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:8 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:36 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:92 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:49 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:11 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:10 msgid "Mandate" msgstr "Machtiging" -#: amelie/calendar/models.py:26 amelie/data_export/models.py:31 amelie/education/models.py:288 amelie/members/forms.py:295 amelie/members/models.py:736 amelie/members/models.py:787 amelie/members/models.py:1090 amelie/members/templates/committee_edit_members.html:33 amelie/members/templates/committee_edit_single_member.html:28 amelie/personal_tab/forms.py:114 amelie/personal_tab/forms.py:168 amelie/personal_tab/models.py:123 amelie/personal_tab/models.py:371 amelie/personal_tab/templates/cookie_corner_authorization_view.html:21 amelie/personal_tab/templates/cookie_corner_balance.html:35 amelie/personal_tab/templates/cookie_corner_balance.html:63 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:23 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:91 amelie/personal_tab/templates/cookie_corner_process_batch.html:48 amelie/personal_tab/templates/cookie_corner_statistics.html:325 amelie/personal_tab/templates/info/transaction_information.html:39 amelie/personal_tab/templates/lists/activity_transactions.html:10 amelie/personal_tab/templates/lists/alexia_transactions.html:10 amelie/personal_tab/templates/lists/cookie_corner_transactions.html:10 amelie/personal_tab/templates/lists/custom_transactions.html:10 amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:9 amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:9 amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:10 amelie/personal_tab/templates/lists/transactions.html:10 +#: amelie/calendar/models.py:26 amelie/data_export/models.py:31 +#: amelie/education/models.py:288 amelie/members/forms.py:295 +#: amelie/members/models.py:736 amelie/members/models.py:787 +#: amelie/members/models.py:1090 +#: amelie/members/templates/committee_edit_members.html:33 +#: amelie/members/templates/committee_edit_single_member.html:28 +#: amelie/personal_tab/forms.py:114 amelie/personal_tab/forms.py:168 +#: amelie/personal_tab/models.py:123 amelie/personal_tab/models.py:371 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:21 +#: amelie/personal_tab/templates/cookie_corner_balance.html:35 +#: amelie/personal_tab/templates/cookie_corner_balance.html:63 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:23 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:91 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:48 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:325 +#: amelie/personal_tab/templates/info/transaction_information.html:39 +#: amelie/personal_tab/templates/lists/activity_transactions.html:10 +#: amelie/personal_tab/templates/lists/alexia_transactions.html:10 +#: amelie/personal_tab/templates/lists/cookie_corner_transactions.html:10 +#: amelie/personal_tab/templates/lists/custom_transactions.html:10 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:9 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:9 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:10 +#: amelie/personal_tab/templates/lists/transactions.html:10 msgid "Person" msgstr "Persoon" -#: amelie/calendar/models.py:28 amelie/education/models.py:253 amelie/education/models.py:289 amelie/education/templates/complaint.html:107 amelie/members/models.py:1093 amelie/personal_tab/forms.py:84 amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:29 amelie/personal_tab/templates/cookie_corner_authorization_view.html:70 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:125 +#: amelie/calendar/models.py:28 amelie/education/models.py:253 +#: amelie/education/models.py:289 amelie/education/templates/complaint.html:107 +#: amelie/members/models.py:1093 amelie/personal_tab/forms.py:84 +#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:29 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:70 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:125 msgid "Remarks" msgstr "Opmerking" @@ -2277,11 +3037,13 @@ msgstr "Contante betaling voldaan" msgid "On waiting list" msgstr "Op wachtlijst" -#: amelie/calendar/models.py:34 amelie/personal_tab/models.py:130 amelie/personal_tab/templates/info/transaction_information.html:49 +#: amelie/calendar/models.py:34 amelie/personal_tab/models.py:130 +#: amelie/personal_tab/templates/info/transaction_information.html:49 msgid "Added on" msgstr "Toegevoegd op" -#: amelie/calendar/models.py:37 amelie/personal_tab/models.py:133 amelie/personal_tab/templates/info/transaction_information.html:53 +#: amelie/calendar/models.py:37 amelie/personal_tab/models.py:133 +#: amelie/personal_tab/templates/info/transaction_information.html:53 msgid "Added by" msgstr "Toegevoegd door" @@ -2297,11 +3059,14 @@ msgstr "Deelnames" msgid "deleted activity" msgstr "verwijderde activiteit" -#: amelie/calendar/models.py:88 amelie/education/models.py:133 amelie/room_duty/models.py:40 amelie/room_duty/models.py:104 amelie/room_duty/models.py:201 +#: amelie/calendar/models.py:88 amelie/education/models.py:133 +#: amelie/room_duty/models.py:40 amelie/room_duty/models.py:104 +#: amelie/room_duty/models.py:201 msgid "Starts" msgstr "Begint" -#: amelie/calendar/models.py:89 amelie/education/models.py:134 amelie/room_duty/models.py:105 amelie/room_duty/models.py:202 +#: amelie/calendar/models.py:89 amelie/education/models.py:134 +#: amelie/room_duty/models.py:105 amelie/room_duty/models.py:202 msgid "Ends" msgstr "Eindigt" @@ -2325,7 +3090,37 @@ msgstr "Korte promotietekst" msgid "This text can be used by the board for promotion, for example on our socials or in our weekmail. Let it be a teaser, so people would want to read your full activity description." msgstr "Deze tekst kan gebruikt worden door het bestuur voor promotie, bijvoorbeeld op onze social media kanalen of in onze weekmail. Laat het een teaser zijn, zodat mensen die geïnteresseerd zijn jouw volledige beschrijving willen lezen." -#: amelie/calendar/models.py:103 amelie/claudia/templates/claudia/aliasgroup_list.html:23 amelie/claudia/templates/claudia/contact_list.html:22 amelie/claudia/templates/claudia/email_detail.html:18 amelie/claudia/templates/claudia/extragroup_list.html:24 amelie/claudia/templates/claudia/extraperson_list.html:23 amelie/claudia/templates/claudia/mapping_detail.html:86 amelie/claudia/templates/claudia/mapping_detail.html:141 amelie/claudia/templates/claudia/shareddrive_list.html:22 amelie/companies/templates/companies/company_event_form.html:87 amelie/education/templates/education_event_form.html:50 amelie/members/models.py:690 amelie/members/models.py:719 amelie/oauth/templates/oauth_access_request.mail:12 amelie/oauth/templates/request_oauth_sent.html:23 amelie/personal_tab/forms.py:33 amelie/personal_tab/models.py:124 amelie/personal_tab/templates/cookie_corner_authorization_view.html:118 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:66 amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:22 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:21 amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:16 amelie/personal_tab/templates/cookie_corner_statistics.html:326 amelie/personal_tab/templates/info/debt_collection_instructions.html:18 amelie/personal_tab/templates/info/transaction_information.html:7 amelie/personal_tab/templates/lists/activity_transactions.html:12 amelie/personal_tab/templates/lists/alexia_transactions.html:11 amelie/personal_tab/templates/lists/custom_transactions.html:11 amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:11 amelie/personal_tab/templates/lists/transactions.html:11 amelie/personal_tab/templates/wrapped.html:167 amelie/videos/templates/videos/ia_video_form.html:58 amelie/videos/templates/videos/yt_video_form.html:58 +#: amelie/calendar/models.py:103 +#: amelie/claudia/templates/claudia/aliasgroup_list.html:23 +#: amelie/claudia/templates/claudia/contact_list.html:22 +#: amelie/claudia/templates/claudia/email_detail.html:18 +#: amelie/claudia/templates/claudia/extragroup_list.html:24 +#: amelie/claudia/templates/claudia/extraperson_list.html:23 +#: amelie/claudia/templates/claudia/mapping_detail.html:86 +#: amelie/claudia/templates/claudia/mapping_detail.html:141 +#: amelie/claudia/templates/claudia/shareddrive_list.html:22 +#: amelie/companies/templates/companies/company_event_form.html:87 +#: amelie/education/templates/education_event_form.html:50 +#: amelie/members/models.py:690 amelie/members/models.py:719 +#: amelie/oauth/templates/oauth_access_request.mail:12 +#: amelie/oauth/templates/request_oauth_sent.html:23 +#: amelie/personal_tab/forms.py:33 amelie/personal_tab/models.py:124 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:118 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:66 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:22 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:21 +#: amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:16 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:326 +#: amelie/personal_tab/templates/info/debt_collection_instructions.html:18 +#: amelie/personal_tab/templates/info/transaction_information.html:7 +#: amelie/personal_tab/templates/lists/activity_transactions.html:12 +#: amelie/personal_tab/templates/lists/alexia_transactions.html:11 +#: amelie/personal_tab/templates/lists/custom_transactions.html:11 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:11 +#: amelie/personal_tab/templates/lists/transactions.html:11 +#: amelie/personal_tab/templates/wrapped.html:167 +#: amelie/videos/templates/videos/ia_video_form.html:58 +#: amelie/videos/templates/videos/yt_video_form.html:58 msgid "Description" msgstr "Omschrijving" @@ -2357,7 +3152,8 @@ msgstr "URL moet met https:// beginnen" msgid "Whether this event is cancelled, only cancel when needed. Participants will receive an email notification!" msgstr "Of dit evenement geannuleerd is, annuleer deze alleen wanneer nodig is. Deelnemers ontvangen hiervan een email!" -#: amelie/calendar/models.py:190 amelie/education/models.py:159 amelie/room_duty/models.py:117 +#: amelie/calendar/models.py:190 amelie/education/models.py:159 +#: amelie/room_duty/models.py:117 msgid "Start may not be after of simultaneous to end." msgstr "Begin kan niet na het einde voorkomen of gelijk zijn aan het einde." @@ -2391,7 +3187,8 @@ msgstr "Contante betaling geregistreerd!" msgid "Enter a correct username and password. Warning: the fields are case-sensitive." msgstr "Voer een correcte gebruikersnaam en wachtwoord in. Let op, de velden zijn hoofdletter-gevoelig." -#: amelie/claudia/account_views.py:69 amelie/claudia/account_views.py:99 amelie/claudia/account_views.py:123 amelie/claudia/account_views.py:148 +#: amelie/claudia/account_views.py:69 amelie/claudia/account_views.py:99 +#: amelie/claudia/account_views.py:123 amelie/claudia/account_views.py:148 msgid "Something went wrong, please contact the system administrators." msgstr "Er ging iets fout. Neem even contact op met Systeembeheer." @@ -2403,7 +3200,9 @@ msgstr "Je account is al geactiveerd." msgid "It looks like you have entered an unknown username and password combination. Please contact the administrators if you are sure you entered a correct combination." msgstr "Het lijkt erop dat je een verkeerde gebruikersnaam of wachtwoord hebt opgegeven. Weet je zeker dat je gegevens correct zijn, neem dan even contact op met Systeembeheer." -#: amelie/claudia/account_views.py:261 amelie/claudia/account_views.py:267 amelie/claudia/account_views.py:274 amelie/claudia/account_views.py:281 amelie/claudia/account_views.py:287 amelie/claudia/account_views.py:294 +#: amelie/claudia/account_views.py:261 amelie/claudia/account_views.py:267 +#: amelie/claudia/account_views.py:274 amelie/claudia/account_views.py:281 +#: amelie/claudia/account_views.py:287 amelie/claudia/account_views.py:294 msgid "This reset code is not valid." msgstr "Deze herstelcode is niet geldig." @@ -2460,7 +3259,11 @@ msgstr "Ook inactieve mappings" msgid "Types" msgstr "Types" -#: amelie/claudia/forms.py:26 amelie/claudia/forms.py:63 amelie/claudia/templates/claudia/extragroup_list.html:23 amelie/claudia/templates/claudia/mapping_detail.html:49 amelie/members/models.py:336 amelie/members/templates/includes/person_data_table.html:43 +#: amelie/claudia/forms.py:26 amelie/claudia/forms.py:63 +#: amelie/claudia/templates/claudia/extragroup_list.html:23 +#: amelie/claudia/templates/claudia/mapping_detail.html:49 +#: amelie/members/models.py:336 +#: amelie/members/templates/includes/person_data_table.html:43 msgid "Account name" msgstr "Accountnaam" @@ -2468,11 +3271,13 @@ msgstr "Accountnaam" msgid "Current password" msgstr "Huidig wachtwoord" -#: amelie/claudia/forms.py:28 amelie/claudia/forms.py:46 amelie/claudia/forms.py:109 +#: amelie/claudia/forms.py:28 amelie/claudia/forms.py:46 +#: amelie/claudia/forms.py:109 msgid "New password" msgstr "Nieuw wachtwoord" -#: amelie/claudia/forms.py:29 amelie/claudia/forms.py:47 amelie/claudia/forms.py:110 +#: amelie/claudia/forms.py:29 amelie/claudia/forms.py:47 +#: amelie/claudia/forms.py:110 msgid "Repeat new password" msgstr "Herhaal nieuw wachtwoord" @@ -2480,7 +3285,8 @@ msgstr "Herhaal nieuw wachtwoord" msgid "New password must differ from present password" msgstr "Nieuw wachtwoord moet anders zijn dan het huidige wachtwoord" -#: amelie/claudia/forms.py:41 amelie/claudia/forms.py:59 amelie/claudia/forms.py:118 +#: amelie/claudia/forms.py:41 amelie/claudia/forms.py:59 +#: amelie/claudia/forms.py:118 msgid "The new passwords do not match" msgstr "De nieuwe wachtwoorden komen niet overeen" @@ -2488,7 +3294,9 @@ msgstr "De nieuwe wachtwoorden komen niet overeen" msgid "There is no account with that name." msgstr "Er bestaat geen account met die naam." -#: amelie/claudia/forms.py:132 amelie/claudia/templates/claudia/aliasgroup_list.html:4 amelie/claudia/templates/claudia/aliasgroup_list.html:10 +#: amelie/claudia/forms.py:132 +#: amelie/claudia/templates/claudia/aliasgroup_list.html:4 +#: amelie/claudia/templates/claudia/aliasgroup_list.html:10 msgid "Alias groups" msgstr "Aliasgroepen" @@ -2500,7 +3308,9 @@ msgstr "Dit mailadres is niet uniek! Misschien wil je een groep aanmaken?" msgid "If an email address for an extra group is set, then it may only point to an Inter-Actief server." msgstr "Als een mail adres voor een extra groep is ingesteld, dan mag deze alleen naar een Inter-Actief server wijzen." -#: amelie/claudia/models.py:47 amelie/claudia/models.py:153 amelie/claudia/models.py:200 amelie/claudia/models.py:234 amelie/members/models.py:175 amelie/members/models.py:985 +#: amelie/claudia/models.py:47 amelie/claudia/models.py:153 +#: amelie/claudia/models.py:200 amelie/claudia/models.py:234 +#: amelie/members/models.py:175 amelie/members/models.py:985 msgid "This email address is already in use by another mapping!" msgstr "Dit e-mailadres wordt al door een andere mapping gebruikt!" @@ -2544,7 +3354,8 @@ msgstr "Voordat je je actieveledenaccount kan gebruiken, moet je eerst zelf een msgid "Naturally, your password must differ from the one we gave you, and consist of at least 8 characters." msgstr "Je nieuwe wachtwoord moet natuurlijk anders zijn dan die wij gegeven hebben en uit minimaal 8 karakters bestaan." -#: amelie/claudia/templates/accounts/activate.html:22 amelie/claudia/templates/accounts/home.html:12 +#: amelie/claudia/templates/accounts/activate.html:22 +#: amelie/claudia/templates/accounts/home.html:12 msgid "Activate account" msgstr "Account activeren" @@ -2576,7 +3387,10 @@ msgstr "Inter-Actief-account" msgid "Inter-Actief account" msgstr "Inter-Actief-account" -#: amelie/claudia/templates/accounts/home.html:15 amelie/claudia/templates/accounts/password.html:22 amelie/claudia/templates/accounts/password_reset_link.html:22 templates/profile_overview.html:27 +#: amelie/claudia/templates/accounts/home.html:15 +#: amelie/claudia/templates/accounts/password.html:22 +#: amelie/claudia/templates/accounts/password_reset_link.html:22 +#: templates/profile_overview.html:27 msgid "Change password" msgstr "Wachtwoord wijzigen" @@ -2588,19 +3402,27 @@ msgstr "Verander email alias voorkeuren" msgid "Change mail alias preferences " msgstr "Verander email alias voorkeuren" -#: amelie/claudia/templates/accounts/password.html:4 amelie/claudia/templates/accounts/password_reset.html:4 amelie/claudia/templates/accounts/password_reset_link.html:4 amelie/claudia/templates/accounts/password_reset_success.html:4 amelie/claudia/templates/accounts/password_success.html:4 +#: amelie/claudia/templates/accounts/password.html:4 +#: amelie/claudia/templates/accounts/password_reset.html:4 +#: amelie/claudia/templates/accounts/password_reset_link.html:4 +#: amelie/claudia/templates/accounts/password_reset_success.html:4 +#: amelie/claudia/templates/accounts/password_success.html:4 msgid "Change Inter-Actief active members account's password" msgstr "Wachtwoord Inter-Actief-actieveledenaccount wijzigen" -#: amelie/claudia/templates/accounts/password.html:8 amelie/claudia/templates/accounts/password_reset_link.html:8 amelie/claudia/templates/accounts/password_success.html:8 +#: amelie/claudia/templates/accounts/password.html:8 +#: amelie/claudia/templates/accounts/password_reset_link.html:8 +#: amelie/claudia/templates/accounts/password_success.html:8 msgid "Change Inter-Actief active members account's password" msgstr "Wachtwoord Inter-Actief-actieveledenaccount wijzigen" -#: amelie/claudia/templates/accounts/password.html:10 amelie/claudia/templates/accounts/password_reset_link.html:10 +#: amelie/claudia/templates/accounts/password.html:10 +#: amelie/claudia/templates/accounts/password_reset_link.html:10 msgid "You can change the password for your Inter-Actief active members account through the form below." msgstr "Via het onderstaand formulier kun je je wachtwoord voor je Inter-Actief-actieveledenaccount wijzigen." -#: amelie/claudia/templates/accounts/password.html:11 amelie/claudia/templates/accounts/password_reset_link.html:11 +#: amelie/claudia/templates/accounts/password.html:11 +#: amelie/claudia/templates/accounts/password_reset_link.html:11 msgid "Your new password must differ from your current one and consist of at least 8 characters." msgstr "Je nieuwe wachtwoord moet natuurlijk anders zijn dan je vorige en uit minimaal 8 karakters bestaan." @@ -2628,11 +3450,20 @@ msgstr "Je kan de volgende link gebruiken om je wachtwoord opnieuw in te stellen msgid "If you don’t use this link within 3 hours, it will expire. To get a new password reset link, visit " msgstr "Deze link verloopt over 3 uur. Om een nieuwe herstellink te genereren, bezoek " -#: amelie/claudia/templates/accounts/password_reset.mail:15 amelie/claudia/templates/claudia/account_created.mail:28 amelie/claudia/templates/claudia/account_deleted.mail:13 amelie/data_export/templates/data_export/mails/export_complete.mail:15 amelie/iamailer/templates/iamailer/report.mail:34 amelie/iamailer/templates/iamailer/report.mail:45 amelie/members/templates/members/datamail_html.mail:11 amelie/tools/templates/tools/push_report.mail:28 amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:26 +#: amelie/claudia/templates/accounts/password_reset.mail:15 +#: amelie/claudia/templates/claudia/account_created.mail:28 +#: amelie/claudia/templates/claudia/account_deleted.mail:13 +#: amelie/data_export/templates/data_export/mails/export_complete.mail:15 +#: amelie/iamailer/templates/iamailer/report.mail:34 +#: amelie/iamailer/templates/iamailer/report.mail:45 +#: amelie/members/templates/members/datamail_html.mail:11 +#: amelie/tools/templates/tools/push_report.mail:28 +#: amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:26 msgid "Kind regards," msgstr "Met vriendelijke groet," -#: amelie/claudia/templates/accounts/password_reset.mail:17 amelie/claudia/templates/claudia/account_created.mail:30 +#: amelie/claudia/templates/accounts/password_reset.mail:17 +#: amelie/claudia/templates/claudia/account_created.mail:30 msgid "Account management" msgstr "Accountbeheer" @@ -2727,11 +3558,36 @@ msgstr "" msgid "If you would like to join a committee again in the future, contact the board!" msgstr "Als je in de toekomst weer bij een commissie wilt aansluiten, neem contact op met het bestuur!" -#: amelie/claudia/templates/claudia/add_mapping_to_list.html:4 amelie/claudia/templates/claudia/add_to_mapping_confirm.html:4 amelie/claudia/templates/claudia/add_to_mapping_list.html:4 amelie/claudia/templates/claudia/aliasgroup_form.html:4 amelie/claudia/templates/claudia/aliasgroup_list.html:4 amelie/claudia/templates/claudia/confirm_add.html:4 amelie/claudia/templates/claudia/confirm_delete.html:4 amelie/claudia/templates/claudia/contact_form.html:4 amelie/claudia/templates/claudia/contact_list.html:4 amelie/claudia/templates/claudia/email_detail.html:4 amelie/claudia/templates/claudia/extragroup_form.html:4 amelie/claudia/templates/claudia/extragroup_list.html:4 amelie/claudia/templates/claudia/extraperson_form.html:4 amelie/claudia/templates/claudia/extraperson_list.html:4 amelie/claudia/templates/claudia/extrapersonalalias_form.html:4 amelie/claudia/templates/claudia/extrapersonalalias_list.html:4 amelie/claudia/templates/claudia/home.html:4 amelie/claudia/templates/claudia/mapping_detail.html:4 amelie/claudia/templates/claudia/mapping_list.html:4 amelie/claudia/templates/claudia/mapping_no_mapping.html:4 amelie/claudia/templates/claudia/mapping_timeline.html:4 amelie/claudia/templates/claudia/nav.html:7 amelie/claudia/templates/claudia/shareddrive_form.html:4 amelie/claudia/templates/claudia/shareddrive_list.html:4 amelie/claudia/templates/claudia/timeline_list.html:4 +#: amelie/claudia/templates/claudia/add_mapping_to_list.html:4 +#: amelie/claudia/templates/claudia/add_to_mapping_confirm.html:4 +#: amelie/claudia/templates/claudia/add_to_mapping_list.html:4 +#: amelie/claudia/templates/claudia/aliasgroup_form.html:4 +#: amelie/claudia/templates/claudia/aliasgroup_list.html:4 +#: amelie/claudia/templates/claudia/confirm_add.html:4 +#: amelie/claudia/templates/claudia/confirm_delete.html:4 +#: amelie/claudia/templates/claudia/contact_form.html:4 +#: amelie/claudia/templates/claudia/contact_list.html:4 +#: amelie/claudia/templates/claudia/email_detail.html:4 +#: amelie/claudia/templates/claudia/extragroup_form.html:4 +#: amelie/claudia/templates/claudia/extragroup_list.html:4 +#: amelie/claudia/templates/claudia/extraperson_form.html:4 +#: amelie/claudia/templates/claudia/extraperson_list.html:4 +#: amelie/claudia/templates/claudia/extrapersonalalias_form.html:4 +#: amelie/claudia/templates/claudia/extrapersonalalias_list.html:4 +#: amelie/claudia/templates/claudia/home.html:4 +#: amelie/claudia/templates/claudia/mapping_detail.html:4 +#: amelie/claudia/templates/claudia/mapping_list.html:4 +#: amelie/claudia/templates/claudia/mapping_no_mapping.html:4 +#: amelie/claudia/templates/claudia/mapping_timeline.html:4 +#: amelie/claudia/templates/claudia/nav.html:7 +#: amelie/claudia/templates/claudia/shareddrive_form.html:4 +#: amelie/claudia/templates/claudia/shareddrive_list.html:4 +#: amelie/claudia/templates/claudia/timeline_list.html:4 msgid "Claudia" msgstr "Claudia" -#: amelie/claudia/templates/claudia/add_mapping_to_list.html:4 amelie/claudia/templates/claudia/add_mapping_to_list.html:10 +#: amelie/claudia/templates/claudia/add_mapping_to_list.html:4 +#: amelie/claudia/templates/claudia/add_mapping_to_list.html:10 msgid "add to" msgstr "toevoegen aan" @@ -2740,11 +3596,13 @@ msgstr "toevoegen aan" msgid "Add %(mp)s to:" msgstr "%(mp)s toevoegen aan:" -#: amelie/claudia/templates/claudia/add_mapping_to_list.html:20 amelie/claudia/templates/claudia/add_to_mapping_list.html:20 +#: amelie/claudia/templates/claudia/add_mapping_to_list.html:20 +#: amelie/claudia/templates/claudia/add_to_mapping_list.html:20 msgid "There are no results." msgstr "Er zijn geen resultaten gevonden." -#: amelie/claudia/templates/claudia/add_to_mapping_confirm.html:13 amelie/claudia/templates/claudia/confirm_add.html:13 +#: amelie/claudia/templates/claudia/add_to_mapping_confirm.html:13 +#: amelie/claudia/templates/claudia/confirm_add.html:13 #, python-format msgid "" "\n" @@ -2755,7 +3613,8 @@ msgstr "" " Wil je %(member)s toevoegen aan %(group)s?\n" " " -#: amelie/claudia/templates/claudia/add_to_mapping_list.html:4 amelie/claudia/templates/claudia/add_to_mapping_list.html:10 +#: amelie/claudia/templates/claudia/add_to_mapping_list.html:4 +#: amelie/claudia/templates/claudia/add_to_mapping_list.html:10 msgid "Add to" msgstr "Toevoegen aan" @@ -2764,11 +3623,13 @@ msgstr "Toevoegen aan" msgid "Add to %(mp)s:" msgstr "Toevoegen aan %(mp)s:" -#: amelie/claudia/templates/claudia/aliasgroup_form.html:4 amelie/claudia/templates/claudia/aliasgroup_form.html:10 +#: amelie/claudia/templates/claudia/aliasgroup_form.html:4 +#: amelie/claudia/templates/claudia/aliasgroup_form.html:10 msgid "Create new alias group" msgstr "Nieuwe aliasgroep aanmaken" -#: amelie/claudia/templates/claudia/aliasgroup_form.html:14 amelie/claudia/templates/claudia/contact_form.html:14 +#: amelie/claudia/templates/claudia/aliasgroup_form.html:14 +#: amelie/claudia/templates/claudia/contact_form.html:14 msgid "Claudia-mapping:" msgstr "Claudia-mapping:" @@ -2776,11 +3637,42 @@ msgstr "Claudia-mapping:" msgid "Create alias group" msgstr "Aliasgroep aanmaken" -#: amelie/claudia/templates/claudia/aliasgroup_list.html:22 amelie/claudia/templates/claudia/contact_list.html:21 amelie/claudia/templates/claudia/extragroup_list.html:22 amelie/claudia/templates/claudia/extraperson_list.html:21 amelie/claudia/templates/claudia/extrapersonalalias_list.html:29 amelie/claudia/templates/claudia/mapping_detail.html:26 amelie/members/models.py:318 amelie/members/models.py:937 amelie/members/models.py:1130 amelie/members/query_forms.py:36 amelie/members/templates/includes/committee_data.html:31 amelie/members/templates/includes/person_data_table.html:84 amelie/members/templates/includes/registration/data_overview_employee.html:14 amelie/members/templates/includes/registration/data_overview_external.html:14 amelie/members/templates/includes/registration/data_overview_freshmen.html:14 amelie/members/templates/includes/registration/data_overview_freshmen.html:51 amelie/members/templates/includes/registration/data_overview_general.html:14 amelie/members/templates/includes/registration/personal_details.html:68 amelie/members/templates/includes/registration/personal_details_employee.html:68 amelie/members/templates/members/datablock_html.mail:21 amelie/members/templates/members/datablock_plain.mail:20 amelie/tools/pdf.py:118 +#: amelie/claudia/templates/claudia/aliasgroup_list.html:22 +#: amelie/claudia/templates/claudia/contact_list.html:21 +#: amelie/claudia/templates/claudia/extragroup_list.html:22 +#: amelie/claudia/templates/claudia/extraperson_list.html:21 +#: amelie/claudia/templates/claudia/extrapersonalalias_list.html:29 +#: amelie/claudia/templates/claudia/mapping_detail.html:26 +#: amelie/members/models.py:318 amelie/members/models.py:937 +#: amelie/members/models.py:1130 amelie/members/query_forms.py:36 +#: amelie/members/templates/includes/committee_data.html:31 +#: amelie/members/templates/includes/person_data_table.html:84 +#: amelie/members/templates/includes/registration/data_overview_employee.html:14 +#: amelie/members/templates/includes/registration/data_overview_external.html:14 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:14 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:51 +#: amelie/members/templates/includes/registration/data_overview_general.html:14 +#: amelie/members/templates/includes/registration/personal_details.html:68 +#: amelie/members/templates/includes/registration/personal_details_employee.html:68 +#: amelie/members/templates/members/datablock_html.mail:21 +#: amelie/members/templates/members/datablock_plain.mail:20 +#: amelie/tools/pdf.py:118 msgid "E-mail address" msgstr "E-mailadres" -#: amelie/claudia/templates/claudia/aliasgroup_list.html:24 amelie/claudia/templates/claudia/contact_list.html:23 amelie/claudia/templates/claudia/email_detail.html:19 amelie/claudia/templates/claudia/extragroup_list.html:25 amelie/claudia/templates/claudia/extraperson_list.html:24 amelie/claudia/templates/claudia/mapping_detail.html:22 amelie/claudia/templates/claudia/mapping_list.html:52 amelie/companies/templates/companies/company_banners.html:28 amelie/companies/templates/companies/company_banners.html:64 amelie/companies/templates/companies/company_banners.html:100 amelie/companies/templates/companies/company_form.html:50 amelie/members/models.py:94 amelie/members/models.py:694 amelie/personal_tab/forms.py:110 +#: amelie/claudia/templates/claudia/aliasgroup_list.html:24 +#: amelie/claudia/templates/claudia/contact_list.html:23 +#: amelie/claudia/templates/claudia/email_detail.html:19 +#: amelie/claudia/templates/claudia/extragroup_list.html:25 +#: amelie/claudia/templates/claudia/extraperson_list.html:24 +#: amelie/claudia/templates/claudia/mapping_detail.html:22 +#: amelie/claudia/templates/claudia/mapping_list.html:52 +#: amelie/companies/templates/companies/company_banners.html:28 +#: amelie/companies/templates/companies/company_banners.html:64 +#: amelie/companies/templates/companies/company_banners.html:100 +#: amelie/companies/templates/companies/company_form.html:50 +#: amelie/members/models.py:94 amelie/members/models.py:694 +#: amelie/personal_tab/forms.py:110 msgid "Active" msgstr "Actief" @@ -2799,11 +3691,13 @@ msgstr "" " Wil je %(member)s verwijderen uit %(group)s?\n" " " -#: amelie/claudia/templates/claudia/contact_form.html:4 amelie/claudia/templates/claudia/contact_form.html:10 +#: amelie/claudia/templates/claudia/contact_form.html:4 +#: amelie/claudia/templates/claudia/contact_form.html:10 msgid "Create new contact" msgstr "Nieuw contact toevoegen" -#: amelie/claudia/templates/claudia/contact_list.html:4 amelie/claudia/templates/claudia/contact_list.html:10 +#: amelie/claudia/templates/claudia/contact_list.html:4 +#: amelie/claudia/templates/claudia/contact_list.html:10 msgid "Contacts" msgstr "Contacten" @@ -2828,11 +3722,18 @@ msgstr "Emaildetails:" msgid "The e-mail address %(email)s is used by the following mappings:" msgstr "Het e-mailadres %(email)s wordt gebruikt door de volgende mappings:" -#: amelie/claudia/templates/claudia/email_detail.html:15 amelie/claudia/templates/claudia/mapping_list.html:50 amelie/claudia/templates/claudia/mapping_timeline.html:20 amelie/claudia/templates/claudia/timeline_list.html:19 amelie/members/forms.py:229 amelie/members/models.py:60 amelie/members/models.py:85 amelie/members/models.py:849 amelie/personal_tab/forms.py:116 +#: amelie/claudia/templates/claudia/email_detail.html:15 +#: amelie/claudia/templates/claudia/mapping_list.html:50 +#: amelie/claudia/templates/claudia/mapping_timeline.html:20 +#: amelie/claudia/templates/claudia/timeline_list.html:19 +#: amelie/members/forms.py:229 amelie/members/models.py:60 +#: amelie/members/models.py:85 amelie/members/models.py:849 +#: amelie/personal_tab/forms.py:116 msgid "Type" msgstr "Type" -#: amelie/claudia/templates/claudia/email_detail.html:17 amelie/claudia/templates/claudia/extraperson_list.html:22 +#: amelie/claudia/templates/claudia/email_detail.html:17 +#: amelie/claudia/templates/claudia/extraperson_list.html:22 msgid "AD name" msgstr "AD-naam" @@ -2840,15 +3741,22 @@ msgstr "AD-naam" msgid "This e-mail address is not used by any mappings" msgstr "Dit e-mailadres wordt door geen enkele mapping gebruikt" -#: amelie/claudia/templates/claudia/extragroup_form.html:4 amelie/claudia/templates/claudia/extragroup_form.html:10 +#: amelie/claudia/templates/claudia/extragroup_form.html:4 +#: amelie/claudia/templates/claudia/extragroup_form.html:10 msgid "Create new extra AD group" msgstr "Nieuwe extra AD groep aanmaken" -#: amelie/claudia/templates/claudia/extragroup_form.html:14 amelie/claudia/templates/claudia/extraperson_form.html:14 amelie/claudia/templates/claudia/extrapersonalalias_form.html:14 amelie/claudia/templates/claudia/shareddrive_form.html:14 +#: amelie/claudia/templates/claudia/extragroup_form.html:14 +#: amelie/claudia/templates/claudia/extraperson_form.html:14 +#: amelie/claudia/templates/claudia/extrapersonalalias_form.html:14 +#: amelie/claudia/templates/claudia/shareddrive_form.html:14 msgid "Claudia mapping:" msgstr "Claudia-mapping:" -#: amelie/claudia/templates/claudia/extragroup_list.html:4 amelie/claudia/templates/claudia/extragroup_list.html:10 amelie/claudia/templates/claudia/home.html:22 amelie/claudia/templates/claudia/nav.html:13 +#: amelie/claudia/templates/claudia/extragroup_list.html:4 +#: amelie/claudia/templates/claudia/extragroup_list.html:10 +#: amelie/claudia/templates/claudia/home.html:22 +#: amelie/claudia/templates/claudia/nav.html:13 msgid "Extra AD groups" msgstr "Extra AD groepen" @@ -2856,19 +3764,29 @@ msgstr "Extra AD groepen" msgid "Create extra group" msgstr "Extra groep aanmaken" -#: amelie/claudia/templates/claudia/extragroup_list.html:26 amelie/members/models.py:141 amelie/members/models.py:770 amelie/members/models.py:1162 amelie/members/templates/includes/query/query_dogroup.html:4 amelie/members/templates/includes/registration/data_overview_freshmen.html:77 amelie/members/templates/includes/registration/study_freshmen.html:48 amelie/members/templates/person_edit_study.html:16 amelie/members/templates/registration_check.html:48 +#: amelie/claudia/templates/claudia/extragroup_list.html:26 +#: amelie/members/models.py:141 amelie/members/models.py:770 +#: amelie/members/models.py:1162 +#: amelie/members/templates/includes/query/query_dogroup.html:4 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:77 +#: amelie/members/templates/includes/registration/study_freshmen.html:48 +#: amelie/members/templates/person_edit_study.html:16 +#: amelie/members/templates/registration_check.html:48 msgid "Dogroup" msgstr "Doegroep" -#: amelie/claudia/templates/claudia/extraperson_form.html:4 amelie/claudia/templates/claudia/extraperson_form.html:10 +#: amelie/claudia/templates/claudia/extraperson_form.html:4 +#: amelie/claudia/templates/claudia/extraperson_form.html:10 msgid "Create new extra AD person" msgstr "Nieuw extra AD persoon aanmaken" -#: amelie/claudia/templates/claudia/extraperson_list.html:4 amelie/claudia/templates/claudia/home.html:25 +#: amelie/claudia/templates/claudia/extraperson_list.html:4 +#: amelie/claudia/templates/claudia/home.html:25 msgid "Extra AD people" msgstr "Extra AD personen" -#: amelie/claudia/templates/claudia/extraperson_list.html:10 amelie/claudia/templates/claudia/nav.html:16 +#: amelie/claudia/templates/claudia/extraperson_list.html:10 +#: amelie/claudia/templates/claudia/nav.html:16 msgid "Extra AD users" msgstr "Extra AD gebruikers" @@ -2876,7 +3794,8 @@ msgstr "Extra AD gebruikers" msgid "Create extra AD user" msgstr "Extra AD persoon aanmaken" -#: amelie/claudia/templates/claudia/extrapersonalalias_delete.html:5 amelie/claudia/templates/claudia/extrapersonalalias_delete.html:10 +#: amelie/claudia/templates/claudia/extrapersonalalias_delete.html:5 +#: amelie/claudia/templates/claudia/extrapersonalalias_delete.html:10 msgid "Remove alias" msgstr "Alias verwijderen" @@ -2890,7 +3809,8 @@ msgstr "" "\n" "Weet je zeker dat je alias %(object)s wilt verwijderen?" -#: amelie/claudia/templates/claudia/extrapersonalalias_form.html:4 amelie/claudia/templates/claudia/extrapersonalalias_form.html:10 +#: amelie/claudia/templates/claudia/extrapersonalalias_form.html:4 +#: amelie/claudia/templates/claudia/extrapersonalalias_form.html:10 msgid "Create new personal alias" msgstr "Nieuwe persoonlijke alias aanmaken" @@ -2910,7 +3830,10 @@ msgstr "Alle Extra Aliassen" msgid "Add extra personal alias" msgstr "Persoonlijke alias toevoegen" -#: amelie/claudia/templates/claudia/extrapersonalalias_list.html:27 amelie/claudia/templates/claudia/mapping_detail.html:14 amelie/claudia/templates/claudia/mapping_list.html:49 amelie/claudia/templates/claudia/timeline_list.html:18 +#: amelie/claudia/templates/claudia/extrapersonalalias_list.html:27 +#: amelie/claudia/templates/claudia/mapping_detail.html:14 +#: amelie/claudia/templates/claudia/mapping_list.html:49 +#: amelie/claudia/templates/claudia/timeline_list.html:18 msgid "Mapping" msgstr "Mapping" @@ -2929,7 +3852,10 @@ msgid "" " anything! Any questions? Don't hesitate to ask the SysCom or WWW-Supers!" msgstr "Hoi bestuurder! Hier kun je echt vet veel slopen als je geen idee hebt wat je hier doet. Lees daarom even door deze wiki pagina voordat je iets aanpast hier! Vragen? Stel ze alsjeblieft! Je kunt terecht bij Beheer en de WWW-Supers." -#: amelie/claudia/templates/claudia/home.html:19 amelie/claudia/templates/claudia/mapping_list.html:4 amelie/claudia/templates/claudia/mapping_list.html:42 amelie/claudia/templates/claudia/nav.html:10 +#: amelie/claudia/templates/claudia/home.html:19 +#: amelie/claudia/templates/claudia/mapping_list.html:4 +#: amelie/claudia/templates/claudia/mapping_list.html:42 +#: amelie/claudia/templates/claudia/nav.html:10 msgid "Mappings" msgstr "Mappings" @@ -2941,7 +3867,8 @@ msgstr "Google Shared Drives" msgid "Google mail aliases" msgstr "Google mailaliassen" -#: amelie/claudia/templates/claudia/home.html:34 amelie/claudia/templates/claudia/nav.html:25 +#: amelie/claudia/templates/claudia/home.html:34 +#: amelie/claudia/templates/claudia/nav.html:25 msgid "External contacts" msgstr "Externe contacten" @@ -2969,31 +3896,60 @@ msgstr "Claudia-ID" msgid "Verify" msgstr "Verify" -#: amelie/claudia/templates/claudia/mapping_detail.html:70 amelie/claudia/templates/claudia/mapping_timeline.html:10 amelie/claudia/templates/claudia/nav.html:31 amelie/claudia/templates/claudia/timeline_list.html:4 amelie/claudia/templates/claudia/timeline_list.html:10 +#: amelie/claudia/templates/claudia/mapping_detail.html:70 +#: amelie/claudia/templates/claudia/mapping_timeline.html:10 +#: amelie/claudia/templates/claudia/nav.html:31 +#: amelie/claudia/templates/claudia/timeline_list.html:4 +#: amelie/claudia/templates/claudia/timeline_list.html:10 msgid "Timeline" msgstr "Timeline" -#: amelie/claudia/templates/claudia/mapping_detail.html:78 amelie/members/templates/committee.html:32 amelie/members/templates/statistics/overview.html:91 templates/frontpage.html:112 +#: amelie/claudia/templates/claudia/mapping_detail.html:78 +#: amelie/members/templates/committee.html:32 +#: amelie/members/templates/statistics/overview.html:91 +#: templates/frontpage.html:124 msgid "Members" msgstr "Leden" -#: amelie/claudia/templates/claudia/mapping_detail.html:85 amelie/claudia/templates/claudia/mapping_detail.html:140 amelie/members/models.py:319 amelie/members/models.py:1131 amelie/members/templates/includes/person_data_table.html:58 amelie/members/templates/includes/registration/contact_member.html:11 amelie/members/templates/includes/registration/data_overview_employee.html:25 amelie/members/templates/includes/registration/data_overview_external.html:28 amelie/members/templates/includes/registration/data_overview_freshmen.html:28 amelie/members/templates/includes/registration/data_overview_freshmen.html:54 amelie/members/templates/includes/registration/data_overview_general.html:28 amelie/members/templates/members/datablock_html.mail:15 amelie/members/templates/members/datablock_plain.mail:14 amelie/tools/pdf.py:110 amelie/tools/pdf.py:396 templates/profile_edit.html:36 +#: amelie/claudia/templates/claudia/mapping_detail.html:85 +#: amelie/claudia/templates/claudia/mapping_detail.html:140 +#: amelie/members/models.py:319 amelie/members/models.py:1131 +#: amelie/members/templates/includes/person_data_table.html:58 +#: amelie/members/templates/includes/registration/contact_member.html:11 +#: amelie/members/templates/includes/registration/data_overview_employee.html:25 +#: amelie/members/templates/includes/registration/data_overview_external.html:28 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:28 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:54 +#: amelie/members/templates/includes/registration/data_overview_general.html:28 +#: amelie/members/templates/members/datablock_html.mail:15 +#: amelie/members/templates/members/datablock_plain.mail:14 +#: amelie/tools/pdf.py:110 amelie/tools/pdf.py:396 +#: templates/profile_edit.html:36 msgid "Address" msgstr "Adres" -#: amelie/claudia/templates/claudia/mapping_detail.html:87 amelie/claudia/templates/claudia/mapping_detail.html:142 +#: amelie/claudia/templates/claudia/mapping_detail.html:87 +#: amelie/claudia/templates/claudia/mapping_detail.html:142 msgid "AD" msgstr "AD" -#: amelie/claudia/templates/claudia/mapping_detail.html:88 amelie/claudia/templates/claudia/mapping_detail.html:143 +#: amelie/claudia/templates/claudia/mapping_detail.html:88 +#: amelie/claudia/templates/claudia/mapping_detail.html:143 msgid "Email" msgstr "Mail" -#: amelie/claudia/templates/claudia/mapping_detail.html:95 amelie/claudia/templates/claudia/mapping_detail.html:150 +#: amelie/claudia/templates/claudia/mapping_detail.html:95 +#: amelie/claudia/templates/claudia/mapping_detail.html:150 msgid "automatic" msgstr "automatisch" -#: amelie/claudia/templates/claudia/mapping_detail.html:96 amelie/claudia/templates/claudia/mapping_detail.html:97 amelie/claudia/templates/claudia/mapping_detail.html:117 amelie/claudia/templates/claudia/mapping_detail.html:151 amelie/claudia/templates/claudia/mapping_detail.html:152 amelie/claudia/templates/claudia/mapping_detail.html:172 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:78 +#: amelie/claudia/templates/claudia/mapping_detail.html:96 +#: amelie/claudia/templates/claudia/mapping_detail.html:97 +#: amelie/claudia/templates/claudia/mapping_detail.html:117 +#: amelie/claudia/templates/claudia/mapping_detail.html:151 +#: amelie/claudia/templates/claudia/mapping_detail.html:152 +#: amelie/claudia/templates/claudia/mapping_detail.html:172 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:78 msgid "yes" msgstr "ja" @@ -3009,11 +3965,14 @@ msgstr "Lid van" msgid "Add to:" msgstr "Toevoegen aan:" -#: amelie/claudia/templates/claudia/mapping_list.html:51 amelie/videos/templates/videos/ia_video_form.html:50 amelie/videos/templates/videos/yt_video_form.html:50 +#: amelie/claudia/templates/claudia/mapping_list.html:51 +#: amelie/videos/templates/videos/ia_video_form.html:50 +#: amelie/videos/templates/videos/yt_video_form.html:50 msgid "ID" msgstr "ID" -#: amelie/claudia/templates/claudia/mapping_list.html:53 amelie/education/forms.py:90 +#: amelie/claudia/templates/claudia/mapping_list.html:53 +#: amelie/education/forms.py:90 msgid "E-mail" msgstr "E-mail" @@ -3033,11 +3992,14 @@ msgstr "Nieuw mapping aanmaken" msgid "Mapping:" msgstr "Mapping:" -#: amelie/claudia/templates/claudia/mapping_timeline.html:19 amelie/claudia/templates/claudia/timeline_list.html:17 amelie/personal_tab/templates/lists/activity_transactions.html:8 +#: amelie/claudia/templates/claudia/mapping_timeline.html:19 +#: amelie/claudia/templates/claudia/timeline_list.html:17 +#: amelie/personal_tab/templates/lists/activity_transactions.html:8 msgid "Date/time" msgstr "Datum/tijd" -#: amelie/claudia/templates/claudia/nav.html:19 amelie/claudia/templates/claudia/shareddrive_list.html:4 +#: amelie/claudia/templates/claudia/nav.html:19 +#: amelie/claudia/templates/claudia/shareddrive_list.html:4 msgid "Shared Drives" msgstr "Gedeelde Drive" @@ -3065,7 +4027,8 @@ msgstr "Google Shared Drives" msgid "Create Google shared drive" msgstr "Google shared drive aanmaken" -#: amelie/companies/forms.py:15 amelie/companies/templates/companies/company_form.html:61 +#: amelie/companies/forms.py:15 +#: amelie/companies/templates/companies/company_form.html:61 msgid "Logo" msgstr "Logo" @@ -3146,7 +4109,10 @@ msgstr "korte omschrijving (en)" msgid "show in app" msgstr "toon in app" -#: amelie/companies/models.py:90 amelie/companies/templates/companies/company_event_form.html:47 amelie/companies/templates/companies/company_statistics.html:44 amelie/companies/templates/companies/company_statistics.html:132 +#: amelie/companies/models.py:90 +#: amelie/companies/templates/companies/company_event_form.html:47 +#: amelie/companies/templates/companies/company_statistics.html:44 +#: amelie/companies/templates/companies/company_statistics.html:132 msgid "Company" msgstr "Bedrijf" @@ -3158,11 +4124,15 @@ msgstr "Bedrijven" msgid "The slug for this name already exists!" msgstr "De slug voor deze naam bestaat al!" -#: amelie/companies/models.py:171 amelie/companies/templates/companies/company_banners.html:9 amelie/companies/templates/companies/company_statistics.html:66 +#: amelie/companies/models.py:171 +#: amelie/companies/templates/companies/company_banners.html:9 +#: amelie/companies/templates/companies/company_statistics.html:66 msgid "Website banners" msgstr "Websitebanners" -#: amelie/companies/models.py:178 amelie/companies/templates/companies/company_banners.html:45 amelie/companies/templates/companies/company_statistics.html:96 +#: amelie/companies/models.py:178 +#: amelie/companies/templates/companies/company_banners.html:45 +#: amelie/companies/templates/companies/company_statistics.html:96 msgid "Television banners" msgstr "Televisiebanners" @@ -3170,7 +4140,8 @@ msgstr "Televisiebanners" msgid "I/O Vivat banner" msgstr "I/O Vivat banner" -#: amelie/companies/models.py:192 amelie/companies/templates/companies/company_banners.html:81 +#: amelie/companies/models.py:192 +#: amelie/companies/templates/companies/company_banners.html:81 msgid "I/O Vivat banners" msgstr "I/O Vivat banners" @@ -3186,7 +4157,8 @@ msgstr "Beste extern" msgid "Within the next month the following company pages will expire:" msgstr "Binnen de komende maand zullen de volgende bedrijvenpagina's vervallen:" -#: amelie/companies/templates/companies/bannercheck.mail:10 amelie/companies/templates/companies/bannercheck.mail:22 +#: amelie/companies/templates/companies/bannercheck.mail:10 +#: amelie/companies/templates/companies/bannercheck.mail:22 #, python-format msgid "" "\n" @@ -3196,7 +4168,8 @@ msgstr "" "\n" "
  • %(name)s op %(end_date)s
  • " -#: amelie/companies/templates/companies/bannercheck.mail:15 amelie/companies/templates/companies/bannercheck.mail:27 +#: amelie/companies/templates/companies/bannercheck.mail:15 +#: amelie/companies/templates/companies/bannercheck.mail:27 #, python-format msgid "" "\n" @@ -3230,34 +4203,53 @@ msgstr "" "\n" "Klik de websitebanner om hem aan te passen." -#: amelie/companies/templates/companies/company_banners.html:17 amelie/companies/templates/companies/company_banners.html:53 amelie/companies/templates/companies/company_banners.html:89 amelie/personal_tab/models.py:685 +#: amelie/companies/templates/companies/company_banners.html:17 +#: amelie/companies/templates/companies/company_banners.html:53 +#: amelie/companies/templates/companies/company_banners.html:89 +#: amelie/personal_tab/models.py:685 msgid "New" msgstr "Nieuw" -#: amelie/companies/templates/companies/company_banners.html:27 amelie/companies/templates/companies/company_banners.html:30 amelie/companies/templates/companies/company_banners.html:63 amelie/companies/templates/companies/company_banners.html:66 amelie/companies/templates/companies/company_banners.html:99 amelie/companies/templates/companies/company_banners.html:102 +#: amelie/companies/templates/companies/company_banners.html:27 +#: amelie/companies/templates/companies/company_banners.html:30 +#: amelie/companies/templates/companies/company_banners.html:63 +#: amelie/companies/templates/companies/company_banners.html:66 +#: amelie/companies/templates/companies/company_banners.html:99 +#: amelie/companies/templates/companies/company_banners.html:102 #, python-format msgid "Expires: %(end_date)s" msgstr "Verloopt op: %(end_date)s" -#: amelie/companies/templates/companies/company_banners.html:31 amelie/companies/templates/companies/company_banners.html:67 amelie/companies/templates/companies/company_banners.html:103 amelie/narrowcasting/templates/room.html:172 +#: amelie/companies/templates/companies/company_banners.html:31 +#: amelie/companies/templates/companies/company_banners.html:67 +#: amelie/companies/templates/companies/company_banners.html:103 +#: amelie/narrowcasting/templates/room.html:172 msgid "Turned off" msgstr "Uitgeschakeld" -#: amelie/companies/templates/companies/company_banners.html:33 amelie/companies/templates/companies/company_banners.html:69 amelie/companies/templates/companies/company_banners.html:105 +#: amelie/companies/templates/companies/company_banners.html:33 +#: amelie/companies/templates/companies/company_banners.html:69 +#: amelie/companies/templates/companies/company_banners.html:105 #, python-format msgid "Active from: %(start_date)s" msgstr "Actief vanaf: %(start_date)s" -#: amelie/companies/templates/companies/company_banners.html:34 amelie/companies/templates/companies/company_banners.html:70 amelie/companies/templates/companies/company_banners.html:106 +#: amelie/companies/templates/companies/company_banners.html:34 +#: amelie/companies/templates/companies/company_banners.html:70 +#: amelie/companies/templates/companies/company_banners.html:106 msgid "Future" msgstr "Toekomst" -#: amelie/companies/templates/companies/company_banners.html:36 amelie/companies/templates/companies/company_banners.html:72 amelie/companies/templates/companies/company_banners.html:108 +#: amelie/companies/templates/companies/company_banners.html:36 +#: amelie/companies/templates/companies/company_banners.html:72 +#: amelie/companies/templates/companies/company_banners.html:108 #, python-format msgid "Has expired on: %(end_date)s" msgstr "Verlopen op: %(end_date)s" -#: amelie/companies/templates/companies/company_banners.html:37 amelie/companies/templates/companies/company_banners.html:73 amelie/companies/templates/companies/company_banners.html:109 +#: amelie/companies/templates/companies/company_banners.html:37 +#: amelie/companies/templates/companies/company_banners.html:73 +#: amelie/companies/templates/companies/company_banners.html:109 msgid "Past" msgstr "Verleden" @@ -3279,7 +4271,8 @@ msgstr "" "\n" "Klik de vivatbanner om hem aan te passen." -#: amelie/companies/templates/companies/company_banners_form.html:4 amelie/companies/templates/companies/company_banners_form.html:8 +#: amelie/companies/templates/companies/company_banners_form.html:4 +#: amelie/companies/templates/companies/company_banners_form.html:8 msgid "Edit banner" msgstr "Pas banner aan" @@ -3291,11 +4284,13 @@ msgstr "Banner opslaan" msgid "URL" msgstr "URL" -#: amelie/companies/templates/companies/company_details.html:32 amelie/companies/templates/companies/company_form.html:112 +#: amelie/companies/templates/companies/company_details.html:32 +#: amelie/companies/templates/companies/company_form.html:112 msgid "Edit company" msgstr "Wijzig bedrijf" -#: amelie/companies/templates/companies/company_event_form.html:17 amelie/education/templates/education_event_form.html:21 +#: amelie/companies/templates/companies/company_event_form.html:17 +#: amelie/education/templates/education_event_form.html:21 msgid "Edit this event " msgstr "Event wijzigen" @@ -3309,7 +4304,9 @@ msgstr "" "\n" "Vul hier het bedrijf dat dit event organiseert in, als het bedrijf een company corner pagina heeft vul dan het eerste vakje in, vul anders de andere twee vakjes in" -#: amelie/companies/templates/companies/company_event_list.html:8 amelie/companies/templates/companies/company_event_list.html:17 amelie/companies/templates/companies/company_event_list.html:74 +#: amelie/companies/templates/companies/company_event_list.html:8 +#: amelie/companies/templates/companies/company_event_list.html:17 +#: amelie/companies/templates/companies/company_event_list.html:74 msgid "External event" msgstr "Externe activiteit" @@ -3329,7 +4326,8 @@ msgstr "tot:" msgid "from:" msgstr "vanaf:" -#: amelie/companies/templates/companies/company_event_list.html:54 amelie/education/templates/education_event_overview.html:46 +#: amelie/companies/templates/companies/company_event_list.html:54 +#: amelie/education/templates/education_event_overview.html:46 msgid "There are not (as of yet) any events in the future, check again soon!" msgstr "Er zijn (nog) geen events in de toekomst, kijk binnenkort nogmaals!" @@ -3345,7 +4343,8 @@ msgstr "Eerdere externe activiteiten" msgid "iCal document with activity " msgstr "iCal-document met event" -#: amelie/companies/templates/companies/company_form.html:6 amelie/companies/templates/companies/company_form.html:19 +#: amelie/companies/templates/companies/company_form.html:6 +#: amelie/companies/templates/companies/company_form.html:19 msgid "New company" msgstr "Nieuw bedrijf" @@ -3357,7 +4356,8 @@ msgstr "wijzigen" msgid "Change company" msgstr "Bedrijf wijzigen" -#: amelie/companies/templates/companies/company_form.html:74 amelie/tools/models.py:13 +#: amelie/companies/templates/companies/company_form.html:74 +#: amelie/tools/models.py:13 msgid "Profile" msgstr "Profiel" @@ -3365,7 +4365,10 @@ msgstr "Profiel" msgid "Add company" msgstr "Bedrijf toevoegen" -#: amelie/companies/templates/companies/company_overview.html:6 amelie/companies/templates/companies/company_statistics.html:38 templates/basis.html:217 templates/frontpage.html:76 templates/frontpage.html:81 +#: amelie/companies/templates/companies/company_overview.html:6 +#: amelie/companies/templates/companies/company_statistics.html:38 +#: templates/basis.html:217 templates/frontpage.html:88 +#: templates/frontpage.html:93 msgid "Company Corner" msgstr "Company Corner" @@ -3405,15 +4408,24 @@ msgstr "samenwerking@inter-actief.net" msgid "Mail collaboration@inter-actief.net" msgstr "Mail samenwerking@inter-actief.net" -#: amelie/companies/templates/companies/company_statistics.html:6 amelie/companies/templates/companies/company_statistics.html:12 +#: amelie/companies/templates/companies/company_statistics.html:6 +#: amelie/companies/templates/companies/company_statistics.html:12 msgid "Company statistics" msgstr "Bedrijfsstatistieken" -#: amelie/companies/templates/companies/company_statistics.html:15 amelie/personal_tab/templates/cookie_corner_statistics_form.html:13 +#: amelie/companies/templates/companies/company_statistics.html:15 +#: amelie/personal_tab/templates/cookie_corner_statistics_form.html:13 msgid "Select a period and click Statistics." msgstr "Selecteer een periode en klik op Statistieken." -#: amelie/companies/templates/companies/company_statistics.html:23 amelie/personal_tab/templates/cookie_corner_overview.html:19 amelie/personal_tab/templates/cookie_corner_statistics.html:456 amelie/personal_tab/templates/cookie_corner_statistics_form.html:21 amelie/personal_tab/templates/exports/screen.html:31 amelie/room_duty/templates/room_duty/table/overview.html:154 amelie/statistics/templates/statistics.html:5 amelie/statistics/templates/statistics.html:10 +#: amelie/companies/templates/companies/company_statistics.html:23 +#: amelie/personal_tab/templates/cookie_corner_overview.html:19 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:456 +#: amelie/personal_tab/templates/cookie_corner_statistics_form.html:21 +#: amelie/personal_tab/templates/exports/screen.html:31 +#: amelie/room_duty/templates/room_duty/table/overview.html:154 +#: amelie/statistics/templates/statistics.html:5 +#: amelie/statistics/templates/statistics.html:10 msgid "Statistics" msgstr "Statistieken" @@ -3426,7 +4438,9 @@ msgstr "" "\n" "Hou er rekening mee dat historische data incorrect kan zijn. Veel banners en company corner pagina's worden hergebruikt, met een nieuwe start en einddatum." -#: amelie/companies/templates/companies/company_statistics.html:45 amelie/personal_tab/templates/cookie_corner_statistics.html:18 amelie/personal_tab/templates/exports/screen.html:9 +#: amelie/companies/templates/companies/company_statistics.html:45 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:18 +#: amelie/personal_tab/templates/exports/screen.html:9 msgid "Start date" msgstr "Begindatum:" @@ -3434,15 +4448,18 @@ msgstr "Begindatum:" msgid "End date" msgstr "Eind datum" -#: amelie/companies/templates/companies/company_statistics.html:72 amelie/companies/templates/companies/company_statistics.html:102 +#: amelie/companies/templates/companies/company_statistics.html:72 +#: amelie/companies/templates/companies/company_statistics.html:102 msgid "Name (company)" msgstr "Naam (bedrijf)" -#: amelie/companies/templates/companies/company_statistics.html:73 amelie/companies/templates/companies/company_statistics.html:103 +#: amelie/companies/templates/companies/company_statistics.html:73 +#: amelie/companies/templates/companies/company_statistics.html:103 msgid "Set start date" msgstr "Gegeven startdatum" -#: amelie/companies/templates/companies/company_statistics.html:74 amelie/companies/templates/companies/company_statistics.html:104 +#: amelie/companies/templates/companies/company_statistics.html:74 +#: amelie/companies/templates/companies/company_statistics.html:104 msgid "Set end date" msgstr "Gegeven einddatum" @@ -3490,7 +4507,8 @@ msgstr "Code waarmee deze export gedownload kan worden." msgid "The person whose data export this is." msgstr "De persoon van wie deze data-export is." -#: amelie/data_export/models.py:34 amelie/data_export/templates/data_export/dataexport_download_details.html:6 +#: amelie/data_export/models.py:34 +#: amelie/data_export/templates/data_export/dataexport_download_details.html:6 msgid "Filename" msgstr "Bestandsnaam" @@ -3514,7 +4532,8 @@ msgstr "Tijdstempel van afronding" msgid "The time that this data export was completed." msgstr "De tijd waarop de data-export compleet was." -#: amelie/data_export/models.py:43 amelie/data_export/templates/data_export/dataexport_download_details.html:18 +#: amelie/data_export/models.py:43 +#: amelie/data_export/templates/data_export/dataexport_download_details.html:18 msgid "Number of times downloaded" msgstr "Aantal keer gedownload" @@ -3586,7 +4605,8 @@ msgstr "De homemap van je Inter-Actief actieveledenaccount (waarschuwing, kan he msgid "Which data export this status belongs to" msgstr "Bij welke data-export deze status hoort" -#: amelie/data_export/models.py:102 amelie/oauth/templates/oauth_access_request.mail:7 +#: amelie/data_export/models.py:102 +#: amelie/oauth/templates/oauth_access_request.mail:7 msgid "Application" msgstr "Applicatie" @@ -3594,7 +4614,8 @@ msgstr "Applicatie" msgid "The name of the application you want to export data from." msgstr "De naam van de applicatie waar je data van wilt exporteren." -#: amelie/data_export/models.py:105 amelie/data_export/templates/data_export/dataexport_detail.html:84 +#: amelie/data_export/models.py:105 +#: amelie/data_export/templates/data_export/dataexport_detail.html:84 msgid "Export status" msgstr "Exporteerstatus" @@ -3614,7 +4635,8 @@ msgstr "Applicatiestatussen" msgid "Export status for {} of {} ({})" msgstr "Exportstatus voor {} van {} ({})" -#: amelie/data_export/templates/data_export/dataexport_detail.html:54 amelie/data_export/templates/data_export/dataexport_detail.html:79 +#: amelie/data_export/templates/data_export/dataexport_detail.html:54 +#: amelie/data_export/templates/data_export/dataexport_detail.html:79 msgid "Download your finished data export here." msgstr "Download hier je klaargemaakte data-export." @@ -3622,7 +4644,9 @@ msgstr "Download hier je klaargemaakte data-export." msgid "Your data export is not finished yet! Please check the status below." msgstr "Je data-export is nog niet klaar! Bekijk hieronder de status." -#: amelie/data_export/templates/data_export/dataexport_detail.html:88 amelie/tools/models.py:27 amelie/tools/templates/data_export_statistics.html:27 +#: amelie/data_export/templates/data_export/dataexport_detail.html:88 +#: amelie/tools/models.py:27 +#: amelie/tools/templates/data_export_statistics.html:27 msgid "Export type" msgstr "Exporttype" @@ -3634,7 +4658,8 @@ msgstr "Je hebt geen dingen geëxporteerd! Ben jij een tovenaar?" msgid "Download details" msgstr "Downloaddetails" -#: amelie/data_export/templates/data_export/dataexport_download_details.html:10 amelie/data_export/templates/data_export/dataexport_download_details.html:36 +#: amelie/data_export/templates/data_export/dataexport_download_details.html:10 +#: amelie/data_export/templates/data_export/dataexport_download_details.html:36 msgid "Requested on" msgstr "Aangevraagd op" @@ -3651,7 +4676,8 @@ msgstr "%(download_count)s keer" msgid "Size" msgstr "Grootte" -#: amelie/data_export/templates/data_export/dataexport_download_details.html:26 amelie/data_export/templates/data_export/dataexport_download_details.html:40 +#: amelie/data_export/templates/data_export/dataexport_download_details.html:26 +#: amelie/data_export/templates/data_export/dataexport_download_details.html:40 msgid "Expiry date" msgstr "Verloopdatum" @@ -3659,11 +4685,15 @@ msgstr "Verloopdatum" msgid "Download export" msgstr "Download export" -#: amelie/data_export/templates/data_export/dataexport_download_details.html:33 amelie/tools/models.py:30 amelie/tools/templates/data_export_statistics.html:30 +#: amelie/data_export/templates/data_export/dataexport_download_details.html:33 +#: amelie/tools/models.py:30 +#: amelie/tools/templates/data_export_statistics.html:30 msgid "Export details" msgstr "Exportdetails" -#: amelie/data_export/templates/data_export/dataexport_form.html:5 amelie/data_export/templates/data_export/dataexport_form.html:21 templates/profile_overview.html:23 +#: amelie/data_export/templates/data_export/dataexport_form.html:5 +#: amelie/data_export/templates/data_export/dataexport_form.html:21 +#: templates/profile_overview.html:23 msgid "Export personal data" msgstr "Exporteer persoonlijke gegevens" @@ -3769,19 +4799,35 @@ msgstr "Deze export is gemaakt door Amélie, de website en ledenadministratie va msgid "For comments or problems, please contact us at www@inter-actief.net." msgstr "Voor opmerkingen of problemen, neem a.u.b. contact op met www@inter-actief.net." -#: amelie/data_export/views.py:99 amelie/data_export/views.py:127 amelie/data_export/views.py:130 +#: amelie/data_export/views.py:99 amelie/data_export/views.py:127 +#: amelie/data_export/views.py:130 msgid "Could not find a data export download with this code." msgstr "Kon geen data-export download vinden met deze code." -#: amelie/education/forms.py:44 amelie/education/models.py:207 amelie/education/models.py:216 +#: amelie/education/forms.py:44 amelie/education/models.py:207 +#: amelie/education/models.py:216 msgid "Module" msgstr "Module" -#: amelie/education/forms.py:45 amelie/education/forms.py:52 amelie/education/forms.py:87 amelie/education/models.py:220 amelie/education/templates/complaints.html:59 amelie/education/templates/complaints.html:119 amelie/members/models.py:143 amelie/members/models.py:766 amelie/members/templates/includes/query/query_study.html:4 amelie/members/templates/members/datablock_html.mail:13 amelie/members/templates/members/datablock_plain.mail:12 amelie/members/templates/person_edit_study.html:12 amelie/members/templates/registration_check.html:44 amelie/members/templates/statistics/overview.html:34 amelie/tools/pdf.py:139 amelie/tools/pdf.py:144 templates/profile_edit.html:80 +#: amelie/education/forms.py:45 amelie/education/forms.py:52 +#: amelie/education/forms.py:87 amelie/education/models.py:220 +#: amelie/education/templates/complaints.html:59 +#: amelie/education/templates/complaints.html:119 amelie/members/models.py:143 +#: amelie/members/models.py:766 +#: amelie/members/templates/includes/query/query_study.html:4 +#: amelie/members/templates/members/datablock_html.mail:13 +#: amelie/members/templates/members/datablock_plain.mail:12 +#: amelie/members/templates/person_edit_study.html:12 +#: amelie/members/templates/registration_check.html:44 +#: amelie/members/templates/statistics/overview.html:34 amelie/tools/pdf.py:139 +#: amelie/tools/pdf.py:144 templates/profile_edit.html:80 msgid "Course" msgstr "Vak" -#: amelie/education/forms.py:55 amelie/education/models.py:131 amelie/education/models.py:264 amelie/members/models.py:850 amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:18 amelie/personal_tab/templates/lists/transactions_totals.html:18 +#: amelie/education/forms.py:55 amelie/education/models.py:131 +#: amelie/education/models.py:264 amelie/members/models.py:850 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:18 +#: amelie/personal_tab/templates/lists/transactions_totals.html:18 msgid "Year" msgstr "Jaar" @@ -3793,15 +4839,22 @@ msgstr "Als een nakijktermijn verstreken is, moet je een vak selecteren" msgid "Fill in a summary and comments" msgstr "Vul een samenvatting en opmerking in." -#: amelie/education/forms.py:86 amelie/education/templates/dea_nomination.html:21 amelie/education/templates/dea_vote.html:17 +#: amelie/education/forms.py:86 +#: amelie/education/templates/dea_nomination.html:21 +#: amelie/education/templates/dea_vote.html:17 msgid "Teacher" msgstr "Docent" -#: amelie/education/forms.py:88 amelie/education/templates/dea_nomination.html:25 amelie/personal_tab/templates/cookie_corner/reversal_transaction_detail.html:23 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:149 amelie/tools/templates/data_export_statistics.html:28 +#: amelie/education/forms.py:88 +#: amelie/education/templates/dea_nomination.html:25 +#: amelie/personal_tab/templates/cookie_corner/reversal_transaction_detail.html:23 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:149 +#: amelie/tools/templates/data_export_statistics.html:28 msgid "Reason" msgstr "Reden" -#: amelie/education/forms.py:89 amelie/weekmail/templates/weekmail/weekmail_wizard.html:27 +#: amelie/education/forms.py:89 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:27 msgid "Author" msgstr "Auteur" @@ -3821,7 +4874,11 @@ msgstr "Modulenaam" msgid "Name of course" msgstr "Naam vak" -#: amelie/education/models.py:30 amelie/members/forms.py:735 amelie/members/models.py:930 amelie/personal_tab/models.py:283 amelie/personal_tab/models.py:341 amelie/personal_tab/templates/cookie_corner_statistics.html:58 amelie/personal_tab/templates/price_list.html:14 +#: amelie/education/models.py:30 amelie/members/forms.py:735 +#: amelie/members/models.py:930 amelie/personal_tab/models.py:283 +#: amelie/personal_tab/models.py:341 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:58 +#: amelie/personal_tab/templates/price_list.html:14 msgid "Category" msgstr "Categorie" @@ -3885,7 +4942,8 @@ msgstr "Vakcode" msgid "Modules" msgstr "Modules" -#: amelie/education/models.py:221 amelie/education/templates/summaries.html:22 amelie/members/models.py:219 +#: amelie/education/models.py:221 amelie/education/templates/summaries.html:22 +#: amelie/members/models.py:219 msgid "Courses" msgstr "Vakken" @@ -3905,7 +4963,8 @@ msgstr "Informatievoorziening" msgid "Internationalization" msgstr "Internationalisering" -#: amelie/education/models.py:239 amelie/members/templates/statistics/overview.html:97 +#: amelie/education/models.py:239 +#: amelie/members/templates/statistics/overview.html:97 msgid "Otherwise" msgstr "Anders" @@ -3961,11 +5020,16 @@ msgstr "Vak of Module" msgid "Term" msgstr "Periode" -#: amelie/education/models.py:269 amelie/education/models.py:286 amelie/education/templates/complaint.html:4 amelie/education/templates/complaint.html:9 amelie/education/templates/complaint_new.html:71 amelie/education/templates/complaints.html:165 +#: amelie/education/models.py:269 amelie/education/models.py:286 +#: amelie/education/templates/complaint.html:4 +#: amelie/education/templates/complaint.html:9 +#: amelie/education/templates/complaint_new.html:71 +#: amelie/education/templates/complaints.html:165 msgid "Complaint" msgstr "Klacht" -#: amelie/education/models.py:270 templates/basis.html:235 templates/frontpage.html:234 +#: amelie/education/models.py:270 templates/basis.html:235 +#: templates/frontpage.html:246 msgid "Complaints" msgstr "Klachten" @@ -3993,7 +5057,9 @@ msgstr "Stem" msgid "Votes" msgstr "Stemmen" -#: amelie/education/templates/awards.html:4 amelie/education/templates/awards.html:11 amelie/education/templates/awards.html:28 templates/basis.html:237 +#: amelie/education/templates/awards.html:4 +#: amelie/education/templates/awards.html:11 +#: amelie/education/templates/awards.html:28 templates/basis.html:237 msgid "Education awards" msgstr "Onderwijsprijzen" @@ -4001,7 +5067,9 @@ msgstr "Onderwijsprijzen" msgid "There is currently no information available on the education awards." msgstr "Er is op het moment geen informatie beschikbaar over de onderwijsprijs." -#: amelie/education/templates/category_edit.html:4 amelie/education/templates/category_new.html:4 amelie/education/templates/category_new.html:8 +#: amelie/education/templates/category_edit.html:4 +#: amelie/education/templates/category_new.html:4 +#: amelie/education/templates/category_new.html:8 msgid "New category" msgstr "Nieuwe categorie" @@ -4013,7 +5081,11 @@ msgstr "Categorie opslaan" msgid "Create category" msgstr "Categorie aanmaken" -#: amelie/education/templates/complaint.html:34 amelie/education/templates/complaint.html:123 amelie/education/templates/complaints.html:69 amelie/education/templates/complaints.html:129 amelie/education/templates/complaints.html:196 +#: amelie/education/templates/complaint.html:34 +#: amelie/education/templates/complaint.html:123 +#: amelie/education/templates/complaints.html:69 +#: amelie/education/templates/complaints.html:129 +#: amelie/education/templates/complaints.html:196 #, python-format msgid "Added %(time)s ago" msgstr "%(time)s geleden geplaatst" @@ -4035,11 +5107,15 @@ msgstr "Klacht heropenen" msgid "This complaint has %(amount)s people supporting it." msgstr "Deze klacht heeft %(amount)s medestander(s)." -#: amelie/education/templates/complaint.html:69 amelie/education/templates/complaints.html:80 amelie/education/templates/complaints.html:140 +#: amelie/education/templates/complaint.html:69 +#: amelie/education/templates/complaints.html:80 +#: amelie/education/templates/complaints.html:140 msgid "I suffer from these problems too" msgstr "Je hebt hier ook last van" -#: amelie/education/templates/complaint.html:70 amelie/education/templates/complaints.html:78 amelie/education/templates/complaints.html:138 +#: amelie/education/templates/complaint.html:70 +#: amelie/education/templates/complaints.html:78 +#: amelie/education/templates/complaints.html:138 msgid "I do not suffer from this" msgstr "Geen last van" @@ -4047,7 +5123,9 @@ msgstr "Geen last van" msgid "You have not indicated this bothers you, too" msgstr "Je hebt niet aangegeven hier last van te hebben" -#: amelie/education/templates/complaint.html:73 amelie/education/templates/complaints.html:83 amelie/education/templates/complaints.html:143 +#: amelie/education/templates/complaint.html:73 +#: amelie/education/templates/complaints.html:83 +#: amelie/education/templates/complaints.html:143 msgid "Agree with this complaint" msgstr "Ook last van" @@ -4059,7 +5137,10 @@ msgstr "Je bent de melder van deze klacht" msgid "This complaint is anonymous" msgstr "Deze klacht is anoniem ingediend" -#: amelie/education/templates/complaint.html:85 amelie/education/templates/complaints.html:44 amelie/education/templates/complaints.html:110 amelie/education/templates/complaints.html:181 +#: amelie/education/templates/complaint.html:85 +#: amelie/education/templates/complaints.html:44 +#: amelie/education/templates/complaints.html:110 +#: amelie/education/templates/complaints.html:181 msgid "This complaint is not public" msgstr "Deze klacht is niet publiek" @@ -4067,7 +5148,10 @@ msgstr "Deze klacht is niet publiek" msgid "This complaint is dealt with" msgstr "Deze klacht is afgehandeld" -#: amelie/education/templates/complaint.html:95 amelie/education/templates/complaints.html:170 amelie/room_duty/models.py:254 amelie/room_duty/templates/room_duty/table/fill.html:22 +#: amelie/education/templates/complaint.html:95 +#: amelie/education/templates/complaints.html:170 +#: amelie/room_duty/models.py:254 +#: amelie/room_duty/templates/room_duty/table/fill.html:22 msgid "Comments" msgstr "Opmerkingen" @@ -4079,11 +5163,14 @@ msgstr "Opmerking van Onderwijscommissie" msgid "This message is visible only to the original poster, the commenter and the Committee of Education" msgstr "Dit bericht is alleen voor de melder, de plaatser van de opmerking en de Onderwijscommissie" -#: amelie/education/templates/complaint.html:131 amelie/news/templates/news_item.html:24 amelie/news/templates/news_item_delete.html:15 +#: amelie/education/templates/complaint.html:131 +#: amelie/news/templates/news_item.html:24 +#: amelie/news/templates/news_item_delete.html:15 msgid "Remove message" msgstr "Verwijder bericht" -#: amelie/education/templates/complaint.html:132 amelie/news/templates/news_item.html:21 +#: amelie/education/templates/complaint.html:132 +#: amelie/news/templates/news_item.html:21 msgid "Edit message" msgstr "Wijzig bericht" @@ -4119,7 +5206,8 @@ msgstr "Als je deze opmerking plaatst als Onderwijscommissie lid komt er een rod msgid "Post" msgstr "Plaatsen" -#: amelie/education/templates/complaint_new.html:4 amelie/education/templates/complaint_new.html:8 +#: amelie/education/templates/complaint_new.html:4 +#: amelie/education/templates/complaint_new.html:8 msgid "Add complaint" msgstr "Klacht indienen" @@ -4237,7 +5325,8 @@ msgstr "Je kunt de klacht nu indienen, bedankt!" msgid "Submit" msgstr "Indienen" -#: amelie/education/templates/complaints.html:4 amelie/education/templates/complaints.html:8 +#: amelie/education/templates/complaints.html:4 +#: amelie/education/templates/complaints.html:8 msgid "Complaint overview" msgstr "Klachtenoverzicht" @@ -4263,15 +5352,20 @@ msgstr "Er zijn geen publieke openstaande klachten" msgid "File new complaint" msgstr "Nieuwe klacht indienen" -#: amelie/education/templates/complaints.html:41 amelie/education/templates/complaints.html:107 +#: amelie/education/templates/complaints.html:41 +#: amelie/education/templates/complaints.html:107 msgid "This is your complaint" msgstr "Dit is jouw klacht" -#: amelie/education/templates/complaints.html:53 amelie/education/templates/complaints.html:113 amelie/education/templates/complaints.html:167 +#: amelie/education/templates/complaints.html:53 +#: amelie/education/templates/complaints.html:113 +#: amelie/education/templates/complaints.html:167 msgid "Number of fellow students with the same complaint" msgstr "Aantal mensen die er last van hebben" -#: amelie/education/templates/complaints.html:54 amelie/education/templates/complaints.html:114 amelie/education/templates/complaints.html:170 +#: amelie/education/templates/complaints.html:54 +#: amelie/education/templates/complaints.html:114 +#: amelie/education/templates/complaints.html:170 msgid "Number of comments" msgstr "Aantal opmerkingen geplaatst" @@ -4291,7 +5385,8 @@ msgstr "Medestanders" msgid "These complaints have been received concerning this course" msgstr "Over dit vak zijn de volgende klachten binnengekomen" -#: amelie/education/templates/course_new.html:4 amelie/education/templates/course_new.html:10 +#: amelie/education/templates/course_new.html:4 +#: amelie/education/templates/course_new.html:10 msgid "Add course" msgstr "Vak toevoegen" @@ -4307,7 +5402,8 @@ msgstr "Nominatie Onderwijsprijs" msgid "Education award nomination" msgstr "Onderwijsprijs nominatie" -#: amelie/education/templates/dea_nomination.html:11 amelie/education/templates/dea_vote.html:11 +#: amelie/education/templates/dea_nomination.html:11 +#: amelie/education/templates/dea_vote.html:11 msgid "Which teacher should receive the Educational Award?" msgstr "Welke docent moet de onderwijsprijs krijgen?" @@ -4319,15 +5415,20 @@ msgstr "Je naam" msgid "Your e-mail address" msgstr "Je emailadres" -#: amelie/education/templates/dea_nomination.html:38 amelie/education/templates/dea_vote.html:21 +#: amelie/education/templates/dea_nomination.html:38 +#: amelie/education/templates/dea_vote.html:21 msgid "Recover all data" msgstr "Herstel alle gegevens" -#: amelie/education/templates/dea_nomination.html:39 amelie/education/templates/dea_vote.html:22 amelie/education/templates/educational_bouquet.html:44 amelie/weekmail/templates/weekmail/weekmail_wizard.html:248 +#: amelie/education/templates/dea_nomination.html:39 +#: amelie/education/templates/dea_vote.html:22 +#: amelie/education/templates/educational_bouquet.html:44 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:248 msgid "Send" msgstr "Verzenden" -#: amelie/education/templates/dea_vote.html:4 amelie/education/templates/dea_vote.html:8 +#: amelie/education/templates/dea_vote.html:4 +#: amelie/education/templates/dea_vote.html:8 msgid "Vote for the Educational Award" msgstr "Stem voor de onderwijsprijs" @@ -4340,7 +5441,10 @@ msgstr "Ik had college van deze docent(en)" msgid "Complaint handled: %(complaint_subject)s" msgstr "Klacht afgehandeld: %(complaint_subject)s" -#: amelie/education/templates/education/complaint_closed.mail:7 amelie/education/templates/education/complaint_comment.mail:6 amelie/education/templates/education/complaint_notification.mail:6 amelie/education/templates/education/new_complaint_notification.mail:6 +#: amelie/education/templates/education/complaint_closed.mail:7 +#: amelie/education/templates/education/complaint_comment.mail:6 +#: amelie/education/templates/education/complaint_notification.mail:6 +#: amelie/education/templates/education/new_complaint_notification.mail:6 msgid "Dear EC member," msgstr "Beste EC'er," @@ -4363,7 +5467,8 @@ msgstr "" "\n" "Met vriendelijke groet," -#: amelie/education/templates/education/complaint_comment.mail:4 amelie/education/templates/education/complaint_progress.mail:4 +#: amelie/education/templates/education/complaint_comment.mail:4 +#: amelie/education/templates/education/complaint_progress.mail:4 #, python-format msgid "Progress complaint %(complaint_subject)s" msgstr "Voortgang klacht %(complaint_subject)s" @@ -4591,27 +5696,35 @@ msgstr "Onderwijsactiviteit toevoegen" msgid "Edit educational activity" msgstr "Onderwijsactiviteit wijzigen" -#: amelie/education/templates/education_event_overview.html:4 amelie/education/templates/education_event_overview.html:8 +#: amelie/education/templates/education_event_overview.html:4 +#: amelie/education/templates/education_event_overview.html:8 msgid "Educational activities" msgstr "Onderwijsactiviteiten" -#: amelie/education/templates/education_event_overview.html:16 amelie/education/templates/education_event_overview.html:66 +#: amelie/education/templates/education_event_overview.html:16 +#: amelie/education/templates/education_event_overview.html:66 msgid "Educational activity" msgstr "Onderwijsactiviteit" -#: amelie/education/templates/education_news.html:5 amelie/news/templates/news_items.html:5 templates/basis.html:138 templates/frontpage.html:146 +#: amelie/education/templates/education_news.html:5 +#: amelie/news/templates/news_items.html:5 templates/basis.html:138 +#: templates/frontpage.html:158 msgid "News" msgstr "Nieuws" -#: amelie/education/templates/education_news.html:26 amelie/news/templates/news_items.html:27 +#: amelie/education/templates/education_news.html:26 +#: amelie/news/templates/news_items.html:27 msgid "No articles" msgstr "Geen artikelen" -#: amelie/education/templates/education_news.html:28 amelie/news/templates/news_items.html:29 +#: amelie/education/templates/education_news.html:28 +#: amelie/news/templates/news_items.html:29 msgid "There are no education news articles available." msgstr "Er zijn geen onderwijsnieuwsberichten beschikbaar." -#: amelie/education/templates/educational_bouquet.html:4 amelie/education/templates/educational_bouquet.html:10 templates/basis.html:236 +#: amelie/education/templates/educational_bouquet.html:4 +#: amelie/education/templates/educational_bouquet.html:10 +#: templates/basis.html:236 msgid "Educational bouquet" msgstr "Onderwijsbloemetje" @@ -4657,7 +5770,8 @@ msgstr "Vorige bloemetjes" msgid "These complaints have been received concerning this module" msgstr "Over deze module zijn de volgende klachten binnengekomen" -#: amelie/education/templates/module_new.html:4 amelie/education/templates/module_new.html:10 +#: amelie/education/templates/module_new.html:4 +#: amelie/education/templates/module_new.html:10 msgid "Add module" msgstr "Module toevoegen" @@ -4669,7 +5783,8 @@ msgstr "Vakcode van de module" msgid "Education" msgstr "Onderwijs" -#: amelie/education/templates/overview.html:12 amelie/members/models.py:941 templates/basis.html:226 +#: amelie/education/templates/overview.html:12 amelie/members/models.py:941 +#: templates/basis.html:226 msgid "Information" msgstr "Informatie" @@ -4730,7 +5845,8 @@ msgstr "Bestand niet gevonden" msgid "Stay logged in" msgstr "Blijf ingelogd" -#: amelie/gmm/templates/gmm_overview.html:5 amelie/gmm/templates/gmm_overview.html:29 templates/basis.html:185 +#: amelie/gmm/templates/gmm_overview.html:5 +#: amelie/gmm/templates/gmm_overview.html:29 templates/basis.html:185 msgid "GMM documents" msgstr "ALV-stukken" @@ -4805,11 +5921,14 @@ msgstr "Change language preference/Voorkeurstaal wijzigen:" msgid "Delivery report" msgstr "Afleverrapport" -#: amelie/iamailer/templates/iamailer/report.mail:8 amelie/iamailer/templates/iamailer/report.mail:36 amelie/tools/templates/tools/push_report.mail:6 +#: amelie/iamailer/templates/iamailer/report.mail:8 +#: amelie/iamailer/templates/iamailer/report.mail:36 +#: amelie/tools/templates/tools/push_report.mail:6 msgid "Hey there," msgstr "Hallo daar," -#: amelie/iamailer/templates/iamailer/report.mail:12 amelie/iamailer/templates/iamailer/report.mail:38 +#: amelie/iamailer/templates/iamailer/report.mail:12 +#: amelie/iamailer/templates/iamailer/report.mail:38 msgid "You receive this e-mail report because you send a mailing." msgstr "Je ontvangt dit e-mailrapport omdat je een mailing verstuurd hebt." @@ -4823,7 +5942,8 @@ msgstr "" "\n" "Er zijn %(mail_count)s berichten verstuurd. Hiervan zijn er %(sent_count)s geaccepteerd en %(error_count)s niet geaccepteerd." -#: amelie/iamailer/templates/iamailer/report.mail:23 amelie/iamailer/templates/iamailer/report.mail:42 +#: amelie/iamailer/templates/iamailer/report.mail:23 +#: amelie/iamailer/templates/iamailer/report.mail:42 msgid "The construction or sending of the message has failed for the following people:" msgstr "Bij de volgende personen is het opstellen of verzenden van het bericht mislukt:" @@ -4834,23 +5954,65 @@ msgstr "" "Er zijn %(mail_count)s berichten verstuurd. Hiervan zijn er %(sent_count)s geaccepteerd\n" "en %(error_count)s niet geaccepteerd." -#: amelie/members/forms.py:33 amelie/members/models.py:310 amelie/members/models.py:1124 amelie/members/templates/includes/person_data_table.html:27 amelie/members/templates/includes/registration/data_overview_employee.html:11 amelie/members/templates/includes/registration/data_overview_external.html:11 amelie/members/templates/includes/registration/data_overview_freshmen.html:11 amelie/members/templates/includes/registration/data_overview_general.html:11 amelie/members/templates/includes/registration/personal_details.html:55 amelie/members/templates/includes/registration/personal_details_employee.html:55 amelie/members/templates/members/datablock_html.mail:9 amelie/members/templates/members/datablock_plain.mail:8 amelie/tools/pdf.py:100 +#: amelie/members/forms.py:33 amelie/members/models.py:310 +#: amelie/members/models.py:1124 +#: amelie/members/templates/includes/person_data_table.html:27 +#: amelie/members/templates/includes/registration/data_overview_employee.html:11 +#: amelie/members/templates/includes/registration/data_overview_external.html:11 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:11 +#: amelie/members/templates/includes/registration/data_overview_general.html:11 +#: amelie/members/templates/includes/registration/personal_details.html:55 +#: amelie/members/templates/includes/registration/personal_details_employee.html:55 +#: amelie/members/templates/members/datablock_html.mail:9 +#: amelie/members/templates/members/datablock_plain.mail:8 +#: amelie/tools/pdf.py:100 msgid "Gender" msgstr "Geslacht" -#: amelie/members/forms.py:34 amelie/members/models.py:312 amelie/members/models.py:1126 amelie/members/templates/includes/person_data_table.html:33 amelie/members/templates/includes/registration/data_overview_employee.html:17 amelie/members/templates/includes/registration/data_overview_external.html:17 amelie/members/templates/includes/registration/data_overview_freshmen.html:17 amelie/members/templates/includes/registration/data_overview_general.html:17 amelie/members/templates/includes/registration/personal_details.html:81 amelie/members/templates/includes/registration/personal_details_employee.html:81 amelie/members/templates/members/datablock_html.mail:10 amelie/members/templates/members/datablock_plain.mail:9 amelie/tools/pdf.py:104 +#: amelie/members/forms.py:34 amelie/members/models.py:312 +#: amelie/members/models.py:1126 +#: amelie/members/templates/includes/person_data_table.html:33 +#: amelie/members/templates/includes/registration/data_overview_employee.html:17 +#: amelie/members/templates/includes/registration/data_overview_external.html:17 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:17 +#: amelie/members/templates/includes/registration/data_overview_general.html:17 +#: amelie/members/templates/includes/registration/personal_details.html:81 +#: amelie/members/templates/includes/registration/personal_details_employee.html:81 +#: amelie/members/templates/members/datablock_html.mail:10 +#: amelie/members/templates/members/datablock_plain.mail:9 +#: amelie/tools/pdf.py:104 msgid "Language of preference" msgstr "Voorkeurstaal" -#: amelie/members/forms.py:36 amelie/members/models.py:314 amelie/members/models.py:1128 amelie/members/templates/includes/person_data_table.html:30 amelie/members/templates/includes/registration/personal_details.html:93 +#: amelie/members/forms.py:36 amelie/members/models.py:314 +#: amelie/members/models.py:1128 +#: amelie/members/templates/includes/person_data_table.html:30 +#: amelie/members/templates/includes/registration/personal_details.html:93 msgid "International student" msgstr "Internationale student" -#: amelie/members/forms.py:37 amelie/members/models.py:316 amelie/members/models.py:1129 amelie/members/templates/includes/person_data_table.html:23 amelie/members/templates/includes/registration/data_overview_employee.html:8 amelie/members/templates/includes/registration/data_overview_external.html:8 amelie/members/templates/includes/registration/data_overview_freshmen.html:8 amelie/members/templates/includes/registration/data_overview_general.html:8 amelie/members/templates/includes/registration/personal_details.html:42 amelie/members/templates/includes/registration/personal_details_employee.html:42 amelie/members/templates/members/datablock_html.mail:7 amelie/members/templates/members/datablock_plain.mail:6 amelie/tools/pdf.py:102 +#: amelie/members/forms.py:37 amelie/members/models.py:316 +#: amelie/members/models.py:1129 +#: amelie/members/templates/includes/person_data_table.html:23 +#: amelie/members/templates/includes/registration/data_overview_employee.html:8 +#: amelie/members/templates/includes/registration/data_overview_external.html:8 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:8 +#: amelie/members/templates/includes/registration/data_overview_general.html:8 +#: amelie/members/templates/includes/registration/personal_details.html:42 +#: amelie/members/templates/includes/registration/personal_details_employee.html:42 +#: amelie/members/templates/members/datablock_html.mail:7 +#: amelie/members/templates/members/datablock_plain.mail:6 +#: amelie/tools/pdf.py:102 msgid "Birth date" msgstr "Geboortedatum" -#: amelie/members/forms.py:39 amelie/members/models.py:350 amelie/members/models.py:1147 amelie/members/templates/includes/query/query_preference.html:4 amelie/members/templates/members/datablock_html.mail:24 amelie/members/templates/members/datablock_plain.mail:22 amelie/members/templates/person.html:62 amelie/tools/pdf.py:152 templates/profile_edit.html:70 +#: amelie/members/forms.py:39 amelie/members/models.py:350 +#: amelie/members/models.py:1147 +#: amelie/members/templates/includes/query/query_preference.html:4 +#: amelie/members/templates/members/datablock_html.mail:24 +#: amelie/members/templates/members/datablock_plain.mail:22 +#: amelie/members/templates/person.html:62 amelie/tools/pdf.py:152 +#: templates/profile_edit.html:70 msgid "Preferences" msgstr "Voorkeuren" @@ -4890,11 +6052,14 @@ msgstr "Per direct" msgid "At the end of the association year" msgstr "Aan het einde van het verenigingsjaar" -#: amelie/members/forms.py:276 amelie/members/forms.py:362 amelie/members/forms.py:441 amelie/members/forms.py:653 +#: amelie/members/forms.py:276 amelie/members/forms.py:362 +#: amelie/members/forms.py:441 amelie/members/forms.py:653 msgid "BIC has to be entered for foreign bankaccounts." msgstr "BIC moet ingevuld worden met een buitenlandse rekening" -#: amelie/members/forms.py:280 amelie/members/forms.py:366 amelie/members/forms.py:445 amelie/members/forms.py:657 amelie/personal_tab/forms.py:99 +#: amelie/members/forms.py:280 amelie/members/forms.py:366 +#: amelie/members/forms.py:445 amelie/members/forms.py:657 +#: amelie/personal_tab/forms.py:99 msgid "BIC could not be generated, please enter yourself." msgstr "Kon BIC niet automatisch bepalen, vul deze alsjeblieft zelf in." @@ -4902,11 +6067,30 @@ msgstr "Kon BIC niet automatisch bepalen, vul deze alsjeblieft zelf in." msgid "Choose a name from the suggestions." msgstr "Kies een naam uit de suggesties." -#: amelie/members/forms.py:322 amelie/members/forms.py:401 amelie/members/forms.py:609 amelie/members/query_forms.py:84 amelie/members/templates/includes/registration/authorizations.html:58 amelie/members/templates/includes/registration/data_overview_employee.html:62 amelie/members/templates/includes/registration/data_overview_external.html:62 amelie/members/templates/includes/registration/data_overview_freshmen.html:94 amelie/members/templates/includes/registration/data_overview_general.html:71 amelie/personal_tab/forms.py:78 amelie/personal_tab/forms.py:118 amelie/personal_tab/models.py:491 amelie/personal_tab/templates/cookie_corner_authorization_view.html:33 amelie/tools/pdf.py:413 +#: amelie/members/forms.py:322 amelie/members/forms.py:401 +#: amelie/members/forms.py:609 amelie/members/query_forms.py:84 +#: amelie/members/templates/includes/registration/authorizations.html:58 +#: amelie/members/templates/includes/registration/data_overview_employee.html:62 +#: amelie/members/templates/includes/registration/data_overview_external.html:62 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:94 +#: amelie/members/templates/includes/registration/data_overview_general.html:71 +#: amelie/personal_tab/forms.py:78 amelie/personal_tab/forms.py:118 +#: amelie/personal_tab/models.py:491 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:33 +#: amelie/tools/pdf.py:413 msgid "IBAN" msgstr "IBAN" -#: amelie/members/forms.py:323 amelie/members/forms.py:402 amelie/members/forms.py:610 amelie/members/templates/includes/registration/authorizations.html:71 amelie/members/templates/includes/registration/data_overview_employee.html:65 amelie/members/templates/includes/registration/data_overview_external.html:65 amelie/members/templates/includes/registration/data_overview_freshmen.html:97 amelie/members/templates/includes/registration/data_overview_general.html:74 amelie/personal_tab/forms.py:119 amelie/personal_tab/models.py:494 amelie/personal_tab/templates/cookie_corner_authorization_view.html:37 amelie/tools/pdf.py:415 +#: amelie/members/forms.py:323 amelie/members/forms.py:402 +#: amelie/members/forms.py:610 +#: amelie/members/templates/includes/registration/authorizations.html:71 +#: amelie/members/templates/includes/registration/data_overview_employee.html:65 +#: amelie/members/templates/includes/registration/data_overview_external.html:65 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:97 +#: amelie/members/templates/includes/registration/data_overview_general.html:74 +#: amelie/personal_tab/forms.py:119 amelie/personal_tab/models.py:494 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:37 +#: amelie/tools/pdf.py:415 msgid "BIC" msgstr "BIC" @@ -4914,15 +6098,18 @@ msgstr "BIC" msgid "A study has been chosen, but no cohort was specified. Enter the missing data to continue." msgstr "Er is wel een studie gekozen, maar geen generatie. Vul een generatie in om verder te gaan" -#: amelie/members/forms.py:359 amelie/members/forms.py:438 amelie/members/forms.py:650 +#: amelie/members/forms.py:359 amelie/members/forms.py:438 +#: amelie/members/forms.py:650 msgid "IBAN is required if a mandate is checked!" msgstr "IBAN moet ingevuld worden als er een machtiging aangevinkt is!" -#: amelie/members/forms.py:373 amelie/members/forms.py:451 amelie/members/forms.py:555 amelie/members/forms.py:573 +#: amelie/members/forms.py:373 amelie/members/forms.py:451 +#: amelie/members/forms.py:555 amelie/members/forms.py:573 msgid "A student with this student number already exists." msgstr "Student met dit studentnummer bestaat al." -#: amelie/members/forms.py:376 amelie/members/forms.py:453 amelie/members/forms.py:557 amelie/members/forms.py:575 +#: amelie/members/forms.py:376 amelie/members/forms.py:453 +#: amelie/members/forms.py:557 amelie/members/forms.py:575 msgid "This student number is already pre-enrolled. A board member can activate your account." msgstr "Dit studentnummer is al vooringeschreven. Een bestuurder kan je account activeren." @@ -4966,15 +6153,30 @@ msgstr "Op studentnummer" msgid "By order of pre-enrollment" msgstr "Op volgorde van voorinschrijving" -#: amelie/members/forms.py:701 amelie/members/models.py:1092 amelie/members/templates/committee_edit_members.html:34 amelie/members/templates/committee_edit_single_member.html:29 amelie/members/templates/committee_members.html:8 amelie/members/templates/includes/person_function_table.html:8 amelie/members/templates/person_edit_functions.html:17 +#: amelie/members/forms.py:701 amelie/members/models.py:1092 +#: amelie/members/templates/committee_edit_members.html:34 +#: amelie/members/templates/committee_edit_single_member.html:29 +#: amelie/members/templates/committee_members.html:8 +#: amelie/members/templates/includes/person_function_table.html:8 +#: amelie/members/templates/person_edit_functions.html:17 msgid "Position" msgstr "Functie" -#: amelie/members/forms.py:737 amelie/members/templates/includes/committee_data.html:20 +#: amelie/members/forms.py:737 +#: amelie/members/templates/includes/committee_data.html:20 msgid "Parent committee" msgstr "Oudercommissie" -#: amelie/members/forms.py:756 amelie/members/models.py:737 amelie/members/models.py:1158 amelie/members/templates/includes/registration/data_overview_freshmen.html:74 amelie/members/templates/includes/registration/data_overview_general.html:51 amelie/members/templates/includes/registration/study_freshmen.html:34 amelie/members/templates/includes/registration/study_general.html:34 amelie/members/templates/members/datablock_html.mail:12 amelie/members/templates/members/datablock_plain.mail:11 amelie/members/templates/registration_check.html:38 amelie/tools/pdf.py:141 amelie/tools/pdf.py:146 amelie/tools/pdf.py:408 amelie/tools/pdf.py:411 +#: amelie/members/forms.py:756 amelie/members/models.py:737 +#: amelie/members/models.py:1158 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:74 +#: amelie/members/templates/includes/registration/data_overview_general.html:51 +#: amelie/members/templates/includes/registration/study_freshmen.html:34 +#: amelie/members/templates/includes/registration/study_general.html:34 +#: amelie/members/templates/members/datablock_html.mail:12 +#: amelie/members/templates/members/datablock_plain.mail:11 +#: amelie/members/templates/registration_check.html:38 amelie/tools/pdf.py:141 +#: amelie/tools/pdf.py:146 amelie/tools/pdf.py:408 amelie/tools/pdf.py:411 msgid "Student number" msgstr "Studentnummer" @@ -4982,7 +6184,8 @@ msgstr "Studentnummer" msgid "There is no student with this student number." msgstr "Student met dit studentnummer bestaat niet." -#: amelie/members/models.py:37 amelie/members/models.py:58 amelie/members/models.py:83 amelie/members/models.py:926 +#: amelie/members/models.py:37 amelie/members/models.py:58 +#: amelie/members/models.py:83 amelie/members/models.py:926 msgid "Abbreviation" msgstr "Afkorting" @@ -5142,7 +6345,8 @@ msgstr "Instelbaar door gebruiker in profiel" msgid "Adjustable by the user on login" msgstr "Instelbaar door gebruiker bij aanmelding" -#: amelie/members/models.py:255 amelie/members/templates/person_mandate.html:63 amelie/room_duty/templates/room_duty/table/overview.html:90 +#: amelie/members/models.py:255 amelie/members/templates/person_mandate.html:63 +#: amelie/room_duty/templates/room_duty/table/overview.html:90 msgid "Print" msgstr "Print" @@ -5158,7 +6362,11 @@ msgstr "Man" msgid "Woman" msgstr "Vrouw" -#: amelie/members/models.py:290 amelie/personal_tab/templates/cookie_corner_statistics.html:317 amelie/personal_tab/templates/cookie_corner_transactions_new.html:48 amelie/personal_tab/templates/lists/transactions_totals.html:24 templates/frontpage.html:121 +#: amelie/members/models.py:290 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:317 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:48 +#: amelie/personal_tab/templates/lists/transactions_totals.html:24 +#: templates/frontpage.html:133 msgid "Other" msgstr "Overig" @@ -5186,55 +6394,105 @@ msgstr "Bash" msgid "Z shell" msgstr "Z shell" -#: amelie/members/models.py:305 amelie/members/models.py:1123 amelie/members/templates/includes/registration/personal_details.html:29 amelie/members/templates/includes/registration/personal_details_employee.html:29 amelie/members/templates/members/datablock_html.mail:3 amelie/members/templates/members/datablock_plain.mail:2 +#: amelie/members/models.py:305 amelie/members/models.py:1123 +#: amelie/members/templates/includes/registration/personal_details.html:29 +#: amelie/members/templates/includes/registration/personal_details_employee.html:29 +#: amelie/members/templates/members/datablock_html.mail:3 +#: amelie/members/templates/members/datablock_plain.mail:2 msgid "Initials" msgstr "Initialen" -#: amelie/members/models.py:307 amelie/members/templates/includes/query/query_results.html:62 +#: amelie/members/models.py:307 +#: amelie/members/templates/includes/query/query_results.html:62 msgid "Photo" msgstr "Foto" -#: amelie/members/models.py:308 amelie/members/templates/includes/query/query_results.html:65 +#: amelie/members/models.py:308 +#: amelie/members/templates/includes/query/query_results.html:65 msgid "Notes" msgstr "Notities" -#: amelie/members/models.py:320 amelie/members/models.py:1132 amelie/members/templates/includes/registration/contact_member.html:24 amelie/members/templates/includes/registration/data_overview_employee.html:28 amelie/members/templates/includes/registration/data_overview_external.html:31 amelie/members/templates/includes/registration/data_overview_freshmen.html:31 amelie/members/templates/includes/registration/data_overview_freshmen.html:57 amelie/members/templates/includes/registration/data_overview_general.html:31 amelie/members/templates/members/datablock_html.mail:16 amelie/members/templates/members/datablock_plain.mail:15 amelie/tools/pdf.py:398 +#: amelie/members/models.py:320 amelie/members/models.py:1132 +#: amelie/members/templates/includes/registration/contact_member.html:24 +#: amelie/members/templates/includes/registration/data_overview_employee.html:28 +#: amelie/members/templates/includes/registration/data_overview_external.html:31 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:31 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:57 +#: amelie/members/templates/includes/registration/data_overview_general.html:31 +#: amelie/members/templates/members/datablock_html.mail:16 +#: amelie/members/templates/members/datablock_plain.mail:15 +#: amelie/tools/pdf.py:398 msgid "Postal code" msgstr "Postcode" -#: amelie/members/models.py:321 amelie/members/models.py:1133 amelie/members/templates/includes/registration/contact_member.html:37 amelie/members/templates/includes/registration/data_overview_employee.html:31 amelie/members/templates/includes/registration/data_overview_external.html:34 amelie/members/templates/includes/registration/data_overview_freshmen.html:34 amelie/members/templates/includes/registration/data_overview_freshmen.html:60 amelie/members/templates/includes/registration/data_overview_general.html:34 amelie/members/templates/members/datablock_html.mail:17 amelie/members/templates/members/datablock_plain.mail:16 amelie/personal_tab/templates/exports/screen.html:68 amelie/tools/pdf.py:112 amelie/tools/pdf.py:400 +#: amelie/members/models.py:321 amelie/members/models.py:1133 +#: amelie/members/templates/includes/registration/contact_member.html:37 +#: amelie/members/templates/includes/registration/data_overview_employee.html:31 +#: amelie/members/templates/includes/registration/data_overview_external.html:34 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:34 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:60 +#: amelie/members/templates/includes/registration/data_overview_general.html:34 +#: amelie/members/templates/members/datablock_html.mail:17 +#: amelie/members/templates/members/datablock_plain.mail:16 +#: amelie/personal_tab/templates/exports/screen.html:68 amelie/tools/pdf.py:112 +#: amelie/tools/pdf.py:400 msgid "City" msgstr "Plaats" -#: amelie/members/models.py:322 amelie/members/models.py:1134 amelie/members/templates/includes/registration/contact_member.html:50 amelie/members/templates/includes/registration/data_overview_employee.html:34 amelie/members/templates/includes/registration/data_overview_external.html:37 amelie/members/templates/includes/registration/data_overview_freshmen.html:37 amelie/members/templates/includes/registration/data_overview_freshmen.html:63 amelie/members/templates/includes/registration/data_overview_general.html:37 amelie/members/templates/members/datablock_html.mail:18 amelie/members/templates/members/datablock_plain.mail:17 amelie/tools/pdf.py:114 amelie/tools/pdf.py:402 +#: amelie/members/models.py:322 amelie/members/models.py:1134 +#: amelie/members/templates/includes/registration/contact_member.html:50 +#: amelie/members/templates/includes/registration/data_overview_employee.html:34 +#: amelie/members/templates/includes/registration/data_overview_external.html:37 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:37 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:63 +#: amelie/members/templates/includes/registration/data_overview_general.html:37 +#: amelie/members/templates/members/datablock_html.mail:18 +#: amelie/members/templates/members/datablock_plain.mail:17 +#: amelie/tools/pdf.py:114 amelie/tools/pdf.py:402 msgid "Country" msgstr "Land" -#: amelie/members/models.py:323 amelie/members/models.py:1135 amelie/members/query_forms.py:35 amelie/members/templates/members/datablock_html.mail:20 amelie/members/templates/members/datablock_plain.mail:19 amelie/tools/pdf.py:120 +#: amelie/members/models.py:323 amelie/members/models.py:1135 +#: amelie/members/query_forms.py:35 +#: amelie/members/templates/members/datablock_html.mail:20 +#: amelie/members/templates/members/datablock_plain.mail:19 +#: amelie/tools/pdf.py:120 msgid "Phonenumber" msgstr "Telefoonnummer" -#: amelie/members/models.py:325 amelie/members/models.py:1137 amelie/members/templates/includes/person_data_table.html:109 amelie/members/templates/includes/registration/contact_parents.html:25 +#: amelie/members/models.py:325 amelie/members/models.py:1137 +#: amelie/members/templates/includes/person_data_table.html:109 +#: amelie/members/templates/includes/registration/contact_parents.html:25 msgid "E-mail address of parent(s)/guardian(s)" msgstr "E-mailadres van ouder(s)/verzorger(s)" -#: amelie/members/models.py:326 amelie/members/models.py:1138 amelie/members/templates/includes/person_data_table.html:92 amelie/members/templates/includes/registration/contact_parents.html:38 amelie/tools/pdf.py:126 templates/profile_edit.html:57 +#: amelie/members/models.py:326 amelie/members/models.py:1138 +#: amelie/members/templates/includes/person_data_table.html:92 +#: amelie/members/templates/includes/registration/contact_parents.html:38 +#: amelie/tools/pdf.py:126 templates/profile_edit.html:57 msgid "Address of parent(s)/guardian(s)" msgstr "Adres van ouder(s)/verzorger(s)" -#: amelie/members/models.py:328 amelie/members/models.py:1140 amelie/members/templates/includes/registration/contact_parents.html:51 +#: amelie/members/models.py:328 amelie/members/models.py:1140 +#: amelie/members/templates/includes/registration/contact_parents.html:51 msgid "Postal code of parent(s)/guardian(s)" msgstr "Postcode van ouder(s)/verzorger(s)" -#: amelie/members/models.py:330 amelie/members/models.py:1142 amelie/members/templates/includes/registration/contact_parents.html:64 amelie/tools/pdf.py:128 +#: amelie/members/models.py:330 amelie/members/models.py:1142 +#: amelie/members/templates/includes/registration/contact_parents.html:64 +#: amelie/tools/pdf.py:128 msgid "Residence of parent(s)/guardian(s)" msgstr "Woonplaats van ouder(s)/verzorger(s)" -#: amelie/members/models.py:332 amelie/members/models.py:1144 amelie/members/templates/includes/registration/contact_parents.html:77 amelie/tools/pdf.py:130 +#: amelie/members/models.py:332 amelie/members/models.py:1144 +#: amelie/members/templates/includes/registration/contact_parents.html:77 +#: amelie/tools/pdf.py:130 msgid "Country of parent(s)/guardian(s)" msgstr "Land van ouder(s)/verzorger(s)" -#: amelie/members/models.py:333 amelie/members/models.py:1145 amelie/members/templates/includes/registration/contact_parents.html:16 templates/profile_edit.html:64 +#: amelie/members/models.py:333 amelie/members/models.py:1145 +#: amelie/members/templates/includes/registration/contact_parents.html:16 +#: templates/profile_edit.html:64 msgid "My parents' address details may be used for the parents day." msgstr "De adresgegevens van mijn ouders mogen gebruikt worden voor de ouderdag." @@ -5242,7 +6500,8 @@ msgstr "De adresgegevens van mijn ouders mogen gebruikt worden voor de ouderdag. msgid "You can only enter ^[a-z]*$." msgstr "Je mag alleen ^[a-z]*$ invullen." -#: amelie/members/models.py:337 amelie/members/models.py:343 amelie/members/models.py:927 +#: amelie/members/models.py:337 amelie/members/models.py:343 +#: amelie/members/models.py:927 msgid "Invalid account name" msgstr "Ongeldige accountnaam" @@ -5279,7 +6538,8 @@ msgstr "Wachtwoordherstelcode" msgid "Password reset code expiry" msgstr "Verloopdatum wachtwoordherstelcode" -#: amelie/members/models.py:363 amelie/personal_tab/models.py:83 amelie/personal_tab/models.py:488 +#: amelie/members/models.py:363 amelie/personal_tab/models.py:83 +#: amelie/personal_tab/models.py:488 msgid "person" msgstr "persoon" @@ -5323,11 +6583,15 @@ msgstr "studenten" msgid "Student" msgstr "Student" -#: amelie/members/models.py:767 amelie/room_duty/templates/room_duty/table/fill.html:19 amelie/room_duty/templates/room_duty/table/overview.html:100 +#: amelie/members/models.py:767 +#: amelie/room_duty/templates/room_duty/table/fill.html:19 +#: amelie/room_duty/templates/room_duty/table/overview.html:100 msgid "Begin" msgstr "Begin" -#: amelie/members/models.py:768 amelie/members/models.py:790 amelie/room_duty/templates/room_duty/table/fill.html:20 amelie/room_duty/templates/room_duty/table/overview.html:101 +#: amelie/members/models.py:768 amelie/members/models.py:790 +#: amelie/room_duty/templates/room_duty/table/fill.html:20 +#: amelie/room_duty/templates/room_duty/table/overview.html:101 msgid "End" msgstr "Eind" @@ -5343,7 +6607,10 @@ msgstr "studieperiode" msgid "study periods" msgstr "studieperiodes" -#: amelie/members/models.py:788 amelie/members/templates/includes/registration/data_overview_employee.html:45 amelie/members/templates/includes/registration/employee_general.html:10 amelie/tools/pdf.py:136 amelie/tools/pdf.py:406 +#: amelie/members/models.py:788 +#: amelie/members/templates/includes/registration/data_overview_employee.html:45 +#: amelie/members/templates/includes/registration/employee_general.html:10 +#: amelie/tools/pdf.py:136 amelie/tools/pdf.py:406 msgid "Employee number" msgstr "Medewerkernummer" @@ -5379,7 +6646,11 @@ msgstr "lidmaatschap" msgid "memberships" msgstr "lidmaatschappen" -#: amelie/members/models.py:887 amelie/members/templates/includes/query/query_membership.html:3 amelie/personal_tab/models.py:240 amelie/tools/pdf.py:68 amelie/tools/pdf.py:150 templates/basis.html:164 templates/profile_overview.html:42 +#: amelie/members/models.py:887 +#: amelie/members/templates/includes/query/query_membership.html:3 +#: amelie/personal_tab/models.py:240 amelie/tools/pdf.py:68 +#: amelie/tools/pdf.py:150 templates/basis.html:164 +#: templates/profile_overview.html:42 msgid "Membership" msgstr "Lidmaatschap" @@ -5415,7 +6686,8 @@ msgstr "Begonnen op" msgid "Ended on" msgstr "Gestopt op" -#: amelie/members/models.py:940 amelie/members/templates/includes/committee_data.html:36 +#: amelie/members/models.py:940 +#: amelie/members/templates/includes/committee_data.html:36 msgid "Web site" msgstr "Website" @@ -5447,7 +6719,8 @@ msgstr "Gitlab groep aanmaken" msgid "Members of this committee get access to GitLab" msgstr "Leden van deze commissie krijgen toegang tot GitLab" -#: amelie/members/models.py:961 amelie/personal_tab/models.py:25 amelie/personal_tab/models.py:255 +#: amelie/members/models.py:961 amelie/personal_tab/models.py:25 +#: amelie/personal_tab/models.py:255 msgid "ledger account" msgstr "grootboekrekeningnummer" @@ -5463,7 +6736,11 @@ msgstr "commissies" msgid "The email address for a committee may only point to an Inter-Actief server." msgstr "Het e-mailadres van een commissie mag alleen maar verwijzen naar een Inter-Actief server." -#: amelie/members/models.py:1091 amelie/members/templates/includes/person_function_table.html:7 amelie/members/templates/person_edit_functions.html:16 amelie/members/templates/statistics/overview.html:123 amelie/statistics/templates/statistics.html:39 +#: amelie/members/models.py:1091 +#: amelie/members/templates/includes/person_function_table.html:7 +#: amelie/members/templates/person_edit_functions.html:16 +#: amelie/members/templates/statistics/overview.html:123 +#: amelie/statistics/templates/statistics.html:39 msgid "Committee" msgstr "Commissie" @@ -5690,23 +6967,28 @@ msgstr "" "Met vriendelijke groet,\n" "Het bestuur van Inter-Actief" -#: amelie/members/templates/birthdays.html:5 amelie/members/templates/birthdays.html:12 templates/frontpage.html:176 templates/frontpage.html:178 +#: amelie/members/templates/birthdays.html:5 +#: amelie/members/templates/birthdays.html:12 templates/frontpage.html:188 +#: templates/frontpage.html:190 msgid "Birthdays" msgstr "Verjaardagen" -#: amelie/members/templates/birthdays.html:27 templates/frontpage.html:189 +#: amelie/members/templates/birthdays.html:27 templates/frontpage.html:201 msgid "year" msgstr "jaar" -#: amelie/members/templates/birthdays.html:27 amelie/members/templates/includes/person_data_table.html:25 templates/frontpage.html:189 +#: amelie/members/templates/birthdays.html:27 +#: amelie/members/templates/includes/person_data_table.html:25 +#: templates/frontpage.html:201 msgid "years" msgstr "jaren" -#: amelie/members/templates/birthdays.html:30 templates/frontpage.html:192 +#: amelie/members/templates/birthdays.html:30 templates/frontpage.html:204 msgid "There are no birthdays today" msgstr "Er zijn geen jarigen vandaag." -#: amelie/members/templates/books_list.html:4 amelie/members/templates/books_list.html:8 +#: amelie/members/templates/books_list.html:4 +#: amelie/members/templates/books_list.html:8 msgid "Booklist" msgstr "Boekenlijst" @@ -5722,11 +7004,13 @@ msgstr "BIT-studenten" msgid "Other students" msgstr "Andere studenten" -#: amelie/members/templates/committee.html:35 amelie/members/templates/committee_edit_members.html:16 +#: amelie/members/templates/committee.html:35 +#: amelie/members/templates/committee_edit_members.html:16 msgid "Edit members" msgstr "Wijzig leden" -#: amelie/members/templates/committee.html:64 amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:42 +#: amelie/members/templates/committee.html:64 +#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:42 msgid "Agenda" msgstr "Agenda" @@ -5766,11 +7050,32 @@ msgstr "" "Deze pagina is alleen voor het aanpassen van huidige commissieleden, en voor het toevoegen van nieuwe leden.
    \n" "Om oud-leden aan te passen, gebruik je het -icoontje naast het lid in de oud-ledentabel op de commissiepagina." -#: amelie/members/templates/committee_edit_members.html:35 amelie/members/templates/committee_edit_single_member.html:30 amelie/members/templates/includes/person_function_table.html:9 amelie/members/templates/person_edit_functions.html:18 amelie/members/templates/person_edit_study.html:13 amelie/members/templates/person_mandate.html:23 amelie/personal_tab/forms.py:120 amelie/personal_tab/templates/cookie_corner_authorization_list.html:70 amelie/personal_tab/templates/cookie_corner_authorization_view.html:45 amelie/personal_tab/templates/info/account_information.html:16 amelie/personal_tab/templates/lists/authorization_select.html:13 amelie/statistics/models.py:6 +#: amelie/members/templates/committee_edit_members.html:35 +#: amelie/members/templates/committee_edit_single_member.html:30 +#: amelie/members/templates/includes/person_function_table.html:9 +#: amelie/members/templates/person_edit_functions.html:18 +#: amelie/members/templates/person_edit_study.html:13 +#: amelie/members/templates/person_mandate.html:23 +#: amelie/personal_tab/forms.py:120 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:70 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:45 +#: amelie/personal_tab/templates/info/account_information.html:16 +#: amelie/personal_tab/templates/lists/authorization_select.html:13 +#: amelie/statistics/models.py:6 msgid "Starts on" msgstr "Begindatum" -#: amelie/members/templates/committee_edit_members.html:36 amelie/members/templates/committee_edit_single_member.html:31 amelie/members/templates/includes/person_function_table.html:10 amelie/members/templates/person_edit_functions.html:19 amelie/members/templates/person_edit_study.html:14 amelie/members/templates/person_mandate.html:24 amelie/personal_tab/forms.py:121 amelie/personal_tab/templates/cookie_corner_authorization_list.html:71 amelie/personal_tab/templates/cookie_corner_authorization_view.html:49 amelie/personal_tab/templates/info/account_information.html:17 amelie/statistics/models.py:7 +#: amelie/members/templates/committee_edit_members.html:36 +#: amelie/members/templates/committee_edit_single_member.html:31 +#: amelie/members/templates/includes/person_function_table.html:10 +#: amelie/members/templates/person_edit_functions.html:19 +#: amelie/members/templates/person_edit_study.html:14 +#: amelie/members/templates/person_mandate.html:24 +#: amelie/personal_tab/forms.py:121 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:71 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:49 +#: amelie/personal_tab/templates/info/account_information.html:17 +#: amelie/statistics/models.py:7 msgid "Ends on" msgstr "Einddatum" @@ -5778,11 +7083,16 @@ msgstr "Einddatum" msgid "Edit committee member" msgstr "Wijzig commissielid" -#: amelie/members/templates/committee_form.html:6 amelie/members/templates/committee_form.html:17 amelie/members/templates/committee_form.html:52 amelie/members/templates/committees.html:32 +#: amelie/members/templates/committee_form.html:6 +#: amelie/members/templates/committee_form.html:17 +#: amelie/members/templates/committee_form.html:52 +#: amelie/members/templates/committees.html:32 msgid "Add committee" msgstr "Commissie toevoegen" -#: amelie/members/templates/committee_form.html:8 amelie/members/templates/committee_form.html:19 amelie/members/templates/committee_form.html:52 +#: amelie/members/templates/committee_form.html:8 +#: amelie/members/templates/committee_form.html:19 +#: amelie/members/templates/committee_form.html:52 msgid "Change committee" msgstr "Commissie wijzigen" @@ -5798,7 +7108,11 @@ msgstr "Voeg lid toe" msgid "Member since" msgstr "Lid sinds" -#: amelie/members/templates/committees.html:5 amelie/members/templates/committees.html:11 amelie/members/templates/person.html:53 amelie/members/templates/statistics/overview.html:90 templates/basis.html:163 templates/profile_overview.html:141 +#: amelie/members/templates/committees.html:5 +#: amelie/members/templates/committees.html:11 +#: amelie/members/templates/person.html:53 +#: amelie/members/templates/statistics/overview.html:90 +#: templates/basis.html:163 templates/profile_overview.html:141 msgid "Committees" msgstr "Commissies" @@ -5848,7 +7162,8 @@ msgstr "Opgeheven commissies" msgid "There are no committees which have been disbanded." msgstr "Er zijn geen commissies opgeheven" -#: amelie/members/templates/dogroups.html:5 amelie/members/templates/dogroups.html:24 templates/basis.html:203 +#: amelie/members/templates/dogroups.html:5 +#: amelie/members/templates/dogroups.html:24 templates/basis.html:203 msgid "Dogroups" msgstr "Doegroepen" @@ -5890,7 +7205,11 @@ msgstr "" "\n" "%(obj)s heeft geen pasfoto." -#: amelie/members/templates/includes/person_data_table.html:20 amelie/members/templates/includes/registration/data_overview_employee.html:5 amelie/members/templates/includes/registration/data_overview_external.html:5 amelie/members/templates/includes/registration/data_overview_freshmen.html:5 amelie/members/templates/includes/registration/data_overview_general.html:5 +#: amelie/members/templates/includes/person_data_table.html:20 +#: amelie/members/templates/includes/registration/data_overview_employee.html:5 +#: amelie/members/templates/includes/registration/data_overview_external.html:5 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:5 +#: amelie/members/templates/includes/registration/data_overview_general.html:5 msgid "Full name" msgstr "Volledige naam" @@ -5898,24 +7217,35 @@ msgstr "Volledige naam" msgid "Claudia link" msgstr "Claudia-link" -#: amelie/members/templates/includes/person_data_table.html:47 amelie/members/templates/includes/query/query_person_data.html:23 +#: amelie/members/templates/includes/person_data_table.html:47 +#: amelie/members/templates/includes/query/query_person_data.html:23 msgid "No account" msgstr "Geen account" -#: amelie/members/templates/includes/person_data_table.html:78 amelie/members/templates/includes/registration/contact_member.html:63 amelie/members/templates/includes/registration/data_overview_employee.html:37 amelie/members/templates/includes/registration/data_overview_external.html:40 amelie/members/templates/includes/registration/data_overview_freshmen.html:40 amelie/members/templates/includes/registration/data_overview_general.html:40 +#: amelie/members/templates/includes/person_data_table.html:78 +#: amelie/members/templates/includes/registration/contact_member.html:63 +#: amelie/members/templates/includes/registration/data_overview_employee.html:37 +#: amelie/members/templates/includes/registration/data_overview_external.html:40 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:40 +#: amelie/members/templates/includes/registration/data_overview_general.html:40 msgid "(Mobile) telephone number" msgstr "(Mobiel) Telefoonnummer" -#: amelie/members/templates/includes/person_data_table.html:119 amelie/members/templates/registration_check.html:80 amelie/personal_tab/templates/cookie_corner_overview.html:4 amelie/personal_tab/templates/cookie_corner_overview.html:8 +#: amelie/members/templates/includes/person_data_table.html:119 +#: amelie/members/templates/registration_check.html:80 +#: amelie/personal_tab/templates/cookie_corner_overview.html:4 +#: amelie/personal_tab/templates/cookie_corner_overview.html:8 msgid "Digital cookie and candy list" msgstr "Digitale streeplijst" -#: amelie/members/templates/includes/person_data_table.html:130 amelie/members/templates/includes/query/query_person_data.html:48 +#: amelie/members/templates/includes/person_data_table.html:130 +#: amelie/members/templates/includes/query/query_person_data.html:48 #, python-format msgid "%(first_name)s is a member" msgstr "%(first_name)s is lid." -#: amelie/members/templates/includes/person_data_table.html:135 amelie/members/templates/includes/query/query_person_data.html:51 +#: amelie/members/templates/includes/person_data_table.html:135 +#: amelie/members/templates/includes/query/query_person_data.html:51 #, python-format msgid "%(first_name)s is not a member" msgstr "%(first_name)s is niet lid." @@ -5925,17 +7255,20 @@ msgstr "%(first_name)s is niet lid." msgid "%(first_name)s is (not) a member (anymore)" msgstr "%(first_name)s is (nog) geen lid (meer)." -#: amelie/members/templates/includes/person_data_table.html:143 amelie/members/templates/includes/query/query_person_data.html:58 +#: amelie/members/templates/includes/person_data_table.html:143 +#: amelie/members/templates/includes/query/query_person_data.html:58 #, python-format msgid "%(first_name)s is active" msgstr "%(first_name)s is actief." -#: amelie/members/templates/includes/person_data_table.html:146 amelie/members/templates/includes/query/query_person_data.html:61 +#: amelie/members/templates/includes/person_data_table.html:146 +#: amelie/members/templates/includes/query/query_person_data.html:61 #, python-format msgid "%(first_name)s is not active" msgstr "%(first_name)s is niet actief." -#: amelie/members/templates/includes/person_data_table.html:148 amelie/members/templates/includes/query/query_person_data.html:63 +#: amelie/members/templates/includes/person_data_table.html:148 +#: amelie/members/templates/includes/query/query_person_data.html:63 #, python-format msgid "%(first_name)s is not active any more" msgstr "%(first_name)s is niet meer actief." @@ -5954,11 +7287,13 @@ msgstr "%(first_name)s is webmaster." msgid "No further notes" msgstr "Geen verdere notities." -#: amelie/members/templates/includes/person_data_table.html:174 amelie/members/templates/includes/query/query_results.html:52 +#: amelie/members/templates/includes/person_data_table.html:174 +#: amelie/members/templates/includes/query/query_results.html:52 msgid "Send a mailing" msgstr "Stuur een mailing" -#: amelie/members/templates/includes/person_data_table.html:180 amelie/members/templates/includes/query/query_results.html:53 +#: amelie/members/templates/includes/person_data_table.html:180 +#: amelie/members/templates/includes/query/query_results.html:53 msgid "Send a push notification" msgstr "Stuur een push notificatie" @@ -5974,7 +7309,9 @@ msgstr "Activisme" msgid "Employee" msgstr "Medewerker" -#: amelie/members/templates/includes/query/query_mailing.html:36 amelie/members/templates/includes/query/query_mailing.html:142 amelie/twitter/templates/twitter_new_tweet.html:11 +#: amelie/members/templates/includes/query/query_mailing.html:36 +#: amelie/members/templates/includes/query/query_mailing.html:142 +#: amelie/twitter/templates/twitter_new_tweet.html:11 msgid "Example" msgstr "Voorbeeld" @@ -5987,7 +7324,9 @@ msgstr "" "\n" "Controleer je bericht goed voordat je deze daadwerkelijk verzend." -#: amelie/members/templates/includes/query/query_mailing.html:50 amelie/members/templates/includes/query/query_mailing.html:54 amelie/members/templates/includes/query/query_mailing.html:106 +#: amelie/members/templates/includes/query/query_mailing.html:50 +#: amelie/members/templates/includes/query/query_mailing.html:54 +#: amelie/members/templates/includes/query/query_mailing.html:106 msgid "Subject:" msgstr "Onderwerp:" @@ -6002,11 +7341,13 @@ msgstr "" "\n" "Er zijn %(amount)s personen geselecteerd. De variabele 'recipient' bevat de gegevens van iedere ontvanger. Deze is als volgt te gebruiken:" -#: amelie/members/templates/includes/query/query_mailing.html:98 amelie/members/templates/includes/query/query_mailing.html:122 +#: amelie/members/templates/includes/query/query_mailing.html:98 +#: amelie/members/templates/includes/query/query_mailing.html:122 msgid "NL:" msgstr "NL:" -#: amelie/members/templates/includes/query/query_mailing.html:101 amelie/members/templates/includes/query/query_mailing.html:125 +#: amelie/members/templates/includes/query/query_mailing.html:101 +#: amelie/members/templates/includes/query/query_mailing.html:125 msgid "EN:" msgstr "EN:" @@ -6031,7 +7372,8 @@ msgstr "%(first_name)s is geen lid meer." msgid "Pre-programmed selections" msgstr "Voorgeprogrammeerde selecties" -#: amelie/members/templates/includes/query/query_push.html:5 amelie/members/templates/includes/query/query_push.html:11 +#: amelie/members/templates/includes/query/query_push.html:5 +#: amelie/members/templates/includes/query/query_push.html:11 msgid "Send push notification" msgstr "Push notificatie versturen" @@ -6083,7 +7425,8 @@ msgstr "Resultaten" msgid "Add new freshmen" msgstr "Nieuwe eerstejaars toevoegen" -#: amelie/members/templates/includes/query/query_results.html:55 templates/frontpage.html:113 +#: amelie/members/templates/includes/query/query_results.html:55 +#: templates/frontpage.html:125 msgid "Add new member" msgstr "Nieuw lid toevoegen" @@ -6095,7 +7438,14 @@ msgstr "Persoonsgegevens" msgid "Contact data" msgstr "Contactgegevens" -#: amelie/members/templates/includes/registration/authorizations.html:4 amelie/members/templates/person.html:26 amelie/members/templates/registration_check.html:73 amelie/personal_tab/forms.py:148 amelie/personal_tab/templates/cookie_corner_authorization_list.html:4 amelie/personal_tab/templates/cookie_corner_authorization_list.html:58 amelie/personal_tab/templates/cookie_corner_overview.html:21 amelie/personal_tab/templates/info/account_information.html:4 +#: amelie/members/templates/includes/registration/authorizations.html:4 +#: amelie/members/templates/person.html:26 +#: amelie/members/templates/registration_check.html:73 +#: amelie/personal_tab/forms.py:148 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:4 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:58 +#: amelie/personal_tab/templates/cookie_corner_overview.html:21 +#: amelie/personal_tab/templates/info/account_information.html:4 msgid "Mandates" msgstr "Machtigingen" @@ -6175,7 +7525,12 @@ msgstr "De naam van het land waar je woont. (Bijvoorbeeld \"Nederland\")" msgid "Your (preferably mobile) telephone number." msgstr "Je (liefst mobiele) telefoonnummer." -#: amelie/members/templates/includes/registration/contact_member.html:68 amelie/members/templates/includes/registration/contact_parents.html:30 amelie/members/templates/includes/registration/contact_parents.html:43 amelie/members/templates/includes/registration/contact_parents.html:56 amelie/members/templates/includes/registration/contact_parents.html:69 amelie/members/templates/includes/registration/contact_parents.html:82 +#: amelie/members/templates/includes/registration/contact_member.html:68 +#: amelie/members/templates/includes/registration/contact_parents.html:30 +#: amelie/members/templates/includes/registration/contact_parents.html:43 +#: amelie/members/templates/includes/registration/contact_parents.html:56 +#: amelie/members/templates/includes/registration/contact_parents.html:69 +#: amelie/members/templates/includes/registration/contact_parents.html:82 msgid "Optional." msgstr "Niet verplicht." @@ -6211,11 +7566,17 @@ msgstr "Woonplaats van je ouder(s)/verzorger(s)." msgid "The name of the country of your parent(s)/guardian(s). For example \"The Netherlands\"" msgstr "De naam van het land van je ouder(s)/verzorger(s). Bijvoorbeeld \"Nederland\"" -#: amelie/members/templates/includes/registration/data_overview_employee.html:3 amelie/members/templates/includes/registration/data_overview_external.html:3 amelie/members/templates/includes/registration/data_overview_freshmen.html:3 amelie/members/templates/includes/registration/data_overview_general.html:3 +#: amelie/members/templates/includes/registration/data_overview_employee.html:3 +#: amelie/members/templates/includes/registration/data_overview_external.html:3 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:3 +#: amelie/members/templates/includes/registration/data_overview_general.html:3 msgid "Personal details" msgstr "Persoonlijke gegevens" -#: amelie/members/templates/includes/registration/data_overview_employee.html:23 amelie/members/templates/includes/registration/data_overview_external.html:26 amelie/members/templates/includes/registration/data_overview_freshmen.html:26 amelie/members/templates/includes/registration/data_overview_general.html:26 +#: amelie/members/templates/includes/registration/data_overview_employee.html:23 +#: amelie/members/templates/includes/registration/data_overview_external.html:26 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:26 +#: amelie/members/templates/includes/registration/data_overview_general.html:26 msgid "Own address details" msgstr "Eigen adresgegevens" @@ -6223,31 +7584,55 @@ msgstr "Eigen adresgegevens" msgid "Employee and Membership data" msgstr "Medewerker- en Lidmaatschapsgegevens" -#: amelie/members/templates/includes/registration/data_overview_employee.html:48 amelie/members/templates/includes/registration/data_overview_external.html:48 amelie/members/templates/includes/registration/data_overview_freshmen.html:80 amelie/members/templates/includes/registration/data_overview_general.html:57 amelie/members/templates/includes/registration/membership_employee.html:20 amelie/members/templates/includes/registration/membership_freshmen.html:25 amelie/members/templates/includes/registration/membership_general.html:33 amelie/members/templates/registration_check.html:59 amelie/personal_tab/templates/cookie_corner_statistics.html:289 amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:10 +#: amelie/members/templates/includes/registration/data_overview_employee.html:48 +#: amelie/members/templates/includes/registration/data_overview_external.html:48 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:80 +#: amelie/members/templates/includes/registration/data_overview_general.html:57 +#: amelie/members/templates/includes/registration/membership_employee.html:20 +#: amelie/members/templates/includes/registration/membership_freshmen.html:25 +#: amelie/members/templates/includes/registration/membership_general.html:33 +#: amelie/members/templates/registration_check.html:59 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:289 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:10 msgid "Membership type" msgstr "Lidmaatschapstype" -#: amelie/members/templates/includes/registration/data_overview_employee.html:54 amelie/members/templates/includes/registration/data_overview_external.html:54 amelie/members/templates/includes/registration/data_overview_freshmen.html:86 amelie/members/templates/includes/registration/data_overview_general.html:63 +#: amelie/members/templates/includes/registration/data_overview_employee.html:54 +#: amelie/members/templates/includes/registration/data_overview_external.html:54 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:86 +#: amelie/members/templates/includes/registration/data_overview_general.html:63 msgid "Direct debit authorization details" msgstr "Machtigingsgegevens" -#: amelie/members/templates/includes/registration/data_overview_employee.html:56 amelie/members/templates/includes/registration/data_overview_external.html:56 amelie/members/templates/includes/registration/data_overview_freshmen.html:88 amelie/members/templates/includes/registration/data_overview_general.html:65 +#: amelie/members/templates/includes/registration/data_overview_employee.html:56 +#: amelie/members/templates/includes/registration/data_overview_external.html:56 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:88 +#: amelie/members/templates/includes/registration/data_overview_general.html:65 msgid "I want a contribution authorization" msgstr "Ik wil een contributiemachtiging" -#: amelie/members/templates/includes/registration/data_overview_employee.html:59 amelie/members/templates/includes/registration/data_overview_external.html:59 amelie/members/templates/includes/registration/data_overview_freshmen.html:91 amelie/members/templates/includes/registration/data_overview_general.html:68 +#: amelie/members/templates/includes/registration/data_overview_employee.html:59 +#: amelie/members/templates/includes/registration/data_overview_external.html:59 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:91 +#: amelie/members/templates/includes/registration/data_overview_general.html:68 msgid "I want to have an authorization for activities, consumptions and other transactions" msgstr "Ik wil een machtiging voor activiteiten, consumpties en overige transacties" -#: amelie/members/templates/includes/registration/data_overview_employee.html:71 amelie/members/templates/includes/registration/data_overview_external.html:71 amelie/members/templates/includes/registration/data_overview_freshmen.html:103 amelie/members/templates/includes/registration/data_overview_general.html:80 +#: amelie/members/templates/includes/registration/data_overview_employee.html:71 +#: amelie/members/templates/includes/registration/data_overview_external.html:71 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:103 +#: amelie/members/templates/includes/registration/data_overview_general.html:80 msgid "Personal preferences" msgstr "Persoonlijke voorkeuren" -#: amelie/members/templates/includes/registration/data_overview_external.html:20 amelie/members/templates/includes/registration/data_overview_freshmen.html:20 amelie/members/templates/includes/registration/data_overview_general.html:20 +#: amelie/members/templates/includes/registration/data_overview_external.html:20 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:20 +#: amelie/members/templates/includes/registration/data_overview_general.html:20 msgid "International student?" msgstr "Internationale student?" -#: amelie/members/templates/includes/registration/data_overview_external.html:46 amelie/members/templates/person.html:17 +#: amelie/members/templates/includes/registration/data_overview_external.html:46 +#: amelie/members/templates/person.html:17 msgid "Membership data" msgstr "Lidmaatschapsgegevens" @@ -6263,11 +7648,17 @@ msgstr "Adresgegevens ouder(s)/verzorger(s)" msgid "My parents' details may be used for the parents day" msgstr "Oudergegevens mogen gebruikt worden voor de ouderdag" -#: amelie/members/templates/includes/registration/data_overview_freshmen.html:69 amelie/members/templates/includes/registration/data_overview_general.html:46 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:69 +#: amelie/members/templates/includes/registration/data_overview_general.html:46 msgid "Study and Membership data" msgstr "Studie- en Lidmaatschapsgegevens" -#: amelie/members/templates/includes/registration/data_overview_freshmen.html:71 amelie/members/templates/includes/registration/data_overview_general.html:48 amelie/members/templates/includes/registration/study_freshmen.html:10 amelie/members/templates/includes/registration/study_general.html:10 amelie/members/templates/person_study.html:9 templates/profile_overview.html:108 +#: amelie/members/templates/includes/registration/data_overview_freshmen.html:71 +#: amelie/members/templates/includes/registration/data_overview_general.html:48 +#: amelie/members/templates/includes/registration/study_freshmen.html:10 +#: amelie/members/templates/includes/registration/study_general.html:10 +#: amelie/members/templates/person_study.html:9 +#: templates/profile_overview.html:108 msgid "Study/studies" msgstr "Studie(s)" @@ -6352,7 +7743,9 @@ msgstr "Velden gemarkeerd met een * zijn ve msgid "Step %(current_step)s of %(total_steps)s" msgstr "Stap %(current_step)s van %(total_steps)s" -#: amelie/members/templates/includes/registration/membership_employee.html:4 amelie/members/templates/includes/registration/membership_freshmen.html:4 amelie/members/templates/includes/registration/membership_general.html:4 +#: amelie/members/templates/includes/registration/membership_employee.html:4 +#: amelie/members/templates/includes/registration/membership_freshmen.html:4 +#: amelie/members/templates/includes/registration/membership_general.html:4 msgid "What membership type do you want?" msgstr "Wat voor lidmaatschap wil je?" @@ -6373,7 +7766,9 @@ msgstr "" "\n" "Met een jaarlidmaatschap voor medewerkers betaal je elk jaar, en blijf je lid totdat je zelf je lidmaatschap opzegt. Dit lidmaatschap is bedoeld voor medewerkers van de Universiteit Twente die lid willen worden. Een jaarlidmaatschap voor medewerkers kost jaarlijks € %(employee_member_costs)s." -#: amelie/members/templates/includes/registration/membership_employee.html:25 amelie/members/templates/includes/registration/membership_freshmen.html:30 amelie/members/templates/includes/registration/membership_general.html:38 +#: amelie/members/templates/includes/registration/membership_employee.html:25 +#: amelie/members/templates/includes/registration/membership_freshmen.html:30 +#: amelie/members/templates/includes/registration/membership_general.html:38 msgid "Which membership type do you want? (See above for explanations)" msgstr "Welk lidmaatschapstype wil je? (Zie hierboven voor uitleg)" @@ -6393,7 +7788,8 @@ msgstr "" "\n" "Met een studielang lidmaatschap betaal je één keer, en blijf je lid zolang je Technische Informatica (TCS), Business Information Technology (BIT) of een van de bijbehorende masters studeert. Een studielang lidmaatschap kost eenmalig € %(study_long_member_costs)s." -#: amelie/members/templates/includes/registration/membership_freshmen.html:15 amelie/members/templates/includes/registration/membership_general.html:15 +#: amelie/members/templates/includes/registration/membership_freshmen.html:15 +#: amelie/members/templates/includes/registration/membership_general.html:15 #, python-format msgid "" "\n" @@ -6433,31 +7829,38 @@ msgstr "" "\n" "Met een secundair jaarlidmaatschap betaal je elk jaar, en blijf je lid totdat je zelf je lidmaatschap opzegt. Dit lidmaatschap is bedoeld voor mensen die al lid zijn bij een andere studievereniging en ook lid willen worden van Inter-Actief. Een secundair jaarlidmaatschap kost jaarlijks € %(secondary_member_costs)s." -#: amelie/members/templates/includes/registration/personal_details.html:6 amelie/members/templates/includes/registration/personal_details_employee.html:6 +#: amelie/members/templates/includes/registration/personal_details.html:6 +#: amelie/members/templates/includes/registration/personal_details_employee.html:6 msgid "Who are you?" msgstr "Wie ben je?" -#: amelie/members/templates/includes/registration/personal_details.html:21 amelie/members/templates/includes/registration/personal_details_employee.html:21 +#: amelie/members/templates/includes/registration/personal_details.html:21 +#: amelie/members/templates/includes/registration/personal_details_employee.html:21 msgid "Please give your first name, last name and last name prefix(es) in the three different boxes, with correct capitalization." msgstr "Geef aub je voornaam, achternaam en tussenvoegsels in de drie verschillende vakken, met correcte kapitalisatie." -#: amelie/members/templates/includes/registration/personal_details.html:34 amelie/members/templates/includes/registration/personal_details_employee.html:34 +#: amelie/members/templates/includes/registration/personal_details.html:34 +#: amelie/members/templates/includes/registration/personal_details_employee.html:34 msgid "These are the initials of your first name (and optional baptismal name(s)), excluding the first letter of your last name." msgstr "Dit zijn de voorletters van je voornaam en doopnamen, niet de eerste letter van je achternaam." -#: amelie/members/templates/includes/registration/personal_details.html:47 amelie/members/templates/includes/registration/personal_details_employee.html:47 +#: amelie/members/templates/includes/registration/personal_details.html:47 +#: amelie/members/templates/includes/registration/personal_details_employee.html:47 msgid "Please fill in your date of birth in the format \"yyyy-mm-dd\"." msgstr "Vul aub. je geboortedatum in in het formaat \"jjjj-mm-dd\"." -#: amelie/members/templates/includes/registration/personal_details.html:60 amelie/members/templates/includes/registration/personal_details_employee.html:60 +#: amelie/members/templates/includes/registration/personal_details.html:60 +#: amelie/members/templates/includes/registration/personal_details_employee.html:60 msgid "Your gender." msgstr "Je geslacht." -#: amelie/members/templates/includes/registration/personal_details.html:73 amelie/members/templates/includes/registration/personal_details_employee.html:73 +#: amelie/members/templates/includes/registration/personal_details.html:73 +#: amelie/members/templates/includes/registration/personal_details_employee.html:73 msgid "Your e-mail address. No worries, we won't send you any e-mails that you did not ask for or which are not necessary for your membership. We recommend you to use a personal email address, since your student email will stop working when you graduate." msgstr "Je e-mailadres. Geen zorgen, we zullen je geen mail sturen zonder je dat zelf aangeeft of zonder dat het nodig is voor je lidmaatschap. Wij raden je aan om een persoonlijk mailadres te gebruiken, aangezien je studentenmail stopt met werken zodra je bent afgestudeerd." -#: amelie/members/templates/includes/registration/personal_details.html:86 amelie/members/templates/includes/registration/personal_details_employee.html:86 +#: amelie/members/templates/includes/registration/personal_details.html:86 +#: amelie/members/templates/includes/registration/personal_details_employee.html:86 msgid "This is the language that the website will be shown in, and in which you will receive any information mails." msgstr "Dit is de taal waarin de website voor jou wordt weergegeven, en waarin je informatiemails krijgt toegestuurd." @@ -6477,11 +7880,13 @@ msgstr "We hebben nog een paar laatste vragen voor je." msgid "These preferences can always be changed in your profile on the Inter-Actief website later." msgstr "Deze voorkeuren kan je later altijd nog aanpassen in je profiel op de Inter-Actief website." -#: amelie/members/templates/includes/registration/study_freshmen.html:4 amelie/members/templates/includes/registration/study_general.html:4 +#: amelie/members/templates/includes/registration/study_freshmen.html:4 +#: amelie/members/templates/includes/registration/study_general.html:4 msgid "What are you studying?" msgstr "Wat ga je studeren?" -#: amelie/members/templates/includes/registration/study_freshmen.html:15 amelie/members/templates/includes/registration/study_general.html:15 +#: amelie/members/templates/includes/registration/study_freshmen.html:15 +#: amelie/members/templates/includes/registration/study_general.html:15 msgid "Choose one (or more) study/studies..." msgstr "Kies een (of meerdere) studie(s)..." @@ -6489,7 +7894,8 @@ msgstr "Kies een (of meerdere) studie(s)..." msgid "Which study/studies you will follow." msgstr "Welke studie(s) je gaat volgen." -#: amelie/members/templates/includes/registration/study_freshmen.html:39 amelie/members/templates/includes/registration/study_general.html:39 +#: amelie/members/templates/includes/registration/study_freshmen.html:39 +#: amelie/members/templates/includes/registration/study_general.html:39 msgid "Your student number, without the \"s\" (e.g. 0123456\")." msgstr "Je studentnummer zonder de \"s\" (bijv. \"0123456\")." @@ -6513,7 +7919,8 @@ msgstr "Beginjaar" msgid "In which year you started with this study/these studies. (In the format yyyy)" msgstr "In welk jaar je bent begonnen met deze studie(s). (In het formaat jjjj)" -#: amelie/members/templates/includes/registration/wizard_buttons.html:6 amelie/members/templates/includes/registration/wizard_buttons.html:8 +#: amelie/members/templates/includes/registration/wizard_buttons.html:6 +#: amelie/members/templates/includes/registration/wizard_buttons.html:8 msgid "Any changes on this page may be lost. Are you sure you want to go back?" msgstr "Veranderingen aangebracht op deze pagina gaan wellicht verloren. Weet je zeker dat je terug wil gaan?" @@ -6537,7 +7944,9 @@ msgstr "Formulier versturen" msgid "Send form and print" msgstr "Formulier versturen en printen" -#: amelie/members/templates/members/datablock_html.mail:8 amelie/members/templates/members/datablock_plain.mail:7 amelie/tools/pdf.py:106 +#: amelie/members/templates/members/datablock_html.mail:8 +#: amelie/members/templates/members/datablock_plain.mail:7 +#: amelie/tools/pdf.py:106 msgid "International?" msgstr "Internationaal?" @@ -6575,7 +7984,12 @@ msgstr "" "Onderstaand zie je je gegevens. Zijn deze nog correct? Het meeste kan je updaten op https://www.inter-actief.utwente.nl/profile/edit.\n" "Is er iets onjuist wat je niet zelf kan aanpassen? Mail dan even de secretaris of het hele bestuur." -#: amelie/members/templates/members/datamail_plain.mail:9 amelie/members/templates/members/verification_reminder.mail:16 amelie/members/templates/members/yeartransfer_ended.mail:16 amelie/members/templates/members/yeartransfer_ended_eniac.mail:12 amelie/members/templates/members/yeartransfer_ended_final.mail:14 amelie/members/templates/members/yeartransfer_prolonged.mail:23 +#: amelie/members/templates/members/datamail_plain.mail:9 +#: amelie/members/templates/members/verification_reminder.mail:16 +#: amelie/members/templates/members/yeartransfer_ended.mail:16 +#: amelie/members/templates/members/yeartransfer_ended_eniac.mail:12 +#: amelie/members/templates/members/yeartransfer_ended_final.mail:14 +#: amelie/members/templates/members/yeartransfer_prolonged.mail:23 msgid "" "Kind regards,\n" "\n" @@ -6585,7 +7999,8 @@ msgstr "" "\n" "Het bestuur van Inter-Actief" -#: amelie/members/templates/members/payment_confirm_delete.html:5 amelie/members/templates/members/payment_confirm_delete.html:10 +#: amelie/members/templates/members/payment_confirm_delete.html:5 +#: amelie/members/templates/members/payment_confirm_delete.html:10 msgid "Remove payment" msgstr "Betaling verwijderen" @@ -6672,7 +8087,9 @@ msgstr "Zie voor meer informatie" msgid "Greetings," msgstr "Groetjes," -#: amelie/members/templates/members/verification_reminder.mail:4 amelie/members/templates/members/yeartransfer_ended.mail:4 amelie/members/templates/members/yeartransfer_ended_eniac.mail:4 +#: amelie/members/templates/members/verification_reminder.mail:4 +#: amelie/members/templates/members/yeartransfer_ended.mail:4 +#: amelie/members/templates/members/yeartransfer_ended_eniac.mail:4 msgid "[Inter-Actief] Important information regarding your membership" msgstr "[Inter-Actief] Belangrijke informatie omtrent jouw lidmaatschap" @@ -6688,7 +8105,8 @@ msgstr "Als je deze stappen nog niet hebt gevolgd, maar je nog wel steeds Busine msgid "You can check if your study is verified by visiting your profile on the Inter-Actief website. Under the block \"Membership\" you can find the verification status. If it says \"Your student status has been verified, or we do not need it for your membership type.\" next to a green checkmark, your membership will be renewed as normal and you do not need to take action. If it says \"Your student status has not been verified, while we do need it for your membership type.\" next to a red cross, you will need to follow the procedure above." msgstr "Je kan zelf zien of je studie al is geverifiëerd door naar je profiel op de Inter-Actief website te gaan. Onder het blokje \"Lidmaatschap\" kan je de huidige status vinden. Als daar staat \"Je studentenstatus is geverifieerd of we hebben het niet nodig voor jouw lidmaatschapstype.\" naast een groen vinkje, dan wordt je lidmaatschap gewoon verlengd en hoef je niks te doen. Als er staat \"Jouw status als student is niet geverifieerd, terwijl we dit wel nodig hebben voor jouw lidmaatschapstype.\" naast een rood kruis, dan zul je de procedure hierboven moeten volgen." -#: amelie/members/templates/members/verification_reminder.mail:14 amelie/members/templates/members/yeartransfer_ended.mail:14 +#: amelie/members/templates/members/verification_reminder.mail:14 +#: amelie/members/templates/members/yeartransfer_ended.mail:14 msgid "If you have any questions you can contact us by replying to this email." msgstr "Als je nog vragen hebt, kun je natuurlijk altijd reageren op deze mail." @@ -6704,11 +8122,13 @@ msgstr "Als je nog niet afgestudeerd bent en nog steeds Business Information Tec msgid "If you have graduated, your membership of Inter-Actief will end. There is however still the opportunity to become a member of ENIAC, the alumni association for TCS, BIT, CS, ITECH, EMSYS, and IST." msgstr "Als je afgestudeerd bent zal je lidmaatschap bij Inter-Actief eindigen. Er is echter alsnog een optie om lid te worden van ENIAC, de alumni vereniging voor TCS, BIT, CS, ITECH, EMSYS en IST." -#: amelie/members/templates/members/yeartransfer_ended.mail:12 amelie/members/templates/members/yeartransfer_ended_final.mail:10 +#: amelie/members/templates/members/yeartransfer_ended.mail:12 +#: amelie/members/templates/members/yeartransfer_ended_final.mail:10 msgid "If you want to know more about ENIAC or if you want to become a member, take a look at their website, https://eniac.utwente.nl/. The board of ENIAC can be contacted using the contact form on their website." msgstr "Als je meer wilt weten over ENIAC of als je lid wilt worden, kijk dan even naar hun website, https://eniac.utwente.nl. Het bestuur van ENIAC kan bereikt worden via het contactformulier op hun website." -#: amelie/members/templates/members/yeartransfer_ended.mail:12 amelie/members/templates/members/yeartransfer_ended_final.mail:10 +#: amelie/members/templates/members/yeartransfer_ended.mail:12 +#: amelie/members/templates/members/yeartransfer_ended_final.mail:10 msgid "If you want to know more about ENIAC or if you want to become a member, take a look at their website, eniac.utwente.nl. The board of ENIAC can be contacted using the contact form on their website." msgstr "Als je meer wilt weten over ENIAC of lid wil worden, kijk dan even op hun website, eniac.utwente.nl. Het bestuur van ENIAC kan bereikt worden via het contactformulier op hun website." @@ -6786,11 +8206,14 @@ msgstr "Bevestigingsbericht" msgid "The command is being executed..." msgstr "De opdracht wordt uitgevoerd..." -#: amelie/members/templates/person.html:35 amelie/members/templates/person_study.html:8 templates/profile_overview.html:98 templates/profile_overview.html:107 +#: amelie/members/templates/person.html:35 +#: amelie/members/templates/person_study.html:8 +#: templates/profile_overview.html:98 templates/profile_overview.html:107 msgid "Student data" msgstr "Studentgegevens" -#: amelie/members/templates/person.html:44 amelie/members/templates/person_employee.html:8 +#: amelie/members/templates/person.html:44 +#: amelie/members/templates/person_employee.html:8 msgid "Employee data" msgstr "Medewerkergegevens" @@ -6838,11 +8261,14 @@ msgstr "" "Doe dit alleen wanneer de machtiging getekend is en deze in de map of\n" "het postvakje van de penningmeester zit." -#: amelie/members/templates/person_activate_mandate.html:22 amelie/members/templates/person_mandate.html:64 amelie/personal_tab/templates/info/rfid_cards.html:58 +#: amelie/members/templates/person_activate_mandate.html:22 +#: amelie/members/templates/person_mandate.html:64 +#: amelie/personal_tab/templates/info/rfid_cards.html:58 msgid "Activate" msgstr "Activeren" -#: amelie/members/templates/person_anonymization_success.html:4 amelie/members/templates/person_anonymization_success.html:9 +#: amelie/members/templates/person_anonymization_success.html:4 +#: amelie/members/templates/person_anonymization_success.html:9 msgid "Person has been anonymized" msgstr "Persoon is geanonimiseerd" @@ -6880,7 +8306,8 @@ msgstr "Lidmaatschap: %(id)s" msgid "Yes, throw away" msgstr "Ja, gooi maar weg." -#: amelie/members/templates/person_edit_data.html:4 amelie/members/templates/person_edit_data.html:8 +#: amelie/members/templates/person_edit_data.html:4 +#: amelie/members/templates/person_edit_data.html:8 msgid "Change profile " msgstr "Persoon wijzigen" @@ -6900,7 +8327,17 @@ msgstr "Afgestudeerd?" msgid "Add new course" msgstr "Nieuwe studie toevoegen" -#: amelie/members/templates/person_edit_studyperiod.html:15 amelie/members/templates/person_new_mandate.html:14 amelie/members/templates/person_new_membership.html:14 amelie/members/templates/registration_check.html:120 amelie/personal_tab/templates/cookie_corner/transaction_form.html:32 amelie/personal_tab/templates/cookie_corner_exam_cookie_credit_add.html:22 amelie/room_duty/templates/room_duty/pool/list.html:12 amelie/room_duty/templates/room_duty/pool/persons_change.html:48 amelie/room_duty/templates/room_duty/table/change_persons.html:48 amelie/room_duty/templates/room_duty/table/list.html:12 amelie/room_duty/templates/room_duty/template/list.html:12 +#: amelie/members/templates/person_edit_studyperiod.html:15 +#: amelie/members/templates/person_new_mandate.html:14 +#: amelie/members/templates/person_new_membership.html:14 +#: amelie/members/templates/registration_check.html:120 +#: amelie/personal_tab/templates/cookie_corner/transaction_form.html:32 +#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit_add.html:22 +#: amelie/room_duty/templates/room_duty/pool/list.html:12 +#: amelie/room_duty/templates/room_duty/pool/persons_change.html:48 +#: amelie/room_duty/templates/room_duty/table/change_persons.html:48 +#: amelie/room_duty/templates/room_duty/table/list.html:12 +#: amelie/room_duty/templates/room_duty/template/list.html:12 msgid "Add" msgstr "Toevoegen" @@ -6914,7 +8351,8 @@ msgstr "" "\n" "%(obj)s is geen medewerker" -#: amelie/members/templates/person_employee.html:28 amelie/members/templates/person_study.html:48 +#: amelie/members/templates/person_employee.html:28 +#: amelie/members/templates/person_study.html:48 msgid "Configure" msgstr "Stel in" @@ -6946,23 +8384,44 @@ msgstr "" "\n" "%(obj)s heeft geen machtigingen." -#: amelie/members/templates/person_mandate.html:10 amelie/members/templates/person_mandate.html:79 amelie/members/templates/person_new_mandate.html:3 +#: amelie/members/templates/person_mandate.html:10 +#: amelie/members/templates/person_mandate.html:79 +#: amelie/members/templates/person_new_mandate.html:3 msgid "Add mandate" msgstr "Voeg machtiging toe" -#: amelie/members/templates/person_mandate.html:18 amelie/personal_tab/forms.py:115 amelie/personal_tab/templates/cookie_corner_authorization_list.html:66 amelie/personal_tab/templates/cookie_corner_authorization_view.html:115 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:90 amelie/personal_tab/templates/cookie_corner_process_batch.html:47 amelie/personal_tab/templates/info/account_information.html:12 amelie/personal_tab/templates/lists/authorization_select.html:10 +#: amelie/members/templates/person_mandate.html:18 +#: amelie/personal_tab/forms.py:115 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:66 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:115 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:90 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:47 +#: amelie/personal_tab/templates/info/account_information.html:12 +#: amelie/personal_tab/templates/lists/authorization_select.html:10 msgid "Reference" msgstr "Kenmerk" -#: amelie/members/templates/person_mandate.html:19 amelie/members/templates/person_membership.html:35 amelie/personal_tab/forms.py:127 amelie/personal_tab/templates/cookie_corner_authorization_list.html:67 amelie/personal_tab/templates/cookie_corner_authorization_view.html:17 amelie/personal_tab/templates/info/account_information.html:13 amelie/personal_tab/templates/lists/authorization_select.html:11 +#: amelie/members/templates/person_mandate.html:19 +#: amelie/members/templates/person_membership.html:35 +#: amelie/personal_tab/forms.py:127 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:67 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:17 +#: amelie/personal_tab/templates/info/account_information.html:13 +#: amelie/personal_tab/templates/lists/authorization_select.html:11 msgid "Sort" msgstr "Soort" -#: amelie/members/templates/person_mandate.html:20 amelie/personal_tab/templates/cookie_corner_authorization_list.html:69 amelie/personal_tab/templates/info/account_information.html:14 +#: amelie/members/templates/person_mandate.html:20 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:69 +#: amelie/personal_tab/templates/info/account_information.html:14 msgid "IBAN/BIC" msgstr "IBAN/BIC" -#: amelie/members/templates/person_mandate.html:21 amelie/personal_tab/forms.py:117 amelie/personal_tab/templates/cookie_corner_authorization_view.html:41 amelie/personal_tab/templates/info/account_information.html:15 amelie/tools/pdf.py:394 +#: amelie/members/templates/person_mandate.html:21 +#: amelie/personal_tab/forms.py:117 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:41 +#: amelie/personal_tab/templates/info/account_information.html:15 +#: amelie/tools/pdf.py:394 msgid "Account holder" msgstr "Rekeninghouder" @@ -6970,7 +8429,10 @@ msgstr "Rekeninghouder" msgid "Signed" msgstr "Getekend" -#: amelie/members/templates/person_mandate.html:52 amelie/personal_tab/templates/cookie_corner_authorization_list.html:105 amelie/personal_tab/templates/info/account_information.html:42 amelie/personal_tab/templates/lists/authorization_select.html:46 +#: amelie/members/templates/person_mandate.html:52 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:105 +#: amelie/personal_tab/templates/info/account_information.html:42 +#: amelie/personal_tab/templates/lists/authorization_select.html:46 msgid "before September 2013" msgstr "voor september 2013" @@ -6988,7 +8450,8 @@ msgstr "" "\n" "%(obj)s is geen lid." -#: amelie/members/templates/person_membership.html:10 amelie/members/templates/person_membership.html:95 +#: amelie/members/templates/person_membership.html:10 +#: amelie/members/templates/person_membership.html:95 msgid "Add membership" msgstr "Voeg lidmaatschap toe" @@ -7069,7 +8532,8 @@ msgstr "Inschrijven nieuw eerstejaars lid" msgid "Enrollment of new member" msgstr "Inschrijven nieuw lid" -#: amelie/members/templates/person_registration_form_preregister_complete.html:5 amelie/members/templates/person_registration_form_preregister_complete.html:12 +#: amelie/members/templates/person_registration_form_preregister_complete.html:5 +#: amelie/members/templates/person_registration_form_preregister_complete.html:12 msgid "Pre-enrollment successful" msgstr "Voorinschrijving geslaagd" @@ -7105,15 +8569,18 @@ msgstr "Terug naar hoofdpagina" msgid "Pre-enroll new freshman member" msgstr "Nieuw eerstejaarslid voorinschrijven" -#: amelie/members/templates/person_study.html:10 templates/profile_overview.html:109 +#: amelie/members/templates/person_study.html:10 +#: templates/profile_overview.html:109 msgid "Period(s)" msgstr "Periode(s)" -#: amelie/members/templates/person_study.html:19 templates/profile_overview.html:118 +#: amelie/members/templates/person_study.html:19 +#: templates/profile_overview.html:118 msgid "No doegroep registered" msgstr "Geen doegroep geregistreerd" -#: amelie/members/templates/person_study.html:21 templates/basis.html:135 templates/profile_overview.html:120 +#: amelie/members/templates/person_study.html:21 templates/basis.html:135 +#: templates/profile_overview.html:120 msgid "Current" msgstr "Actueel" @@ -7127,11 +8594,13 @@ msgstr "" "\n" "%(obj)s is geen student." -#: amelie/members/templates/preregistration_delete_confirm.html:4 amelie/members/templates/preregistration_print_all.html:4 +#: amelie/members/templates/preregistration_delete_confirm.html:4 +#: amelie/members/templates/preregistration_print_all.html:4 msgid "Pre-enrollment" msgstr "Voorinschrijving" -#: amelie/members/templates/preregistration_delete_confirm.html:4 amelie/members/templates/preregistration_delete_confirm.html:8 +#: amelie/members/templates/preregistration_delete_confirm.html:4 +#: amelie/members/templates/preregistration_delete_confirm.html:8 msgid "Confirm deletion" msgstr "Bevestig verwijderen" @@ -7150,7 +8619,8 @@ msgstr "" msgid "Print all forms" msgstr "Print alle formulieren" -#: amelie/members/templates/preregistration_print_all.html:8 amelie/members/templates/preregistration_status.html:28 +#: amelie/members/templates/preregistration_print_all.html:8 +#: amelie/members/templates/preregistration_status.html:28 msgid "Print all membership and authorization forms" msgstr "Print alle lidmaatschaps- en machtigingsformulieren" @@ -7174,11 +8644,16 @@ msgstr "In welke taal moeten deze formulieren worden geprint?" msgid "Print those forms!" msgstr "Print die formulieren!" -#: amelie/members/templates/preregistration_print_all.html:45 amelie/personal_tab/templates/pos/shop.html:13 amelie/personal_tab/templates/register/register_card_error.html:14 amelie/personal_tab/templates/register/register_card_scan.html:54 +#: amelie/members/templates/preregistration_print_all.html:45 +#: amelie/personal_tab/templates/pos/shop.html:13 +#: amelie/personal_tab/templates/register/register_card_error.html:14 +#: amelie/personal_tab/templates/register/register_card_scan.html:54 msgid "Go back" msgstr "Ga terug" -#: amelie/members/templates/preregistration_status.html:5 amelie/members/templates/preregistration_status.html:11 templates/frontpage.html:118 +#: amelie/members/templates/preregistration_status.html:5 +#: amelie/members/templates/preregistration_status.html:11 +#: templates/frontpage.html:130 msgid "Pre-enrollment status" msgstr "Status van voorinschrijvingen" @@ -7243,11 +8718,14 @@ msgstr "Meer zoekmogelijkheden" msgid "Advanced search form" msgstr "Uitgebreid zoekformulier" -#: amelie/members/templates/registration_check.html:4 amelie/members/templates/registration_check.html:14 +#: amelie/members/templates/registration_check.html:4 +#: amelie/members/templates/registration_check.html:14 msgid "Enrollment check" msgstr "Inschrijfcontrole" -#: amelie/members/templates/registration_check.html:29 amelie/personal_tab/templates/exports/screen.html:60 templates/profile_overview.html:10 +#: amelie/members/templates/registration_check.html:29 +#: amelie/personal_tab/templates/exports/screen.html:60 +#: templates/profile_overview.html:10 msgid "Data" msgstr "Gegevens" @@ -7275,19 +8753,24 @@ msgstr "unknown id" msgid "invalid atqa/sak" msgstr "invalid atqa/sak" -#: amelie/members/templates/registration_check.html:99 amelie/personal_tab/templates/info/rfid_cards.html:12 +#: amelie/members/templates/registration_check.html:99 +#: amelie/personal_tab/templates/info/rfid_cards.html:12 msgid "Card" msgstr "Kaart" -#: amelie/members/templates/registration_check.html:108 amelie/personal_tab/models.py:373 amelie/personal_tab/templates/info/rfid_cards.html:31 +#: amelie/members/templates/registration_check.html:108 +#: amelie/personal_tab/models.py:373 +#: amelie/personal_tab/templates/info/rfid_cards.html:31 msgid "Activated" msgstr "Geactiveerd" -#: amelie/members/templates/registration_check.html:110 amelie/personal_tab/templates/info/rfid_cards.html:33 +#: amelie/members/templates/registration_check.html:110 +#: amelie/personal_tab/templates/info/rfid_cards.html:33 msgid "Not activated" msgstr "Niet geactiveerd" -#: amelie/members/templates/registration_check.html:115 amelie/personal_tab/templates/info/rfid_cards.html:74 +#: amelie/members/templates/registration_check.html:115 +#: amelie/personal_tab/templates/info/rfid_cards.html:74 msgid "You didn't register any rfid cards." msgstr "Er zijn geen rfid-kaarten geregistreerd." @@ -7394,7 +8877,9 @@ msgstr "Betalingen statistieken" msgid "Payments" msgstr "Betalingen" -#: amelie/members/templates/statistics/payments.html:29 amelie/personal_tab/statistics.py:291 amelie/personal_tab/templates/wrapped.html:85 +#: amelie/members/templates/statistics/payments.html:29 +#: amelie/personal_tab/statistics.py:291 +#: amelie/personal_tab/templates/wrapped.html:85 msgid "Totals" msgstr "Totalen" @@ -7461,15 +8946,19 @@ msgstr "Bezig met laden" msgid "Inter-/Actief/ Room Narrowcasting" msgstr "Narrowcasting Inter-/Actief/-kamer" -#: amelie/narrowcasting/templates/room.html:39 amelie/narrowcasting/templates/room.html:51 +#: amelie/narrowcasting/templates/room.html:39 +#: amelie/narrowcasting/templates/room.html:51 msgid "Album image" msgstr "Albumafbeelding" -#: amelie/narrowcasting/templates/room.html:42 amelie/narrowcasting/templates/room.html:54 amelie/narrowcasting/templates/room.html:207 +#: amelie/narrowcasting/templates/room.html:42 +#: amelie/narrowcasting/templates/room.html:54 +#: amelie/narrowcasting/templates/room.html:207 msgid "Not playing anything..." msgstr "Niks aan het afspelen..." -#: amelie/narrowcasting/templates/room.html:64 amelie/narrowcasting/templates/room.html:202 +#: amelie/narrowcasting/templates/room.html:64 +#: amelie/narrowcasting/templates/room.html:202 msgid "Loading activity information..." msgstr "Activiteitsinformatie laden..." @@ -7533,7 +9022,9 @@ msgstr "Onbekende artiest" msgid "Error while getting spotify data" msgstr "Fout bij het ophalen van data van spotify" -#: amelie/narrowcasting/views.py:20 amelie/narrowcasting/views.py:105 amelie/narrowcasting/views.py:160 amelie/narrowcasting/views.py:193 amelie/narrowcasting/views.py:225 +#: amelie/narrowcasting/views.py:20 amelie/narrowcasting/views.py:105 +#: amelie/narrowcasting/views.py:160 amelie/narrowcasting/views.py:193 +#: amelie/narrowcasting/views.py:225 msgid "Spotify settings not configured." msgstr "Spotify-instellingen niet gevonden." @@ -7553,11 +9044,13 @@ msgstr "Geen authorisatiecode of staat gegeven." msgid "No such authentication attempt found, try again." msgstr "Geen authenticatiepoging gevonden, probeer het opnieuw." -#: amelie/narrowcasting/views.py:163 amelie/narrowcasting/views.py:196 amelie/narrowcasting/views.py:228 +#: amelie/narrowcasting/views.py:163 amelie/narrowcasting/views.py:196 +#: amelie/narrowcasting/views.py:228 msgid "Missing identifier" msgstr "Missende identificatie" -#: amelie/narrowcasting/views.py:168 amelie/narrowcasting/views.py:201 amelie/narrowcasting/views.py:233 +#: amelie/narrowcasting/views.py:168 amelie/narrowcasting/views.py:201 +#: amelie/narrowcasting/views.py:233 msgid "No association for this identifier" msgstr "Geen koppeling voor deze identificatie" @@ -7569,7 +9062,8 @@ msgstr "IA Nieuws" msgid "The news by your favorite Study Association" msgstr "Het nieuws van jouw favoriete studievereniging" -#: amelie/news/forms.py:10 amelie/news/forms.py:11 amelie/news/templates/news_item_form.html:38 +#: amelie/news/forms.py:10 amelie/news/forms.py:11 +#: amelie/news/templates/news_item_form.html:38 msgid "Introduction" msgstr "Inleiding" @@ -7577,7 +9071,9 @@ msgstr "Inleiding" msgid "This text can be lay-outed in 175 characters (markdown)" msgstr "Deze tekst kan worden opgemaakt in 175 tekens (markdown)" -#: amelie/news/forms.py:13 amelie/videos/templates/videos/ia_video_form.html:100 amelie/videos/templates/videos/yt_video_form.html:100 +#: amelie/news/forms.py:13 +#: amelie/videos/templates/videos/ia_video_form.html:100 +#: amelie/videos/templates/videos/yt_video_form.html:100 msgid "Publisher" msgstr "Uitgever" @@ -7589,7 +9085,8 @@ msgstr "Kies deze optie om dit nieuwsbericht vast te zetten" msgid "News message" msgstr "Nieuwsbericht" -#: amelie/news/models.py:40 amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:6 +#: amelie/news/models.py:40 +#: amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:6 msgid "News messages" msgstr "Nieuwsberichten" @@ -7597,15 +9094,20 @@ msgstr "Nieuwsberichten" msgid "Are you sure you want to remove this message" msgstr "Weet je zeker dat je dit bericht wilt verwijderen?" -#: amelie/news/templates/news_item_form.html:4 amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:4 +#: amelie/news/templates/news_item_form.html:4 +#: amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:4 msgid "New news message" msgstr "Nieuw nieuwsbericht" -#: amelie/news/templates/news_item_form.html:9 amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:10 +#: amelie/news/templates/news_item_form.html:9 +#: amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:10 msgid "Add new news message" msgstr "Nieuw nieuwsbericht toevoegen" -#: amelie/news/templates/news_item_form.html:9 amelie/news/templates/news_item_form.html:83 amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:11 amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:69 +#: amelie/news/templates/news_item_form.html:9 +#: amelie/news/templates/news_item_form.html:83 +#: amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:11 +#: amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:69 msgid "Edit news message" msgstr "Nieuwsbericht wijzigen" @@ -7613,7 +9115,8 @@ msgstr "Nieuwsbericht wijzigen" msgid "Please note, the introduction is shown on the front page, and is also placed before the content on the message page itself." msgstr "Let op, de inleiding wordt getoond op de homepage, en komt ook voor de inhoud bij het bericht zelf te staan." -#: amelie/news/templates/news_item_form.html:83 amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:69 +#: amelie/news/templates/news_item_form.html:83 +#: amelie/weekmail/templates/weekmail/weekmailnewsarticle_form.html:69 msgid "Create news message" msgstr "Nieuwsbericht aanmaken" @@ -7657,23 +9160,29 @@ msgstr "Nieuwe OAuth toegangsaanvraag" msgid "A new OAuth access request has been performed by a party." msgstr "Er is een nieuwe OAuth aanvraag geplaatst door een partij." -#: amelie/oauth/templates/oauth_access_request.mail:8 amelie/oauth/templates/request_oauth_sent.html:14 +#: amelie/oauth/templates/oauth_access_request.mail:8 +#: amelie/oauth/templates/request_oauth_sent.html:14 msgid "Member Name" msgstr "Naam van lid" -#: amelie/oauth/templates/oauth_access_request.mail:9 amelie/oauth/templates/request_oauth_sent.html:15 +#: amelie/oauth/templates/oauth_access_request.mail:9 +#: amelie/oauth/templates/request_oauth_sent.html:15 msgid "Member Mail" msgstr "Email van lid" -#: amelie/oauth/templates/oauth_access_request.mail:10 amelie/oauth/templates/request_oauth_sent.html:16 +#: amelie/oauth/templates/oauth_access_request.mail:10 +#: amelie/oauth/templates/request_oauth_sent.html:16 msgid "Redirect URLs" msgstr "Redirect URLs" -#: amelie/oauth/templates/oauth_access_request.mail:11 amelie/oauth/templates/request_oauth_sent.html:22 +#: amelie/oauth/templates/oauth_access_request.mail:11 +#: amelie/oauth/templates/request_oauth_sent.html:22 msgid "Client Type" msgstr "Client Type" -#: amelie/oauth/templates/request_oauth.html:3 amelie/oauth/templates/request_oauth.html:7 amelie/oauth/templates/request_oauth.html:57 +#: amelie/oauth/templates/request_oauth.html:3 +#: amelie/oauth/templates/request_oauth.html:7 +#: amelie/oauth/templates/request_oauth.html:57 msgid "Request OAuth2 Access" msgstr "OAuth2 toegang aanvragen" @@ -7701,7 +9210,8 @@ msgstr "Is deze client prive of publiek?" msgid "Please give a short description of the intended purpose of this application." msgstr "Geef hier een korte beschrijving van het doel van deze applicatie." -#: amelie/oauth/templates/request_oauth_sent.html:3 amelie/oauth/templates/request_oauth_sent.html:7 +#: amelie/oauth/templates/request_oauth_sent.html:3 +#: amelie/oauth/templates/request_oauth_sent.html:7 msgid "OAuth2 Access Request Submitted" msgstr "De OAuth2 toegang aanvraag is verstuurd" @@ -7756,15 +9266,23 @@ msgstr "Terugboeking contributie {membership_type} ({start_year}/{end_year})" msgid "Description for within Inter-Actief" msgstr "Interne omschrijving" -#: amelie/personal_tab/forms.py:38 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:62 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:60 amelie/personal_tab/templates/cookie_corner_process_batch.html:20 +#: amelie/personal_tab/forms.py:38 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:62 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:60 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:20 msgid "Date of execution" msgstr "Uitvoerdatum" -#: amelie/personal_tab/forms.py:39 amelie/personal_tab/templates/cookie_corner_statistics.html:283 +#: amelie/personal_tab/forms.py:39 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:283 msgid "Membership fee" msgstr "Contributie" -#: amelie/personal_tab/forms.py:40 amelie/personal_tab/templates/cookie_corner_balance.html:29 amelie/personal_tab/templates/cookie_corner_transactions_new.html:39 amelie/personal_tab/templates/lists/transactions_totals.html:21 amelie/statistics/templates/statistics.html:60 templates/basis.html:263 +#: amelie/personal_tab/forms.py:40 +#: amelie/personal_tab/templates/cookie_corner_balance.html:29 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:39 +#: amelie/personal_tab/templates/lists/transactions_totals.html:21 +#: amelie/statistics/templates/statistics.html:60 templates/basis.html:263 msgid "Personal tab" msgstr "Streeplijst" @@ -7824,7 +9342,9 @@ msgstr "begin" msgid "end" msgstr "eind" -#: amelie/personal_tab/models.py:21 amelie/personal_tab/models.py:84 amelie/personal_tab/models.py:640 amelie/personal_tab/models.py:763 amelie/publications/models.py:19 +#: amelie/personal_tab/models.py:21 amelie/personal_tab/models.py:84 +#: amelie/personal_tab/models.py:640 amelie/personal_tab/models.py:763 +#: amelie/publications/models.py:19 msgid "description" msgstr "omschrijving" @@ -7840,7 +9360,8 @@ msgstr "artikelen" msgid "balance account number" msgstr "balansrekeningnummer" -#: amelie/personal_tab/models.py:42 amelie/personal_tab/models.py:50 amelie/personal_tab/models.py:80 +#: amelie/personal_tab/models.py:42 amelie/personal_tab/models.py:50 +#: amelie/personal_tab/models.py:80 msgid "discount offer" msgstr "kortingsactie" @@ -7848,15 +9369,23 @@ msgstr "kortingsactie" msgid "discount offers" msgstr "kortingsacties" -#: amelie/personal_tab/models.py:47 amelie/personal_tab/models.py:82 amelie/personal_tab/models.py:766 +#: amelie/personal_tab/models.py:47 amelie/personal_tab/models.py:82 +#: amelie/personal_tab/models.py:766 msgid "amount" msgstr "bedrag" -#: amelie/personal_tab/models.py:48 amelie/personal_tab/models.py:81 amelie/personal_tab/models.py:604 +#: amelie/personal_tab/models.py:48 amelie/personal_tab/models.py:81 +#: amelie/personal_tab/models.py:604 msgid "date" msgstr "datum" -#: amelie/personal_tab/models.py:57 amelie/personal_tab/models.py:85 amelie/personal_tab/models.py:125 amelie/personal_tab/templates/cookie_corner_statistics.html:62 amelie/personal_tab/templates/cookie_corner_statistics.html:108 amelie/personal_tab/templates/cookie_corner_statistics.html:149 amelie/personal_tab/templates/lists/cookie_corner_transactions.html:13 amelie/personal_tab/templates/pos/success.html:37 +#: amelie/personal_tab/models.py:57 amelie/personal_tab/models.py:85 +#: amelie/personal_tab/models.py:125 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:62 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:108 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:149 +#: amelie/personal_tab/templates/lists/cookie_corner_transactions.html:13 +#: amelie/personal_tab/templates/pos/success.html:37 msgid "discount" msgstr "korting" @@ -7880,7 +9409,8 @@ msgstr "kortingstegoed" msgid "discount balances" msgstr "kortingstegoeden" -#: amelie/personal_tab/models.py:127 amelie/personal_tab/templates/info/transaction_information.html:15 +#: amelie/personal_tab/models.py:127 +#: amelie/personal_tab/templates/info/transaction_information.html:15 msgid "Direct withdrawal" msgstr "Incasso" @@ -7888,15 +9418,30 @@ msgstr "Incasso" msgid "Transaction" msgstr "Transactie" -#: amelie/personal_tab/models.py:138 amelie/personal_tab/templates/cookie_corner_activity_transactions.html:4 amelie/personal_tab/templates/cookie_corner_activity_transactions.html:9 amelie/personal_tab/templates/cookie_corner_dashboard.html:33 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:159 amelie/personal_tab/templates/cookie_corner_statistics.html:191 amelie/personal_tab/templates/cookie_corner_transactions_new.html:4 amelie/personal_tab/templates/cookie_corner_transactions_new.html:9 amelie/personal_tab/templates/cookie_corner_transactions_new.html:28 amelie/personal_tab/templates/price_list.html:4 +#: amelie/personal_tab/models.py:138 +#: amelie/personal_tab/templates/cookie_corner_activity_transactions.html:4 +#: amelie/personal_tab/templates/cookie_corner_activity_transactions.html:9 +#: amelie/personal_tab/templates/cookie_corner_dashboard.html:33 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:159 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:191 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:4 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:9 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:28 +#: amelie/personal_tab/templates/price_list.html:4 msgid "Transactions" msgstr "Transacties" -#: amelie/personal_tab/models.py:182 amelie/personal_tab/templates/lists/activity_transactions.html:13 +#: amelie/personal_tab/models.py:182 +#: amelie/personal_tab/templates/lists/activity_transactions.html:13 msgid "More sign up options" msgstr "Met inschrijfopties" -#: amelie/personal_tab/models.py:199 amelie/personal_tab/models.py:302 amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:14 amelie/personal_tab/templates/cookie_corner_statistics.html:59 amelie/personal_tab/templates/cookie_corner_statistics.html:147 amelie/personal_tab/templates/lists/cookie_corner_transactions.html:11 amelie/personal_tab/templates/price_list.html:15 +#: amelie/personal_tab/models.py:199 amelie/personal_tab/models.py:302 +#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:14 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:59 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:147 +#: amelie/personal_tab/templates/lists/cookie_corner_transactions.html:11 +#: amelie/personal_tab/templates/price_list.html:15 msgid "Article" msgstr "Artikel" @@ -7904,7 +9449,9 @@ msgstr "Artikel" msgid "Transaction id" msgstr "Transactie Id" -#: amelie/personal_tab/models.py:261 amelie/personal_tab/models.py:284 amelie/personal_tab/templates/cookie_corner_statistics.html:60 amelie/personal_tab/templates/cookie_corner_statistics.html:106 +#: amelie/personal_tab/models.py:261 amelie/personal_tab/models.py:284 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:60 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:106 msgid "General ledger account" msgstr "Grootboekrekening" @@ -7916,7 +9463,13 @@ msgstr "Grootboekrekeningen" msgid "Image" msgstr "Afbeelding" -#: amelie/personal_tab/models.py:289 amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:22 amelie/personal_tab/templates/lists/cookie_corner_transactions.html:15 amelie/personal_tab/templates/lists/transactions.html:13 amelie/personal_tab/templates/lists/transactions_totals.html:27 amelie/personal_tab/templates/pos/success.html:40 amelie/personal_tab/templates/price_list.html:17 +#: amelie/personal_tab/models.py:289 +#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:22 +#: amelie/personal_tab/templates/lists/cookie_corner_transactions.html:15 +#: amelie/personal_tab/templates/lists/transactions.html:13 +#: amelie/personal_tab/templates/lists/transactions_totals.html:27 +#: amelie/personal_tab/templates/pos/success.html:40 +#: amelie/personal_tab/templates/price_list.html:17 msgid "kCal" msgstr "kCal" @@ -7992,7 +9545,8 @@ msgstr "Aanmaakdatum" msgid "RFID card" msgstr "Rfid-kaart" -#: amelie/personal_tab/models.py:380 amelie/personal_tab/templates/info/rfid_cards.html:4 +#: amelie/personal_tab/models.py:380 +#: amelie/personal_tab/templates/info/rfid_cards.html:4 msgid "RFID cards" msgstr "Rfid-kaarten" @@ -8056,7 +9610,8 @@ msgstr "einddatum" msgid "has been signed" msgstr "is getekend" -#: amelie/personal_tab/models.py:588 amelie/personal_tab/models.py:601 amelie/personal_tab/models.py:757 +#: amelie/personal_tab/models.py:588 amelie/personal_tab/models.py:601 +#: amelie/personal_tab/models.py:757 msgid "mandate" msgstr "machtiging" @@ -8085,7 +9640,9 @@ msgstr "opmerking" msgid "Amendment of %(authorization)s on %(date)s" msgstr "Amendement van %(authorization)s op %(date)s" -#: amelie/personal_tab/models.py:625 amelie/personal_tab/models.py:770 amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:33 amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:31 +#: amelie/personal_tab/models.py:625 amelie/personal_tab/models.py:770 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:33 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:31 msgid "amendment" msgstr "amendement" @@ -8101,7 +9658,9 @@ msgstr "aangemaakt op" msgid "Direct withdrawal-task" msgstr "incasso-opdracht" -#: amelie/personal_tab/models.py:673 amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:4 amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:8 +#: amelie/personal_tab/models.py:673 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:4 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:8 msgid "Direct withdrawal-tasks" msgstr "Incasso-opdrachten" @@ -8117,7 +9676,10 @@ msgstr "Geweigerd" msgid "Cancelled" msgstr "Geannuleerd" -#: amelie/personal_tab/models.py:692 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:49 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:105 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:114 +#: amelie/personal_tab/models.py:692 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:49 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:105 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:114 msgid "First collection" msgstr "Eerste incasso" @@ -8161,7 +9723,11 @@ msgstr "incasso-batches" msgid "batch" msgstr "batch" -#: amelie/personal_tab/models.py:760 amelie/personal_tab/templates/cookie_corner_authorization_view.html:117 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:18 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:93 amelie/personal_tab/templates/cookie_corner_process_batch.html:50 +#: amelie/personal_tab/models.py:760 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:117 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:18 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:93 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:50 msgid "end-to-end-id" msgstr "End-to-end-id" @@ -8222,7 +9788,8 @@ msgstr "Registratietoken" msgid "Access for personal tab only." msgstr "Uitsluiten toegankelijk voor de streeplijst." -#: amelie/personal_tab/pos_views.py:67 amelie/personal_tab/pos_views.py:567 amelie/personal_tab/pos_views.py:578 +#: amelie/personal_tab/pos_views.py:67 amelie/personal_tab/pos_views.py:567 +#: amelie/personal_tab/pos_views.py:578 msgid "Something went wrong, please try again later." msgstr "Er ging iets fout, probeer het later opnieuw." @@ -8398,15 +9965,22 @@ msgstr "Kaart is geregistreerd." msgid "{} ledger statistics" msgstr "{} grootboekstatistieken" -#: amelie/personal_tab/statistics.py:283 amelie/personal_tab/templates/cookie_corner_statistics.html:52 amelie/personal_tab/templates/cookie_corner_statistics_form.html:4 amelie/personal_tab/templates/cookie_corner_statistics_form.html:9 +#: amelie/personal_tab/statistics.py:283 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:52 +#: amelie/personal_tab/templates/cookie_corner_statistics_form.html:4 +#: amelie/personal_tab/templates/cookie_corner_statistics_form.html:9 msgid "Personal tab statistics" msgstr "Streeplijststatistieken" -#: amelie/personal_tab/statistics.py:284 amelie/personal_tab/templates/cookie_corner_balance_form.html:4 amelie/personal_tab/templates/cookie_corner_balance_form.html:9 amelie/personal_tab/templates/cookie_corner_statistics.html:100 +#: amelie/personal_tab/statistics.py:284 +#: amelie/personal_tab/templates/cookie_corner_balance_form.html:4 +#: amelie/personal_tab/templates/cookie_corner_balance_form.html:9 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:100 msgid "Personal tab balance" msgstr "Streeplijst totalen" -#: amelie/personal_tab/statistics.py:286 amelie/personal_tab/templates/cookie_corner_statistics.html:235 +#: amelie/personal_tab/statistics.py:286 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:235 msgid "Alexia transactions" msgstr "Alexiatransacties" @@ -8414,11 +9988,13 @@ msgstr "Alexiatransacties" msgid "Contribution transactions" msgstr "Contributietransacties" -#: amelie/personal_tab/statistics.py:288 amelie/personal_tab/templates/cookie_corner_statistics.html:407 +#: amelie/personal_tab/statistics.py:288 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:407 msgid "Discount offers" msgstr "Kortingsacties" -#: amelie/personal_tab/statistics.py:289 amelie/personal_tab/templates/cookie_corner_statistics.html:373 +#: amelie/personal_tab/statistics.py:289 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:373 msgid "Discount balances" msgstr "Kortingstegoeden" @@ -8426,11 +10002,23 @@ msgstr "Kortingstegoeden" msgid "Custom transactions" msgstr "Overige transacties" -#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:4 amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:8 amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:4 amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:8 amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:4 amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:8 amelie/personal_tab/templates/cookie_corner/reversal_transaction_detail.html:4 amelie/personal_tab/templates/cookie_corner/reversal_transaction_detail.html:8 amelie/personal_tab/templates/cookie_corner/transaction_delete.html:4 amelie/personal_tab/templates/cookie_corner/transaction_detail.html:4 amelie/personal_tab/templates/cookie_corner/transaction_detail.html:8 +#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:4 +#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:8 +#: amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:4 +#: amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:8 +#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:4 +#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:8 +#: amelie/personal_tab/templates/cookie_corner/reversal_transaction_detail.html:4 +#: amelie/personal_tab/templates/cookie_corner/reversal_transaction_detail.html:8 +#: amelie/personal_tab/templates/cookie_corner/transaction_delete.html:4 +#: amelie/personal_tab/templates/cookie_corner/transaction_detail.html:4 +#: amelie/personal_tab/templates/cookie_corner/transaction_detail.html:8 msgid "Transaction information" msgstr "Transactiegegevens" -#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:23 amelie/personal_tab/templates/cookie_corner_statistics.html:209 amelie/personal_tab/templates/lists/activity_transactions.html:41 +#: amelie/personal_tab/templates/cookie_corner/activity_transaction_detail.html:23 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:209 +#: amelie/personal_tab/templates/lists/activity_transactions.html:41 msgid "Deleted event" msgstr "Verwijderd event" @@ -8446,7 +10034,8 @@ msgstr "Transactienummer Alexia" msgid "Purchases" msgstr "Aankopen" -#: amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:30 amelie/personal_tab/templates/pos/success.html:33 +#: amelie/personal_tab/templates/cookie_corner/alexia_transaction_detail.html:30 +#: amelie/personal_tab/templates/pos/success.html:33 msgid "Product" msgstr "Product" @@ -8458,7 +10047,9 @@ msgstr "Geen aankopen." msgid "It was not possible to retrieve the transaction details." msgstr "Het was niet mogelijk de transactiedetails op te halen." -#: amelie/personal_tab/templates/cookie_corner/authorization_anonymize.html:4 amelie/personal_tab/templates/cookie_corner/authorization_anonymize.html:9 amelie/personal_tab/templates/cookie_corner_overview.html:24 +#: amelie/personal_tab/templates/cookie_corner/authorization_anonymize.html:4 +#: amelie/personal_tab/templates/cookie_corner/authorization_anonymize.html:9 +#: amelie/personal_tab/templates/cookie_corner_overview.html:24 msgid "Anonymize old mandates" msgstr "Oude machtigingen anonimiseren" @@ -8466,7 +10057,9 @@ msgstr "Oude machtigingen anonimiseren" msgid "The following mandates are no longer actively used and can be anonymized." msgstr "Onderstaande machtigingen worden niet meer gebruikt en kunnen geanonimiseerd worden." -#: amelie/personal_tab/templates/cookie_corner/authorization_anonymize.html:15 amelie/personal_tab/templates/cookie_corner/authorization_anonymize_success.html:15 amelie/personal_tab/templates/cookie_corner/authorization_terminate.html:15 +#: amelie/personal_tab/templates/cookie_corner/authorization_anonymize.html:15 +#: amelie/personal_tab/templates/cookie_corner/authorization_anonymize_success.html:15 +#: amelie/personal_tab/templates/cookie_corner/authorization_terminate.html:15 msgid "Number of mandates" msgstr "Aantal machtigingen" @@ -8474,7 +10067,8 @@ msgstr "Aantal machtigingen" msgid "Anonymize mandates" msgstr "Machtigingen anonimiseren" -#: amelie/personal_tab/templates/cookie_corner/authorization_anonymize_success.html:4 amelie/personal_tab/templates/cookie_corner/authorization_anonymize_success.html:9 +#: amelie/personal_tab/templates/cookie_corner/authorization_anonymize_success.html:4 +#: amelie/personal_tab/templates/cookie_corner/authorization_anonymize_success.html:9 msgid "Old mandates anonymized" msgstr "Oude machtigingen geanonimiseerd" @@ -8482,7 +10076,9 @@ msgstr "Oude machtigingen geanonimiseerd" msgid "The following mandates are anonymized and their paper version can be destroyed." msgstr "Onderstaande machtigingen zijn geanonimiseerd en de papieren versies kunnen daarom geshred worden." -#: amelie/personal_tab/templates/cookie_corner/authorization_terminate.html:4 amelie/personal_tab/templates/cookie_corner/authorization_terminate.html:9 amelie/personal_tab/templates/cookie_corner_overview.html:23 +#: amelie/personal_tab/templates/cookie_corner/authorization_terminate.html:4 +#: amelie/personal_tab/templates/cookie_corner/authorization_terminate.html:9 +#: amelie/personal_tab/templates/cookie_corner_overview.html:23 msgid "End inactive mandates" msgstr "Inactieve machtigingen beëindigen" @@ -8494,15 +10090,18 @@ msgstr "Onderstaande machtigingen worden niet meer actief gebruikt en kunnen be msgid "End mandates" msgstr "Machtigingen beëindigen" -#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:28 amelie/personal_tab/templates/cookie_corner/transaction_detail.html:16 +#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:28 +#: amelie/personal_tab/templates/cookie_corner/transaction_detail.html:16 msgid "Edit transaction" msgstr "Transactie wijzigen" -#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:29 amelie/personal_tab/templates/cookie_corner/transaction_detail.html:17 +#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:29 +#: amelie/personal_tab/templates/cookie_corner/transaction_detail.html:17 msgid "Delete transaction" msgstr "Verwijder transactie" -#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:31 amelie/personal_tab/templates/cookie_corner/transaction_detail.html:19 +#: amelie/personal_tab/templates/cookie_corner/cookie_corner_transaction_detail.html:31 +#: amelie/personal_tab/templates/cookie_corner/transaction_detail.html:19 msgid "This transaction is not editable as it has already been debited." msgstr "De transactie is niet aan te passen omdat deze al geïncasseerd is." @@ -8525,7 +10124,8 @@ msgstr "" "\n" "Weet je zeker dat je '%(object)s' van %(person)s wilt verwijderen?" -#: amelie/personal_tab/templates/cookie_corner/transaction_form.html:5 amelie/personal_tab/templates/cookie_corner/transaction_form.html:13 +#: amelie/personal_tab/templates/cookie_corner/transaction_form.html:5 +#: amelie/personal_tab/templates/cookie_corner/transaction_form.html:13 msgid "Add transaction" msgstr "Transactie toevoegen" @@ -8542,7 +10142,9 @@ msgstr "Je voegt nu een streeplijsttransactie toe" msgid "You are now adding a transaction in the category \"Other\"" msgstr "Je voegt nu een overige transactie toe" -#: amelie/personal_tab/templates/cookie_corner_authorization_amendment.html:4 amelie/personal_tab/templates/cookie_corner_authorization_amendment.html:9 amelie/personal_tab/templates/cookie_corner_authorization_view.html:100 +#: amelie/personal_tab/templates/cookie_corner_authorization_amendment.html:4 +#: amelie/personal_tab/templates/cookie_corner_authorization_amendment.html:9 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:100 msgid "Add amendment" msgstr "Amendement invoeren" @@ -8560,15 +10162,19 @@ msgstr "" msgid "Search mandates for collection" msgstr "Machtigingen zoeken" -#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:68 amelie/personal_tab/templates/lists/authorization_select.html:12 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:68 +#: amelie/personal_tab/templates/lists/authorization_select.html:12 msgid "Person/account holder" msgstr "Persoon/rekeninghouder" -#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:103 amelie/personal_tab/templates/info/account_information.html:40 amelie/personal_tab/templates/lists/authorization_select.html:44 +#: amelie/personal_tab/templates/cookie_corner_authorization_list.html:103 +#: amelie/personal_tab/templates/info/account_information.html:40 +#: amelie/personal_tab/templates/lists/authorization_select.html:44 msgid "(not yet) active" msgstr "(nog) niet actief" -#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:13 amelie/tools/pdf.py:370 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:13 +#: amelie/tools/pdf.py:370 msgid "Mandate reference" msgstr "Machtigingskenmerk" @@ -8580,15 +10186,18 @@ msgstr "afdrukken" msgid "Amendments" msgstr "Amendementen" -#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:67 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:113 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:67 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:113 msgid "Previous IBAN" msgstr "Vorige IBAN" -#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:68 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:117 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:68 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:117 msgid "Previous BIC" msgstr "Vorige BIC" -#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:69 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:121 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:69 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:121 msgid "Other bank" msgstr "Andere bank" @@ -8612,15 +10221,23 @@ msgstr "Instructies" msgid "Task/batch" msgstr "Opdracht/batch" -#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:119 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:75 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:104 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:94 amelie/personal_tab/templates/cookie_corner_process_batch.html:51 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:119 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:75 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:104 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:94 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:51 msgid "Amendment" msgstr "Amendement" -#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:153 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:138 amelie/personal_tab/templates/cookie_corner_process_batch.html:95 +#: amelie/personal_tab/templates/cookie_corner_authorization_view.html:153 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:138 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:95 msgid "No instructions have been found." msgstr "Er zijn geen instructies gevonden." -#: amelie/personal_tab/templates/cookie_corner_balance.html:5 amelie/personal_tab/templates/cookie_corner_statistics.html:11 amelie/personal_tab/templates/exports/screen.html:4 +#: amelie/personal_tab/templates/cookie_corner_balance.html:5 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:11 +#: amelie/personal_tab/templates/exports/screen.html:4 msgid "Result" msgstr "Resultaat" @@ -8628,15 +10245,24 @@ msgstr "Resultaat" msgid "Balance date:" msgstr "Balansdatum:" -#: amelie/personal_tab/templates/cookie_corner_balance.html:16 amelie/personal_tab/templates/cookie_corner_statistics.html:35 amelie/personal_tab/templates/cookie_corner_statistics.html:64 amelie/personal_tab/templates/cookie_corner_statistics.html:110 amelie/personal_tab/templates/cookie_corner_statistics.html:151 amelie/personal_tab/templates/exports/screen.html:25 +#: amelie/personal_tab/templates/cookie_corner_balance.html:16 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:35 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:64 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:110 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:151 +#: amelie/personal_tab/templates/exports/screen.html:25 msgid "Total costs" msgstr "Totaal bedrag" -#: amelie/personal_tab/templates/cookie_corner_balance.html:20 amelie/personal_tab/templates/cookie_corner_balance.html:57 +#: amelie/personal_tab/templates/cookie_corner_balance.html:20 +#: amelie/personal_tab/templates/cookie_corner_balance.html:57 msgid "Exam credits" msgstr "Tentamenkoekentegoed" -#: amelie/personal_tab/templates/cookie_corner_balance.html:36 amelie/personal_tab/templates/cookie_corner_balance.html:64 amelie/personal_tab/templates/cookie_corner_balance_form.html:20 amelie/personal_tab/templates/cookie_corner_overview.html:20 +#: amelie/personal_tab/templates/cookie_corner_balance.html:36 +#: amelie/personal_tab/templates/cookie_corner_balance.html:64 +#: amelie/personal_tab/templates/cookie_corner_balance_form.html:20 +#: amelie/personal_tab/templates/cookie_corner_overview.html:20 msgid "Balance" msgstr "Saldo" @@ -8644,7 +10270,8 @@ msgstr "Saldo" msgid "Select a period and click Balance." msgstr "Selecteer een periode en klik op Balans." -#: amelie/personal_tab/templates/cookie_corner_dashboard.html:4 amelie/personal_tab/templates/cookie_corner_dashboard.html:9 +#: amelie/personal_tab/templates/cookie_corner_dashboard.html:4 +#: amelie/personal_tab/templates/cookie_corner_dashboard.html:9 #, python-format msgid "Cookie and candy list of %(person)s" msgstr "Streeplijst van %(person)s" @@ -8676,7 +10303,9 @@ msgstr "" "\n" "Omdat je tentamens hebt ingeleverd, mag je nog voor %(credit)s aan koeken kopen." -#: amelie/personal_tab/templates/cookie_corner_dashboard.html:38 amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:26 amelie/personal_tab/templates/cookie_corner_transactions_new.html:37 +#: amelie/personal_tab/templates/cookie_corner_dashboard.html:38 +#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:26 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:37 msgid "No transactions have been found" msgstr "Er zijn geen transacties gevonden." @@ -8690,15 +10319,19 @@ msgstr "" "\n" "Laatste %(amount)s toegevoegde transacties." -#: amelie/personal_tab/templates/cookie_corner_dashboard.html:49 amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:45 +#: amelie/personal_tab/templates/cookie_corner_dashboard.html:49 +#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:45 msgid "Previous transactions" msgstr "Eerdere transacties" -#: amelie/personal_tab/templates/cookie_corner_dashboard.html:52 amelie/personal_tab/templates/info/exam_cookie_credit.html:18 +#: amelie/personal_tab/templates/cookie_corner_dashboard.html:52 +#: amelie/personal_tab/templates/info/exam_cookie_credit.html:18 msgid "History of exam credit" msgstr "Geschiedenis tentamentegoed" -#: amelie/personal_tab/templates/cookie_corner_dashboard.html:55 amelie/personal_tab/templates/wrapped.html:4 amelie/personal_tab/templates/wrapped_no_transactions.html:4 +#: amelie/personal_tab/templates/cookie_corner_dashboard.html:55 +#: amelie/personal_tab/templates/wrapped.html:4 +#: amelie/personal_tab/templates/wrapped_no_transactions.html:4 msgid "Cookie Corner Wrapped" msgstr "Cookie Corner Wrapped" @@ -8710,11 +10343,16 @@ msgstr "Streeplijsttransactie toevoegen" msgid "Add other transaction" msgstr "Overige transactie toevoegen" -#: amelie/personal_tab/templates/cookie_corner_dashboard.html:69 amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:54 amelie/personal_tab/templates/cookie_corner_exam_cookie_credit_add.html:5 amelie/personal_tab/templates/info/exam_cookie_credit.html:22 +#: amelie/personal_tab/templates/cookie_corner_dashboard.html:69 +#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:54 +#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit_add.html:5 +#: amelie/personal_tab/templates/info/exam_cookie_credit.html:22 msgid "Add credit for exams" msgstr "Tentamenkoekentegoed toevoegen" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_reversal.html:4 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_reversal.html:8 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:95 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_reversal.html:4 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_reversal.html:8 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:95 msgid "Insert reversal" msgstr "Terugboeking invoeren" @@ -8728,7 +10366,8 @@ msgstr "" "\n" "Met dit formulier kun je een terugboeking invoeren van incasso-instructie %(instruction)s." -#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:4 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:8 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:4 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:8 msgid "Direct withdrawal-instruction" msgstr "Incasso-instructie" @@ -8736,7 +10375,10 @@ msgstr "Incasso-instructie" msgid "Reference of direct withdrawal" msgstr "Incassoreferentie" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:49 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:4 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:8 amelie/personal_tab/templates/cookie_corner_process_batch.html:4 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:49 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:4 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:8 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:4 msgid "direct withdrawal-task" msgstr "Incasso-opdracht" @@ -8748,7 +10390,8 @@ msgstr "Incasso-batch" msgid "no" msgstr "nee" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:86 amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:136 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:86 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_instruction_view.html:136 msgid "Debit reversal" msgstr "Terugboeking" @@ -8756,7 +10399,9 @@ msgstr "Terugboeking" msgid "Pre-settlement" msgstr "Pre-settlement" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:12 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:4 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:10 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:12 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:4 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:10 msgid "Create collection" msgstr "Incasso-opdracht aanmaken" @@ -8764,11 +10409,14 @@ msgstr "Incasso-opdracht aanmaken" msgid "Identification" msgstr "Identificatie" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:21 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:17 amelie/weekmail/templates/weekmail/weekmail_wizard.html:25 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_list.html:21 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:17 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:25 msgid "Created on" msgstr "Aanmaakdatum" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_mailing.html:4 amelie/personal_tab/templates/cookie_corner_debt_collection_mailing.html:8 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_mailing.html:4 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_mailing.html:8 msgid "Send collection mailing" msgstr "Incassomailing versturen" @@ -8806,15 +10454,18 @@ msgstr "Voorstel maken" msgid "Direct withdrawal of membership fees" msgstr "Contributie-incasso's" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:36 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:80 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:36 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:80 msgid "Ongoing first attempt at direct withdrawal" msgstr "Lopende eerste incassopoging" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:38 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:82 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:38 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:82 msgid "People with an ongoing first attempt at direct withdrawal will NOT be withdrawn from." msgstr "Personen met lopende eerste incassopoging worden NIET incasseerd." -#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:41 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:85 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:41 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:85 msgid "" "\n" " The first attempt at collection of the belowmentioned people has not yet been processed.\n" @@ -8826,7 +10477,9 @@ msgstr "" "verwerkt. Deze kunnen niet geincasseerd worden voordat de\n" "eerste incassopoging verwerkt is." -#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:52 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:109 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:117 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:52 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:109 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:117 msgid "Follow-up direct withdrawal" msgstr "Vervolgincasso" @@ -8834,7 +10487,8 @@ msgstr "Vervolgincasso" msgid "Direct withdrawal of personal tabs" msgstr "Streeplijstincasso's" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:64 amelie/personal_tab/templates/exports/screen.html:38 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:64 +#: amelie/personal_tab/templates/exports/screen.html:38 msgid "Negative balance" msgstr "Negatief saldo" @@ -8850,7 +10504,9 @@ msgstr "Geen machtiging" msgid "People who have not signed a direct debit mandate will NOT be withdrawn from." msgstr "Personen zonder machtiging worden NIET incasseerd." -#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:94 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:105 amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:109 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:94 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:105 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_new.html:109 msgid "Mandate has ended" msgstr "Beëindigde machtiging" @@ -8874,15 +10530,23 @@ msgstr "" msgid "File identification" msgstr "Bestandsidentificatie" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:25 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:68 amelie/personal_tab/templates/cookie_corner_process_batch.html:28 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:25 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:68 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:28 msgid "Number of transactions" msgstr "Aantal transacties" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:29 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:72 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:29 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:72 msgid "Total reversed" msgstr "Totaal gestorneerd" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:33 amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:76 amelie/personal_tab/templates/cookie_corner_process_batch.html:32 amelie/personal_tab/templates/cookie_corner_statistics.html:63 amelie/personal_tab/templates/cookie_corner_statistics.html:109 amelie/personal_tab/templates/cookie_corner_statistics.html:150 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:33 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:76 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:32 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:63 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:109 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:150 msgid "Total cost" msgstr "Totaalbedrag" @@ -8890,11 +10554,13 @@ msgstr "Totaalbedrag" msgid "Export direct withdrawal-file" msgstr "Incassobestand exporteren" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:56 amelie/personal_tab/templates/cookie_corner_process_batch.html:16 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:56 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:16 msgid "Number of reference" msgstr "Referentienummer" -#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:64 amelie/personal_tab/templates/cookie_corner_process_batch.html:24 +#: amelie/personal_tab/templates/cookie_corner_debt_collection_view.html:64 +#: amelie/personal_tab/templates/cookie_corner_process_batch.html:24 msgid "Sequence type" msgstr "Sequence type" @@ -8906,11 +10572,14 @@ msgstr "Geen batches" msgid "No batches have been found." msgstr "Er zijn geen batches gevonden." -#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:4 amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:9 amelie/personal_tab/templates/cookie_corner_overview.html:18 +#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:4 +#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:9 +#: amelie/personal_tab/templates/cookie_corner_overview.html:18 msgid "Exam credit transactions" msgstr "Transacties tentamenkoekentegoed" -#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:21 amelie/personal_tab/templates/cookie_corner_transactions_new.html:21 +#: amelie/personal_tab/templates/cookie_corner_exam_cookie_credit.html:21 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:21 msgid "Show overview" msgstr "Overzicht tonen" @@ -8942,7 +10611,9 @@ msgstr "" "\n" "Tentamenkoekentegoed toevoegen voor %(person)s" -#: amelie/personal_tab/templates/cookie_corner_export_form.html:4 amelie/personal_tab/templates/cookie_corner_export_form.html:9 amelie/personal_tab/templates/cookie_corner_statistics.html:43 +#: amelie/personal_tab/templates/cookie_corner_export_form.html:4 +#: amelie/personal_tab/templates/cookie_corner_export_form.html:9 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:43 msgid "Export list of direct withdrawals" msgstr "Incassolijst exporteren" @@ -8958,7 +10629,8 @@ msgstr "Exporteren" msgid "Personal overview" msgstr "Persoonlijk overzicht" -#: amelie/personal_tab/templates/cookie_corner_overview.html:16 amelie/personal_tab/templates/price_list.html:8 +#: amelie/personal_tab/templates/cookie_corner_overview.html:16 +#: amelie/personal_tab/templates/price_list.html:8 msgid "Price list" msgstr "Prijslijst" @@ -8978,7 +10650,8 @@ msgstr "Verouderde pagina's" msgid "Export list of direct withdrawals (ClieOp)" msgstr "Incassolijst exporteren (ClieOp)" -#: amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:4 amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:8 +#: amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:4 +#: amelie/personal_tab/templates/cookie_corner_person_debt_collection_instructions.html:8 #, python-format msgid "Direct debit for %(person)s" msgstr "Incasso's voor %(person)s" @@ -8987,11 +10660,18 @@ msgstr "Incasso's voor %(person)s" msgid "No direct debits have been found." msgstr "Er zijn geen incasso's gevonden." -#: amelie/personal_tab/templates/cookie_corner_statistics.html:23 amelie/personal_tab/templates/exports/screen.html:13 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:23 +#: amelie/personal_tab/templates/exports/screen.html:13 msgid "End date (till)" msgstr "Einddatum (tot):" -#: amelie/personal_tab/templates/cookie_corner_statistics.html:189 amelie/personal_tab/templates/cookie_corner_statistics.html:324 amelie/personal_tab/templates/lists/alexia_transactions.html:9 amelie/personal_tab/templates/lists/cookie_corner_transactions.html:9 amelie/personal_tab/templates/lists/custom_transactions.html:9 amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:9 amelie/personal_tab/templates/lists/transactions.html:9 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:189 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:324 +#: amelie/personal_tab/templates/lists/alexia_transactions.html:9 +#: amelie/personal_tab/templates/lists/cookie_corner_transactions.html:9 +#: amelie/personal_tab/templates/lists/custom_transactions.html:9 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:9 +#: amelie/personal_tab/templates/lists/transactions.html:9 msgid "Time" msgstr "Tijd" @@ -8999,7 +10679,9 @@ msgstr "Tijd" msgid "Drink" msgstr "Borrel" -#: amelie/personal_tab/templates/cookie_corner_statistics.html:379 amelie/personal_tab/templates/cookie_corner_statistics.html:414 amelie/personal_tab/templates/info/transaction_information.html:29 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:379 +#: amelie/personal_tab/templates/cookie_corner_statistics.html:414 +#: amelie/personal_tab/templates/info/transaction_information.html:29 msgid "Discount offer" msgstr "Kortingsactie" @@ -9012,7 +10694,8 @@ msgstr "Er zijn statistieken om te laten zien." msgid "from %(date_from)s till %(date_to)s" msgstr "van %(date_from)s tot %(date_to)s" -#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:45 amelie/personal_tab/templates/lists/transactions_totals.html:23 +#: amelie/personal_tab/templates/cookie_corner_transactions_new.html:45 +#: amelie/personal_tab/templates/lists/transactions_totals.html:23 msgid "Alexia" msgstr "Alexia" @@ -9040,7 +10723,11 @@ msgstr "Personen met negative saldo worden NIET geëxporteerd." msgid "No people with a negative balance." msgstr "Geen personen met negatief saldo." -#: amelie/personal_tab/templates/exports/screen.html:89 amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:59 amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:46 amelie/personal_tab/templates/lists/transactions.html:53 amelie/personal_tab/templates/lists/transactions_totals.html:67 +#: amelie/personal_tab/templates/exports/screen.html:89 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:59 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_transactions.html:46 +#: amelie/personal_tab/templates/lists/transactions.html:53 +#: amelie/personal_tab/templates/lists/transactions_totals.html:67 msgid "No transactions" msgstr "Geen transacties" @@ -9136,24 +10823,29 @@ msgstr "Geen streeplijsttransacties." msgid "No other transactions." msgstr "Geen overige transacties." -#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:8 amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:8 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:8 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:8 msgid "Collect" msgstr "Incasseren" -#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:33 amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:31 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:33 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:31 msgctxt "amendment abbr" msgid "A " msgstr "A " -#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:60 amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:57 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_contribution.html:60 +#: amelie/personal_tab/templates/lists/debt_collection_proposal_cookie_corner.html:57 msgid "There are no collections in this category." msgstr "Er zijn geen incasso's in deze categorie." -#: amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:10 amelie/personal_tab/templates/lists/transactions_totals.html:10 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:10 +#: amelie/personal_tab/templates/lists/transactions_totals.html:10 msgid "Month" msgstr "Maand" -#: amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:14 amelie/personal_tab/templates/lists/transactions_totals.html:14 +#: amelie/personal_tab/templates/lists/exam_cookie_credit_totals.html:14 +#: amelie/personal_tab/templates/lists/transactions_totals.html:14 msgid "Day" msgstr "Dag" @@ -9177,7 +10869,13 @@ msgstr "Scan uw kaart" msgid "Or press here to log in" msgstr "Of tik hier om in te loggen" -#: amelie/personal_tab/templates/pos/home.html:18 amelie/personal_tab/templates/pos/register_external_card.html:19 amelie/personal_tab/templates/pos/scan_external_card.html:13 amelie/personal_tab/templates/pos/shop.html:9 amelie/personal_tab/templates/pos/show_qr.html:13 amelie/personal_tab/templates/pos/success.html:19 amelie/personal_tab/templates/pos/verify.html:8 +#: amelie/personal_tab/templates/pos/home.html:18 +#: amelie/personal_tab/templates/pos/register_external_card.html:19 +#: amelie/personal_tab/templates/pos/scan_external_card.html:13 +#: amelie/personal_tab/templates/pos/shop.html:9 +#: amelie/personal_tab/templates/pos/show_qr.html:13 +#: amelie/personal_tab/templates/pos/success.html:19 +#: amelie/personal_tab/templates/pos/verify.html:8 msgid "THIS COOKIE CORNER IS RUNNING IN BETA MODE. PLEASE DO NOT BUY ANYTHING." msgstr "DEZE COOKIE CORNER DRAAIT IN BETA MODUS. AUB NIKS KOPEN." @@ -9223,7 +10921,8 @@ msgstr "Afgelopen Activiteiten" msgid "No pictures of past activities found!" msgstr "Geen fotos van afgelopen activiteiten gevonden!" -#: amelie/personal_tab/templates/pos/home.html:119 amelie/personal_tab/templates/pos/home.html:130 +#: amelie/personal_tab/templates/pos/home.html:119 +#: amelie/personal_tab/templates/pos/home.html:130 msgid "Weather" msgstr "Weer" @@ -9231,7 +10930,10 @@ msgstr "Weer" msgid "Enschede" msgstr "Enschede" -#: amelie/personal_tab/templates/pos/register_external_card.html:16 amelie/personal_tab/templates/pos/scan_external_card.html:10 amelie/personal_tab/templates/pos/show_qr.html:10 amelie/personal_tab/templates/pos/success.html:16 +#: amelie/personal_tab/templates/pos/register_external_card.html:16 +#: amelie/personal_tab/templates/pos/scan_external_card.html:10 +#: amelie/personal_tab/templates/pos/show_qr.html:10 +#: amelie/personal_tab/templates/pos/success.html:16 msgid "Return to home" msgstr "Terug naar hoofdpagina" @@ -9268,7 +10970,8 @@ msgstr "Voer aub het aantal in..." msgid "In shopping cart" msgstr "In winkelmand" -#: amelie/personal_tab/templates/pos/shop.html:50 amelie/personal_tab/templates/pos/shop.html:88 +#: amelie/personal_tab/templates/pos/shop.html:50 +#: amelie/personal_tab/templates/pos/shop.html:88 msgid "Insta-buy" msgstr "Insta-buy" @@ -9306,7 +11009,9 @@ msgstr "Winkelmandje" msgid "And {amount} more articles..." msgstr "En nog {amount} andere artikelen..." -#: amelie/personal_tab/templates/pos/show_qr.html:19 amelie/personal_tab/templates/register/register_card_index.html:28 templates/basis.html:272 templates/login.html:4 templates/login.html:47 +#: amelie/personal_tab/templates/pos/show_qr.html:19 +#: amelie/personal_tab/templates/register/register_card_index.html:28 +#: templates/basis.html:272 templates/login.html:4 templates/login.html:47 msgid "Log in" msgstr "Inloggen" @@ -9314,7 +11019,8 @@ msgstr "Inloggen" msgid "Register new RFID card" msgstr "Registreer nieuwe RFID-kaart" -#: amelie/personal_tab/templates/pos/show_qr.html:23 amelie/personal_tab/templates/pos/verify.html:13 +#: amelie/personal_tab/templates/pos/show_qr.html:23 +#: amelie/personal_tab/templates/pos/verify.html:13 msgid "Error" msgstr "Fout" @@ -9363,7 +11069,8 @@ msgstr "Of ga naar de homepag msgid "kCal/euro" msgstr "kCal/euro" -#: amelie/personal_tab/templates/register/register_card_error.html:4 amelie/personal_tab/templates/register/register_card_error.html:8 +#: amelie/personal_tab/templates/register/register_card_error.html:4 +#: amelie/personal_tab/templates/register/register_card_error.html:8 msgid "Register an RFID card - Error" msgstr "Registreer een RFID-kaart - Error" @@ -9371,7 +11078,10 @@ msgstr "Registreer een RFID-kaart - Error" msgid "Something went wrong while registering your RFID card" msgstr "Er ging iets fout bij het registreren van je RFID-kaart" -#: amelie/personal_tab/templates/register/register_card_index.html:4 amelie/personal_tab/templates/register/register_card_index.html:8 amelie/personal_tab/templates/register/register_card_scan.html:4 amelie/personal_tab/templates/register/register_card_scan.html:44 +#: amelie/personal_tab/templates/register/register_card_index.html:4 +#: amelie/personal_tab/templates/register/register_card_index.html:8 +#: amelie/personal_tab/templates/register/register_card_scan.html:4 +#: amelie/personal_tab/templates/register/register_card_scan.html:44 msgid "Register an RFID card" msgstr "Registreer een RFID-kaart" @@ -9383,7 +11093,8 @@ msgstr "Log in om een kaart te registreren" msgid "You can log on with your student account (for example: s0123456) or your Inter-Actief account." msgstr "Je kunt inloggen met je studentaccount (bijvoorbeeld s0123456) of je Inter-Actief-account." -#: amelie/personal_tab/templates/register/register_card_index.html:19 templates/profile_overview.html:181 templates/profile_overview.html:220 +#: amelie/personal_tab/templates/register/register_card_index.html:19 +#: templates/profile_overview.html:181 templates/profile_overview.html:220 msgid "Username" msgstr "Gebruikersnaam" @@ -9415,7 +11126,8 @@ msgstr "Error, kon kaart niet scannen." msgid "Connecting to card reader..." msgstr "Verbinden met kaartlezer..." -#: amelie/personal_tab/templates/register/register_card_success.html:4 amelie/personal_tab/templates/register/register_card_success.html:13 +#: amelie/personal_tab/templates/register/register_card_success.html:4 +#: amelie/personal_tab/templates/register/register_card_success.html:13 msgid "Register an RFID card - Success" msgstr "Registreer een RFID-kaart - Succes" @@ -9427,11 +11139,13 @@ msgstr "Je wordt over 5 seconden teruggebracht naar het registratiescherm..." msgid "Go back now" msgstr "Ga nu terug" -#: amelie/personal_tab/templates/wrapped.html:9 amelie/personal_tab/templates/wrapped_no_transactions.html:9 +#: amelie/personal_tab/templates/wrapped.html:9 +#: amelie/personal_tab/templates/wrapped_no_transactions.html:9 msgid "Cookie Corner Wrapped " msgstr "Cookie Corner Wrapped " -#: amelie/personal_tab/templates/wrapped.html:14 amelie/personal_tab/templates/wrapped_no_transactions.html:14 +#: amelie/personal_tab/templates/wrapped.html:14 +#: amelie/personal_tab/templates/wrapped_no_transactions.html:14 #, python-format msgid "" "\n" @@ -9449,7 +11163,8 @@ msgstr "Statistieken per dag" msgid "First transaction of the year: " msgstr "Eerste transactie van het jaar: " -#: amelie/personal_tab/templates/wrapped.html:32 amelie/personal_tab/templates/wrapped.html:41 +#: amelie/personal_tab/templates/wrapped.html:32 +#: amelie/personal_tab/templates/wrapped.html:41 msgid "on" msgstr "op" @@ -9465,11 +11180,13 @@ msgstr "Top 5 producten" msgid "You bought certain items more than others during this year. What did you buy the most?" msgstr "Sommige producten haalde je meer dan anderen. Wat heb je het meeste gekocht?" -#: amelie/personal_tab/templates/wrapped.html:62 amelie/personal_tab/templates/wrapped.html:127 +#: amelie/personal_tab/templates/wrapped.html:62 +#: amelie/personal_tab/templates/wrapped.html:127 msgid "Item" msgstr "Product" -#: amelie/personal_tab/templates/wrapped.html:64 amelie/personal_tab/templates/wrapped.html:129 +#: amelie/personal_tab/templates/wrapped.html:64 +#: amelie/personal_tab/templates/wrapped.html:129 msgid "Kcal" msgstr "Kcal" @@ -9534,12 +11251,15 @@ msgstr "Inschrijven {activity}" msgid "Unenrolled for {activity}" msgstr "Uitschrijven {activity}" -#: amelie/personal_tab/transactions.py:111 amelie/personal_tab/transactions.py:211 +#: amelie/personal_tab/transactions.py:111 +#: amelie/personal_tab/transactions.py:211 #, python-brace-format msgid "Sale {category}::{article}" msgstr "Verkoop {category}::{article}" -#: amelie/personal_tab/views.py:479 amelie/personal_tab/views.py:744 amelie/personal_tab/views.py:775 amelie/personal_tab/views.py:885 amelie/personal_tab/views.py:961 amelie/personal_tab/views.py:995 +#: amelie/personal_tab/views.py:479 amelie/personal_tab/views.py:744 +#: amelie/personal_tab/views.py:775 amelie/personal_tab/views.py:885 +#: amelie/personal_tab/views.py:961 amelie/personal_tab/views.py:995 msgid "Invalid date`" msgstr "Ongeldige datum" @@ -9576,7 +11296,9 @@ msgstr "Al een lopend amendement" msgid "Reversal already exists" msgstr "Terugboeking bestaat al" -#: amelie/personal_tab/views.py:1571 amelie/personal_tab/views.py:1665 amelie/room_duty/templates/room_duty/pool/persons_change.html:52 amelie/room_duty/templates/room_duty/table/change_persons.html:52 +#: amelie/personal_tab/views.py:1571 amelie/personal_tab/views.py:1665 +#: amelie/room_duty/templates/room_duty/pool/persons_change.html:52 +#: amelie/room_duty/templates/room_duty/table/change_persons.html:52 msgid "Found nobody." msgstr "Geen personen gevonden." @@ -9620,7 +11342,9 @@ msgstr "publicaties" msgid "New publication" msgstr "Nieuwe publicatie" -#: amelie/publications/templates/publications/publication_form.html:8 amelie/publications/templates/publications/publication_form.html:22 amelie/publications/templates/publications/publication_form.html:59 +#: amelie/publications/templates/publications/publication_form.html:8 +#: amelie/publications/templates/publications/publication_form.html:22 +#: amelie/publications/templates/publications/publication_form.html:59 msgid "Change publication" msgstr "Publicatie wijzigen" @@ -9648,7 +11372,9 @@ msgstr "Publicatiedatum" msgid "Create publication" msgstr "Publicatie aanmaken" -#: amelie/publications/templates/publications/publications.html:4 amelie/publications/templates/publications/publications.html:9 templates/basis.html:150 +#: amelie/publications/templates/publications/publications.html:4 +#: amelie/publications/templates/publications/publications.html:9 +#: templates/basis.html:150 msgid "Publications" msgstr "Publicaties" @@ -9668,11 +11394,14 @@ msgstr "Meer publicaties zijn beschikbaar als je bent " msgid "logged in." msgstr "ingelogd." -#: amelie/room_duty/models.py:29 amelie/room_duty/models.py:153 templates/frontpage.html:122 +#: amelie/room_duty/models.py:29 amelie/room_duty/models.py:153 +#: templates/frontpage.html:134 msgid "Office duty" msgstr "Kamerdienst" -#: amelie/room_duty/models.py:30 amelie/room_duty/templates/room_duty/pool/list.html:5 amelie/room_duty/templates/room_duty/pool/list.html:11 +#: amelie/room_duty/models.py:30 +#: amelie/room_duty/templates/room_duty/pool/list.html:5 +#: amelie/room_duty/templates/room_duty/pool/list.html:11 msgid "Office duty pools" msgstr "Kamerdienstpools" @@ -9680,11 +11409,15 @@ msgstr "Kamerdienstpools" msgid "Office duty schedule" msgstr "Kamerdienstschema" -#: amelie/room_duty/models.py:53 amelie/room_duty/templates/room_duty/table/list.html:5 amelie/room_duty/templates/room_duty/table/list.html:11 +#: amelie/room_duty/models.py:53 +#: amelie/room_duty/templates/room_duty/table/list.html:5 +#: amelie/room_duty/templates/room_duty/table/list.html:11 msgid "Office duty schedules" msgstr "Kamerdienstschema's" -#: amelie/room_duty/models.py:58 amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:46 amelie/statistics/templates/statistics.html:33 templates/basis.html:156 +#: amelie/room_duty/models.py:58 +#: amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:46 +#: amelie/statistics/templates/statistics.html:33 templates/basis.html:156 msgid "Association" msgstr "Vereniging" @@ -9701,7 +11434,9 @@ msgstr "Bestuursleden" msgid "Office duty from {begin} till {end}" msgstr "Room duty from {begin} to {end}" -#: amelie/room_duty/models.py:154 amelie/room_duty/templates/room_duty/table/change.html:33 amelie/room_duty/templates/room_duty/template/change.html:33 +#: amelie/room_duty/models.py:154 +#: amelie/room_duty/templates/room_duty/table/change.html:33 +#: amelie/room_duty/templates/room_duty/template/change.html:33 msgid "Office duties" msgstr "Kamerdiensten" @@ -9709,7 +11444,9 @@ msgstr "Kamerdiensten" msgid "Office duty schedule template" msgstr "Kamerdienstschema-template" -#: amelie/room_duty/models.py:190 amelie/room_duty/templates/room_duty/template/list.html:5 amelie/room_duty/templates/room_duty/template/list.html:11 +#: amelie/room_duty/models.py:190 +#: amelie/room_duty/templates/room_duty/template/list.html:5 +#: amelie/room_duty/templates/room_duty/template/list.html:11 msgid "Office duty schedule templates" msgstr "Kamerdienstschema-templates" @@ -9754,7 +11491,8 @@ msgstr "Kamerdienstbeschikbaarheid" msgid "Office duty availabilities" msgstr "Kamerdienstbeschikbaarheden" -#: amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:5 amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:10 +#: amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:5 +#: amelie/room_duty/templates/room_duty/balcony_duty/balcony_duty.html:10 msgid "Balcony Duty Associations" msgstr "Balkondienstverenigingen" @@ -9778,7 +11516,8 @@ msgstr "Vereniging toevoegen" msgid "Is Inter-Actief?" msgstr "Is Inter-Actief?" -#: amelie/room_duty/templates/room_duty/balcony_duty/delete.html:5 amelie/room_duty/templates/room_duty/balcony_duty/delete.html:10 +#: amelie/room_duty/templates/room_duty/balcony_duty/delete.html:5 +#: amelie/room_duty/templates/room_duty/balcony_duty/delete.html:10 msgid "Delete balcony duty association" msgstr "Verwijder Balkondienstvereniging" @@ -9792,7 +11531,8 @@ msgstr "" "\n" "Weet je zeker dat je %(association)s wilt verwijderen?" -#: amelie/room_duty/templates/room_duty/pool/delete.html:5 amelie/room_duty/templates/room_duty/pool/delete.html:11 +#: amelie/room_duty/templates/room_duty/pool/delete.html:5 +#: amelie/room_duty/templates/room_duty/pool/delete.html:11 #, python-format msgid "Delete office duty pool %(pool)s" msgstr "Kamerdienstpool %(pool)s verwijderen" @@ -9815,7 +11555,8 @@ msgstr "Deze kamerdienstpool bevat de volgende personen:" msgid "This action will remove the following office duty schedules:" msgstr "Deze actie zal de volgende kamerdienstschema's verwijderen:" -#: amelie/room_duty/templates/room_duty/pool/form.html:5 amelie/room_duty/templates/room_duty/pool/form.html:11 +#: amelie/room_duty/templates/room_duty/pool/form.html:5 +#: amelie/room_duty/templates/room_duty/pool/form.html:11 msgid "Add office duty pool" msgstr "Kamerdienstpool toevoegen" @@ -9845,15 +11586,22 @@ msgstr "%(pool)s bevat nog geen personen." msgid "Add persons" msgstr "Personen toevoegen" -#: amelie/room_duty/templates/room_duty/pool/persons_change.html:39 amelie/room_duty/templates/room_duty/table/change_persons.html:39 +#: amelie/room_duty/templates/room_duty/pool/persons_change.html:39 +#: amelie/room_duty/templates/room_duty/table/change_persons.html:39 msgid "People found:" msgstr "Gevonden personen:" -#: amelie/room_duty/templates/room_duty/table/change.html:5 amelie/room_duty/templates/room_duty/table/change.html:10 amelie/room_duty/templates/room_duty/table/form.html:8 amelie/room_duty/templates/room_duty/table/form.html:18 +#: amelie/room_duty/templates/room_duty/table/change.html:5 +#: amelie/room_duty/templates/room_duty/table/change.html:10 +#: amelie/room_duty/templates/room_duty/table/form.html:8 +#: amelie/room_duty/templates/room_duty/table/form.html:18 msgid "Change office duty schedule" msgstr "Kamerdienstschema wijzigen" -#: amelie/room_duty/templates/room_duty/table/change.html:21 amelie/room_duty/templates/room_duty/table/room_duty_add.html:5 amelie/room_duty/templates/room_duty/table/room_duty_add.html:10 amelie/room_duty/templates/room_duty/template/change.html:21 +#: amelie/room_duty/templates/room_duty/table/change.html:21 +#: amelie/room_duty/templates/room_duty/table/room_duty_add.html:5 +#: amelie/room_duty/templates/room_duty/table/room_duty_add.html:10 +#: amelie/room_duty/templates/room_duty/template/change.html:21 msgid "Add office duty" msgstr "Kamerdienst toevoegen" @@ -9875,7 +11623,8 @@ msgstr "%(table)s bevat nog geen personen." msgid "Add participants" msgstr "Deelnemers toevoegen" -#: amelie/room_duty/templates/room_duty/table/delete.html:5 amelie/room_duty/templates/room_duty/table/delete.html:11 +#: amelie/room_duty/templates/room_duty/table/delete.html:5 +#: amelie/room_duty/templates/room_duty/table/delete.html:11 #, python-format msgid "Remove office duty schedule %(table)s" msgstr "Kamerdienstschema %(table)s verwijderen" @@ -9911,7 +11660,8 @@ msgstr "Brak" msgid "Not in the break" msgstr "Niet in de pauze" -#: amelie/room_duty/templates/room_duty/table/form.html:6 amelie/room_duty/templates/room_duty/table/form.html:16 +#: amelie/room_duty/templates/room_duty/table/form.html:6 +#: amelie/room_duty/templates/room_duty/table/form.html:16 msgid "Add office duty schedule" msgstr "Kamerdienstschema toevoegen" @@ -9919,7 +11669,8 @@ msgstr "Kamerdienstschema toevoegen" msgid "Pool" msgstr "Pool" -#: amelie/room_duty/templates/room_duty/table/form.html:42 amelie/tools/forms.py:135 amelie/tools/forms.py:137 +#: amelie/room_duty/templates/room_duty/table/form.html:42 +#: amelie/tools/forms.py:135 amelie/tools/forms.py:137 msgid "Template" msgstr "Template" @@ -9963,7 +11714,8 @@ msgstr "Ochtendkamerdiensten" msgid "Afternoon office duties" msgstr "Middagkamerdiensten" -#: amelie/room_duty/templates/room_duty/table/room_duty_delete.html:5 amelie/room_duty/templates/room_duty/table/room_duty_delete.html:11 +#: amelie/room_duty/templates/room_duty/table/room_duty_delete.html:5 +#: amelie/room_duty/templates/room_duty/table/room_duty_delete.html:11 #, python-format msgid "Delete office duty %(room_duty)s" msgstr "Kamerdienst %(room_duty)s verwijderen" @@ -9995,7 +11747,8 @@ msgstr[1] "" "\n" "%(count)s personen hebben al hun beschikbaarheid aangegeven." -#: amelie/room_duty/templates/room_duty/template/add.html:5 amelie/room_duty/templates/room_duty/template/add.html:11 +#: amelie/room_duty/templates/room_duty/template/add.html:5 +#: amelie/room_duty/templates/room_duty/template/add.html:11 msgid "Add an office duty schedule template" msgstr "Kamerdienstschema-template toevoegen" @@ -10007,7 +11760,8 @@ msgstr "Kamerdienstschema-template wijzigen" msgid "Change title" msgstr "Titel wijzigen" -#: amelie/room_duty/templates/room_duty/template/delete.html:5 amelie/room_duty/templates/room_duty/template/delete.html:11 +#: amelie/room_duty/templates/room_duty/template/delete.html:5 +#: amelie/room_duty/templates/room_duty/template/delete.html:11 #, python-format msgid "Delete office duty schedule template %(template)s" msgstr "Kamerdienstschema-template %(template)s verwijderen" @@ -10026,7 +11780,8 @@ msgstr "" msgid "There are no office duty schedule templates yet." msgstr "Er zijn nog geen kamerdienstschema-templates." -#: amelie/room_duty/templates/room_duty/template/room_duty_add.html:5 amelie/room_duty/templates/room_duty/template/room_duty_add.html:10 +#: amelie/room_duty/templates/room_duty/template/room_duty_add.html:5 +#: amelie/room_duty/templates/room_duty/template/room_duty_add.html:10 msgid "Add office duty template" msgstr "Kamerdienst-template toevoegen" @@ -10066,7 +11821,8 @@ msgstr "Hits" msgid "Hits between {} and {} on page '{}' with User-Agent '{}'" msgstr "Hits tussen {} en {} op pagina '{}' met User-Agent '{}'" -#: amelie/statistics/templates/hits.html:5 amelie/statistics/templates/statistics.html:26 +#: amelie/statistics/templates/hits.html:5 +#: amelie/statistics/templates/statistics.html:26 msgid "Page visits" msgstr "Paginabezoeken" @@ -10188,7 +11944,8 @@ msgstr "Uitsluitend toegankelijk voor het bestuur." msgid "Access for the Educational Committee only." msgstr "Uitsluitend toegankelijk voor de onderwijscommissie." -#: amelie/tools/decorators.py:60 amelie/tools/decorators.py:66 amelie/tools/mixins.py:73 +#: amelie/tools/decorators.py:60 amelie/tools/decorators.py:66 +#: amelie/tools/mixins.py:73 msgid "For active members only." msgstr "Uitsluitend voor leden met een actief lidmaatschap." @@ -10200,7 +11957,8 @@ msgstr "Uitsluitend toegankelijk voor actieve leden." msgid "Only accessible by superusers." msgstr "Uitsluitend toegankelijk voor superusers." -#: amelie/tools/decorators.py:90 amelie/tools/mixins.py:100 amelie/tools/mixins.py:114 amelie/tools/mixins.py:129 +#: amelie/tools/decorators.py:90 amelie/tools/mixins.py:100 +#: amelie/tools/mixins.py:114 amelie/tools/mixins.py:129 msgid "Access for members of the committee only." msgstr "Uitsluitend toegankelijk voor commissieleden." @@ -10316,7 +12074,8 @@ msgstr "De volgende gegevens van mij worden opgenomen in de ledenadministratie:" msgid "E-mail of parent(s)/guardian(s)" msgstr "E-mail van ouder(s)/verzorger(s)" -#: amelie/tools/pdf.py:268 amelie/tools/pdf.py:270 amelie/tools/pdf.py:471 amelie/tools/pdf.py:473 +#: amelie/tools/pdf.py:268 amelie/tools/pdf.py:270 amelie/tools/pdf.py:471 +#: amelie/tools/pdf.py:473 #, python-format msgid "Signed in Enschede on %(datum)s:" msgstr "Was getekend in Enschede op %(datum)s:" @@ -10442,7 +12201,8 @@ msgstr "" "\n" "Met vriendelijke groet," -#: amelie/tools/templates/set_as_today_button.html:2 templates/frontpage.html:19 +#: amelie/tools/templates/set_as_today_button.html:2 +#: templates/frontpage.html:19 msgid "Now" msgstr "Nu" @@ -10496,11 +12256,13 @@ msgstr "Uren" msgid "Minutes" msgstr "Minuten" -#: amelie/twitter/templates/twitter_index.html:4 amelie/twitter/templates/twitter_new_tweet.html:5 +#: amelie/twitter/templates/twitter_index.html:4 +#: amelie/twitter/templates/twitter_new_tweet.html:5 msgid "New tweet" msgstr "Nieuwe tweet" -#: amelie/twitter/templates/twitter_index.html:8 amelie/twitter/templates/twitter_new_tweet.html:29 +#: amelie/twitter/templates/twitter_index.html:8 +#: amelie/twitter/templates/twitter_new_tweet.html:29 msgid "New Tweet" msgstr "Nieuwe Tweet" @@ -10520,7 +12282,8 @@ msgstr "" "Controleer je bericht goed voordat je deze daadwerkelijk verzend.\n" "Dit bericht wordt verzonden vanaf het account %(account)s." -#: amelie/twitter/templates/twitter_new_tweet.html:38 amelie/twitter/templates/twitter_new_tweet.html:47 +#: amelie/twitter/templates/twitter_new_tweet.html:38 +#: amelie/twitter/templates/twitter_new_tweet.html:47 msgid "Preview" msgstr "Preview" @@ -10554,7 +12317,9 @@ msgstr "Uitgelicht" msgid "Video" msgstr "Video" -#: amelie/videos/models.py:26 amelie/videos/templates/videos/videos.html:4 amelie/videos/templates/videos/videos.html:9 templates/basis.html:147 templates/frontpage.html:94 +#: amelie/videos/models.py:26 amelie/videos/templates/videos/videos.html:4 +#: amelie/videos/templates/videos/videos.html:9 templates/basis.html:147 +#: templates/frontpage.html:106 msgid "Videos" msgstr "Video's" @@ -10574,19 +12339,30 @@ msgstr "Streaming.IA video" msgid "Streaming.IA videos" msgstr "Streaming.IA videos" -#: amelie/videos/templates/videos/ia_video.html:15 amelie/videos/templates/videos/yt_video.html:15 +#: amelie/videos/templates/videos/ia_video.html:15 +#: amelie/videos/templates/videos/yt_video.html:15 msgid "All videos" msgstr "Alle videos" -#: amelie/videos/templates/videos/ia_video.html:27 amelie/videos/templates/videos/ia_video_form.html:8 amelie/videos/templates/videos/ia_video_form.html:80 amelie/videos/templates/videos/ia_video_form.html:108 amelie/videos/templates/videos/yt_video.html:27 amelie/videos/templates/videos/yt_video_form.html:8 amelie/videos/templates/videos/yt_video_form.html:80 amelie/videos/templates/videos/yt_video_form.html:108 +#: amelie/videos/templates/videos/ia_video.html:27 +#: amelie/videos/templates/videos/ia_video_form.html:8 +#: amelie/videos/templates/videos/ia_video_form.html:80 +#: amelie/videos/templates/videos/ia_video_form.html:108 +#: amelie/videos/templates/videos/yt_video.html:27 +#: amelie/videos/templates/videos/yt_video_form.html:8 +#: amelie/videos/templates/videos/yt_video_form.html:80 +#: amelie/videos/templates/videos/yt_video_form.html:108 msgid "Edit video" msgstr "Wijzig video" -#: amelie/videos/templates/videos/ia_video.html:28 amelie/videos/templates/videos/video_delete.html:19 amelie/videos/templates/videos/yt_video.html:28 +#: amelie/videos/templates/videos/ia_video.html:28 +#: amelie/videos/templates/videos/video_delete.html:19 +#: amelie/videos/templates/videos/yt_video.html:28 msgid "Delete video" msgstr "Verwijder video" -#: amelie/videos/templates/videos/ia_video_form.html:6 amelie/videos/templates/videos/yt_video_form.html:6 +#: amelie/videos/templates/videos/ia_video_form.html:6 +#: amelie/videos/templates/videos/yt_video_form.html:6 msgid "New video" msgstr "Nieuwe video" @@ -10598,11 +12374,13 @@ msgstr "Recente Streaming.IA uploads" msgid "Select one of these recently uploaded Streaming.IA videos to automatically fill certain fields." msgstr "Selecteer een van deze recent geüploade Streaming.IA video's om bepaalde velden automatisch in te vullen." -#: amelie/videos/templates/videos/ia_video_form.html:23 amelie/videos/templates/videos/yt_video_form.html:23 +#: amelie/videos/templates/videos/ia_video_form.html:23 +#: amelie/videos/templates/videos/yt_video_form.html:23 msgid "Videos marked as private and previously added videos are not displayed in this list." msgstr "Video's gemarkeerd als privé en reeds toegevoegde videos worden niet weergegeven in deze lijst." -#: amelie/videos/templates/videos/ia_video_form.html:36 amelie/videos/templates/videos/yt_video_form.html:36 +#: amelie/videos/templates/videos/ia_video_form.html:36 +#: amelie/videos/templates/videos/yt_video_form.html:36 msgid "No (new) videos have been found." msgstr "Er zijn geen (nieuwe) video's gevonden." @@ -10610,7 +12388,8 @@ msgstr "Er zijn geen (nieuwe) video's gevonden." msgid "Streaming.IA API Data" msgstr "Streaming.IA API Data" -#: amelie/videos/templates/videos/ia_video_form.html:62 amelie/videos/templates/videos/yt_video_form.html:62 +#: amelie/videos/templates/videos/ia_video_form.html:62 +#: amelie/videos/templates/videos/yt_video_form.html:62 msgid "Thumbnail URL" msgstr "Thumbnail URL" @@ -10618,7 +12397,8 @@ msgstr "Thumbnail URL" msgid "Update Streaming.IA API Data" msgstr "Streaming.IA API Data bijwerken" -#: amelie/videos/templates/videos/ia_video_form.html:78 amelie/videos/templates/videos/yt_video_form.html:78 +#: amelie/videos/templates/videos/ia_video_form.html:78 +#: amelie/videos/templates/videos/yt_video_form.html:78 msgid "Add new video" msgstr "Nieuwe video toevoegen" @@ -10626,7 +12406,8 @@ msgstr "Nieuwe video toevoegen" msgid "Streaming.IA ID" msgstr "Streaming.IA ID" -#: amelie/videos/templates/videos/ia_video_form.html:108 amelie/videos/templates/videos/yt_video_form.html:108 +#: amelie/videos/templates/videos/ia_video_form.html:108 +#: amelie/videos/templates/videos/yt_video_form.html:108 msgid "Create video" msgstr "Video aanmaken" @@ -10730,15 +12511,24 @@ msgstr "Verstuurd" msgid "Error during sending" msgstr "Fout tijdens versturen" -#: amelie/weekmail/models.py:61 amelie/weekmail/templates/weekmail/weekmail_list.html:17 amelie/weekmail/templates/weekmail/weekmail_mail.mail:1 amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:7 +#: amelie/weekmail/models.py:61 +#: amelie/weekmail/templates/weekmail/weekmail_list.html:17 +#: amelie/weekmail/templates/weekmail/weekmail_mail.mail:1 +#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:7 msgid "Weekly mail" msgstr "Weekmail" -#: amelie/weekmail/models.py:62 amelie/weekmail/templates/weekmail/weekmail_mail.mail:1 amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:7 amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:31 +#: amelie/weekmail/models.py:62 +#: amelie/weekmail/templates/weekmail/weekmail_mail.mail:1 +#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:7 +#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:31 msgid "Mastermail" msgstr "Mastermail" -#: amelie/weekmail/models.py:63 amelie/weekmail/templates/weekmail/weekmail_mail.mail:1 amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:7 amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:31 +#: amelie/weekmail/models.py:63 +#: amelie/weekmail/templates/weekmail/weekmail_mail.mail:1 +#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:7 +#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:31 msgid "Educational mail" msgstr "Onderwijsmail" @@ -10754,11 +12544,15 @@ msgstr "nieuwartikelen" msgid "Type of mailing" msgstr "Type mailing" -#: amelie/weekmail/templates/weekmail/weekmail_form.html:5 amelie/weekmail/templates/weekmail/weekmail_form.html:11 amelie/weekmail/templates/weekmail/weekmail_wizard.html:5 +#: amelie/weekmail/templates/weekmail/weekmail_form.html:5 +#: amelie/weekmail/templates/weekmail/weekmail_form.html:11 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:5 msgid "Edit weekly mail" msgstr "Weekmail wijzigen" -#: amelie/weekmail/templates/weekmail/weekmail_form.html:5 amelie/weekmail/templates/weekmail/weekmail_form.html:11 amelie/weekmail/templates/weekmail/weekmail_wizard.html:5 +#: amelie/weekmail/templates/weekmail/weekmail_form.html:5 +#: amelie/weekmail/templates/weekmail/weekmail_form.html:11 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:5 msgid "Edit mastermail" msgstr "Mastermail wijzigen" @@ -10766,7 +12560,8 @@ msgstr "Mastermail wijzigen" msgid "Edit educational mail" msgstr "Bewerk onderwijsmail" -#: amelie/weekmail/templates/weekmail/weekmail_form.html:5 amelie/weekmail/templates/weekmail/weekmail_form.html:11 +#: amelie/weekmail/templates/weekmail/weekmail_form.html:5 +#: amelie/weekmail/templates/weekmail/weekmail_form.html:11 msgid "Add weekly mail, mastermail or educational mail" msgstr "Weekmail, mastermail of onderwijsmail toevoegen" @@ -10774,11 +12569,13 @@ msgstr "Weekmail, mastermail of onderwijsmail toevoegen" msgid "Done" msgstr "Klaar" -#: amelie/weekmail/templates/weekmail/weekmail_list.html:5 amelie/weekmail/templates/weekmail/weekmail_list.html:11 +#: amelie/weekmail/templates/weekmail/weekmail_list.html:5 +#: amelie/weekmail/templates/weekmail/weekmail_list.html:11 msgid "Weekly mails, mastermails and educational mails" msgstr "Weekmails, mastermails en onderwijsmails" -#: amelie/weekmail/templates/weekmail/weekmail_list.html:19 amelie/weekmail/templates/weekmail/weekmail_wizard.html:42 +#: amelie/weekmail/templates/weekmail/weekmail_list.html:19 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:42 msgid "Published" msgstr "Gepubliceerd" @@ -10786,7 +12583,9 @@ msgstr "Gepubliceerd" msgid "New weekly mail, mastermail or educational mail" msgstr "Nieuwe weekmail, mastermail of onderwijsmail" -#: amelie/weekmail/templates/weekmail/weekmail_mail.mail:1 amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:7 amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:31 +#: amelie/weekmail/templates/weekmail/weekmail_mail.mail:1 +#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:7 +#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:31 msgid "Week" msgstr "Week" @@ -10794,7 +12593,8 @@ msgstr "Week" msgid "Read online" msgstr "Lees online" -#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:162 amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:39 +#: amelie/weekmail/templates/weekmail/weekmail_mail_html.mail:162 +#: amelie/weekmail/templates/weekmail/weekmail_mail_plain.mail:39 msgid "You are receiving this e-mail because you have indicated you wanted it. Change your preference in your profile on the Inter-Actief website or contact the board." msgstr "Je ontvangt deze mail omdat je dit hebt aangegeven. Indien je deze mail niet meer wenst te ontvangen, verander dan je voorkeur op je profiel op de Inter-Actief website of neem contact op met het bestuur." @@ -10856,15 +12656,18 @@ msgstr "Wijzig gekoppelde nieuwsartikelen" msgid "Connected activities" msgstr "Gekoppelde Activiteiten" -#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:176 amelie/weekmail/templates/weekmail/weekmail_wizard.html:204 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:176 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:204 msgid "From:" msgstr "Van:" -#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:177 amelie/weekmail/templates/weekmail/weekmail_wizard.html:205 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:177 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:205 msgid "To:" msgstr "Tot:" -#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:182 amelie/weekmail/templates/weekmail/weekmail_wizard.html:210 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:182 +#: amelie/weekmail/templates/weekmail/weekmail_wizard.html:210 msgid "No location provided" msgstr "Geen locatie opgegeven" @@ -11088,7 +12891,7 @@ msgstr "Intraweb" msgid "External Activities" msgstr "Externe Activiteiten" -#: templates/basis.html:227 templates/frontpage.html:205 +#: templates/basis.html:227 templates/frontpage.html:217 msgid "Education news" msgstr "Onderwijsnieuws" @@ -11128,83 +12931,83 @@ msgstr "Probleem melden" msgid "CVD Policy" msgstr "CVD-beleid" -#: templates/frontpage.html:78 +#: templates/frontpage.html:90 msgid "In the Company Corner you can find information about companies and possible graduation projects or job opportunities." msgstr "In de Company Corner kun je informatie vinden over bedrijven en mogelijke afstudeerplekken of vacatures die zij bieden." -#: templates/frontpage.html:84 +#: templates/frontpage.html:96 msgid "Upcoming activities with external parties" msgstr "Komende externe activiteiten" -#: templates/frontpage.html:109 +#: templates/frontpage.html:121 msgid "Board tasks" msgstr "Bestuurstaken" -#: templates/frontpage.html:111 +#: templates/frontpage.html:123 msgid "Member management" msgstr "Ledenbeheer" -#: templates/frontpage.html:114 +#: templates/frontpage.html:126 msgid "Add new external member" msgstr "Nieuw extern lid toevoegen" -#: templates/frontpage.html:115 +#: templates/frontpage.html:127 msgid "Add new employee" msgstr "Nieuwe medewerker toevoegen" -#: templates/frontpage.html:116 +#: templates/frontpage.html:128 msgid "Add new freshman member" msgstr "Nieuw eerstejaars lid toevoegen" -#: templates/frontpage.html:117 +#: templates/frontpage.html:129 msgid "Pre-enroll freshman member" msgstr "Nieuw eerstejaarslid voorinschrijven" -#: templates/frontpage.html:119 +#: templates/frontpage.html:131 msgid "Add new committee" msgstr "Nieuwe commissie aanmaken" -#: templates/frontpage.html:123 +#: templates/frontpage.html:135 msgid "ClaudIA" msgstr "ClaudIA" -#: templates/frontpage.html:124 +#: templates/frontpage.html:136 msgid "Create new '/over' page" msgstr "Nieuwe '/over' pagina maken" -#: templates/frontpage.html:125 +#: templates/frontpage.html:137 msgid "Register RFID cards" msgstr "Registreer RFID-kaarten" -#: templates/frontpage.html:126 +#: templates/frontpage.html:138 msgid "UT Eventdesk status" msgstr "UT Evenementenbureau status" -#: templates/frontpage.html:148 templates/frontpage.html:207 +#: templates/frontpage.html:160 templates/frontpage.html:219 msgid "Add message" msgstr "Bericht toevoegen" -#: templates/frontpage.html:159 templates/frontpage.html:218 +#: templates/frontpage.html:171 templates/frontpage.html:230 msgid "This message has been pinned." msgstr "Dit bericht is vastgepind." -#: templates/frontpage.html:165 +#: templates/frontpage.html:177 msgid "There are no news posts." msgstr "Er zijn geen nieuwsberichten." -#: templates/frontpage.html:224 +#: templates/frontpage.html:236 msgid "There are no education news posts." msgstr "Er zijn geen onderwijsnieuwsberichten." -#: templates/frontpage.html:237 +#: templates/frontpage.html:249 msgid "Recent complaints" msgstr "Recente klachten" -#: templates/frontpage.html:246 +#: templates/frontpage.html:258 msgid "No public outstanding complaints" msgstr "Geen publieke openstaande klachten" -#: templates/frontpage.html:251 +#: templates/frontpage.html:263 msgid "See all complaints / File complaint" msgstr "Bekijk alle klachten / Meld klacht" @@ -11286,7 +13089,8 @@ msgstr "Toegang" msgid "delete" msgstr "verwijder" -#: templates/profile_configure_forwarding.html:5 templates/profile_configure_forwarding.html:51 +#: templates/profile_configure_forwarding.html:5 +#: templates/profile_configure_forwarding.html:51 msgid "Configure e-mail forwarding" msgstr "E-mailforwarding instellen" @@ -11313,7 +13117,9 @@ msgstr "" "\n" "Als deze fout zich blijft voordoen, neem dan contact op met onze accountbeheerders via account@inter-actief.net." -#: templates/profile_configure_forwarding.html:44 templates/profile_configure_forwarding.html:137 templates/profile_configure_forwarding.html:246 +#: templates/profile_configure_forwarding.html:44 +#: templates/profile_configure_forwarding.html:137 +#: templates/profile_configure_forwarding.html:246 msgid "Back to my profile" msgstr "Terug naar mijn profiel" @@ -11339,7 +13145,9 @@ msgstr "En e-mailadressen van je commissies en andere groepen." msgid "Disable e-mail forwarding" msgstr "E-mailforwarding uitschakelen" -#: templates/profile_configure_forwarding.html:80 templates/profile_configure_forwarding.html:153 templates/profile_configure_forwarding.html:158 +#: templates/profile_configure_forwarding.html:80 +#: templates/profile_configure_forwarding.html:153 +#: templates/profile_configure_forwarding.html:158 msgid "E-mail forwarding is enabled. Forwarding to address: " msgstr "E-mailforwarding is ingeschakeld. Doorsturen naar adres: " @@ -11393,7 +13201,8 @@ msgstr "Een klein momentje terwijl we je forward activeren..." msgid "Just a second while we deactivate your forward..." msgstr "Een klein momentje terwijl we je forward deactiveren..." -#: templates/profile_configure_forwarding.html:142 templates/profile_configure_forwarding.html:251 +#: templates/profile_configure_forwarding.html:142 +#: templates/profile_configure_forwarding.html:251 msgid "Something went wrong while activating your forward at Google. Please try again later." msgstr "Er ging iets mis bij het activeren van je forward bij Google. Probeer het a.u.b. later opnieuw." @@ -11401,7 +13210,8 @@ msgstr "Er ging iets mis bij het activeren van je forward bij Google. Probeer he msgid "Error while checking the status at Google. Please try again later." msgstr "Error tijdens het checken van de status bij Google. Probeer het a.u.b. later opnieuw." -#: templates/profile_configure_forwarding.html:176 templates/profile_configure_forwarding.html:185 +#: templates/profile_configure_forwarding.html:176 +#: templates/profile_configure_forwarding.html:185 msgid "Activate forwarding" msgstr "Forwarding activeren" diff --git a/templates/frontpage.html b/templates/frontpage.html index e2cb7f5..426c89e 100644 --- a/templates/frontpage.html +++ b/templates/frontpage.html @@ -29,7 +29,13 @@

    {% trans 'Dutch-only' %}
    - {{ current_activity.activity_label.name }} + + {{ current_activity.activity_label.name }} +
    @@ -58,7 +64,13 @@

    - {{ upcoming_activity.activity_label.name }} + + {{ upcoming_activity.activity_label.name }} +