5 lines
218 B
Python
5 lines
218 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
PASSWORD_HAS_BEEN_CHANGED = _("Password has been changed.")
|
|
EMAIL_HAS_BEEN_SENT = _("Email was sent.")
|
|
EMAIL_COULD_NOT_BE_SENT = _("The email could not be sent.") |