Make WordPress Core


Ignore:
Timestamp:
09/08/2019 11:23:26 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Accessibility: Posts, Post Types: Replace @ with at in the displayed date format.

The @ symbol makes sense in the context of email addresses, but does not have a universal meaning in the context of dates.

Props birgire, afercia, audrasjb, SergeyBiryukov.
Fixes #47832.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/template.php

    r45932 r46083  
    825825    echo '<div class="timestamp-wrap">';
    826826    /* translators: 1: Month, 2: Day, 3: Year, 4: Hour, 5: Minute. */
    827     printf( __( '%1$s %2$s, %3$s @ %4$s:%5$s' ), $month, $day, $year, $hour, $minute );
     827    printf( __( '%1$s %2$s, %3$s at %4$s:%5$s' ), $month, $day, $year, $hour, $minute );
    828828
    829829    echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />';
Note: See TracChangeset for help on using the changeset viewer.