diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-12-12 03:56:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 03:56:30 +0100 |
commit | 30d2ea03b05ed3efb4ad8f21cab343108d3699ac (patch) | |
tree | 7d63953e3af7a8609cb942933af0f1ec9197ee1c | |
parent | 1356ed72cd4f595e93a5fa23fd8d7459fc8f81b3 (diff) |
Improve public status page title (#5985)
-rw-r--r-- | app/views/stream_entries/show.html.haml | 3 | ||||
-rw-r--r-- | config/locales/en.yml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/views/stream_entries/show.html.haml b/app/views/stream_entries/show.html.haml index 895a61247..b52334a28 100644 --- a/app/views/stream_entries/show.html.haml +++ b/app/views/stream_entries/show.html.haml @@ -1,3 +1,6 @@ +- content_for :page_title do + = t('statuses.title', name: display_name(@account), quote: truncate(@stream_entry.activity.text, length: 50, omission: '…')) + - content_for :header_tags do - if @account.user&.setting_noindex %meta{ name: 'robots', content: 'noindex' }/ diff --git a/config/locales/en.yml b/config/locales/en.yml index d42fb6427..ce6d7ee41 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -599,6 +599,7 @@ en: private: Non-public toot cannot be pinned reblog: A boost cannot be pinned show_more: Show more + title: '%{name}: "%{quote}"' visibilities: private: Followers-only private_long: Only show to followers |