diff --git a/rhodecode/templates/changeset/changeset_file_comment.html b/rhodecode/templates/changeset/changeset_file_comment.html --- a/rhodecode/templates/changeset/changeset_file_comment.html +++ b/rhodecode/templates/changeset/changeset_file_comment.html @@ -42,10 +42,10 @@
${_('Submitting...')}
${h.form(h.url('changeset_comment', repo_name=c.repo_name, revision=changeset.raw_id),class_='inline-form')}
-
${_('Commenting on line')} {1}. ${_('Comments parsed using')} - RST ${_('syntax')} ${_('with')} - @mention ${_('support')} -
+
${_('Commenting on line {1}.')} + ${(_('Comments parsed using %s syntax with %s support.') % (('RST' % h.url('rst_help')), + '@mention' % + _('Use @username inside this text to send notification to this RhodeCode user')))|n}
@@ -59,7 +59,7 @@ ${h.form('')}
- ${'You need to be logged in to comment.'} ${_('Login now')} + ${_('You need to be logged in to comment.')} ${_('Login now')}
@@ -73,7 +73,7 @@ <%def name="inlines(changeset)"> -
${len(c.comments)} comment(s) (${c.inline_cnt} ${_('inline')})
+
${ungettext("%d comment", "%d comments", len(c.comments)) % len(c.comments)} ${ungettext("(%d inline)", "(%d inline)", c.inline_cnt) % c.inline_cnt}
%for path, lines in c.inline_comments: % for line,comments in lines.iteritems():