API - use Babel to translate emails
This commit is contained in:
5
fittrackee/emails/templates/password_change/body.html
Normal file
5
fittrackee/emails/templates/password_change/body.html
Normal file
@ -0,0 +1,5 @@
|
||||
{% extends "layout.html" %}
|
||||
{% block title %}{{ _('Password changed') }}{% endblock %}
|
||||
{% block preheader %}{{ _('Your password has been changed.') }}{% endblock %}
|
||||
{% block content %}<p>{{ _('The password for your FitTrackee account has been changed.') }}</p>{% endblock %}
|
||||
{% block not_initiated %}{{ _("If this password change wasn't initiated by you, please change your password immediately or contact your administrator if your account is locked.") }}{% endblock %}
|
4
fittrackee/emails/templates/password_change/body.txt
Normal file
4
fittrackee/emails/templates/password_change/body.txt
Normal file
@ -0,0 +1,4 @@
|
||||
{% extends "layout.txt" %}{% block content %}{{ _('The password for your FitTrackee account has been changed.') }}
|
||||
|
||||
{% if operating_system and browser_name %}{{ _('For security, this request was received from a %(operating_system)s device using %(browser_name)s.', operating_system=operating_system, browser_name=browser_name) }}
|
||||
{% endif %}{{ _("If this password change wasn't initiated by you, please change your password immediately or contact your administrator if your account is locked.") }}{% endblock %}
|
@ -1,13 +0,0 @@
|
||||
{% extends "layout.html" %}
|
||||
{% block title %}Passwort geändert{% endblock %}
|
||||
{% block preheader %}Dein Passwort wurde geändert.{% endblock %}
|
||||
{% block content %}<h1>Hallo {{username}},</h1>
|
||||
<p>Das Passwort Deines FitTrackee Kontos wurde geändert.</p>
|
||||
<p>
|
||||
{% if operating_system and browser_name %}Zur Sicherheit: Diese Anfrage wurde von einem {{operating_system}} Gerät mit {{browser_name}} ausgelöst.
|
||||
{% endif %}Falls die Änderung des Passworts nicht von Dir initiiert wurde, ändere bitte sofort Dein Passwort oder kontaktiere den Administrator, falls Dein Konto gesperrt ist.
|
||||
</p>
|
||||
<p>Danke
|
||||
<br>
|
||||
Dein FitTrackee Team
|
||||
</p>{% endblock %}
|
@ -1,10 +0,0 @@
|
||||
Hallo {{username}},
|
||||
|
||||
Das Passwort Deines FitTrackee Kontos wurde geändert.
|
||||
|
||||
{% if operating_system and browser_name %}Zur Sicherheit: Diese Anfrage wurde von einem {{operating_system}} Gerät mit {{browser_name}} ausgelöst.
|
||||
{% endif %}Falls die Änderung des Passworts nicht von Dir initiiert wurde, ändere bitte sofort Dein Passwort oder kontaktiere den Administrator, falls Dein Konto gesperrt ist.
|
||||
|
||||
Danke
|
||||
Dein FitTrackee Team
|
||||
{{fittrackee_url}}
|
@ -1 +0,0 @@
|
||||
FitTrackee - Passwort geändert
|
@ -1,13 +0,0 @@
|
||||
{% extends "layout.html" %}
|
||||
{% block title %}Password changed{% endblock %}
|
||||
{% block preheader %}Your password has been changed.{% endblock %}
|
||||
{% block content %}<h1>Hi {{username}},</h1>
|
||||
<p>The password for your FitTrackee account has been changed.</p>
|
||||
<p>
|
||||
{% if operating_system and browser_name %}For security, this request was received from a {{operating_system}} device using {{browser_name}}.
|
||||
{% endif %}If this password change wasn't initiated by you, please change your password immediately or contact your administrator if your account is locked.
|
||||
</p>
|
||||
<p>Thanks,
|
||||
<br>
|
||||
The FitTrackee Team
|
||||
</p>{% endblock %}
|
@ -1,10 +0,0 @@
|
||||
Hi {{username}},
|
||||
|
||||
The password for your FitTrackee account has been changed.
|
||||
|
||||
{% if operating_system and browser_name %}For security, this request was received from a {{operating_system}} device using {{browser_name}}.
|
||||
{% endif %}If this password change wasn't initiated by you, please change your password immediately or contact your administrator if your account is locked.
|
||||
|
||||
Thanks,
|
||||
The FitTrackee Team
|
||||
{{fittrackee_url}}
|
@ -1 +0,0 @@
|
||||
FitTrackee - Password changed
|
@ -1,13 +0,0 @@
|
||||
{% extends "layout.html" %}
|
||||
{% block title %}FitTrackee - Mot de passe modifié{% endblock %}
|
||||
{% block preheader %}Votre mot de passe a été modifié.{% endblock %}
|
||||
{% block content %}<h1>Bonjour {{username}},</h1>
|
||||
<p>Le mot de passe de votre compte FitTrackee a été modifié.</p>
|
||||
<p>
|
||||
{% if operating_system and browser_name %}Pour vérification, cette demande a été reçue à partir d'un appareil sous {{operating_system}}, utilisant le navigateur {{browser_name}}.
|
||||
{% endif %}Si vous n'êtes pas à l'origine de cette modification, veuillez changer votre mot de passe immédiatement ou contacter l'administrateur si votre compte est bloqué.
|
||||
</p>
|
||||
<p>Merci,
|
||||
<br>
|
||||
L'équipe FitTrackee
|
||||
</p>{% endblock %}
|
@ -1,10 +0,0 @@
|
||||
Bonjour {{username}},
|
||||
|
||||
Le mot de passe de votre compte FitTrackee a été modifié.
|
||||
|
||||
{% if operating_system and browser_name %}Pour vérification, cette demande a été reçue à partir d'un appareil sous {{operating_system}}, utilisant le navigateur {{browser_name}}.
|
||||
{% endif %}Si vous n'êtes pas à l'origine de cette modification, veuillez changer votre mot de passe immédiatement ou contacter l'administrateur si votre compte est bloqué.
|
||||
|
||||
Merci,
|
||||
L'équipe FitTrackee
|
||||
{{fittrackee_url}}
|
@ -1 +0,0 @@
|
||||
FitTrackee - Mot de passe modifié
|
1
fittrackee/emails/templates/password_change/subject.txt
Normal file
1
fittrackee/emails/templates/password_change/subject.txt
Normal file
@ -0,0 +1 @@
|
||||
FitTrackee - {{ _('Password changed') }}
|
Reference in New Issue
Block a user