diff --git a/rhodecode/lib/diffs.py b/rhodecode/lib/diffs.py
--- a/rhodecode/lib/diffs.py
+++ b/rhodecode/lib/diffs.py
@@ -49,11 +49,11 @@ class OPS(object):
def wrap_to_table(str_):
return '''
''' % str_
+ ''' % (_('Click to comment'), str_)
def wrapped_diff(filenode_old, filenode_new, diff_limit=None, file_limit=None,
@@ -626,7 +626,9 @@ class DiffProcessor(object):
"""
if condition:
- return '''%(label)s''' % {
+ return '''%(label)s''' % {
+ 'title': _('Click to select line'),
'url': url,
'label': label
}