mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
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:
parent
b20d435803
commit
b92266a72b
@ -1266,7 +1266,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$query_params['author'] = array(
|
$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',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
@ -1274,7 +1274,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$query_params['author_exclude'] = array(
|
$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',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
@ -1295,7 +1295,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$query_params['exclude'] = array(
|
$query_params['exclude'] = array(
|
||||||
'description' => __( 'Ensure result set excludes specific ids.' ),
|
'description' => __( 'Ensure result set excludes specific IDs.' ),
|
||||||
'type' => 'array',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
@ -1304,7 +1304,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$query_params['include'] = array(
|
$query_params['include'] = array(
|
||||||
'description' => __( 'Limit result set to specific ids.' ),
|
'description' => __( 'Limit result set to specific IDs.' ),
|
||||||
'type' => 'array',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
@ -1350,7 +1350,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
|
|||||||
|
|
||||||
$query_params['parent'] = array(
|
$query_params['parent'] = array(
|
||||||
'default' => 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',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
@ -1359,7 +1359,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
|
|||||||
|
|
||||||
$query_params['parent_exclude'] = array(
|
$query_params['parent_exclude'] = array(
|
||||||
'default' => array(),
|
'default' => array(),
|
||||||
'description' => __( 'Ensure result set excludes specific parent ids.' ),
|
'description' => __( 'Ensure result set excludes specific parent IDs.' ),
|
||||||
'type' => 'array',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
@ -1368,7 +1368,7 @@ class WP_REST_Comments_Controller extends WP_REST_Controller {
|
|||||||
|
|
||||||
$query_params['post'] = array(
|
$query_params['post'] = array(
|
||||||
'default' => 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',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
|
@ -1992,7 +1992,7 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$params['exclude'] = array(
|
$params['exclude'] = array(
|
||||||
'description' => __( 'Ensure result set excludes specific ids.' ),
|
'description' => __( 'Ensure result set excludes specific IDs.' ),
|
||||||
'type' => 'array',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
@ -2001,7 +2001,7 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$params['include'] = array(
|
$params['include'] = array(
|
||||||
'description' => __( 'Limit result set to specific ids.' ),
|
'description' => __( 'Limit result set to specific IDs.' ),
|
||||||
'type' => 'array',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
|
@ -886,7 +886,7 @@ class WP_REST_Terms_Controller extends WP_REST_Controller {
|
|||||||
$query_params['context']['default'] = 'view';
|
$query_params['context']['default'] = 'view';
|
||||||
|
|
||||||
$query_params['exclude'] = array(
|
$query_params['exclude'] = array(
|
||||||
'description' => __( 'Ensure result set excludes specific ids.' ),
|
'description' => __( 'Ensure result set excludes specific IDs.' ),
|
||||||
'type' => 'array',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
@ -895,7 +895,7 @@ class WP_REST_Terms_Controller extends WP_REST_Controller {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$query_params['include'] = array(
|
$query_params['include'] = array(
|
||||||
'description' => __( 'Limit result set to specific ids.' ),
|
'description' => __( 'Limit result set to specific IDs.' ),
|
||||||
'type' => 'array',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
|
@ -1249,7 +1249,7 @@ class WP_REST_Users_Controller extends WP_REST_Controller {
|
|||||||
$query_params['context']['default'] = 'view';
|
$query_params['context']['default'] = 'view';
|
||||||
|
|
||||||
$query_params['exclude'] = array(
|
$query_params['exclude'] = array(
|
||||||
'description' => __( 'Ensure result set excludes specific ids.' ),
|
'description' => __( 'Ensure result set excludes specific IDs.' ),
|
||||||
'type' => 'array',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
@ -1258,7 +1258,7 @@ class WP_REST_Users_Controller extends WP_REST_Controller {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$query_params['include'] = array(
|
$query_params['include'] = array(
|
||||||
'description' => __( 'Limit result set to specific ids.' ),
|
'description' => __( 'Limit result set to specific IDs.' ),
|
||||||
'type' => 'array',
|
'type' => 'array',
|
||||||
'items' => array(
|
'items' => array(
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user