changeset 2492:79818f546538 beta

i18n 'Home' in breadcrumbs
author Takumi IINO <trot.thunder@gmail.com>
date Wed, 20 Jun 2012 11:56:14 +0000
parents 9fad28af93bd
children a93db48c75f5
files rhodecode/templates/bookmarks/bookmarks.html rhodecode/templates/branches/branches.html rhodecode/templates/changelog/changelog.html rhodecode/templates/changeset/changeset.html rhodecode/templates/changeset/changeset_range.html rhodecode/templates/compare/compare_diff.html rhodecode/templates/files/file_diff.html rhodecode/templates/files/files.html rhodecode/templates/files/files_add.html rhodecode/templates/files/files_edit.html rhodecode/templates/followers/followers.html rhodecode/templates/forks/fork.html rhodecode/templates/forks/forks.html rhodecode/templates/pullrequests/pullrequest.html rhodecode/templates/pullrequests/pullrequest_show.html rhodecode/templates/pullrequests/pullrequest_show_all.html rhodecode/templates/settings/repo_settings.html rhodecode/templates/shortlog/shortlog.html rhodecode/templates/summary/summary.html rhodecode/templates/tags/tags.html
diffstat 20 files changed, 20 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/templates/bookmarks/bookmarks.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/bookmarks/bookmarks.html	Wed Jun 20 11:56:14 2012 +0000
@@ -8,7 +8,7 @@
 
 <%def name="breadcrumbs_links()">
     <input class="q_filter_box" id="q_filter_bookmarks" size="15" type="text" name="filter" value="${_('quick filter...')}"/>
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/branches/branches.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/branches/branches.html	Wed Jun 20 11:56:14 2012 +0000
@@ -7,7 +7,7 @@
 
 <%def name="breadcrumbs_links()">
     <input class="q_filter_box" id="q_filter_branches" size="15" type="text" name="filter" value="${_('quick filter...')}"/>
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/changelog/changelog.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/changelog/changelog.html	Wed Jun 20 11:56:14 2012 +0000
@@ -7,7 +7,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/changeset/changeset.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/changeset/changeset.html	Wed Jun 20 11:56:14 2012 +0000
@@ -7,7 +7,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/changeset/changeset_range.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/changeset/changeset_range.html	Wed Jun 20 11:56:14 2012 +0000
@@ -6,7 +6,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/compare/compare_diff.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/compare/compare_diff.html	Wed Jun 20 11:56:14 2012 +0000
@@ -6,7 +6,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/files/file_diff.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/files/file_diff.html	Wed Jun 20 11:56:14 2012 +0000
@@ -5,7 +5,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/files/files.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/files/files.html	Wed Jun 20 11:56:14 2012 +0000
@@ -5,7 +5,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('files_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/files/files_add.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/files/files_add.html	Wed Jun 20 11:56:14 2012 +0000
@@ -12,7 +12,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/files/files_edit.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/files/files_edit.html	Wed Jun 20 11:56:14 2012 +0000
@@ -12,7 +12,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/followers/followers.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/followers/followers.html	Wed Jun 20 11:56:14 2012 +0000
@@ -6,7 +6,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/forks/fork.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/forks/fork.html	Wed Jun 20 11:56:14 2012 +0000
@@ -6,7 +6,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))}
     &raquo;
--- a/rhodecode/templates/forks/forks.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/forks/forks.html	Wed Jun 20 11:56:14 2012 +0000
@@ -6,7 +6,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/pullrequests/pullrequest.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/pullrequests/pullrequest.html	Wed Jun 20 11:56:14 2012 +0000
@@ -5,7 +5,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('changelog_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/pullrequests/pullrequest_show.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/pullrequests/pullrequest_show.html	Wed Jun 20 11:56:14 2012 +0000
@@ -5,7 +5,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('changelog_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/pullrequests/pullrequest_show_all.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/pullrequests/pullrequest_show_all.html	Wed Jun 20 11:56:14 2012 +0000
@@ -5,7 +5,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('changelog_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/settings/repo_settings.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/settings/repo_settings.html	Wed Jun 20 11:56:14 2012 +0000
@@ -6,7 +6,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))}
     &raquo;
--- a/rhodecode/templates/shortlog/shortlog.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/shortlog/shortlog.html	Wed Jun 20 11:56:14 2012 +0000
@@ -7,7 +7,7 @@
 
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/summary/summary.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/summary/summary.html	Wed Jun 20 11:56:14 2012 +0000
@@ -5,7 +5,7 @@
 </%def>
 
 <%def name="breadcrumbs_links()">
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.dbrepo.just_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;
--- a/rhodecode/templates/tags/tags.html	Wed Jun 20 00:06:00 2012 +0200
+++ b/rhodecode/templates/tags/tags.html	Wed Jun 20 11:56:14 2012 +0000
@@ -8,7 +8,7 @@
 
 <%def name="breadcrumbs_links()">
     <input class="q_filter_box" id="q_filter_tags" size="15" type="text" name="filter" value="${_('quick filter...')}"/>
-    ${h.link_to(u'Home',h.url('/'))}
+    ${h.link_to(_(u'Home'),h.url('/'))}
     &raquo;
     ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
     &raquo;