Changeset 47413
- Timestamp:
- 03/03/2020 11:20:00 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r47410 r47413 1816 1816 <?php if ( false === $get_issues ) : ?> 1817 1817 <p> 1818 <?php _e( 'No Site Health information has been gathered yet, you can do so by visiting the Site Health screen, alternatively the checks will run periodically.' ); ?>1819 </p>1820 1821 <p>1822 1818 <?php 1823 1819 printf( 1824 1820 /* translators: %s: URL to Site Health screen. */ 1825 __( ' <a href="%s">Visit the Site Health screen</a> to gather information on about your site.' ),1821 __( 'Site health checks will automatically run periodically to gather information about your site. You can also <a href="%s">visit the Site Health screen</a> to gather information on about your site now.' ), 1826 1822 esc_url( admin_url( 'site-health.php' ) ) 1827 1823 ); 1828 1824 ?> 1829 1825 </p> 1830 1831 1826 <?php else : ?> 1832 1827 <p> 1833 1828 <?php if ( $issue_counts['critical'] > 0 ) : ?> 1834 <?php _e( 'Your site has critical issues that should be addressed as soon as possible to improve the performance or security of your website.' ); ?>1829 <?php _e( 'Your site has critical issues that should be addressed as soon as possible to improve its performance and security.' ); ?> 1835 1830 <?php elseif ( $issues_total <= 0 ) : ?> 1836 1831 <?php _e( 'Great job! Your site currently passes all site health checks.' ); ?> 1837 1832 <?php else : ?> 1838 <?php _e( 'Your site health is looking quite good, but there are still some things you can do to improve the performance and security of your website.' ); ?>1833 <?php _e( 'Your site’s health is looking good, but there are still some things you can do to improve its performance and security.' ); ?> 1839 1834 <?php endif; ?> 1840 1835 </p> … … 1846 1841 printf( 1847 1842 /* translators: 1: Number of issues. 2: URL to Site Health screen. */ 1848 __( 'Take a look at the <strong>%1$d items</strong> on the <a href="%2$s">Site Health Status screen</a>.' ), 1843 _n( 1844 'Take a look at the <strong>%1$d item</strong> on the <a href="%2$s">Site Health screen</a>.', 1845 'Take a look at the <strong>%1$d items</strong> on the <a href="%2$s">Site Health screen</a>.', 1846 $issues_total 1847 ), 1849 1848 $issues_total, 1850 1849 esc_url( admin_url( 'site-health.php' ) )
Note: See TracChangeset
for help on using the changeset viewer.