Make WordPress Core


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

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

See #38791.

File:
1 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(
Note: See TracChangeset for help on using the changeset viewer.