XML-RPC: Merge similar translation strings.

Props ramiy.
Fixes #47039.
Built from https://develop.svn.wordpress.org/trunk@45554


git-svn-id: http://core.svn.wordpress.org/trunk@45365 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2019-06-20 12:53:52 +00:00
parent 8756207ef2
commit bd239b4be8
2 changed files with 3 additions and 3 deletions

View File

@ -612,12 +612,12 @@ class wp_xmlrpc_server extends IXR_Server {
'option' => 'large_size_h', 'option' => 'large_size_h',
), ),
'default_comment_status' => array( 'default_comment_status' => array(
'desc' => __( 'Allow people to submit comments on new posts' ), 'desc' => __( 'Allow people to submit comments on new posts.' ),
'readonly' => false, 'readonly' => false,
'option' => 'default_comment_status', 'option' => 'default_comment_status',
), ),
'default_ping_status' => array( 'default_ping_status' => array(
'desc' => __( 'Allow link notifications from other blogs (pingbacks and trackbacks) on new posts' ), 'desc' => __( 'Allow link notifications from other blogs (pingbacks and trackbacks) on new posts.' ),
'readonly' => false, 'readonly' => false,
'option' => 'default_ping_status', 'option' => 'default_ping_status',
), ),

View File

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