diff --git a/wp-admin/plugin-editor.php b/wp-admin/plugin-editor.php index 3cb53e1e2f..39aab63877 100644 --- a/wp-admin/plugin-editor.php +++ b/wp-admin/plugin-editor.php @@ -179,16 +179,22 @@ default:
' . $file . '' ) . ' ' . _x( '(active)', 'plugin' ); - else + } else { + /* translators: %s: File name */ echo sprintf( _x( 'Browsing %s', 'plugin' ), '' . $file . '' ) . ' ' . _x( '(active)', 'plugin' ); + } } else { - if ( is_writeable($real_file) ) + if ( is_writeable( $real_file ) ) { + /* translators: %s: File name */ echo sprintf( _x( 'Editing %s', 'plugin' ), '' . $file . '' ) . ' ' . _x( '(inactive)', 'plugin' ); - else + } else { + /* translators: %s: File name */ echo sprintf( _x( 'Browsing %s', 'plugin' ), '' . $file . '' ) . ' ' . _x( '(inactive)', 'plugin' ); + } } ?>
diff --git a/wp-includes/version.php b/wp-includes/version.php index 045b95958b..e8549f52d8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34468'; +$wp_version = '4.4-alpha-34469'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.