mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 12:50:28 +00:00
i18n plurals fixes from nbachiyski. fixes #8142
git-svn-id: https://develop.svn.wordpress.org/trunk@9668 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
+1
-2
@@ -451,8 +451,7 @@ endif; // posts;
|
||||
$(document).ready(function(){
|
||||
$('#doaction, #doaction2').click(function(e){
|
||||
if ( $('select[name^="action"]').val() == 'delete' ) {
|
||||
var n = $('#the-list input[type="checkbox"]:checked').length;
|
||||
var m = n > 1 ? '<?php echo js_escape(__("You are about to delete the selected attachments.\n 'Cancel' to stop, 'OK' to delete.")); ?>' : '<?php echo js_escape(__("You are about to delete the selected attachment.\n 'Cancel' to stop, 'OK' to delete.")); ?>';
|
||||
var m = '<?php echo js_escape(__("You are about to delete the selected attachments.\n 'Cancel' to stop, 'OK' to delete.")); ?>';
|
||||
return showNotice.warn(m);
|
||||
} else if ( $('select[name^="action"]').val() == 'attach' ) {
|
||||
e.preventDefault();
|
||||
|
||||
Reference in New Issue
Block a user