diff options
author | M Somerville <dracos@users.noreply.github.com> | 2018-08-26 20:30:53 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-08-26 21:30:53 +0200 |
commit | b31449cd778f9a8639427929f060dee44646bc7d (patch) | |
tree | b2891ab1f8c1063c3efda0607bf78a5e12f189fb /app/views/settings | |
parent | f3a12ddfd0b5b9379c7cfe4229697765851f4738 (diff) |
Better singulars of account followers/toots. (#8471)
Diffstat (limited to 'app/views/settings')
-rw-r--r-- | app/views/settings/exports/show.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/settings/exports/show.html.haml b/app/views/settings/exports/show.html.haml index ef2d2b894..792dccd9e 100644 --- a/app/views/settings/exports/show.html.haml +++ b/app/views/settings/exports/show.html.haml @@ -9,7 +9,7 @@ %td= number_to_human_size @export.total_storage %td %tr - %th= t('accounts.statuses') + %th= t('accounts.statuses', count: @export.total_statuses) %td= number_with_delimiter @export.total_statuses %td %tr @@ -17,7 +17,7 @@ %td= number_with_delimiter @export.total_follows %td= table_link_to 'download', t('exports.csv'), settings_exports_follows_path(format: :csv) %tr - %th= t('accounts.followers') + %th= t('accounts.followers', count: @export.total_followers) %td= number_with_delimiter @export.total_followers %td %tr |