mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
d6f8238492
Followup to https://github.com/go-gitea/gitea/pull/24427. Reasoning is that `N/A` is specific to english while `-` is language-neutral and does not need translation. Before: <img width="891" alt="Screenshot 2023-05-01 at 20 58 20" src="https://user-images.githubusercontent.com/115237/235511592-8a36d0f2-34ff-4dbe-b642-67c0ade644fe.png"> After: <img width="901" alt="Screenshot 2023-05-01 at 20 59 59" src="https://user-images.githubusercontent.com/115237/235511594-d49f6d09-92e8-4e99-be7b-2a37f5d24129.png">
18 lines
848 B
Handlebars
18 lines
848 B
Handlebars
<div class="ui top attached pull tabular stackable menu">
|
|
<a class="item {{if .PageIsPullConversation}}active{{end}}" href="{{.Issue.Link}}">
|
|
{{svg "octicon-comment-discussion"}}
|
|
{{$.locale.Tr "repo.pulls.tab_conversation"}}
|
|
<span class="ui small label">{{.Issue.NumComments}}</span>
|
|
</a>
|
|
<a class="item {{if .PageIsPullCommits}}active{{end}}" {{if .NumCommits}}href="{{.Issue.Link}}/commits"{{end}}>
|
|
{{svg "octicon-git-commit"}}
|
|
{{$.locale.Tr "repo.pulls.tab_commits"}}
|
|
<span class="ui small label">{{if .NumCommits}}{{.NumCommits}}{{else}}-{{end}}</span>
|
|
</a>
|
|
<a class="item {{if .PageIsPullFiles}}active{{end}}" {{if .NumFiles}}href="{{.Issue.Link}}/files"{{end}}>
|
|
{{svg "octicon-diff"}}
|
|
{{$.locale.Tr "repo.pulls.tab_files"}}
|
|
<span class="ui small label">{{if .NumFiles}}{{.NumFiles}}{{else}}-{{end}}</span>
|
|
</a>
|
|
</div>
|