Skip to content

Commit

Permalink
Fixed resend email translation
Browse files Browse the repository at this point in the history
Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
  • Loading branch information
macartur committed May 17, 2016
1 parent 7a3a1c5 commit a8c3327
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion colab/accounts/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def resend_email_verification(request):
kwargs={'key': email.validation_key})
verification_url = request.build_absolute_uri(location)
if EmailAddressValidation.verify_email(email, verification_url):
msg = _('An email was sent to you. Verify your message box.')
msg = _('An email was sent to you. Verify your inbox or spam.')
messages.success(request, msg)
else:
msg = _('An error occurred while sending mail.')
Expand Down
Binary file modified colab/locale/pt_BR/LC_MESSAGES/django.mo
Binary file not shown.
4 changes: 2 additions & 2 deletions colab/locale/pt_BR/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,8 @@ msgid "This emails is not registered yet."
msgstr "Este email não está registrado ainda."

#: colab/accounts/views.py:225
msgid "An email was sent to you. Verify your message box."
msgstr "Um email foi enviado para você. Verifique sua caixa de email."
msgid "An email was sent to you. Verify your inbox or spam."
msgstr "Um email foi enviado para você. Verifique sua caixa de email ou possivelmente sua caixa de spam."

#: colab/accounts/views.py:228
msgid "An error occurred while sending mail."
Expand Down

0 comments on commit a8c3327

Please sign in to comment.