diff options
author | m4sk1n <m4sk1n@vivaldi.net> | 2017-05-06 11:06:55 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-06 11:06:55 +0200 |
commit | fd1e29c3f878868d6fcc5ba9803662a4c1923dcf (patch) | |
tree | 1a7379f79d2008020208808f4428583ea6184da0 /app/views/user_mailer | |
parent | 553e13144f2c971437da831764a2c4205bdb089a (diff) |
i18n: Updated Polish translation (#2832)
* i18n: updated Polish translation Signed-off-by: Marcin Mikołajczak <m4sk1n@vivaldi.net> * i18n: completed Polish translation Signed-off-by: Marcin Mikołajczak <m4sk1n@vivaldi.net>
Diffstat (limited to 'app/views/user_mailer')
6 files changed, 46 insertions, 0 deletions
diff --git a/app/views/user_mailer/confirmation_instructions.pl.html.erb b/app/views/user_mailer/confirmation_instructions.pl.html.erb new file mode 100644 index 000000000..973950184 --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.pl.html.erb @@ -0,0 +1,12 @@ +<p>Witaj, <%= @resource.email %> !</p> + +<p>Właśnie utworzyłeś konto na instancji <%= @instance %>.</p> + +<p>Aby aktywować konto, odwiedź poniższy link: <br> +<%= link_to 'Potwierdź rejestrację', confirmation_url(@resource, confirmation_token: @token) %> + +<p>Pamiętaj przeczytać nasz <%= link_to 'regulamin i zasady użytkowania', terms_url %>.</p> + +<p>Z pozdrowieniami,<p> + +<p>Zespół <%= @instance %></p> diff --git a/app/views/user_mailer/confirmation_instructions.pl.text.erb b/app/views/user_mailer/confirmation_instructions.pl.text.erb new file mode 100644 index 000000000..9640d8ddd --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.pl.text.erb @@ -0,0 +1,12 @@ +Witaj, <%= @resource.email %> ! + +Właśnie utworzyłeś konto na instancji <%= @instance %>. + +Aby aktywować konto, odwiedź poniższy link: +<%= confirmation_url(@resource, confirmation_token: @token) %> + +Pamiętaj przeczytać nasz regulamin i zasady użytkowania: <%= terms_url %> + +Z pozdrowieniami, + +Zespół <%= @instance %> diff --git a/app/views/user_mailer/password_change.pl.html.erb b/app/views/user_mailer/password_change.pl.html.erb new file mode 100644 index 000000000..46423483a --- /dev/null +++ b/app/views/user_mailer/password_change.pl.html.erb @@ -0,0 +1,3 @@ +<p>Witaj, <%= @resource.email %>!</p> + +<p>Informujemy, że ostatnio zmieniono Twoje hasło Mastodona.</p> diff --git a/app/views/user_mailer/password_change.pl.text.erb b/app/views/user_mailer/password_change.pl.text.erb new file mode 100644 index 000000000..85d5e1175 --- /dev/null +++ b/app/views/user_mailer/password_change.pl.text.erb @@ -0,0 +1,3 @@ +Witaj, <%= @resource.email %>! + +Informujemy, że ostatnio zmieniono Twoje hasło Mastodona. diff --git a/app/views/user_mailer/reset_password_instructions.pl.html.erb b/app/views/user_mailer/reset_password_instructions.pl.html.erb new file mode 100644 index 000000000..f4d67c724 --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.pl.html.erb @@ -0,0 +1,8 @@ +<p>Witaj, <%= @resource.email %>!</p> + +<p>Ktoś próbował zmienić Twoje hasło na Mastodonie. Możesz zrobić to klikając w poniższy link.</p> + +<p><%= link_to 'Zmień moje hasło', edit_password_url(@resource, reset_password_token: @token) %></p> + +<p>Jeżeli to nie Ty, zignoruj ten e-mail.</p> +<p>Twoje hasło nie zostanie zmienione, dopóki nie użyjesz linku z podobnej wiadomości.</p> diff --git a/app/views/user_mailer/reset_password_instructions.pl.text.erb b/app/views/user_mailer/reset_password_instructions.pl.text.erb new file mode 100644 index 000000000..78d1cab0b --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.pl.text.erb @@ -0,0 +1,8 @@ +Witaj, <%= @resource.email %>! + +Ktoś próbował zmienić Twoje hasło na Mastodonie. Możesz zrobić to klikając w poniższy link. + +<%= edit_password_url(@resource, reset_password_token: @token) %> + +Jeżeli to nie Ty, zignoruj ten e-mail. +Twoje hasło nie zostanie zmienione, dopóki nie użyjesz linku z podobnej wiadomości. |