diff --git a/wp-admin/js/post.js b/wp-admin/js/post.js
index 8dfdf37..697ddd7 100644
a
|
b
|
jQuery(document).ready( function($) { |
552 | 552 | } else { |
553 | 553 | $('#timestamp').html( |
554 | 554 | publishOn + ' <b>' + |
555 | | postL10n.dateFormat.replace( '%1$s', $('option[value="' + $('#mm').val() + '"]', '#mm').text() ) |
| 555 | postL10n.dateFormat.replace( '%1$s', $('option[value="' + $('#mm').val() + '"]', '#mm').text().slice(3) ) |
556 | 556 | .replace( '%2$s', jj ) |
557 | 557 | .replace( '%3$s', aa ) |
558 | 558 | .replace( '%4$s', hh ) |
diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php
index 81c158a..2ca585b 100644
a
|
b
|
function wp_default_scripts( &$scripts ) { |
457 | 457 | 'publishOnFuture' => __('Schedule for:'), |
458 | 458 | 'publishOnPast' => __('Published on:'), |
459 | 459 | /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */ |
460 | | 'dateFormat' => __('%1$s %2$s, %3$s @ %4$s : %5$s'), |
| 460 | 'dateFormat' => __('%1$s %2$s, %3$s @ %4$s:%5$s'), |
461 | 461 | 'showcomm' => __('Show more comments'), |
462 | 462 | 'endcomm' => __('No more comments found.'), |
463 | 463 | 'publish' => __('Publish'), |