Ignore:
Timestamp:
12/19/09 11:44:19 (15 years ago)
Author:
nanardon
Message:
  • start translation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/root/templates/admin/ballot.tt

    r267 r280  
    88<table border=1> 
    99<tr> 
    10 <td>Nombre de choix possible:</td> 
     10<td>[% l('Number of possible choice:') %]</td> 
    1111<td><input type="text" size="3" name="choice_count" value="[% c.req.param('choice_count') || poll.info('choice_count') | html %]"></td> 
    1212</tr> 
    1313 
    1414<tr> 
    15 <td>Nombre d'élu(s)<br>(si différent du nombre de choix)</td> 
     15<td>[% l('Number of elected people') %]<br> 
     16    ([% l('if different of number of choice') %]) 
     17</td> 
    1618<td><input type="text" size="3" name="elected_count" value="[% c.req.param('elected_count') || poll.raw_info('elected_count') | html %]"></td> 
    1719</tr> 
    1820 
    1921<tr> 
    20 <td>Nombre de choix libres:</td> 
     22<td>[% l('Number of free input:') %]</td> 
    2123<td><input type="text" size="3" name="free_choice" value="[% c.req.param('free_choice') || poll.info('free_choice') || 0 | html %]"></td> 
    2224</tr> 
    2325 
    2426<tr> 
    25 <td>Nombre de choix à partir de la liste des électeurs:</td> 
     27<td>[% l('Number of input from voting list') %]</td> 
    2628<td><input type="text" size="3" name="elected_choice" value="[% c.req.param('elected_choice') || poll.info('elected_choice') || 0 | html %]"></td> 
    2729</tr> 
    2830 
    2931</table> 
    30 <input type="submit" name="pollballot" value="Enregistrer"> 
     32<input type="submit" name="pollballot" value="[% l('save') %]"> 
    3133</form> 
    3234 
     
    3436 
    3537[% IF ! poll.choices_keys.size %] 
    36 <p class="alert">Aucun choix configuré</p> 
     38<p class="alert">[% l('No choice are configured') %]</p> 
    3739[% ELSE %] 
    3840[% FOREACH choicek = poll.choices_keys %] 
     
    4143[% loop.count %] - [% choice.info.label | html %] 
    4244<input type="hidden" name="delch" value="[% choicek %]"> 
    43 <input type="submit" name="del" value="Effacer"> 
     45<input type="submit" name="del" value="[% l('delete') %]"> 
    4446</form> 
    4547<br> 
     
    4749[% END %] 
    4850<form action="[% c.uri_for(poll.uid, 'ballot') %]" method="POST"> 
    49 Ajouter un choix:<br> 
     51[% l('Add a choice') %]<br> 
    5052<input type="text" name="addch"> 
    51 <input type="submit" value="Ajouter"> 
     53<input type="submit" value="[% l('Add') %]"> 
    5254</form> 
    5355</div> 
    5456 
    5557<div style="float: right; width: 30%" class="ballot"> 
    56 <p>Prévisualisation du bulletin:</p> 
     58<p>[% l('Preview of ballot') %]</p> 
    5759[% INCLUDE 'includes/ballot_form.tt' b_form_url = c.uri_for(poll.uid, 'ballot') %] 
    5860</div> 
Note: See TracChangeset for help on using the changeset viewer.