Changeset 51979 for trunk/src/wp-admin/includes/class-wp-site-health.php
- Timestamp:
- 11/02/2021 05:36:34 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r51951 r51979 285 285 $result['description'] = sprintf( 286 286 '<p>%s</p>', 287 __( ' We were unable to check if any new versions of WordPress are available.' )287 __( 'Unable to check if any new versions of WordPress are available.' ) 288 288 ); 289 289 … … 468 468 $unused_plugins 469 469 ), 470 __( 'Inactive plugins are tempting targets for attackers. If you’re not going to use a plugin, we recommend you removeit.' )470 __( 'Inactive plugins are tempting targets for attackers. If you’re not going to use a plugin, you should consider removing it.' ) 471 471 ); 472 472 … … 635 635 sprintf( 636 636 /* translators: 1: The currently active theme. 2: The active theme's parent theme. */ 637 __( 'To enhance your site’s security, we recommend you removeany themes you’re not using. You should keep your current theme, %1$s, and %2$s, its parent theme.' ),637 __( 'To enhance your site’s security, you should consider removing any themes you’re not using. You should keep your current theme, %1$s, and %2$s, its parent theme.' ), 638 638 $active_theme->name, 639 639 $active_theme->parent()->name … … 654 654 sprintf( 655 655 /* translators: 1: The default theme for WordPress. 2: The currently active theme. 3: The active theme's parent theme. */ 656 __( 'To enhance your site’s security, we recommend you removeany themes you’re not using. You should keep %1$s, the default WordPress theme, %2$s, your current theme, and %3$s, its parent theme.' ),656 __( 'To enhance your site’s security, you should consider removing any themes you’re not using. You should keep %1$s, the default WordPress theme, %2$s, your current theme, and %3$s, its parent theme.' ), 657 657 $default_theme ? $default_theme->name : WP_DEFAULT_THEME, 658 658 $active_theme->name, … … 680 680 $active_theme->name 681 681 ), 682 __( ' We recommendremoving any unused themes to enhance your site’s security.' )682 __( 'You should consider removing any unused themes to enhance your site’s security.' ) 683 683 ); 684 684 } else { … … 696 696 $active_theme->name 697 697 ), 698 __( ' We recommendremoving any unused themes to enhance your site’s security.' )698 __( 'You should consider removing any unused themes to enhance your site’s security.' ) 699 699 ); 700 700 } … … 1201 1201 sprintf( 1202 1202 /* translators: 1: The database engine in use (MySQL or MariaDB). 2: Database server recommended version number. */ 1203 __( 'For optimal performance and security reasons, we recommendrunning %1$s version %2$s or higher. Contact your web hosting company to correct this.' ),1203 __( 'For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.' ), 1204 1204 ( $this->is_mariadb ? 'MariaDB' : 'MySQL' ), 1205 1205 $this->health_check_mysql_rec_version
Note: See TracChangeset
for help on using the changeset viewer.