MAJ poll_info.tpl
This commit is contained in:
parent
feb0c1e6ce
commit
b5ce4baf60
@ -355,8 +355,12 @@
|
|||||||
"Save the new title": "Save the new title",
|
"Save the new title": "Save the new title",
|
||||||
"Simple editor": "Simple editor",
|
"Simple editor": "Simple editor",
|
||||||
"Title": "Title of the poll",
|
"Title": "Title of the poll",
|
||||||
|
"Voters email adresses are not collected": "Voters email adresses are not collected",
|
||||||
|
"Voters email adresses are collected": "Voters email adresses are collected",
|
||||||
|
"Voters email adresses are collected and required": "Voters email adresses are collected and required",
|
||||||
|
"Voters email adresses are collected, required and verified": "Voters email adresses are collected, required and verified",
|
||||||
"Votes and comments are locked": "Votes and comments are locked",
|
"Votes and comments are locked": "Votes and comments are locked",
|
||||||
"Votes protected by password": "Votes protected by password"
|
"Votes protected by password": "Votes protected by password",
|
||||||
},
|
},
|
||||||
"Step 1": {
|
"Step 1": {
|
||||||
"All voters can modify any vote": "All voters can modify any vote",
|
"All voters can modify any vote": "All voters can modify any vote",
|
||||||
|
@ -233,9 +233,19 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="collect_users_mail">
|
<div id="collect_users_mail">
|
||||||
{if $poll->collect_users_mail}
|
{if $poll->collect_users_mail == constant("Framadate\Collect_mail::NO_COLLECT")}
|
||||||
<p><span class="glyphicon glyphicon-envelope"> </span> {__('PollInfo', 'Collecting the polled users emails')}</p>
|
{$txt=__('PollInfo', 'Voters email adresses are not collected')}
|
||||||
|
{else if $poll->collect_users_mail == constant("Framadate\Collect_mail::COLLECT")}
|
||||||
|
{$txt=__('PollInfo', 'Voters email adresses are collected')}
|
||||||
|
{else if $poll->collect_users_mail == constant("Framadate\Collect_mail::COLLECT_REQUIRED")}
|
||||||
|
{$txt=__('PollInfo', 'Voters email adresses are collected and required')}
|
||||||
|
{else if $poll->collect_users_mail == constant("Framadate\Collect_mail::COLLECT_REQUIRED_VERIFIED")}
|
||||||
|
{$txt=__('PollInfo', 'Voters email adresses are collected, required and verified')}
|
||||||
|
{else}
|
||||||
|
{$txt='Error'}
|
||||||
{/if}
|
{/if}
|
||||||
|
<p><span class="glyphicon glyphicon-envelope"> </span> {$txt|html}</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user