From 406229d927ee3dfbc2fd9ec7a984a90b924f0834 Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Mon, 8 May 2017 23:11:12 +0200 Subject: Updating and extending Dutch strings (#2930) * Update nl * Update nl * Update nl * Create confirmation_instructions.nl.html.erb * Create confirmation_instructions.nl.text.erb * Create password_change.nl.html.erb * Create password_change.nl.text.erb * Create reset_password_instructions.nl.html.erb * Create reset_password_instructions.nl.text.erb --- app/views/user_mailer/confirmation_instructions.nl.html.erb | 12 ++++++++++++ app/views/user_mailer/confirmation_instructions.nl.text.erb | 12 ++++++++++++ app/views/user_mailer/password_change.nl.html.erb | 3 +++ app/views/user_mailer/password_change.nl.text.erb | 3 +++ .../user_mailer/reset_password_instructions.nl.html.erb | 9 +++++++++ .../user_mailer/reset_password_instructions.nl.text.erb | 9 +++++++++ 6 files changed, 48 insertions(+) create mode 100644 app/views/user_mailer/confirmation_instructions.nl.html.erb create mode 100644 app/views/user_mailer/confirmation_instructions.nl.text.erb create mode 100644 app/views/user_mailer/password_change.nl.html.erb create mode 100644 app/views/user_mailer/password_change.nl.text.erb create mode 100644 app/views/user_mailer/reset_password_instructions.nl.html.erb create mode 100644 app/views/user_mailer/reset_password_instructions.nl.text.erb (limited to 'app/views') diff --git a/app/views/user_mailer/confirmation_instructions.nl.html.erb b/app/views/user_mailer/confirmation_instructions.nl.html.erb new file mode 100644 index 000000000..d65d08b6a --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.nl.html.erb @@ -0,0 +1,12 @@ +

Welkom <%= @resource.email %> !

+ +

Je hebt zojuist een account aangemaakt op <%= @instance %>.

+ +

Klik op de volgende link om jouw registratie te bevestigen :
+<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %>

+ +

Lees ook onze gebruikersvoorwaarden op <%= link_to 'terms and conditions', terms_url %>.

+ +

Vriendelijke groet,

+ +

De beheerder(s) van <%= @instance %>

diff --git a/app/views/user_mailer/confirmation_instructions.nl.text.erb b/app/views/user_mailer/confirmation_instructions.nl.text.erb new file mode 100644 index 000000000..3c14896b3 --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.nl.text.erb @@ -0,0 +1,12 @@ +Welkom <%= @resource.email %> ! + +Je hebt zojuist een account aangemaakt op <%= @instance %>. + +Klik op de volgende link om jouw registratie te bevestigen : +<%= confirmation_url(@resource, confirmation_token: @token) %> + +Lees ook onze gebruikersvoorwaarden op <%= terms_url %> + +Vriendelijke groet, + +De beheerder(s) van <%= @instance %> diff --git a/app/views/user_mailer/password_change.nl.html.erb b/app/views/user_mailer/password_change.nl.html.erb new file mode 100644 index 000000000..3ffc547cd --- /dev/null +++ b/app/views/user_mailer/password_change.nl.html.erb @@ -0,0 +1,3 @@ +

Hallo <%= @resource.email %>!

+ +

Hierbij laten we jou weten dat jouw wachtwoord op Mastodon is veranderd.

diff --git a/app/views/user_mailer/password_change.nl.text.erb b/app/views/user_mailer/password_change.nl.text.erb new file mode 100644 index 000000000..33accd99c --- /dev/null +++ b/app/views/user_mailer/password_change.nl.text.erb @@ -0,0 +1,3 @@ +Hallo <%= @resource.email %>! + +Hierbij laten we jou weten dat jouw wachtwoord op Mastodon is veranderd. diff --git a/app/views/user_mailer/reset_password_instructions.nl.html.erb b/app/views/user_mailer/reset_password_instructions.nl.html.erb new file mode 100644 index 000000000..ca1748145 --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.nl.html.erb @@ -0,0 +1,9 @@ +

Hallo <%= @resource.email %>!

+ +

Er heeft iemand een nieuw wachtwoord aangevraagd voor Mastodon. Je kan op de link hieronder klikken om jouw wach +twoord te veranderen.

+ +

<%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %>

+ +

Je kan deze e-mail negeren wanneer jij dit niet hebt aangevraagd.

+

Jouw wachtwoord blijft onveranderd wanneer je niet op bovenstaande link klikt.

diff --git a/app/views/user_mailer/reset_password_instructions.nl.text.erb b/app/views/user_mailer/reset_password_instructions.nl.text.erb new file mode 100644 index 000000000..eda133db2 --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.nl.text.erb @@ -0,0 +1,9 @@ +Hallo <%= @resource.email %>! + +Er heeft iemand een nieuw wachtwoord aangevraagd voor Mastodon. Je kan op de link hieronder klikken om jouw wachtwo +ord te veranderen. + +<%= edit_password_url(@resource, reset_password_token: @token) %> + +Je kan deze e-mail negeren wanneer jij dit niet hebt aangevraagd. +Jouw wachtwoord blijft onveranderd wanneer je niet op bovenstaande link klikt. -- cgit