diff --git a/rhodecode/templates/users/user.mako b/rhodecode/templates/users/user.mako --- a/rhodecode/templates/users/user.mako +++ b/rhodecode/templates/users/user.mako @@ -1,14 +1,14 @@ <%inherit file="/base/base.mako"/> <%def name="title()"> - ${c.user.username} + ${_('User')}: ${c.user.username} %if c.rhodecode_name: · ${h.branding(c.rhodecode_name)} %endif <%def name="breadcrumbs_links()"> - ${c.user.username} + ${_('User')}: ${c.user.username} <%def name="menu_bar_nav()"> diff --git a/rhodecode/templates/users/user_profile.mako b/rhodecode/templates/users/user_profile.mako --- a/rhodecode/templates/users/user_profile.mako +++ b/rhodecode/templates/users/user_profile.mako @@ -2,7 +2,7 @@
-

${_('Profile')}

+

${_('User Profile')}

%if h.HasPermissionAny('hg.admin')(): ${h.link_to(_('Edit'), h.route_path('user_edit', user_id=c.user.user_id), class_='panel-edit')} %endif