summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorGeorge Tsiolis <tsiolis.g@gmail.com>2018-03-29 15:06:49 +0300
committerGeorge Tsiolis <tsiolis.g@gmail.com>2018-03-29 15:06:49 +0300
commitbb853779761d07a6aa7ba38cefbaa2128db0fd4b (patch)
tree040457bb1ff5d2ba3586c1bc8ed004f1befcbe1a /app/views
parent3375baff6aff06838b10663da88b678790fd0da5 (diff)
downloadgitlab-ce-bb853779761d07a6aa7ba38cefbaa2128db0fd4b.tar.gz
Use translated string for breadcrumb title
Diffstat (limited to 'app/views')
-rw-r--r--app/views/groups/show.html.haml2
-rw-r--r--app/views/projects/empty.html.haml2
-rw-r--r--app/views/projects/no_repo.html.haml2
-rw-r--r--app/views/projects/show.html.haml2
4 files changed, 4 insertions, 4 deletions
diff --git a/app/views/groups/show.html.haml b/app/views/groups/show.html.haml
index 7f9486d08d9..8e1dea4afc1 100644
--- a/app/views/groups/show.html.haml
+++ b/app/views/groups/show.html.haml
@@ -1,5 +1,5 @@
- @no_container = true
-- breadcrumb_title "Details"
+- breadcrumb_title _("Details")
- can_create_subgroups = can?(current_user, :create_subgroup, @group)
= content_for :meta_tags do
diff --git a/app/views/projects/empty.html.haml b/app/views/projects/empty.html.haml
index 8a36fada389..b15fe514a08 100644
--- a/app/views/projects/empty.html.haml
+++ b/app/views/projects/empty.html.haml
@@ -1,5 +1,5 @@
- @no_container = true
-- breadcrumb_title "Details"
+- breadcrumb_title _("Details")
= render partial: 'flash_messages', locals: { project: @project }
diff --git a/app/views/projects/no_repo.html.haml b/app/views/projects/no_repo.html.haml
index eb77ba4d2a5..14d880028c7 100644
--- a/app/views/projects/no_repo.html.haml
+++ b/app/views/projects/no_repo.html.haml
@@ -1,4 +1,4 @@
-- breadcrumb_title "Details"
+- breadcrumb_title _("Details")
%h2
%i.fa.fa-warning
diff --git a/app/views/projects/show.html.haml b/app/views/projects/show.html.haml
index fa281327eb7..94331a16abd 100644
--- a/app/views/projects/show.html.haml
+++ b/app/views/projects/show.html.haml
@@ -1,5 +1,5 @@
- @no_container = true
-- breadcrumb_title "Details"
+- breadcrumb_title _("Details")
- @content_class = "limit-container-width" unless fluid_layout
- show_auto_devops_callout = show_auto_devops_callout?(@project)