diff options
author | Fabian Schneider <fabbbbbi+git@googlemail.com> | 2018-11-13 19:38:26 +0100 |
---|---|---|
committer | Fabian Schneider <fabbbbbi+git@googlemail.com> | 2019-02-06 17:33:57 +0100 |
commit | 8fabc92e8b4779030c4fa09d8e1c72f213814787 (patch) | |
tree | d79ecbda0b0b5a2814379d83edb4f2395182526c /app/views/profiles/preferences | |
parent | 5402f3c360eaa668782d53cdf04fcc1cb0a400ec (diff) | |
download | gitlab-ce-8fabc92e8b4779030c4fa09d8e1c72f213814787.tar.gz |
Add helpers for first day of the week
Diffstat (limited to 'app/views/profiles/preferences')
-rw-r--r-- | app/views/profiles/preferences/show.html.haml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/profiles/preferences/show.html.haml b/app/views/profiles/preferences/show.html.haml index bed9aa05224..e290ba89684 100644 --- a/app/views/profiles/preferences/show.html.haml +++ b/app/views/profiles/preferences/show.html.haml @@ -66,17 +66,17 @@ .col-lg-4.profile-settings-sidebar %h4.prepend-top-0 - Localization + = _('Localization') %p - Customize language and region related settings. + = _('Customize language and region related settings.') = succeed '.' do - = link_to 'Learn more', help_page_path('user/profile/preferences', anchor: 'localization'), target: '_blank' + = link_to _('Learn more'), help_page_path('user/profile/preferences', anchor: 'localization'), target: '_blank' .col-lg-8 .form-group = f.label :first_day_of_week, class: 'label-bold' do - First day of the week - = f.select :first_day_of_week, first_day_of_week_choices, {}, class: 'form-control' + = _('First day of the week') + = f.select :first_day_of_week, first_day_of_week_choices_with_default, {}, class: 'form-control' .form-text.text-muted - Choose on what day the week should start. + = _('Choose on what day the week should start.') .form-group - = f.submit 'Save changes', class: 'btn btn-success' + = f.submit _('Save changes'), class: 'btn btn-success' |