<!-- question_edit_tips.html -->
{% load i18n %}
-{% block forejs %}
- <script type="text/javascript">
- var currentSideBar = 'div#title_side_bar';
- function changeSideBar(enabled_bar) {
- $(currentSideBar).hide();
- currentSideBar = enabled_bar;
- $(currentSideBar).fadeIn('slow');
-
- }
- $(function () {
- $('div#editor_side_bar').hide();
- $('div#tags_side_bar').hide();
-
- $('input#id_title').focus(function(){changeSideBar('div#title_side_bar')});
- $('textarea#editor').focus(function(){changeSideBar('div#editor_side_bar')});
- $('input#id_tags').focus(function(){changeSideBar('div#tags_side_bar')});
- });
- </script>
-{% endblock %}
<div class="boxC" id="title_side_bar">
<p class="subtitle darkred">{% trans "Title Tips" %}</p>
<div>
</li>
</ul>
<p class='info-box-follow-up-links'>
- <a href="http://en.wikipedia.org/wiki/Markdown" target="_blank">{% trans "learn more about Markdown" %} </a>
+ <a href="{% url markdown_help %}" target="_blank">{% trans "learn more about Markdown" %} </a>
</p>
</div>
<p class="subtitle darkred">{% trans "What Are Tags" %}</p>
<ul class="list-item">
<li>
- {% trans "Tags are words that will tell others what this question proteins to." %}
+ {% trans "Tags are words that will tell others what this question is about." %}
</li>
<li>
{% trans "They will help other find your question." %}
</li>
<li>
- {% trans "A question can have up to five tags but it must have at less one." %}
+ {% trans "A question can have up to five tags, but it must have at least one." %}
</li>
</ul>
</div>