about summary refs log tree commit diff
path: root/app/views/admin/accounts
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/accounts
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/accounts')
-rw-r--r--app/views/admin/accounts/index.html.haml36
-rw-r--r--app/views/admin/accounts/show.html.haml38
2 files changed, 37 insertions, 37 deletions
diff --git a/app/views/admin/accounts/index.html.haml b/app/views/admin/accounts/index.html.haml
index 4d636601e..bd1eb7ecd 100644
--- a/app/views/admin/accounts/index.html.haml
+++ b/app/views/admin/accounts/index.html.haml
@@ -1,30 +1,30 @@
 - content_for :page_title do
-  Accounts
+  = t('admin.accounts.title')
 
 .filters
   .filter-subset
-    %strong Location
+    %strong= t('admin.accounts.location.title')
     %ul
-      %li= filter_link_to 'All', local: nil, remote: nil
-      %li= filter_link_to 'Local', local: '1', remote: nil
-      %li= filter_link_to 'Remote', remote: '1', local: nil
+      %li= filter_link_to t('admin.accounts.location.all'), local: nil, remote: nil
+      %li= filter_link_to t('admin.accounts.location.local'), local: '1', remote: nil
+      %li= filter_link_to t('admin.accounts.location.remote'), remote: '1', local: nil
   .filter-subset
-    %strong Moderation
+    %strong= t('admin.accounts.moderation.title')
     %ul
-      %li= filter_link_to 'All', silenced: nil, suspended: nil
-      %li= filter_link_to 'Silenced', silenced: '1'
-      %li= filter_link_to 'Suspended', suspended: '1'
+      %li= filter_link_to t('admin.accounts.moderation.all'), silenced: nil, suspended: nil
+      %li= filter_link_to t('admin.accounts.moderation.silenced'), silenced: '1'
+      %li= filter_link_to t('admin.accounts.moderation.suspended'), suspended: '1'
   .filter-subset
-    %strong Order
+    %strong= t('admin.accounts.order.title')
     %ul
-      %li= filter_link_to 'Alphabetic', recent: nil
-      %li= filter_link_to 'Most recent', recent: '1'
+      %li= filter_link_to t('admin.accounts.order.alphabetic'), recent: nil
+      %li= filter_link_to t('admin.accounts.order.most_recent'), recent: '1'
 
 %table.table
   %thead
     %tr
-      %th Username
-      %th Domain
+      %th= t('admin.accounts.username')
+      %th= t('admin.accounts.domain')
       %th= fa_icon 'paper-plane-o'
       %th
   %tbody
@@ -36,14 +36,14 @@
             = link_to account.domain, admin_accounts_path(by_domain: account.domain)
         %td
           - if account.local?
-            Local
+            = t('admin.accounts.location.local')
           - elsif account.subscribed?
             %i.fa.fa-check
           - else
             %i.fa.fa-times
         %td
-          = table_link_to 'circle', 'Web', web_path("accounts/#{account.id}")
-          = table_link_to 'globe', 'Public', TagManager.instance.url_for(account)
-          = table_link_to 'pencil', 'Edit', admin_account_path(account.id)
+          = table_link_to 'circle', t('admin.accounts.web'), web_path("accounts/#{account.id}")
+          = table_link_to 'globe', t('admin.accounts.public'), TagManager.instance.url_for(account)
+          = table_link_to 'pencil', t('admin.accounts.edit'), admin_account_path(account.id)
 
 = paginate @accounts
diff --git a/app/views/admin/accounts/show.html.haml b/app/views/admin/accounts/show.html.haml
index 22901aed1..6d2a4d123 100644
--- a/app/views/admin/accounts/show.html.haml
+++ b/app/views/admin/accounts/show.html.haml
@@ -4,24 +4,24 @@
 %table.table
   %tbody
     %tr
-      %th Username
+      %th= t('admin.accounts.username')
       %td= @account.username
     %tr
-      %th Domain
+      %th= t('admin.accounts.domain')
       %td= @account.domain
     %tr
-      %th Display name
+      %th= t('admin.accounts.display_name')
       %td= @account.display_name
 
     - if @account.local?
       %tr
-        %th E-mail
+        %th= t('admin.accounts.email')
         %td= @account.user.email
       %tr
-        %th Most recent IP
+        %th= t('admin.accounts.most_recent_ip')
         %td= @account.user.current_sign_in_ip
       %tr
-        %th Most recent activity
+        %th= t('admin.accounts.most_recent_activity')
         %td
           - if @account.user.current_sign_in_at
             = l @account.user.current_sign_in_at
@@ -29,44 +29,44 @@
             Never
     - else
       %tr
-        %th Profile URL
+        %th= t('admin.accounts.profile_url')
         %td= link_to @account.url
       %tr
-        %th Feed URL
+        %th= t('admin.accounts.feed_url')
         %td= link_to @account.remote_url
       %tr
-        %th PuSH subscription expires
+        %th= t('admin.accounts.push_subscription_expires')
         %td
           - if @account.subscribed?
             = l @account.subscription_expires_at
           - else
-            Not subscribed
+            = t('admin.accounts.not_subscribed')
       %tr
-        %th Salmon URL
+        %th= t('admin.accounts.salmon_url')
         %td= link_to @account.salmon_url
 
     %tr
-      %th Follows
+      %th= t('admin.accounts.follows')
       %td= @account.following_count
     %tr
-      %th Followers
+      %th= t('admin.accounts.followers')
       %td= @account.followers_count
     %tr
-      %th Statuses
+      %th= t('admin.accounts.statuses')
       %td= @account.statuses_count
     %tr
-      %th Media attachments
+      %th= t('admin.accounts.media_attachments')
       %td
         = @account.media_attachments.count
         = surround '(', ')' do
           = number_to_human_size @account.media_attachments.sum('file_file_size')
 
 - if @account.silenced?
-  = link_to 'Undo silence', admin_account_silence_path(@account.id), method: :delete, class: 'button'
+  = link_to t('admin.accounts.undo_silenced'), admin_account_silence_path(@account.id), method: :delete, class: 'button'
 - else
-  = link_to 'Silence', admin_account_silence_path(@account.id), method: :post, class: 'button'
+  = link_to t('admin.accounts.silence'), admin_account_silence_path(@account.id), method: :post, class: 'button'
 
 - if @account.suspended?
-  = link_to 'Undo suspension', admin_account_suspension_path(@account.id), method: :delete, class: 'button'
+  = link_to t('admin.accounts.undo_suspension'), admin_account_suspension_path(@account.id), method: :delete, class: 'button'
 - else
-  = link_to 'Perform full suspension', admin_account_suspension_path(@account.id), method: :post, data: { confirm: 'Are you sure?' }, class: 'button'
+  = link_to t('admin.accounts.perform_full_suspension'), admin_account_suspension_path(@account.id), method: :post, data: { confirm: t('admin.accounts.are_you_sure') }, class: 'button'