Make WordPress Core


Ignore:
Timestamp:
09/03/2019 12:39:13 AM (5 years ago)
Author:
SergeyBiryukov
Message:

I18N: Capitalize translator comments consistently, add trailing punctuation.

Includes minor code layout fixes.

See #44360.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-date-query.php

    r45926 r45932  
    397397                if ( ! is_numeric( $_value ) || ! $is_between ) {
    398398                    $error = sprintf(
    399                         /* translators: Date query invalid date message: 1: invalid value, 2: type of value, 3: minimum valid value, 4: maximum valid value */
     399                        /* translators: Date query invalid date message. 1: Invalid value, 2: Type of value, 3: Minimum valid value, 4: Maximum valid value. */
    400400                        __( 'Invalid value %1$s for %2$s. Expected value should be between %3$s and %4$s.' ),
    401401                        '<code>' . esc_html( $_value ) . '</code>',
     
    427427            if ( ! wp_checkdate( $date_query['month'], $date_query['day'], $date_query['year'], sprintf( '%s-%s-%s', $date_query['year'], $date_query['month'], $date_query['day'] ) ) ) {
    428428                $day_month_year_error_msg = sprintf(
    429                     /* translators: 1: year, 2: month, 3: day of month */
     429                    /* translators: 1: Year, 2: Month, 3: Day of month. */
    430430                    __( 'The following values do not describe a valid date: year %1$s, month %2$s, day %3$s.' ),
    431431                    '<code>' . esc_html( $date_query['year'] ) . '</code>',
     
    443443            if ( ! wp_checkdate( $date_query['month'], $date_query['day'], 2012, sprintf( '2012-%s-%s', $date_query['month'], $date_query['day'] ) ) ) {
    444444                $day_month_year_error_msg = sprintf(
    445                     /* translators: 1: month, 2: day of month */
     445                    /* translators: 1: Month, 2: Day of month. */
    446446                    __( 'The following values do not describe a valid date: month %1$s, day %2$s.' ),
    447447                    '<code>' . esc_html( $date_query['month'] ) . '</code>',
Note: See TracChangeset for help on using the changeset viewer.