+
RhodeCode
${c.error_message}
${c.error_explanation}
+
%if c.redirect_time:
${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}
%endif
diff --git a/rhodecode/templates/files/file_diff.html b/rhodecode/templates/files/file_diff.html
--- a/rhodecode/templates/files/file_diff.html
+++ b/rhodecode/templates/files/file_diff.html
@@ -1,8 +1,9 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('Repository management')}
+ ${c.repo_name} ${_('File diff')} - ${c.rhodecode_name}
%def>
+
<%def name="breadcrumbs_links()">
${h.link_to(u'Home',h.url('/'))}
»
diff --git a/rhodecode/templates/files/files.html b/rhodecode/templates/files/files.html
--- a/rhodecode/templates/files/files.html
+++ b/rhodecode/templates/files/files.html
@@ -1,7 +1,7 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('files')}
+ ${c.repo_name} ${_('Files')} - ${c.rhodecode_name}
%def>
<%def name="breadcrumbs_links()">
diff --git a/rhodecode/templates/files/files_annotate.html b/rhodecode/templates/files/files_annotate.html
--- a/rhodecode/templates/files/files_annotate.html
+++ b/rhodecode/templates/files/files_annotate.html
@@ -1,7 +1,7 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('File annotate')}
+ ${c.repo_name} ${_('File annotate')} - ${c.rhodecode_name}
%def>
<%def name="breadcrumbs_links()">
diff --git a/rhodecode/templates/index.html b/rhodecode/templates/index.html
--- a/rhodecode/templates/index.html
+++ b/rhodecode/templates/index.html
@@ -1,7 +1,7 @@
## -*- coding: utf-8 -*-
<%inherit file="base/base.html"/>
<%def name="title()">
- ${c.rhodecode_name}
+ ${_('Dashboard')} - ${c.rhodecode_name}
%def>
<%def name="breadcrumbs()">
${c.rhodecode_name}
diff --git a/rhodecode/templates/login.html b/rhodecode/templates/login.html
--- a/rhodecode/templates/login.html
+++ b/rhodecode/templates/login.html
@@ -2,7 +2,7 @@
-
${_('Sign In to rhodecode')}
+
${_('Sign In')} - ${c.rhodecode_name}
diff --git a/rhodecode/templates/password_reset.html b/rhodecode/templates/password_reset.html
--- a/rhodecode/templates/password_reset.html
+++ b/rhodecode/templates/password_reset.html
@@ -2,7 +2,7 @@
-
${_('Reset You password to rhodecode')}
+
${_('Reset You password')} - ${c.rhodecode_name}
diff --git a/rhodecode/templates/register.html b/rhodecode/templates/register.html
--- a/rhodecode/templates/register.html
+++ b/rhodecode/templates/register.html
@@ -2,7 +2,7 @@
-
${_('Sign Up to rhodecode')}
+
${_('Sign Up')} - ${c.rhodecode_name}
diff --git a/rhodecode/templates/search/search.html b/rhodecode/templates/search/search.html
--- a/rhodecode/templates/search/search.html
+++ b/rhodecode/templates/search/search.html
@@ -1,13 +1,14 @@
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('Search')}
+ ${_('Search')}
+ ${'"%s"' % c.cur_query if c.cur_query else None}
%if c.repo_name:
${_('in repository: ') + c.repo_name}
%else:
${_('in all repositories')}
%endif
- :${c.cur_query}
+ - ${c.rhodecode_name}
%def>
<%def name="breadcrumbs()">
${c.rhodecode_name}
diff --git a/rhodecode/templates/settings/repo_fork.html b/rhodecode/templates/settings/repo_fork.html
--- a/rhodecode/templates/settings/repo_fork.html
+++ b/rhodecode/templates/settings/repo_fork.html
@@ -2,7 +2,7 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('Fork repository')} ${c.repo_info.repo_name}
+ ${c.repo_name} ${_('Fork')} - ${c.rhodecode_name}
%def>
<%def name="breadcrumbs_links()">
diff --git a/rhodecode/templates/settings/repo_settings.html b/rhodecode/templates/settings/repo_settings.html
--- a/rhodecode/templates/settings/repo_settings.html
+++ b/rhodecode/templates/settings/repo_settings.html
@@ -2,7 +2,7 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('Repository settings')}
+ ${c.repo_name} ${_('Settings')} - ${c.rhodecode_name}
%def>
<%def name="breadcrumbs_links()">
diff --git a/rhodecode/templates/shortlog/shortlog.html b/rhodecode/templates/shortlog/shortlog.html
--- a/rhodecode/templates/shortlog/shortlog.html
+++ b/rhodecode/templates/shortlog/shortlog.html
@@ -2,7 +2,7 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('Shortlog')}
+ ${c.repo_name} ${_('Shortlog')} - ${c.rhodecode_name}
%def>
diff --git a/rhodecode/templates/summary/summary.html b/rhodecode/templates/summary/summary.html
--- a/rhodecode/templates/summary/summary.html
+++ b/rhodecode/templates/summary/summary.html
@@ -1,7 +1,7 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('Mercurial Repository Overview')}
+ ${c.repo_name} ${_('Summary')} - ${c.rhodecode_name}
%def>
<%def name="breadcrumbs_links()">
diff --git a/rhodecode/templates/tags/tags.html b/rhodecode/templates/tags/tags.html
--- a/rhodecode/templates/tags/tags.html
+++ b/rhodecode/templates/tags/tags.html
@@ -2,7 +2,7 @@
<%inherit file="/base/base.html"/>
<%def name="title()">
- ${_('Administration')}
+ ${c.repo_name} ${_('Tags')} - ${c.rhodecode_name}
%def>