Site health info tab: replace "Not calculated" with "Loading..." in the "Directories and Sizes" section (that's an existing string and wouldn't cause problems for translators).

See #46707.
Built from https://develop.svn.wordpress.org/trunk@45237


git-svn-id: http://core.svn.wordpress.org/trunk@45046 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2019-04-17 21:26:52 +00:00
parent 7ec74901d3
commit 2a5c2a2cce
2 changed files with 14 additions and 14 deletions

View File

@ -389,7 +389,7 @@ class WP_Debug_Data {
); );
} }
$not_calculated = __( 'Not calculated' ); $loading = __( 'Loading…' );
$info['wp-paths-sizes']['fields'] = array( $info['wp-paths-sizes']['fields'] = array(
'wordpress_path' => array( 'wordpress_path' => array(
@ -398,8 +398,8 @@ class WP_Debug_Data {
), ),
'wordpress_size' => array( 'wordpress_size' => array(
'label' => __( 'WordPress directory size' ), 'label' => __( 'WordPress directory size' ),
'value' => $not_calculated, 'value' => $loading,
'debug' => 'not calculated', 'debug' => 'loading...',
), ),
'uploads_path' => array( 'uploads_path' => array(
'label' => __( 'Uploads directory location' ), 'label' => __( 'Uploads directory location' ),
@ -407,8 +407,8 @@ class WP_Debug_Data {
), ),
'uploads_size' => array( 'uploads_size' => array(
'label' => __( 'Uploads directory size' ), 'label' => __( 'Uploads directory size' ),
'value' => $not_calculated, 'value' => $loading,
'debug' => 'not calculated', 'debug' => 'loading...',
), ),
'themes_path' => array( 'themes_path' => array(
'label' => __( 'Themes directory location' ), 'label' => __( 'Themes directory location' ),
@ -416,8 +416,8 @@ class WP_Debug_Data {
), ),
'themes_size' => array( 'themes_size' => array(
'label' => __( 'Themes directory size' ), 'label' => __( 'Themes directory size' ),
'value' => $not_calculated, 'value' => $loading,
'debug' => 'not calculated', 'debug' => 'loading...',
), ),
'plugins_path' => array( 'plugins_path' => array(
'label' => __( 'Plugins directory location' ), 'label' => __( 'Plugins directory location' ),
@ -425,18 +425,18 @@ class WP_Debug_Data {
), ),
'plugins_size' => array( 'plugins_size' => array(
'label' => __( 'Plugins directory size' ), 'label' => __( 'Plugins directory size' ),
'value' => $not_calculated, 'value' => $loading,
'debug' => 'not calculated', 'debug' => 'loading...',
), ),
'database_size' => array( 'database_size' => array(
'label' => __( 'Database size' ), 'label' => __( 'Database size' ),
'value' => $not_calculated, 'value' => $loading,
'debug' => 'not calculated', 'debug' => 'loading...',
), ),
'total_size' => array( 'total_size' => array(
'label' => __( 'Total installation size' ), 'label' => __( 'Total installation size' ),
'value' => $not_calculated, 'value' => $loading,
'debug' => 'not calculated', 'debug' => 'loading...',
), ),
); );

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.2-beta3-45236'; $wp_version = '5.2-beta3-45237';
/** /**
* 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.