diff --git a/wp-includes/locale.php b/wp-includes/locale.php index 7541b8471b..1319c49dae 100644 --- a/wp-includes/locale.php +++ b/wp-includes/locale.php @@ -195,7 +195,8 @@ class WP_Locale { * @since 3.8.0 */ public function rtl_src_admin_notice() { - echo '

' . 'The build directory of the develop repository must be used for RTL.' . '

'; + /* translators: %s: Name of the directory (build) */ + echo '

' . sprintf( __( 'The %s directory of the develop repository must be used for RTL.' ), 'build' ) . '

'; } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 76e41f4318..6259a51de5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-33006'; +$wp_version = '4.3-alpha-33007'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.