Merge pull request #642 from pcoder/fix_de_translation
Fix DE translation
This commit is contained in:
commit
5c6528aa03
2 changed files with 14 additions and 11 deletions
|
@ -1,10 +1,11 @@
|
|||
from django import forms
|
||||
from .models import ContactMessage, BillingAddress, UserBillingAddress
|
||||
from django.template.loader import render_to_string
|
||||
from django.core.mail import EmailMultiAlternatives
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
from django.contrib.auth import authenticate
|
||||
from django.core.mail import EmailMultiAlternatives
|
||||
from django.template.loader import render_to_string
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
from membership.models import CustomUser
|
||||
from .models import ContactMessage, BillingAddress, UserBillingAddress
|
||||
|
||||
|
||||
# from utils.fields import CountryField
|
||||
|
@ -66,7 +67,8 @@ class ResendActivationEmailForm(forms.Form):
|
|||
try:
|
||||
c = CustomUser.objects.get(email=email)
|
||||
if c.validated == 1:
|
||||
raise forms.ValidationError(_("The account is already active."))
|
||||
raise forms.ValidationError(
|
||||
_("The account is already active."))
|
||||
return email
|
||||
except CustomUser.DoesNotExist:
|
||||
raise forms.ValidationError(_("User does not exist"))
|
||||
|
@ -156,8 +158,9 @@ class BillingAddressFormSignup(BillingAddressForm):
|
|||
try:
|
||||
CustomUser.objects.get(email=email)
|
||||
raise forms.ValidationError(
|
||||
_("The email {} is already registered with us. Please reset "
|
||||
"your password and access your account.".format(email))
|
||||
_("The email %(email)s is already registered with us. "
|
||||
"Please reset your password and access your account.") %
|
||||
{'email': email}
|
||||
)
|
||||
except CustomUser.DoesNotExist:
|
||||
return email
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-07-05 23:18+0000\n"
|
||||
"POT-Creation-Date: 2018-07-07 19:27+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -781,10 +781,10 @@ msgid "Email"
|
|||
msgstr "E-Mail"
|
||||
|
||||
msgid ""
|
||||
"The email {} is already registered with us. Please reset your password and "
|
||||
"access your account."
|
||||
"The email %(email)s is already registered with us. Please reset your "
|
||||
"password and access your account."
|
||||
msgstr ""
|
||||
"Diese E-Mail-Adresse {} existiert bereits. Bitte setze dein Passwort zurück "
|
||||
"Diese E-Mail-Adresse %(email)s existiert bereits. Bitte setze dein Passwort zurück "
|
||||
"auf dein Konto zuzugreifen."
|
||||
|
||||
msgid "Street Building"
|
||||
|
|
Loading…
Reference in a new issue