diff --git a/src/wp-admin/includes/update.php b/src/wp-admin/includes/update.php index 3b828ed3e0..c4dab00110 100644 --- a/src/wp-admin/includes/update.php +++ b/src/wp-admin/includes/update.php @@ -338,29 +338,34 @@ function wp_plugin_update_row( $file, $plugin_data ) { echo '
'; if ( ! current_user_can( 'update_plugins' ) ) { - /* translators: 1: plugin name, 2: details URL, 3: escaped plugin name, 4: version number */ - printf( __( 'There is a new version of %1$s available. View version %4$s details.' ), + /* translators: 1: plugin name, 2: details URL, 3: accessibility text, 4: version number */ + printf( __( 'There is a new version of %1$s available. View version %4$s details.' ), $plugin_name, esc_url( $details_url ), - esc_attr( $plugin_name ), + /* translators: 1: plugin name, 2: version number */ + esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $plugin_name, $r->new_version ) ), $r->new_version ); } elseif ( empty( $r->package ) ) { - /* translators: 1: plugin name, 2: details URL, 3: escaped plugin name, 4: version number */ - printf( __( 'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.' ), + /* translators: 1: plugin name, 2: details URL, 3: accessibility text, 4: version number */ + printf( __( 'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.' ), $plugin_name, esc_url( $details_url ), - esc_attr( $plugin_name ), + /* translators: 1: plugin name, 2: version number */ + esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $plugin_name, $r->new_version ) ), $r->new_version ); } else { - /* translators: 1: plugin name, 2: details URL, 3: escaped plugin name, 4: version number, 5: update URL */ - printf( __( 'There is a new version of %1$s available. View version %4$s details or update now.' ), + /* translators: 1: plugin name, 2: details URL, 3: accessibility text, 4: version number, 5: update URL, 6: accessibility text */ + printf( __( 'There is a new version of %1$s available. View version %4$s details or update now.' ), $plugin_name, esc_url( $details_url ), - esc_attr( $plugin_name ), + /* translators: 1: plugin name, 2: version number */ + esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $plugin_name, $r->new_version ) ), $r->new_version, - wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file, 'upgrade-plugin_' . $file ) + wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file, 'upgrade-plugin_' . $file ), + /* translators: %û: plugin name */ + esc_attr( sprintf( __( 'Update %s now' ), $plugin_name ) ) ); } /** @@ -450,8 +455,11 @@ function wp_theme_update_row( $theme_key, $theme ) { $current = get_site_transient( 'update_themes' ); if ( !isset( $current->response[ $theme_key ] ) ) return false; + $r = $current->response[ $theme_key ]; + $theme_name = $theme['Name']; + $details_url = add_query_arg( array( 'TB_iframe' => 'true', 'width' => 1024, 'height' => 800 ), $current->response[ $theme_key ]['url'] ); $wp_list_table = _get_list_table('WP_MS_Themes_List_Table'); @@ -460,29 +468,34 @@ function wp_theme_update_row( $theme_key, $theme ) { echo '
'; if ( ! current_user_can('update_themes') ) { - /* translators: 1: theme name, 2: details URL, 3: escaped theme name, 4: version number */ - printf( __( 'There is a new version of %1$s available. View version %4$s details.'), - $theme['Name'], + /* translators: 1: theme name, 2: details URL, 3: accessibility text, 4: version number */ + printf( __( 'There is a new version of %1$s available. View version %4$s details.'), + $theme_name, esc_url( $details_url ), - esc_attr( $theme['Name'] ), - $r->new_version + /* translators: 1: theme name, 2: version number */ + esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $theme_name, $r['new_version'] ) ), + $r['new_version'] ); } elseif ( empty( $r['package'] ) ) { - /* translators: 1: theme name, 2: details URL, 3: escaped theme name, 4: version number */ - printf( __( 'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.' ), - $theme['Name'], + /* translators: 1: theme name, 2: details URL, 3: accessibility text, 4: version number */ + printf( __( 'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.' ), + $theme_name, esc_url( $details_url ), - esc_attr( $theme['Name'] ), + /* translators: 1: theme name, 2: version number */ + esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $theme_name, $r['new_version'] ) ), $r['new_version'] ); } else { - /* translators: 1: theme name, 2: details URL, 3: escaped theme name, 4: version number, 5: update URL */ - printf( __( 'There is a new version of %1$s available. View version %4$s details or update now.' ), - $theme['Name'], + /* translators: 1: theme name, 2: details URL, 3: accessibility text, 4: version number, 5: update URL, 6: accessibility text */ + printf( __( 'There is a new version of %1$s available. View version %4$s details or update now.' ), + $theme_name, esc_url( $details_url ), - esc_attr( $theme['Name'] ), + /* translators: 1: theme name, 2: version number */ + esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $theme_name, $r['new_version'] ) ), $r['new_version'], - wp_nonce_url( self_admin_url( 'update.php?action=upgrade-theme&theme=' ) . $theme_key, 'upgrade-theme_' . $theme_key ) + wp_nonce_url( self_admin_url( 'update.php?action=upgrade-theme&theme=' ) . $theme_key, 'upgrade-theme_' . $theme_key ), + /* translators: %s: theme name */ + esc_attr( sprintf( __( 'Update %s now' ), $theme_name ) ) ); } /**