File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
templates/repo/issue/view_content Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ write = Write
86
86
preview = Preview
87
87
loading = Loading…
88
88
89
+ step1 = Step 1:
90
+ step2 = Step 2:
91
+
89
92
error404 = The page you are trying to reach either <strong>does not exist</strong> or <strong>you are not authorized</strong> to view it.
90
93
91
94
[error]
@@ -1297,9 +1300,8 @@ pulls.outdated_with_base_branch = This branch is out-of-date with the base branc
1297
1300
pulls.closed_at = `closed this pull request <a id="%[1]s" href="#%[1]s">%[2]s</a>`
1298
1301
pulls.reopened_at = `reopened this pull request <a id="%[1]s" href="#%[1]s">%[2]s</a>`
1299
1302
pulls.merge_instruction_hint = `You can also view <a class="show-instruction">command line instructions</a>.`
1300
- pulls.merge_instruction_step1 = Step 1:
1303
+
1301
1304
pulls.merge_instruction_step1_desc = From your project repository, check out a new branch and test the changes.
1302
- pulls.merge_instruction_step2 = Step 2:
1303
1305
pulls.merge_instruction_step2_desc = Merge the changes and update on Gitea.
1304
1306
1305
1307
milestones.new = New Milestone
Original file line number Diff line number Diff line change 366
366
<div class="dib ml-3">{{$.i18n.Tr "repo.pulls.merge_instruction_hint" | Safe}}</div>
367
367
<div class="instruct" style="display:none">
368
368
<div class="ui divider"></div>
369
- <div><h3 class="di">{{$.i18n.Tr "repo.pulls.merge_instruction_step1 "}} </h3>{{$.i18n.Tr "repo.pulls.merge_instruction_step1_desc"}}</div>
369
+ <div><h3 class="di">{{$.i18n.Tr "step1 "}} </h3>{{$.i18n.Tr "repo.pulls.merge_instruction_step1_desc"}}</div>
370
370
<div class="ui secondary segment">
371
371
<div>git checkout -b {{if ne .Issue.PullRequest.HeadRepo.ID .Issue.PullRequest.BaseRepo.ID}}{{.Issue.PullRequest.HeadRepo.OwnerName}}-{{end}}{{.Issue.PullRequest.HeadBranch}} {{.Issue.PullRequest.BaseBranch}}</div>
372
372
<div>git pull {{if ne .Issue.PullRequest.HeadRepo.ID .Issue.PullRequest.BaseRepo.ID}}{{.Issue.PullRequest.HeadRepo.HTMLURL}}{{else}}origin{{end}} {{.Issue.PullRequest.HeadBranch}}</div>
373
373
</div>
374
- <div><h3 class="di">{{$.i18n.Tr "repo.pulls.merge_instruction_step2 "}} </h3>{{$.i18n.Tr "repo.pulls.merge_instruction_step2_desc"}}</div>
374
+ <div><h3 class="di">{{$.i18n.Tr "step2 "}} </h3>{{$.i18n.Tr "repo.pulls.merge_instruction_step2_desc"}}</div>
375
375
<div class="ui secondary segment">
376
376
<div>git checkout {{.Issue.PullRequest.BaseBranch}}</div>
377
377
<div>git merge --no-ff {{if ne .Issue.PullRequest.HeadRepo.ID .Issue.PullRequest.BaseRepo.ID}}{{.Issue.PullRequest.HeadRepo.OwnerName}}-{{end}}{{.Issue.PullRequest.HeadBranch}}</div>
You can’t perform that action at this time.
0 commit comments