mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-21 20:15:10 +01:00
add Japanese user mail views
This commit is contained in:
parent
f3c988d404
commit
32658bb3de
@ -0,0 +1,5 @@
|
||||
<p>ようこそ<%= @resource.email %>さん</p>
|
||||
|
||||
<p>以下のリンクをクリックしてMastodonアカウントのメールアドレスを確認してください</p>
|
||||
|
||||
<p><%= link_to 'メールアドレスの確認', confirmation_url(@resource, confirmation_token: @token) %></p>
|
@ -0,0 +1,5 @@
|
||||
ようこそ<%= @resource.email %>さん
|
||||
|
||||
以下のリンクをクリックしてMastodonアカウントのメールアドレスを確認してください
|
||||
|
||||
<%= confirmation_url(@resource, confirmation_token: @token) %>
|
3
app/views/user_mailer/password_change.ja.html.erb
Normal file
3
app/views/user_mailer/password_change.ja.html.erb
Normal file
@ -0,0 +1,3 @@
|
||||
<p>こんにちは<%= @resource.email %>さん</p>
|
||||
|
||||
<p>Mastodonアカウントのパスワードが変更されました。</p>
|
3
app/views/user_mailer/password_change.ja.text.erb
Normal file
3
app/views/user_mailer/password_change.ja.text.erb
Normal file
@ -0,0 +1,3 @@
|
||||
こんにちは<%= @resource.email %>さん
|
||||
|
||||
Mastodonアカウントのパスワードが変更されました。
|
@ -0,0 +1,8 @@
|
||||
<p>こんにちは<%= @resource.email %>さん</p>
|
||||
|
||||
<p>Mastodonアカウントのパスワードの変更がリクエストされました。以下のリンクをクリックして操作を完了できます。</p>
|
||||
|
||||
<p><%= link_to 'パスワードを変更', edit_password_url(@resource, reset_password_token: @token) %></p>
|
||||
|
||||
<p>このメールに見に覚えのない場合は無視してください。</p>
|
||||
<p>上記のリンクにアクセスし、変更をしない限りパスワードは変更されません。</p>
|
@ -0,0 +1,8 @@
|
||||
こんにちは<%= @resource.email %>さん
|
||||
|
||||
Mastodonアカウントのパスワードの変更がリクエストされました。以下のリンクをクリックして操作を完了できます。
|
||||
|
||||
<%= edit_password_url(@resource, reset_password_token: @token) %>
|
||||
|
||||
このメールに見に覚えのない場合は無視してください。
|
||||
上記のリンクにアクセスし、変更をしない限りパスワードは変更されません。
|
Loading…
Reference in New Issue
Block a user