diff --git a/adminstuds.php b/adminstuds.php
index a7c8931..ac3661d 100644
--- a/adminstuds.php
+++ b/adminstuds.php
@@ -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) {
diff --git a/locale/de.json b/locale/de.json
index 2b49864..c9d4132 100644
--- a/locale/de.json
+++ b/locale/de.json
@@ -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.
Sie finden Ihre Umfrage über den Link",
"updated a vote.\nYou can find your poll at the link": "hat eine Wertung aktualisiert.
Sie finden Ihre Umfrage über den Link",
"wrote a comment.\nYou can find your poll at the link": "hat einen Kommentar geschrieben.
Sie finden Ihre Umfrage über den Link",
diff --git a/locale/en.json b/locale/en.json
index e9fa7b4..568b611 100644
--- a/locale/en.json
+++ b/locale/en.json
@@ -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.
You can visit your poll at the link",
"updated a vote.\nYou can find your poll at the link": "updated a vote.
You can visit your poll at the link",
"wrote a comment.\nYou can find your poll at the link": "wrote a comment.
You can visit your poll at the link",
diff --git a/locale/es.json b/locale/es.json
index 7c655da..56ffe18 100644
--- a/locale/es.json
+++ b/locale/es.json
@@ -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.
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.
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.
Vous pouvez retrouver votre sondage avec le lien suivant",
diff --git a/locale/fr.json b/locale/fr.json
index 4c267f0..6f84c9e 100644
--- a/locale/fr.json
+++ b/locale/fr.json
@@ -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.
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.
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.
Vous pouvez retrouver votre sondage avec le lien suivant",
diff --git a/locale/it.json b/locale/it.json
index 5866317..564ca7f 100644
--- a/locale/it.json
+++ b/locale/it.json
@@ -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",
diff --git a/studs.php b/studs.php
index ec7d274..abde6ed 100644
--- a/studs.php
+++ b/studs.php
@@ -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) {