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.
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
- content_for :page_title do
 | 
						|
  = t('settings.export')
 | 
						|
 | 
						|
.table-wrapper
 | 
						|
  %table.table
 | 
						|
    %tbody
 | 
						|
      %tr
 | 
						|
        %th= t('exports.storage')
 | 
						|
        %td= number_to_human_size @export.total_storage
 | 
						|
        %td
 | 
						|
      %tr
 | 
						|
        %th= t('accounts.posts_tab_heading')
 | 
						|
        %td= number_with_delimiter @export.total_statuses
 | 
						|
        %td
 | 
						|
      %tr
 | 
						|
        %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
 | 
						|
        %th= t('exports.lists')
 | 
						|
        %td= number_with_delimiter @export.total_lists
 | 
						|
        %td= table_link_to 'download', t('exports.csv'), settings_exports_lists_path(format: :csv)
 | 
						|
      %tr
 | 
						|
        %th= t('admin.accounts.followers')
 | 
						|
        %td= number_with_delimiter @export.total_followers
 | 
						|
        %td
 | 
						|
      %tr
 | 
						|
        %th= t('exports.blocks')
 | 
						|
        %td= number_with_delimiter @export.total_blocks
 | 
						|
        %td= table_link_to 'download', t('exports.csv'), settings_exports_blocks_path(format: :csv)
 | 
						|
      %tr
 | 
						|
        %th= t('exports.mutes')
 | 
						|
        %td= number_with_delimiter @export.total_mutes
 | 
						|
        %td= table_link_to 'download', t('exports.csv'), settings_exports_mutes_path(format: :csv)
 | 
						|
      %tr
 | 
						|
        %th= t('exports.domain_blocks')
 | 
						|
        %td= number_with_delimiter @export.total_domain_blocks
 | 
						|
        %td= table_link_to 'download', t('exports.csv'), settings_exports_domain_blocks_path(format: :csv)
 | 
						|
 | 
						|
%hr.spacer/
 | 
						|
 | 
						|
%p.muted-hint= t('exports.archive_takeout.hint_html')
 | 
						|
 | 
						|
- if policy(:backup).create?
 | 
						|
  %p= link_to t('exports.archive_takeout.request'), settings_export_path, class: 'button', method: :post
 | 
						|
 | 
						|
- unless @backups.empty?
 | 
						|
  %hr.spacer/
 | 
						|
 | 
						|
  .table-wrapper
 | 
						|
    %table.table
 | 
						|
      %thead
 | 
						|
        %tr
 | 
						|
          %th= t('exports.archive_takeout.date')
 | 
						|
          %th= t('exports.archive_takeout.size')
 | 
						|
          %th
 | 
						|
      %tbody
 | 
						|
        - @backups.each do |backup|
 | 
						|
          %tr
 | 
						|
            %td= l backup.created_at
 | 
						|
            - if backup.processed?
 | 
						|
              %td= number_to_human_size backup.dump_file_size
 | 
						|
              %td= table_link_to 'download', t('exports.archive_takeout.download'), backup.dump.url
 | 
						|
            - else
 | 
						|
              %td{ colspan: 2 }= t('exports.archive_takeout.in_progress')
 |