fix #1509 Fix missing label for stories status edition

This commit is contained in:
Nicolas Le Goff
2013-10-03 12:20:27 +02:00
parent 5e6a6c9702
commit 2a1c421110

View File

@@ -115,7 +115,14 @@
<tfoot>
{% if nbStories > 0 %}
<tr>
<td colspan="6"><input type="checkbox" name="apply_to_children[{{ sbasId }}]"/></td>
<td colspan="6">
<input type="checkbox" name="apply_to_children[{{ sbasId }}]"/>
{% if nbStories == 1 %}
{% trans %}Apply status on stories children. {% endtrans %}
{% elseif nbStories > 0 %}
{% trans %}Apply status on story children.{% endtrans %}
{% endif %}
</td>
</tr>
{% endif %}
</tfoot>