UX: change 'Visit Topic' to 'Visit Message' for message notification email

This commit is contained in:
Arpit Jalan
2016-02-09 13:39:10 +05:30
parent 3df2ee3431
commit 82a75c00c0
4 changed files with 11 additions and 3 deletions

View File

@ -34,9 +34,9 @@ module Email
@template_args[:respond_instructions] = ''
else
@template_args[:respond_instructions] = if allow_reply_by_email?
I18n.t('user_notifications.reply_by_email', @template_args)
@opts[:private_reply] ? I18n.t('user_notifications.reply_by_email_pm', @template_args) : I18n.t('user_notifications.reply_by_email', @template_args)
else
I18n.t('user_notifications.visit_link_to_respond', @template_args)
@opts[:private_reply] ? I18n.t('user_notifications.visit_link_to_respond_pm', @template_args) : I18n.t('user_notifications.visit_link_to_respond', @template_args)
end
end
end