about summary refs log tree commit diff
path: root/app/views/admin/domain_blocks/index.html.haml
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2017-04-13 21:49:07 +0200
committerEugen <eugen@zeonfederated.com>2017-04-13 21:49:07 +0200
commitc0c56db0fa453ea2d2405b6fdb9f3593113dc9f2 (patch)
tree02fcc5758de2c09389c1c8cc7b6c202212816017 /app/views/admin/domain_blocks/index.html.haml
parentd9dc0fe84e1f7def5e7b423edbca6eeac6815f1c (diff)
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
Diffstat (limited to 'app/views/admin/domain_blocks/index.html.haml')
-rw-r--r--app/views/admin/domain_blocks/index.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/admin/domain_blocks/index.html.haml b/app/views/admin/domain_blocks/index.html.haml
index fe6ff683f..6f4ba9b57 100644
--- a/app/views/admin/domain_blocks/index.html.haml
+++ b/app/views/admin/domain_blocks/index.html.haml
@@ -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'