diff options
author | antony liu <sun_apollo@yeah.net> | 2019-05-28 07:07:20 +0000 |
---|---|---|
committer | Bob Van Landuyt <bob@gitlab.com> | 2019-05-28 07:07:20 +0000 |
commit | cdb9ce4dfa5d38d23532a6e34ffb2f7d4c880856 (patch) | |
tree | 9faee43d24b22d3915b0005b72d626eb18fe4eee /app/views/profiles | |
parent | c7fc58bcfc68ee873036a7d6aed7133b6d423da6 (diff) | |
download | gitlab-ce-cdb9ce4dfa5d38d23532a6e34ffb2f7d4c880856.tar.gz |
Externalize stirngs of Authentication log page in user profile
Diffstat (limited to 'app/views/profiles')
-rw-r--r-- | app/views/profiles/_event_table.html.haml | 6 | ||||
-rw-r--r-- | app/views/profiles/audit_log.html.haml | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/app/views/profiles/_event_table.html.haml b/app/views/profiles/_event_table.html.haml index 9f525547dd9..977ff30d5a6 100644 --- a/app/views/profiles/_event_table.html.haml +++ b/app/views/profiles/_event_table.html.haml @@ -1,14 +1,12 @@ %h5.prepend-top-0 - History of authentications + = _('History of authentications') %ul.content-list - events.each do |event| %li %span.description = audit_icon(event.details[:with], class: "append-right-5") - Signed in with - = event.details[:with] - authentication + = _('Signed in with %{authentication} authentication') % { authentication: event.details[:with]} %span.float-right= time_ago_with_tooltip(event.created_at) = paginate events, theme: "gitlab" diff --git a/app/views/profiles/audit_log.html.haml b/app/views/profiles/audit_log.html.haml index a924369050b..275c0428d34 100644 --- a/app/views/profiles/audit_log.html.haml +++ b/app/views/profiles/audit_log.html.haml @@ -1,4 +1,4 @@ -- page_title "Authentication log" +- page_title _('Authentication log') - @content_class = "limit-container-width" unless fluid_layout .row.prepend-top-default @@ -6,6 +6,6 @@ %h4.prepend-top-0 = page_title %p - This is a security log of important events involving your account. + = _('This is a security log of important events involving your account.') .col-lg-8 = render 'event_table', events: @events |