Browse Source

Add DM icon back on HTML view of DMs (#16086)

Fix regression from #16052
closed-social-v3
Claire 3 years ago
committed by GitHub
parent
commit
e243092a5a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions
  1. +2
    -0
      app/helpers/application_helper.rb
  2. +1
    -0
      config/locales/en.yml

+ 2
- 0
app/helpers/application_helper.rb View File

@ -91,6 +91,8 @@ module ApplicationHelper
fa_icon('unlock', title: I18n.t('statuses.visibilities.unlisted'))
elsif status.private_visibility? || status.limited_visibility?
fa_icon('lock', title: I18n.t('statuses.visibilities.private'))
elsif status.direct_visibility?
fa_icon('envelope', title: I18n.t('statuses.visibilities.direct'))
end
end

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

@ -1260,6 +1260,7 @@ en:
sign_in_to_participate: Sign in to participate in the conversation
title: '%{name}: "%{quote}"'
visibilities:
direct: Direct
private: Followers-only
private_long: Only show to followers
public: Public

Loading…
Cancel
Save