Use __f to format some messages
This commit is contained in:
parent
929d92da6b
commit
9daef4b09e
@ -67,7 +67,7 @@ function sendUpdateNotification($poll, $mailService, $type) {
|
||||
|
||||
if ($poll->receiveNewVotes) {
|
||||
|
||||
$subject = '[' . NOMAPPLICATION . '] ' . __('Mail', 'Notification of poll') . ': ' . $poll->title;
|
||||
$subject = '[' . NOMAPPLICATION . '] ' . __f('Mail', 'Notification of poll: %s', $poll->title);
|
||||
|
||||
$message = '';
|
||||
switch ($type) {
|
||||
|
@ -293,8 +293,8 @@
|
||||
"Polls sent": "Umfragen abgeschickt"
|
||||
},
|
||||
"Mail": {
|
||||
"Poll's participation": "Beteiligung an der Umfrage",
|
||||
"Notification of poll": "Mitteilung bezüglich der Umfrage",
|
||||
"Poll's participation: %s": "Beteiligung an der Umfrage: %s",
|
||||
"Notification of poll: %s": "Mitteilung bezüglich der Umfrage: %s",
|
||||
"filled a vote.\nYou can find your poll at the link": "hat abgestimmt.<br/>Sie finden Ihre Umfrage über den Link",
|
||||
"updated a vote.\nYou can find your poll at the link": "hat eine Wertung aktualisiert.<br/>Sie finden Ihre Umfrage über den Link",
|
||||
"wrote a comment.\nYou can find your poll at the link": "hat einen Kommentar geschrieben.<br/>Sie finden Ihre Umfrage über den Link",
|
||||
|
@ -291,8 +291,8 @@
|
||||
"Polls sent": "Polls sent"
|
||||
},
|
||||
"Mail" : {
|
||||
"Poll's participation": "Poll participation",
|
||||
"Notification of poll": "Notification of poll",
|
||||
"Poll's participation: %s": "Poll participation: %s",
|
||||
"Notification of poll: %s": "Notification of poll: %s",
|
||||
"filled a vote.\nYou can find your poll at the link": "added a vote.<br/>You can visit your poll at the link",
|
||||
"updated a vote.\nYou can find your poll at the link": "updated a vote.<br/>You can visit your poll at the link",
|
||||
"wrote a comment.\nYou can find your poll at the link": "wrote a comment.<br/>You can visit your poll at the link",
|
||||
|
@ -293,8 +293,8 @@
|
||||
"Polls sent": "ES_Sondages envoyés"
|
||||
},
|
||||
"Mail": {
|
||||
"Poll's participation": "Participación Encuesta",
|
||||
"Notification of poll": "Notificación de la encuesta",
|
||||
"Poll's participation: %s": "Participación Encuesta: %s",
|
||||
"Notification of poll: %s": "Notificación de la encuesta: %s",
|
||||
"filled a vote.\nYou can find your poll at the link": "ES_vient de voter.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
|
||||
"updated a vote.\nYou can find your poll at the link": "ES_vient de mettre à jour un vote.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
|
||||
"wrote a comment.\nYou can find your poll at the link": "ES_vient de rédiger un commentaire.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
|
||||
|
@ -293,8 +293,8 @@
|
||||
"Polls sent": "Sondages envoyés"
|
||||
},
|
||||
"Mail": {
|
||||
"Poll's participation": "Participation au sondage",
|
||||
"Notification of poll": "Notification d'un sondage",
|
||||
"Poll's participation: %s": "Participation au sondage : %s",
|
||||
"Notification of poll: %s": "Notification d'un sondage : %s",
|
||||
"filled a vote.\nYou can find your poll at the link": "vient de voter.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
|
||||
"updated a vote.\nYou can find your poll at the link": "vient de mettre à jour un vote.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
|
||||
"wrote a comment.\nYou can find your poll at the link": "vient de rédiger un commentaire.<br/>Vous pouvez retrouver votre sondage avec le lien suivant",
|
||||
|
@ -293,8 +293,8 @@
|
||||
"Polls sent": "IT_Sondages envoyés"
|
||||
},
|
||||
"Mail": {
|
||||
"Poll's participation": "Partecipazione al sondaggio",
|
||||
"Notification of poll": "Notifica di sondaggio",
|
||||
"Poll's participation: %s": "Partecipazione al sondaggio: %s",
|
||||
"Notification of poll: %s": "Notifica di sondaggio: %s",
|
||||
"filled a vote.\nYou can find your poll at the link": "IT_vient de voter.\nVous pouvez retrouver votre sondage avec le lien suivant",
|
||||
"updated a vote.\nYou can find your poll at the link": "IT_vient de mettre à jour un vote.\nVous pouvez retrouver votre sondage avec le lien suivant",
|
||||
"wrote a comment.\nYou can find your poll at the link": "IT_vient de rédiger un commentaire.\nVous pouvez retrouver votre sondage avec le lien suivant",
|
||||
|
@ -66,7 +66,7 @@ function sendUpdateNotification($poll, $mailService, $name, $type) {
|
||||
|
||||
if ($poll->receiveNewVotes) {
|
||||
|
||||
$subject = '[' . NOMAPPLICATION . '] ' . __('Mail', 'Poll\'s participation') . ': ' . $poll->title;
|
||||
$subject = '[' . NOMAPPLICATION . '] ' . __f('Mail', 'Poll\'s participation: %s', $poll->title);
|
||||
|
||||
$message = $name . ' ';
|
||||
switch ($type) {
|
||||
|
Loading…
Reference in New Issue
Block a user