summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/views/projects/commits/_commit_list.html.haml2
-rw-r--r--app/views/projects/commits/_commits.html.haml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/commits/_commit_list.html.haml b/app/views/projects/commits/_commit_list.html.haml
index 62e5f346777..c0988eca6de 100644
--- a/app/views/projects/commits/_commit_list.html.haml
+++ b/app/views/projects/commits/_commit_list.html.haml
@@ -9,6 +9,6 @@
- commits.each do |commit|
= render "projects/commits/inline_commit", commit: commit, project: @project
%li.warning-row.unstyled
- other #{hidden} commits hidden to prevent performance issues.
+ #{number_with_delimiter(hidden)} additional commits have been omitted.
- else
%ul.well-list= render commits, project: @project
diff --git a/app/views/projects/commits/_commits.html.haml b/app/views/projects/commits/_commits.html.haml
index 998251094a4..787fe443ac8 100644
--- a/app/views/projects/commits/_commits.html.haml
+++ b/app/views/projects/commits/_commits.html.haml
@@ -18,4 +18,4 @@
- if hidden > 0
.alert.alert-warning
- Not shown: #{hidden} more commits
+ #{number_with_delimiter(hidden)} additional commits have been omitted.