mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 01:05:14 +00:00
Label stars/forks link in repo explore
This commit is contained in:
parent
4c40a261d5
commit
9e69ef9c51
|
@ -357,6 +357,10 @@ issues.in_your_repos = In your repositories
|
||||||
[explore]
|
[explore]
|
||||||
repos = Repositories
|
repos = Repositories
|
||||||
users = Users
|
users = Users
|
||||||
|
stars_one = %d star
|
||||||
|
stars_few = %d stars
|
||||||
|
forks_one = %d fork
|
||||||
|
forks_few = %d forks
|
||||||
organizations = Organizations
|
organizations = Organizations
|
||||||
search = Search
|
search = Search
|
||||||
go_to = Go to
|
go_to = Go to
|
||||||
|
|
|
@ -37,10 +37,10 @@
|
||||||
</a>
|
</a>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{if not $.DisableStars}}
|
{{if not $.DisableStars}}
|
||||||
<a class="text grey flex-text-inline" href="{{.Link}}/stars">{{svg "octicon-star" 16}}{{.NumStars}}</a>
|
<a class="text grey flex-text-inline" href="{{.Link}}/stars" aria-label="{{ctx.Locale.TrN .NumStars "explore.stars_one" "explore.stars_few" .NumStars}}">{{svg "octicon-star" 16}}{{.NumStars}}</a>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{if not $.DisableForks}}
|
{{if not $.DisableForks}}
|
||||||
<a class="text grey flex-text-inline" href="{{.Link}}/forks">{{svg "octicon-git-branch" 16}}{{.NumForks}}</a>
|
<a class="text grey flex-text-inline" href="{{.Link}}/forks" aria-label="{{ctx.Locale.TrN .NumForks "explore.forks_one" "explore.forks_few" .NumForks}}">{{svg "octicon-git-branch" 16}}{{.NumForks}}</a>
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue