Backport ctx locale refactoring manually (#27231) (#27259) (#27260)

Backport #27231 #27259 manually

---------

Co-authored-by: delvh <dev.lh@web.de>
This commit is contained in:
wxiaoguang
2023-09-25 21:15:51 +08:00
committed by GitHub
parent 2774a2afc6
commit 597b04fe2f
314 changed files with 3888 additions and 3889 deletions

View File

@@ -1,10 +1,10 @@
<h4 class="ui top attached header">
{{.locale.Tr "settings.manage_openid"}}
{{ctx.Locale.Tr "settings.manage_openid"}}
</h4>
<div class="ui attached segment">
<div class="flex-list">
<div class="flex-item">
{{.locale.Tr "settings.openid_desc"}}
{{ctx.Locale.Tr "settings.openid_desc"}}
</div>
{{range .OpenIDs}}
<div class="flex-item gt-ac">
@@ -21,17 +21,17 @@
{{if .Show}}
<button class="ui tiny button">
{{svg "octicon-eye" 16 "icon"}}
{{$.locale.Tr "settings.hide_openid"}}
{{ctx.Locale.Tr "settings.hide_openid"}}
</button>
{{else}}
<button class="ui tiny button">
{{svg "octicon-eye-closed" 16 "icon"}}
{{$.locale.Tr "settings.show_openid"}}
{{ctx.Locale.Tr "settings.show_openid"}}
</button>
{{end}}
</form>
<button class="ui red tiny button delete-button" data-modal-id="delete-openid" data-url="{{AppSubUrl}}/user/settings/security/openid/delete" data-id="{{.ID}}">
{{$.locale.Tr "settings.delete_key"}}
{{ctx.Locale.Tr "settings.delete_key"}}
</button>
</div>
</div>
@@ -42,21 +42,21 @@
<form class="ui form" action="{{AppSubUrl}}/user/settings/security/openid" method="post">
{{.CsrfTokenHtml}}
<div class="required field {{if .Err_OpenID}}error{{end}}">
<label for="openid">{{.locale.Tr "settings.add_new_openid"}}</label>
<label for="openid">{{ctx.Locale.Tr "settings.add_new_openid"}}</label>
<input id="openid" name="openid" type="text" required>
</div>
<button class="ui primary button">
{{.locale.Tr "settings.add_openid"}}
{{ctx.Locale.Tr "settings.add_openid"}}
</button>
</form>
<div class="ui g-modal-confirm delete modal" id="delete-openid">
<div class="header">
{{svg "octicon-trash"}}
{{.locale.Tr "settings.openid_deletion"}}
{{ctx.Locale.Tr "settings.openid_deletion"}}
</div>
<div class="content">
<p>{{.locale.Tr "settings.openid_deletion_desc"}}</p>
<p>{{ctx.Locale.Tr "settings.openid_deletion_desc"}}</p>
</div>
{{template "base/modal_actions_confirm" .}}
</div>