Browse Source

Add hint about 7 day cooldown for archive takeout (#7375)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
39efc6d533
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      app/views/settings/exports/show.html.haml
  2. +1
    -1
      config/locales/en.yml

+ 3
- 3
app/views/settings/exports/show.html.haml View File

@ -10,15 +10,15 @@
%td
%tr
%th= t('exports.follows')
%td= @export.total_follows
%td= number_to_human @export.total_follows
%td= table_link_to 'download', t('exports.csv'), settings_exports_follows_path(format: :csv)
%tr
%th= t('exports.blocks')
%td= @export.total_blocks
%td= number_to_human @export.total_blocks
%td= table_link_to 'download', t('exports.csv'), settings_exports_blocks_path(format: :csv)
%tr
%th= t('exports.mutes')
%td= @export.total_mutes
%td= number_to_human @export.total_mutes
%td= table_link_to 'download', t('exports.csv'), settings_exports_mutes_path(format: :csv)
%p.muted-hint= t('exports.archive_takeout.hint_html')

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

@ -457,7 +457,7 @@ en:
archive_takeout:
date: Date
download: Download your archive
hint_html: You can request an archive of your <strong>toots and uploaded media</strong>. The exported data will be in ActivityPub format, readable by any compliant software.
hint_html: You can request an archive of your <strong>toots and uploaded media</strong>. The exported data will be in ActivityPub format, readable by any compliant software. You can request an archive every 7 days.
in_progress: Compiling your archive...
request: Request your archive
size: Size

Loading…
Cancel
Save