diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-04-13 01:05:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-12 13:05:53 -0400 |
commit | 622d549ba24c80b691173eeec82906bad6894d53 (patch) | |
tree | cacf8280c7fb3f6103093772f182c4e97847d829 /templates/repo/issue | |
parent | 2d91afaa92609d31b04aea9ad909cec8a574cacd (diff) | |
download | gitea-622d549ba24c80b691173eeec82906bad6894d53.tar.gz gitea-622d549ba24c80b691173eeec82906bad6894d53.zip |
Fix difficult translation for other languages (#24070)
Fix https://github.com/go-gitea/gitea/pull/24051#discussion_r1163697643
---------
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'templates/repo/issue')
-rw-r--r-- | templates/repo/issue/milestones.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/milestones.tmpl b/templates/repo/issue/milestones.tmpl index 2864d38a08..602461400b 100644 --- a/templates/repo/issue/milestones.tmpl +++ b/templates/repo/issue/milestones.tmpl @@ -88,7 +88,7 @@ {{svg "octicon-check" 16 "gt-mr-3"}} {{LocaleNumber .NumClosedIssues}} {{$.locale.Tr "repo.issues.closed_title"}} {{if .TotalTrackedTime}}{{svg "octicon-clock"}} {{.TotalTrackedTime|Sec2Time}}{{end}} - {{if .UpdatedUnix}}{{svg "octicon-clock"}} {{$.locale.Tr "repo.milestones.updated"}} {{TimeSinceUnix .UpdatedUnix $.locale}}{{end}} + {{if .UpdatedUnix}}{{svg "octicon-clock"}} {{$.locale.Tr "repo.milestones.update_ago" (TimeSinceUnix .UpdatedUnix $.locale) | Safe}}{{end}} </span> </div> {{if and (or $.CanWriteIssues $.CanWritePulls) (not $.Repository.IsArchived)}} |