diff --git a/rhodecode/templates/admin/repos/repos.html b/rhodecode/templates/admin/repos/repos.html
--- a/rhodecode/templates/admin/repos/repos.html
+++ b/rhodecode/templates/admin/repos/repos.html
@@ -19,7 +19,7 @@
${self.breadcrumbs()}
-
- ${h.link_to(u'ADD NEW REPOSITORY',h.url('new_repo'))}
+ ${h.link_to(_(u'ADD NEW REPOSITORY'),h.url('new_repo'))}
@@ -76,7 +76,7 @@
${h.person(repo['contact'])} |
${h.form(url('repo', repo_name=repo['name']),method='delete')}
- ${h.submit('remove_%s' % repo['name'],'delete',class_="delete_icon action_button",onclick="return confirm('Confirm to delete this repository');")}
+ ${h.submit('remove_%s' % repo['name'],_('delete'),class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this repository')+"');")}
${h.end_form()}
|