';
@@ -204,18 +206,26 @@
'available' => false,
)
);
+
if ( $dismissed ) {
-
$show_text = esc_js( __( 'Show hidden updates' ) );
$hide_text = esc_js( __( 'Hide hidden updates' ) );
?>
-
+
';
echo '';
@@ -525,7 +535,7 @@
$compatible_php = is_php_version_compatible( $requires_php );
if ( ! $compatible_php && current_user_can( 'update_php' ) ) {
- $compat .= '
' . __( 'This update doesn’t work with your version of PHP.' ) . ' ';
+ $compat .= '
' . __( 'This update does not work with your version of PHP.' ) . ' ';
$compat .= sprintf(
/* translators: %s: URL to Update PHP page. */
__( 'Learn more about updating PHP.' ),
@@ -671,7 +681,7 @@
$compat = '';
if ( ! $compatible_wp && ! $compatible_php ) {
- $compat .= '
' . __( 'This update doesn’t work with your versions of WordPress and PHP.' ) . ' ';
+ $compat .= '
' . __( 'This update does not work with your versions of WordPress and PHP.' ) . ' ';
if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
$compat .= sprintf(
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
@@ -705,7 +715,7 @@
}
}
} elseif ( ! $compatible_wp ) {
- $compat .= '
' . __( 'This update doesn’t work with your version of WordPress.' ) . ' ';
+ $compat .= '
' . __( 'This update does not work with your version of WordPress.' ) . ' ';
if ( current_user_can( 'update_core' ) ) {
$compat .= sprintf(
/* translators: %s: URL to WordPress Updates screen. */
@@ -714,7 +724,7 @@
);
}
} elseif ( ! $compatible_php ) {
- $compat .= '
' . __( 'This update doesn’t work with your version of PHP.' ) . ' ';
+ $compat .= '
' . __( 'This update does not work with your version of PHP.' ) . ' ';
if ( current_user_can( 'update_php' ) ) {
$compat .= sprintf(
/* translators: %s: URL to Update PHP page. */
@@ -745,7 +755,7 @@
-
+
display( 'Name' ); ?>
';
/* translators: 1: Date, 2: Time. */
- printf( __( 'Last checked on %1$s at %2$s.' ), date_i18n( __( 'F j, Y' ), $last_update_check ), date_i18n( __( 'g:i a' ), $last_update_check ) );
+ printf( __( 'Last checked on %1$s at %2$s.' ), date_i18n( __( 'F j, Y' ), $last_update_check ), date_i18n( __( 'g:i a T' ), $last_update_check ) );
echo ' ' . __( 'Check again.' ) . '';
echo ' ';
@@ -1136,6 +1146,7 @@
$url = 'update.php?action=update-selected&plugins=' . urlencode( implode( ',', $plugins ) );
$url = wp_nonce_url( $url, 'bulk-update-plugins' );
+ // Used in the HTML title tag.
$title = __( 'Update Plugins' );
require_once ABSPATH . 'wp-admin/admin-header.php';
@@ -1176,6 +1187,7 @@
$url = 'update.php?action=update-selected-themes&themes=' . urlencode( implode( ',', $themes ) );
$url = wp_nonce_url( $url, 'bulk-update-themes' );
+ // Used in the HTML title tag.
$title = __( 'Update Themes' );
require_once ABSPATH . 'wp-admin/admin-header.php';
|