##// END OF EJS Templates
i18n: updated translation for Polish...
i18n: updated translation for Polish Currently translated at 56.5% (614 of 1087 strings)

File last commit:

r6612:88ce09da default
r8092:7fef5132 default
Show More
files_ypjax.html
26 lines | 955 B | text/html | HtmlLexer
%if c.file:
<h3 class="files_location">
${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.changeset.raw_id,c.file.path)}
%if c.annotate:
- ${_('annotation')}
%endif
%if c.file.is_dir():
% if h.HasRepoPermissionLevel('write')(c.repo_name):
/ <span title="${_('Add New File')}">
<a href="${h.url('files_add_home',repo_name=c.repo_name,revision=c.changeset.raw_id,f_path=c.f_path, anchor='edit')}">
<i class="icon-plus-circled"></i></a>
</span>
% endif
%endif
</h3>
%if c.file.is_dir():
<%include file='files_browser.html'/>
%else:
<%include file='files_source.html'/>
%endif
%else:
<h2>
<a href="#" onClick="javascript:parent.history.back();" target="main">${_('Go Back')}</a>
${_('No files at given path')}: "${c.f_path or "/"}"
</h2>
%endif