Changeset 33340
- Timestamp:
- 07/21/2015 11:39:20 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r32994 r33340 785 785 for ( $i = 1; $i < 13; $i = $i +1 ) { 786 786 $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 ) . '>'; 788 789 /* 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"; 790 791 } 791 792 $month .= '</select></label>'; … … 798 799 echo '<div class="timestamp-wrap">'; 799 800 /* 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 ); 801 802 802 803 echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />'; -
trunk/src/wp-admin/js/post.js
r33066 r33340 559 559 } else { 560 560 $('#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' ) ) 563 564 .replace( '%2$s', jj ) 564 565 .replace( '%3$s', aa ) -
trunk/src/wp-includes/script-loader.php
r33330 r33340 488 488 'publishOnPast' => __('Published on:'), 489 489 /* 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'), 491 491 'showcomm' => __('Show more comments'), 492 492 'endcomm' => __('No more comments found.'),
Note: See TracChangeset
for help on using the changeset viewer.