Version Description
Download this release
Release Info
Developer | sudar |
Plugin | Bulk Delete |
Version | 1.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.1
- bulk-delete.php +190 -3
- languages/bulk-delete-nl_NL.mo +0 -0
- languages/bulk-delete-nl_NL.po +207 -0
- languages/bulk-delete-pt_BR.mo +0 -0
- languages/bulk-delete-pt_BR.po +214 -0
- languages/bulk-delete.pot +115 -54
- readme.txt +21 -5
bulk-delete.php
CHANGED
@@ -4,7 +4,8 @@ Plugin Name: Bulk Delete
|
|
4 |
Plugin Script: bulk-delete.php
|
5 |
Plugin URI: http://sudarmuthu.com/wordpress/bulk-delete
|
6 |
Description: Bulk delete posts from selected categories or tags. Use it with caution.
|
7 |
-
|
|
|
8 |
License: GPL
|
9 |
Author: Sudar
|
10 |
Author URI: http://sudarmuthu.com/
|
@@ -20,6 +21,7 @@ Text Domain: bulk-delete
|
|
20 |
2010-02-21 - v0.7 - Added an option to delete posts directly or send them to trash and support for translation.
|
21 |
2010-03-17 - v0.8 - Added support for private posts.
|
22 |
2010-06-19 - v1.0 - Proper handling of limits.
|
|
|
23 |
|
24 |
/* Copyright 2009 Sudar Muthu (email : sudar@sudarmuthu.com)
|
25 |
|
@@ -137,6 +139,53 @@ if (!function_exists('smbd_request_handler')) {
|
|
137 |
|
138 |
break;
|
139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
case "bulk-delete-special":
|
141 |
$options = array();
|
142 |
|
@@ -264,7 +313,7 @@ if (!function_exists('smbd_displayOptions')) {
|
|
264 |
<tr>
|
265 |
<td>
|
266 |
<input name="smbd_revisions" id ="smbd_revisions" value = "revisions" type = "checkbox" />
|
267 |
-
<label for="smbd_revisions"><?php echo _e("All Revisions", 'bulk-delete'); ?> (<?php echo count($revisions) . " "; _e("
|
268 |
</td>
|
269 |
</tr>
|
270 |
<tr>
|
@@ -496,6 +545,111 @@ if (!function_exists('smbd_displayOptions')) {
|
|
496 |
<?php
|
497 |
}
|
498 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
<p><em><?php _e("If you are looking to move posts in bulk, instead of deleting then try out my ", 'bulk-delete'); ?> <a href = "http://sudarmuthu.com/wordpress/bulk-move"><?php _e("Bulk Move Plugin", 'bulk-delete');?></a>.</em></p>
|
500 |
</div>
|
501 |
<?php
|
@@ -560,7 +714,7 @@ function smbd_print_scripts() {
|
|
560 |
if (valid) {
|
561 |
return confirm("<?php _e('Are you sure you want to delete all the selected posts', 'bulk-delete'); ?>");
|
562 |
} else {
|
563 |
-
alert ("<?php _e('Please select
|
564 |
return false;
|
565 |
}
|
566 |
}
|
@@ -596,6 +750,39 @@ function tags_by_days ($where = '') {
|
|
596 |
return $where;
|
597 |
}
|
598 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
599 |
/**
|
600 |
* Add navigation menu
|
601 |
*/
|
4 |
Plugin Script: bulk-delete.php
|
5 |
Plugin URI: http://sudarmuthu.com/wordpress/bulk-delete
|
6 |
Description: Bulk delete posts from selected categories or tags. Use it with caution.
|
7 |
+
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
8 |
+
Version: 1.1
|
9 |
License: GPL
|
10 |
Author: Sudar
|
11 |
Author URI: http://sudarmuthu.com/
|
21 |
2010-02-21 - v0.7 - Added an option to delete posts directly or send them to trash and support for translation.
|
22 |
2010-03-17 - v0.8 - Added support for private posts.
|
23 |
2010-06-19 - v1.0 - Proper handling of limits.
|
24 |
+
2011-01-22 - v1.1 - Added support to delete posts by custom taxonomies
|
25 |
|
26 |
/* Copyright 2009 Sudar Muthu (email : sudar@sudarmuthu.com)
|
27 |
|
139 |
|
140 |
break;
|
141 |
|
142 |
+
case "bulk-delete-taxs":
|
143 |
+
// delete by taxs
|
144 |
+
$selected_taxs = $_POST['smbd_taxs'];
|
145 |
+
|
146 |
+
foreach ($selected_taxs as $selected_tax) {
|
147 |
+
$postids = get_tax_post($selected_tax);
|
148 |
+
|
149 |
+
if ($_POST['smbd_taxs_restrict'] == "true") {
|
150 |
+
|
151 |
+
add_option('taxs_op', $_POST['smbd_taxs_op']);
|
152 |
+
add_option('taxs_days', $_POST['smbd_taxs_days']);
|
153 |
+
|
154 |
+
add_filter ('posts_where', 'taxs_by_days');
|
155 |
+
}
|
156 |
+
|
157 |
+
$private = $_POST['smbd_taxs_private'];
|
158 |
+
|
159 |
+
if ($private == 'true') {
|
160 |
+
$options = array('post__in'=>$postids,'post_status'=>'private', 'post_type'=>'post');
|
161 |
+
} else {
|
162 |
+
$options = array('post__in'=>$postids,'post_status'=>'publish', 'post_type'=>'post');
|
163 |
+
}
|
164 |
+
|
165 |
+
$limit_to = absint($_POST['smbd_taxs_limits_to']);
|
166 |
+
|
167 |
+
if ($limit_to > 0) {
|
168 |
+
$options['showposts'] = $limit_to;
|
169 |
+
} else {
|
170 |
+
$options['nopaging'] = 'true';
|
171 |
+
}
|
172 |
+
|
173 |
+
$force_delete = $_POST['smbd_taxs_force_delete'];
|
174 |
+
|
175 |
+
if ($force_delete == 'true') {
|
176 |
+
$force_delete = true;
|
177 |
+
} else {
|
178 |
+
$force_delete = false;
|
179 |
+
}
|
180 |
+
|
181 |
+
$posts = $wp_query->query($options);
|
182 |
+
foreach ($posts as $post) {
|
183 |
+
wp_delete_post($post->ID, $force_delete);
|
184 |
+
}
|
185 |
+
}
|
186 |
+
|
187 |
+
break;
|
188 |
+
|
189 |
case "bulk-delete-special":
|
190 |
$options = array();
|
191 |
|
313 |
<tr>
|
314 |
<td>
|
315 |
<input name="smbd_revisions" id ="smbd_revisions" value = "revisions" type = "checkbox" />
|
316 |
+
<label for="smbd_revisions"><?php echo _e("All Revisions", 'bulk-delete'); ?> (<?php echo count($revisions) . " "; _e("Revisions", 'bulk-delete'); ?>)</label>
|
317 |
</td>
|
318 |
</tr>
|
319 |
<tr>
|
545 |
<?php
|
546 |
}
|
547 |
?>
|
548 |
+
|
549 |
+
<?php
|
550 |
+
$customTaxs = get_taxonomies();
|
551 |
+
if (count($customTaxs) > 0) {
|
552 |
+
?>
|
553 |
+
<h3><?php _e("By Taxonomies", 'bulk-delete'); ?></h3>
|
554 |
+
<h4><?php _e("Select the taxonomies whose post you want to delete", 'bulk-delete') ?></h4>
|
555 |
+
|
556 |
+
<form name="smbd_form" id = "smbd_tax_form"
|
557 |
+
action="<?php echo get_bloginfo("wpurl"); ?>/wp-admin/options-general.php?page=bulk-delete.php" method="post"
|
558 |
+
onsubmit="return bd_validateForm(this);">
|
559 |
+
|
560 |
+
<fieldset class="options">
|
561 |
+
<table class="optiontable">
|
562 |
+
<?php
|
563 |
+
foreach ($customTaxs as $taxs) {
|
564 |
+
|
565 |
+
$posts = get_tax_post($taxs);
|
566 |
+
?>
|
567 |
+
<tr>
|
568 |
+
<td scope="row" >
|
569 |
+
<input name="smbd_taxs[]" value = "<?php echo $taxs; ?>" type = "checkbox" />
|
570 |
+
</td>
|
571 |
+
<td>
|
572 |
+
<label for="smbd_taxs"><?php echo $taxs; ?> (<?php echo count($posts) . " "; _e("Posts", 'bulk-delete'); ?>)</label>
|
573 |
+
</td>
|
574 |
+
</tr>
|
575 |
+
<?php
|
576 |
+
}
|
577 |
+
?>
|
578 |
+
<tr>
|
579 |
+
<td scope="row" >
|
580 |
+
<input name="smbd_taxs_all" id ="smbd_taxs_all" value = "-1" type = "checkbox" onclick="bd_checkAll(document.getElementById('smbd_tax_form'));" />
|
581 |
+
</td>
|
582 |
+
<td>
|
583 |
+
<label for="smbd_taxs_all"><?php _e("All Taxonomies", 'bulk-delete') ?></label>
|
584 |
+
</td>
|
585 |
+
</tr>
|
586 |
+
|
587 |
+
<tr>
|
588 |
+
<td colspan="2"></td>
|
589 |
+
</tr>
|
590 |
+
|
591 |
+
<tr>
|
592 |
+
<td scope="row">
|
593 |
+
<input name="smbd_taxs_restrict" id ="smbd_taxs_restrict" value = "true" type = "checkbox" onclick="toggle_date_restrict('taxs');" />
|
594 |
+
</td>
|
595 |
+
<td>
|
596 |
+
<?php _e("Only restrict to posts which are ", 'bulk-delete');?>
|
597 |
+
<select name="smbd_taxs_op" id="smbd_taxs_op" disabled>
|
598 |
+
<option value ="<"><?php _e("older than", 'bulk-delete');?></option>
|
599 |
+
<option value =">"><?php _e("posted within last", 'bulk-delete');?></option>
|
600 |
+
</select>
|
601 |
+
<input type ="textbox" name="smbd_taxs_days" id ="smbd_taxs_days" value ="0" maxlength="4" size="4" disabled /><?php _e("days", 'bulk-delete');?>
|
602 |
+
</td>
|
603 |
+
</tr>
|
604 |
+
|
605 |
+
<tr>
|
606 |
+
<td scope="row" colspan="2">
|
607 |
+
<input name="smbd_taxs_force_delete" value = "false" type = "radio" checked="checked" /> <?php _e('Move to Trash', 'bulk-delete'); ?>
|
608 |
+
<input name="smbd_taxs_force_delete" value = "true" type = "radio" /> <?php _e('Delete permanently', 'bulk-delete'); ?>
|
609 |
+
</td>
|
610 |
+
</tr>
|
611 |
+
|
612 |
+
<tr>
|
613 |
+
<td scope="row" colspan="2">
|
614 |
+
<input name="smbd_taxs_private" value = "false" type = "radio" checked="checked" /> <?php _e('Public posts', 'bulk-delete'); ?>
|
615 |
+
<input name="smbd_taxs_private" value = "true" type = "radio" /> <?php _e('Private Posts', 'bulk-delete'); ?>
|
616 |
+
</td>
|
617 |
+
</tr>
|
618 |
+
|
619 |
+
<tr>
|
620 |
+
<td scope="row">
|
621 |
+
<input name="smbd_taxs_limit" id="smbd_taxs_limit" value = "true" type = "checkbox" onclick="toggle_limit_restrict('taxs');" />
|
622 |
+
</td>
|
623 |
+
<td>
|
624 |
+
<?php _e("Only delete first ", 'bulk-delete');?>
|
625 |
+
<input type ="textbox" name="smbd_taxs_limit_to" id="smbd_taxs_limit_to" disabled value ="0" maxlength="4" size="4" /><?php _e("posts.", 'bulk-delete');?>
|
626 |
+
<?php _e("Use this option if there are more than 1000 posts and the script timesout.", 'bulk-delete') ?>
|
627 |
+
</td>
|
628 |
+
</tr>
|
629 |
+
|
630 |
+
</table>
|
631 |
+
</fieldset>
|
632 |
+
<p class="submit">
|
633 |
+
<input type="submit" name="submit" value="<?php _e("Bulk Delete ", 'bulk-delete') ?>»">
|
634 |
+
</p>
|
635 |
+
|
636 |
+
<?php wp_nonce_field('bulk-delete-posts'); ?>
|
637 |
+
|
638 |
+
<input type="hidden" name="smbd_action" value="bulk-delete-taxs" />
|
639 |
+
</form>
|
640 |
+
<?php
|
641 |
+
}
|
642 |
+
?>
|
643 |
+
<h3><?php _e('Support', 'bulk-delete'); ?></h3>
|
644 |
+
<p><?php _e('If you have any questions/comments/feedback about the Plugin then post a comment in the <a target="_blank" href = "http://sudarmuthu.com/wordpress/bulk-delete">Plugins homepage</a>.','bulk-delete'); ?></p>
|
645 |
+
<p><?php _e('If you like the Plugin, then consider doing one of the following.', 'bulk-delete'); ?></p>
|
646 |
+
<ul style="list-style:disc inside">
|
647 |
+
<li><?php _e('Write a blog post about the Plugin.', 'bulk-delete'); ?></li>
|
648 |
+
<li><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://sudarmuthu.com/wordpress/bulk-delete" data-text="Bulk Delete WordPress Plugin" data-count="none" data-via="sudarmuthu">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script><?php _e(' about it.', 'bulk-delete'); ?></li>
|
649 |
+
<li><?php _e('Give a <a href = "http://wordpress.org/extend/plugins/bulk-delete/" target="_blank">good rating</a>.', 'bulk-delete'); ?></li>
|
650 |
+
<li><?php _e('Say <a href = "http://sudarmuthu.com/if-you-wanna-thank-me" target="_blank">thank you</a>.', 'bulk-delete'); ?></li>
|
651 |
+
</ul>
|
652 |
+
|
653 |
<p><em><?php _e("If you are looking to move posts in bulk, instead of deleting then try out my ", 'bulk-delete'); ?> <a href = "http://sudarmuthu.com/wordpress/bulk-move"><?php _e("Bulk Move Plugin", 'bulk-delete');?></a>.</em></p>
|
654 |
</div>
|
655 |
<?php
|
714 |
if (valid) {
|
715 |
return confirm("<?php _e('Are you sure you want to delete all the selected posts', 'bulk-delete'); ?>");
|
716 |
} else {
|
717 |
+
alert ("<?php _e('Please select at least one', 'bulk-delete'); ?>");
|
718 |
return false;
|
719 |
}
|
720 |
}
|
750 |
return $where;
|
751 |
}
|
752 |
|
753 |
+
/**
|
754 |
+
* function to filter custom taxonomy posts by days
|
755 |
+
* @param <type> $where
|
756 |
+
* @return <type>
|
757 |
+
*/
|
758 |
+
function taxs_by_days ($where = '') {
|
759 |
+
$taxs_op = get_option('taxs_op');
|
760 |
+
$taxs_days = get_option('taxs_days');
|
761 |
+
|
762 |
+
remove_filter('posts_where', 'taxs_by_days');
|
763 |
+
$where .= " AND post_date $taxs_op '" . date('y-m-d', strtotime("-$taxs_days days")) . "'";
|
764 |
+
return $where;
|
765 |
+
}
|
766 |
+
|
767 |
+
/**
|
768 |
+
* Return the posts for a taxonomy
|
769 |
+
*
|
770 |
+
* @param <type> $tax
|
771 |
+
* @return <type>
|
772 |
+
*/
|
773 |
+
function get_tax_post($tax) {
|
774 |
+
global $wpdb;
|
775 |
+
|
776 |
+
$query = $wpdb->prepare("select object_id from {$wpdb->prefix}term_relationships where term_taxonomy_id in (select term_taxonomy_id from {$wpdb->prefix}term_taxonomy where taxonomy = '$tax')");
|
777 |
+
$post_ids_result = $wpdb->get_results($query);
|
778 |
+
|
779 |
+
$postids = array();
|
780 |
+
foreach ($post_ids_result as $post_id_result) {
|
781 |
+
$postids[] = $post_id_result->object_id;
|
782 |
+
}
|
783 |
+
|
784 |
+
return $postids;
|
785 |
+
}
|
786 |
/**
|
787 |
* Add navigation menu
|
788 |
*/
|
languages/bulk-delete-nl_NL.mo
ADDED
Binary file
|
languages/bulk-delete-nl_NL.po
ADDED
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of the WordPress plugin Bulk Delete 0.7 by Sudar.
|
2 |
+
# Copyright (C) 2010 Sudar
|
3 |
+
# This file is distributed under the same license as the Bulk Delete package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
+
#
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: Bulk Delete 1.0\n"
|
9 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
|
10 |
+
"POT-Creation-Date: 2010-02-27 11:19+0000\n"
|
11 |
+
"PO-Revision-Date: 2010-11-29 21:41+0100\n"
|
12 |
+
"Last-Translator: Rene <info@wpwebshop.com>\n"
|
13 |
+
"Language-Team: Translation by WordPressWebshop.com <info@wpwebshop.com>\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
18 |
+
"X-Poedit-Language: Dutch\n"
|
19 |
+
"X-Poedit-Country: NETHERLANDS\n"
|
20 |
+
|
21 |
+
#: bulk-delete.php:200
|
22 |
+
msgid "All the selected posts have been sucessfully deleted."
|
23 |
+
msgstr "Al de geselecteerde berichten zijn succesvol verwijderd."
|
24 |
+
|
25 |
+
#: bulk-delete.php:210
|
26 |
+
msgid "WARNING: Posts deleted once cannot be retrieved back. Use with caution."
|
27 |
+
msgstr "WAARSCHUWING: Verwijderde berichten kunnen niet teruggehaald worden. Wees voorzichtig."
|
28 |
+
|
29 |
+
#: bulk-delete.php:215
|
30 |
+
msgid "Select the posts which you want to delete"
|
31 |
+
msgstr "Selecteer de berichten welke je wilt verwijderen"
|
32 |
+
|
33 |
+
#: bulk-delete.php:234
|
34 |
+
msgid "All Drafts"
|
35 |
+
msgstr "Alle Concepten"
|
36 |
+
|
37 |
+
#: bulk-delete.php:234
|
38 |
+
msgid "Drafts"
|
39 |
+
msgstr "Concepten"
|
40 |
+
|
41 |
+
#: bulk-delete.php:240
|
42 |
+
msgid "All Revisions"
|
43 |
+
msgstr "Alle Revisies"
|
44 |
+
|
45 |
+
#: bulk-delete.php:240
|
46 |
+
msgid "Revisons"
|
47 |
+
msgstr "Herzieningen"
|
48 |
+
|
49 |
+
#: bulk-delete.php:246
|
50 |
+
msgid "All Pending posts"
|
51 |
+
msgstr "Alle wachtende berichten"
|
52 |
+
|
53 |
+
#: bulk-delete.php:246
|
54 |
+
#: bulk-delete.php:252
|
55 |
+
#: bulk-delete.php:307
|
56 |
+
#: bulk-delete.php:388
|
57 |
+
msgid "Posts"
|
58 |
+
msgstr "Berichten"
|
59 |
+
|
60 |
+
#: bulk-delete.php:252
|
61 |
+
msgid "All scheduled posts"
|
62 |
+
msgstr "Alle ingeplande berichten"
|
63 |
+
|
64 |
+
#: bulk-delete.php:258
|
65 |
+
msgid "All Pages"
|
66 |
+
msgstr "Alle Pagina's"
|
67 |
+
|
68 |
+
#: bulk-delete.php:258
|
69 |
+
msgid "Pages"
|
70 |
+
msgstr "Pagina's"
|
71 |
+
|
72 |
+
#: bulk-delete.php:264
|
73 |
+
#: bulk-delete.php:341
|
74 |
+
#: bulk-delete.php:423
|
75 |
+
msgid "Move to Trash"
|
76 |
+
msgstr "Verplaats naar Prullenbak"
|
77 |
+
|
78 |
+
#: bulk-delete.php:265
|
79 |
+
#: bulk-delete.php:342
|
80 |
+
#: bulk-delete.php:424
|
81 |
+
msgid "Delete permanently"
|
82 |
+
msgstr "Verwijder permanent"
|
83 |
+
|
84 |
+
#: bulk-delete.php:272
|
85 |
+
#: bulk-delete.php:351
|
86 |
+
#: bulk-delete.php:433
|
87 |
+
msgid "Only delete first "
|
88 |
+
msgstr "Verwijder alleen de eerste"
|
89 |
+
|
90 |
+
#: bulk-delete.php:273
|
91 |
+
#: bulk-delete.php:352
|
92 |
+
#: bulk-delete.php:434
|
93 |
+
msgid "posts."
|
94 |
+
msgstr "berichten."
|
95 |
+
|
96 |
+
#: bulk-delete.php:274
|
97 |
+
#: bulk-delete.php:353
|
98 |
+
#: bulk-delete.php:435
|
99 |
+
msgid "Use this option if there are more than 1000 posts and the script timesout."
|
100 |
+
msgstr "Gebruik deze optie als er meer dan 1000 berichten zijn en het script onderbroken wordt."
|
101 |
+
|
102 |
+
#: bulk-delete.php:281
|
103 |
+
#: bulk-delete.php:360
|
104 |
+
#: bulk-delete.php:442
|
105 |
+
msgid "Bulk Delete "
|
106 |
+
msgstr "Massa Verwijdering"
|
107 |
+
|
108 |
+
#: bulk-delete.php:289
|
109 |
+
msgid "By Category"
|
110 |
+
msgstr "Per Categorie"
|
111 |
+
|
112 |
+
#: bulk-delete.php:290
|
113 |
+
msgid "Select the categories whose post you want to delete"
|
114 |
+
msgstr "Selecteer de categorieën van welke je de berichten wilt verwijderen"
|
115 |
+
|
116 |
+
#: bulk-delete.php:318
|
117 |
+
msgid "All Categories"
|
118 |
+
msgstr "Alle Categorieën"
|
119 |
+
|
120 |
+
#: bulk-delete.php:330
|
121 |
+
#: bulk-delete.php:412
|
122 |
+
msgid "Only restrict to posts which are "
|
123 |
+
msgstr "Beperk alleen tot berichten welke zijn "
|
124 |
+
|
125 |
+
#: bulk-delete.php:332
|
126 |
+
#: bulk-delete.php:414
|
127 |
+
msgid "older than"
|
128 |
+
msgstr "ouder dan"
|
129 |
+
|
130 |
+
#: bulk-delete.php:333
|
131 |
+
#: bulk-delete.php:415
|
132 |
+
msgid "posted within last"
|
133 |
+
msgstr "geplaatst binnen laatst"
|
134 |
+
|
135 |
+
#: bulk-delete.php:335
|
136 |
+
#: bulk-delete.php:417
|
137 |
+
msgid "days"
|
138 |
+
msgstr "dagen"
|
139 |
+
|
140 |
+
#: bulk-delete.php:371
|
141 |
+
msgid "By Tags"
|
142 |
+
msgstr "Per Tags"
|
143 |
+
|
144 |
+
#: bulk-delete.php:372
|
145 |
+
msgid "Select the tags whose post you want to delete"
|
146 |
+
msgstr "Selecteer de tags van welke je de berichten wilt verwijderen"
|
147 |
+
|
148 |
+
#: bulk-delete.php:399
|
149 |
+
msgid "All Tags"
|
150 |
+
msgstr "Alle Tags"
|
151 |
+
|
152 |
+
#: bulk-delete.php:452
|
153 |
+
msgid "If you are looking to move posts in bulk, instead of deleting then try out my "
|
154 |
+
msgstr "Als je berichten in veelvoud wilt verplaatsen, ipv verwijderen probeer mijn"
|
155 |
+
|
156 |
+
#: bulk-delete.php:452
|
157 |
+
msgid "Bulk Move Plugin"
|
158 |
+
msgstr "Bulk Move Plugin"
|
159 |
+
|
160 |
+
#: bulk-delete.php:514
|
161 |
+
msgid "Are you sure you want to delete all the selected posts"
|
162 |
+
msgstr "Ben je er zeker van om alle geselecteerde berichten te verwijderen"
|
163 |
+
|
164 |
+
#: bulk-delete.php:516
|
165 |
+
msgid "Please select atleast one"
|
166 |
+
msgstr "Selecteer ten minste één"
|
167 |
+
|
168 |
+
#: bulk-delete.php:574
|
169 |
+
msgid "Manage"
|
170 |
+
msgstr "Beheer"
|
171 |
+
|
172 |
+
#: bulk-delete.php:585
|
173 |
+
msgid "plugin"
|
174 |
+
msgstr "plugin"
|
175 |
+
|
176 |
+
#: bulk-delete.php:585
|
177 |
+
msgid "Version"
|
178 |
+
msgstr "Versie"
|
179 |
+
|
180 |
+
#: bulk-delete.php:585
|
181 |
+
msgid "by"
|
182 |
+
msgstr "door"
|
183 |
+
|
184 |
+
#. Plugin Name of an extension
|
185 |
+
msgid "Bulk Delete"
|
186 |
+
msgstr "Bulk Delete"
|
187 |
+
|
188 |
+
#. Plugin URI of an extension
|
189 |
+
msgid "http://sudarmuthu.com/wordpress/bulk-delete"
|
190 |
+
msgstr "http://sudarmuthu.com/wordpress/bulk-delete"
|
191 |
+
|
192 |
+
#. Description of an extension
|
193 |
+
msgid "Bulk delete posts from selected categories or tags. Use it with caution."
|
194 |
+
msgstr "Massa verwijdering van berichten uit geselecteerde categorieën of tags. Wees voorzichtig."
|
195 |
+
|
196 |
+
#. Author of an extension
|
197 |
+
msgid "Sudar"
|
198 |
+
msgstr "Sudar"
|
199 |
+
|
200 |
+
#. Author URI of an extension
|
201 |
+
msgid "http://sudarmuthu.com/"
|
202 |
+
msgstr "http://sudarmuthu.com/"
|
203 |
+
|
204 |
+
ulk Delete"
|
205 |
+
|
206 |
+
#. Plugin URI of an extension
|
207 |
+
msgid "http://
|
languages/bulk-delete-pt_BR.mo
ADDED
Binary file
|
languages/bulk-delete-pt_BR.po
ADDED
@@ -0,0 +1,214 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2010 Bulk Delete
|
2 |
+
# This file is distributed under the same license as the Bulk Delete package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Bulk Delete 1.0\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
|
7 |
+
"POT-Creation-Date: 2011-01-19 17:39:00+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2011-01-19 18:02-0300\n"
|
12 |
+
"Last-Translator: Marcelo <mvolga@gmail.com>\n"
|
13 |
+
"Language-Team: pt-br <sudar@sudarmuthu.com>\n"
|
14 |
+
"X-Poedit-Language: Portuguese\n"
|
15 |
+
"X-Poedit-Country: BRAZIL\n"
|
16 |
+
|
17 |
+
#: bulk-delete.php:226
|
18 |
+
msgid "All the selected posts have been sucessfully deleted."
|
19 |
+
msgstr "Todos os posts selecionados foram deletados com sucesso."
|
20 |
+
|
21 |
+
#: bulk-delete.php:236
|
22 |
+
msgid "WARNING: Posts deleted once cannot be retrieved back. Use with caution."
|
23 |
+
msgstr "AVISO: Depois de deletados os posts não podem ser recuperados. Use com cuidado."
|
24 |
+
|
25 |
+
#: bulk-delete.php:241
|
26 |
+
msgid "Select the posts which you want to delete"
|
27 |
+
msgstr "Selecione os posts que deseja deletar"
|
28 |
+
|
29 |
+
#: bulk-delete.php:261
|
30 |
+
msgid "All Drafts"
|
31 |
+
msgstr "Todos os Rascunhos"
|
32 |
+
|
33 |
+
#: bulk-delete.php:261
|
34 |
+
msgid "Drafts"
|
35 |
+
msgstr "Rascunhos"
|
36 |
+
|
37 |
+
#: bulk-delete.php:267
|
38 |
+
msgid "All Revisions"
|
39 |
+
msgstr "Todas as Revisões"
|
40 |
+
|
41 |
+
#: bulk-delete.php:267
|
42 |
+
msgid "Revisions"
|
43 |
+
msgstr "Revisões"
|
44 |
+
|
45 |
+
#: bulk-delete.php:273
|
46 |
+
msgid "All Pending posts"
|
47 |
+
msgstr "Todos os posts Pendentes"
|
48 |
+
|
49 |
+
#: bulk-delete.php:273
|
50 |
+
#: bulk-delete.php:279
|
51 |
+
#: bulk-delete.php:285
|
52 |
+
#: bulk-delete.php:340
|
53 |
+
#: bulk-delete.php:428
|
54 |
+
msgid "Posts"
|
55 |
+
msgstr "Posts"
|
56 |
+
|
57 |
+
#: bulk-delete.php:279
|
58 |
+
msgid "All scheduled posts"
|
59 |
+
msgstr "Todos os posts agendados"
|
60 |
+
|
61 |
+
#: bulk-delete.php:285
|
62 |
+
msgid "All private posts"
|
63 |
+
msgstr "Todos os posts privados"
|
64 |
+
|
65 |
+
#: bulk-delete.php:291
|
66 |
+
msgid "All Pages"
|
67 |
+
msgstr "Todas as páginas"
|
68 |
+
|
69 |
+
#: bulk-delete.php:291
|
70 |
+
msgid "Pages"
|
71 |
+
msgstr "Páginas"
|
72 |
+
|
73 |
+
#: bulk-delete.php:297
|
74 |
+
#: bulk-delete.php:374
|
75 |
+
#: bulk-delete.php:463
|
76 |
+
msgid "Move to Trash"
|
77 |
+
msgstr "Mover para a Lixeira"
|
78 |
+
|
79 |
+
#: bulk-delete.php:298
|
80 |
+
#: bulk-delete.php:375
|
81 |
+
#: bulk-delete.php:464
|
82 |
+
msgid "Delete permanently"
|
83 |
+
msgstr "Deletar permanentemente"
|
84 |
+
|
85 |
+
#: bulk-delete.php:305
|
86 |
+
#: bulk-delete.php:391
|
87 |
+
#: bulk-delete.php:480
|
88 |
+
msgid "Only delete first "
|
89 |
+
msgstr "Deletar somente o primeiro"
|
90 |
+
|
91 |
+
#: bulk-delete.php:306
|
92 |
+
#: bulk-delete.php:392
|
93 |
+
#: bulk-delete.php:481
|
94 |
+
msgid "posts."
|
95 |
+
msgstr "posts."
|
96 |
+
|
97 |
+
#: bulk-delete.php:307
|
98 |
+
#: bulk-delete.php:393
|
99 |
+
#: bulk-delete.php:482
|
100 |
+
msgid "Use this option if there are more than 1000 posts and the script timesout."
|
101 |
+
msgstr "Use esta opção se houver mais de 1000 posts e o script esgotar o tempo"
|
102 |
+
|
103 |
+
#: bulk-delete.php:314
|
104 |
+
#: bulk-delete.php:400
|
105 |
+
#: bulk-delete.php:489
|
106 |
+
msgid "Bulk Delete "
|
107 |
+
msgstr "Deletar em Massa"
|
108 |
+
|
109 |
+
#: bulk-delete.php:322
|
110 |
+
msgid "By Category"
|
111 |
+
msgstr "Por Categoria"
|
112 |
+
|
113 |
+
#: bulk-delete.php:323
|
114 |
+
msgid "Select the categories whose post you want to delete"
|
115 |
+
msgstr "Selecione as categorias cujos posts deseja deletar"
|
116 |
+
|
117 |
+
#: bulk-delete.php:351
|
118 |
+
msgid "All Categories"
|
119 |
+
msgstr "Todas Categorias"
|
120 |
+
|
121 |
+
#: bulk-delete.php:363
|
122 |
+
#: bulk-delete.php:452
|
123 |
+
msgid "Only restrict to posts which are "
|
124 |
+
msgstr "Restringir somente aos posts que são"
|
125 |
+
|
126 |
+
#: bulk-delete.php:365
|
127 |
+
#: bulk-delete.php:454
|
128 |
+
msgid "older than"
|
129 |
+
msgstr "mais antigos que"
|
130 |
+
|
131 |
+
#: bulk-delete.php:366
|
132 |
+
#: bulk-delete.php:455
|
133 |
+
msgid "posted within last"
|
134 |
+
msgstr "posts dentro dos últimos"
|
135 |
+
|
136 |
+
#: bulk-delete.php:368
|
137 |
+
#: bulk-delete.php:457
|
138 |
+
msgid "days"
|
139 |
+
msgstr "dias"
|
140 |
+
|
141 |
+
#: bulk-delete.php:381
|
142 |
+
#: bulk-delete.php:470
|
143 |
+
msgid "Public posts"
|
144 |
+
msgstr "Posts públicos"
|
145 |
+
|
146 |
+
#: bulk-delete.php:382
|
147 |
+
#: bulk-delete.php:471
|
148 |
+
msgid "Private Posts"
|
149 |
+
msgstr "Posts privados"
|
150 |
+
|
151 |
+
#: bulk-delete.php:411
|
152 |
+
msgid "By Tags"
|
153 |
+
msgstr "Por Tags"
|
154 |
+
|
155 |
+
#: bulk-delete.php:412
|
156 |
+
msgid "Select the tags whose post you want to delete"
|
157 |
+
msgstr "Selecione as tags cujos posts deseja deletar"
|
158 |
+
|
159 |
+
#: bulk-delete.php:439
|
160 |
+
msgid "All Tags"
|
161 |
+
msgstr "Todas as Tags"
|
162 |
+
|
163 |
+
#: bulk-delete.php:499
|
164 |
+
msgid "If you are looking to move posts in bulk, instead of deleting then try out my "
|
165 |
+
msgstr "Se está procurando mover posts em massa, em vez de deletá-los, tente o meu"
|
166 |
+
|
167 |
+
#: bulk-delete.php:499
|
168 |
+
msgid "Bulk Move Plugin"
|
169 |
+
msgstr "Bulk Move Plugin (Plugin Mover em Massa)"
|
170 |
+
|
171 |
+
#: bulk-delete.php:561
|
172 |
+
msgid "Are you sure you want to delete all the selected posts"
|
173 |
+
msgstr "Tem certeza que deseja deletar todos os posts selecionados"
|
174 |
+
|
175 |
+
#: bulk-delete.php:563
|
176 |
+
msgid "Please select at least one"
|
177 |
+
msgstr "Por favor, selecione pelo menos um"
|
178 |
+
|
179 |
+
#: bulk-delete.php:621
|
180 |
+
msgid "Manage"
|
181 |
+
msgstr "Gerenciar"
|
182 |
+
|
183 |
+
#: bulk-delete.php:632
|
184 |
+
msgid "plugin"
|
185 |
+
msgstr "plugin"
|
186 |
+
|
187 |
+
#: bulk-delete.php:632
|
188 |
+
msgid "Version"
|
189 |
+
msgstr "Versão"
|
190 |
+
|
191 |
+
#: bulk-delete.php:632
|
192 |
+
msgid "by"
|
193 |
+
msgstr "por"
|
194 |
+
|
195 |
+
#. Plugin Name of the plugin/theme
|
196 |
+
msgid "Bulk Delete"
|
197 |
+
msgstr "Bulk Delete (Deletar em Massa)"
|
198 |
+
|
199 |
+
#. Plugin URI of the plugin/theme
|
200 |
+
msgid "http://sudarmuthu.com/wordpress/bulk-delete"
|
201 |
+
msgstr "http://sudarmuthu.com/wordpress/bulk-delete"
|
202 |
+
|
203 |
+
#. Description of the plugin/theme
|
204 |
+
msgid "Bulk delete posts from selected categories or tags. Use it with caution."
|
205 |
+
msgstr "Deleta posts em massa a partir das categorias ou tags selecionadas. Use com cuidado."
|
206 |
+
|
207 |
+
#. Author of the plugin/theme
|
208 |
+
msgid "Sudar"
|
209 |
+
msgstr "Sudar"
|
210 |
+
|
211 |
+
#. Author URI of the plugin/theme
|
212 |
+
msgid "http://sudarmuthu.com/"
|
213 |
+
msgstr "http://sudarmuthu.com/"
|
214 |
+
|
languages/bulk-delete.pot
CHANGED
@@ -1,186 +1,247 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2010 Sudar
|
3 |
# This file is distributed under the same license as the Bulk Delete package.
|
4 |
-
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
-
#
|
6 |
-
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version: Bulk Delete
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
|
11 |
-
"POT-Creation-Date:
|
|
|
|
|
|
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
-
"MIME-Version: 1.0\n"
|
16 |
-
"Content-Type: text/plain; charset=utf-8\n"
|
17 |
-
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
-
#: bulk-delete.php:
|
20 |
msgid "All the selected posts have been sucessfully deleted."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: bulk-delete.php:
|
24 |
msgid "WARNING: Posts deleted once cannot be retrieved back. Use with caution."
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: bulk-delete.php:
|
28 |
msgid "Select the posts which you want to delete"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: bulk-delete.php:
|
32 |
msgid "All Drafts"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: bulk-delete.php:
|
36 |
msgid "Drafts"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: bulk-delete.php:
|
40 |
msgid "All Revisions"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: bulk-delete.php:
|
44 |
-
msgid "
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: bulk-delete.php:
|
48 |
msgid "All Pending posts"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: bulk-delete.php:
|
52 |
-
#: bulk-delete.php:
|
53 |
msgid "Posts"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: bulk-delete.php:
|
57 |
msgid "All scheduled posts"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: bulk-delete.php:
|
|
|
|
|
|
|
|
|
61 |
msgid "All Pages"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: bulk-delete.php:
|
65 |
msgid "Pages"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: bulk-delete.php:
|
|
|
69 |
msgid "Move to Trash"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: bulk-delete.php:
|
|
|
73 |
msgid "Delete permanently"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: bulk-delete.php:
|
|
|
77 |
msgid "Only delete first "
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: bulk-delete.php:
|
|
|
81 |
msgid "posts."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: bulk-delete.php:
|
|
|
85 |
msgid ""
|
86 |
"Use this option if there are more than 1000 posts and the script timesout."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: bulk-delete.php:
|
|
|
90 |
msgid "Bulk Delete "
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: bulk-delete.php:
|
94 |
msgid "By Category"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: bulk-delete.php:
|
98 |
msgid "Select the categories whose post you want to delete"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: bulk-delete.php:
|
102 |
msgid "All Categories"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: bulk-delete.php:
|
106 |
msgid "Only restrict to posts which are "
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: bulk-delete.php:
|
110 |
msgid "older than"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: bulk-delete.php:
|
114 |
msgid "posted within last"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: bulk-delete.php:
|
118 |
msgid "days"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: bulk-delete.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
msgid "By Tags"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: bulk-delete.php:
|
126 |
msgid "Select the tags whose post you want to delete"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: bulk-delete.php:
|
130 |
msgid "All Tags"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: bulk-delete.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid ""
|
135 |
"If you are looking to move posts in bulk, instead of deleting then try out "
|
136 |
"my "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: bulk-delete.php:
|
140 |
msgid "Bulk Move Plugin"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: bulk-delete.php:
|
144 |
msgid "Are you sure you want to delete all the selected posts"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: bulk-delete.php:
|
148 |
-
msgid "Please select
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: bulk-delete.php:
|
152 |
msgid "Manage"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: bulk-delete.php:
|
156 |
msgid "plugin"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: bulk-delete.php:
|
160 |
msgid "Version"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: bulk-delete.php:
|
164 |
msgid "by"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#. Plugin Name of
|
168 |
msgid "Bulk Delete"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#. Plugin URI of
|
172 |
msgid "http://sudarmuthu.com/wordpress/bulk-delete"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#. Description of
|
176 |
msgid ""
|
177 |
"Bulk delete posts from selected categories or tags. Use it with caution."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#. Author of
|
181 |
msgid "Sudar"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#. Author URI of
|
185 |
msgid "http://sudarmuthu.com/"
|
186 |
msgstr ""
|
1 |
+
# Copyright (C) 2010 Bulk Delete
|
|
|
2 |
# This file is distributed under the same license as the Bulk Delete package.
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Bulk Delete 1.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
|
7 |
+
"POT-Creation-Date: 2011-01-24 17:19:16+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
|
|
|
|
|
14 |
|
15 |
+
#: bulk-delete.php:275
|
16 |
msgid "All the selected posts have been sucessfully deleted."
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: bulk-delete.php:285
|
20 |
msgid "WARNING: Posts deleted once cannot be retrieved back. Use with caution."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: bulk-delete.php:290
|
24 |
msgid "Select the posts which you want to delete"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: bulk-delete.php:310
|
28 |
msgid "All Drafts"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: bulk-delete.php:310
|
32 |
msgid "Drafts"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: bulk-delete.php:316
|
36 |
msgid "All Revisions"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: bulk-delete.php:316
|
40 |
+
msgid "Revisions"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: bulk-delete.php:322
|
44 |
msgid "All Pending posts"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: bulk-delete.php:322 bulk-delete.php:328 bulk-delete.php:334
|
48 |
+
#: bulk-delete.php:389 bulk-delete.php:477 bulk-delete.php:572
|
49 |
msgid "Posts"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: bulk-delete.php:328
|
53 |
msgid "All scheduled posts"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: bulk-delete.php:334
|
57 |
+
msgid "All private posts"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: bulk-delete.php:340
|
61 |
msgid "All Pages"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: bulk-delete.php:340
|
65 |
msgid "Pages"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: bulk-delete.php:346 bulk-delete.php:423 bulk-delete.php:512
|
69 |
+
#: bulk-delete.php:607
|
70 |
msgid "Move to Trash"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: bulk-delete.php:347 bulk-delete.php:424 bulk-delete.php:513
|
74 |
+
#: bulk-delete.php:608
|
75 |
msgid "Delete permanently"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: bulk-delete.php:354 bulk-delete.php:440 bulk-delete.php:529
|
79 |
+
#: bulk-delete.php:624
|
80 |
msgid "Only delete first "
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: bulk-delete.php:355 bulk-delete.php:441 bulk-delete.php:530
|
84 |
+
#: bulk-delete.php:625
|
85 |
msgid "posts."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: bulk-delete.php:356 bulk-delete.php:442 bulk-delete.php:531
|
89 |
+
#: bulk-delete.php:626
|
90 |
msgid ""
|
91 |
"Use this option if there are more than 1000 posts and the script timesout."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: bulk-delete.php:363 bulk-delete.php:449 bulk-delete.php:538
|
95 |
+
#: bulk-delete.php:633
|
96 |
msgid "Bulk Delete "
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: bulk-delete.php:371
|
100 |
msgid "By Category"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: bulk-delete.php:372
|
104 |
msgid "Select the categories whose post you want to delete"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: bulk-delete.php:400
|
108 |
msgid "All Categories"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: bulk-delete.php:412 bulk-delete.php:501 bulk-delete.php:596
|
112 |
msgid "Only restrict to posts which are "
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: bulk-delete.php:414 bulk-delete.php:503 bulk-delete.php:598
|
116 |
msgid "older than"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: bulk-delete.php:415 bulk-delete.php:504 bulk-delete.php:599
|
120 |
msgid "posted within last"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bulk-delete.php:417 bulk-delete.php:506 bulk-delete.php:601
|
124 |
msgid "days"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: bulk-delete.php:430 bulk-delete.php:519 bulk-delete.php:614
|
128 |
+
msgid "Public posts"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: bulk-delete.php:431 bulk-delete.php:520 bulk-delete.php:615
|
132 |
+
msgid "Private Posts"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: bulk-delete.php:460
|
136 |
msgid "By Tags"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bulk-delete.php:461
|
140 |
msgid "Select the tags whose post you want to delete"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: bulk-delete.php:488
|
144 |
msgid "All Tags"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: bulk-delete.php:553
|
148 |
+
msgid "By Taxonomies"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: bulk-delete.php:554
|
152 |
+
msgid "Select the taxonomies whose post you want to delete"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: bulk-delete.php:583
|
156 |
+
msgid "All Taxonomies"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: bulk-delete.php:643
|
160 |
+
msgid "Support"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: bulk-delete.php:644
|
164 |
+
msgid ""
|
165 |
+
"If you have any questions/comments/feedback about the Plugin then post a "
|
166 |
+
"comment in the <a target=\"_blank\" href = \"http://sudarmuthu.com/wordpress/"
|
167 |
+
"bulk-delete\">Plugins homepage</a>."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: bulk-delete.php:645
|
171 |
+
msgid "If you like the Plugin, then consider doing one of the following."
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: bulk-delete.php:647
|
175 |
+
msgid "Write a blog post about the Plugin."
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: bulk-delete.php:648
|
179 |
+
msgid " about it."
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: bulk-delete.php:649
|
183 |
+
msgid ""
|
184 |
+
"Give a <a href = \"http://wordpress.org/extend/plugins/bulk-delete/\" target="
|
185 |
+
"\"_blank\">good rating</a>."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: bulk-delete.php:650
|
189 |
+
msgid ""
|
190 |
+
"Say <a href = \"http://sudarmuthu.com/if-you-wanna-thank-me\" target=\"_blank"
|
191 |
+
"\">thank you</a>."
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: bulk-delete.php:653
|
195 |
msgid ""
|
196 |
"If you are looking to move posts in bulk, instead of deleting then try out "
|
197 |
"my "
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: bulk-delete.php:653
|
201 |
msgid "Bulk Move Plugin"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: bulk-delete.php:715
|
205 |
msgid "Are you sure you want to delete all the selected posts"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: bulk-delete.php:717
|
209 |
+
msgid "Please select at least one"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: bulk-delete.php:808
|
213 |
msgid "Manage"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: bulk-delete.php:819
|
217 |
msgid "plugin"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: bulk-delete.php:819
|
221 |
msgid "Version"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: bulk-delete.php:819
|
225 |
msgid "by"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#. Plugin Name of the plugin/theme
|
229 |
msgid "Bulk Delete"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#. Plugin URI of the plugin/theme
|
233 |
msgid "http://sudarmuthu.com/wordpress/bulk-delete"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#. Description of the plugin/theme
|
237 |
msgid ""
|
238 |
"Bulk delete posts from selected categories or tags. Use it with caution."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#. Author of the plugin/theme
|
242 |
msgid "Sudar"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#. Author URI of the plugin/theme
|
246 |
msgid "http://sudarmuthu.com/"
|
247 |
msgstr ""
|
readme.txt
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
Contributors: sudar
|
3 |
Tags: post, comment, delete, bulk, draft, revision, page
|
4 |
Requires at least: 2.0
|
5 |
-
Tested up to: 3.0
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
Bulk delete posts from selected categories or tags
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
-
Bulk Delete is a WordPress Plugin which can be used to delete posts in bulk from selected categories or
|
13 |
|
14 |
More details about the Plugin can be found at the [Plugins Home page][1].
|
15 |
|
@@ -17,7 +17,14 @@ If you looking for just moving posts, instead of deleting, then use [Bulk Move P
|
|
17 |
|
18 |
[1]: http://sudarmuthu.com/wordpress/bulk-delete
|
19 |
[2]: http://sudarmuthu.com/wordpress/bulk-move
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
== Installation ==
|
22 |
|
23 |
Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
|
@@ -26,7 +33,11 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
|
|
26 |
|
27 |
1. Delete posts based on type
|
28 |
|
29 |
-
2. Delete posts based on
|
|
|
|
|
|
|
|
|
30 |
|
31 |
== Changelog ==
|
32 |
|
@@ -62,6 +73,11 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
|
|
62 |
###v1.0 (2010-06-19)
|
63 |
* Proper handling of limits.
|
64 |
|
|
|
|
|
|
|
|
|
|
|
65 |
==Readme Generator==
|
66 |
|
67 |
This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
|
2 |
Contributors: sudar
|
3 |
Tags: post, comment, delete, bulk, draft, revision, page
|
4 |
Requires at least: 2.0
|
5 |
+
Tested up to: 3.0.4
|
6 |
+
Stable tag: 1.1
|
7 |
|
8 |
Bulk delete posts from selected categories or tags
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
+
Bulk Delete is a WordPress Plugin which can be used to delete posts in bulk from selected categories, tags or custom taxonomies. This Plugin can also delete all drafts, post revisions or pages.
|
13 |
|
14 |
More details about the Plugin can be found at the [Plugins Home page][1].
|
15 |
|
17 |
|
18 |
[1]: http://sudarmuthu.com/wordpress/bulk-delete
|
19 |
[2]: http://sudarmuthu.com/wordpress/bulk-move
|
20 |
+
|
21 |
+
### Translation
|
22 |
+
|
23 |
+
* Dutch (Thanks Rene of [WordPress WPwebshop][3])
|
24 |
+
* Brazilian Portuguese (Thanks [Marcelo][4])
|
25 |
+
|
26 |
+
[3]: http://wpwebshop.com/premium-wordpress-plugins/
|
27 |
+
[4]: http://www.techload.com.br/
|
28 |
== Installation ==
|
29 |
|
30 |
Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
|
33 |
|
34 |
1. Delete posts based on type
|
35 |
|
36 |
+
2. Delete posts based on date, post visibilty or choose to move them to trash or delete permanently
|
37 |
+
|
38 |
+
3. Delete Posts by Categories or Tags
|
39 |
+
|
40 |
+
4. Delete Posts by Custom taxonomies
|
41 |
|
42 |
== Changelog ==
|
43 |
|
73 |
###v1.0 (2010-06-19)
|
74 |
* Proper handling of limits.
|
75 |
|
76 |
+
###v1.1 (2011-01-22)
|
77 |
+
* Added support to delete posts by custom taxonomies
|
78 |
+
* Added Dutch Translation
|
79 |
+
* Added Brazilian Portuguese Translation
|
80 |
+
|
81 |
==Readme Generator==
|
82 |
|
83 |
This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
|