fix missing i18n for email for replies/mentions

This commit is contained in:
Carl Chenet 2017-02-08 08:14:56 +01:00
parent 6ae0051062
commit 9a8ef59f80
3 changed files with 12 additions and 8 deletions

View file

@ -8,8 +8,7 @@ class EmailReply < ActionMailer::Base
mail(
:to => user.email,
:subject => "[#{Rails.application.name}] Reply from " <<
"#{comment.user.username} on #{comment.story.title}"
:subject => I18n.t('mailers.email_reply.replysubject', :appname => "#{Rails.application.name}", :author => "#{comment.user.username}", :story => "#{comment.story.title}")
)
end
@ -19,8 +18,7 @@ class EmailReply < ActionMailer::Base
mail(
:to => user.email,
:subject => "[#{Rails.application.name}] Mention from " <<
"#{comment.user.username} on #{comment.story.title}"
:subject => I18n.t('mailers.email_reply.mentionsubject', :appname => "#{Rails.application.name}", :author => "#{comment.user.username}", :story => "#{comment.story.title}")
)
end
end

View file

@ -6,10 +6,13 @@ en:
formats:
default: "%Y-%m-%d %H:%M:%S"
mailers:
invitation_mailer:
subject: "[%{appname}] You have been invited to %{appname}"
email_message:
subject: "[%{appname}] Private Message from %{author}: %{subject}"
email_reply:
replysubject: "[%{appname}] Reply from %{author} on %{story}"
mentionsubject: "[%{appname}] Mention from %{author} on %{story}"
invitation_mailer:
subject: "[%{appname}] You have been invited to %{appname}"
models:
comment:
commentcannotbeblank: "A comment cannot be blank."

View file

@ -18,10 +18,13 @@ fr:
formats:
default: "%d-%m-%Y %H:%M:%S"
mailers:
invitation_mailer:
subject: "[%{appname}] Vous avez été invité au %{appname}"
email_message:
subject: "[%{appname}] Message privé de %{author} : %{subject}"
email_reply:
replysubject: "[%{appname}] Réponse de %{author} sur %{story}"
mentionsubject: "[%{appname}] %{author} vous a mentionné dans %{story}"
invitation_mailer:
subject: "[%{appname}] Vous avez été invité au %{appname}"
models:
comment:
commentcannotbeblank: "Un commentaire ne peut pas être vide."