comparison rhodecode/templates/base/root.html @ 3950:1226fdf24f8a beta

fixed typo remoke -> revoke
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 05 Jun 2013 19:55:35 +0200
parents 7e3d89d9d3a2
children ca30c9924023
comparison
equal deleted inserted replaced
3949:3301fb05b494 3950:1226fdf24f8a
1 ## -*- coding: utf-8 -*- 1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html> 2 <!DOCTYPE html>
3
3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head> 5 <head>
5 <title>${self.title()}</title> 6 <title>${self.title()}</title>
6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> 7 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 <meta name="robots" content="index, nofollow"/> 8 <meta name="robots" content="index, nofollow"/>
13 <link rel="stylesheet" type="text/css" href="${h.url('/css/pygments.css', ver=c.rhodecode_version)}"/> 14 <link rel="stylesheet" type="text/css" href="${h.url('/css/pygments.css', ver=c.rhodecode_version)}"/>
14 <link rel="stylesheet" type="text/css" href="${h.url('/css/contextbar.css', ver=c.rhodecode_version)}"/> 15 <link rel="stylesheet" type="text/css" href="${h.url('/css/contextbar.css', ver=c.rhodecode_version)}"/>
15 ## EXTRA FOR CSS 16 ## EXTRA FOR CSS
16 ${self.css_extra()} 17 ${self.css_extra()}
17 </%def> 18 </%def>
18 <%def name="css_extra()"> 19
19 </%def> 20 <%def name="css_extra()"></%def>
20 21
21 ${self.css()} 22 ${self.css()}
22 23
23 %if c.ga_code: 24 %if c.ga_code:
24 <!-- Analytics --> 25 <!-- Analytics -->
53 'Show selected changesets __S -> __E': "${_('Show selected changesets __S -> __E')}", 54 'Show selected changesets __S -> __E': "${_('Show selected changesets __S -> __E')}",
54 'Show selected changeset __S': "${_('Show selected changeset __S')}", 55 'Show selected changeset __S': "${_('Show selected changeset __S')}",
55 'Selection link': "${_('Selection link')}", 56 'Selection link': "${_('Selection link')}",
56 'Collapse diff': "${_('Collapse diff')}", 57 'Collapse diff': "${_('Collapse diff')}",
57 'Expand diff': "${_('Expand diff')}", 58 'Expand diff': "${_('Expand diff')}",
58 'Failed to remoke permission': "${_('Failed to remoke permission')}" 59 'Failed to revoke permission': "${_('Failed to revoke permission')}"
59 }; 60 };
60 var _TM = TRANSLATION_MAP; 61 var _TM = TRANSLATION_MAP;
61 62
62 var TOGGLE_FOLLOW_URL = "${h.url('toggle_following')}"; 63 var TOGGLE_FOLLOW_URL = "${h.url('toggle_following')}";
63 64