diff --git a/wp-admin/plugin-editor.php b/wp-admin/plugin-editor.php index 7b9cd732a7..3cb53e1e2f 100644 --- a/wp-admin/plugin-editor.php +++ b/wp-admin/plugin-editor.php @@ -181,14 +181,14 @@ default: %s (active)'), $file); + echo sprintf( _x( 'Editing %s', 'plugin' ), '' . $file . '' ) . ' ' . _x( '(active)', 'plugin' ); else - echo sprintf(__('Browsing %s (active)'), $file); + echo sprintf( _x( 'Browsing %s', 'plugin' ), '' . $file . '' ) . ' ' . _x( '(active)', 'plugin' ); } else { if ( is_writeable($real_file) ) - echo sprintf(__('Editing %s (inactive)'), $file); + echo sprintf( _x( 'Editing %s', 'plugin' ), '' . $file . '' ) . ' ' . _x( '(inactive)', 'plugin' ); else - echo sprintf(__('Browsing %s (inactive)'), $file); + echo sprintf( _x( 'Browsing %s', 'plugin' ), '' . $file . '' ) . ' ' . _x( '(inactive)', 'plugin' ); } ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index a4461a9955..ea2cdabb43 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34340'; +$wp_version = '4.4-alpha-34341'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.