From 0ab23c217fa3158d16edf6a0da357b55535d965a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 4 Mar 2016 11:08:27 +0000 Subject: [PATCH] I18N: Move the `aria-label` text in `wp_plugin_update_row()` and `wp_theme_update_row()` to a separate string for easier translation. Add translator comments. Props ramiy. See #36048. Built from https://develop.svn.wordpress.org/trunk@36844 git-svn-id: http://core.svn.wordpress.org/trunk@36811 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/update.php | 61 ++++++++++++++++++++++-------------- wp-includes/version.php | 2 +- 2 files changed, 38 insertions(+), 25 deletions(-) diff --git a/wp-admin/includes/update.php b/wp-admin/includes/update.php index 3b828ed3e0..c4dab00110 100644 --- a/wp-admin/includes/update.php +++ b/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 ) ) ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index d3e3a48d69..37766da6f2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta2-36843'; +$wp_version = '4.5-beta2-36844'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.