Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorKushal Pandya <kushalspandya@gmail.com>2019-02-19 09:20:28 +0300
committerKushal Pandya <kushalspandya@gmail.com>2019-02-19 09:20:28 +0300
commit5bf3b33dee6ee1591bb1fe43f4605e4bcdb707f3 (patch)
treed1d8d09a9e6a093c2ca446e193d1f04c2f508da0 /app
parent327eb9a881871755be3222334856ea883e884276 (diff)
parent3bf7c9ab56204b5e31c23f05e35158fd5c92cce3 (diff)
Merge branch 'gt-update-new-password-breadcrumb' into 'master'
Update new password breadcrumb See merge request gitlab-org/gitlab-ce!25037
Diffstat (limited to 'app')
-rw-r--r--app/views/profiles/passwords/new.html.haml13
1 files changed, 7 insertions, 6 deletions
diff --git a/app/views/profiles/passwords/new.html.haml b/app/views/profiles/passwords/new.html.haml
index d265f3c44ba..4b84835429c 100644
--- a/app/views/profiles/passwords/new.html.haml
+++ b/app/views/profiles/passwords/new.html.haml
@@ -1,12 +1,13 @@
-- page_title "New Password"
-- header_title "New Password"
-%h3.page-title Set up new password
+- page_title _('New Password')
+- breadcrumb_title _('New Password')
+
+%h3.page-title= _('Set up new password')
%hr
= form_for @user, url: profile_password_path, method: :post do |f|
%p.slead
- Please set a new password before proceeding.
+ = _('Please set a new password before proceeding.')
%br
- After a successful password update you will be redirected to login screen.
+ = _('After a successful password update you will be redirected to login screen.')
= form_errors(@user)
@@ -22,4 +23,4 @@
.col-sm-10
= f.password_field :password_confirmation, required: true, class: 'form-control'
.form-actions
- = f.submit 'Set new password', class: "btn btn-success"
+ = f.submit _('Set new password'), class: 'btn btn-success'