Translate admin (#1702)
* Translate the domain_block panel Signed-off-by: Thomas Citharel <tcit@tcit.fr> * Translate PubSubHubbub section Signed-off-by: Thomas Citharel <tcit@tcit.fr> * translate account section and correct typos * move reports translation & translate sidebar Signed-off-by: Thomas Citharel <tcit@tcit.fr> * normalize l18n
This commit is contained in:
parent
d9dc0fe84e
commit
c0c56db0fa
12 changed files with 235 additions and 80 deletions
|
@ -1,11 +1,11 @@
|
|||
- content_for :page_title do
|
||||
Domain Blocks
|
||||
= t('admin.domain_block.title')
|
||||
|
||||
%table.table
|
||||
%thead
|
||||
%tr
|
||||
%th Domain
|
||||
%th Severity
|
||||
%th= t('admin.domain_block.domain')
|
||||
%th= t('admin.domain_block.severity')
|
||||
%tbody
|
||||
- @blocks.each do |block|
|
||||
%tr
|
||||
|
@ -14,4 +14,4 @@
|
|||
%td= block.severity
|
||||
|
||||
= paginate @blocks
|
||||
= link_to 'Add new', new_admin_domain_block_path, class: 'button'
|
||||
= link_to t('admin.domain_block.add_new'), new_admin_domain_block_path, class: 'button'
|
||||
|
|
|
@ -1,18 +1,14 @@
|
|||
- content_for :page_title do
|
||||
New domain block
|
||||
= t('admin.domain_block.new.title')
|
||||
|
||||
= simple_form_for @domain_block, url: admin_domain_blocks_path do |f|
|
||||
= render 'shared/error_messages', object: @domain_block
|
||||
|
||||
%p.hint The domain block will not prevent creation of account entries in the database, but will retroactively and automatically apply specific moderation methods on those accounts.
|
||||
%p.hint= t('admin.domain_block.new.hint')
|
||||
|
||||
= f.input :domain, placeholder: 'Domain'
|
||||
= f.input :severity, collection: DomainBlock.severities.keys, wrapper: :with_label, include_blank: false
|
||||
= f.input :domain, placeholder: t('admin.domain_block.domain')
|
||||
= f.input :severity, collection: DomainBlock.severities.keys, wrapper: :with_label, include_blank: false, label_method: lambda { |type| I18n.t("admin.domain_block.new.severity.#{type}") }
|
||||
|
||||
%p.hint
|
||||
%strong Silence
|
||||
will make the account's posts invisible to anyone who isn't following them.
|
||||
%strong Suspend
|
||||
will remove all of the account's content, media, and profile data.
|
||||
%p.hint= t('admin.domain_block.new.severity.desc_html')
|
||||
.actions
|
||||
= f.button :button, 'Create block', type: :submit
|
||||
= f.button :button, t('admin.domain_block.new.create'), type: :submit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue