diff options
author | delvh <dev.lh@web.de> | 2023-09-25 10:56:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 08:56:50 +0000 |
commit | 7960ba7e2bbe2eb6f98f6d99f2ce105468cdf56e (patch) | |
tree | cfcc4836ba1bb71518742f2aaf980f1f34248468 /templates/home.tmpl | |
parent | e6d8b146207de0f5d88b7c08dc75b1f2f078cbbe (diff) | |
download | gitea-7960ba7e2bbe2eb6f98f6d99f2ce105468cdf56e.tar.gz gitea-7960ba7e2bbe2eb6f98f6d99f2ce105468cdf56e.zip |
Always use `ctx.Locale.Tr` inside templates (#27231)
Diffstat (limited to 'templates/home.tmpl')
-rw-r--r-- | templates/home.tmpl | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/templates/home.tmpl b/templates/home.tmpl index 1f10f3c8d2..0d9b948071 100644 --- a/templates/home.tmpl +++ b/templates/home.tmpl @@ -1,49 +1,49 @@ {{template "base/head" .}} -<div role="main" aria-label="{{if .IsSigned}}{{.locale.Tr "dashboard"}}{{else}}{{.locale.Tr "home"}}{{end}}" class="page-content home"> +<div role="main" aria-label="{{if .IsSigned}}{{ctx.Locale.Tr "dashboard"}}{{else}}{{.locale.Tr "home"}}{{end}}" class="page-content home"> <div class="gt-mb-5 gt-px-5"> <div class="center"> - <img class="logo" width="220" height="220" src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{.locale.Tr "logo"}}"> + <img class="logo" width="220" height="220" src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{ctx.Locale.Tr "logo"}}"> <div class="hero"> <h1 class="ui icon header title"> {{AppName}} </h1> - <h2>{{.locale.Tr "startpage.app_desc"}}</h2> + <h2>{{ctx.Locale.Tr "startpage.app_desc"}}</h2> </div> </div> </div> <div class="ui stackable middle very relaxed page grid"> <div class="eight wide center column"> <h1 class="hero ui icon header"> - {{svg "octicon-flame"}} {{.locale.Tr "startpage.install"}} + {{svg "octicon-flame"}} {{ctx.Locale.Tr "startpage.install"}} </h1> <p class="large"> - {{.locale.Tr "startpage.install_desc" | Str2html}} + {{ctx.Locale.Tr "startpage.install_desc" | Str2html}} </p> </div> <div class="eight wide center column"> <h1 class="hero ui icon header"> - {{svg "octicon-device-desktop"}} {{.locale.Tr "startpage.platform"}} + {{svg "octicon-device-desktop"}} {{ctx.Locale.Tr "startpage.platform"}} </h1> <p class="large"> - {{.locale.Tr "startpage.platform_desc" | Str2html}} + {{ctx.Locale.Tr "startpage.platform_desc" | Str2html}} </p> </div> </div> <div class="ui stackable middle very relaxed page grid"> <div class="eight wide center column"> <h1 class="hero ui icon header"> - {{svg "octicon-rocket"}} {{.locale.Tr "startpage.lightweight"}} + {{svg "octicon-rocket"}} {{ctx.Locale.Tr "startpage.lightweight"}} </h1> <p class="large"> - {{.locale.Tr "startpage.lightweight_desc" | Str2html}} + {{ctx.Locale.Tr "startpage.lightweight_desc" | Str2html}} </p> </div> <div class="eight wide center column"> <h1 class="hero ui icon header"> - {{svg "octicon-code"}} {{.locale.Tr "startpage.license"}} + {{svg "octicon-code"}} {{ctx.Locale.Tr "startpage.license"}} </h1> <p class="large"> - {{.locale.Tr "startpage.license_desc" | Str2html}} + {{ctx.Locale.Tr "startpage.license_desc" | Str2html}} </p> </div> </div> |