summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlissyx <lissyx+mozfr@lissyx.dyndns.org>2012-06-27 14:27:20 +0200
committerlissyx <lissyx+mozfr@lissyx.dyndns.org>2012-06-27 14:27:20 +0200
commit7357505a97ce4525da3333c12e295969bf14784a (patch)
tree1dcf8b73a566437c23b59a903b786b7af217d313
parentf7c7d0ab24d89175cd3e31f610e7d13d6c8c37c4 (diff)
downloadaskbot-7357505a97ce4525da3333c12e295969bf14784a.tar.gz
askbot-7357505a97ce4525da3333c12e295969bf14784a.tar.bz2
askbot-7357505a97ce4525da3333c12e295969bf14784a.zip
fix: Locale might break JavaScript code
If locale contains a single quote ', it can collide with the quotes defining the string at javascript level (it happens for french locale at least).
-rw-r--r--askbot/skins/default/templates/meta/editor_data.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/askbot/skins/default/templates/meta/editor_data.html b/askbot/skins/default/templates/meta/editor_data.html
index 2363281c..9e243baa 100644
--- a/askbot/skins/default/templates/meta/editor_data.html
+++ b/askbot/skins/default/templates/meta/editor_data.html
@@ -3,11 +3,11 @@
askbot['settings']['tagsAreRequired'] =
{% if settings.TAGS_ARE_REQUIRED %}true{% else %}false{% endif %};
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 %}';
+ "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['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" %}';
askbot['settings']['minTitleLength'] = {{settings.MIN_TITLE_LENGTH}}
askbot['settings']['minQuestionBodyLength'] = {{settings.MIN_QUESTION_BODY_LENGTH}}