Reword technical display settings label

This commit is contained in:
Nicolas Le Goff
2014-06-12 18:16:11 +02:00
parent 2253badd8e
commit c7d455225a

View File

@@ -842,18 +842,18 @@
</div>
<div class="box">
{% set technical_display = app['authentication'].getUser().getPrefs('technical_display') %}
<h1>{% trans 'Informations techniques' %}</h1>
<h1>{% trans 'Display technical data' %}</h1>
<label class="radio" for="technical_show">
<input onchange="setPref('technical_display',$(this).val());" name="technical_display" type="radio" class="radio" value="1" id="technical_show" {% if technical_display == '1' %}checked="checked"{% endif %}/>
{% trans 'Afficher' %}
{% trans 'In the answer grid' %}
</label>
<label class="radio" for="technical_group">
<input onchange="setPref('technical_display',$(this).val());" name="technical_display" type="radio" class="radio" value="group" id="technical_group" {% if technical_display == 'group' %}checked="checked"{% endif %}/>
{% trans 'Afficher dans la notice' %}
{% trans 'After metadata' %}
</label>
<label class="radio" for="technical_hide">
<input onchange="setPref('technical_display',$(this).val());" name="technical_display" type="radio" class="radio" value="0" id="technical_hide" {% if technical_display == '0' %}checked="checked"{% endif %}/>
{% trans 'Ne pas afficher' %}
{% trans 'Do not display' %}
</label>
</div>
<div class="box">