summaryrefslogtreecommitdiffstats
path: root/templates/repo/bare.tmpl
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-08-31 21:03:16 +0800
committerUnknwon <joe2010xtmf@163.com>2014-08-31 21:03:16 +0800
commit676bd764fa602048c1a81d94943f45dcb1a75c76 (patch)
tree06a39da85956e3e5b946bfa48af4a3d500b6151c /templates/repo/bare.tmpl
parent7e36bf448db915250eb831a00b122fc1092df630 (diff)
downloadgitea-676bd764fa602048c1a81d94943f45dcb1a75c76.tar.gz
gitea-676bd764fa602048c1a81d94943f45dcb1a75c76.zip
UI: SSH/HTTPS address switch and copy
Diffstat (limited to 'templates/repo/bare.tmpl')
-rw-r--r--templates/repo/bare.tmpl18
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/repo/bare.tmpl b/templates/repo/bare.tmpl
index 5b943bad63..d53cd823b7 100644
--- a/templates/repo/bare.tmpl
+++ b/templates/repo/bare.tmpl
@@ -16,20 +16,20 @@
<div id="repo-bare-start" class="panel panel-radius">
<div class="panel-header">
<a class="btn btn-small btn-black btn-header btn-radius right" href="{{.RepoLink}}/settings">{{.i18n.Tr "repo.settings"}}</a>
- <strong>Quick Start</strong>
+ <strong>{{.i18n.Tr "repo.quick_guide"}}</strong>
</div>
<div class="panel-content">
<div id="repo-clone" class="clear text-center">
- <h2>Clone this repository</h2>
- <button id="repo-clone-ssh" class="btn btn-blue current left btn-left-radius">SSH</button>
- <button id="repo-clone-https" class="btn btn-gray left">HTTPS</button>
- <input id="repo-clone-url" type="text" class="ipt ipt-disabled left" value="{{.CloneLink.SSH}}" />
- <button id="repo-clone-copy" class="btn btn-black left btn-right-radius">Copy</button>
- <p class="text-center" id="repo-clone-help">Need help cloning? Visit <a href="#">Help</a>!</p>
+ <h2>{{.i18n.Tr "repo.clone_this_repo"}}</h2>
+ <button class="btn btn-blue current left btn-left-radius" id="repo-clone-ssh" data-link="{{.CloneLink.SSH}}">SSH</button>
+ <button class="btn btn-gray left" id="repo-clone-https" data-link="{{.CloneLink.HTTPS}}">HTTPS</button>
+ <input id="repo-clone-url" type="text" class="ipt ipt-disabled left" value="{{.CloneLink.SSH}}" readonly />
+ <button class="btn btn-black left btn-right-radius" id="repo-clone-copy" data-copy-val="val" data-copy-from="#repo-clone-url">{{.i18n.Tr "repo.copy_link"}}</button>
+ <p class="text-center" id="repo-clone-help">{{.i18n.Tr "repo.clone_helper" | Str2html}}</p>
<hr/>
</div>
<div id="repo-bare-cmd" class="text-center">
- <h2>Create a new repository on the command line</h2>
+ <h2>{{.i18n.Tr "repo.create_new_repo_command"}}</h2>
<pre class="text-left radius"><code>touch README.md
git init
git add README.md
@@ -40,7 +40,7 @@ git push -u origin master</code></pre>
<hr/>
</div>
<div id="repo-bare-remote" class="text-center">
- <h2>Push an existing repository from the command line</h2>
+ <h2>{{.i18n.Tr "repo.push_exist_repo"}}</h2>
<pre class="text-left radius"><code>git remote add origin <span class="clone-url">{{.CloneLink.SSH}}</span>
git push -u origin master</code></pre>
<br/>