File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1066,7 +1066,8 @@ pulls.blocked_by_rejection = "This Pull Request has changes requested by an offi
1066
1066
pulls.can_auto_merge_desc = This pull request can be merged automatically.
1067
1067
pulls.cannot_auto_merge_desc = This pull request cannot be merged automatically due to conflicts.
1068
1068
pulls.cannot_auto_merge_helper = Merge manually to resolve the conflicts.
1069
- pulls.num_conflicting_files = " %d conflicting files"
1069
+ pulls.num_conflicting_files_1 = " %d conflicting file"
1070
+ pulls.num_conflicting_files_n = " %d conflicting files"
1070
1071
pulls.no_merge_desc = This pull request cannot be merged because all repository merge options are disabled.
1071
1072
pulls.no_merge_helper = Enable merge options in the repository settings or merge the pull request manually.
1072
1073
pulls.no_merge_wip = This pull request can not be merged because it is marked as being a work in progress.
Original file line number Diff line number Diff line change 269
269
{{end}}
270
270
{{if .IsPull}}
271
271
{{if (len .PullRequest.ConflictedFiles) gt 0}}
272
- <span class="conflicting"><i class="octicon octicon-mirror"></i> {{$.i18n.Tr "repo.pulls.num_conflicting_files" (len .PullRequest.ConflictedFiles)}}</span>
272
+ <span class="conflicting"><i class="octicon octicon-mirror"></i> {{$.i18n.Tr (TrN $.i18n.Lang (len .PullRequest.ConflictedFiles) "repo.pulls.num_conflicting_files_1" "repo.pulls.num_conflicting_files_n") (len .PullRequest.ConflictedFiles)}}</span>
273
273
{{end}}
274
274
{{end}}
275
275
</p>
Original file line number Diff line number Diff line change 153
153
{{end}}
154
154
{{if .IsPull}}
155
155
{{if (len .PullRequest.ConflictedFiles) gt 0}}
156
- <span class="conflicting"><i class="octicon octicon-mirror"></i> {{$.i18n.Tr "repo.pulls.num_conflicting_files" (len .PullRequest.ConflictedFiles)}}</span>
156
+ <span class="conflicting"><i class="octicon octicon-mirror"></i> {{$.i18n.Tr (TrN $.i18n.Lang (len .PullRequest.ConflictedFiles) "repo.pulls.num_conflicting_files_1" "repo.pulls.num_conflicting_files_n") (len .PullRequest.ConflictedFiles)}}</span>
157
157
{{end}}
158
158
{{end}}
159
159
</p>
You can’t perform that action at this time.
0 commit comments