Version Description
Added the ability to delete posts by custom post types.
Download this release
Release Info
Developer | sudar |
Plugin | Bulk Delete |
Version | 3.5 |
Comparing to | |
See all releases |
Code changes from version 3.4 to 3.5
- bulk-delete.php +232 -2
- include/class-cron-list-table.php +7 -0
- js/bulk-delete.js +1 -1
- languages/bulk-delete-gu_IN.mo +0 -0
- languages/bulk-delete-gu_IN.po +267 -0
- languages/bulk-delete.pot +168 -132
- readme.txt +15 -3
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, tags, custom taxonomies or by post type like drafts, scheduled posts, revisions etc.
|
7 |
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
8 |
-
Version: 3.
|
9 |
License: GPL
|
10 |
Author: Sudar
|
11 |
Author URI: http://sudarmuthu.com/
|
@@ -70,6 +70,10 @@ Domain Path: languages/
|
|
70 |
2013-05-22 - v3.4 - (Dev time: 20 hours)
|
71 |
- Incorporated Screen API to select/deselect different sections of the page
|
72 |
- Load only sections that are selected by the user
|
|
|
|
|
|
|
|
|
73 |
*/
|
74 |
|
75 |
/* Copyright 2009 Sudar Muthu (email : sudar@sudarmuthu.com)
|
@@ -93,7 +97,7 @@ Domain Path: languages/
|
|
93 |
*/
|
94 |
class Bulk_Delete {
|
95 |
|
96 |
-
const VERSION = '3.
|
97 |
const JS_HANDLE = 'bulk-delete';
|
98 |
const JS_VARIABLE = 'BULK_DELETE';
|
99 |
|
@@ -103,12 +107,14 @@ class Bulk_Delete {
|
|
103 |
const CRON_HOOK_POST_STATUS = 'do-bulk-delete-post-status';
|
104 |
const CRON_HOOK_TAGS = 'do-bulk-delete-tags';
|
105 |
const CRON_HOOK_TAXONOMY = 'do-bulk-delete-taxonomy';
|
|
|
106 |
|
107 |
// meta boxes
|
108 |
const BOX_POST_STATUS = 'bd_by_post_status';
|
109 |
const BOX_CATEGORY = 'bd_by_category';
|
110 |
const BOX_TAG = 'bd_by_tag';
|
111 |
const BOX_TAX = 'bd_by_tax';
|
|
|
112 |
const BOX_PAGE = 'bd_by_page';
|
113 |
const BOX_URL = 'bd_by_url';
|
114 |
const BOX_POST_REVISION = 'bd_by_post_revision';
|
@@ -153,6 +159,7 @@ class Bulk_Delete {
|
|
153 |
add_meta_box( self::BOX_CATEGORY, __( 'By Category', 'bulk-delete' ), array( &$this, 'render_by_category_box' ), $this->admin_page, 'advanced' );
|
154 |
add_meta_box( self::BOX_TAG, __( 'By Tag', 'bulk-delete' ), array( &$this, 'render_by_tag_box' ), $this->admin_page, 'advanced' );
|
155 |
add_meta_box( self::BOX_TAX, __( 'By Custom Taxonomy', 'bulk-delete' ), array( &$this, 'render_by_tax_box' ), $this->admin_page, 'advanced' );
|
|
|
156 |
add_meta_box( self::BOX_PAGE, __( 'By Page', 'bulk-delete' ), array( &$this, 'render_by_page_box' ), $this->admin_page, 'advanced' );
|
157 |
add_meta_box( self::BOX_URL, __( 'By URL', 'bulk-delete' ), array( &$this, 'render_by_url_box' ), $this->admin_page, 'advanced' );
|
158 |
add_meta_box( self::BOX_POST_REVISION, __( 'By Post Revision', 'bulk-delete' ), array( &$this, 'render_by_post_revision_box' ), $this->admin_page, 'advanced' );
|
@@ -814,6 +821,133 @@ class Bulk_Delete {
|
|
814 |
}
|
815 |
}
|
816 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
817 |
/**
|
818 |
* Render delete by pages box
|
819 |
*/
|
@@ -1202,6 +1336,39 @@ class Bulk_Delete {
|
|
1202 |
}
|
1203 |
break;
|
1204 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1205 |
case "bulk-delete-post-status":
|
1206 |
// Delete by post status like drafts, pending posts etc
|
1207 |
|
@@ -1508,6 +1675,64 @@ class Bulk_Delete {
|
|
1508 |
return count( $posts );
|
1509 |
}
|
1510 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1511 |
/**
|
1512 |
* Delete posts by post status - drafts, pending posts, scheduled posts etc.
|
1513 |
*/
|
@@ -1566,6 +1791,11 @@ class Bulk_Delete {
|
|
1566 |
|
1567 |
// now retrieve all posts and delete them
|
1568 |
$options['post_status'] = $post_status;
|
|
|
|
|
|
|
|
|
|
|
1569 |
$posts = $wp_query->query($options);
|
1570 |
|
1571 |
foreach ($posts as $post) {
|
5 |
Plugin URI: http://sudarmuthu.com/wordpress/bulk-delete
|
6 |
Description: Bulk delete posts from selected categories, tags, custom taxonomies or by post type like drafts, scheduled posts, revisions etc.
|
7 |
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
8 |
+
Version: 3.5
|
9 |
License: GPL
|
10 |
Author: Sudar
|
11 |
Author URI: http://sudarmuthu.com/
|
70 |
2013-05-22 - v3.4 - (Dev time: 20 hours)
|
71 |
- Incorporated Screen API to select/deselect different sections of the page
|
72 |
- Load only sections that are selected by the user
|
73 |
+
2013-06-01 - v3.5 - (Dev time: 10 hours)
|
74 |
+
- Added support to delete custom post types
|
75 |
+
- Added Gujarati translations
|
76 |
+
- Ignore sticky posts when deleting drafts
|
77 |
*/
|
78 |
|
79 |
/* Copyright 2009 Sudar Muthu (email : sudar@sudarmuthu.com)
|
97 |
*/
|
98 |
class Bulk_Delete {
|
99 |
|
100 |
+
const VERSION = '3.5';
|
101 |
const JS_HANDLE = 'bulk-delete';
|
102 |
const JS_VARIABLE = 'BULK_DELETE';
|
103 |
|
107 |
const CRON_HOOK_POST_STATUS = 'do-bulk-delete-post-status';
|
108 |
const CRON_HOOK_TAGS = 'do-bulk-delete-tags';
|
109 |
const CRON_HOOK_TAXONOMY = 'do-bulk-delete-taxonomy';
|
110 |
+
const CRON_HOOK_POST_TYPES = 'do-bulk-delete-post-types';
|
111 |
|
112 |
// meta boxes
|
113 |
const BOX_POST_STATUS = 'bd_by_post_status';
|
114 |
const BOX_CATEGORY = 'bd_by_category';
|
115 |
const BOX_TAG = 'bd_by_tag';
|
116 |
const BOX_TAX = 'bd_by_tax';
|
117 |
+
const BOX_POST_TYPE = 'bd_by_post_type';
|
118 |
const BOX_PAGE = 'bd_by_page';
|
119 |
const BOX_URL = 'bd_by_url';
|
120 |
const BOX_POST_REVISION = 'bd_by_post_revision';
|
159 |
add_meta_box( self::BOX_CATEGORY, __( 'By Category', 'bulk-delete' ), array( &$this, 'render_by_category_box' ), $this->admin_page, 'advanced' );
|
160 |
add_meta_box( self::BOX_TAG, __( 'By Tag', 'bulk-delete' ), array( &$this, 'render_by_tag_box' ), $this->admin_page, 'advanced' );
|
161 |
add_meta_box( self::BOX_TAX, __( 'By Custom Taxonomy', 'bulk-delete' ), array( &$this, 'render_by_tax_box' ), $this->admin_page, 'advanced' );
|
162 |
+
add_meta_box( self::BOX_POST_TYPE, __( 'By Custom Post Types', 'bulk-delete' ), array( &$this, 'render_by_post_type_box' ), $this->admin_page, 'advanced' );
|
163 |
add_meta_box( self::BOX_PAGE, __( 'By Page', 'bulk-delete' ), array( &$this, 'render_by_page_box' ), $this->admin_page, 'advanced' );
|
164 |
add_meta_box( self::BOX_URL, __( 'By URL', 'bulk-delete' ), array( &$this, 'render_by_url_box' ), $this->admin_page, 'advanced' );
|
165 |
add_meta_box( self::BOX_POST_REVISION, __( 'By Post Revision', 'bulk-delete' ), array( &$this, 'render_by_post_revision_box' ), $this->admin_page, 'advanced' );
|
821 |
}
|
822 |
}
|
823 |
|
824 |
+
/**
|
825 |
+
* Render delete by custom post type box
|
826 |
+
*/
|
827 |
+
function render_by_post_type_box() {
|
828 |
+
|
829 |
+
if ( $this->is_hidden(self::BOX_POST_TYPE) ) {
|
830 |
+
printf( __('This section just got enabled. Kindly <a href = "%1$s">refresh</a> the page to fully enable it.', 'bulk-delete' ), 'options-general.php?page=bulk-delete.php' );
|
831 |
+
return;
|
832 |
+
}
|
833 |
+
|
834 |
+
$types_array = array();
|
835 |
+
|
836 |
+
$types = get_post_types( array(
|
837 |
+
'public' => true,
|
838 |
+
'_builtin' => false
|
839 |
+
), 'names'
|
840 |
+
);
|
841 |
+
|
842 |
+
if ( count( $types ) > 0 ) {
|
843 |
+
foreach ($types as $type) {
|
844 |
+
$post_count = wp_count_posts( $type );
|
845 |
+
if ( $post_count->publish > 0 ) {
|
846 |
+
$types_array[$type] = $post_count->publish;
|
847 |
+
}
|
848 |
+
}
|
849 |
+
}
|
850 |
+
|
851 |
+
if ( count( $types_array ) > 0 ) {
|
852 |
+
?>
|
853 |
+
<!-- Custom post type Start-->
|
854 |
+
<h4><?php _e( "Select the custom post type whose post you want to delete", 'bulk-delete' ) ?></h4>
|
855 |
+
|
856 |
+
<fieldset class="options">
|
857 |
+
<table class="optiontable">
|
858 |
+
<?php
|
859 |
+
foreach ( $types_array as $type => $count ) {
|
860 |
+
?>
|
861 |
+
<tr>
|
862 |
+
<td scope="row" >
|
863 |
+
<input name="smbd_types[]" value = "<?php echo $type; ?>" type = "checkbox">
|
864 |
+
</td>
|
865 |
+
<td>
|
866 |
+
<label for="smbd_types"><?php echo $type, ' (', $count, ')'; ?></label>
|
867 |
+
</td>
|
868 |
+
</tr>
|
869 |
+
<?php
|
870 |
+
}
|
871 |
+
?>
|
872 |
+
<tr>
|
873 |
+
<td colspan="2">
|
874 |
+
<h4><?php _e("Choose your filtering options", 'bulk-delete'); ?></h4>
|
875 |
+
</td>
|
876 |
+
</tr>
|
877 |
+
|
878 |
+
<tr>
|
879 |
+
<td scope="row">
|
880 |
+
<input name="smbd_types_restrict" id ="smbd_types_restrict" value = "true" type = "checkbox">
|
881 |
+
</td>
|
882 |
+
<td>
|
883 |
+
<?php _e("Only restrict to posts which are ", 'bulk-delete');?>
|
884 |
+
<select name="smbd_types_op" id="smbd_types_op" disabled>
|
885 |
+
<option value ="<"><?php _e("older than", 'bulk-delete');?></option>
|
886 |
+
<option value =">"><?php _e("posted within last", 'bulk-delete');?></option>
|
887 |
+
</select>
|
888 |
+
<input type ="textbox" name="smbd_types_days" id ="smbd_types_days" value ="0" maxlength="4" size="4" disabled /><?php _e("days", 'bulk-delete');?>
|
889 |
+
</td>
|
890 |
+
</tr>
|
891 |
+
|
892 |
+
<tr>
|
893 |
+
<td scope="row" colspan="2">
|
894 |
+
<input name="smbd_types_force_delete" value = "false" type = "radio" checked="checked" /> <?php _e('Move to Trash', 'bulk-delete'); ?>
|
895 |
+
<input name="smbd_types_force_delete" value = "true" type = "radio" /> <?php _e('Delete permanently', 'bulk-delete'); ?>
|
896 |
+
</td>
|
897 |
+
</tr>
|
898 |
+
|
899 |
+
<tr>
|
900 |
+
<td scope="row" colspan="2">
|
901 |
+
<input name="smbd_types_private" value = "false" type = "radio" checked="checked" /> <?php _e('Public posts', 'bulk-delete'); ?>
|
902 |
+
<input name="smbd_types_private" value = "true" type = "radio" /> <?php _e('Private Posts', 'bulk-delete'); ?>
|
903 |
+
</td>
|
904 |
+
</tr>
|
905 |
+
|
906 |
+
<tr>
|
907 |
+
<td scope="row">
|
908 |
+
<input name="smbd_types_limit" id="smbd_types_limit" value = "true" type = "checkbox">
|
909 |
+
</td>
|
910 |
+
<td>
|
911 |
+
<?php _e("Only delete first ", 'bulk-delete');?>
|
912 |
+
<input type ="textbox" name="smbd_types_limit_to" id="smbd_types_limit_to" disabled value ="0" maxlength="4" size="4" /><?php _e("posts.", 'bulk-delete');?>
|
913 |
+
<?php _e("Use this option if there are more than 1000 posts and the script timesout.", 'bulk-delete') ?>
|
914 |
+
</td>
|
915 |
+
</tr>
|
916 |
+
|
917 |
+
<tr>
|
918 |
+
<td scope="row" colspan="2">
|
919 |
+
<input name="smbd_types_cron" value = "false" type = "radio" checked="checked" > <?php _e('Delete now', 'bulk-delete'); ?>
|
920 |
+
<input name="smbd_types_cron" value = "true" type = "radio" id = "smbd_types_cron" disabled > <?php _e('Schedule', 'bulk-delete'); ?>
|
921 |
+
<input name="smbd_types_cron_start" id = "smbd_types_cron_start" value = "now" type = "text" disabled><?php _e('repeat ', 'bulk-delete');?>
|
922 |
+
<select name = "smbd_types_cron_freq" id = "smbd_types_cron_freq" disabled>
|
923 |
+
<option value = "-1"><?php _e("Don't repeat", 'bulk-delete'); ?></option>
|
924 |
+
<?php
|
925 |
+
$schedules = wp_get_schedules();
|
926 |
+
foreach($schedules as $key => $value) {
|
927 |
+
?>
|
928 |
+
<option value = "<?php echo $key; ?>"><?php echo $value['display']; ?></option>
|
929 |
+
<?php
|
930 |
+
}
|
931 |
+
?>
|
932 |
+
</select>
|
933 |
+
<span class = "bd-types-pro" style = "color:red"><?php _e('Only available in Pro Addon', 'bulk-delete'); ?> <a href = "http://sudarmuthu.com/out/buy-bulk-delete-post-type-addon">Buy now</a></span>
|
934 |
+
</td>
|
935 |
+
</tr>
|
936 |
+
|
937 |
+
</table>
|
938 |
+
</fieldset>
|
939 |
+
<p class="submit">
|
940 |
+
<button type="submit" name="smbd_action" value = "bulk-delete-post-types" class="button-primary"><?php _e("Bulk Delete ", 'bulk-delete') ?>»</button>
|
941 |
+
</p>
|
942 |
+
<!-- Custom post type end-->
|
943 |
+
<?php
|
944 |
+
} else {
|
945 |
+
?>
|
946 |
+
<h4><?php _e("You don't have any posts assigned to custom post types in this blog.", 'bulk-delete') ?></h4>
|
947 |
+
<?php
|
948 |
+
}
|
949 |
+
}
|
950 |
+
|
951 |
/**
|
952 |
* Render delete by pages box
|
953 |
*/
|
1336 |
}
|
1337 |
break;
|
1338 |
|
1339 |
+
case "bulk-delete-post-types":
|
1340 |
+
// delete by custom post type
|
1341 |
+
|
1342 |
+
$delete_options = array();
|
1343 |
+
|
1344 |
+
$delete_options['selected_types'] = array_get( $_POST, 'smbd_types' );
|
1345 |
+
$delete_options['restrict'] = array_get($_POST, 'smbd_types_restrict', FALSE);
|
1346 |
+
$delete_options['private'] = array_get($_POST, 'smbd_types_private');
|
1347 |
+
$delete_options['limit_to'] = absint(array_get($_POST, 'smbd_types_limit_to', 0));
|
1348 |
+
$delete_options['force_delete'] = array_get($_POST, 'smbd_types_force_delete', 'false');
|
1349 |
+
|
1350 |
+
$delete_options['types_op'] = array_get($_POST, 'smbd_types_op');
|
1351 |
+
$delete_options['types_days'] = array_get($_POST, 'smbd_types_days');
|
1352 |
+
|
1353 |
+
if (array_get($_POST, 'smbd_types_cron', 'false') == 'true') {
|
1354 |
+
$freq = $_POST['smbd_types_cron_freq'];
|
1355 |
+
$time = strtotime($_POST['smbd_types_cron_start']) - ( get_option('gmt_offset') * 60 * 60 );
|
1356 |
+
|
1357 |
+
if ($freq == -1) {
|
1358 |
+
wp_schedule_single_event( $time, self::CRON_HOOK_POST_TYPES, array( $delete_options ) );
|
1359 |
+
} else {
|
1360 |
+
wp_schedule_event( $time, $freq, self::CRON_HOOK_POST_TYPES, array( $delete_options ) );
|
1361 |
+
}
|
1362 |
+
|
1363 |
+
$this->msg = __( 'Posts from the selected custom post type are scheduled for deletion.', 'bulk-delete') . ' ' .
|
1364 |
+
sprintf( __( 'See the full list of <a href = "%s">scheduled tasks</a>' , 'bulk-delete'), get_bloginfo("wpurl") . '/wp-admin/options-general.php?page=bulk-delete-cron' );
|
1365 |
+
} else {
|
1366 |
+
$deleted_count = self::delete_post_types( $delete_options );
|
1367 |
+
$this->msg = sprintf( _n( 'Deleted %d post from the selected custom post type', 'Deleted %d posts from the selected custom post type' , $deleted_count, 'bulk-delete' ), $deleted_count );
|
1368 |
+
}
|
1369 |
+
|
1370 |
+
break;
|
1371 |
+
|
1372 |
case "bulk-delete-post-status":
|
1373 |
// Delete by post status like drafts, pending posts etc
|
1374 |
|
1675 |
return count( $posts );
|
1676 |
}
|
1677 |
|
1678 |
+
/**
|
1679 |
+
* Delete posts by custom post type
|
1680 |
+
*/
|
1681 |
+
static function delete_post_types( $delete_options ) {
|
1682 |
+
$selected_types = $delete_options['selected_types'];
|
1683 |
+
|
1684 |
+
$options = array(
|
1685 |
+
'post_status' => 'publish',
|
1686 |
+
'post_type' => $selected_types
|
1687 |
+
);
|
1688 |
+
|
1689 |
+
$private = $delete_options['private'];
|
1690 |
+
|
1691 |
+
if ($private == 'true') {
|
1692 |
+
$options['post_status'] = 'private';
|
1693 |
+
}
|
1694 |
+
|
1695 |
+
$limit_to = $delete_options['limit_to'];
|
1696 |
+
|
1697 |
+
if ($limit_to > 0) {
|
1698 |
+
$options['showposts'] = $limit_to;
|
1699 |
+
} else {
|
1700 |
+
$options['nopaging'] = 'true';
|
1701 |
+
}
|
1702 |
+
|
1703 |
+
$force_delete = $delete_options['force_delete'];
|
1704 |
+
|
1705 |
+
if ($force_delete == 'true') {
|
1706 |
+
$force_delete = true;
|
1707 |
+
} else {
|
1708 |
+
$force_delete = false;
|
1709 |
+
}
|
1710 |
+
|
1711 |
+
if ($delete_options['restrict'] == "true") {
|
1712 |
+
$options['op'] = $delete_options['types_op'];
|
1713 |
+
$options['days'] = $delete_options['types_days'];
|
1714 |
+
|
1715 |
+
if (!class_exists('Bulk_Delete_By_Days')) {
|
1716 |
+
require_once dirname(__FILE__) . '/include/class-bulk-delete-by-days.php';
|
1717 |
+
}
|
1718 |
+
$bulk_Delete_By_Days = new Bulk_Delete_By_Days;
|
1719 |
+
}
|
1720 |
+
|
1721 |
+
$wp_query = new WP_Query();
|
1722 |
+
$posts = $wp_query->query($options);
|
1723 |
+
|
1724 |
+
foreach ($posts as $post) {
|
1725 |
+
// $force delete parameter to custom post types doesn't work
|
1726 |
+
if ( $force_delete ) {
|
1727 |
+
wp_delete_post( $post->ID );
|
1728 |
+
} else {
|
1729 |
+
wp_trash_post( $post->ID );
|
1730 |
+
}
|
1731 |
+
}
|
1732 |
+
|
1733 |
+
return count( $posts );
|
1734 |
+
}
|
1735 |
+
|
1736 |
/**
|
1737 |
* Delete posts by post status - drafts, pending posts, scheduled posts etc.
|
1738 |
*/
|
1791 |
|
1792 |
// now retrieve all posts and delete them
|
1793 |
$options['post_status'] = $post_status;
|
1794 |
+
|
1795 |
+
// ignore sticky posts.
|
1796 |
+
// For some reason, sticky posts also gets deleted when deleting drafts through a schedule
|
1797 |
+
$options['post__not_in'] = get_option( 'sticky_posts' );
|
1798 |
+
|
1799 |
$posts = $wp_query->query($options);
|
1800 |
|
1801 |
foreach ($posts as $post) {
|
include/class-cron-list-table.php
CHANGED
@@ -68,6 +68,13 @@ class Cron_List_Table extends WP_List_Table {
|
|
68 |
echo ' <a href = "http://sudarmuthu.com/out/buy-bulk-delete-taxonomy-addon">', __('Buy now', 'bulk-delete'), '</a>';
|
69 |
echo '</li>';
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
echo '<li>';
|
72 |
echo '<strong>', __('Bulk Delete Schedule Pages', 'bulk-delete'), '</strong>', ' - ';
|
73 |
echo __('Adds the ability to schedule auto delete pages', 'bulk-delete');
|
68 |
echo ' <a href = "http://sudarmuthu.com/out/buy-bulk-delete-taxonomy-addon">', __('Buy now', 'bulk-delete'), '</a>';
|
69 |
echo '</li>';
|
70 |
|
71 |
+
echo '<li>';
|
72 |
+
echo '<strong>', __('Bulk Delete Schedule Custom Post Type', 'bulk-delete'), '</strong>', ' - ';
|
73 |
+
echo __('Adds the ability to schedule auto delete of posts based on custom post types', 'bulk-delete');
|
74 |
+
echo ' <a href = "http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-post-types">', __('More Info', 'bulk-delete'), '</a>.';
|
75 |
+
echo ' <a href = "http://sudarmuthu.com/out/buy-bulk-delete-post-type-addon">', __('Buy now', 'bulk-delete'), '</a>';
|
76 |
+
echo '</li>';
|
77 |
+
|
78 |
echo '<li>';
|
79 |
echo '<strong>', __('Bulk Delete Schedule Pages', 'bulk-delete'), '</strong>', ' - ';
|
80 |
echo __('Adds the ability to schedule auto delete pages', 'bulk-delete');
|
js/bulk-delete.js
CHANGED
@@ -47,7 +47,7 @@ jQuery(document).ready(function () {
|
|
47 |
// for post boxes
|
48 |
postboxes.add_postbox_toggles(pagenow);
|
49 |
|
50 |
-
jQuery.each(['cats', 'tags', 'taxs', 'pages', 'post_status'], function (index, value) {
|
51 |
// invoke the date time picker
|
52 |
jQuery('#smbd_' + value + '_cron_start').datetimepicker({
|
53 |
timeFormat: 'HH:mm:ss'
|
47 |
// for post boxes
|
48 |
postboxes.add_postbox_toggles(pagenow);
|
49 |
|
50 |
+
jQuery.each(['cats', 'tags', 'taxs', 'pages', 'post_status', 'types'], function (index, value) {
|
51 |
// invoke the date time picker
|
52 |
jQuery('#smbd_' + value + '_cron_start').datetimepicker({
|
53 |
timeFormat: 'HH:mm:ss'
|
languages/bulk-delete-gu_IN.mo
ADDED
Binary file
|
languages/bulk-delete-gu_IN.po
ADDED
@@ -0,0 +1,267 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-24 17:19:16+00:00\n"
|
8 |
+
"PO-Revision-Date: 2013-05-16 12:18+0530\n"
|
9 |
+
"Last-Translator: Ajeet <Ajeetbook@gmail.com>\n"
|
10 |
+
"Language-Team: Team Outshine <ash.pr@outshinesolutions.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: Hindi\n"
|
15 |
+
"X-Poedit-Country: INDIA\n"
|
16 |
+
|
17 |
+
#: bulk-delete.php:275
|
18 |
+
msgid "All the selected posts have been sucessfully deleted."
|
19 |
+
msgstr "બધા પસંદ કરેલ પોસ્ટ્સ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યા છે."
|
20 |
+
|
21 |
+
#: bulk-delete.php:285
|
22 |
+
msgid "WARNING: Posts deleted once cannot be retrieved back. Use with caution."
|
23 |
+
msgstr "ચેતવણી: એકવાર કાઢી પોસ્ટ્સ પાછા મેળવી શકાતા નથી. સાવધાની સાથે વાપરો."
|
24 |
+
|
25 |
+
#: bulk-delete.php:290
|
26 |
+
msgid "Select the posts which you want to delete"
|
27 |
+
msgstr "તમે કાઢી નાંખવા માંગો છો જે પોસ્ટ્સ પસંદ કરો"
|
28 |
+
|
29 |
+
#: bulk-delete.php:310
|
30 |
+
msgid "All Drafts"
|
31 |
+
msgstr "બધા ડ્રાફ્ટ્સ"
|
32 |
+
|
33 |
+
#: bulk-delete.php:310
|
34 |
+
msgid "Drafts"
|
35 |
+
msgstr "ડ્રાફ્ટ્સ"
|
36 |
+
|
37 |
+
#: bulk-delete.php:316
|
38 |
+
msgid "All Revisions"
|
39 |
+
msgstr "બધા સંસ્કરણો"
|
40 |
+
|
41 |
+
#: bulk-delete.php:316
|
42 |
+
msgid "Revisions"
|
43 |
+
msgstr "પુનરાવર્તનો"
|
44 |
+
|
45 |
+
#: bulk-delete.php:322
|
46 |
+
msgid "All Pending posts"
|
47 |
+
msgstr "બધા બાકી પોસ્ટ્સ"
|
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 "પોસ્ટ્સ"
|
57 |
+
|
58 |
+
#: bulk-delete.php:328
|
59 |
+
msgid "All scheduled posts"
|
60 |
+
msgstr "બધા સુનિશ્ચિત પોસ્ટ્સ"
|
61 |
+
|
62 |
+
#: bulk-delete.php:334
|
63 |
+
msgid "All private posts"
|
64 |
+
msgstr "બધા ખાનગી પોસ્ટ્સ"
|
65 |
+
|
66 |
+
#: bulk-delete.php:340
|
67 |
+
msgid "All Pages"
|
68 |
+
msgstr "બધા પાના"
|
69 |
+
|
70 |
+
#: bulk-delete.php:340
|
71 |
+
msgid "Pages"
|
72 |
+
msgstr "પાના"
|
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 "ટ્રૅશમાં ખસેડો"
|
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 "કાયમી કાઢી નાખો"
|
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 "ફક્ત પ્રથમ કાઢી"
|
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 "પોસ્ટ્સ."
|
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 "1000 કરતાં વધુ પોસ્ટ્સ અને સ્ક્રિપ્ટ timesout હોય તો આ વિકલ્પ વાપરો."
|
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 "બલ્ક કાઢી નાખો"
|
115 |
+
|
116 |
+
#: bulk-delete.php:371
|
117 |
+
msgid "By Category"
|
118 |
+
msgstr "કેટેગરી દ્વારા"
|
119 |
+
|
120 |
+
#: bulk-delete.php:372
|
121 |
+
msgid "Select the categories whose post you want to delete"
|
122 |
+
msgstr "જેની પોસ્ટ તમે કાઢી નાંખવા માંગો છો તે પસંદ કરો વર્ગોમાં"
|
123 |
+
|
124 |
+
#: bulk-delete.php:400
|
125 |
+
msgid "All Categories"
|
126 |
+
msgstr "બધા શ્રેણીઓ"
|
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 "માત્ર છે જે પોસ્ટ્સ પ્રતિબંધિત"
|
133 |
+
|
134 |
+
#: bulk-delete.php:414
|
135 |
+
#: bulk-delete.php:503
|
136 |
+
#: bulk-delete.php:598
|
137 |
+
msgid "older than"
|
138 |
+
msgstr "કરતાં જૂની"
|
139 |
+
|
140 |
+
#: bulk-delete.php:415
|
141 |
+
#: bulk-delete.php:504
|
142 |
+
#: bulk-delete.php:599
|
143 |
+
msgid "posted within last"
|
144 |
+
msgstr "છેલ્લા અંદર પોસ્ટ"
|
145 |
+
|
146 |
+
#: bulk-delete.php:417
|
147 |
+
#: bulk-delete.php:506
|
148 |
+
#: bulk-delete.php:601
|
149 |
+
msgid "days"
|
150 |
+
msgstr "દિવસ"
|
151 |
+
|
152 |
+
#: bulk-delete.php:430
|
153 |
+
#: bulk-delete.php:519
|
154 |
+
#: bulk-delete.php:614
|
155 |
+
msgid "Public posts"
|
156 |
+
msgstr "સાર્વજનિક પોસ્ટ્સ"
|
157 |
+
|
158 |
+
#: bulk-delete.php:431
|
159 |
+
#: bulk-delete.php:520
|
160 |
+
#: bulk-delete.php:615
|
161 |
+
msgid "Private Posts"
|
162 |
+
msgstr "ખાનગી પોસ્ટ્સ"
|
163 |
+
|
164 |
+
#: bulk-delete.php:460
|
165 |
+
msgid "By Tags"
|
166 |
+
msgstr "ટૅગ્સ દ્વારા"
|
167 |
+
|
168 |
+
#: bulk-delete.php:461
|
169 |
+
msgid "Select the tags whose post you want to delete"
|
170 |
+
msgstr "જેની પોસ્ટ તમે કાઢી નાંખવા માંગો છો તે પસંદ કરો ટૅગ્સ"
|
171 |
+
|
172 |
+
#: bulk-delete.php:488
|
173 |
+
msgid "All Tags"
|
174 |
+
msgstr "બધા ટૅગ્સ"
|
175 |
+
|
176 |
+
#: bulk-delete.php:553
|
177 |
+
msgid "By Taxonomies"
|
178 |
+
msgstr "Taxonomies દ્વારા"
|
179 |
+
|
180 |
+
#: bulk-delete.php:554
|
181 |
+
msgid "Select the taxonomies whose post you want to delete"
|
182 |
+
msgstr "જેની પોસ્ટ તમે કાઢી નાંખવા માંગો છો તે પસંદ કરો taxonomies"
|
183 |
+
|
184 |
+
#: bulk-delete.php:583
|
185 |
+
msgid "All Taxonomies"
|
186 |
+
msgstr "બધા Taxonomies"
|
187 |
+
|
188 |
+
#: bulk-delete.php:643
|
189 |
+
msgid "Support"
|
190 |
+
msgstr "આધાર"
|
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 "તમે પ્લગઇન વિશે કોઈ પ્રશ્નો / ટિપ્પણીઓ / પ્રતિસાદ છે, તો પછી એક ટિપ્પણી પોસ્ટ કરો <a target=\"_blank\" href = \"http://sudarmuthu.com/wordpress/bulk-delete\"> પ્લગઇન્સ હોમપેજ કરો </ a>."
|
195 |
+
|
196 |
+
#: bulk-delete.php:645
|
197 |
+
msgid "If you like the Plugin, then consider doing one of the following."
|
198 |
+
msgstr "તમે પ્લગઇન ગમે, તો પછી નીચે આપેલામાંથી કોઈ એક કરી રાખો."
|
199 |
+
|
200 |
+
#: bulk-delete.php:647
|
201 |
+
msgid "Write a blog post about the Plugin."
|
202 |
+
msgstr "પ્લગઇન વિશે બ્લૉગ પોસ્ટ લખો."
|
203 |
+
|
204 |
+
#: bulk-delete.php:648
|
205 |
+
msgid " about it."
|
206 |
+
msgstr "તે વિશે."
|
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 "એક <a href = \"http://wordpress.org/extend/plugins/bulk-delete/\" target=\"_blank\"> સારા રેટિંગ કરો </ 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 "સે <a href = \"http://sudarmuthu.com/if-you-wanna-thank-me\" target=\"_blank\"> આભાર </ 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 "તમે બલ્ક માં પોસ્ટ્સ, બદલે કાઢી નાંખવાનો ખસેડવા માટે જોઈ રહ્યા હોય, તો પછી અજમાવી મારી"
|
219 |
+
|
220 |
+
#: bulk-delete.php:653
|
221 |
+
msgid "Bulk Move Plugin"
|
222 |
+
msgstr "બલ્ક ખસેડો પ્લગઇન"
|
223 |
+
|
224 |
+
#: bulk-delete.php:715
|
225 |
+
msgid "Are you sure you want to delete all the selected posts"
|
226 |
+
msgstr "તમે બધા પસંદ કરેલ પોસ્ટ્સ કાઢી નાખવા માંગો છો"
|
227 |
+
|
228 |
+
#: bulk-delete.php:717
|
229 |
+
msgid "Please select at least one"
|
230 |
+
msgstr "ઓછામાં ઓછું એક પસંદ કરો"
|
231 |
+
|
232 |
+
#: bulk-delete.php:808
|
233 |
+
msgid "Manage"
|
234 |
+
msgstr "મેનેજ કરો"
|
235 |
+
|
236 |
+
#: bulk-delete.php:819
|
237 |
+
msgid "plugin"
|
238 |
+
msgstr "પ્લગઇન"
|
239 |
+
|
240 |
+
#: bulk-delete.php:819
|
241 |
+
msgid "Version"
|
242 |
+
msgstr "સંસ્કરણ"
|
243 |
+
|
244 |
+
#: bulk-delete.php:819
|
245 |
+
msgid "by"
|
246 |
+
msgstr "દ્વારા"
|
247 |
+
|
248 |
+
#. Plugin Name of the plugin/theme
|
249 |
+
msgid "Bulk Delete"
|
250 |
+
msgstr "બલ્ક કાઢી નાખો"
|
251 |
+
|
252 |
+
#. Plugin URI of the plugin/theme
|
253 |
+
msgid "http://sudarmuthu.com/wordpress/bulk-delete"
|
254 |
+
msgstr "http://sudarmuthu.com/wordpress/bulk-delete"
|
255 |
+
|
256 |
+
#. Description of the plugin/theme
|
257 |
+
msgid "Bulk delete posts from selected categories or tags. Use it with caution."
|
258 |
+
msgstr "બલ્ક કાઢી નાખો પસંદ વર્ગોમાં અથવા ટૅગ્સ પોસ્ટ્સ. તેને સાવધાની સાથે વાપરો."
|
259 |
+
|
260 |
+
#. Author of the plugin/theme
|
261 |
+
msgid "Sudar"
|
262 |
+
msgstr "Sudar"
|
263 |
+
|
264 |
+
#. Author URI of the plugin/theme
|
265 |
+
msgid "http://sudarmuthu.com/"
|
266 |
+
msgstr "http://sudarmuthu.com/"
|
267 |
+
|
languages/bulk-delete.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Bulk Delete package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Bulk Delete 3.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
|
7 |
-
"POT-Creation-Date: 2013-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,435 +12,462 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#. #-#-#-#-# bulk-delete.pot (Bulk Delete 3.
|
16 |
#. Plugin Name of the plugin/theme
|
17 |
-
#: bulk-delete.php:
|
18 |
msgid "Bulk Delete"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: bulk-delete.php:
|
22 |
msgid "Bulk Delete Schedules"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: bulk-delete.php:
|
26 |
msgid "By Post Status"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: bulk-delete.php:
|
30 |
msgid "By Category"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: bulk-delete.php:
|
34 |
msgid "By Tag"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: bulk-delete.php:
|
38 |
msgid "By Custom Taxonomy"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: bulk-delete.php:
|
|
|
|
|
|
|
|
|
42 |
msgid "By Page"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: bulk-delete.php:
|
46 |
msgid "By URL"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: bulk-delete.php:
|
50 |
msgid "By Post Revision"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: bulk-delete.php:
|
54 |
msgid "Debug Information"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: bulk-delete.php:
|
58 |
msgid "About Plugin"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: bulk-delete.php:
|
62 |
msgid ""
|
63 |
"This plugin allows you to delete posts in bulk from selected categories, "
|
64 |
"tags, custom taxonomies or by post status like drafts, pending posts, "
|
65 |
"scheduled posts etc."
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: bulk-delete.php:
|
69 |
msgid "More information"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: bulk-delete.php:
|
73 |
msgid "Plugin Homepage/support"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: bulk-delete.php:
|
77 |
msgid "Buy pro addons"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: bulk-delete.php:
|
81 |
msgid "Plugin author's blog"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: bulk-delete.php:
|
85 |
msgid "Other Plugin's by Author"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: bulk-delete.php:
|
89 |
msgid "Are you sure you want to delete all the selected posts"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: bulk-delete.php:
|
93 |
msgid "Please select posts from at least one option"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: bulk-delete.php:
|
97 |
msgid "Please enter at least one page url"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: bulk-delete.php:
|
101 |
msgid "Manage"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: bulk-delete.php:
|
105 |
msgid "Buy Addons"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: bulk-delete.php:
|
109 |
msgid "WARNING: Posts deleted once cannot be retrieved back. Use with caution."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: bulk-delete.php:
|
113 |
msgid "plugin"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: bulk-delete.php:
|
117 |
msgid "Version"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: bulk-delete.php:
|
121 |
msgid "by"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: bulk-delete.php:
|
125 |
-
#: bulk-delete.php:
|
126 |
-
#: bulk-delete.php:
|
127 |
msgid ""
|
128 |
"This section just got enabled. Kindly <a href = \"%1$s\">refresh</a> the "
|
129 |
"page to fully enable it."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: bulk-delete.php:
|
133 |
msgid "Select the posts which you want to delete"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: bulk-delete.php:
|
137 |
msgid "All Draft Posts"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: bulk-delete.php:
|
141 |
msgid "Drafts"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: bulk-delete.php:
|
145 |
msgid "All Pending posts"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: bulk-delete.php:
|
149 |
-
#: bulk-delete.php:
|
150 |
msgid "Posts"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: bulk-delete.php:
|
154 |
msgid "All scheduled posts"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: bulk-delete.php:
|
158 |
msgid "All private posts"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: bulk-delete.php:
|
162 |
-
#: bulk-delete.php:
|
|
|
163 |
msgid "Choose your filtering options"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: bulk-delete.php:
|
167 |
-
#: bulk-delete.php:
|
168 |
msgid "Only restrict to posts which are "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: bulk-delete.php:
|
172 |
-
#: bulk-delete.php:
|
173 |
msgid "older than"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: bulk-delete.php:
|
177 |
-
#: bulk-delete.php:
|
178 |
msgid "posted within last"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: bulk-delete.php:
|
182 |
-
#: bulk-delete.php:
|
183 |
msgid "days"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: bulk-delete.php:
|
187 |
-
#: bulk-delete.php:
|
|
|
188 |
msgid "Move to Trash"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: bulk-delete.php:
|
192 |
-
#: bulk-delete.php:
|
|
|
193 |
msgid "Delete permanently"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: bulk-delete.php:
|
197 |
-
#: bulk-delete.php:
|
198 |
msgid "Only delete first "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: bulk-delete.php:
|
202 |
-
#: bulk-delete.php:
|
203 |
msgid "posts."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: bulk-delete.php:
|
207 |
-
#: bulk-delete.php:
|
208 |
msgid ""
|
209 |
"Use this option if there are more than 1000 posts and the script timesout."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: bulk-delete.php:
|
213 |
-
#: bulk-delete.php:
|
214 |
msgid "Delete now"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: bulk-delete.php:
|
218 |
-
#: bulk-delete.php:
|
219 |
-
#: include/class-cron-list-table.php:
|
220 |
msgid "Schedule"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bulk-delete.php:
|
224 |
-
#: bulk-delete.php:
|
225 |
msgid "repeat "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: bulk-delete.php:
|
229 |
-
#: bulk-delete.php:
|
230 |
msgid "Don't repeat"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: bulk-delete.php:
|
234 |
-
#: bulk-delete.php:
|
235 |
msgid "Only available in Pro Addon"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: bulk-delete.php:
|
239 |
-
#: bulk-delete.php:
|
240 |
-
#: bulk-delete.php:
|
241 |
msgid "Bulk Delete "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: bulk-delete.php:
|
245 |
msgid "Select the categories whose post you want to delete"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: bulk-delete.php:
|
249 |
msgid "All Categories"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: bulk-delete.php:
|
|
|
253 |
msgid "Public posts"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: bulk-delete.php:
|
|
|
257 |
msgid "Private Posts"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: bulk-delete.php:
|
261 |
msgid "Enter time in Y-m-d H:i:s format or enter now to use current time"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: bulk-delete.php:
|
265 |
msgid "Select the tags whose post you want to delete"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: bulk-delete.php:
|
269 |
msgid "All Tags"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: bulk-delete.php:
|
273 |
msgid "You don't have any posts assigned to tags in this blog."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: bulk-delete.php:
|
277 |
msgid "Select the taxonomies whose post you want to delete"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: bulk-delete.php:
|
281 |
msgid ""
|
282 |
"The selected taxonomy has the following terms. Select the terms whose post "
|
283 |
"you want to delete"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: bulk-delete.php:
|
287 |
msgid "You don't have any posts assigned to custom taxonomies in this blog."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: bulk-delete.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
msgid "Select the pages which you want to delete"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: bulk-delete.php:
|
295 |
msgid "All Published Pages"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: bulk-delete.php:
|
299 |
-
#: bulk-delete.php:
|
300 |
msgid "Pages"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: bulk-delete.php:
|
304 |
msgid "All Draft Pages"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: bulk-delete.php:
|
308 |
msgid "All Scheduled Pages"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: bulk-delete.php:
|
312 |
msgid "All Pending Pages"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: bulk-delete.php:
|
316 |
msgid "All Private Pages"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: bulk-delete.php:
|
320 |
msgid "Only restrict to pages which are "
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: bulk-delete.php:
|
324 |
msgid "Delete these specific pages"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: bulk-delete.php:
|
328 |
msgid "Enter one post url (not post ids) per line"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: bulk-delete.php:
|
332 |
msgid "All Revisions"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: bulk-delete.php:
|
336 |
msgid "Revisions"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: bulk-delete.php:
|
340 |
msgid ""
|
341 |
"If you are seeing a blank page after clicking the Bulk Delete button, then "
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: bulk-delete.php:
|
345 |
msgid "check out this FAQ"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: bulk-delete.php:
|
349 |
msgid "You also need need the following debug information."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: bulk-delete.php:
|
353 |
msgid "PHP Version "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: bulk-delete.php:
|
357 |
msgid "Plugin Version "
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: bulk-delete.php:
|
361 |
msgid "Available memory size "
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: bulk-delete.php:
|
365 |
msgid "Script time out "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: bulk-delete.php:
|
369 |
msgid "Script input time "
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: bulk-delete.php:
|
373 |
msgid "The selected scheduled job was successfully deleted "
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: bulk-delete.php:
|
377 |
msgid "Posts from the selected categories are scheduled for deletion."
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: bulk-delete.php:
|
381 |
-
#: bulk-delete.php:
|
382 |
msgid "See the full list of <a href = \"%s\">scheduled tasks</a>"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: bulk-delete.php:
|
386 |
msgid "Deleted %d post from the selected categories"
|
387 |
msgid_plural "Deleted %d posts from the selected categories"
|
388 |
msgstr[0] ""
|
389 |
msgstr[1] ""
|
390 |
|
391 |
-
#: bulk-delete.php:
|
392 |
msgid "Posts from the selected tags are scheduled for deletion."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: bulk-delete.php:
|
396 |
msgid "Deleted %d post from the selected tags"
|
397 |
msgid_plural "Deleted %d posts from the selected tags"
|
398 |
msgstr[0] ""
|
399 |
msgstr[1] ""
|
400 |
|
401 |
-
#: bulk-delete.php:
|
402 |
msgid "Posts from the selected custom taxonomies are scheduled for deletion."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: bulk-delete.php:
|
406 |
msgid "Deleted %d post from the selected custom taxonomies"
|
407 |
msgid_plural "Deleted %d posts from the selected custom taxonomies"
|
408 |
msgstr[0] ""
|
409 |
msgstr[1] ""
|
410 |
|
411 |
-
#: bulk-delete.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
msgid "Posts with the selected status are scheduled for deletion."
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: bulk-delete.php:
|
416 |
msgid "Deleted %d post with the selected post status"
|
417 |
msgid_plural "Deleted %d posts with the selected post status"
|
418 |
msgstr[0] ""
|
419 |
msgstr[1] ""
|
420 |
|
421 |
-
#: bulk-delete.php:
|
422 |
msgid "The selected pages are scheduled for deletion."
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: bulk-delete.php:
|
426 |
msgid "Deleted %d page"
|
427 |
msgid_plural "Deleted %d pages"
|
428 |
msgstr[0] ""
|
429 |
msgstr[1] ""
|
430 |
|
431 |
-
#: bulk-delete.php:
|
432 |
msgid "Deleted %d post with the specified urls"
|
433 |
msgid_plural "Deleted %d posts with the specified urls"
|
434 |
msgstr[0] ""
|
435 |
msgstr[1] ""
|
436 |
|
437 |
-
#: bulk-delete.php:
|
438 |
msgid "Deleted %d post revision"
|
439 |
msgid_plural "Deleted %d post revisions"
|
440 |
msgstr[0] ""
|
441 |
msgstr[1] ""
|
442 |
|
443 |
-
#: bulk-delete.php:
|
444 |
msgctxt "Cron table date format"
|
445 |
msgid "M j, Y @ G:i"
|
446 |
msgstr ""
|
@@ -476,13 +503,13 @@ msgstr ""
|
|
476 |
|
477 |
#: include/class-cron-list-table.php:53 include/class-cron-list-table.php:60
|
478 |
#: include/class-cron-list-table.php:67 include/class-cron-list-table.php:74
|
479 |
-
#: include/class-cron-list-table.php:81
|
480 |
msgid "More Info"
|
481 |
msgstr ""
|
482 |
|
483 |
#: include/class-cron-list-table.php:54 include/class-cron-list-table.php:61
|
484 |
#: include/class-cron-list-table.php:68 include/class-cron-list-table.php:75
|
485 |
-
#: include/class-cron-list-table.php:82
|
486 |
msgid "Buy now"
|
487 |
msgstr ""
|
488 |
|
@@ -504,40 +531,49 @@ msgid ""
|
|
504 |
msgstr ""
|
505 |
|
506 |
#: include/class-cron-list-table.php:72
|
507 |
-
msgid "Bulk Delete Schedule
|
508 |
msgstr ""
|
509 |
|
510 |
#: include/class-cron-list-table.php:73
|
511 |
-
msgid "
|
|
|
512 |
msgstr ""
|
513 |
|
514 |
#: include/class-cron-list-table.php:79
|
515 |
-
msgid "Bulk Delete Schedule
|
516 |
msgstr ""
|
517 |
|
518 |
#: include/class-cron-list-table.php:80
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
msgid ""
|
520 |
"Adds the ability to schedule auto delete of posts based on post status like "
|
521 |
"drafts, pending posts, scheduled posts etc."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: include/class-cron-list-table.php:
|
525 |
msgid "Next Due (GMT/UTC)"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: include/class-cron-list-table.php:
|
529 |
msgid "Type"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: include/class-cron-list-table.php:
|
533 |
msgid "Options"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: include/class-cron-list-table.php:
|
537 |
msgid "Delete"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: include/class-cron-list-table.php:
|
541 |
msgid "You have not scheduled any bulk delete jobs."
|
542 |
msgstr ""
|
543 |
|
2 |
# This file is distributed under the same license as the Bulk Delete package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Bulk Delete 3.5\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
|
7 |
+
"POT-Creation-Date: 2013-06-01 05:46:09+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#. #-#-#-#-# bulk-delete.pot (Bulk Delete 3.5) #-#-#-#-#
|
16 |
#. Plugin Name of the plugin/theme
|
17 |
+
#: bulk-delete.php:145 bulk-delete.php:275
|
18 |
msgid "Bulk Delete"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: bulk-delete.php:146 bulk-delete.php:1208
|
22 |
msgid "Bulk Delete Schedules"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: bulk-delete.php:158
|
26 |
msgid "By Post Status"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: bulk-delete.php:159
|
30 |
msgid "By Category"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: bulk-delete.php:160
|
34 |
msgid "By Tag"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: bulk-delete.php:161
|
38 |
msgid "By Custom Taxonomy"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: bulk-delete.php:162
|
42 |
+
msgid "By Custom Post Types"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: bulk-delete.php:163
|
46 |
msgid "By Page"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: bulk-delete.php:164
|
50 |
msgid "By URL"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: bulk-delete.php:165
|
54 |
msgid "By Post Revision"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: bulk-delete.php:166
|
58 |
msgid "Debug Information"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: bulk-delete.php:184
|
62 |
msgid "About Plugin"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: bulk-delete.php:186
|
66 |
msgid ""
|
67 |
"This plugin allows you to delete posts in bulk from selected categories, "
|
68 |
"tags, custom taxonomies or by post status like drafts, pending posts, "
|
69 |
"scheduled posts etc."
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: bulk-delete.php:193
|
73 |
msgid "More information"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: bulk-delete.php:194
|
77 |
msgid "Plugin Homepage/support"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: bulk-delete.php:195
|
81 |
msgid "Buy pro addons"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: bulk-delete.php:196
|
85 |
msgid "Plugin author's blog"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: bulk-delete.php:197
|
89 |
msgid "Other Plugin's by Author"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: bulk-delete.php:226
|
93 |
msgid "Are you sure you want to delete all the selected posts"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: bulk-delete.php:230
|
97 |
msgid "Please select posts from at least one option"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: bulk-delete.php:231
|
101 |
msgid "Please enter at least one page url"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: bulk-delete.php:249
|
105 |
msgid "Manage"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: bulk-delete.php:263
|
109 |
msgid "Buy Addons"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: bulk-delete.php:291
|
113 |
msgid "WARNING: Posts deleted once cannot be retrieved back. Use with caution."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: bulk-delete.php:319
|
117 |
msgid "plugin"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: bulk-delete.php:319
|
121 |
msgid "Version"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: bulk-delete.php:319
|
125 |
msgid "by"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: bulk-delete.php:328 bulk-delete.php:438 bulk-delete.php:556
|
129 |
+
#: bulk-delete.php:676 bulk-delete.php:830 bulk-delete.php:957
|
130 |
+
#: bulk-delete.php:1077 bulk-delete.php:1124
|
131 |
msgid ""
|
132 |
"This section just got enabled. Kindly <a href = \"%1$s\">refresh</a> the "
|
133 |
"page to fully enable it."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: bulk-delete.php:338 bulk-delete.php:1133
|
137 |
msgid "Select the posts which you want to delete"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: bulk-delete.php:345
|
141 |
msgid "All Draft Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bulk-delete.php:345
|
145 |
msgid "Drafts"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: bulk-delete.php:352
|
149 |
msgid "All Pending posts"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: bulk-delete.php:352 bulk-delete.php:359 bulk-delete.php:366
|
153 |
+
#: bulk-delete.php:457 bulk-delete.php:576 bulk-delete.php:733
|
154 |
msgid "Posts"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: bulk-delete.php:359
|
158 |
msgid "All scheduled posts"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: bulk-delete.php:366
|
162 |
msgid "All private posts"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: bulk-delete.php:372 bulk-delete.php:474 bulk-delete.php:593
|
166 |
+
#: bulk-delete.php:747 bulk-delete.php:874 bulk-delete.php:1010
|
167 |
+
#: bulk-delete.php:1097
|
168 |
msgid "Choose your filtering options"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: bulk-delete.php:379 bulk-delete.php:483 bulk-delete.php:602
|
172 |
+
#: bulk-delete.php:756 bulk-delete.php:883
|
173 |
msgid "Only restrict to posts which are "
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: bulk-delete.php:381 bulk-delete.php:485 bulk-delete.php:604
|
177 |
+
#: bulk-delete.php:758 bulk-delete.php:885 bulk-delete.php:1019
|
178 |
msgid "older than"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: bulk-delete.php:382 bulk-delete.php:486 bulk-delete.php:605
|
182 |
+
#: bulk-delete.php:759 bulk-delete.php:886 bulk-delete.php:1020
|
183 |
msgid "posted within last"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: bulk-delete.php:384 bulk-delete.php:488 bulk-delete.php:607
|
187 |
+
#: bulk-delete.php:761 bulk-delete.php:888 bulk-delete.php:1022
|
188 |
msgid "days"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: bulk-delete.php:390 bulk-delete.php:494 bulk-delete.php:613
|
192 |
+
#: bulk-delete.php:767 bulk-delete.php:894 bulk-delete.php:1028
|
193 |
+
#: bulk-delete.php:1103
|
194 |
msgid "Move to Trash"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: bulk-delete.php:391 bulk-delete.php:495 bulk-delete.php:614
|
198 |
+
#: bulk-delete.php:768 bulk-delete.php:895 bulk-delete.php:1029
|
199 |
+
#: bulk-delete.php:1104
|
200 |
msgid "Delete permanently"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: bulk-delete.php:398 bulk-delete.php:511 bulk-delete.php:630
|
204 |
+
#: bulk-delete.php:784 bulk-delete.php:911 bulk-delete.php:1036
|
205 |
msgid "Only delete first "
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: bulk-delete.php:399 bulk-delete.php:512 bulk-delete.php:631
|
209 |
+
#: bulk-delete.php:785 bulk-delete.php:912 bulk-delete.php:1037
|
210 |
msgid "posts."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: bulk-delete.php:400 bulk-delete.php:513 bulk-delete.php:632
|
214 |
+
#: bulk-delete.php:786 bulk-delete.php:913 bulk-delete.php:1038
|
215 |
msgid ""
|
216 |
"Use this option if there are more than 1000 posts and the script timesout."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: bulk-delete.php:406 bulk-delete.php:519 bulk-delete.php:638
|
220 |
+
#: bulk-delete.php:792 bulk-delete.php:919 bulk-delete.php:1044
|
221 |
msgid "Delete now"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: bulk-delete.php:407 bulk-delete.php:520 bulk-delete.php:639
|
225 |
+
#: bulk-delete.php:793 bulk-delete.php:920 bulk-delete.php:1045
|
226 |
+
#: include/class-cron-list-table.php:103
|
227 |
msgid "Schedule"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: bulk-delete.php:408 bulk-delete.php:521 bulk-delete.php:640
|
231 |
+
#: bulk-delete.php:794 bulk-delete.php:921 bulk-delete.php:1046
|
232 |
msgid "repeat "
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: bulk-delete.php:410 bulk-delete.php:523 bulk-delete.php:642
|
236 |
+
#: bulk-delete.php:796 bulk-delete.php:923 bulk-delete.php:1048
|
237 |
msgid "Don't repeat"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: bulk-delete.php:420 bulk-delete.php:533 bulk-delete.php:652
|
241 |
+
#: bulk-delete.php:806 bulk-delete.php:933 bulk-delete.php:1058
|
242 |
msgid "Only available in Pro Addon"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bulk-delete.php:427 bulk-delete.php:547 bulk-delete.php:659
|
246 |
+
#: bulk-delete.php:813 bulk-delete.php:940 bulk-delete.php:1065
|
247 |
+
#: bulk-delete.php:1112 bulk-delete.php:1148
|
248 |
msgid "Bulk Delete "
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: bulk-delete.php:444
|
252 |
msgid "Select the categories whose post you want to delete"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: bulk-delete.php:468
|
256 |
msgid "All Categories"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: bulk-delete.php:501 bulk-delete.php:620 bulk-delete.php:774
|
260 |
+
#: bulk-delete.php:901
|
261 |
msgid "Public posts"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: bulk-delete.php:502 bulk-delete.php:621 bulk-delete.php:775
|
265 |
+
#: bulk-delete.php:902
|
266 |
msgid "Private Posts"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: bulk-delete.php:539
|
270 |
msgid "Enter time in Y-m-d H:i:s format or enter now to use current time"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bulk-delete.php:563
|
274 |
msgid "Select the tags whose post you want to delete"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: bulk-delete.php:587
|
278 |
msgid "All Tags"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: bulk-delete.php:665
|
282 |
msgid "You don't have any posts assigned to tags in this blog."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: bulk-delete.php:700
|
286 |
msgid "Select the taxonomies whose post you want to delete"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: bulk-delete.php:720
|
290 |
msgid ""
|
291 |
"The selected taxonomy has the following terms. Select the terms whose post "
|
292 |
"you want to delete"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: bulk-delete.php:819
|
296 |
msgid "You don't have any posts assigned to custom taxonomies in this blog."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: bulk-delete.php:854
|
300 |
+
msgid "Select the custom post type whose post you want to delete"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: bulk-delete.php:946
|
304 |
+
msgid "You don't have any posts assigned to custom post types in this blog."
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: bulk-delete.php:969
|
308 |
msgid "Select the pages which you want to delete"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: bulk-delete.php:976
|
312 |
msgid "All Published Pages"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: bulk-delete.php:976 bulk-delete.php:983 bulk-delete.php:990
|
316 |
+
#: bulk-delete.php:997 bulk-delete.php:1004
|
317 |
msgid "Pages"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: bulk-delete.php:983
|
321 |
msgid "All Draft Pages"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: bulk-delete.php:990
|
325 |
msgid "All Scheduled Pages"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: bulk-delete.php:997
|
329 |
msgid "All Pending Pages"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: bulk-delete.php:1004
|
333 |
msgid "All Private Pages"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: bulk-delete.php:1017
|
337 |
msgid "Only restrict to pages which are "
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: bulk-delete.php:1083
|
341 |
msgid "Delete these specific pages"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: bulk-delete.php:1089
|
345 |
msgid "Enter one post url (not post ids) per line"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: bulk-delete.php:1140
|
349 |
msgid "All Revisions"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: bulk-delete.php:1140
|
353 |
msgid "Revisions"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: bulk-delete.php:1161
|
357 |
msgid ""
|
358 |
"If you are seeing a blank page after clicking the Bulk Delete button, then "
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: bulk-delete.php:1161
|
362 |
msgid "check out this FAQ"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: bulk-delete.php:1162
|
366 |
msgid "You also need need the following debug information."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: bulk-delete.php:1166
|
370 |
msgid "PHP Version "
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: bulk-delete.php:1170
|
374 |
msgid "Plugin Version "
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: bulk-delete.php:1174
|
378 |
msgid "Available memory size "
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: bulk-delete.php:1178
|
382 |
msgid "Script time out "
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: bulk-delete.php:1182
|
386 |
msgid "Script input time "
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: bulk-delete.php:1233
|
390 |
msgid "The selected scheduled job was successfully deleted "
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: bulk-delete.php:1268
|
394 |
msgid "Posts from the selected categories are scheduled for deletion."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: bulk-delete.php:1269 bulk-delete.php:1300 bulk-delete.php:1332
|
398 |
+
#: bulk-delete.php:1364 bulk-delete.php:1398 bulk-delete.php:1433
|
399 |
msgid "See the full list of <a href = \"%s\">scheduled tasks</a>"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: bulk-delete.php:1272
|
403 |
msgid "Deleted %d post from the selected categories"
|
404 |
msgid_plural "Deleted %d posts from the selected categories"
|
405 |
msgstr[0] ""
|
406 |
msgstr[1] ""
|
407 |
|
408 |
+
#: bulk-delete.php:1299
|
409 |
msgid "Posts from the selected tags are scheduled for deletion."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: bulk-delete.php:1303
|
413 |
msgid "Deleted %d post from the selected tags"
|
414 |
msgid_plural "Deleted %d posts from the selected tags"
|
415 |
msgstr[0] ""
|
416 |
msgstr[1] ""
|
417 |
|
418 |
+
#: bulk-delete.php:1331
|
419 |
msgid "Posts from the selected custom taxonomies are scheduled for deletion."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: bulk-delete.php:1335
|
423 |
msgid "Deleted %d post from the selected custom taxonomies"
|
424 |
msgid_plural "Deleted %d posts from the selected custom taxonomies"
|
425 |
msgstr[0] ""
|
426 |
msgstr[1] ""
|
427 |
|
428 |
+
#: bulk-delete.php:1363
|
429 |
+
msgid "Posts from the selected custom post type are scheduled for deletion."
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: bulk-delete.php:1367
|
433 |
+
msgid "Deleted %d post from the selected custom post type"
|
434 |
+
msgid_plural "Deleted %d posts from the selected custom post type"
|
435 |
+
msgstr[0] ""
|
436 |
+
msgstr[1] ""
|
437 |
+
|
438 |
+
#: bulk-delete.php:1397
|
439 |
msgid "Posts with the selected status are scheduled for deletion."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: bulk-delete.php:1401
|
443 |
msgid "Deleted %d post with the selected post status"
|
444 |
msgid_plural "Deleted %d posts with the selected post status"
|
445 |
msgstr[0] ""
|
446 |
msgstr[1] ""
|
447 |
|
448 |
+
#: bulk-delete.php:1432
|
449 |
msgid "The selected pages are scheduled for deletion."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: bulk-delete.php:1436
|
453 |
msgid "Deleted %d page"
|
454 |
msgid_plural "Deleted %d pages"
|
455 |
msgstr[0] ""
|
456 |
msgstr[1] ""
|
457 |
|
458 |
+
#: bulk-delete.php:1462
|
459 |
msgid "Deleted %d post with the specified urls"
|
460 |
msgid_plural "Deleted %d posts with the specified urls"
|
461 |
msgstr[0] ""
|
462 |
msgstr[1] ""
|
463 |
|
464 |
+
#: bulk-delete.php:1471
|
465 |
msgid "Deleted %d post revision"
|
466 |
msgid_plural "Deleted %d post revisions"
|
467 |
msgstr[0] ""
|
468 |
msgstr[1] ""
|
469 |
|
470 |
+
#: bulk-delete.php:1908
|
471 |
msgctxt "Cron table date format"
|
472 |
msgid "M j, Y @ G:i"
|
473 |
msgstr ""
|
503 |
|
504 |
#: include/class-cron-list-table.php:53 include/class-cron-list-table.php:60
|
505 |
#: include/class-cron-list-table.php:67 include/class-cron-list-table.php:74
|
506 |
+
#: include/class-cron-list-table.php:81 include/class-cron-list-table.php:88
|
507 |
msgid "More Info"
|
508 |
msgstr ""
|
509 |
|
510 |
#: include/class-cron-list-table.php:54 include/class-cron-list-table.php:61
|
511 |
#: include/class-cron-list-table.php:68 include/class-cron-list-table.php:75
|
512 |
+
#: include/class-cron-list-table.php:82 include/class-cron-list-table.php:89
|
513 |
msgid "Buy now"
|
514 |
msgstr ""
|
515 |
|
531 |
msgstr ""
|
532 |
|
533 |
#: include/class-cron-list-table.php:72
|
534 |
+
msgid "Bulk Delete Schedule Custom Post Type"
|
535 |
msgstr ""
|
536 |
|
537 |
#: include/class-cron-list-table.php:73
|
538 |
+
msgid ""
|
539 |
+
"Adds the ability to schedule auto delete of posts based on custom post types"
|
540 |
msgstr ""
|
541 |
|
542 |
#: include/class-cron-list-table.php:79
|
543 |
+
msgid "Bulk Delete Schedule Pages"
|
544 |
msgstr ""
|
545 |
|
546 |
#: include/class-cron-list-table.php:80
|
547 |
+
msgid "Adds the ability to schedule auto delete pages"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: include/class-cron-list-table.php:86
|
551 |
+
msgid "Bulk Delete Schedule by Post Status"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: include/class-cron-list-table.php:87
|
555 |
msgid ""
|
556 |
"Adds the ability to schedule auto delete of posts based on post status like "
|
557 |
"drafts, pending posts, scheduled posts etc."
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: include/class-cron-list-table.php:102
|
561 |
msgid "Next Due (GMT/UTC)"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: include/class-cron-list-table.php:104
|
565 |
msgid "Type"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: include/class-cron-list-table.php:105
|
569 |
msgid "Options"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: include/class-cron-list-table.php:151
|
573 |
msgid "Delete"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: include/class-cron-list-table.php:176
|
577 |
msgid "You have not scheduled any bulk delete jobs."
|
578 |
msgstr ""
|
579 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: post, comment, delete, bulk, mass, draft, revision, page
|
|
4 |
Requires at least: 2.0
|
5 |
Tested up to: 3.5.1
|
6 |
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
Bulk delete posts from selected categories, tags, custom taxonomies or by post type like drafts, scheduled posts, revisions etc.
|
10 |
|
@@ -21,6 +21,7 @@ This Plugin supports the following bulk delete options for deleting posts
|
|
21 |
- Delete posts by category
|
22 |
- Delete posts by tags
|
23 |
- Delete posts by custom taxonomies
|
|
|
24 |
- Delete posts by url
|
25 |
- Delete all draft posts
|
26 |
- Delete all pending posts
|
@@ -59,7 +60,7 @@ Like posts, all the above options support the following filters as well
|
|
59 |
|
60 |
- Delete all post revisions
|
61 |
|
62 |
-
#### Deleting by
|
63 |
|
64 |
Coming soon :)
|
65 |
|
@@ -74,6 +75,7 @@ The following are the list of pro addons that are currently available for purcha
|
|
74 |
- **Bulk Delete Schedule Categories** - Adds the ability to schedule auto delete of posts based on categories. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-categories). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-category-addon)
|
75 |
- **Bulk Delete Schedule Tags** - Adds the ability to schedule auto delete of posts based on tags. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-tags). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-tags-addon)
|
76 |
- **Bulk Delete Schedule Custom Taxonomies** - Adds the ability to schedule auto delete of posts based on custom taxonomies. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-taxonomy). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-taxonomy-addon)
|
|
|
77 |
- **Bulk Delete Schedule Pages** - Adds the ability to schedule auto delete of pages. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-pages). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-pages-addon)
|
78 |
- **Bulk Delete Schedule by Post Status** - Adds the ability to schedule auto delete of posts based on post status like drafts, pending posts, scheduled posts etc. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-post-status). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-post-status-addon)
|
79 |
|
@@ -89,7 +91,6 @@ If you are looking for ideas, then you can start with one of the following TODO
|
|
89 |
|
90 |
The following are the features that I am thinking of adding to the Plugin, when I get some free time. If you have any feature request or want to increase the priority of a particular feature, then let me know.
|
91 |
|
92 |
-
- Bulk Delete by custom post types
|
93 |
- Bulk Delete posts based on page views
|
94 |
- Bulk Delete sticky posts
|
95 |
- Bulk delete based on the presence/absence of a word
|
@@ -100,6 +101,7 @@ The following are the features that I am thinking of adding to the Plugin, when
|
|
100 |
- <del>Change the message based on the option the user has chosen</del> - Added in v3.3
|
101 |
- <del>Expandable/collapsible taxonomies</del> - Added in v3.3
|
102 |
- <del>Ability to choose the different sections that should be loaded</del> - Added in v3.4
|
|
|
103 |
|
104 |
### Support
|
105 |
|
@@ -107,6 +109,7 @@ The following are the features that I am thinking of adding to the Plugin, when
|
|
107 |
- If you have a question about usage or need help to troubleshoot, then post in WordPress forums or leave a comment in [Plugins's home page][1]
|
108 |
- If you like the Plugin, then kindly leave a review/feedback at [WordPress repo page][8].
|
109 |
- If you find this Plugin useful or and wanted to say thank you, then there are ways to [make me happy](http://sudarmuthu.com/if-you-wanna-thank-me) :) and I would really appreciate if you can do one of those.
|
|
|
110 |
- If anything else, then contact me in [twitter][3].
|
111 |
|
112 |
[1]: http://sudarmuthu.com/wordpress/bulk-delete
|
@@ -133,6 +136,7 @@ The Plugin currently has translations for the following languages.
|
|
133 |
* Lithuanian (Thanks Vincent G)
|
134 |
* Hindi (Thanks Love Chandel)
|
135 |
* Serbian (Thanks Diana)
|
|
|
136 |
|
137 |
The pot file is available with the Plugin. If you are willing to do translation for the Plugin, use the pot file to create the .po files for your language and let me know.
|
138 |
|
@@ -196,6 +200,11 @@ The ability to schedule deletion of posts is available as a pro addon.
|
|
196 |
|
197 |
== Changelog ==
|
198 |
|
|
|
|
|
|
|
|
|
|
|
199 |
= 2013-05-22 - v3.4 - (Dev time: 20 hours) =
|
200 |
* Incorporated Screen API to select/deselect different sections of the page
|
201 |
* Load only sections that are selected by the user
|
@@ -306,6 +315,9 @@ The ability to schedule deletion of posts is available as a pro addon.
|
|
306 |
|
307 |
== Upgrade Notice ==
|
308 |
|
|
|
|
|
|
|
309 |
= 3.4 =
|
310 |
Added the ability to disable different sections of the Plugin.
|
311 |
|
4 |
Requires at least: 2.0
|
5 |
Tested up to: 3.5.1
|
6 |
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
7 |
+
Stable tag: 3.5
|
8 |
|
9 |
Bulk delete posts from selected categories, tags, custom taxonomies or by post type like drafts, scheduled posts, revisions etc.
|
10 |
|
21 |
- Delete posts by category
|
22 |
- Delete posts by tags
|
23 |
- Delete posts by custom taxonomies
|
24 |
+
- Delete posts by custom post types
|
25 |
- Delete posts by url
|
26 |
- Delete all draft posts
|
27 |
- Delete all pending posts
|
60 |
|
61 |
- Delete all post revisions
|
62 |
|
63 |
+
#### Deleting by content and page views
|
64 |
|
65 |
Coming soon :)
|
66 |
|
75 |
- **Bulk Delete Schedule Categories** - Adds the ability to schedule auto delete of posts based on categories. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-categories). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-category-addon)
|
76 |
- **Bulk Delete Schedule Tags** - Adds the ability to schedule auto delete of posts based on tags. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-tags). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-tags-addon)
|
77 |
- **Bulk Delete Schedule Custom Taxonomies** - Adds the ability to schedule auto delete of posts based on custom taxonomies. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-taxonomy). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-taxonomy-addon)
|
78 |
+
- **Bulk Delete Schedule Custom post types** - Adds the ability to schedule auto delete of posts based on custom post types. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-post-types). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-post-type-addon)
|
79 |
- **Bulk Delete Schedule Pages** - Adds the ability to schedule auto delete of pages. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-pages). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-pages-addon)
|
80 |
- **Bulk Delete Schedule by Post Status** - Adds the ability to schedule auto delete of posts based on post status like drafts, pending posts, scheduled posts etc. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-post-status). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-post-status-addon)
|
81 |
|
91 |
|
92 |
The following are the features that I am thinking of adding to the Plugin, when I get some free time. If you have any feature request or want to increase the priority of a particular feature, then let me know.
|
93 |
|
|
|
94 |
- Bulk Delete posts based on page views
|
95 |
- Bulk Delete sticky posts
|
96 |
- Bulk delete based on the presence/absence of a word
|
101 |
- <del>Change the message based on the option the user has chosen</del> - Added in v3.3
|
102 |
- <del>Expandable/collapsible taxonomies</del> - Added in v3.3
|
103 |
- <del>Ability to choose the different sections that should be loaded</del> - Added in v3.4
|
104 |
+
- <del>Bulk Delete by custom post types</del> - Added in v3.5
|
105 |
|
106 |
### Support
|
107 |
|
109 |
- If you have a question about usage or need help to troubleshoot, then post in WordPress forums or leave a comment in [Plugins's home page][1]
|
110 |
- If you like the Plugin, then kindly leave a review/feedback at [WordPress repo page][8].
|
111 |
- If you find this Plugin useful or and wanted to say thank you, then there are ways to [make me happy](http://sudarmuthu.com/if-you-wanna-thank-me) :) and I would really appreciate if you can do one of those.
|
112 |
+
- Checkout other [WordPress Plugins][5] that I have written
|
113 |
- If anything else, then contact me in [twitter][3].
|
114 |
|
115 |
[1]: http://sudarmuthu.com/wordpress/bulk-delete
|
136 |
* Lithuanian (Thanks Vincent G)
|
137 |
* Hindi (Thanks Love Chandel)
|
138 |
* Serbian (Thanks Diana)
|
139 |
+
* Gujarati (Thanks Puneet)
|
140 |
|
141 |
The pot file is available with the Plugin. If you are willing to do translation for the Plugin, use the pot file to create the .po files for your language and let me know.
|
142 |
|
200 |
|
201 |
== Changelog ==
|
202 |
|
203 |
+
= 2013-06-01 - v3.5 - (Dev time: 10 hours) =
|
204 |
+
- Added support to delete custom post types
|
205 |
+
- Added Gujarati translations
|
206 |
+
- Ignore sticky posts when deleting drafts
|
207 |
+
|
208 |
= 2013-05-22 - v3.4 - (Dev time: 20 hours) =
|
209 |
* Incorporated Screen API to select/deselect different sections of the page
|
210 |
* Load only sections that are selected by the user
|
315 |
|
316 |
== Upgrade Notice ==
|
317 |
|
318 |
+
= 3.5 =
|
319 |
+
Added the ability to delete posts by custom post types.
|
320 |
+
|
321 |
= 3.4 =
|
322 |
Added the ability to disable different sections of the Plugin.
|
323 |
|