diff options
author | Sasha Sorokin <dafri.nochiterov8@gmail.com> | 2019-12-19 18:47:55 +0700 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-12-19 12:47:55 +0100 |
commit | 902c6bed5aab12c2e97af3452f122247777226af (patch) | |
tree | c91d8a469a21725b38999cb0f3a8b4f1e89735d0 /app/views | |
parent | dc0750abc331749a92ffa96fed9fe048acdea3b1 (diff) |
Use different strings on exports page (#12569)
Currently the page re-uses strings from other contexts which doesn't fit very well - strings incorrectly lowercase-d and pluralized, when they don't need to be, because it's a table. This commit changes page to re-use accounts.posts_tab_heading for toots, and admin.accounts for "Following" and "Follows". This all should look more aesthetically pleasing.
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/settings/exports/show.html.haml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/settings/exports/show.html.haml b/app/views/settings/exports/show.html.haml index 76ff76bd9..0bb80e937 100644 --- a/app/views/settings/exports/show.html.haml +++ b/app/views/settings/exports/show.html.haml @@ -9,11 +9,11 @@ %td= number_to_human_size @export.total_storage %td %tr - %th= t('accounts.posts', count: @export.total_statuses) + %th= t('accounts.posts_tab_heading') %td= number_with_delimiter @export.total_statuses %td %tr - %th= t('exports.follows') + %th= t('admin.accounts.follows') %td= number_with_delimiter @export.total_follows %td= table_link_to 'download', t('exports.csv'), settings_exports_follows_path(format: :csv) %tr @@ -21,7 +21,7 @@ %td= number_with_delimiter @export.total_lists %td= table_link_to 'download', t('exports.csv'), settings_exports_lists_path(format: :csv) %tr - %th= t('accounts.followers', count: @export.total_followers) + %th= t('admin.accounts.followers') %td= number_with_delimiter @export.total_followers %td %tr |