Changeset 385


Ignore:
Timestamp:
10/06/10 16:33:54 (14 years ago)
Author:
misc
Message:
  • fix some strings, proofreading done by Ahmad Samir
Location:
trunk/root/templates
Files:
6 edited

Legend:

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

    r323 r385  
    99 
    1010[% IF ! poll.choices_keys.size %] 
    11 <p class="alert">[% l('No choices are configured') %]</p> 
     11<p class="alert">[% l('No choices were made') %]</p> 
    1212[% ELSE %] 
    1313[% FOREACH choicek = poll.choices_keys %] 
     
    1616[% loop.count %] - [% choice.info.label | html %] 
    1717<input type="hidden" name="delch" value="[% choicek %]"> 
    18 <input type="submit" name="del" value="[% l('delete') %]"> 
     18<input type="submit" name="del" value="[% l('Delete') %]"> 
    1919</form> 
    2020<br> 
     
    2929 
    3030<div style="float: right; width: 30%" class="ballot"> 
    31 <p>[% l('Preview of ballot') %]</p> 
     31<p>[% l('Preview ballot') %]</p> 
    3232[% INCLUDE 'includes/ballot_form.tt' b_form_url = c.uri_for(poll.uid, 'ballot') %] 
    3333</div> 
  • trunk/root/templates/admin/includes/poll_settings.tt

    r375 r385  
    4747[% l('You can choose a passphrase to protect the key:') %]<br> 
    4848<input type="password" name="passphrase"><br> 
    49 <input type="submit" name="encrypted" value="[% l('encrypt the poll') %]"> 
     49<input type="submit" name="encrypted" value="[% l('Encrypt poll') %]"> 
    5050</form> 
    5151[% END %] 
  • trunk/root/templates/admin/voters.tt

    r379 r385  
    66[% IF poll.status() != 'AFTER' %] 
    77<div style="float: left; width: 30%;" class="box"> 
    8 <p>[% l('add a vote') %]</p> 
     8<p>[% l('Add a vote') %]</p> 
    99<form action="[% c.uri_for(poll.uid, 'voters') %]" method="POST"> 
    1010[% l('Name:') _ ' ' %]<input type="text" name="id"><br> 
     
    1616<p> 
    1717    <a href="[% c.uri_for(poll.uid, 'voters', 'import') %]"> 
    18         Import voters list... 
     18        Import the list of voters... 
    1919    </a> 
    2020</p> 
    2121 
    2222[% IF poll.status == 'BEFORE' %] 
    23 <input type="checkbox" name="delete">[% l('delete the list of voters') %]<br> 
     23<input type="checkbox" name="delete">[% l('Delete the list of voters') %]<br> 
    2424[% END %] 
    2525<input type="submit" value="[% l('Add') %]"> 
     
    3333</form> 
    3434[% ELSE %] 
    35 [% l('Poll date must be setup before announcing poll to voters') %] 
     35[% l('Poll date must be set before announcing poll to voters') %] 
    3636[% END %] 
    3737</div> 
  • trunk/root/templates/includes/ballot_settings.tt

    r319 r385  
    88[% INCLUDE $ballotsettingstt %] 
    99 
    10 <input type="submit" name="pollballot" value="[% l('save') %]"> 
     10<input type="submit" name="pollballot" value="[% l('Save') %]"> 
    1111</form> 
    1212 
  • trunk/root/templates/pollinc/binary/ballot.tt

    r332 r385  
    22[% poll = c.model('Vote').poll(voteid) %] 
    33 
    4 <p>[% l('You need to do') _ ' ' _ poll.info('choice_count') _ ' ' _ l('choices') %] 
     4<p>[% l('You need to select') _ ' ' _ poll.info('choice_count') _ ' ' _ l('choices') %] 
    55[%- IF poll.info('choice_count') != poll.info('elected_count') -%] 
    6 [% l('for') _ ' ' _ poll.info('elected_count') _ ' ' _ l('elected') %] [%- END -%].</p> 
     6[% l('for') _ ' ' _ poll.info('elected_count') _ ' ' _ l('elected') %] [%- END -%]</p> 
    77 
    88[% FOREACH key = poll.choices() %] 
  • trunk/root/templates/pollinc/binary/ballot_settings.tt

    r323 r385  
    44<table border=1> 
    55<tr> 
    6 <td>[% l('Number of possible choices:') %]</td> 
     6<td>[% l('Number of possible choices') %]</td> 
    77<td><input type="text" size="3" name="choice_count" value="[% c.req.param('choice_count') || poll.info('choice_count') | html %]"></td> 
    88</tr> 
Note: See TracChangeset for help on using the changeset viewer.