Suppression d'un point inutile dans une traduction.

This commit is contained in:
Antonin 2016-03-05 18:24:07 +01:00
parent ebfdf68d15
commit 7da17c4f28
8 changed files with 9 additions and 9 deletions

View File

@ -216,7 +216,7 @@
"Poll id": "DE_Identifiant",
"Poll id rules": "DE_L'identifiant peut contenir des lettres, des chiffres et des tirets \"-\".",
"Poll id warning": "DE_En définissant un identifiant cela peut faciliter l'accès à ce sondage pour des personnes non désirées. Il est recommandé de le protéger par mot de passe.",
"Votes cannot be modified.": "Wertungen können nicht verändert werden.",
"Votes cannot be modified": "Wertungen können nicht verändert werden.",
"All voters can modify any vote": "Jeder Teilnehmer kann jede abgegebene Wertung ändern.",
"Voters can modify their vote themselves": "Teilnehmer können ihre Wertungen verändern",
"To receive an email for each new vote": "Bei jeder neuen Wertung eine E-Mail erhalten",

View File

@ -216,7 +216,7 @@
"Poll id": "Identifier",
"Poll id rules": "The identifier can contain letters, numbers and dashes \"-\".",
"Poll id warning": "By defining an identifier that can facilitate access to the poll for unwanted people. It is recommended to protect it with a password.",
"Votes cannot be modified.": "Votes cannot be modified",
"Votes cannot be modified": "Votes cannot be modified",
"All voters can modify any vote": "All voters can modify any vote",
"Voters can modify their vote themselves": "Voters can modify their vote themselves",
"To receive an email for each new vote": "Receive an email for each new vote",

View File

@ -216,7 +216,7 @@
"Poll id": "ES_Identifiant",
"Poll id rules": "ES_L'identifiant peut contenir des lettres, des chiffres et des tirets \"-\".",
"Poll id warning": "ES_En définissant un identifiant cela peut faciliter l'accès à ce sondage pour des personnes non désirées. Il est recommandé de le protéger par mot de passe.",
"Votes cannot be modified.": "ES_Aucun vote ne peut être modifié",
"Votes cannot be modified": "ES_Aucun vote ne peut être modifié",
"All voters can modify any vote": "ES_Tous les sondés peuvent modifier tous les votes",
"Voters can modify their vote themselves": "Los encuentados pueden cambiar su línea ellos mismos",
"To receive an email for each new vote": "Usted quiere recibir un correo electónico cada vez que alguien participe a la encuesta",

View File

@ -216,7 +216,7 @@
"Poll id": "Identifiant",
"Poll id rules": "L'identifiant peut contenir des lettres, des chiffres et des tirets \"-\".",
"Poll id warning": "En définissant un identifiant cela peut faciliter l'accès à ce sondage pour des personnes non désirées. Il est recommandé de le protéger par mot de passe.",
"Votes cannot be modified.": "Aucun vote ne peut être modifié",
"Votes cannot be modified": "Aucun vote ne peut être modifié",
"All voters can modify any vote": "Tous les sondés peuvent modifier tous les votes",
"Voters can modify their vote themselves": "Chaque sondé peut modifier son propre vote",
"To receive an email for each new vote": "Recevoir un courriel à chaque participation d'un sondé",

View File

@ -216,7 +216,7 @@
"Poll id": "IT_Identifiant",
"Poll id rules": "IT_L'identifiant peut contenir des lettres, des chiffres et des tirets \"-\".",
"Poll id warning": "IT_En définissant un identifiant cela peut faciliter l'accès à ce sondage pour des personnes non désirées. Il est recommandé de le protéger par mot de passe.",
"Votes cannot be modified.": "Nessun voto può essere modificato",
"Votes cannot be modified": "Nessun voto può essere modificato",
"All voters can modify any vote": "Tutti i votanti possono cambiare tutti i voti",
"Voters can modify their vote themselves": "I partecipanti possono modificare il loro voto in autonomia",
"To receive an email for each new vote": "Per ricevere un'email per ogni nuovo voto",

View File

@ -200,7 +200,7 @@
"You are in the poll creation section.": "Avètz causit de crear un nòu sondatge.",
"Required fields cannot be left blank.": "Mercés de garnir tots los formularis obligatòris, marcats amb una *.",
"Poll title": "Títol del sondatge",
"Votes cannot be modified.": "Cap vòte pòt èsser modificat",
"Votes cannot be modified": "Cap vòte pòt èsser modificat",
"All voters can modify any vote": "Tot lo mond pòt modificar sos vòtes",
"Voters can modify their vote themselves": "Cadun pòt modificar son pròpi vòte",
"To receive an email for each new vote": "Recebre un messatge per cada participacion",

View File

@ -131,7 +131,7 @@
</label>
<label>
<input type="radio" name="editable" {if empty($poll_editable) or $poll_editable==constant("Framadate\Editable::NOT_EDITABLE")}checked{/if} value="{constant("Framadate\Editable::NOT_EDITABLE")}">
{__('Step 1', 'Votes cannot be modified.')}
{__('Step 1', 'Votes cannot be modified')}
</label>
</div>
</div>

View File

@ -192,7 +192,7 @@
{else}
{$rule_id = 1}
{$rule_icon = '<span class="glyphicon glyphicon-check"></span>'}
{$rule_txt = __('Step 1', 'Votes cannot be modified.')}
{$rule_txt = __('Step 1', 'Votes cannot be modified')}
{/if}
{else}
{$rule_id = 0}
@ -206,7 +206,7 @@
<div class="input-group">
<select class="form-control" id="rules" name="rules">
<option value="0"{if $rule_id==0} selected="selected"{/if}>{__('PollInfo', 'Votes and comments are locked')}</option>
<option value="1"{if $rule_id==1} selected="selected"{/if}>{__('Step 1', 'Votes cannot be modified.')}</option>
<option value="1"{if $rule_id==1} selected="selected"{/if}>{__('Step 1', 'Votes cannot be modified')}</option>
<option value="3"{if $rule_id==3} selected="selected"{/if}>{__('Step 1', 'Voters can modify their vote themselves')}</option>
<option value="2"{if $rule_id==2} selected="selected"{/if}>{__('Step 1', 'All voters can modify any vote')}</option>
</select>