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/includes/dashboard.php

    r48586 r48991  
    966966                $relative = __( 'Tomorrow' );
    967967            } elseif ( gmdate( 'Y', $time ) !== $year ) {
    968                 /* translators: Date and time format for recent posts on the dashboard, from a different calendar year, see https://www.php.net/date */
     968                /* translators: Date and time format for recent posts on the dashboard, from a different calendar year, see https://www.php.net/manual/datetime.format.php */
    969969                $relative = date_i18n( __( 'M jS Y' ), $time );
    970970            } else {
    971                 /* translators: Date and time format for recent posts on the dashboard, see https://www.php.net/date */
     971                /* translators: Date and time format for recent posts on the dashboard, see https://www.php.net/manual/datetime.format.php */
    972972                $relative = date_i18n( __( 'M jS' ), $time );
    973973            }
Note: See TracChangeset for help on using the changeset viewer.