diff options
Diffstat (limited to 'templates/repo/pulls/status.tmpl')
-rw-r--r-- | templates/repo/pulls/status.tmpl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/repo/pulls/status.tmpl b/templates/repo/pulls/status.tmpl index f029d5cb6c..b68802cd56 100644 --- a/templates/repo/pulls/status.tmpl +++ b/templates/repo/pulls/status.tmpl @@ -2,17 +2,17 @@ {{if not $.Issue.PullRequest.HasMerged}} <div class="ui top attached header"> {{if eq .LatestCommitStatus.State "pending"}} - {{$.i18n.Tr "repo.pulls.status_checking"}} + {{$.locale.Tr "repo.pulls.status_checking"}} {{else if eq .LatestCommitStatus.State "success"}} - {{$.i18n.Tr "repo.pulls.status_checks_success"}} + {{$.locale.Tr "repo.pulls.status_checks_success"}} {{else if eq .LatestCommitStatus.State "warning"}} - {{$.i18n.Tr "repo.pulls.status_checks_warning"}} + {{$.locale.Tr "repo.pulls.status_checks_warning"}} {{else if eq .LatestCommitStatus.State "failure"}} - {{$.i18n.Tr "repo.pulls.status_checks_failure"}} + {{$.locale.Tr "repo.pulls.status_checks_failure"}} {{else if eq .LatestCommitStatus.State "error"}} - {{$.i18n.Tr "repo.pulls.status_checks_error"}} + {{$.locale.Tr "repo.pulls.status_checks_error"}} {{else}} - {{$.i18n.Tr "repo.pulls.status_checking"}} + {{$.locale.Tr "repo.pulls.status_checking"}} {{end}} </div> {{end}} @@ -23,9 +23,9 @@ <span class="ui">{{.Context}} <span class="text grey">{{.Description}}</span></span> <div class="ui right"> {{if $.is_context_required}} - {{if (call $.is_context_required .Context)}}<div class="ui label">{{$.i18n.Tr "repo.pulls.status_checks_requested"}}</div>{{end}} + {{if (call $.is_context_required .Context)}}<div class="ui label">{{$.locale.Tr "repo.pulls.status_checks_requested"}}</div>{{end}} {{end}} - <span class="ui">{{if .TargetURL}}<a href="{{.TargetURL}}">{{$.i18n.Tr "repo.pulls.status_checks_details"}}</a>{{end}}</span> + <span class="ui">{{if .TargetURL}}<a href="{{.TargetURL}}">{{$.locale.Tr "repo.pulls.status_checks_details"}}</a>{{end}}</span> </div> </div> {{end}} |