Commit 71234427 authored by Marvin Karegyeya's avatar Marvin Karegyeya Committed by David O'Regan

Externalize strings in milestones/_form.html.haml

parent 69f6e347
......@@ -4,23 +4,23 @@
.col-md-6
.form-group.row
.col-form-label.col-sm-2
= f.label :title, "Title"
= f.label :title, _("Title")
.col-sm-10
= f.text_field :title, maxlength: 255, class: "form-control", data: { qa_selector: "milestone_title_field" }, required: true, autofocus: true
.form-group.row.milestone-description
.col-form-label.col-sm-2
= f.label :description, "Description"
= f.label :description, _("Description")
.col-sm-10
= 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
.error-alert
= render "shared/milestones/form_dates", f: f
.form-actions
- if @milestone.new_record?
= 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"
= 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"
- else
= f.submit 'Update milestone', class: "btn-confirm gl-button btn"
= link_to "Cancel", group_milestone_path(@group, @milestone), class: "btn gl-button btn-cancel"
= f.submit _('Update milestone'), class: "btn-confirm gl-button btn"
= 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
......@@ -33612,6 +33612,9 @@ msgstr ""
msgid "Update iteration"
msgstr ""
msgid "Update milestone"
msgstr ""
msgid "Update now"
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