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
This commit is contained in:
Pascal Birchler
2025-07-07 16:25:34 +00:00
parent 974f5b112b
commit 77af377651
2 changed files with 2 additions and 2 deletions

View File

@@ -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: ' ),

View File

@@ -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.