Make WordPress Core


Ignore:
Timestamp:
09/18/2020 10:35:41 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Docs: Update the URL for PHP date formats table in translator comments.

Props hareesh-pillai, iandunn.
Fixes #51332.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-form-comment.php

    r48594 r48991  
    125125    /* translators: 1: Comment date, 2: Comment time. */
    126126    __( '%1$s at %2$s' ),
    127     /* translators: Publish box date format, see https://www.php.net/date */
     127    /* translators: Publish box date format, see https://www.php.net/manual/datetime.format.php */
    128128    date_i18n( _x( 'M j, Y', 'publish box date format' ), strtotime( $comment->comment_date ) ),
    129     /* translators: Publish box time format, see https://www.php.net/date */
     129    /* translators: Publish box time format, see https://www.php.net/manual/datetime.format.php */
    130130    date_i18n( _x( 'H:i', 'publish box time format' ), strtotime( $comment->comment_date ) )
    131131);
Note: See TracChangeset for help on using the changeset viewer.