Commit 043c9f8640b558f2d46b9d64a498ab47f0c0700a

Authored by Marin Jankovski
1 parent 78a7a9b0

Change Diff to Changes in views.

app/views/notify/repository_push_email.html.haml
... ... @@ -7,7 +7,7 @@
7 7 %li
8 8 #{commit.short_id} - #{commit.title}
9 9  
10   -%h4 Diff:
  10 +%h4 Changes:
11 11 - @diffs.each do |diff|
12 12 %li
13 13 %strong
... ... @@ -23,6 +23,6 @@
23 23 %br
24 24  
25 25 - if @compare.timeout
26   - %h5 Huge diff. To prevent performance issues it was hidden
  26 + %h5 To prevent performance issues changes are hidden
27 27 - elsif @compare.commits_over_limit?
28   - %h5 Diff for big amount of commits is disabled
  28 + %h5 Changes are not shown due to large amount of commits
... ...
app/views/notify/repository_push_email.text.haml
... ... @@ -6,7 +6,7 @@ Commits:
6 6 #{commit.short_id} - #{truncate(commit.title, length: 40)}
7 7 \
8 8 \
9   -Diff:
  9 +Changes:
10 10 - @diffs.each do |diff|
11 11 \
12 12 \=====================================
... ... @@ -22,4 +22,4 @@ Diff:
22 22 - if @compare.timeout
23 23 Huge diff. To prevent performance issues it was hidden
24 24 - elsif @compare.commits_over_limit?
25   - Diff for big amount of commits is disabled
  25 + Changes are not shown due to large amount of commits
... ...
app/views/projects/commits/_text_file.html.haml
1 1 - too_big = diff.diff.lines.count > 1000
2 2 - if too_big
3   - %a.supp_diff_link Diff suppressed. Click to show
  3 + %a.supp_diff_link Changes suppressed. Click to show
4 4  
5 5 %table.text-file{class: "#{'hide' if too_big}"}
6 6 - each_diff_line(diff, index) do |line, type, line_code, line_new, line_old, raw_line|
... ...
app/views/projects/compare/show.html.haml
... ... @@ -18,17 +18,17 @@
18 18 - else
19 19 %ul.well-list= render Commit.decorate(@commits), project: @project
20 20  
21   - %h4 Diff
  21 + %h4 Changes
22 22 - if @diffs.present?
23 23 = render "projects/commits/diffs", diffs: @diffs, project: @project
24 24 - elsif @commits.size > MergeRequestDiff::COMMITS_SAFE_SIZE
25 25 .bs-callout.bs-callout-danger
26 26 %h4 This comparison includes more than #{MergeRequestDiff::COMMITS_SAFE_SIZE} commits.
27   - %p To preserve performance the line diff is not shown.
  27 + %p To preserve performance the line changes are not shown.
28 28 - elsif @timeout
29 29 .bs-callout.bs-callout-danger
30   - %h4 Diff for this comparison is extremely large.
31   - %p Use command line to browse diff for this comparison.
  30 + %h4 Number of changed files for this comparison is extremely large.
  31 + %p Use command line to browse through changes for this comparison.
32 32  
33 33  
34 34 - else
... ...
app/views/projects/merge_requests/_show.html.haml
... ... @@ -20,7 +20,7 @@
20 20 %li.diffs-tab{data: {action: 'diffs'}}
21 21 = link_to diffs_project_merge_request_path(@project, @merge_request) do
22 22 %i.icon-list-alt
23   - Diff
  23 + Changes
24 24  
25 25 - content_for :note_actions do
26 26 - if can?(current_user, :modify_merge_request, @merge_request)
... ...
app/views/projects/merge_requests/show/_diffs.html.haml
... ... @@ -5,7 +5,7 @@
5 5 - else
6 6 .bs-callout.bs-callout-warning
7 7 %h4
8   - Diff for this comparison is extremely large.
  8 + Changes view for this comparison is extremely large.
9 9 %p
10 10 You can
11 11 = link_to "download it", project_merge_request_path(@merge_request.source_project, @merge_request, format: :diff), class: "vlink"
... ...