Make WordPress Core

Ticket #30864: 30864.3.patch

File 30864.3.patch, 8.0 KB (added by iseulde, 9 years ago)
  • src/wp-admin/admin.php

     
    8989
    9090set_screen_options();
    9191
    92 $date_format = get_option('date_format');
    93 $time_format = get_option('time_format');
     92$date_format = __( 'F j, Y' );
     93$time_format = __( 'g:i a' );
    9494
    9595wp_enqueue_script( 'common' );
    9696
  • src/wp-admin/comment.php

     
    199199                        printf( __( '%1$s at %2$s' ),
    200200                                /* translators: comment date format. See http://php.net/date */
    201201                                get_comment_date( __( 'Y/m/d' ), $comment ),
    202                                 get_comment_date( get_option( 'time_format' ), $comment )
     202                                get_comment_date( __( 'g:i a' ), $comment )
    203203                        );
    204204                ?></a>
    205205        </td>
  • src/wp-admin/edit-form-advanced.php

     
    631631        if ( 'auto-draft' != $post->post_status ) {
    632632                echo '<span id="last-edit">';
    633633                if ( $last_user = get_userdata( get_post_meta( $post_ID, '_edit_last', true ) ) ) {
    634                         printf(__('Last edited by %1$s on %2$s at %3$s'), esc_html( $last_user->display_name ), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
     634                        printf( __( 'Last edited by %1$s on %2$s at %3$s' ), esc_html( $last_user->display_name ), mysql2date( __( 'F j, Y' ), $post->post_modified ), mysql2date( __( 'g:i a' ), $post->post_modified ) );
    635635                } else {
    636                         printf(__('Last edited on %1$s at %2$s'), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
     636                        printf( __( 'Last edited on %1$s at %2$s' ), mysql2date( __( 'F j, Y' ), $post->post_modified ), mysql2date( __( 'g:i a' ), $post->post_modified ) );
    637637                }
    638638                echo '</span>';
    639639        } ?>
  • src/wp-admin/includes/ajax-actions.php

     
    12371237                        $post_data['post_type'] = $post->post_type;
    12381238                        $post_data['post_status'] = 'draft';
    12391239                        $now = current_time('timestamp', 1);
    1240                         $post_data['post_title'] = sprintf( __( 'Draft created on %1$s at %2$s' ), date( get_option( 'date_format' ), $now ), date( get_option( 'time_format' ), $now ) );
     1240                        $post_data['post_title'] = sprintf( __( 'Draft created on %1$s at %2$s' ), date( __( 'F j, Y' ), $now ), date( __( 'g:i a' ), $now ) );
    12411241
    12421242                        $pid = edit_post( $post_data );
    12431243                        if ( $pid ) {
     
    22272227        }
    22282228
    22292229        if ( $post ) {
    2230                 $last_date = mysql2date( get_option('date_format'), $post->post_modified );
    2231                 $last_time = mysql2date( get_option('time_format'), $post->post_modified );
     2230                $last_date = mysql2date( __( 'F j, Y' ), $post->post_modified );
     2231                $last_time = mysql2date( __( 'g:i a' ), $post->post_modified );
    22322232        } else {
    2233                 $last_date = date_i18n( get_option('date_format') );
    2234                 $last_time = date_i18n( get_option('time_format') );
     2233                $last_date = date_i18n( __( 'F j, Y' ) );
     2234                $last_time = date_i18n( __( 'g:i a' ) );
    22352235        }
    22362236
    22372237        if ( $last_id = get_post_meta( $post_id, '_edit_last', true ) ) {
  • src/wp-admin/includes/class-wp-comments-list-table.php

     
    720720                printf( __( '%1$s at %2$s' ),
    721721                        /* translators: comment date format. See http://php.net/date */
    722722                        get_comment_date( __( 'Y/m/d' ), $comment ),
    723                         get_comment_date( get_option( 'time_format' ), $comment )
     723                        get_comment_date( __( 'g:i a' ), $comment )
    724724                );
    725725                echo '</a>';
    726726                echo '</div>';
  • src/wp-admin/includes/dashboard.php

     
    550550                $title = _draft_or_post_title( $draft->ID );
    551551                echo "<li>\n";
    552552                echo '<div class="draft-title"><a href="' . esc_url( $url ) . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $title ) ) . '">' . esc_html( $title ) . '</a>';
    553                 echo '<time datetime="' . get_the_time( 'c', $draft ) . '">' . get_the_time( get_option( 'date_format' ), $draft ) . '</time></div>';
     553                echo '<time datetime="' . get_the_time( 'c', $draft ) . '">' . get_the_time( __( 'F j, Y' ), $draft ) . '</time></div>';
    554554                if ( $the_content = wp_trim_words( $draft->post_content, 10 ) ) {
    555555                        echo '<p>' . $the_content . '</p>';
    556556                }
  • src/wp-admin/includes/media.php

     
    14551455                        <td>
    14561456                        <p><strong>" . __('File name:') . "</strong> $filename</p>
    14571457                        <p><strong>" . __('File type:') . "</strong> $post->post_mime_type</p>
    1458                         <p><strong>" . __('Upload date:') . "</strong> " . mysql2date( get_option('date_format'), $post->post_date ). '</p>';
     1458                        <p><strong>" . __('Upload date:') . "</strong> " . mysql2date( __( 'F j, Y' ), $post->post_date ). '</p>';
    14591459                        if ( !empty( $media_dims ) )
    14601460                                $item .= "<p><strong>" . __('Dimensions:') . "</strong> $media_dims</p>\n";
    14611461
  • src/wp-admin/options-general.php

     
    7373<tr>
    7474<th scope="row"><label for="home"><?php _e('Site Address (URL)') ?></label></th>
    7575<td><input name="home" type="url" id="home" aria-describedby="home-description" value="<?php form_option( 'home' ); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php if ( defined( 'WP_HOME' ) ) echo ' disabled' ?>" />
    76 <?php if ( ! defined( 'WP_HOME' ) ) : ?> 
     76<?php if ( ! defined( 'WP_HOME' ) ) : ?>
    7777<p class="description" id="home-description"><?php _e( 'Enter the address here if you <a href="https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">want your site home page to be different from your WordPress installation directory.</a>' ); ?></p></td>
    7878<?php endif; ?>
    7979</tr>
     
    198198                        // Add the difference between the current offset and the new offset to ts to get the correct transition time from date_i18n().
    199199                        printf( $message,
    200200                                '<code>' . date_i18n(
    201                                         get_option( 'date_format' ) . ' ' . get_option( 'time_format' ),
     201                                        __( 'F j, Y' ) . ' ' . __( 'g:i a' ),
    202202                                        $tr['ts'] + ( $tz_offset - $tr['offset'] )
    203203                                ) . '</code>'
    204204                        );
  • src/wp-admin/update-core.php

     
    574574
    575575        echo '<p>';
    576576        /* translators: %1 date, %2 time. */
    577         printf( __('Last checked on %1$s at %2$s.'), date_i18n( get_option( 'date_format' ) ), date_i18n( get_option( 'time_format' ) ) );
     577        printf( __( 'Last checked on %1$s at %2$s.' ), date_i18n( __( 'F j, Y' ) ), date_i18n( __( 'g:i a' ) ) );
    578578        echo ' &nbsp; <a class="button" href="' . esc_url( self_admin_url('update-core.php?force-check=1') ) . '">' . __( 'Check Again' ) . '</a>';
    579579        echo '</p>';
    580580
  • src/wp-includes/media.php

     
    29792979                'type'        => $type,
    29802980                'subtype'     => $subtype,
    29812981                'icon'        => wp_mime_type_icon( $attachment->ID ),
    2982                 'dateFormatted' => mysql2date( get_option('date_format'), $attachment->post_date ),
     2982                'dateFormatted' => mysql2date( __( 'F j, Y' ), $attachment->post_date ),
    29832983                'nonces'      => array(
    29842984                        'update' => false,
    29852985                        'delete' => false,