summaryrefslogtreecommitdiffstats
path: root/askbot/templates/question.html
diff options
context:
space:
mode:
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 }};