summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-15 09:39:29 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-15 09:39:29 +0300
commit0d3ba71bcb92218585988ca1b9f863a796d6e168 (patch)
tree2dfc5a37c9deeb0dd83cf38c81bd036dbe7ad2c7 /app
parent9c7a9d92ff2d3fc8e1caf7c74fc72d10dbf6da37 (diff)
parentd2b4948a1fe606457d2d0e42d9e06f5a4cc1fd91 (diff)
downloadgitlab-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')
-rw-r--r--app/views/projects/issues/_form.html.haml4
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'}.