diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2023-05-01 09:17:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-01 09:17:27 +0200 |
commit | 00d998a51349672087016295eab00a016ed8683d (patch) | |
tree | cede287bafd44e5b250f673a0d66fa09a3fdf9e8 /templates/package/shared/list.tmpl | |
parent | 8d33ce08b1c09094679a6aa45af9cc6df92ee102 (diff) | |
download | gitea-00d998a51349672087016295eab00a016ed8683d.tar.gz gitea-00d998a51349672087016295eab00a016ed8683d.zip |
Move links out of translation (#24446)
Addition to
https://github.com/go-gitea/gitea/pull/24426#discussion_r1181261215
I updated all existing translations too because otherwise they would
show something like
> For more information on the Container registry, see [the
documentation](#).%!(EXTRA
string=https://docs.gitea.io/en-us/packages/container/)
---------
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'templates/package/shared/list.tmpl')
-rw-r--r-- | templates/package/shared/list.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/package/shared/list.tmpl b/templates/package/shared/list.tmpl index 2b6398fcd6..707fbe357f 100644 --- a/templates/package/shared/list.tmpl +++ b/templates/package/shared/list.tmpl @@ -44,7 +44,7 @@ {{$packagesUrl := URLJoin .Owner.HomeLink "-" "packages"}} <p>{{.locale.Tr "packages.empty.repo" $packagesUrl | Safe}}</p> {{end}} - <p>{{.locale.Tr "packages.empty.documentation" | Safe}}</p> + <p>{{.locale.Tr "packages.empty.documentation" "https://docs.gitea.io/en-us/usage/packages/overview/" | Safe}}</p> </div> {{else}} <p>{{.locale.Tr "packages.filter.no_result"}}</p> |