summaryrefslogtreecommitdiffstats
path: root/app/views/notification_mailer
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-01-29 00:22:20 +0100
committerGitHub <noreply@github.com>2018-01-29 00:22:20 +0100
commit79bc3d58456a850a7f2d99a2c0e15ff1618c1a0e (patch)
tree5bec2a3bf54ff6e840884771b2e8a49db11d6380 /app/views/notification_mailer
parent106efba800a63d508aabdc661cb0551c2b82110c (diff)
Add direction tags to HTML e-mails for RTL languages (#6373)
Diffstat (limited to 'app/views/notification_mailer')
-rw-r--r--app/views/notification_mailer/_status.html.haml5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/views/notification_mailer/_status.html.haml b/app/views/notification_mailer/_status.html.haml
index 727e914dcc3..f82ada1465f 100644
--- a/app/views/notification_mailer/_status.html.haml
+++ b/app/views/notification_mailer/_status.html.haml
@@ -1,6 +1,6 @@
- i ||= 0
-%table.email-table{ cellspacing: 0, cellpadding: 0 }
+%table.email-table{ cellspacing: 0, cellpadding: 0, dir: 'ltr' }
%tbody
%tr
%td.email-body
@@ -24,7 +24,8 @@
%bdi= display_name(status.account)
= "@#{status.account.acct}"
- = Formatter.instance.format(status)
+ %div{ dir: rtl_status?(status) ? 'rtl' : 'ltr' }
+ = Formatter.instance.format(status)
%p.status-footer
= link_to l(status.created_at), web_url("statuses/#{status.id}")