Rename en.registrar translation key to en.registrar_name

#240
This commit is contained in:
Artur Beljajev 2016-11-11 12:42:16 +02:00
parent 2643df8d21
commit 064716bebf
29 changed files with 45 additions and 46 deletions

View file

@ -23,7 +23,7 @@
.row
.col-md-6
.form-group
= f.label t(:registrar)
= f.label t(:registrar_name)
= f.select :registrar_id_eq, Registrar.all.map { |x| [x, x.id] }, { include_blank: true }, class: 'form-control selectize', placeholder: t(:choose)
.col-md-3
.form-group
@ -63,7 +63,7 @@
%th{class: 'col-xs-2'}
= sort_link(@q, 'valid_to', t(:valid_to))
%th{class: 'col-xs-2'}
= sort_link(@q, 'registrar_name', t(:registrar))
= sort_link(@q, 'registrar_name', t(:registrar_name))
%tbody
- @domains.each do |x|
%tr

View file

@ -9,7 +9,7 @@
%dt= t(:registered_at)
%dd= l(@domain.registered_at)
%dt= t(:registrar)
%dt= t(:registrar_name)
%dd= link_to(@domain.registrar, admin_registrar_path(@domain.registrar))
%dt= t(:authinfo_pw)

View file

@ -16,7 +16,7 @@
%th{class: 'col-xs-2'}= t(:tech)
%th{class: 'col-xs-2'}= t(:nameservers)
%th{class: 'col-xs-2'}= t(:dnskeys)
%th{class: 'col-xs-2'}= t(:registrar)
%th{class: 'col-xs-2'}= t(:registrar_name)
%tbody
-#- if @pending_domain.present?