Better use of the translation system
This commit is contained in:
parent
fc235cefeb
commit
00dcd4a006
@ -136,7 +136,7 @@
|
||||
},
|
||||
"Poll results": {
|
||||
"Votes of the poll": "Stimmabgaben zur Umfrage",
|
||||
"Edit the line:": "Zeile bearbeiten:",
|
||||
"Edit the line: %s": "Zeile bearbeiten: %s",
|
||||
"Remove the line:": "Zeile entfernen:",
|
||||
"Vote no for": "Nein-Stimmen für",
|
||||
"Vote yes for": "Ja-Stimmen für",
|
||||
|
@ -136,7 +136,7 @@
|
||||
},
|
||||
"Poll results": {
|
||||
"Votes of the poll": "Votes",
|
||||
"Edit the line:": "Edit line:",
|
||||
"Edit the line: %s": "Edit line: %s",
|
||||
"Remove the line:": "Remove line:",
|
||||
"Vote no for": "Vote \"no\" for",
|
||||
"Vote yes for": "Vote \"yes\" for",
|
||||
|
@ -139,7 +139,7 @@
|
||||
},
|
||||
"Poll results": {
|
||||
"Votes of the poll": "Votos de la encuesta",
|
||||
"Edit the line:": "Modificar la fila:",
|
||||
"Edit the line: %s": "Modificar la fila: %s",
|
||||
"Remove the line:": "Borrar la fila:",
|
||||
"Vote no for": "Votar « no » para",
|
||||
"Vote yes for": "Votar « si » para",
|
||||
|
@ -136,7 +136,7 @@
|
||||
},
|
||||
"Poll results": {
|
||||
"Votes of the poll": "Votes du sondage",
|
||||
"Edit the line:": "Modifier la ligne :",
|
||||
"Edit the line: %s": "Modifier la ligne : %s",
|
||||
"Remove the line:": "Supprimer la ligne :",
|
||||
"Vote no for": "Voter « non » pour",
|
||||
"Vote yes for": "Voter « oui » pour",
|
||||
|
@ -136,7 +136,7 @@
|
||||
},
|
||||
"Poll results": {
|
||||
"Votes of the poll": "Voti del sondaggio ",
|
||||
"Edit the line:": "Modificare la riga :",
|
||||
"Edit the line: %s": "Modificare la riga : %s",
|
||||
"Remove the line:": "Eliminare la riga :",
|
||||
"Vote no for": "Scegliere \"no\" per",
|
||||
"Vote yes for": "Scegliere \"sì\" per",
|
||||
|
@ -134,7 +134,7 @@
|
||||
},
|
||||
"Poll results": {
|
||||
"Votes of the poll": "Vòtes del sondatge",
|
||||
"Edit the line:": "Modificar la linha :",
|
||||
"Edit the line: %s": "Modificar la linha : %s",
|
||||
"Remove the line:": "Suprimir la linha :",
|
||||
"Vote no for": "Votar « non » per",
|
||||
"Vote yes for": "Votar « òc » per",
|
||||
|
@ -196,7 +196,7 @@ function getMessageForOwnVoteEditableVote(SessionService &$sessionService, Smart
|
||||
'success',
|
||||
__('studs', 'Your vote has been registered successfully, but be careful: regarding this poll options, you need to keep this personal link to edit your own vote:'),
|
||||
$urlEditVote,
|
||||
__('Poll results', 'Edit the line:').' '.$name,
|
||||
__f('Poll results', 'Edit the line: %s', $name),
|
||||
'glyphicon-pencil');
|
||||
if ($canUseSMTP) {
|
||||
$token = new Token();
|
||||
|
@ -110,7 +110,7 @@
|
||||
}
|
||||
|
||||
<td class="hidden-print">
|
||||
<a href="{if $admin}{poll_url id=$poll->admin_id vote_id=$vote->uniqId admin=true}{else}{poll_url id=$poll->id vote_id=$vote->uniqId}{/if}" class="btn btn-default btn-sm" title="{__('Poll results', 'Edit the line:')|html} {$vote->name|html}">
|
||||
<a href="{if $admin}{poll_url id=$poll->admin_id vote_id=$vote->uniqId admin=true}{else}{poll_url id=$poll->id vote_id=$vote->uniqId}{/if}" class="btn btn-default btn-sm" title="{__f('Poll results', 'Edit the line: %s', $vote->name)|html}">
|
||||
<i class="glyphicon glyphicon-pencil"></i><span class="sr-only">{__('Generic', 'Edit')}</span>
|
||||
</a>
|
||||
{if $admin}
|
||||
|
@ -159,7 +159,7 @@
|
||||
)
|
||||
}
|
||||
<td class="hidden-print">
|
||||
<a href="{if $admin}{poll_url id=$poll->admin_id vote_id=$vote->uniqId admin=true}{else}{poll_url id=$poll->id vote_id=$vote->uniqId}{/if}" class="btn btn-default btn-sm" title="{__('Poll results', 'Edit the line:')|escape} {$vote->name|html}">
|
||||
<a href="{if $admin}{poll_url id=$poll->admin_id vote_id=$vote->uniqId admin=true}{else}{poll_url id=$poll->id vote_id=$vote->uniqId}{/if}" class="btn btn-default btn-sm" title="{__f('Poll results', 'Edit the line: %s', $vote->name)|html}">
|
||||
<i class="glyphicon glyphicon-pencil"></i><span class="sr-only">{__('Generic', 'Edit')}</span>
|
||||
</a>
|
||||
{if $admin}
|
||||
|
Loading…
Reference in New Issue
Block a user