Correct grammar error in WP_Date_Query error message.

Props Offereins.
See #25834.
Built from https://develop.svn.wordpress.org/trunk@30301


git-svn-id: http://core.svn.wordpress.org/trunk@30300 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Boone Gorges 2014-11-11 14:56:24 +00:00
parent 4cf91d7c1d
commit 5fe8fa2b40
2 changed files with 2 additions and 2 deletions

View File

@ -386,7 +386,7 @@ class WP_Date_Query {
$error = sprintf(
/* translators: Date query invalid date message: 1: invalid value, 2: type of value, 3: minimum valid value, 4: maximum valid value */
__( 'Invalid value %1$s for %2$s. Expected value should between %3$s and %4$s.' ),
__( 'Invalid value %1$s for %2$s. Expected value should be between %3$s and %4$s.' ),
'<code>' . esc_html( $date_query[ $key ] ) . '</code>',
'<code>' . esc_html( $key ) . '</code>',
'<code>' . esc_html( $check['min'] ) . '</code>',

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-alpha-30300';
$wp_version = '4.1-alpha-30301';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.