Administration: Add missing comma to the message in "Post via email" section.

Props kinjaldalwadi, sabernhardt.
Fixes #49238.
Built from https://develop.svn.wordpress.org/trunk@48186


git-svn-id: http://core.svn.wordpress.org/trunk@47955 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-06-26 19:38:06 +00:00
parent 40c389c95e
commit 3079ab76dc
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ if ( apply_filters( 'enable_post_by_email_configuration', true ) ) {
<?php
printf(
/* translators: 1, 2, 3: Examples of random email addresses. */
__( 'To post to WordPress by email you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.' ),
__( 'To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.' ),
sprintf( '<kbd>%s</kbd>', wp_generate_password( 8, false ) ),
sprintf( '<kbd>%s</kbd>', wp_generate_password( 8, false ) ),
sprintf( '<kbd>%s</kbd>', wp_generate_password( 8, false ) )

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-alpha-48185';
$wp_version = '5.5-alpha-48186';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.