Ticket #24072: 24072.patch
File 24072.patch, 1.3 KB (added by , 12 years ago) |
---|
-
wp-admin/js/post.js
472 472 } else { 473 473 $('#timestamp').html( 474 474 publishOn + ' <b>' + 475 $('option[value="' + $('#mm').val() + '"]', '#mm').text() + ' ' + 476 jj + ', ' + 477 aa + ' @ ' + 478 hh + ':' + 479 mn + '</b> ' 475 postL10n.dateFormat.replace( '%1$s', $('option[value="' + $('#mm').val() + '"]', '#mm').text() + ' ' ) 476 .replace( '%2$s', jj ) 477 .replace( '%3$s', aa ) 478 .replace( '%4$s', hh ) 479 .replace( '%5$s', mn ) 480 + '</b> ' 480 481 ); 481 482 } 482 483 -
wp-includes/script-loader.php
392 392 'publishOn' => __('Publish on:'), 393 393 'publishOnFuture' => __('Schedule for:'), 394 394 'publishOnPast' => __('Published on:'), 395 /* translators: 1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input */ 396 'dateFormat' => __('%1$s%2$s, %3$s @ %4$s : %5$s'), 395 397 'showcomm' => __('Show more comments'), 396 398 'endcomm' => __('No more comments found.'), 397 399 'publish' => __('Publish'),