Merge pull request #6 from Gluejar/fix_zero_wisher_grammar

Fix zero wisher grammar
pull/1/head
eshellman 2012-09-18 10:41:09 -07:00
commit 499b1f78b2
1 changed files with 27 additions and 13 deletions

View File

@ -72,27 +72,41 @@ $j(document).ready(function(){
Campaign suspended. <br />See <a href="/faq">FAQ</a>. Campaign suspended. <br />See <a href="/faq">FAQ</a>.
{% else %}{% if status == 'WITHDRAWN' %} {% else %}{% if status == 'WITHDRAWN' %}
Campaign withdrawn. <br />See <a href="/faq">FAQ</a>. Campaign withdrawn. <br />See <a href="/faq">FAQ</a>.
{% else %}{% if wishers == 0 %}
<span class="findtheungluers">No ungluers are wishing yet.</span>
<br />
Be the first!
{% else %}{% if wishers == 1 %} {% else %}{% if wishers == 1 %}
<span class="findtheungluers">{{ wishers }} Ungluer is wishing</span> <span class="findtheungluers">{{ wishers }} Ungluer is wishing</span>
<br />
You can too!
{% else %} {% else %}
<span class="findtheungluers">{{ wishers }} Ungluers are wishing</span> <span class="findtheungluers">{{ wishers }} Ungluers are wishing</span>
{% endif %} <br />
<br /> You can too!
You can too! {% endif %}{% endif %}{% endif %}{% endif %}{% endif %}{% endif %}
{% endif %}{% endif %}{% endif %}{% endif %}
{% endif %} {% endif %}
{% else %} {% else %}
<span class="findtheungluers"> {% if wishers == 0 %}
{% if wishers == 1 %} <span class="findtheungluers">
{{ wishers }} Ungluer is wishing No ungluers are wishing yet.
</span>
<br />
Be the first!
{% else %}{% if wishers == 1 %}
<span class="findtheungluers">
{{ wishers }} Ungluer is wishing
</span>
<br />
You can too!
{% else %} {% else %}
{{ wishers }} Ungluers are wishing <span class="findtheungluers">
{% endif %} {{ wishers }} Ungluers are wishing
</span> </span>
<br /> <br />
You can too! You can too!
{% endif %}{% endif %}
{% endif %}{% endif %} {% endif %}{% endif %}
</span>
</div> </div>
</div> </div>
{% include "explore.html" %} {% include "explore.html" %}