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 @@ +
Witaj, <%= @resource.email %> !
+ +Właśnie utworzyłeś konto na instancji <%= @instance %>.
+ +Aby aktywować konto, odwiedź poniższy link:
+<%= link_to 'Potwierdź rejestrację', confirmation_url(@resource, confirmation_token: @token) %>
+
+
Pamiętaj przeczytać nasz <%= link_to 'regulamin i zasady użytkowania', terms_url %>.
+ +Z pozdrowieniami,
+ +
Zespół <%= @instance %>
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 @@ +Witaj, <%= @resource.email %>!
+ +Informujemy, że ostatnio zmieniono Twoje hasło Mastodona.
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 @@ +Witaj, <%= @resource.email %>!
+ +Ktoś próbował zmienić Twoje hasło na Mastodonie. Możesz zrobić to klikając w poniższy link.
+ +<%= link_to 'Zmień moje hasło', 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.
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.