From 32658bb3debfb40a2451921ec942e5eba2a91060 Mon Sep 17 00:00:00 2001 From: pinfort Date: Tue, 11 Apr 2017 12:00:46 +0900 Subject: [PATCH] add Japanese user mail views --- .../user_mailer/confirmation_instructions.ja.html.erb | 5 +++++ .../user_mailer/confirmation_instructions.ja.text.erb | 5 +++++ app/views/user_mailer/password_change.ja.html.erb | 3 +++ app/views/user_mailer/password_change.ja.text.erb | 3 +++ .../user_mailer/reset_password_instructions.ja.html.erb | 8 ++++++++ .../user_mailer/reset_password_instructions.ja.text.erb | 8 ++++++++ 6 files changed, 32 insertions(+) create mode 100644 app/views/user_mailer/confirmation_instructions.ja.html.erb create mode 100644 app/views/user_mailer/confirmation_instructions.ja.text.erb create mode 100644 app/views/user_mailer/password_change.ja.html.erb create mode 100644 app/views/user_mailer/password_change.ja.text.erb create mode 100644 app/views/user_mailer/reset_password_instructions.ja.html.erb create mode 100644 app/views/user_mailer/reset_password_instructions.ja.text.erb diff --git a/app/views/user_mailer/confirmation_instructions.ja.html.erb b/app/views/user_mailer/confirmation_instructions.ja.html.erb new file mode 100644 index 0000000000..bbb44b2cca --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.ja.html.erb @@ -0,0 +1,5 @@ +

ようこそ<%= @resource.email %>さん

+ +

以下のリンクをクリックしてMastodonアカウントのメールアドレスを確認してください

+ +

<%= link_to 'メールアドレスの確認', confirmation_url(@resource, confirmation_token: @token) %>

diff --git a/app/views/user_mailer/confirmation_instructions.ja.text.erb b/app/views/user_mailer/confirmation_instructions.ja.text.erb new file mode 100644 index 0000000000..ad8abee2dd --- /dev/null +++ b/app/views/user_mailer/confirmation_instructions.ja.text.erb @@ -0,0 +1,5 @@ +ようこそ<%= @resource.email %>さん + +以下のリンクをクリックしてMastodonアカウントのメールアドレスを確認してください + +<%= confirmation_url(@resource, confirmation_token: @token) %> diff --git a/app/views/user_mailer/password_change.ja.html.erb b/app/views/user_mailer/password_change.ja.html.erb new file mode 100644 index 0000000000..3aa83f1876 --- /dev/null +++ b/app/views/user_mailer/password_change.ja.html.erb @@ -0,0 +1,3 @@ +

こんにちは<%= @resource.email %>さん

+ +

Mastodonアカウントのパスワードが変更されました。

diff --git a/app/views/user_mailer/password_change.ja.text.erb b/app/views/user_mailer/password_change.ja.text.erb new file mode 100644 index 0000000000..aa29b9b2bd --- /dev/null +++ b/app/views/user_mailer/password_change.ja.text.erb @@ -0,0 +1,3 @@ +こんにちは<%= @resource.email %>さん + +Mastodonアカウントのパスワードが変更されました。 diff --git a/app/views/user_mailer/reset_password_instructions.ja.html.erb b/app/views/user_mailer/reset_password_instructions.ja.html.erb new file mode 100644 index 0000000000..156758ef51 --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.ja.html.erb @@ -0,0 +1,8 @@ +

こんにちは<%= @resource.email %>さん

+ +

Mastodonアカウントのパスワードの変更がリクエストされました。以下のリンクをクリックして操作を完了できます。

+ +

<%= link_to 'パスワードを変更', edit_password_url(@resource, reset_password_token: @token) %>

+ +

このメールに見に覚えのない場合は無視してください。

+

上記のリンクにアクセスし、変更をしない限りパスワードは変更されません。

diff --git a/app/views/user_mailer/reset_password_instructions.ja.text.erb b/app/views/user_mailer/reset_password_instructions.ja.text.erb new file mode 100644 index 0000000000..5fb0eba045 --- /dev/null +++ b/app/views/user_mailer/reset_password_instructions.ja.text.erb @@ -0,0 +1,8 @@ +こんにちは<%= @resource.email %>さん + +Mastodonアカウントのパスワードの変更がリクエストされました。以下のリンクをクリックして操作を完了できます。 + +<%= edit_password_url(@resource, reset_password_token: @token) %> + +このメールに見に覚えのない場合は無視してください。 +上記のリンクにアクセスし、変更をしない限りパスワードは変更されません。