more translations, thanks Vladyslav

This commit is contained in:
mdipierro
2013-09-26 21:26:55 -05:00
parent fcba1650a0
commit 4292cf38d9
16 changed files with 88 additions and 49 deletions
+10 -11
View File
@@ -1,29 +1,28 @@
{{extend 'layout.html'}}
{{import time}}
<h2>Mercurial Version Control System Interface<br />
for application "{{=request.args[0]}}"</h2>
<h2>{{=T.M("Mercurial Version Control System Interface[[NEWLINE]]for application '%s'", request.args[0])}}</h2>
<h3>Commit form</h3>
<h3>{{=T('Commit form')}}</h3>
{{=form}}
{{if repo['.'].rev()>=0:}}
<h3>Last Revision</h3>
<h3>{{=T('Last Revision')}}</h3>
<table>
<tr><td>Revision:</td><td>{{=repo['.'].rev()}}</td></tr>
<tr><td>Node:</td><td>{{=repo['.']}}</td></tr>
<tr><td>Created by:</td><td>{{=repo['.'].user()}}</td></tr>
<tr><td>Created on:</td><td>{{=time.ctime(repo['.'].date()[0])}}</td></tr>
<tr><td>Description:</td><td>{{=repo['.'].description()}}</td></tr>
<tr><td>{{=T('Revision:')}}</td><td>{{=repo['.'].rev()}}</td></tr>
<tr><td>{{=T('Node:')}}</td><td>{{=repo['.']}}</td></tr>
<tr><td>{{=T('Created by:')}}</td><td>{{=repo['.'].user()}}</td></tr>
<tr><td>{{=T('Created on:')}}</td><td>{{=time.ctime(repo['.'].date()[0])}}</td></tr>
<tr><td>{{=T('Description:')}}</td><td>{{=repo['.'].description()}}</td></tr>
</table>
<h3>Past revisions</h3>
<h3>{{=T('Past revisions')}}</h3>
<div class="changes">
{{=changes}}
</div>
{{if files:}}
<h3>Committed files</h3>
<h3>{{=T('Committed files')}}</h3>
<div class="files">
{{=files}}
</div>