Make WordPress Core

Ticket #45191: 45191.patch

File 45191.patch, 1.3 KB (added by mukesh27, 6 years ago)

Working Patch.

  • src/wp-includes/script-loader.php

     
    402402                                                'meridiem'      => (object) $wp_locale->meridiem,
    403403                                                'relative'      => array(
    404404                                                        /* translators: %s: duration */
    405                                                         'future' => __( '%s from now', 'default' ),
     405                                                        'future' => __( '%s from now' ),
    406406                                                        /* translators: %s: duration */
    407                                                         'past'   => __( '%s ago', 'default' ),
     407                                                        'past'   => __( '%s ago' ),
    408408                                                ),
    409409                                        ),
    410410                                        'formats'  => array(
    411                                                 'time'                => get_option( 'time_format', __( 'g:i a', 'default' ) ),
    412                                                 'date'                => get_option( 'date_format', __( 'F j, Y', 'default' ) ),
    413                                                 'datetime'            => __( 'F j, Y g:i a', 'default' ),
    414                                                 'datetimeAbbreviated' => __( 'M j, Y g:i a', 'default' ),
     411                                                'time'                => get_option( 'time_format', __( 'g:i a' ) ),
     412                                                'date'                => get_option( 'date_format', __( 'F j, Y' ) ),
     413                                                'datetime'            => __( 'F j, Y g:i a' ),
     414                                                'datetimeAbbreviated' => __( 'M j, Y g:i a' ),
    415415                                        ),
    416416                                        'timezone' => array(
    417417                                                'offset' => get_option( 'gmt_offset', 0 ),