diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-04-15 09:39:29 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-04-15 09:39:29 +0300 |
commit | 0d3ba71bcb92218585988ca1b9f863a796d6e168 (patch) | |
tree | 2dfc5a37c9deeb0dd83cf38c81bd036dbe7ad2c7 /app/views | |
parent | 9c7a9d92ff2d3fc8e1caf7c74fc72d10dbf6da37 (diff) | |
parent | d2b4948a1fe606457d2d0e42d9e06f5a4cc1fd91 (diff) | |
download | gitlab-ce-0d3ba71bcb92218585988ca1b9f863a796d6e168.tar.gz |
Merge pull request #6774 from cirosantilli/issue-form-rename-fields
Rename issue form tags Subject -> Title and Details -> Description
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/projects/issues/_form.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/issues/_form.html.haml b/app/views/projects/issues/_form.html.haml index 91d0de8e47c..84703229fe6 100644 --- a/app/views/projects/issues/_form.html.haml +++ b/app/views/projects/issues/_form.html.haml @@ -13,11 +13,11 @@ %br .form-group = f.label :title, class: 'control-label' do - %strong= "Subject *" + %strong= 'Title *' .col-sm-10 = f.text_field :title, maxlength: 255, class: "form-control js-gfm-input", autofocus: true, required: true .form-group - = f.label :description, "Details", class: 'control-label' + = f.label :description, 'Description', class: 'control-label' .col-sm-10 = f.text_area :description, class: "form-control js-gfm-input", rows: 14 %p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}. |