diff options
author | Gusted <williamzijl7@hotmail.com> | 2022-06-27 22:58:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 15:58:46 -0500 |
commit | d55a0b723809f5b94acd948b924c8518014445e0 (patch) | |
tree | 0ef9ea54f30769ca1d16ce20e551bd7a078f7f5e /templates/base/paginate.tmpl | |
parent | b551bc2a089d3310dde5706d1b9702f112fe3ea0 (diff) | |
download | gitea-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/base/paginate.tmpl')
-rw-r--r-- | templates/base/paginate.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/base/paginate.tmpl b/templates/base/paginate.tmpl index a9ed8f12ef..ebca1b2be4 100644 --- a/templates/base/paginate.tmpl +++ b/templates/base/paginate.tmpl @@ -5,11 +5,11 @@ <div class="ui borderless pagination menu"> <a class="{{if .IsFirst}}disabled{{end}} item navigation" {{if not .IsFirst}}href="{{$.Link}}{{if $paginationLink}}?{{$paginationLink}}{{end}}"{{end}}> {{svg "gitea-double-chevron-left" 16 "mr-2"}} - <span class="navigation_label">{{$.i18n.Tr "admin.first_page"}}</span> + <span class="navigation_label">{{$.locale.Tr "admin.first_page"}}</span> </a> <a class="{{if not .HasPrevious}}disabled{{end}} item navigation" {{if .HasPrevious}}href="{{$.Link}}?page={{.Previous}}{{if $paginationLink}}&{{$paginationLink}}{{end}}"{{end}}> {{svg "octicon-chevron-left" 16 "mr-2"}} - <span class="navigation_label">{{$.i18n.Tr "repo.issues.previous"}}</span> + <span class="navigation_label">{{$.locale.Tr "repo.issues.previous"}}</span> </a> {{range .Pages}} {{if eq .Num -1}} @@ -19,11 +19,11 @@ {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item navigation" {{if .HasNext}}href="{{$.Link}}?page={{.Next}}{{if $paginationLink}}&{{$paginationLink}}{{end}}"{{end}}> - <span class="navigation_label">{{$.i18n.Tr "repo.issues.next"}}</span> + <span class="navigation_label">{{$.locale.Tr "repo.issues.next"}}</span> {{svg "octicon-chevron-right" 16 "ml-2"}} </a> <a class="{{if .IsLast}}disabled{{end}} item navigation" {{if not .IsLast}}href="{{$.Link}}?page={{.TotalPages}}{{if $paginationLink}}&{{$paginationLink}}{{end}}"{{end}}> - <span class="navigation_label">{{$.i18n.Tr "admin.last_page"}}</span> + <span class="navigation_label">{{$.locale.Tr "admin.last_page"}}</span> {{svg "gitea-double-chevron-right" 16 "ml-2"}} </a> </div> |