Version Description
Download this release
Release Info
Developer | sudar |
Plugin | Bulk Delete |
Version | 1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1 to 1.2
- bulk-delete.php +18 -17
- languages/bulk-delete-pt_BR.mo +0 -0
- languages/bulk-delete-pt_BR.po +118 -65
- readme.txt +35 -6
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
bulk-delete.php
CHANGED
@@ -5,7 +5,7 @@ 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.
|
9 |
License: GPL
|
10 |
Author: Sudar
|
11 |
Author URI: http://sudarmuthu.com/
|
@@ -22,6 +22,7 @@ Text Domain: bulk-delete
|
|
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 |
|
@@ -216,7 +217,7 @@ if (!function_exists('smbd_request_handler')) {
|
|
216 |
|
217 |
// Revisions
|
218 |
if ("revisions" == $_POST['smbd_revisions']) {
|
219 |
-
$revisions = $wpdb->get_results($wpdb->prepare("select
|
220 |
|
221 |
foreach ($revisions as $revision) {
|
222 |
wp_delete_post($revision->ID, $force_delete);
|
@@ -225,7 +226,7 @@ if (!function_exists('smbd_request_handler')) {
|
|
225 |
|
226 |
// Pending Posts
|
227 |
if ("pending" == $_POST['smbd_pending']) {
|
228 |
-
$pendings = $wpdb->get_results($wpdb->prepare("select
|
229 |
|
230 |
foreach ($pendings as $pending) {
|
231 |
wp_delete_post($pending->ID, $force_delete);
|
@@ -234,7 +235,7 @@ if (!function_exists('smbd_request_handler')) {
|
|
234 |
|
235 |
// Future Posts
|
236 |
if ("future" == $_POST['smbd_future']) {
|
237 |
-
$futures = $wpdb->get_results($wpdb->prepare("select
|
238 |
|
239 |
foreach ($futures as $future) {
|
240 |
wp_delete_post($future->ID, $force_delete);
|
@@ -243,7 +244,7 @@ if (!function_exists('smbd_request_handler')) {
|
|
243 |
|
244 |
// Private Posts
|
245 |
if ("private" == $_POST['smbd_private']) {
|
246 |
-
$privates = $wpdb->get_results($wpdb->prepare("select
|
247 |
|
248 |
foreach ($privates as $private) {
|
249 |
wp_delete_post($private->ID, $force_delete);
|
@@ -295,49 +296,49 @@ if (!function_exists('smbd_displayOptions')) {
|
|
295 |
|
296 |
<?php
|
297 |
$wp_query = new WP_Query;
|
298 |
-
$drafts = $
|
299 |
-
$revisions = $wpdb->
|
300 |
-
$pending = $wpdb->
|
301 |
-
$future = $wpdb->
|
302 |
-
$private = $wpdb->
|
303 |
-
$pages = $
|
304 |
?>
|
305 |
<fieldset class="options">
|
306 |
<table class="optiontable">
|
307 |
<tr>
|
308 |
<td scope="row" >
|
309 |
<input name="smbd_drafs" id ="smbd_drafs" value = "drafs" type = "checkbox" />
|
310 |
-
<label for="smbd_drafs"><?php echo _e("All Drafts", 'bulk-delete'); ?> (<?php echo
|
311 |
</td>
|
312 |
</tr>
|
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
|
317 |
</td>
|
318 |
</tr>
|
319 |
<tr>
|
320 |
<td>
|
321 |
<input name="smbd_pending" id ="smbd_pending" value = "pending" type = "checkbox" />
|
322 |
-
<label for="smbd_pending"><?php echo _e("All Pending posts", 'bulk-delete'); ?> (<?php echo
|
323 |
</td>
|
324 |
</tr>
|
325 |
<tr>
|
326 |
<td>
|
327 |
<input name="smbd_future" id ="smbd_future" value = "future" type = "checkbox" />
|
328 |
-
<label for="smbd_future"><?php echo _e("All scheduled posts", 'bulk-delete'); ?> (<?php echo
|
329 |
</td>
|
330 |
</tr>
|
331 |
<tr>
|
332 |
<td>
|
333 |
<input name="smbd_private" id ="smbd_private" value = "private" type = "checkbox" />
|
334 |
-
<label for="smbd_private"><?php echo _e("All private posts", 'bulk-delete'); ?> (<?php echo
|
335 |
</td>
|
336 |
</tr>
|
337 |
<tr>
|
338 |
<td>
|
339 |
<input name="smbd_pages" value = "pages" type = "checkbox" />
|
340 |
-
<label for="smbd_pages"><?php echo _e("All Pages", 'bulk-delete'); ?> (<?php echo
|
341 |
</td>
|
342 |
</tr>
|
343 |
|
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.2
|
9 |
License: GPL
|
10 |
Author: Sudar
|
11 |
Author URI: http://sudarmuthu.com/
|
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 |
+
2011-02-06 - v1.2 - Added some optimization to handle huge number of posts in underpowered servers
|
26 |
|
27 |
/* Copyright 2009 Sudar Muthu (email : sudar@sudarmuthu.com)
|
28 |
|
217 |
|
218 |
// Revisions
|
219 |
if ("revisions" == $_POST['smbd_revisions']) {
|
220 |
+
$revisions = $wpdb->get_results($wpdb->prepare("select ID from $wpdb->posts where post_type = 'revision'"));
|
221 |
|
222 |
foreach ($revisions as $revision) {
|
223 |
wp_delete_post($revision->ID, $force_delete);
|
226 |
|
227 |
// Pending Posts
|
228 |
if ("pending" == $_POST['smbd_pending']) {
|
229 |
+
$pendings = $wpdb->get_results($wpdb->prepare("select ID from $wpdb->posts where post_status = 'pending'"));
|
230 |
|
231 |
foreach ($pendings as $pending) {
|
232 |
wp_delete_post($pending->ID, $force_delete);
|
235 |
|
236 |
// Future Posts
|
237 |
if ("future" == $_POST['smbd_future']) {
|
238 |
+
$futures = $wpdb->get_results($wpdb->prepare("select ID from $wpdb->posts where post_status = 'future'"));
|
239 |
|
240 |
foreach ($futures as $future) {
|
241 |
wp_delete_post($future->ID, $force_delete);
|
244 |
|
245 |
// Private Posts
|
246 |
if ("private" == $_POST['smbd_private']) {
|
247 |
+
$privates = $wpdb->get_results($wpdb->prepare("select ID from $wpdb->posts where post_status = 'private'"));
|
248 |
|
249 |
foreach ($privates as $private) {
|
250 |
wp_delete_post($private->ID, $force_delete);
|
296 |
|
297 |
<?php
|
298 |
$wp_query = new WP_Query;
|
299 |
+
$drafts = $wpdb->get_var($wpdb->prepare("select count(*) from $wpdb->posts where post_status = 'draft'"));
|
300 |
+
$revisions = $wpdb->get_var($wpdb->prepare("select count(*) from $wpdb->posts where post_type = 'revision'"));
|
301 |
+
$pending = $wpdb->get_var($wpdb->prepare("select count(*) from $wpdb->posts where post_status = 'pending'"));
|
302 |
+
$future = $wpdb->get_var($wpdb->prepare("select count(*) from $wpdb->posts where post_status = 'future'"));
|
303 |
+
$private = $wpdb->get_var($wpdb->prepare("select count(*) from $wpdb->posts where post_status = 'private'"));
|
304 |
+
$pages = $wpdb->get_var($wpdb->prepare("select count(*) from $wpdb->posts where post_type = 'page'"));
|
305 |
?>
|
306 |
<fieldset class="options">
|
307 |
<table class="optiontable">
|
308 |
<tr>
|
309 |
<td scope="row" >
|
310 |
<input name="smbd_drafs" id ="smbd_drafs" value = "drafs" type = "checkbox" />
|
311 |
+
<label for="smbd_drafs"><?php echo _e("All Drafts", 'bulk-delete'); ?> (<?php echo $drafts . " "; _e("Drafts", 'bulk-delete'); ?>)</label>
|
312 |
</td>
|
313 |
</tr>
|
314 |
<tr>
|
315 |
<td>
|
316 |
<input name="smbd_revisions" id ="smbd_revisions" value = "revisions" type = "checkbox" />
|
317 |
+
<label for="smbd_revisions"><?php echo _e("All Revisions", 'bulk-delete'); ?> (<?php echo $revisions . " "; _e("Revisions", 'bulk-delete'); ?>)</label>
|
318 |
</td>
|
319 |
</tr>
|
320 |
<tr>
|
321 |
<td>
|
322 |
<input name="smbd_pending" id ="smbd_pending" value = "pending" type = "checkbox" />
|
323 |
+
<label for="smbd_pending"><?php echo _e("All Pending posts", 'bulk-delete'); ?> (<?php echo $pending . " "; _e("Posts", 'bulk-delete'); ?>)</label>
|
324 |
</td>
|
325 |
</tr>
|
326 |
<tr>
|
327 |
<td>
|
328 |
<input name="smbd_future" id ="smbd_future" value = "future" type = "checkbox" />
|
329 |
+
<label for="smbd_future"><?php echo _e("All scheduled posts", 'bulk-delete'); ?> (<?php echo $future . " "; _e("Posts", 'bulk-delete'); ?>)</label>
|
330 |
</td>
|
331 |
</tr>
|
332 |
<tr>
|
333 |
<td>
|
334 |
<input name="smbd_private" id ="smbd_private" value = "private" type = "checkbox" />
|
335 |
+
<label for="smbd_private"><?php echo _e("All private posts", 'bulk-delete'); ?> (<?php echo $private . " "; _e("Posts", 'bulk-delete'); ?>)</label>
|
336 |
</td>
|
337 |
</tr>
|
338 |
<tr>
|
339 |
<td>
|
340 |
<input name="smbd_pages" value = "pages" type = "checkbox" />
|
341 |
+
<label for="smbd_pages"><?php echo _e("All Pages", 'bulk-delete'); ?> (<?php echo $pages . " "; _e("Pages", 'bulk-delete'); ?>)</label>
|
342 |
</td>
|
343 |
</tr>
|
344 |
|
languages/bulk-delete-pt_BR.mo
CHANGED
Binary file
|
languages/bulk-delete-pt_BR.po
CHANGED
@@ -4,191 +4,244 @@ 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-
|
|
|
|
|
|
|
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:
|
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:
|
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:
|
26 |
msgid "Select the posts which you want to delete"
|
27 |
msgstr "Selecione os posts que deseja deletar"
|
28 |
|
29 |
-
#: bulk-delete.php:
|
30 |
msgid "All Drafts"
|
31 |
msgstr "Todos os Rascunhos"
|
32 |
|
33 |
-
#: bulk-delete.php:
|
34 |
msgid "Drafts"
|
35 |
msgstr "Rascunhos"
|
36 |
|
37 |
-
#: bulk-delete.php:
|
38 |
msgid "All Revisions"
|
39 |
msgstr "Todas as Revisões"
|
40 |
|
41 |
-
#: bulk-delete.php:
|
42 |
msgid "Revisions"
|
43 |
msgstr "Revisões"
|
44 |
|
45 |
-
#: bulk-delete.php:
|
46 |
msgid "All Pending posts"
|
47 |
msgstr "Todos os posts Pendentes"
|
48 |
|
49 |
-
#: bulk-delete.php:
|
50 |
-
#: bulk-delete.php:
|
51 |
-
#: bulk-delete.php:
|
52 |
-
#: bulk-delete.php:
|
53 |
-
#: bulk-delete.php:
|
|
|
54 |
msgid "Posts"
|
55 |
msgstr "Posts"
|
56 |
|
57 |
-
#: bulk-delete.php:
|
58 |
msgid "All scheduled posts"
|
59 |
msgstr "Todos os posts agendados"
|
60 |
|
61 |
-
#: bulk-delete.php:
|
62 |
msgid "All private posts"
|
63 |
msgstr "Todos os posts privados"
|
64 |
|
65 |
-
#: bulk-delete.php:
|
66 |
msgid "All Pages"
|
67 |
msgstr "Todas as páginas"
|
68 |
|
69 |
-
#: bulk-delete.php:
|
70 |
msgid "Pages"
|
71 |
msgstr "Páginas"
|
72 |
|
73 |
-
#: bulk-delete.php:
|
74 |
-
#: bulk-delete.php:
|
75 |
-
#: bulk-delete.php:
|
|
|
76 |
msgid "Move to Trash"
|
77 |
msgstr "Mover para a Lixeira"
|
78 |
|
79 |
-
#: bulk-delete.php:
|
80 |
-
#: bulk-delete.php:
|
81 |
-
#: bulk-delete.php:
|
|
|
82 |
msgid "Delete permanently"
|
83 |
msgstr "Deletar permanentemente"
|
84 |
|
85 |
-
#: bulk-delete.php:
|
86 |
-
#: bulk-delete.php:
|
87 |
-
#: bulk-delete.php:
|
|
|
88 |
msgid "Only delete first "
|
89 |
msgstr "Deletar somente o primeiro"
|
90 |
|
91 |
-
#: bulk-delete.php:
|
92 |
-
#: bulk-delete.php:
|
93 |
-
#: bulk-delete.php:
|
|
|
94 |
msgid "posts."
|
95 |
msgstr "posts."
|
96 |
|
97 |
-
#: bulk-delete.php:
|
98 |
-
#: bulk-delete.php:
|
99 |
-
#: bulk-delete.php:
|
|
|
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:
|
104 |
-
#: bulk-delete.php:
|
105 |
-
#: bulk-delete.php:
|
|
|
106 |
msgid "Bulk Delete "
|
107 |
msgstr "Deletar em Massa"
|
108 |
|
109 |
-
#: bulk-delete.php:
|
110 |
msgid "By Category"
|
111 |
msgstr "Por Categoria"
|
112 |
|
113 |
-
#: bulk-delete.php:
|
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:
|
118 |
msgid "All Categories"
|
119 |
msgstr "Todas Categorias"
|
120 |
|
121 |
-
#: bulk-delete.php:
|
122 |
-
#: bulk-delete.php:
|
|
|
123 |
msgid "Only restrict to posts which are "
|
124 |
msgstr "Restringir somente aos posts que são"
|
125 |
|
126 |
-
#: bulk-delete.php:
|
127 |
-
#: bulk-delete.php:
|
|
|
128 |
msgid "older than"
|
129 |
msgstr "mais antigos que"
|
130 |
|
131 |
-
#: bulk-delete.php:
|
132 |
-
#: bulk-delete.php:
|
|
|
133 |
msgid "posted within last"
|
134 |
msgstr "posts dentro dos últimos"
|
135 |
|
136 |
-
#: bulk-delete.php:
|
137 |
-
#: bulk-delete.php:
|
|
|
138 |
msgid "days"
|
139 |
msgstr "dias"
|
140 |
|
141 |
-
#: bulk-delete.php:
|
142 |
-
#: bulk-delete.php:
|
|
|
143 |
msgid "Public posts"
|
144 |
msgstr "Posts públicos"
|
145 |
|
146 |
-
#: bulk-delete.php:
|
147 |
-
#: bulk-delete.php:
|
|
|
148 |
msgid "Private Posts"
|
149 |
msgstr "Posts privados"
|
150 |
|
151 |
-
#: bulk-delete.php:
|
152 |
msgid "By Tags"
|
153 |
msgstr "Por Tags"
|
154 |
|
155 |
-
#: bulk-delete.php:
|
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:
|
160 |
msgid "All Tags"
|
161 |
msgstr "Todas as Tags"
|
162 |
|
163 |
-
#: bulk-delete.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
168 |
msgid "Bulk Move Plugin"
|
169 |
msgstr "Bulk Move Plugin (Plugin Mover em Massa)"
|
170 |
|
171 |
-
#: bulk-delete.php:
|
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:
|
176 |
msgid "Please select at least one"
|
177 |
msgstr "Por favor, selecione pelo menos um"
|
178 |
|
179 |
-
#: bulk-delete.php:
|
180 |
msgid "Manage"
|
181 |
msgstr "Gerenciar"
|
182 |
|
183 |
-
#: bulk-delete.php:
|
184 |
msgid "plugin"
|
185 |
msgstr "plugin"
|
186 |
|
187 |
-
#: bulk-delete.php:
|
188 |
msgid "Version"
|
189 |
msgstr "Versão"
|
190 |
|
191 |
-
#: bulk-delete.php:
|
192 |
msgid "by"
|
193 |
msgstr "por"
|
194 |
|
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-24 17:19:16+00:00\n"
|
8 |
+
"PO-Revision-Date: 2011-02-05 16:15-0300\n"
|
9 |
+
"Last-Translator: Marcelo <contato@techload.com.br>\n"
|
10 |
+
"Language-Team: pt-br <sudar@sudarmuthu.com>\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
14 |
"X-Poedit-Language: Portuguese\n"
|
15 |
"X-Poedit-Country: BRAZIL\n"
|
16 |
|
17 |
+
#: bulk-delete.php:275
|
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:285
|
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:290
|
26 |
msgid "Select the posts which you want to delete"
|
27 |
msgstr "Selecione os posts que deseja deletar"
|
28 |
|
29 |
+
#: bulk-delete.php:310
|
30 |
msgid "All Drafts"
|
31 |
msgstr "Todos os Rascunhos"
|
32 |
|
33 |
+
#: bulk-delete.php:310
|
34 |
msgid "Drafts"
|
35 |
msgstr "Rascunhos"
|
36 |
|
37 |
+
#: bulk-delete.php:316
|
38 |
msgid "All Revisions"
|
39 |
msgstr "Todas as Revisões"
|
40 |
|
41 |
+
#: bulk-delete.php:316
|
42 |
msgid "Revisions"
|
43 |
msgstr "Revisões"
|
44 |
|
45 |
+
#: bulk-delete.php:322
|
46 |
msgid "All Pending posts"
|
47 |
msgstr "Todos os posts Pendentes"
|
48 |
|
49 |
+
#: bulk-delete.php:322
|
50 |
+
#: bulk-delete.php:328
|
51 |
+
#: bulk-delete.php:334
|
52 |
+
#: bulk-delete.php:389
|
53 |
+
#: bulk-delete.php:477
|
54 |
+
#: bulk-delete.php:572
|
55 |
msgid "Posts"
|
56 |
msgstr "Posts"
|
57 |
|
58 |
+
#: bulk-delete.php:328
|
59 |
msgid "All scheduled posts"
|
60 |
msgstr "Todos os posts agendados"
|
61 |
|
62 |
+
#: bulk-delete.php:334
|
63 |
msgid "All private posts"
|
64 |
msgstr "Todos os posts privados"
|
65 |
|
66 |
+
#: bulk-delete.php:340
|
67 |
msgid "All Pages"
|
68 |
msgstr "Todas as páginas"
|
69 |
|
70 |
+
#: bulk-delete.php:340
|
71 |
msgid "Pages"
|
72 |
msgstr "Páginas"
|
73 |
|
74 |
+
#: bulk-delete.php:346
|
75 |
+
#: bulk-delete.php:423
|
76 |
+
#: bulk-delete.php:512
|
77 |
+
#: bulk-delete.php:607
|
78 |
msgid "Move to Trash"
|
79 |
msgstr "Mover para a Lixeira"
|
80 |
|
81 |
+
#: bulk-delete.php:347
|
82 |
+
#: bulk-delete.php:424
|
83 |
+
#: bulk-delete.php:513
|
84 |
+
#: bulk-delete.php:608
|
85 |
msgid "Delete permanently"
|
86 |
msgstr "Deletar permanentemente"
|
87 |
|
88 |
+
#: bulk-delete.php:354
|
89 |
+
#: bulk-delete.php:440
|
90 |
+
#: bulk-delete.php:529
|
91 |
+
#: bulk-delete.php:624
|
92 |
msgid "Only delete first "
|
93 |
msgstr "Deletar somente o primeiro"
|
94 |
|
95 |
+
#: bulk-delete.php:355
|
96 |
+
#: bulk-delete.php:441
|
97 |
+
#: bulk-delete.php:530
|
98 |
+
#: bulk-delete.php:625
|
99 |
msgid "posts."
|
100 |
msgstr "posts."
|
101 |
|
102 |
+
#: bulk-delete.php:356
|
103 |
+
#: bulk-delete.php:442
|
104 |
+
#: bulk-delete.php:531
|
105 |
+
#: bulk-delete.php:626
|
106 |
msgid "Use this option if there are more than 1000 posts and the script timesout."
|
107 |
msgstr "Use esta opção se houver mais de 1000 posts e o script esgotar o tempo"
|
108 |
|
109 |
+
#: bulk-delete.php:363
|
110 |
+
#: bulk-delete.php:449
|
111 |
+
#: bulk-delete.php:538
|
112 |
+
#: bulk-delete.php:633
|
113 |
msgid "Bulk Delete "
|
114 |
msgstr "Deletar em Massa"
|
115 |
|
116 |
+
#: bulk-delete.php:371
|
117 |
msgid "By Category"
|
118 |
msgstr "Por Categoria"
|
119 |
|
120 |
+
#: bulk-delete.php:372
|
121 |
msgid "Select the categories whose post you want to delete"
|
122 |
msgstr "Selecione as categorias cujos posts deseja deletar"
|
123 |
|
124 |
+
#: bulk-delete.php:400
|
125 |
msgid "All Categories"
|
126 |
msgstr "Todas Categorias"
|
127 |
|
128 |
+
#: bulk-delete.php:412
|
129 |
+
#: bulk-delete.php:501
|
130 |
+
#: bulk-delete.php:596
|
131 |
msgid "Only restrict to posts which are "
|
132 |
msgstr "Restringir somente aos posts que são"
|
133 |
|
134 |
+
#: bulk-delete.php:414
|
135 |
+
#: bulk-delete.php:503
|
136 |
+
#: bulk-delete.php:598
|
137 |
msgid "older than"
|
138 |
msgstr "mais antigos que"
|
139 |
|
140 |
+
#: bulk-delete.php:415
|
141 |
+
#: bulk-delete.php:504
|
142 |
+
#: bulk-delete.php:599
|
143 |
msgid "posted within last"
|
144 |
msgstr "posts dentro dos últimos"
|
145 |
|
146 |
+
#: bulk-delete.php:417
|
147 |
+
#: bulk-delete.php:506
|
148 |
+
#: bulk-delete.php:601
|
149 |
msgid "days"
|
150 |
msgstr "dias"
|
151 |
|
152 |
+
#: bulk-delete.php:430
|
153 |
+
#: bulk-delete.php:519
|
154 |
+
#: bulk-delete.php:614
|
155 |
msgid "Public posts"
|
156 |
msgstr "Posts públicos"
|
157 |
|
158 |
+
#: bulk-delete.php:431
|
159 |
+
#: bulk-delete.php:520
|
160 |
+
#: bulk-delete.php:615
|
161 |
msgid "Private Posts"
|
162 |
msgstr "Posts privados"
|
163 |
|
164 |
+
#: bulk-delete.php:460
|
165 |
msgid "By Tags"
|
166 |
msgstr "Por Tags"
|
167 |
|
168 |
+
#: bulk-delete.php:461
|
169 |
msgid "Select the tags whose post you want to delete"
|
170 |
msgstr "Selecione as tags cujos posts deseja deletar"
|
171 |
|
172 |
+
#: bulk-delete.php:488
|
173 |
msgid "All Tags"
|
174 |
msgstr "Todas as Tags"
|
175 |
|
176 |
+
#: bulk-delete.php:553
|
177 |
+
msgid "By Taxonomies"
|
178 |
+
msgstr "Por Taxonomias"
|
179 |
+
|
180 |
+
#: bulk-delete.php:554
|
181 |
+
msgid "Select the taxonomies whose post you want to delete"
|
182 |
+
msgstr "Selecione as taxonomias cujos posts deseja deletar"
|
183 |
+
|
184 |
+
#: bulk-delete.php:583
|
185 |
+
msgid "All Taxonomies"
|
186 |
+
msgstr "Todas Taxonomias"
|
187 |
+
|
188 |
+
#: bulk-delete.php:643
|
189 |
+
msgid "Support"
|
190 |
+
msgstr "Suporte"
|
191 |
+
|
192 |
+
#: bulk-delete.php:644
|
193 |
+
msgid "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>."
|
194 |
+
msgstr "Se você tem alguma pergunta/comentário/feedback sobre o Plugin, poste um comentário na <a target=\"_blank\" href = \"http://sudarmuthu.com/wordpress/bulk-delete\">Página do Plugin</a>."
|
195 |
+
|
196 |
+
#: bulk-delete.php:645
|
197 |
+
msgid "If you like the Plugin, then consider doing one of the following."
|
198 |
+
msgstr "Se você gostou do Plugin, considere:"
|
199 |
+
|
200 |
+
#: bulk-delete.php:647
|
201 |
+
msgid "Write a blog post about the Plugin."
|
202 |
+
msgstr "Escrever um post sobre o Plugin em seu blog."
|
203 |
+
|
204 |
+
#: bulk-delete.php:648
|
205 |
+
msgid " about it."
|
206 |
+
msgstr "sobre o Plugin."
|
207 |
+
|
208 |
+
#: bulk-delete.php:649
|
209 |
+
msgid "Give a <a href = \"http://wordpress.org/extend/plugins/bulk-delete/\" target=\"_blank\">good rating</a>."
|
210 |
+
msgstr "Dar uma <a href = \"http://wordpress.org/extend/plugins/bulk-delete/\" target=\"_blank\">boa nota</a>."
|
211 |
+
|
212 |
+
#: bulk-delete.php:650
|
213 |
+
msgid "Say <a href = \"http://sudarmuthu.com/if-you-wanna-thank-me\" target=\"_blank\">thank you</a>."
|
214 |
+
msgstr "Dizer <a href = \"http://sudarmuthu.com/if-you-wanna-thank-me\" target=\"_blank\">obrigado</a>."
|
215 |
+
|
216 |
+
#: bulk-delete.php:653
|
217 |
msgid "If you are looking to move posts in bulk, instead of deleting then try out my "
|
218 |
msgstr "Se está procurando mover posts em massa, em vez de deletá-los, tente o meu"
|
219 |
|
220 |
+
#: bulk-delete.php:653
|
221 |
msgid "Bulk Move Plugin"
|
222 |
msgstr "Bulk Move Plugin (Plugin Mover em Massa)"
|
223 |
|
224 |
+
#: bulk-delete.php:715
|
225 |
msgid "Are you sure you want to delete all the selected posts"
|
226 |
msgstr "Tem certeza que deseja deletar todos os posts selecionados"
|
227 |
|
228 |
+
#: bulk-delete.php:717
|
229 |
msgid "Please select at least one"
|
230 |
msgstr "Por favor, selecione pelo menos um"
|
231 |
|
232 |
+
#: bulk-delete.php:808
|
233 |
msgid "Manage"
|
234 |
msgstr "Gerenciar"
|
235 |
|
236 |
+
#: bulk-delete.php:819
|
237 |
msgid "plugin"
|
238 |
msgstr "plugin"
|
239 |
|
240 |
+
#: bulk-delete.php:819
|
241 |
msgid "Version"
|
242 |
msgstr "Versão"
|
243 |
|
244 |
+
#: bulk-delete.php:819
|
245 |
msgid "by"
|
246 |
msgstr "por"
|
247 |
|
readme.txt
CHANGED
@@ -3,7 +3,8 @@ 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 |
-
|
|
|
7 |
|
8 |
Bulk delete posts from selected categories or tags
|
9 |
|
@@ -15,20 +16,45 @@ More details about the Plugin can be found at the [Plugins Home page][1].
|
|
15 |
|
16 |
If you looking for just moving posts, instead of deleting, then use [Bulk Move Plugin][2] instead.
|
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 [
|
|
|
|
|
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.
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
== Screenshot ==
|
33 |
|
34 |
1. Delete posts based on type
|
@@ -78,6 +104,9 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
|
|
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.
|
3 |
Tags: post, comment, delete, bulk, draft, revision, page
|
4 |
Requires at least: 2.0
|
5 |
Tested up to: 3.0.4
|
6 |
+
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
7 |
+
Stable tag: 1.2
|
8 |
|
9 |
Bulk delete posts from selected categories or tags
|
10 |
|
16 |
|
17 |
If you looking for just moving posts, instead of deleting, then use [Bulk Move Plugin][2] instead.
|
18 |
|
|
|
|
|
|
|
19 |
### Translation
|
20 |
|
21 |
* Dutch (Thanks Rene of [WordPress WPwebshop][3])
|
22 |
+
* Brazilian Portuguese (Thanks Marcelo of [Criacao de Sites em Ribeirao Preto][4])
|
23 |
+
|
24 |
+
### Support
|
25 |
|
26 |
+
Support for the Plugin is available from the [Plugin's home page][1]. If you have any questions or suggestions, do leave a comment there or contact me in [twitter][5].
|
27 |
+
|
28 |
+
### Links
|
29 |
+
|
30 |
+
* [Plugin home page][1]
|
31 |
+
* [Author's Blog][6]
|
32 |
+
* [Other Plugins by the author][7]
|
33 |
+
|
34 |
+
[1]: http://sudarmuthu.com/wordpress/bulk-delete
|
35 |
+
[2]: http://sudarmuthu.com/wordpress/bulk-move
|
36 |
[3]: http://wpwebshop.com/premium-wordpress-plugins/
|
37 |
[4]: http://www.techload.com.br/
|
38 |
+
[5]: http://twitter.com/sudarmuthu
|
39 |
+
[6]: http://sudarmuthu.com/blog
|
40 |
+
[7]: http://sudarmuthu.com/wordpress
|
41 |
+
|
42 |
== Installation ==
|
43 |
|
44 |
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.
|
45 |
|
46 |
+
== Frequently Asked Questions ==
|
47 |
+
|
48 |
+
= After installing the Plugin, I just see a blank page. =
|
49 |
+
|
50 |
+
This can happen if you have huge number of posts and your server is very unpowered. Check your PHP error log to see if there are any errors and correct them. The most common problems are script timeout or running out of memory. Change your PHP.ini file and increase the script timeout and/or amount of memory used by PHP process.
|
51 |
+
|
52 |
+
In particular try to change the following settings
|
53 |
+
|
54 |
+
* max_execution_time = 600 ; Maximum execution time of each script, in seconds
|
55 |
+
* max_input_time = 30; Maximum amount of time each script may spend parsing request data
|
56 |
+
* memory_limit = 256M ; Maximum amount of memory a script may consume (8MB)
|
57 |
+
|
58 |
== Screenshot ==
|
59 |
|
60 |
1. Delete posts based on type
|
104 |
* Added Dutch Translation
|
105 |
* Added Brazilian Portuguese Translation
|
106 |
|
107 |
+
###v1.2 (2011-02-06)
|
108 |
+
* Added some optimization to handle huge number of posts in underpowered servers
|
109 |
+
|
110 |
==Readme Generator==
|
111 |
|
112 |
+
This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
|
screenshot-3.png
ADDED
Binary file
|
screenshot-4.png
ADDED
Binary file
|