Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2019-04-25 11:22:48 +0300
committerSean McGivern <sean@gitlab.com>2019-04-25 11:22:48 +0300
commit15d302de69385c2f455a4a96b3f86115add846ce (patch)
tree154f3605828964ed839b5720407341a438ad05d2
parent272071219e5b8261352b4b98431a78d51a93ccda (diff)
Fix new issue header text
Without the leading `=`, this is just interpreted as literal text, so it won't be translated.
-rw-r--r--app/views/projects/issues/new.html.haml3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/projects/issues/new.html.haml b/app/views/projects/issues/new.html.haml
index c6ff0d50ef4..d1601d7fd10 100644
--- a/app/views/projects/issues/new.html.haml
+++ b/app/views/projects/issues/new.html.haml
@@ -2,8 +2,7 @@
- breadcrumb_title _("New")
- page_title _("New Issue")
-%h3.page-title
- _("New Issue")
+%h3.page-title= _("New Issue")
%hr
= render "form"