summaryrefslogtreecommitdiff
path: root/app/views/projects
diff options
context:
space:
mode:
authorHenry Smith <henry@henrysmith.org>2013-08-15 18:31:16 +0100
committerHenry Smith <henry@henrysmith.org>2013-08-15 18:31:16 +0100
commit4b91ffca3e07bb4bebcca67430c58457441ed304 (patch)
treec73729275a6ed9a8f2efa21d630fc1dfc3d32287 /app/views/projects
parent55582047413c639a4843f52f9869fafc01bf6522 (diff)
downloadgitlab-ce-4b91ffca3e07bb4bebcca67430c58457441ed304.tar.gz
More specific empty state message wording
I've changed all the instances of "Nothing to show here" to specifically mention the name of the entity of which there are none to show. This makes for a slightly smoother reading experience.
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/issues/_issues.html.haml2
-rw-r--r--app/views/projects/merge_requests/index.html.haml2
-rw-r--r--app/views/projects/milestones/index.html.haml2
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/issues/_issues.html.haml b/app/views/projects/issues/_issues.html.haml
index 99a23c169d2..539c45edd94 100644
--- a/app/views/projects/issues/_issues.html.haml
+++ b/app/views/projects/issues/_issues.html.haml
@@ -83,7 +83,7 @@
= render @issues
- if @issues.blank?
%li
- %h4.nothing_here_message Nothing to show here
+ %h4.nothing_here_message No issues to show
- if @issues.present?
.pull-right
diff --git a/app/views/projects/merge_requests/index.html.haml b/app/views/projects/merge_requests/index.html.haml
index 35de9149d82..2bd5a027a02 100644
--- a/app/views/projects/merge_requests/index.html.haml
+++ b/app/views/projects/merge_requests/index.html.haml
@@ -65,7 +65,7 @@
= render @merge_requests
- if @merge_requests.blank?
%li
- %h4.nothing_here_message Nothing to show here
+ %h4.nothing_here_message No merge requests to show
- if @merge_requests.present?
.pull-right
%span.cgray.pull-right #{@merge_requests.total_count} merge requests for this filter
diff --git a/app/views/projects/milestones/index.html.haml b/app/views/projects/milestones/index.html.haml
index 0c0828c9064..ddb46bcb5cb 100644
--- a/app/views/projects/milestones/index.html.haml
+++ b/app/views/projects/milestones/index.html.haml
@@ -26,6 +26,6 @@
- if @milestones.blank?
%li
- %h3.nothing_here_message Nothing to show here
+ %h3.nothing_here_message No milestones to show
= paginate @milestones, theme: "gitlab"