diff options
Diffstat (limited to 'templates/repo/empty.tmpl')
-rw-r--r-- | templates/repo/empty.tmpl | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/templates/repo/empty.tmpl b/templates/repo/empty.tmpl index b2476cfea8..c5535742c4 100644 --- a/templates/repo/empty.tmpl +++ b/templates/repo/empty.tmpl @@ -8,32 +8,32 @@ {{if .Repository.IsArchived}} <div class="ui warning message gt-text-center"> {{if .Repository.ArchivedUnix.IsZero}} - {{.locale.Tr "repo.archive.title"}} + {{ctx.Locale.Tr "repo.archive.title"}} {{else}} - {{.locale.Tr "repo.archive.title_date" (DateTime "long" .Repository.ArchivedUnix) | Safe}} + {{ctx.Locale.Tr "repo.archive.title_date" (DateTime "long" .Repository.ArchivedUnix) | Safe}} {{end}} </div> {{end}} {{if .Repository.IsBroken}} <div class="ui segment center"> - {{.locale.Tr "repo.broken_message"}} + {{ctx.Locale.Tr "repo.broken_message"}} </div> {{else if .CanWriteCode}} <h4 class="ui top attached header"> - {{.locale.Tr "repo.quick_guide"}} + {{ctx.Locale.Tr "repo.quick_guide"}} </h4> <div class="ui attached guide table segment empty-repo-guide"> <div class="item"> - <h3>{{.locale.Tr "repo.clone_this_repo"}} <small>{{.locale.Tr "repo.clone_helper" "http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository" | Str2html}}</small></h3> + <h3>{{ctx.Locale.Tr "repo.clone_this_repo"}} <small>{{.locale.Tr "repo.clone_helper" "http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository" | Str2html}}</small></h3> <div class="repo-button-row"> {{if and .CanWriteCode (not .Repository.IsArchived)}} <a class="ui small button" href="{{.RepoLink}}/_new/{{.BranchName | PathEscapeSegments}}/"> - {{.locale.Tr "repo.editor.new_file"}} + {{ctx.Locale.Tr "repo.editor.new_file"}} </a> {{if .RepositoryUploadEnabled}} <a class="ui small button" href="{{.RepoLink}}/_upload/{{.BranchName | PathEscapeSegments}}/"> - {{.locale.Tr "repo.editor.upload_file"}} + {{ctx.Locale.Tr "repo.editor.upload_file"}} </a> {{end}} {{end}} @@ -47,7 +47,7 @@ <div class="divider gt-my-0"></div> <div class="item"> - <h3>{{.locale.Tr "repo.create_new_repo_command"}}</h3> + <h3>{{ctx.Locale.Tr "repo.create_new_repo_command"}}</h3> <div class="markup"> <pre><code>touch README.md git init @@ -61,7 +61,7 @@ git push -u origin {{.Repository.DefaultBranch}}</code></pre> <div class="divider"></div> <div class="item"> - <h3>{{.locale.Tr "repo.push_exist_repo"}}</h3> + <h3>{{ctx.Locale.Tr "repo.push_exist_repo"}}</h3> <div class="markup"> <pre><code>git remote add origin <span class="js-clone-url">{{$.CloneButtonOriginLink.HTTPS}}</span> git push -u origin {{.Repository.DefaultBranch}}</code></pre> @@ -70,7 +70,7 @@ git push -u origin {{.Repository.DefaultBranch}}</code></pre> {{end}} {{else}} <div class="ui segment center"> - {{.locale.Tr "repo.empty_message"}} + {{ctx.Locale.Tr "repo.empty_message"}} </div> {{end}} {{template "repo/clone_script" .}} |