diff --git a/wp-includes/rest-api/rest-functions.php b/wp-includes/rest-api/rest-functions.php index c3f6be0d43..4dd69dd805 100644 --- a/wp-includes/rest-api/rest-functions.php +++ b/wp-includes/rest-api/rest-functions.php @@ -361,8 +361,10 @@ function rest_ensure_response( $response ) { */ function rest_handle_deprecated_function( $function, $replacement, $version ) { if ( ! empty( $replacement ) ) { + /* translators: 1: function name, 2: WordPress version number, 3: new function name */ $string = sprintf( __( '%1$s (since %2$s; use %3$s instead)' ), $function, $version, $replacement ); } else { + /* translators: 1: function name, 2: WordPress version number */ $string = sprintf( __( '%1$s (since %2$s; no alternative available)' ), $function, $version ); } @@ -380,8 +382,10 @@ function rest_handle_deprecated_function( $function, $replacement, $version ) { */ function rest_handle_deprecated_argument( $function, $replacement, $version ) { if ( ! empty( $replacement ) ) { + /* translators: 1: function name, 2: WordPress version number, 3: new argument name */ $string = sprintf( __( '%1$s (since %2$s; %3$s)' ), $function, $version, $replacement ); } else { + /* translators: 1: function name, 2: WordPress version number */ $string = sprintf( __( '%1$s (since %2$s; no alternative available)' ), $function, $version ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 5a4f60761b..aff1c6bba5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta2-35432'; +$wp_version = '4.4-beta2-35433'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.