summaryrefslogtreecommitdiffstats
path: root/askbot/templates/question.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-21 17:11:40 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-21 17:11:45 -0400
commitb2df0411650b508bd1c394294836fa4b2da994d6 (patch)
tree022120d1bf045f5219e5d5c2566e9e8c8519c8fe /askbot/templates/question.html
parent2a0103e349ed9b690ad6ac3f5915def6975bc68c (diff)
downloadaskbot-b2df0411650b508bd1c394294836fa4b2da994d6.tar.gz
askbot-b2df0411650b508bd1c394294836fa4b2da994d6.tar.bz2
askbot-b2df0411650b508bd1c394294836fa4b2da994d6.zip
moved the "add a comment" button up to save vertical space
Diffstat (limited to 'askbot/templates/question.html')
-rw-r--r--askbot/templates/question.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/askbot/templates/question.html b/askbot/templates/question.html
index 7e8d33ef..13593adc 100644
--- a/askbot/templates/question.html
+++ b/askbot/templates/question.html
@@ -225,7 +225,7 @@
if (extra_comment_count > 0){
var text = "{% trans %}see more comments{% endtrans%}";
} else {
- var text = "{% trans %}post a comment{% endtrans %}";
+ var text = "{% trans %}add a comment{% endtrans %}";
}
var add_comment_btn = document.getElementById('add-comment-to-post-' + post_id);
add_comment_btn.innerHTML = text;
@@ -328,7 +328,7 @@
askbot['data']['answersSortTab'] = '{{ tab_id }}';
askbot['data']['questionId'] = {{ question.id }};
askbot['data']['threadSlug'] = '{{ thread.title|slugify }}';
- askbot['messages']['addComment'] = '{% trans %}post a comment{% endtrans %}';
+ askbot['messages']['addComment'] = '{% trans %}add a comment{% endtrans %}';
askbot['settings']['saveCommentOnEnter'] = {{ settings.SAVE_COMMENT_ON_ENTER|as_js_bool }};
askbot['settings']['tagSource'] = '{{ settings.TAG_SOURCE }}';
askbot['settings']['enableSharingGoogle'] = {{ settings.ENABLE_SHARING_GOOGLE|as_js_bool }};