Skip to content

Commit

Permalink
localize many message from mail. re #53
Browse files Browse the repository at this point in the history
  • Loading branch information
seblucas committed Jul 23, 2013
1 parent d35becb commit cf26e74
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions lang/Localization_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -330,5 +330,7 @@
"customize.paging":"Max number of books per page (-1 to disable)",
"customize.email":"Set your email (to allow book emailing)",
"customize.filter":"Enable tag filtering",
"mail.messagenotsent":"Message could not be sent.",
"mail.messagesent":"Message has been sent",
"fin":"fin"
}
2 changes: 2 additions & 0 deletions lang/Localization_fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,7 @@
"customize.filter":"Filtrage via les étiquettes",
"languages.eng":"Anglais",
"languages.fra":"Français",
"mail.messagenotsent":"Le message n'a pas pu être envoyé.",
"mail.messagesent":"Le message a été envoyé",
"fin":"fin"
}
8 changes: 4 additions & 4 deletions sendtomail.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

require_once ("config.php");
require "resources/PHPMailer/class.phpmailer.php";
require "book.php";
require_once "resources/PHPMailer/class.phpmailer.php";
require_once "book.php";

if (is_null ($config['cops_mail_configuration']) ||
!is_array ($config['cops_mail_configuration']) ||
Expand Down Expand Up @@ -57,10 +57,10 @@
$mail->Body = 'Sent by COPS';

if(!$mail->Send()) {
echo 'Message could not be sent.';
echo localize ("mail.messagenotsent");
echo 'Mailer Error: ' . $mail->ErrorInfo;
exit;
}

echo 'Message has been sent';
echo localize ("mail.messagesent");

0 comments on commit cf26e74

Please sign in to comment.