Make WordPress Core

Changeset 33340


Ignore:
Timestamp:
07/21/2015 11:39:20 AM (11 years ago)
Author:
iseulde
Message:

Publish box: fix strange date format after change

Part props tyxla.
Fixes #30716.

Location:
trunk/src
Files:
3 edited

Legend:

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

    r32994 r33340  
    785785        for ( $i = 1; $i < 13; $i = $i +1 ) {
    786786                $monthnum = zeroise($i, 2);
    787                 $month .= "\t\t\t" . '<option value="' . $monthnum . '" ' . selected( $monthnum, $mm, false ) . '>';
     787                $monthtext = $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) );
     788                $month .= "\t\t\t" . '<option value="' . $monthnum . '" data-text="' . $monthtext . '" ' . selected( $monthnum, $mm, false ) . '>';
    788789                /* translators: 1: month number (01, 02, etc.), 2: month abbreviation */
    789                 $month .= sprintf( __( '%1$s-%2$s' ), $monthnum, $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) ) ) . "</option>\n";
     790                $month .= sprintf( __( '%1$s-%2$s' ), $monthnum, $monthtext ) . "</option>\n";
    790791        }
    791792        $month .= '</select></label>';
     
    798799        echo '<div class="timestamp-wrap">';
    799800        /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */
    800         printf( __( '%1$s %2$s, %3$s @ %4$s : %5$s' ), $month, $day, $year, $hour, $minute );
     801        printf( __( '%1$s %2$s, %3$s @ %4$s:%5$s' ), $month, $day, $year, $hour, $minute );
    801802
    802803        echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />';
  • trunk/src/wp-admin/js/post.js

    r33066 r33340  
    559559                        } else {
    560560                                $('#timestamp').html(
    561                                         publishOn + ' <b>' +
    562                                         postL10n.dateFormat.replace( '%1$s', $('option[value="' + $('#mm').val() + '"]', '#mm').text() )
     561                                        '\n' + publishOn + ' <b>' +
     562                                        postL10n.dateFormat
     563                                                .replace( '%1$s', $( 'option[value="' + mm + '"]', '#mm' ).attr( 'data-text' ) )
    563564                                                .replace( '%2$s', jj )
    564565                                                .replace( '%3$s', aa )
  • trunk/src/wp-includes/script-loader.php

    r33330 r33340  
    488488                        'publishOnPast' => __('Published on:'),
    489489                        /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */
    490                         'dateFormat' => __('%1$s %2$s, %3$s @ %4$s : %5$s'),
     490                        'dateFormat' => __('%1$s %2$s, %3$s @ %4$s:%5$s'),
    491491                        'showcomm' => __('Show more comments'),
    492492                        'endcomm' => __('No more comments found.'),
Note: See TracChangeset for help on using the changeset viewer.