Make WordPress Core

Changeset 39266


Ignore:
Timestamp:
11/16/2016 01:27:10 PM (8 years ago)
Author:
SergeyBiryukov
Message:

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

See #38791.

Location:
trunk/src/wp-includes/rest-api/endpoints
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php

    r39264 r39266  
    12671267
    12681268        $query_params['author'] = array(
    1269             'description'       => __( 'Limit result set to comments assigned to specific user ids. Requires authorization.' ),
     1269            'description'       => __( 'Limit result set to comments assigned to specific user IDs. Requires authorization.' ),
    12701270            'type'              => 'array',
    12711271            'items'             => array(
     
    12751275
    12761276        $query_params['author_exclude'] = array(
    1277             'description'       => __( 'Ensure result set excludes comments assigned to specific user ids. Requires authorization.' ),
     1277            'description'       => __( 'Ensure result set excludes comments assigned to specific user IDs. Requires authorization.' ),
    12781278            'type'              => 'array',
    12791279            'items'             => array(
     
    12961296
    12971297        $query_params['exclude'] = array(
    1298             'description'        => __( 'Ensure result set excludes specific ids.' ),
     1298            'description'        => __( 'Ensure result set excludes specific IDs.' ),
    12991299            'type'               => 'array',
    13001300            'items'              => array(
     
    13051305
    13061306        $query_params['include'] = array(
    1307             'description'        => __( 'Limit result set to specific ids.' ),
     1307            'description'        => __( 'Limit result set to specific IDs.' ),
    13081308            'type'               => 'array',
    13091309            'items'              => array(
     
    13511351        $query_params['parent'] = array(
    13521352            'default'           => array(),
    1353             'description'       => __( 'Limit result set to resources of specific parent ids.' ),
     1353            'description'       => __( 'Limit result set to resources of specific parent IDs.' ),
    13541354            'type'              => 'array',
    13551355            'items'             => array(
     
    13601360        $query_params['parent_exclude'] = array(
    13611361            'default'           => array(),
    1362             'description'       => __( 'Ensure result set excludes specific parent ids.' ),
     1362            'description'       => __( 'Ensure result set excludes specific parent IDs.' ),
    13631363            'type'              => 'array',
    13641364            'items'             => array(
     
    13691369        $query_params['post']   = array(
    13701370            'default'           => array(),
    1371             'description'       => __( 'Limit result set to resources assigned to specific post ids.' ),
     1371            'description'       => __( 'Limit result set to resources assigned to specific post IDs.' ),
    13721372            'type'              => 'array',
    13731373            'items'             => array(
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php

    r39264 r39266  
    19931993
    19941994        $params['exclude'] = array(
    1995             'description'        => __( 'Ensure result set excludes specific ids.' ),
     1995            'description'        => __( 'Ensure result set excludes specific IDs.' ),
    19961996            'type'               => 'array',
    19971997            'items'              => array(
     
    20022002
    20032003        $params['include'] = array(
    2004             'description'        => __( 'Limit result set to specific ids.' ),
     2004            'description'        => __( 'Limit result set to specific IDs.' ),
    20052005            'type'               => 'array',
    20062006            'items'              => array(
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php

    r39264 r39266  
    887887
    888888        $query_params['exclude'] = array(
    889             'description'       => __( 'Ensure result set excludes specific ids.' ),
     889            'description'       => __( 'Ensure result set excludes specific IDs.' ),
    890890            'type'              => 'array',
    891891            'items'             => array(
     
    896896
    897897        $query_params['include'] = array(
    898             'description'       => __( 'Limit result set to specific ids.' ),
     898            'description'       => __( 'Limit result set to specific IDs.' ),
    899899            'type'              => 'array',
    900900            'items'             => array(
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php

    r39264 r39266  
    12501250
    12511251        $query_params['exclude'] = array(
    1252             'description'        => __( 'Ensure result set excludes specific ids.' ),
     1252            'description'        => __( 'Ensure result set excludes specific IDs.' ),
    12531253            'type'               => 'array',
    12541254            'items'              => array(
     
    12591259
    12601260        $query_params['include'] = array(
    1261             'description'        => __( 'Limit result set to specific ids.' ),
     1261            'description'        => __( 'Limit result set to specific IDs.' ),
    12621262            'type'               => 'array',
    12631263            'items'              => array(
Note: See TracChangeset for help on using the changeset viewer.