summaryrefslogtreecommitdiffstats
path: root/templates/home.tmpl
diff options
context:
space:
mode:
authorGusted <williamzijl7@hotmail.com>2022-06-27 22:58:46 +0200
committerGitHub <noreply@github.com>2022-06-27 15:58:46 -0500
commitd55a0b723809f5b94acd948b924c8518014445e0 (patch)
tree0ef9ea54f30769ca1d16ce20e551bd7a078f7f5e /templates/home.tmpl
parentb551bc2a089d3310dde5706d1b9702f112fe3ea0 (diff)
downloadgitea-d55a0b723809f5b94acd948b924c8518014445e0.tar.gz
gitea-d55a0b723809f5b94acd948b924c8518014445e0.zip
Refactor `i18n` to `locale` (#20153)
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
Diffstat (limited to 'templates/home.tmpl')
-rw-r--r--templates/home.tmpl18
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/home.tmpl b/templates/home.tmpl
index 2d07f659e7..7667db27a1 100644
--- a/templates/home.tmpl
+++ b/templates/home.tmpl
@@ -9,43 +9,43 @@
<h1 class="ui icon header title">
{{AppName}}
</h1>
- <h2>{{.i18n.Tr "startpage.app_desc"}}</h2>
+ <h2>{{.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"}} {{.i18n.Tr "startpage.install"}}
+ {{svg "octicon-flame"}} {{.locale.Tr "startpage.install"}}
</h1>
<p class="large">
- {{.i18n.Tr "startpage.install_desc" | Str2html}}
+ {{.locale.Tr "startpage.install_desc" | Str2html}}
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
- {{svg "octicon-device-desktop"}} {{.i18n.Tr "startpage.platform"}}
+ {{svg "octicon-device-desktop"}} {{.locale.Tr "startpage.platform"}}
</h1>
<p class="large">
- {{.i18n.Tr "startpage.platform_desc" | Str2html}}
+ {{.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"}} {{.i18n.Tr "startpage.lightweight"}}
+ {{svg "octicon-rocket"}} {{.locale.Tr "startpage.lightweight"}}
</h1>
<p class="large">
- {{.i18n.Tr "startpage.lightweight_desc" | Str2html}}
+ {{.locale.Tr "startpage.lightweight_desc" | Str2html}}
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
- {{svg "octicon-code"}} {{.i18n.Tr "startpage.license"}}
+ {{svg "octicon-code"}} {{.locale.Tr "startpage.license"}}
</h1>
<p class="large">
- {{.i18n.Tr "startpage.license_desc" | Str2html}}
+ {{.locale.Tr "startpage.license_desc" | Str2html}}
</p>
</div>
</div>