From 77af3776516aea19e976da960d208fae1e820fcb Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Mon, 7 Jul 2025 16:25:34 +0000 Subject: [PATCH] I18N: Improve string capitalization in `WP_PHPMailer`. See [59592] / #23311. Props rollybueno. See #63629. Built from https://develop.svn.wordpress.org/trunk@60419 git-svn-id: http://core.svn.wordpress.org/trunk@59755 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-phpmailer.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-phpmailer.php b/wp-includes/class-wp-phpmailer.php index ce71eec458..cc21e6b88c 100644 --- a/wp-includes/class-wp-phpmailer.php +++ b/wp-includes/class-wp-phpmailer.php @@ -48,7 +48,7 @@ class WP_PHPMailer extends PHPMailer\PHPMailer\PHPMailer { 'php.ini' ), 'connect_host' => __( 'SMTP Error: Could not connect to SMTP host.' ), - 'data_not_accepted' => __( 'SMTP Error: data not accepted.' ), + 'data_not_accepted' => __( 'SMTP Error: Data not accepted.' ), 'empty_message' => __( 'Message body empty' ), /* translators: There is a space after the colon. */ 'encoding' => __( 'Unknown encoding: ' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 5e2cb0439d..aa0b5d1d9d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60418'; +$wp_version = '6.9-alpha-60419'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.