comparison rhodecode/templates/changelog/changelog.html @ 2312:f6d57d055d1e beta

Improved i18n on changelog and user group administration pages.
author Vincent Duvert <vincent@duvert.net>
date Sun, 20 May 2012 11:27:10 +0200
parents f1467dfcf093
children d3f1b71099ab a15e0ddeed7f
comparison
equal deleted inserted replaced
2311:0351961b16b2 2312:f6d57d055d1e
9 <%def name="breadcrumbs_links()"> 9 <%def name="breadcrumbs_links()">
10 ${h.link_to(u'Home',h.url('/'))} 10 ${h.link_to(u'Home',h.url('/'))}
11 &raquo; 11 &raquo;
12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} 12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
13 &raquo; 13 &raquo;
14 ${_('Changelog')} - ${_('showing ')} ${c.size if c.size <= c.total_cs else c.total_cs} ${_('out of')} ${c.total_cs} ${_('revisions')} 14 <% size = c.size if c.size <= c.total_cs else c.total_cs %>
15 ${_('Changelog')} - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)}
15 </%def> 16 </%def>
16 17
17 <%def name="page_nav()"> 18 <%def name="page_nav()">
18 ${self.menu('changelog')} 19 ${self.menu('changelog')}
19 </%def> 20 </%def>