Ticket #24072: 24072.3.patch
File 24072.3.patch, 1.9 KB (added by , 12 years ago) |
---|
-
wp-admin/includes/template.php
620 620 621 621 echo '<div class="timestamp-wrap">'; 622 622 /* translators: 1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input */ 623 printf( __('%1$s%2$s, %3$s @ %4$s : %5$s'), $month, $day, $year, $hour, $minute);623 printf( __( '%1$s %2$s, %3$s @ %4$s : %5$s' ), $month, $day, $year, $hour, $minute ); 624 624 625 625 echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />'; 626 626 -
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, 2: day, 3: year, 4: hours, 5: minutes */ 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'),