Changeset 45932 for trunk/src/wp-admin/includes/class-wp-site-health.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r45904 r45932 205 205 206 206 $result['label'] = sprintf( 207 / / translators: %s: Your current version of WordPress.207 /* translators: %s: Your current version of WordPress. */ 208 208 __( 'WordPress version %s' ), 209 209 $core_current_version … … 230 230 231 231 $result['label'] = sprintf( 232 / / translators: %s: The latest version of WordPress available.232 /* translators: %s: The latest version of WordPress available. */ 233 233 __( 'WordPress update available (%s)' ), 234 234 $update->version … … 260 260 $result['status'] = 'good'; 261 261 $result['label'] = sprintf( 262 / / translators: %s: The current version of WordPress installed on this site.262 /* translators: %s: The current version of WordPress installed on this site. */ 263 263 __( 'Your WordPress version is up to date (%s)' ), 264 264 $core_current_version … … 654 654 $result = array( 655 655 'label' => sprintf( 656 / / translators: %s: The current PHP version.656 /* translators: %s: The current PHP version. */ 657 657 __( 'PHP is up to date (%s)' ), 658 658 PHP_VERSION … … 671 671 esc_url( wp_get_update_php_url() ), 672 672 __( 'Learn more about updating PHP' ), 673 /* translators: accessibility text*/673 /* translators: Accessibility text. */ 674 674 __( '(opens in a new tab)' ) 675 675 ), … … 763 763 sprintf( 764 764 ' <span class="screen-reader-text">%s</span><span aria-hidden="true" class="dashicons dashicons-external"></span>', 765 /* translators: accessibility text*/765 /* translators: Accessibility text. */ 766 766 __( '(opens in a new tab)' ) 767 767 ) … … 963 963 esc_url( __( 'https://wordpress.org/about/requirements/' ) ), 964 964 __( 'Learn more about what WordPress requires to run.' ), 965 /* translators: accessibility text*/965 /* translators: Accessibility text. */ 966 966 __( '(opens in a new tab)' ) 967 967 ), … … 1196 1196 esc_url( __( 'https://wordpress.org/support' ) ), 1197 1197 __( 'Get help resolving this issue.' ), 1198 /* translators: accessibility text*/1198 /* translators: Accessibility text. */ 1199 1199 __( '(opens in a new tab)' ) 1200 1200 ); … … 1234 1234 esc_url( __( 'https://wordpress.org/support/article/debugging-in-wordpress/' ) ), 1235 1235 __( 'Learn more about debugging in WordPress.' ), 1236 /* translators: accessibility text*/1236 /* translators: Accessibility text. */ 1237 1237 __( '(opens in a new tab)' ) 1238 1238 ), … … 1303 1303 esc_url( __( 'https://wordpress.org/support/article/why-should-i-use-https/' ) ), 1304 1304 __( 'Learn more about why you should use HTTPS' ), 1305 /* translators: accessibility text*/1305 /* translators: Accessibility text. */ 1306 1306 __( '(opens in a new tab)' ) 1307 1307 ), … … 1321 1321 '<p>%s</p>', 1322 1322 sprintf( 1323 /* translators: %s: URL to Settings > General to change options. */1323 /* translators: %s: URL to General Settings screen. */ 1324 1324 __( 'You are accessing this website using HTTPS, but your <a href="%s">WordPress Address</a> is not set up to use HTTPS by default.' ), 1325 1325 esc_url( admin_url( 'options-general.php' ) ) … … 1739 1739 '<p>%s</p>', 1740 1740 sprintf( 1741 /* translators: %s: the name of the query parameter being tested. */1741 /* translators: %s: The name of the query parameter being tested. */ 1742 1742 __( 'The REST API did not process the %s query parameter correctly.' ), 1743 1743 '<code>context</code>' … … 2018 2018 __( 'The loopback request to your site failed, this means features relying on them are not currently working as expected.' ), 2019 2019 sprintf( 2020 / / translators: 1: The HTTP response code. 2: The error message returned.2020 /* translators: 1: The HTTP response code. 2: The error message returned. */ 2021 2021 __( 'Error: [%1$s] %2$s' ), 2022 2022 wp_remote_retrieve_response_code( $r ), … … 2031 2031 'status' => 'recommended', 2032 2032 'message' => sprintf( 2033 / / translators: %d: The HTTP response code returned.2033 /* translators: %d: The HTTP response code returned. */ 2034 2034 __( 'The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.' ), 2035 2035 wp_remote_retrieve_response_code( $r )
Note: See TracChangeset
for help on using the changeset viewer.