diff --git a/website/registrations/locale/nl/LC_MESSAGES/django.mo b/website/registrations/locale/nl/LC_MESSAGES/django.mo index 7b146b1dcbc622795964982e8f1564fe28a5fe3a..21acf7bc9283682791e8dca8f368b43674a4b0e8 100644 Binary files a/website/registrations/locale/nl/LC_MESSAGES/django.mo and b/website/registrations/locale/nl/LC_MESSAGES/django.mo differ diff --git a/website/registrations/locale/nl/LC_MESSAGES/django.po b/website/registrations/locale/nl/LC_MESSAGES/django.po index 59ad3ecae8390d1bd25366ac3cd6652bd6a754f6..4a2f735a517108b7e5839e126e91e99d9479c2be 100644 --- a/website/registrations/locale/nl/LC_MESSAGES/django.po +++ b/website/registrations/locale/nl/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-08-19 16:41+0200\n" -"PO-Revision-Date: 2018-08-24 20:50+0200\n" +"POT-Creation-Date: 2018-08-28 16:01+0200\n" +"PO-Revision-Date: 2018-08-28 16:02+0200\n" "Last-Translator: Sébastiaan Versteeg \n" "Language-Team: \n" "Language: nl\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.1.1\n" +"X-Generator: Poedit 2.0.4\n" #: admin.py msgid "Application information" @@ -268,8 +268,10 @@ msgstr "Er bestaat al een gebruiker met deze gebruikersnaam." msgid "This field is required." msgstr "Dit veld is verplicht." -#: models.py -msgid "registation" +#: models.py templates/registrations/confirm_email.html +#: templates/registrations/register_member.html +#: templates/registrations/register_success.html +msgid "registration" msgstr "registratie" #: models.py @@ -400,12 +402,6 @@ msgstr "" msgid "confirm email address" msgstr "bevestig e-mailadres" -#: templates/registrations/confirm_email.html -#: templates/registrations/register_member.html -#: templates/registrations/register_success.html -msgid "registration" -msgstr "registratie" - #: templates/registrations/confirm_email.html msgid "" "\n" diff --git a/website/registrations/migrations/0010_auto_20180828_1610.py b/website/registrations/migrations/0010_auto_20180828_1610.py new file mode 100644 index 0000000000000000000000000000000000000000..08bc48f2a1147fe0b9ba2d1a95607799242035d4 --- /dev/null +++ b/website/registrations/migrations/0010_auto_20180828_1610.py @@ -0,0 +1,17 @@ +# Generated by Django 2.0.8 on 2018-08-28 14:10 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('registrations', '0009_auto_20180704_2338'), + ] + + operations = [ + migrations.AlterModelOptions( + name='registration', + options={'verbose_name': 'registration', 'verbose_name_plural': 'registrations'}, + ), + ] diff --git a/website/registrations/models.py b/website/registrations/models.py index aa778f39bbfc1e3045b6dc4e4267be996b5bdb8a..4304577e688a5da7b3a9dc79c29c1720884b9672 100644 --- a/website/registrations/models.py +++ b/website/registrations/models.py @@ -291,7 +291,7 @@ class Registration(Entry): return '{} {} ({})'.format(self.first_name, self.last_name, self.email) class Meta: - verbose_name = _('registation') + verbose_name = _('registration') verbose_name_plural = _('registrations')