Commit 4a9f4d44 authored by David O'Regan's avatar David O'Regan

Merge branch 'Externalize-strings-in-milestones/_form.html.haml' into 'master'

Externalize strings in milestones/_form.html.haml

See merge request gitlab-org/gitlab!58298
parents 3cbf75fe 71234427
...@@ -4,23 +4,23 @@ ...@@ -4,23 +4,23 @@
.col-md-6 .col-md-6
.form-group.row .form-group.row
.col-form-label.col-sm-2 .col-form-label.col-sm-2
= f.label :title, "Title" = f.label :title, _("Title")
.col-sm-10 .col-sm-10
= f.text_field :title, maxlength: 255, class: "form-control", data: { qa_selector: "milestone_title_field" }, required: true, autofocus: true = f.text_field :title, maxlength: 255, class: "form-control", data: { qa_selector: "milestone_title_field" }, required: true, autofocus: true
.form-group.row.milestone-description .form-group.row.milestone-description
.col-form-label.col-sm-2 .col-form-label.col-sm-2
= f.label :description, "Description" = f.label :description, _("Description")
.col-sm-10 .col-sm-10
= render layout: 'shared/md_preview', locals: { url: group_preview_markdown_path } do = render layout: 'shared/md_preview', locals: { url: group_preview_markdown_path } do
= render 'shared/zen', f: f, attr: :description, classes: 'note-textarea', qa_selector: 'milestone_description_field', placeholder: 'Write milestone description...', supports_autocomplete: false = render 'shared/zen', f: f, attr: :description, classes: 'note-textarea', qa_selector: 'milestone_description_field', placeholder: _('Write milestone description...'), supports_autocomplete: false
.clearfix .clearfix
.error-alert .error-alert
= render "shared/milestones/form_dates", f: f = render "shared/milestones/form_dates", f: f
.form-actions .form-actions
- if @milestone.new_record? - if @milestone.new_record?
= f.submit 'Create milestone', class: "btn-confirm gl-button btn", data: { qa_selector: "create_milestone_button" } = f.submit _('Create milestone'), class: "btn-confirm gl-button btn", data: { qa_selector: "create_milestone_button" }
= link_to "Cancel", group_milestones_path(@group), class: "btn gl-button btn-cancel" = link_to _("Cancel"), group_milestones_path(@group), class: "btn gl-button btn-cancel"
- else - else
= f.submit 'Update milestone', class: "btn-confirm gl-button btn" = f.submit _('Update milestone'), class: "btn-confirm gl-button btn"
= link_to "Cancel", group_milestone_path(@group, @milestone), class: "btn gl-button btn-cancel" = link_to _("Cancel"), group_milestone_path(@group, @milestone), class: "btn gl-button btn-cancel"
---
title: Externalize strings in milestones/_form.html.haml
merge_request: 58298
author: nuwe1
type: other
...@@ -33681,6 +33681,9 @@ msgstr "" ...@@ -33681,6 +33681,9 @@ msgstr ""
msgid "Update iteration" msgid "Update iteration"
msgstr "" msgstr ""
msgid "Update milestone"
msgstr ""
msgid "Update now" msgid "Update now"
msgstr "" msgstr ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment