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
path: root/app/views
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-03-06 21:33:17 +0300
committerFilipa Lacerda <filipa@gitlab.com>2018-03-06 21:33:17 +0300
commitc5160c11c0364bb577d7b4ef56784fc709b301d4 (patch)
tree7b15e5141c7c0c51afe51ec73ae1b7d2382d6a8c /app/views
parent2d00d6d459164f9c51f9e04fe56aecdca5edfe24 (diff)
parent2169da03549cef9daad0d5918800b054ff6d3c09 (diff)
Merge branch 'ce-3727-fe-labels-for-epics' into 'master'
CE Port: Add `js-` classes in LabelsSelect component See merge request gitlab-org/gitlab-ce!17558
Diffstat (limited to 'app/views')
-rw-r--r--app/views/groups/labels/index.html.haml6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/groups/labels/index.html.haml b/app/views/groups/labels/index.html.haml
index d10efdad53b..ac7e12fcd0b 100644
--- a/app/views/groups/labels/index.html.haml
+++ b/app/views/groups/labels/index.html.haml
@@ -1,8 +1,10 @@
- page_title 'Labels'
+- issuables = ['issues', 'merge requests']
+
.top-area.adjust
.nav-text
- Labels can be applied to issues and merge requests. Group labels are available for any project within the group.
+ = _("Labels can be applied to %{features}. Group labels are available for any project within the group.") % { features: issuables.to_sentence }
.nav-controls
- if can?(current_user, :admin_label, @group)
@@ -16,4 +18,4 @@
= paginate @labels, theme: 'gitlab'
- else
.nothing-here-block
- No labels created yet.
+ = _("No labels created yet.")