Make WordPress Core

Ticket #24464: 24464.patch

File 24464.patch, 848 bytes (added by zeo, 11 years ago)

gettext comment time format

  • wp-admin/includes/class-wp-comments-list-table.php

     
    355355                /* translators: 2: comment date, 3: comment time */
    356356                printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>' ), $comment_url,
    357357                        /* translators: comment date format. See http://php.net/date */ get_comment_date( __( 'Y/m/d' ) ),
    358                         /* translators: comment time format. See http://php.net/date */ get_comment_date( get_option( 'time_format' ) ) );
     358                        /* translators: comment time format. See http://php.net/date */ get_comment_date( __( 'g:i a' ) ) );
    359359
    360360                if ( $comment->comment_parent ) {
    361361                        $parent = get_comment( $comment->comment_parent );