I18N: Remove PHP function name from translatable string in WP_Debug_Data.

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


git-svn-id: http://core.svn.wordpress.org/trunk@45210 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-05-24 01:41:52 +00:00
parent e3bb526606
commit 729d4a4942
2 changed files with 6 additions and 2 deletions

View File

@ -605,7 +605,11 @@ class WP_Debug_Data {
if ( ! function_exists( 'ini_get' ) ) {
$info['wp-server']['fields']['ini_get'] = array(
'label' => __( 'Server settings' ),
'value' => __( 'Unable to determine some settings, as the ini_get() function has been disabled.' ),
'value' => sprintf(
/* translators: %s: ini_get() */
__( 'Unable to determine some settings, as the %s function has been disabled.' ),
'ini_get()'
),
'debug' => 'ini_get() is disabled',
);
} else {

View File

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