REST API: After [39252] and [39264], uppercase some more 'ID' references in translatable strings.

See #38791.
Built from https://develop.svn.wordpress.org/trunk@39266


git-svn-id: http://core.svn.wordpress.org/trunk@39206 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2016-11-16 13:28:37 +00:00
parent b20d435803
commit b92266a72b
5 changed files with 14 additions and 14 deletions

View File

@ -1266,7 +1266,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
);
$query_params['author'] = array(
'description' => __( 'Limit result set to comments assigned to specific user ids. Requires authorization.' ),
'description' => __( 'Limit result set to comments assigned to specific user IDs. Requires authorization.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
@ -1274,7 +1274,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
);
$query_params['author_exclude'] = array(
'description' => __( 'Ensure result set excludes comments assigned to specific user ids. Requires authorization.' ),
'description' => __( 'Ensure result set excludes comments assigned to specific user IDs. Requires authorization.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
@ -1295,7 +1295,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
);
$query_params['exclude'] = array(
'description' => __( 'Ensure result set excludes specific ids.' ),
'description' => __( 'Ensure result set excludes specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
@ -1304,7 +1304,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
);
$query_params['include'] = array(
'description' => __( 'Limit result set to specific ids.' ),
'description' => __( 'Limit result set to specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
@ -1350,7 +1350,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
$query_params['parent'] = array(
'default' => array(),
'description' => __( 'Limit result set to resources of specific parent ids.' ),
'description' => __( 'Limit result set to resources of specific parent IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
@ -1359,7 +1359,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
$query_params['parent_exclude'] = array(
'default' => array(),
'description' => __( 'Ensure result set excludes specific parent ids.' ),
'description' => __( 'Ensure result set excludes specific parent IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
@ -1368,7 +1368,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
$query_params['post'] = array(
'default' => array(),
'description' => __( 'Limit result set to resources assigned to specific post ids.' ),
'description' => __( 'Limit result set to resources assigned to specific post IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',

View File

@ -1992,7 +1992,7 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
);
$params['exclude'] = array(
'description' => __( 'Ensure result set excludes specific ids.' ),
'description' => __( 'Ensure result set excludes specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
@ -2001,7 +2001,7 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
);
$params['include'] = array(
'description' => __( 'Limit result set to specific ids.' ),
'description' => __( 'Limit result set to specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',

View File

@ -886,7 +886,7 @@ class WP_REST_Terms_Controller extends WP_REST_Controller {
$query_params['context']['default'] = 'view';
$query_params['exclude'] = array(
'description' => __( 'Ensure result set excludes specific ids.' ),
'description' => __( 'Ensure result set excludes specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
@ -895,7 +895,7 @@ class WP_REST_Terms_Controller extends WP_REST_Controller {
);
$query_params['include'] = array(
'description' => __( 'Limit result set to specific ids.' ),
'description' => __( 'Limit result set to specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',

View File

@ -1249,7 +1249,7 @@ class WP_REST_Users_Controller extends WP_REST_Controller {
$query_params['context']['default'] = 'view';
$query_params['exclude'] = array(
'description' => __( 'Ensure result set excludes specific ids.' ),
'description' => __( 'Ensure result set excludes specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',
@ -1258,7 +1258,7 @@ class WP_REST_Users_Controller extends WP_REST_Controller {
);
$query_params['include'] = array(
'description' => __( 'Limit result set to specific ids.' ),
'description' => __( 'Limit result set to specific IDs.' ),
'type' => 'array',
'items' => array(
'type' => 'integer',

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-beta4-39265';
$wp_version = '4.7-beta4-39266';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.