diff --git a/src/wp-admin/plugin-editor.php b/src/wp-admin/plugin-editor.php index 7b9cd732a7..3cb53e1e2f 100644 --- a/src/wp-admin/plugin-editor.php +++ b/src/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' ); } ?>