Browse Source

Change mailer image url (#6279)

* Change image URL in mailer to full path

* Add application_mailer.view_profile localization.
closed-social-v3
mayaeh 6 years ago
committed by Eugen Rochko
parent
commit
eed7484cd6
6 changed files with 6 additions and 5 deletions
  1. +1
    -1
      app/views/notification_mailer/favourite.html.haml
  2. +1
    -1
      app/views/notification_mailer/follow.html.haml
  3. +1
    -1
      app/views/notification_mailer/follow_request.html.haml
  4. +1
    -1
      app/views/notification_mailer/mention.html.haml
  5. +1
    -1
      app/views/notification_mailer/reblog.html.haml
  6. +1
    -0
      config/locales/en.yml

+ 1
- 1
app/views/notification_mailer/favourite.html.haml View File

@ -17,7 +17,7 @@
%tbody
%tr
%td
= image_tag asset_pack_path('icon_grade.svg')
= image_tag full_pack_url('icon_grade.svg'), alt:''
%h1= t 'notification_mailer.favourite.title'
%p.lead= t('notification_mailer.favourite.body', name: @account.acct)

+ 1
- 1
app/views/notification_mailer/follow.html.haml View File

@ -17,7 +17,7 @@
%tbody
%tr
%td
= image_tag asset_pack_path('icon_person_add.svg')
= image_tag full_pack_url('icon_person_add.svg'), alt: ''
%h1= t 'notification_mailer.follow.title'
%p.lead= t('notification_mailer.follow.body', name: @account.acct)

+ 1
- 1
app/views/notification_mailer/follow_request.html.haml View File

@ -17,7 +17,7 @@
%tbody
%tr
%td
= image_tag asset_pack_path('icon_person_add.svg')
= image_tag full_pack_url('icon_person_add.svg'), alt: ''
%h1= t 'notification_mailer.follow_request.title'
%p.lead= t('notification_mailer.follow_request.body', name: @account.acct)

+ 1
- 1
app/views/notification_mailer/mention.html.haml View File

@ -17,7 +17,7 @@
%tbody
%tr
%td
= image_tag asset_pack_path('icon_reply.svg')
= image_tag full_pack_url('icon_reply.svg'), alt: ''
%h1= t 'notification_mailer.mention.title'
%p.lead= t('notification_mailer.mention.body', name: @status.account.acct)

+ 1
- 1
app/views/notification_mailer/reblog.html.haml View File

@ -17,7 +17,7 @@
%tbody
%tr
%td
= image_tag asset_pack_path('icon_cached.svg')
= image_tag full_pack_url('icon_cached.svg'), alt: ''
%h1= t 'notification_mailer.reblog.title'
%p.lead= t('notification_mailer.reblog.body', name: @account.acct)

+ 1
- 0
config/locales/en.yml View File

@ -343,6 +343,7 @@ en:
settings: 'Change e-mail preferences: %{link}'
signature: Mastodon notifications from %{instance}
view: 'View:'
view_profile: View Profile
view_status: View status
applications:
created: Application successfully created

Loading…
Cancel
Save