Skip to content

Commit e96f273

Browse files
committed
Refactor L10N data.
1 parent 96e9f40 commit e96f273

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Linker.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: PHPMailer-phpMussel linker (last modified: 2023.09.18).
11+
* This file: PHPMailer-phpMussel linker (last modified: 2023.09.19).
1212
*/
1313

1414
namespace phpMussel\PHPMailer;
@@ -247,10 +247,10 @@ public function __invoke(string $NotUsed, array $Data): bool
247247
$EventLogData .= ($State ? sprintf(
248248
$this->Loader->L10N->getString('state_email_sent'),
249249
$SuccessDetails
250-
) : $this->Loader->L10N->getString('response_error') . ' - ' . $Mail->ErrorInfo) . "\n";
250+
) : $this->Loader->L10N->getString('response.Error') . ' - ' . $Mail->ErrorInfo) . "\n";
251251
} catch (\Exception $e) {
252252
/** An exeption occurred. Log the information. */
253-
$EventLogData .= $this->Loader->L10N->getString('response_error') . ' - ' . $e->getMessage() . "\n";
253+
$EventLogData .= $this->Loader->L10N->getString('response.Error') . ' - ' . $e->getMessage() . "\n";
254254
}
255255

256256
/** Write to the event log. */

0 commit comments

Comments
 (0)