From b214be20ad0984dc23dba1c0c106669319fb6f63 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Tue, 30 Jun 2015 20:21:24 +0000 Subject: [PATCH] Make `WP_Locale::rtl_src_admin_notice()` translatable. props jrf. see #32021. Built from https://develop.svn.wordpress.org/trunk@33007 git-svn-id: http://core.svn.wordpress.org/trunk@32978 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/locale.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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.