diff options
Diffstat (limited to 'templates/repo/settings/lfs.tmpl')
-rw-r--r-- | templates/repo/settings/lfs.tmpl | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/templates/repo/settings/lfs.tmpl b/templates/repo/settings/lfs.tmpl index e5b0edd03d..405fc624be 100644 --- a/templates/repo/settings/lfs.tmpl +++ b/templates/repo/settings/lfs.tmpl @@ -5,10 +5,10 @@ <div class="ui container"> {{template "base/alert" .}} <h4 class="ui top attached header"> - {{.i18n.Tr "repo.settings.lfs_filelist"}} ({{.i18n.Tr "admin.total" .Total}}) + {{.locale.Tr "repo.settings.lfs_filelist"}} ({{.locale.Tr "admin.total" .Total}}) <div class="ui right"> - <a class="ui tiny show-panel button" href="{{.Link}}/locks">{{.i18n.Tr "repo.settings.lfs_locks"}}</a> - <a class="ui primary tiny show-panel button" href="{{.Link}}/pointers"> {{.i18n.Tr "repo.settings.lfs_findpointerfiles"}}</a> + <a class="ui tiny show-panel button" href="{{.Link}}/locks">{{.locale.Tr "repo.settings.lfs_locks"}}</a> + <a class="ui primary tiny show-panel button" href="{{.Link}}/pointers"> {{.locale.Tr "repo.settings.lfs_findpointerfiles"}}</a> </div> </h4> <table id="lfs-files-table" class="ui attached segment single line table"> @@ -23,17 +23,17 @@ </span> </td> <td>{{FileSize .Size}}</td> - <td>{{TimeSince .CreatedUnix.AsTime $.i18n}}</td> + <td>{{TimeSince .CreatedUnix.AsTime $.locale}}</td> <td class="right aligned"> - <a class="ui primary show-panel button" href="{{$.Link}}/find?oid={{.Oid}}&size={{.Size}}">{{$.i18n.Tr "repo.settings.lfs_findcommits"}}</a> + <a class="ui primary show-panel button" href="{{$.Link}}/find?oid={{.Oid}}&size={{.Size}}">{{$.locale.Tr "repo.settings.lfs_findcommits"}}</a> <button class="ui basic show-modal icon button" data-modal="#delete-{{.Oid}}"> - <span class="btn-octicon btn-octicon-danger tooltip" data-content="{{$.i18n.Tr "repo.editor.delete_this_file"}}" data-position="bottom center">{{svg "octicon-trash"}}</span> + <span class="btn-octicon btn-octicon-danger tooltip" data-content="{{$.locale.Tr "repo.editor.delete_this_file"}}" data-position="bottom center">{{svg "octicon-trash"}}</span> </button> </td> </tr> {{else}} <tr> - <td colspan="4">{{.i18n.Tr "repo.settings.lfs_no_lfs_files"}}</td> + <td colspan="4">{{.locale.Tr "repo.settings.lfs_no_lfs_files"}}</td> </tr> {{end}} </tbody> @@ -42,17 +42,17 @@ {{range .LFSFiles}} <div class="ui basic modal" id="delete-{{.Oid}}"> <div class="ui icon header"> - {{$.i18n.Tr "repo.settings.lfs_delete" .Oid}} + {{$.locale.Tr "repo.settings.lfs_delete" .Oid}} </div> <div class="content center"> <p> - {{$.i18n.Tr "repo.settings.lfs_delete_warning"}} + {{$.locale.Tr "repo.settings.lfs_delete_warning"}} </p> <form class="ui form" action="{{$.Link}}/delete/{{.Oid}}" method="post"> {{$.CsrfTokenHtml}} <div class="center actions"> - <div class="ui basic cancel inverted button">{{$.i18n.Tr "settings.cancel"}}</div> - <button class="ui basic inverted yellow button">{{$.i18n.Tr "modal.yes"}}</button> + <div class="ui basic cancel inverted button">{{$.locale.Tr "settings.cancel"}}</div> + <button class="ui basic inverted yellow button">{{$.locale.Tr "modal.yes"}}</button> </div> </form> </div> |