Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
concrexit
Commits
ecf74b18
Verified
Commit
ecf74b18
authored
Aug 28, 2018
by
Sébastiaan Versteeg
Browse files
Fix 'registration' verbose name
parent
31d1b812
Changes
4
Hide whitespace changes
Inline
Side-by-side
website/registrations/locale/nl/LC_MESSAGES/django.mo
View file @
ecf74b18
No preview for this file type
website/registrations/locale/nl/LC_MESSAGES/django.po
View file @
ecf74b18
...
...
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-08-
19
16:
4
1+0200\n"
"PO-Revision-Date: 2018-08-2
4 20:50
+0200\n"
"POT-Creation-Date: 2018-08-
28
16:
0
1+0200\n"
"PO-Revision-Date: 2018-08-2
8 16:02
+0200\n"
"Last-Translator: Sébastiaan Versteeg <se_bastiaan@outlook.com>\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"
...
...
website/registrations/migrations/0010_auto_20180828_1610.py
0 → 100644
View file @
ecf74b18
# 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'
},
),
]
website/registrations/models.py
View file @
ecf74b18
...
...
@@ -291,7 +291,7 @@ class Registration(Entry):
return
'{} {} ({})'
.
format
(
self
.
first_name
,
self
.
last_name
,
self
.
email
)
class
Meta
:
verbose_name
=
_
(
'registation'
)
verbose_name
=
_
(
'regist
r
ation'
)
verbose_name_plural
=
_
(
'registrations'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment