diff options
author | Thomas Citharel <tcit@tcit.fr> | 2017-04-08 13:11:16 +0200 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-08 13:11:16 +0200 |
commit | 41f8fde83e62bd20d3c0a2bb6cff1ed8b3279a4a (patch) | |
tree | 179746a4a0eeaf81499145f990760c24e1e875fc /app/views | |
parent | 157f0a2aa74737fbe1654984cbe6879b584f2721 (diff) |
Update french translation (#1148)
Add french translation for emails sent Signed-off-by: Thomas Citharel <tcit@tcit.fr> Add non-breaking spaces Signed-off-by: Thomas Citharel <tcit@tcit.fr> changes and fixes to the nbsps Signed-off-by: Thomas Citharel <tcit@tcit.fr> French update a few fixes Signed-off-by: Thomas Citharel <tcit@tcit.fr> fixes Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'app/views')
6 files changed, 32 insertions, 0 deletions
diff --git a/app/views/user_mailer/confirmation_instructions.fr.html.erb b/app/views/user_mailer/confirmation_instructions.fr.html.erb new file mode 100644 index 000000000..2665f1a20 --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.fr.html.erb @@ -0,0 +1,5 @@ +<p>Bienvenue <%= @resource.email %> !</p> + +<p>Vous pouvez confirmer l'email de votre compte Mastodon en cliquant sur le lien ci-dessous :</p> + +<p><%= link_to 'Confirmer mon compte', confirmation_url(@resource, confirmation_token: @token) %></p> diff --git a/app/views/user_mailer/confirmation_instructions.fr.text.erb b/app/views/user_mailer/confirmation_instructions.fr.text.erb new file mode 100644 index 000000000..9d33450f8 --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.fr.text.erb @@ -0,0 +1,5 @@ +Bienvenue <%= @resource.email %> ! + +Vous pouvez confirmer l'email de votre compte Mastodon en cliquant sur le lien ci-dessous : + +<%= confirmation_url(@resource, confirmation_token: @token) %> diff --git a/app/views/user_mailer/password_change.fr.html.erb b/app/views/user_mailer/password_change.fr.html.erb new file mode 100644 index 000000000..cb8a261fe --- /dev/null +++ b/app/views/user_mailer/password_change.fr.html.erb @@ -0,0 +1,3 @@ +<p>Bonjour <%= @resource.email %> !</p> + +<p>Nous vous contactons pour vous informer que votre mot de passe sur Mastodon a bien été modifié.</p> diff --git a/app/views/user_mailer/password_change.fr.text.erb b/app/views/user_mailer/password_change.fr.text.erb new file mode 100644 index 000000000..f068f1cd6 --- /dev/null +++ b/app/views/user_mailer/password_change.fr.text.erb @@ -0,0 +1,3 @@ +Bonjour <%= @resource.email %> ! + +Nous vous contactons pour vous informer que votre mot de passe sur Mastodon a bien été modifié. diff --git a/app/views/user_mailer/reset_password_instructions.fr.html.erb b/app/views/user_mailer/reset_password_instructions.fr.html.erb new file mode 100644 index 000000000..95789e387 --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.fr.html.erb @@ -0,0 +1,8 @@ +<p>Bonjour <%= @resource.email %> !</p> + +<p>Quelqu'un a demandé à réinitialiser votre mot de passe sur Mastodon. Vous pouvez effectuer la réinitialisation en cliquant sur le lien ci-dessous.</p> + +<p><%= link_to 'Modifier mon mot de passe', edit_password_url(@resource, reset_password_token: @token) %></p> + +<p>Si vous n'êtes pas à l'origine de cette demande, vous pouvez ignorer ce message.</p> +<p>Votre mot de passe ne sera pas modifié tant que vous n'accéderez pas au lien ci-dessus et n'en choisirez pas un nouveau.</p> diff --git a/app/views/user_mailer/reset_password_instructions.fr.text.erb b/app/views/user_mailer/reset_password_instructions.fr.text.erb new file mode 100644 index 000000000..73160cb4c --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.fr.text.erb @@ -0,0 +1,8 @@ +Bonjour <%= @resource.email %> ! + +Quelqu'un a demandé à réinitialiser votre mot de passe sur Mastodon. Vous pouvez effectuer la réinitialisation en cliquant sur le lien ci-dessous. + +<%= edit_password_url(@resource, reset_password_token: @token) %> + +Si vous n'êtes pas à l'origine de cette demande, vous pouvez ignorer ce message. +Votre mot de passe ne sera pas modifié tant que vous n'accéderez pas au lien ci-dessus et n'en choisirez pas un nouveau. |