summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/blocks/editor_data.html
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/skins/default/templates/blocks/editor_data.html')
-rw-r--r--askbot/skins/default/templates/blocks/editor_data.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/askbot/skins/default/templates/blocks/editor_data.html b/askbot/skins/default/templates/blocks/editor_data.html
new file mode 100644
index 00000000..79ed96fb
--- /dev/null
+++ b/askbot/skins/default/templates/blocks/editor_data.html
@@ -0,0 +1,10 @@
+<script type="text/javascript">
+ {# data necessary for the post editor, goes into endjs block #}
+ askbot['settings']['maxTagLength'] = {{settings.MAX_TAG_LENGTH}};
+ 'each tag must be shorter than %(max_chars)d characters',
+ askbot['messages']['maxTagLength'] = '{% trans max_chars = settings.MAX_TAG_LENGTH %}each tag must be shorter that {{max_chars}} character{% pluralize %}each tag must be shorter than {{max_chars}} characters{% endtrans %}';
+ askbot['settings']['maxTagsPerPost'] = {{settings.MAX_TAGS_PER_POST}};
+ askbot['messages']['maxTagsPerPost'] = '{% trans tag_count = settings.MAX_TAGS_PER_POST %}please use {{tag_count}} tag{% pluralize %}please use {{tag_count}} tags or less{% endtrans %}';
+ askbot['messages']['tagLimits'] = '{% trans tag_count=settings.MAX_TAGS_PER_POST, max_chars=settings.MAX_TAG_LENGTH %}please use up to {{tag_count}} tags, less than {{max_chars}} characters each{% endtrans %}';
+ askbot['urls']['upload'] = '{% url "upload" %}';
+</script>