Changeset 48287
- Timestamp:
- 07/03/2020 09:57:51 PM (5 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r48198 r48287 216 216 * during an Ajax call, as the filter is never introduced then. 217 217 * 218 * This filter overrides a normalpage request if it's made by an admin through the Ajax call218 * This filter overrides a standard page request if it's made by an admin through the Ajax call 219 219 * with the right query argument to check for this. 220 220 * … … 693 693 $result['description'] .= sprintf( 694 694 '<p>%s</p>', 695 __( 'Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your normaltheme.' )695 __( 'Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.' ) 696 696 ); 697 697 } … … 982 982 if ( isset( $module['fallback_for'] ) ) { 983 983 /* 984 * If that other function has a failure, mark this module as required for normal operations.984 * If that other function has a failure, mark this module as required for usual operations. 985 985 * If that other function hasn't failed, skip this test as it's only a fallback. 986 986 */ … … 1454 1454 sprintf( 1455 1455 /* translators: %s: WP_DEBUG_LOG */ 1456 __( 'The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to normal users.' ),1456 __( 'The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.' ), 1457 1457 '<code>WP_DEBUG_LOG</code>' 1458 1458 ) -
trunk/src/wp-admin/update-core.php
r48172 r48287 275 275 // Don't show the maintenance mode notice when we are only showing a single re-install option. 276 276 if ( $updates && ( count( $updates ) > 1 || 'latest' !== $updates[0]->response ) ) { 277 echo '<p>' . __( 'While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, your site will return to normal.' ) . '</p>';277 echo '<p>' . __( 'While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.' ) . '</p>'; 278 278 } elseif ( ! $updates ) { 279 279 list( $normalized_version ) = explode( '-', $wp_version );
Note: See TracChangeset
for help on using the changeset viewer.