mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
291c868046
The correct thing to do is to translate the entire phrase into a single string. The previous translation assumed all languages have a space between the "joined on" and the date (and that "joined on" comes before the date). Some languages, like Hebrew, have no space between the "joined on" and the date. For example: ```ini joined_on=נרשם ב-%s ``` ("joined" becomes נרשם, "on" is ב and when paired with a date we use a dash to connect ב with the date)
39 lines
1.1 KiB
Handlebars
39 lines
1.1 KiB
Handlebars
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content explore users">
|
|
{{template "explore/navbar" .}}
|
|
<div class="ui container">
|
|
{{template "explore/search" .}}
|
|
|
|
<div class="ui user list">
|
|
{{range .Users}}
|
|
<div class="item">
|
|
{{avatar $.Context .}}
|
|
<div class="content">
|
|
<span class="header">
|
|
<a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}
|
|
{{if .Visibility.IsPrivate}}
|
|
<span class="ui basic label">{{$.locale.Tr "repo.desc.private"}}</span>
|
|
{{end}}
|
|
</span>
|
|
<div class="description">
|
|
{{if .Location}}
|
|
{{svg "octicon-location"}} {{.Location}}
|
|
{{end}}
|
|
{{if and .Website}}
|
|
{{svg "octicon-link"}}
|
|
<a href="{{.Website}}" rel="nofollow">{{.Website}}</a>
|
|
{{end}}
|
|
{{svg "octicon-clock"}} {{$.locale.Tr "user.joined_on" (DateTime "short" .CreatedUnix) | Safe}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
<div>{{$.locale.Tr "explore.org_no_results"}}</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|