Version Description
- ADDED: Taiwan language support.
- ADDED: "Upgrade to Pro" Admin menu.
- FIXED: Move to Trash option bug.
- FIXED: Nothing to delete notice bug.
- IMPROVEMENTS: Support for WP 6.1
Download this release
Release Info
Developer | xylus |
Plugin | WP Bulk Delete |
Version | 1.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.2 to 1.2.3
- README.txt +8 -1
- assets/css/wp-bulk-delete-admin.css +6 -1
- includes/admin/admin-pages.php +3 -0
- includes/ajax-functions.php +1 -1
- includes/class-delete-api.php +8 -4
- includes/delele-comments-form-functions.php +1 -1
- includes/delele-meta-form-functions.php +8 -8
- includes/delele-posts-form-functions.php +8 -8
- includes/delele-users-form-functions.php +1 -1
- languages/wp-bulk-delete-zh_TW.mo +0 -0
- languages/wp-bulk-delete-zh_TW.po +1005 -0
- languages/wp-bulk-delete.pot +22 -21
- wp-bulk-delete.php +4 -4
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: delete, bulk, clean, bulk delete, bulk clean, posts delete, delete all, ma
|
|
5 |
Requires at least: 4.9
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 6.1
|
8 |
-
Stable tag: 1.2.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -164,6 +164,13 @@ We are working on providing more options :)
|
|
164 |
|
165 |
== Changelog ==
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
= 1.2.2 =
|
168 |
* ADDED: Optional Plugin deactivation Feedback
|
169 |
* FIXED: Delete button was not showing for WP < 5.3
|
5 |
Requires at least: 4.9
|
6 |
Requires PHP: 5.3
|
7 |
Tested up to: 6.1
|
8 |
+
Stable tag: 1.2.3
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
164 |
|
165 |
== Changelog ==
|
166 |
|
167 |
+
= 1.2.3 =
|
168 |
+
* ADDED: Taiwan language support.
|
169 |
+
* ADDED: "Upgrade to Pro" Admin menu.
|
170 |
+
* FIXED: Move to Trash option bug.
|
171 |
+
* FIXED: Nothing to delete notice bug.
|
172 |
+
* IMPROVEMENTS: Support for WP 6.1
|
173 |
+
|
174 |
= 1.2.2 =
|
175 |
* ADDED: Optional Plugin deactivation Feedback
|
176 |
* FIXED: Delete button was not showing for WP < 5.3
|
assets/css/wp-bulk-delete-admin.css
CHANGED
@@ -145,4 +145,9 @@
|
|
145 |
right: 0;
|
146 |
top: -30px;
|
147 |
}
|
148 |
-
}
|
|
|
|
|
|
|
|
|
|
145 |
right: 0;
|
146 |
top: -30px;
|
147 |
}
|
148 |
+
}
|
149 |
+
/*Upgrade to pro link CSS*/
|
150 |
+
.wpbd_upgrade_pro {
|
151 |
+
background: #1da867;
|
152 |
+
}
|
153 |
+
|
includes/admin/admin-pages.php
CHANGED
@@ -36,5 +36,8 @@ function wpbd_add_menu_pages() {
|
|
36 |
$xt_delete_taxonomy_page = add_submenu_page( 'delete_all_posts', __( 'Cleanup', 'wp-bulk-delete' ), __( 'Cleanup', 'wp-bulk-delete' ), 'manage_options', 'wpbd_cleanup', 'wpbd_render_cleanup_page' );
|
37 |
|
38 |
$xt_delete_support_page = add_submenu_page( 'delete_all_posts', __( 'Support & Help', 'wp-bulk-delete' ), __( 'Support & Help', 'wp-bulk-delete' ), 'manage_options', 'wpbd_support', 'wpbd_render_support_page' );
|
|
|
|
|
|
|
39 |
}
|
40 |
add_action( 'admin_menu', 'wpbd_add_menu_pages', 10 );
|
36 |
$xt_delete_taxonomy_page = add_submenu_page( 'delete_all_posts', __( 'Cleanup', 'wp-bulk-delete' ), __( 'Cleanup', 'wp-bulk-delete' ), 'manage_options', 'wpbd_cleanup', 'wpbd_render_cleanup_page' );
|
37 |
|
38 |
$xt_delete_support_page = add_submenu_page( 'delete_all_posts', __( 'Support & Help', 'wp-bulk-delete' ), __( 'Support & Help', 'wp-bulk-delete' ), 'manage_options', 'wpbd_support', 'wpbd_render_support_page' );
|
39 |
+
if( !wpbd_is_pro() ){
|
40 |
+
$xt_delete_support_page = add_submenu_page( 'delete_all_posts', __( 'Upgrade to Pro', 'wp-bulk-delete' ), '<li class="wpbd_upgrade_pro current"> ' . __( 'Upgrade to Pro', 'wp-bulk-delete' ) . '</li>', 'manage_options', esc_url( "https://xylusthemes.com/plugins/wp-bulk-delete/") );
|
41 |
+
}
|
42 |
}
|
43 |
add_action( 'admin_menu', 'wpbd_add_menu_pages', 10 );
|
includes/ajax-functions.php
CHANGED
@@ -33,7 +33,7 @@ function wpbd_delete_posts_count() {
|
|
33 |
|
34 |
// Get post_ids for delete based on user input.
|
35 |
$post_ids = wpbulkdelete()->api->get_delete_posts_ids( $data );
|
36 |
-
|
37 |
if ( ! empty( $post_ids ) && count( $post_ids ) > 0 ) {
|
38 |
$return = array(
|
39 |
'status' => 1,
|
33 |
|
34 |
// Get post_ids for delete based on user input.
|
35 |
$post_ids = wpbulkdelete()->api->get_delete_posts_ids( $data );
|
36 |
+
|
37 |
if ( ! empty( $post_ids ) && count( $post_ids ) > 0 ) {
|
38 |
$return = array(
|
39 |
'status' => 1,
|
includes/class-delete-api.php
CHANGED
@@ -106,7 +106,7 @@ class WPBD_Delete_API {
|
|
106 |
$query .= " AND $wpdb->posts.post_author IN ( " . implode( ",", $delete_authors ). " )";
|
107 |
}
|
108 |
|
109 |
-
if( $limit_post
|
110 |
if( is_numeric( $limit_post ) ){
|
111 |
$query .= " LIMIT " . $limit_post;
|
112 |
}
|
@@ -134,7 +134,11 @@ class WPBD_Delete_API {
|
|
134 |
if ( ! empty( $post_ids ) ){
|
135 |
|
136 |
foreach ($post_ids as $post_id ) {
|
137 |
-
|
|
|
|
|
|
|
|
|
138 |
}
|
139 |
$post_delete_count = count( $post_ids );
|
140 |
|
@@ -547,10 +551,10 @@ class WPBD_Delete_API {
|
|
547 |
|
548 |
$query .= " AND $wpdb->users.ID NOT IN ( ".get_current_user_id()." )";
|
549 |
|
550 |
-
if( $limit_user
|
551 |
if( is_numeric( $limit_user ) ){
|
552 |
$query .= " ORDER BY $wpdb->users.user_login ASC LIMIT " . $limit_user;
|
553 |
-
}
|
554 |
}
|
555 |
$users = $wpdb->get_col( $query );
|
556 |
return $users;
|
106 |
$query .= " AND $wpdb->posts.post_author IN ( " . implode( ",", $delete_authors ). " )";
|
107 |
}
|
108 |
|
109 |
+
if( !empty( $limit_post ) ){
|
110 |
if( is_numeric( $limit_post ) ){
|
111 |
$query .= " LIMIT " . $limit_post;
|
112 |
}
|
134 |
if ( ! empty( $post_ids ) ){
|
135 |
|
136 |
foreach ($post_ids as $post_id ) {
|
137 |
+
if( $force_delete === false ){
|
138 |
+
wp_trash_post( $post_id );
|
139 |
+
}else{
|
140 |
+
wp_delete_post( $post_id, true );
|
141 |
+
}
|
142 |
}
|
143 |
$post_delete_count = count( $post_ids );
|
144 |
|
551 |
|
552 |
$query .= " AND $wpdb->users.ID NOT IN ( ".get_current_user_id()." )";
|
553 |
|
554 |
+
if( !empty( $limit_user ) ){
|
555 |
if( is_numeric( $limit_user ) ){
|
556 |
$query .= " ORDER BY $wpdb->users.user_login ASC LIMIT " . $limit_user;
|
557 |
+
}
|
558 |
}
|
559 |
$users = $wpdb->get_col( $query );
|
560 |
return $users;
|
includes/delele-comments-form-functions.php
CHANGED
@@ -38,7 +38,7 @@ function xt_delete_comments_form_process( $data ) {
|
|
38 |
|
39 |
if( empty( $error ) ){
|
40 |
$delete_time = ( $data['delete_time'] ) ? $data['delete_time'] : 'now';
|
41 |
-
$delete_datetime = ( $data['delete_datetime'] ) ? $data['delete_datetime'] : '';
|
42 |
if( $delete_time === 'scheduled' && !empty($delete_datetime) && wpbd_is_pro() ) {
|
43 |
$data['delete_entity'] = 'comment';
|
44 |
return wpbd_save_scheduled_delete($data);
|
38 |
|
39 |
if( empty( $error ) ){
|
40 |
$delete_time = ( $data['delete_time'] ) ? $data['delete_time'] : 'now';
|
41 |
+
$delete_datetime = isset( $data['delete_datetime'] ) ? $data['delete_datetime'] : '';
|
42 |
if( $delete_time === 'scheduled' && !empty($delete_datetime) && wpbd_is_pro() ) {
|
43 |
$data['delete_entity'] = 'comment';
|
44 |
return wpbd_save_scheduled_delete($data);
|
includes/delele-meta-form-functions.php
CHANGED
@@ -123,56 +123,56 @@ function wpbd_render_meta_cleanup(){
|
|
123 |
</th>
|
124 |
<td>
|
125 |
<fieldset>
|
126 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_orphan_postmeta" type="checkbox" value="orphan_postmeta"
|
127 |
<label for="cleanup_orphan_postmeta">
|
128 |
<?php printf( __( 'Orphaned Post Meta (%d Post Meta)', 'wp-bulk-delete' ), $orphan_postmeta_count ); ?>
|
129 |
</label>
|
130 |
</fieldset>
|
131 |
|
132 |
<fieldset>
|
133 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_duplicated_postmeta" type="checkbox" value="duplicated_postmeta"
|
134 |
<label for="cleanup_duplicated_postmeta">
|
135 |
<?php printf( __( 'Duplicated Post Meta (%d Post Meta)', 'wp-bulk-delete' ), $duplicated_postmeta_count ); ?>
|
136 |
</label>
|
137 |
</fieldset>
|
138 |
|
139 |
<fieldset>
|
140 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_orphan_commentmeta" type="checkbox" value="orphan_commentmeta"
|
141 |
<label for="cleanup_orphan_commentmeta">
|
142 |
<?php printf( __( 'Orphaned Comment Meta (%d Comment Meta)', 'wp-bulk-delete' ), $orphan_commentmeta_count ); ?>
|
143 |
</label>
|
144 |
</fieldset>
|
145 |
|
146 |
<fieldset>
|
147 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_duplicated_commentmeta" type="checkbox" value="duplicated_commentmeta"
|
148 |
<label for="cleanup_duplicated_commentmeta">
|
149 |
<?php printf( __( 'Duplicated Comment Meta (%d Comment Meta)', 'wp-bulk-delete' ), $duplicated_commentmeta_count ); ?>
|
150 |
</label>
|
151 |
</fieldset>
|
152 |
|
153 |
<fieldset>
|
154 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_orphan_usermeta" type="checkbox" value="orphan_usermeta"
|
155 |
<label for="cleanup_orphan_usermeta">
|
156 |
<?php printf( __( 'Orphaned User Meta (%d User Meta)', 'wp-bulk-delete' ), $orphan_usermeta_count ); ?>
|
157 |
</label>
|
158 |
</fieldset>
|
159 |
|
160 |
<fieldset>
|
161 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_duplicated_usermeta" type="checkbox" value="duplicated_usermeta"
|
162 |
<label for="cleanup_duplicated_usermeta">
|
163 |
<?php printf( __( 'Duplicated User Meta (%d User Meta)', 'wp-bulk-delete' ), $duplicated_usermeta_count ); ?>
|
164 |
</label>
|
165 |
</fieldset>
|
166 |
|
167 |
<fieldset>
|
168 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_orphan_termmeta" type="checkbox" value="orphan_termmeta"
|
169 |
<label for="cleanup_orphan_termmeta">
|
170 |
<?php printf( __( 'Orphaned Term Meta (%d Term Meta)', 'wp-bulk-delete' ), $orphan_commentmeta_count ); ?>
|
171 |
</label>
|
172 |
</fieldset>
|
173 |
|
174 |
<fieldset>
|
175 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_duplicated_termmeta" type="checkbox" value="duplicated_termmeta"
|
176 |
<label for="cleanup_duplicated_termmeta">
|
177 |
<?php printf( __( 'Duplicated Term Meta (%d Term Meta)', 'wp-bulk-delete' ), $duplicated_termmeta_count ); ?>
|
178 |
</label>
|
123 |
</th>
|
124 |
<td>
|
125 |
<fieldset>
|
126 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_orphan_postmeta" type="checkbox" value="orphan_postmeta" >
|
127 |
<label for="cleanup_orphan_postmeta">
|
128 |
<?php printf( __( 'Orphaned Post Meta (%d Post Meta)', 'wp-bulk-delete' ), $orphan_postmeta_count ); ?>
|
129 |
</label>
|
130 |
</fieldset>
|
131 |
|
132 |
<fieldset>
|
133 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_duplicated_postmeta" type="checkbox" value="duplicated_postmeta" >
|
134 |
<label for="cleanup_duplicated_postmeta">
|
135 |
<?php printf( __( 'Duplicated Post Meta (%d Post Meta)', 'wp-bulk-delete' ), $duplicated_postmeta_count ); ?>
|
136 |
</label>
|
137 |
</fieldset>
|
138 |
|
139 |
<fieldset>
|
140 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_orphan_commentmeta" type="checkbox" value="orphan_commentmeta" >
|
141 |
<label for="cleanup_orphan_commentmeta">
|
142 |
<?php printf( __( 'Orphaned Comment Meta (%d Comment Meta)', 'wp-bulk-delete' ), $orphan_commentmeta_count ); ?>
|
143 |
</label>
|
144 |
</fieldset>
|
145 |
|
146 |
<fieldset>
|
147 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_duplicated_commentmeta" type="checkbox" value="duplicated_commentmeta" >
|
148 |
<label for="cleanup_duplicated_commentmeta">
|
149 |
<?php printf( __( 'Duplicated Comment Meta (%d Comment Meta)', 'wp-bulk-delete' ), $duplicated_commentmeta_count ); ?>
|
150 |
</label>
|
151 |
</fieldset>
|
152 |
|
153 |
<fieldset>
|
154 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_orphan_usermeta" type="checkbox" value="orphan_usermeta" >
|
155 |
<label for="cleanup_orphan_usermeta">
|
156 |
<?php printf( __( 'Orphaned User Meta (%d User Meta)', 'wp-bulk-delete' ), $orphan_usermeta_count ); ?>
|
157 |
</label>
|
158 |
</fieldset>
|
159 |
|
160 |
<fieldset>
|
161 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_duplicated_usermeta" type="checkbox" value="duplicated_usermeta" >
|
162 |
<label for="cleanup_duplicated_usermeta">
|
163 |
<?php printf( __( 'Duplicated User Meta (%d User Meta)', 'wp-bulk-delete' ), $duplicated_usermeta_count ); ?>
|
164 |
</label>
|
165 |
</fieldset>
|
166 |
|
167 |
<fieldset>
|
168 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_orphan_termmeta" type="checkbox" value="orphan_termmeta" >
|
169 |
<label for="cleanup_orphan_termmeta">
|
170 |
<?php printf( __( 'Orphaned Term Meta (%d Term Meta)', 'wp-bulk-delete' ), $orphan_commentmeta_count ); ?>
|
171 |
</label>
|
172 |
</fieldset>
|
173 |
|
174 |
<fieldset>
|
175 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_duplicated_termmeta" type="checkbox" value="duplicated_termmeta" >
|
176 |
<label for="cleanup_duplicated_termmeta">
|
177 |
<?php printf( __( 'Duplicated Term Meta (%d Term Meta)', 'wp-bulk-delete' ), $duplicated_termmeta_count ); ?>
|
178 |
</label>
|
includes/delele-posts-form-functions.php
CHANGED
@@ -64,7 +64,7 @@ function xt_delete_posts_form_process( $data ) {
|
|
64 |
|
65 |
if( empty( $error ) ) {
|
66 |
$delete_time = ( $data['delete_time'] ) ? $data['delete_time'] : 'now';
|
67 |
-
$delete_datetime = ( $data['delete_datetime'] ) ? $data['delete_datetime'] : '';
|
68 |
if( $delete_time === 'scheduled' && !empty($delete_datetime) && wpbd_is_pro() ) {
|
69 |
$data['delete_entity'] = 'post';
|
70 |
return wpbd_save_scheduled_delete($data);
|
@@ -133,7 +133,7 @@ function wpbd_render_form_posttype(){
|
|
133 |
?>
|
134 |
<fieldset>
|
135 |
<label for="delete_post_type">
|
136 |
-
<input name="delete_post_type[]" class="delete_post_type" id="<?php echo $key_type; ?>" type="checkbox" value="<?php echo $key_type; ?>"
|
137 |
<?php printf( __( '%s', 'wp-bulk-delete' ), $type ); ?>
|
138 |
<?php $post_count = wpbd_get_posttype_post_count( $key_type );
|
139 |
if( $post_count >= 0 ){
|
@@ -249,8 +249,8 @@ function wpbd_render_form_poststatus(){
|
|
249 |
<th scope="row">Post Status</th>
|
250 |
<td>
|
251 |
<fieldset>
|
252 |
-
<label for="delete_post_status">
|
253 |
-
<input name="delete_post_status[]" id="publish" value="publish" type="checkbox" checked="checked">
|
254 |
Published
|
255 |
</label>
|
256 |
</fieldset>
|
@@ -484,21 +484,21 @@ function wpbd_render_post_cleanup(){
|
|
484 |
<td>
|
485 |
<fieldset>
|
486 |
<label for="cleanup_post_type">
|
487 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_revision" type="checkbox" value="revision"
|
488 |
<?php printf( __( 'Revisions (%d Revisions)', 'wp-bulk-delete' ), wpbulkdelete()->api->get_post_count('revision') ); ?>
|
489 |
</label>
|
490 |
</fieldset>
|
491 |
|
492 |
<fieldset>
|
493 |
<label for="cleanup_post_type">
|
494 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_trash" type="checkbox" value="trash"
|
495 |
<?php printf( __( 'Trash (Deleted Posts) (%d Trash)', 'wp-bulk-delete' ), wpbulkdelete()->api->get_post_count('trash') ); ?>
|
496 |
</label>
|
497 |
</fieldset>
|
498 |
|
499 |
<fieldset>
|
500 |
<label for="cleanup_post_type">
|
501 |
-
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_revision" type="checkbox" value="auto_drafts"
|
502 |
<?php printf( __( 'Auto Drafts (%d Auto Drafts)', 'wp-bulk-delete' ), wpbulkdelete()->api->get_post_count('auto_drafts') ); ?>
|
503 |
</label>
|
504 |
</fieldset>
|
@@ -520,7 +520,7 @@ function wpbd_render_delete_time(){
|
|
520 |
<?php _e('Delete Time :','wp-bulk-delete'); ?>
|
521 |
</th>
|
522 |
<td>
|
523 |
-
<input type="radio" id="delete_time_now" name="delete_time" class="delete_time" value="now" checked="checked"/>
|
524 |
<?php _e( 'Delete now', 'wp-bulk-delete' ); ?><br />
|
525 |
<input type="radio" id="delete_time_later" name="delete_time" class="delete_time" value="scheduled" <?php echo( ( ! wpbd_is_pro() ) ? 'disabled="disabled"' : '' ); ?>/>
|
526 |
<?php _e( 'Schedule delete at', 'wp-bulk-delete' ); ?>
|
64 |
|
65 |
if( empty( $error ) ) {
|
66 |
$delete_time = ( $data['delete_time'] ) ? $data['delete_time'] : 'now';
|
67 |
+
$delete_datetime = isset( $data['delete_datetime'] ) ? $data['delete_datetime'] : '';
|
68 |
if( $delete_time === 'scheduled' && !empty($delete_datetime) && wpbd_is_pro() ) {
|
69 |
$data['delete_entity'] = 'post';
|
70 |
return wpbd_save_scheduled_delete($data);
|
133 |
?>
|
134 |
<fieldset>
|
135 |
<label for="delete_post_type">
|
136 |
+
<input name="delete_post_type[]" class="delete_post_type" id="<?php echo $key_type; ?>" type="checkbox" value="<?php echo $key_type; ?>" >
|
137 |
<?php printf( __( '%s', 'wp-bulk-delete' ), $type ); ?>
|
138 |
<?php $post_count = wpbd_get_posttype_post_count( $key_type );
|
139 |
if( $post_count >= 0 ){
|
249 |
<th scope="row">Post Status</th>
|
250 |
<td>
|
251 |
<fieldset>
|
252 |
+
<label for="delete_post_status" >
|
253 |
+
<input name="delete_post_status[]" id="publish" value="publish" type="checkbox" checked="checked" >
|
254 |
Published
|
255 |
</label>
|
256 |
</fieldset>
|
484 |
<td>
|
485 |
<fieldset>
|
486 |
<label for="cleanup_post_type">
|
487 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_revision" type="checkbox" value="revision" >
|
488 |
<?php printf( __( 'Revisions (%d Revisions)', 'wp-bulk-delete' ), wpbulkdelete()->api->get_post_count('revision') ); ?>
|
489 |
</label>
|
490 |
</fieldset>
|
491 |
|
492 |
<fieldset>
|
493 |
<label for="cleanup_post_type">
|
494 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_trash" type="checkbox" value="trash" >
|
495 |
<?php printf( __( 'Trash (Deleted Posts) (%d Trash)', 'wp-bulk-delete' ), wpbulkdelete()->api->get_post_count('trash') ); ?>
|
496 |
</label>
|
497 |
</fieldset>
|
498 |
|
499 |
<fieldset>
|
500 |
<label for="cleanup_post_type">
|
501 |
+
<input name="cleanup_post_type[]" class="cleanup_post_type" id="cleanup_revision" type="checkbox" value="auto_drafts" >
|
502 |
<?php printf( __( 'Auto Drafts (%d Auto Drafts)', 'wp-bulk-delete' ), wpbulkdelete()->api->get_post_count('auto_drafts') ); ?>
|
503 |
</label>
|
504 |
</fieldset>
|
520 |
<?php _e('Delete Time :','wp-bulk-delete'); ?>
|
521 |
</th>
|
522 |
<td>
|
523 |
+
<input type="radio" id="delete_time_now" name="delete_time" class="delete_time" value="now" checked="checked" />
|
524 |
<?php _e( 'Delete now', 'wp-bulk-delete' ); ?><br />
|
525 |
<input type="radio" id="delete_time_later" name="delete_time" class="delete_time" value="scheduled" <?php echo( ( ! wpbd_is_pro() ) ? 'disabled="disabled"' : '' ); ?>/>
|
526 |
<?php _e( 'Schedule delete at', 'wp-bulk-delete' ); ?>
|
includes/delele-users-form-functions.php
CHANGED
@@ -39,7 +39,7 @@ function xt_delete_users_form_process( $data ) {
|
|
39 |
|
40 |
if( empty( $error ) ){
|
41 |
$delete_time = ( $data['delete_time'] ) ? $data['delete_time'] : 'now';
|
42 |
-
$delete_datetime = ( $data['delete_datetime'] ) ? $data['delete_datetime'] : '';
|
43 |
if( $delete_time === 'scheduled' && !empty($delete_datetime) && wpbd_is_pro() ) {
|
44 |
$data['delete_entity'] = 'user';
|
45 |
return wpbd_save_scheduled_delete($data);
|
39 |
|
40 |
if( empty( $error ) ){
|
41 |
$delete_time = ( $data['delete_time'] ) ? $data['delete_time'] : 'now';
|
42 |
+
$delete_datetime = isset( $data['delete_datetime'] ) ? $data['delete_datetime'] : '';
|
43 |
if( $delete_time === 'scheduled' && !empty($delete_datetime) && wpbd_is_pro() ) {
|
44 |
$data['delete_entity'] = 'user';
|
45 |
return wpbd_save_scheduled_delete($data);
|
languages/wp-bulk-delete-zh_TW.mo
ADDED
Binary file
|
languages/wp-bulk-delete-zh_TW.po
ADDED
@@ -0,0 +1,1005 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - WP Bulk Delete - Stable (latest release) in Chinese (Taiwan)
|
2 |
+
# This file is distributed under the same license as the Plugins - WP Bulk Delete - Stable (latest release) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Plugins - WP Bulk Delete - Stable (latest release)\n"
|
6 |
+
"POT-Creation-Date: \n"
|
7 |
+
"PO-Revision-Date: 2022-06-02 13:53+0800\n"
|
8 |
+
"Last-Translator: \n"
|
9 |
+
"Language-Team: \n"
|
10 |
+
"Language: zh_TW\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
+
"X-Generator: Poedit 3.0.1\n"
|
16 |
+
|
17 |
+
#: includes/class-wpbd-plugin-deactivation.php:258
|
18 |
+
msgid "If you have a moment, please let us know why you are deactivating:"
|
19 |
+
msgstr "如果有時間,請讓我們知道您為什麼要停用:"
|
20 |
+
|
21 |
+
#: includes/class-wpbd-plugin-deactivation.php:233
|
22 |
+
#: includes/class-wpbd-plugin-deactivation.php:271
|
23 |
+
msgid "Write your query here"
|
24 |
+
msgstr "在此寫下您的查詢"
|
25 |
+
|
26 |
+
#: includes/class-wpbd-plugin-deactivation.php:230
|
27 |
+
msgid "Can you please let us know more about your requirement"
|
28 |
+
msgstr "請您可以告訴我們更多關於您的需求嗎"
|
29 |
+
|
30 |
+
#: includes/class-wpbd-plugin-deactivation.php:227
|
31 |
+
msgid "Can you please let us know more about the feature you want"
|
32 |
+
msgstr "請您可以告訴我們更多關於您想要的功能是什麼呢"
|
33 |
+
|
34 |
+
#: includes/class-wpbd-plugin-deactivation.php:224
|
35 |
+
msgid "Can you please let us know which plugin you found helpful"
|
36 |
+
msgstr "請您可以告訴我們覺得外掛最好用的功能是哪個呢"
|
37 |
+
|
38 |
+
#: includes/class-wpbd-plugin-deactivation.php:221
|
39 |
+
msgid "Can you please let us know about the bug/issue in detail?"
|
40 |
+
msgstr "請您可以告訴我們更多 程式錯誤/問題 的詳細狀況嗎?"
|
41 |
+
|
42 |
+
#: includes/class-wpbd-plugin-deactivation.php:217
|
43 |
+
msgid "Can you let us know the reason for deactivation (Required)"
|
44 |
+
msgstr "請您可以告訴我們停用的原因嗎 (必填)"
|
45 |
+
|
46 |
+
#: includes/class-wpbd-plugin-deactivation.php:214
|
47 |
+
msgid "Finding it confusing? let us know so that we can improve the interface"
|
48 |
+
msgstr "感到困惑?請讓我們知道以改善操作介面"
|
49 |
+
|
50 |
+
#: includes/class-wpbd-plugin-deactivation.php:197
|
51 |
+
msgid "Skip"
|
52 |
+
msgstr "跳過"
|
53 |
+
|
54 |
+
#: includes/class-wpbd-plugin-deactivation.php:169
|
55 |
+
msgid "Submit & Deactivate"
|
56 |
+
msgstr "傳送並停用"
|
57 |
+
|
58 |
+
#: includes/class-wpbd-plugin-deactivation.php:56
|
59 |
+
msgid "Other reasons"
|
60 |
+
msgstr "其他原因"
|
61 |
+
|
62 |
+
#: includes/class-wpbd-plugin-deactivation.php:55
|
63 |
+
msgid "It's temporary deactivatation, for debug an issue"
|
64 |
+
msgstr "為了偵錯而暫時性停用"
|
65 |
+
|
66 |
+
#: includes/class-wpbd-plugin-deactivation.php:54
|
67 |
+
msgid "Plugin didn't work as expected"
|
68 |
+
msgstr "外掛運作不如預期"
|
69 |
+
|
70 |
+
#: includes/class-wpbd-plugin-deactivation.php:53
|
71 |
+
msgid "It's not what I was looking for"
|
72 |
+
msgstr "這不是我在尋找的"
|
73 |
+
|
74 |
+
#: includes/class-wpbd-plugin-deactivation.php:52
|
75 |
+
msgid "Plugin has bugs and it's not working"
|
76 |
+
msgstr "外掛有程式錯誤以致不能運作"
|
77 |
+
|
78 |
+
#: includes/class-wpbd-plugin-deactivation.php:51
|
79 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
80 |
+
msgstr "這個外掛實在棒極了,只不過沒有我需要的某個功能"
|
81 |
+
|
82 |
+
#: includes/class-wpbd-plugin-deactivation.php:50
|
83 |
+
msgid "I found a better plugin"
|
84 |
+
msgstr "我找到更好的外掛"
|
85 |
+
|
86 |
+
#: includes/class-wpbd-plugin-deactivation.php:49
|
87 |
+
msgid "I couldn't understand how to make it work"
|
88 |
+
msgstr "我不知道該如何使用它"
|
89 |
+
|
90 |
+
#: includes/admin/support-page.php:62
|
91 |
+
msgid "Like us on Facebook"
|
92 |
+
msgstr "Facebook 上給我們一個讚"
|
93 |
+
|
94 |
+
#: includes/admin/support-page.php:61
|
95 |
+
msgid "Follow us on Twitter"
|
96 |
+
msgstr "追蹤 Twitter"
|
97 |
+
|
98 |
+
#: includes/admin/support-page.php:60
|
99 |
+
msgid "Leave us a review"
|
100 |
+
msgstr "留下評論"
|
101 |
+
|
102 |
+
#: includes/common-functions.php:164
|
103 |
+
msgid "Error in scheduled delete."
|
104 |
+
msgstr "排程刪除時發生錯誤."
|
105 |
+
|
106 |
+
#: includes/common-functions.php:159
|
107 |
+
msgid "Delete scheduled successfully."
|
108 |
+
msgstr "排程刪除成功."
|
109 |
+
|
110 |
+
#: includes/common-functions.php:149
|
111 |
+
msgid "Something went wrong when saving scheduled delete."
|
112 |
+
msgstr "儲存排程刪除時發生錯誤."
|
113 |
+
|
114 |
+
#: includes/common-functions.php:138
|
115 |
+
msgid "Scheduled Delete - "
|
116 |
+
msgstr "排程刪除 - "
|
117 |
+
|
118 |
+
#: includes/delele-terms-form-functions.php:85
|
119 |
+
msgid "Select the post taxonomy whose terms you want to delete."
|
120 |
+
msgstr "選擇您想刪除分類詞彙的文章分類法."
|
121 |
+
|
122 |
+
#: includes/delele-comments-form-functions.php:139
|
123 |
+
msgid "submitted between"
|
124 |
+
msgstr "提交日期介於"
|
125 |
+
|
126 |
+
#: includes/delele-comments-form-functions.php:138
|
127 |
+
msgid "submitted within last"
|
128 |
+
msgstr "提交日期於近日"
|
129 |
+
|
130 |
+
#: includes/delele-comments-form-functions.php:135
|
131 |
+
msgid "Delete Comments which are"
|
132 |
+
msgstr "刪除符合條件的留言"
|
133 |
+
|
134 |
+
#: includes/delele-users-form-functions.php:159
|
135 |
+
msgid "registered between"
|
136 |
+
msgstr "註冊日期介於"
|
137 |
+
|
138 |
+
#: includes/delele-users-form-functions.php:158
|
139 |
+
msgid "registered within last"
|
140 |
+
msgstr "註冊於近日"
|
141 |
+
|
142 |
+
#: includes/delele-users-form-functions.php:155
|
143 |
+
msgid "Delete Users which are"
|
144 |
+
msgstr "刪除符合條件的使用者"
|
145 |
+
|
146 |
+
#: includes/delele-posts-form-functions.php:574
|
147 |
+
msgid "eg: Daily Post Delete"
|
148 |
+
msgstr "例如:每日刪除文章"
|
149 |
+
|
150 |
+
#: includes/delele-posts-form-functions.php:573
|
151 |
+
msgid "Save it as "
|
152 |
+
msgstr "另存 "
|
153 |
+
|
154 |
+
#: includes/delele-posts-form-functions.php:569
|
155 |
+
msgid "Once a Month"
|
156 |
+
msgstr "每月一次"
|
157 |
+
|
158 |
+
#: includes/delele-posts-form-functions.php:566
|
159 |
+
msgid "Once Weekly"
|
160 |
+
msgstr "每週一次"
|
161 |
+
|
162 |
+
#: includes/delele-posts-form-functions.php:563
|
163 |
+
msgid "Once Daily"
|
164 |
+
msgstr "每日一次"
|
165 |
+
|
166 |
+
#: includes/delele-posts-form-functions.php:560
|
167 |
+
msgid "Twice Daily"
|
168 |
+
msgstr "每日兩次"
|
169 |
+
|
170 |
+
#: includes/delele-posts-form-functions.php:557
|
171 |
+
msgid "Once Hourly"
|
172 |
+
msgstr "每小時一次"
|
173 |
+
|
174 |
+
#: includes/delele-posts-form-functions.php:554
|
175 |
+
msgid "Don't repeat"
|
176 |
+
msgstr "不要重複"
|
177 |
+
|
178 |
+
#: includes/delele-posts-form-functions.php:536
|
179 |
+
msgid "Scheduled delete runs using cron and backgroud process. So, its useful for delete huge number of records and repeatative delete."
|
180 |
+
msgstr "排程刪除採用 cron 和背景運作,因此它對於刪除大量記錄和重複性刪除很有用。"
|
181 |
+
|
182 |
+
#: includes/delele-posts-form-functions.php:535
|
183 |
+
msgid "Timezone: (%s)"
|
184 |
+
msgstr "時區: (%s)"
|
185 |
+
|
186 |
+
#: includes/delele-posts-form-functions.php:529
|
187 |
+
msgid "repeat"
|
188 |
+
msgstr "重複"
|
189 |
+
|
190 |
+
#: includes/delele-posts-form-functions.php:526
|
191 |
+
msgid "Schedule delete at"
|
192 |
+
msgstr "排程刪除於"
|
193 |
+
|
194 |
+
#: includes/delele-posts-form-functions.php:524
|
195 |
+
msgid "Delete now"
|
196 |
+
msgstr "立即刪除"
|
197 |
+
|
198 |
+
#: includes/delele-posts-form-functions.php:520
|
199 |
+
msgid "Delete Time :"
|
200 |
+
msgstr "刪除時間 :"
|
201 |
+
|
202 |
+
#: includes/delele-posts-form-functions.php:303
|
203 |
+
msgid "posted between"
|
204 |
+
msgstr "發表介於"
|
205 |
+
|
206 |
+
#: includes/delele-posts-form-functions.php:302
|
207 |
+
msgid "posted within last"
|
208 |
+
msgstr "發表於近日"
|
209 |
+
|
210 |
+
#: includes/delele-posts-form-functions.php:299
|
211 |
+
msgid "Delete Posts which are"
|
212 |
+
msgstr "刪除符合條件的文章"
|
213 |
+
|
214 |
+
#: includes/delele-posts-form-functions.php:296
|
215 |
+
msgid "Post Date :"
|
216 |
+
msgstr "張貼日期 :"
|
217 |
+
|
218 |
+
#: includes/delele-users-form-functions.php:162
|
219 |
+
#: includes/delele-meta-form-functions.php:304
|
220 |
+
#: includes/delele-comments-form-functions.php:142
|
221 |
+
#: includes/delele-posts-form-functions.php:306
|
222 |
+
msgid "days"
|
223 |
+
msgstr "天數"
|
224 |
+
|
225 |
+
#: includes/delele-meta-form-functions.php:301
|
226 |
+
msgid "created between"
|
227 |
+
msgstr "建立日期介於"
|
228 |
+
|
229 |
+
#: includes/delele-meta-form-functions.php:300
|
230 |
+
msgid "created within last"
|
231 |
+
msgstr "建立於最近"
|
232 |
+
|
233 |
+
#: includes/delele-users-form-functions.php:157
|
234 |
+
#: includes/delele-meta-form-functions.php:299
|
235 |
+
#: includes/delele-comments-form-functions.php:137
|
236 |
+
#: includes/delele-posts-form-functions.php:301
|
237 |
+
msgid "older than"
|
238 |
+
msgstr "超過"
|
239 |
+
|
240 |
+
#: includes/delele-meta-form-functions.php:297
|
241 |
+
msgid "Delete meta for for posts/comments/users which are"
|
242 |
+
msgstr "刪除符合條件的文章/留言/使用者的中繼資料"
|
243 |
+
|
244 |
+
#: includes/class-delete-api.php:1174
|
245 |
+
msgid "Event Schema / Structured Data"
|
246 |
+
msgstr "活動模式 / 結構化資料"
|
247 |
+
|
248 |
+
#: includes/class-delete-api.php:1173
|
249 |
+
msgid "Import Meetup Events"
|
250 |
+
msgstr "從 Meetup 匯入活動"
|
251 |
+
|
252 |
+
#: includes/class-delete-api.php:1172
|
253 |
+
msgid "Import Eventbrite Events"
|
254 |
+
msgstr "從 Eventbrite 匯入活動"
|
255 |
+
|
256 |
+
#: includes/class-delete-api.php:1171
|
257 |
+
msgid "Import Facebook Events"
|
258 |
+
msgstr "從 Facebook 匯入活動"
|
259 |
+
|
260 |
+
#: includes/class-delete-api.php:1170
|
261 |
+
msgid "WP Event Aggregator"
|
262 |
+
msgstr "WP Event Aggregator"
|
263 |
+
|
264 |
+
#: includes/admin/support-page.php:106
|
265 |
+
msgid "Install Now"
|
266 |
+
msgstr "立即安裝"
|
267 |
+
|
268 |
+
#: includes/admin/support-page.php:102
|
269 |
+
msgid "Active Installs:"
|
270 |
+
msgstr "啟用安裝項目:"
|
271 |
+
|
272 |
+
#: includes/admin/support-page.php:98
|
273 |
+
msgid "WordPress "
|
274 |
+
msgstr "WordPress "
|
275 |
+
|
276 |
+
#: includes/admin/support-page.php:98
|
277 |
+
msgid "Requires:"
|
278 |
+
msgstr "必要:"
|
279 |
+
|
280 |
+
#: includes/admin/support-page.php:94
|
281 |
+
msgid "Version:"
|
282 |
+
msgstr "版本:"
|
283 |
+
|
284 |
+
#: includes/admin/support-page.php:75
|
285 |
+
msgid "Plugins you should try"
|
286 |
+
msgstr "您會想試試看的外掛"
|
287 |
+
|
288 |
+
#: includes/admin/support-page.php:59
|
289 |
+
msgid "Enjoying Import Facebook Events or have feedback?"
|
290 |
+
msgstr "喜歡 Import Facebook Events 或者有意見想反饋嗎?"
|
291 |
+
|
292 |
+
#: includes/admin/support-page.php:56
|
293 |
+
msgid "Contact us directly (Premium Support)"
|
294 |
+
msgstr "直接連絡我們 (付費專屬支援)"
|
295 |
+
|
296 |
+
#: includes/admin/support-page.php:52
|
297 |
+
msgid "We offer premium support on our website with the purchase of our premium plugins."
|
298 |
+
msgstr "購買我們付費版外掛套件的使用者可以在我們的網站獲得付費專屬支援."
|
299 |
+
|
300 |
+
#: includes/admin/support-page.php:51
|
301 |
+
msgid "Looking for more immediate support?"
|
302 |
+
msgstr "尋找更快的技術支援嗎?"
|
303 |
+
|
304 |
+
#: includes/admin/support-page.php:48
|
305 |
+
msgid "Open-source forum on WordPress.org"
|
306 |
+
msgstr "WordPress.org 開源論壇"
|
307 |
+
|
308 |
+
#: includes/admin/support-page.php:46
|
309 |
+
msgid "Looking for free support?"
|
310 |
+
msgstr "尋找免費的技術支援嗎?"
|
311 |
+
|
312 |
+
#: includes/admin/support-page.php:44
|
313 |
+
msgid "Our support team is always around to help you."
|
314 |
+
msgstr "我們的支援團隊隨時準備為您提供服務."
|
315 |
+
|
316 |
+
#: includes/admin/support-page.php:43
|
317 |
+
msgid "Thanks you for using Import Facebook Events, We are sincerely appreciate your support and we’re excited to see you using our plugins."
|
318 |
+
msgstr "感謝您使用 Import Facebook Events,我們衷心地感謝您的支持,很高興您使用我們的外掛."
|
319 |
+
|
320 |
+
#: includes/admin/support-page.php:42
|
321 |
+
msgid "Getting Support"
|
322 |
+
msgstr "取得技術支援"
|
323 |
+
|
324 |
+
#: includes/admin/support-page.php:31 includes/admin/admin-pages.php:38
|
325 |
+
msgid "Support & Help"
|
326 |
+
msgstr "支援與說明"
|
327 |
+
|
328 |
+
#: includes/admin/cleanup/cleanup-page.php:30
|
329 |
+
msgid "WARNING: Before you Cleanup any data please first take Backup, any delete operation done is irreversible. Please use it with caution!"
|
330 |
+
msgstr "警告:在您清除任何資料之前請先做好備份,任何刪除操作都是不可逆的,請小心使用!"
|
331 |
+
|
332 |
+
#: includes/delele-users-form-functions.php:224
|
333 |
+
msgid "Select user to whom you want to assign deleted user's data."
|
334 |
+
msgstr "選擇您想分派已刪除使用者的資料的使用者."
|
335 |
+
|
336 |
+
#: includes/delele-users-form-functions.php:214
|
337 |
+
#: includes/delele-users-form-functions.php:218
|
338 |
+
msgid "Select User"
|
339 |
+
msgstr "選擇使用者"
|
340 |
+
|
341 |
+
#: includes/delele-users-form-functions.php:209
|
342 |
+
msgid "Assign deleted user's data to"
|
343 |
+
msgstr "將已刪除的使用者資料分派給"
|
344 |
+
|
345 |
+
#: includes/delele-users-form-functions.php:192
|
346 |
+
msgid "Set the limit over user delete. It will delete only first limited users. This option will help you in case of you have lots of users to delete and script timeout."
|
347 |
+
msgstr "設定刪除使用者的數量上限,它將只會刪除前面幾個使用者。這個選項對於要刪除大量使用者但腳本逾時的狀況時很有幫助。"
|
348 |
+
|
349 |
+
#: includes/delele-users-form-functions.php:169
|
350 |
+
msgid "Set the reigration date interval for users to delete ( only delete users register between these dates ) or leave these fields blank to select all users. The dates must be specified in the following format: <strong>YYYY-MM-DD</strong>"
|
351 |
+
msgstr "設定要刪除使用者的註冊日期間隔(僅刪除這段日期之間註冊的使用者),或將這些欄位留空以選擇所有使用者。日期必須按以下格式: <strong>YYYY-MM-DD</strong>"
|
352 |
+
|
353 |
+
#: includes/delele-users-form-functions.php:152
|
354 |
+
msgid "User Registration Date :"
|
355 |
+
msgstr "使用者註冊日期 :"
|
356 |
+
|
357 |
+
#: includes/delele-users-form-functions.php:129
|
358 |
+
msgid "User Meta Key"
|
359 |
+
msgstr "使用者中繼資料金鑰"
|
360 |
+
|
361 |
+
#: includes/delele-users-form-functions.php:108
|
362 |
+
msgid "Select the user roles from which you want to delete users."
|
363 |
+
msgstr "選擇您想刪除使用者的使用者角色."
|
364 |
+
|
365 |
+
#: includes/delele-users-form-functions.php:58
|
366 |
+
msgid "%d User(s) deleted successfully."
|
367 |
+
msgstr "%d 個使用者已經成功刪除."
|
368 |
+
|
369 |
+
#: includes/delele-users-form-functions.php:35
|
370 |
+
msgid "Please select user role or add usermeta key and value."
|
371 |
+
msgstr "請選擇使用者角色或使用者中繼資料金鑰和數值."
|
372 |
+
|
373 |
+
#: includes/delele-terms-form-functions.php:52
|
374 |
+
msgid "%d Term(s) deleted successfully."
|
375 |
+
msgstr "%d 個分類詞彙已經成功刪除."
|
376 |
+
|
377 |
+
#: includes/delele-posts-form-functions.php:502
|
378 |
+
msgid "Auto Drafts (%d Auto Drafts)"
|
379 |
+
msgstr "自動草稿 (%d 個自動草稿)"
|
380 |
+
|
381 |
+
#: includes/delele-posts-form-functions.php:495
|
382 |
+
msgid "Trash (Deleted Posts) (%d Trash)"
|
383 |
+
msgstr "回收桶 (已刪除文章) (%d 個在回收桶)"
|
384 |
+
|
385 |
+
#: includes/delele-posts-form-functions.php:488
|
386 |
+
msgid "Revisions (%d Revisions)"
|
387 |
+
msgstr "修訂 (%d 個修訂)"
|
388 |
+
|
389 |
+
#: includes/delele-posts-form-functions.php:482
|
390 |
+
msgid "Cleanup Posts :"
|
391 |
+
msgstr "清除文章 :"
|
392 |
+
|
393 |
+
#: includes/delele-meta-form-functions.php:372
|
394 |
+
msgid "Select the post whose post meta fields you want to delete."
|
395 |
+
msgstr "選擇您想刪除中繼資料欄位的文章."
|
396 |
+
|
397 |
+
#: includes/delele-meta-form-functions.php:363
|
398 |
+
msgid "Post :"
|
399 |
+
msgstr "文章 :"
|
400 |
+
|
401 |
+
#: includes/delele-meta-form-functions.php:346
|
402 |
+
msgid "Select the user roles from which you want to delete user meta."
|
403 |
+
msgstr "選擇您想刪除使用者中繼資料的使用者角色."
|
404 |
+
|
405 |
+
#: includes/delele-users-form-functions.php:100
|
406 |
+
#: includes/delele-meta-form-functions.php:339
|
407 |
+
msgid "( %s Users )"
|
408 |
+
msgstr "( %s 個使用者 )"
|
409 |
+
|
410 |
+
#: includes/delele-users-form-functions.php:90
|
411 |
+
#: includes/delele-meta-form-functions.php:330
|
412 |
+
msgid "User roles"
|
413 |
+
msgstr "使用者角色"
|
414 |
+
|
415 |
+
#: includes/delele-meta-form-functions.php:311
|
416 |
+
msgid "Set the date interval for posts/comments/users whose meta fields will be delete, or leave these fields blank to select all meta. The dates must be specified in the following format: <strong>YYYY-MM-DD</strong>"
|
417 |
+
msgstr "設定要刪除中繼資料的文章/留言/使用者的日期間隔,或將這些欄位留空以選擇所有中繼資料。日期必須按以下格式: <strong>YYYY-MM-DD</strong>"
|
418 |
+
|
419 |
+
#: includes/delele-users-form-functions.php:167
|
420 |
+
#: includes/delele-meta-form-functions.php:309
|
421 |
+
#: includes/delele-comments-form-functions.php:147
|
422 |
+
#: includes/delele-posts-form-functions.php:311
|
423 |
+
msgid "End Date"
|
424 |
+
msgstr "結束日期"
|
425 |
+
|
426 |
+
#: includes/delele-users-form-functions.php:165
|
427 |
+
#: includes/delele-meta-form-functions.php:307
|
428 |
+
#: includes/delele-comments-form-functions.php:145
|
429 |
+
#: includes/delele-posts-form-functions.php:309
|
430 |
+
msgid "Start Date"
|
431 |
+
msgstr "開始日期"
|
432 |
+
|
433 |
+
#: includes/delele-meta-form-functions.php:276
|
434 |
+
msgid "2. If you want to delete meta by meta key and meta value then enter both values."
|
435 |
+
msgstr "2. 如果要依中繼資料金鑰與中繼資料數值來刪除中繼資料,請同時輸入這兩個數值."
|
436 |
+
|
437 |
+
#: includes/delele-meta-form-functions.php:275
|
438 |
+
msgid "1. If you want to delete meta by meta key only enter meta key."
|
439 |
+
msgstr "1. 如果要依中繼資料金鑰來刪除中繼資料,請只輸入中繼資料金鑰."
|
440 |
+
|
441 |
+
#: includes/delele-meta-form-functions.php:274
|
442 |
+
msgid "Enter the meta key for delete meta, please consider following points in to meta delete."
|
443 |
+
msgstr "輸入要刪除的中繼資料的中繼資料金鑰,刪除中繼資料時請注意以下幾點."
|
444 |
+
|
445 |
+
#: includes/delele-meta-form-functions.php:272
|
446 |
+
msgid "Meta value (Optional)"
|
447 |
+
msgstr "中繼資料數值 (選填)"
|
448 |
+
|
449 |
+
#: includes/delele-meta-form-functions.php:269
|
450 |
+
msgid "greater then and equal to ( number )"
|
451 |
+
msgstr "大於或等於 ( 數字 )"
|
452 |
+
|
453 |
+
#: includes/delele-meta-form-functions.php:268
|
454 |
+
msgid "greater then ( number )"
|
455 |
+
msgstr "大於(術)"
|
456 |
+
|
457 |
+
#: includes/delele-meta-form-functions.php:267
|
458 |
+
msgid "less then and equal to ( number )"
|
459 |
+
msgstr "小於或等於 ( 數字 )"
|
460 |
+
|
461 |
+
#: includes/delele-meta-form-functions.php:266
|
462 |
+
msgid "less then ( number )"
|
463 |
+
msgstr "小於 ( 數字 )"
|
464 |
+
|
465 |
+
#: includes/delele-meta-form-functions.php:265
|
466 |
+
msgid "not equal to ( number )"
|
467 |
+
msgstr "不等於 ( 數字 )"
|
468 |
+
|
469 |
+
#: includes/delele-meta-form-functions.php:264
|
470 |
+
msgid "equal to ( number )"
|
471 |
+
msgstr "等於 ( 數字 )"
|
472 |
+
|
473 |
+
#: includes/delele-meta-form-functions.php:263
|
474 |
+
msgid "greater then and equal to ( date )"
|
475 |
+
msgstr "多於或等於 ( 日期 )"
|
476 |
+
|
477 |
+
#: includes/delele-meta-form-functions.php:262
|
478 |
+
msgid "greater then ( date )"
|
479 |
+
msgstr "多於 ( 日期 )"
|
480 |
+
|
481 |
+
#: includes/delele-meta-form-functions.php:261
|
482 |
+
msgid "less then and equal to ( date )"
|
483 |
+
msgstr "少於或等於 ( 日期 )"
|
484 |
+
|
485 |
+
#: includes/delele-meta-form-functions.php:260
|
486 |
+
msgid "less then ( date )"
|
487 |
+
msgstr "少於 ( 日期)"
|
488 |
+
|
489 |
+
#: includes/delele-meta-form-functions.php:259
|
490 |
+
msgid "not equal to ( date )"
|
491 |
+
msgstr "不等於 ( 日期 )"
|
492 |
+
|
493 |
+
#: includes/delele-meta-form-functions.php:258
|
494 |
+
msgid "equal to ( date )"
|
495 |
+
msgstr "等於 ( 日期 )"
|
496 |
+
|
497 |
+
#: includes/delele-meta-form-functions.php:258
|
498 |
+
msgid "not like ( string )"
|
499 |
+
msgstr "不相似 ( 字串 )"
|
500 |
+
|
501 |
+
#: includes/delele-meta-form-functions.php:257
|
502 |
+
msgid "like ( string )"
|
503 |
+
msgstr "相似 ( 字串 )"
|
504 |
+
|
505 |
+
#: includes/delele-meta-form-functions.php:256
|
506 |
+
msgid "not equal to ( string )"
|
507 |
+
msgstr "不等於 ( 字串 )"
|
508 |
+
|
509 |
+
#: includes/delele-meta-form-functions.php:253
|
510 |
+
msgid "Meta key (Required)"
|
511 |
+
msgstr "中繼資料金鑰 (必填)"
|
512 |
+
|
513 |
+
#: includes/delele-meta-form-functions.php:252
|
514 |
+
msgid "Meta key"
|
515 |
+
msgstr "中繼資料金鑰"
|
516 |
+
|
517 |
+
#: includes/delele-meta-form-functions.php:249
|
518 |
+
msgid "Meta fields"
|
519 |
+
msgstr "中繼資料欄位"
|
520 |
+
|
521 |
+
#: includes/delele-meta-form-functions.php:231
|
522 |
+
msgid "Select the post type whose post meta fields you want to delete."
|
523 |
+
msgstr "選擇您想刪除文章中繼資料欄位的文章類型."
|
524 |
+
|
525 |
+
#: includes/delele-meta-form-functions.php:208
|
526 |
+
msgid "Post type:"
|
527 |
+
msgstr "文章類型:"
|
528 |
+
|
529 |
+
#: includes/delele-meta-form-functions.php:177
|
530 |
+
msgid "Duplicated Term Meta (%d Term Meta)"
|
531 |
+
msgstr "重複的分類術語中繼資料 (%d 個分類術語中繼資料)"
|
532 |
+
|
533 |
+
#: includes/delele-meta-form-functions.php:170
|
534 |
+
msgid "Orphaned Term Meta (%d Term Meta)"
|
535 |
+
msgstr "不再與任何項目關聯的詞彙中繼資料 (%d 個詞彙中繼資料)"
|
536 |
+
|
537 |
+
#: includes/delele-meta-form-functions.php:163
|
538 |
+
msgid "Duplicated User Meta (%d User Meta)"
|
539 |
+
msgstr "重複的使用者中繼資料 (%d 個使用者中繼資料)"
|
540 |
+
|
541 |
+
#: includes/delele-meta-form-functions.php:156
|
542 |
+
msgid "Orphaned User Meta (%d User Meta)"
|
543 |
+
msgstr "不再與任何項目關聯的使用者中繼資料 (%d 個使用者中繼資料)"
|
544 |
+
|
545 |
+
#: includes/delele-meta-form-functions.php:149
|
546 |
+
msgid "Duplicated Comment Meta (%d Comment Meta)"
|
547 |
+
msgstr "重複的留言中繼資料 (%d 個留言中繼資料)"
|
548 |
+
|
549 |
+
#: includes/delele-meta-form-functions.php:142
|
550 |
+
msgid "Orphaned Comment Meta (%d Comment Meta)"
|
551 |
+
msgstr "不再與任何項目關聯的留言中繼資料 (%d 個留言中繼資料)"
|
552 |
+
|
553 |
+
#: includes/delele-meta-form-functions.php:135
|
554 |
+
msgid "Duplicated Post Meta (%d Post Meta)"
|
555 |
+
msgstr "重複的文章中繼資料 (%d 個文章中繼資料)"
|
556 |
+
|
557 |
+
#: includes/delele-meta-form-functions.php:128
|
558 |
+
msgid "Orphaned Post Meta (%d Post Meta)"
|
559 |
+
msgstr "不再與任何項目關聯的文章中繼資料 (%d 個文章中繼資料)"
|
560 |
+
|
561 |
+
#: includes/delele-meta-form-functions.php:122
|
562 |
+
msgid "Cleanup Meta :"
|
563 |
+
msgstr "清除中繼資料 :"
|
564 |
+
|
565 |
+
#: includes/delele-meta-form-functions.php:82
|
566 |
+
msgid "%d Meta deleted successfully."
|
567 |
+
msgstr "%d 中繼資料已成功刪除."
|
568 |
+
|
569 |
+
#: includes/delele-comments-form-functions.php:239
|
570 |
+
msgid "Select comment post whose comment you want to delete."
|
571 |
+
msgstr "選擇哪個留言文章的留言您想要刪除."
|
572 |
+
|
573 |
+
#: includes/delele-meta-form-functions.php:368
|
574 |
+
#: includes/delele-comments-form-functions.php:219
|
575 |
+
#: includes/delele-comments-form-functions.php:228
|
576 |
+
msgid "Select post"
|
577 |
+
msgstr "選擇文章"
|
578 |
+
|
579 |
+
#: includes/delele-comments-form-functions.php:213
|
580 |
+
msgid "Comment Post"
|
581 |
+
msgstr "留言文章"
|
582 |
+
|
583 |
+
#: includes/delele-comments-form-functions.php:194
|
584 |
+
msgid "Select comment author whose comment you want to delete."
|
585 |
+
msgstr "選擇哪位留言者的留言您想要刪除."
|
586 |
+
|
587 |
+
#: includes/delele-comments-form-functions.php:174
|
588 |
+
#: includes/delele-comments-form-functions.php:183
|
589 |
+
msgid "Select author"
|
590 |
+
msgstr "選擇作者"
|
591 |
+
|
592 |
+
#: includes/delele-comments-form-functions.php:168
|
593 |
+
msgid "Comment Author"
|
594 |
+
msgstr "留言者"
|
595 |
+
|
596 |
+
#: includes/delele-comments-form-functions.php:149
|
597 |
+
msgid "Set the date interval for comments to delete ( only delete comments between these dates ) or leave these fields blank to select all comments. The dates must be specified in the following format: <strong>YYYY-MM-DD</strong>"
|
598 |
+
msgstr "設定刪除留言的日期間隔(僅刪除這段日期之間的評論),或將這些欄位留空以選擇所有留言。日期必須按以下格式: <strong>YYYY-MM-DD</strong>"
|
599 |
+
|
600 |
+
#: includes/delele-comments-form-functions.php:132
|
601 |
+
msgid "Comment Date :"
|
602 |
+
msgstr "留言日期 :"
|
603 |
+
|
604 |
+
#: includes/delele-comments-form-functions.php:114
|
605 |
+
msgid "Select the comment statuses which you want to delete."
|
606 |
+
msgstr "選擇您想刪除的留言狀態."
|
607 |
+
|
608 |
+
#: includes/delele-comments-form-functions.php:106
|
609 |
+
msgid "( %s Comment(s) )"
|
610 |
+
msgstr "( %s 個留言 )"
|
611 |
+
|
612 |
+
#: includes/delele-comments-form-functions.php:96
|
613 |
+
msgid "Comment Status"
|
614 |
+
msgstr "留言狀態"
|
615 |
+
|
616 |
+
#: includes/delele-comments-form-functions.php:90
|
617 |
+
msgid "Approved Comments"
|
618 |
+
msgstr "批准留言"
|
619 |
+
|
620 |
+
#: includes/delele-comments-form-functions.php:89
|
621 |
+
msgid "Trash Comments"
|
622 |
+
msgstr "回收桶中的留言"
|
623 |
+
|
624 |
+
#: includes/delele-comments-form-functions.php:88
|
625 |
+
msgid "Spam Comments"
|
626 |
+
msgstr "垃圾留言"
|
627 |
+
|
628 |
+
#: includes/delele-comments-form-functions.php:87
|
629 |
+
msgid "Pending Comments"
|
630 |
+
msgstr "待審核留言"
|
631 |
+
|
632 |
+
#: includes/delele-comments-form-functions.php:58
|
633 |
+
msgid "%d comment(s) deleted successfully."
|
634 |
+
msgstr "%d 個留言已成功刪除."
|
635 |
+
|
636 |
+
#: includes/common-functions.php:103 includes/admin/support-page.php:109
|
637 |
+
msgid "Buy Now"
|
638 |
+
msgstr "立即購買"
|
639 |
+
|
640 |
+
#: includes/common-functions.php:102
|
641 |
+
msgid "Available in Pro version."
|
642 |
+
msgstr "專業版即可使用."
|
643 |
+
|
644 |
+
#: includes/class-delete-api.php:400
|
645 |
+
msgid "%s Duplicated Term Meta Cleaned up"
|
646 |
+
msgstr "%s 個重複的詞彙中繼資料已清除"
|
647 |
+
|
648 |
+
#: includes/class-delete-api.php:388
|
649 |
+
msgid "%s Duplicated User Meta Cleaned up"
|
650 |
+
msgstr "%s 個重複的使用者中繼資料已清除"
|
651 |
+
|
652 |
+
#: includes/class-delete-api.php:376
|
653 |
+
msgid "%s Duplicated Comment Meta Cleaned up"
|
654 |
+
msgstr "%s 個重複的留言中繼資料已清除"
|
655 |
+
|
656 |
+
#: includes/class-delete-api.php:364
|
657 |
+
msgid "%s Duplicated Post Meta Cleaned up"
|
658 |
+
msgstr "%s 個重複的文章中繼資料已清除"
|
659 |
+
|
660 |
+
#: includes/class-delete-api.php:351
|
661 |
+
msgid "%s Orphaned Term Meta Cleaned up"
|
662 |
+
msgstr "%s 個不再與任何項目關聯的分類術語中繼資料已清除"
|
663 |
+
|
664 |
+
#: includes/class-delete-api.php:336
|
665 |
+
msgid "%s Orphaned User Meta Cleaned up"
|
666 |
+
msgstr "%s 個不再與任何項目關聯的使用者中繼資料已清除"
|
667 |
+
|
668 |
+
#: includes/class-delete-api.php:321
|
669 |
+
msgid "%s Orphaned Comment Meta Cleaned up"
|
670 |
+
msgstr "%s 個不再與任何項目關聯的留言中繼資料已清除"
|
671 |
+
|
672 |
+
#: includes/class-delete-api.php:306
|
673 |
+
msgid "%s Orphaned Post Meta Cleaned up"
|
674 |
+
msgstr "%s 個不再與任何項目關聯的文章中繼資料已清除"
|
675 |
+
|
676 |
+
#: includes/delele-terms-form-functions.php:32 includes/ajax-functions.php:341
|
677 |
+
msgid "Please select required fields for proceed delete operation."
|
678 |
+
msgstr "請選擇必要的欄位以進行刪除作業."
|
679 |
+
|
680 |
+
#: includes/ajax-functions.php:262 includes/ajax-functions.php:267
|
681 |
+
#: includes/ajax-functions.php:273
|
682 |
+
msgid "Please select all required fields."
|
683 |
+
msgstr "請選擇所有必要欄位."
|
684 |
+
|
685 |
+
#: includes/delele-comments-form-functions.php:51
|
686 |
+
#: includes/delele-terms-form-functions.php:45 includes/ajax-functions.php:209
|
687 |
+
#: includes/ajax-functions.php:354
|
688 |
+
msgid "Something went wrong pelase try again!!"
|
689 |
+
msgstr "出了點差錯,請稍後再試!!"
|
690 |
+
|
691 |
+
#: includes/delele-comments-form-functions.php:34
|
692 |
+
#: includes/ajax-functions.php:196
|
693 |
+
msgid "Please select Comment status for proceed delete operation."
|
694 |
+
msgstr "請選擇要進行刪除作業的留言狀態."
|
695 |
+
|
696 |
+
#: includes/admin/terms/display-delete-terms.php:33
|
697 |
+
msgid "Delete Taxonomy Terms"
|
698 |
+
msgstr "刪除分類法中的分類術語"
|
699 |
+
|
700 |
+
#: includes/admin/meta/display-delete-meta.php:56
|
701 |
+
msgid "Comment Meta"
|
702 |
+
msgstr "留言中繼資料"
|
703 |
+
|
704 |
+
#: includes/delele-users-form-functions.php:126
|
705 |
+
#: includes/admin/meta/display-delete-meta.php:53
|
706 |
+
msgid "User Meta"
|
707 |
+
msgstr "使用者中繼資料"
|
708 |
+
|
709 |
+
#: includes/admin/meta/display-delete-meta.php:50
|
710 |
+
msgid "Post Meta"
|
711 |
+
msgstr "文章中繼資料"
|
712 |
+
|
713 |
+
#: includes/admin/cleanup/cleanup-form.php:54
|
714 |
+
msgid "Nothing to cleanup!!"
|
715 |
+
msgstr "沒清除任何東西!!"
|
716 |
+
|
717 |
+
#: includes/admin/admin-sidebar.php:44
|
718 |
+
msgid "Get Premium"
|
719 |
+
msgstr "取得付費版"
|
720 |
+
|
721 |
+
#: includes/admin/admin-sidebar.php:42
|
722 |
+
msgid "Would you like to remove these ads?"
|
723 |
+
msgstr "您想移除掉這些廣告嗎?"
|
724 |
+
|
725 |
+
#: includes/admin/admin-sidebar.php:36
|
726 |
+
msgid "Hire Us"
|
727 |
+
msgstr "僱用我們"
|
728 |
+
|
729 |
+
#: includes/admin/admin-sidebar.php:34
|
730 |
+
msgid "From small blog to complex web apps, we push the limits of what's possible with WordPress."
|
731 |
+
msgstr "從小型部落格到龐大網頁應用程式,我們都在不斷拓展 WordPress 的可能性的極限."
|
732 |
+
|
733 |
+
#: includes/admin/admin-sidebar.php:33
|
734 |
+
msgid "Custom WordPress Development Services"
|
735 |
+
msgstr "客製化 WordPress 開發服務"
|
736 |
+
|
737 |
+
#: includes/admin/admin-sidebar.php:26
|
738 |
+
msgid "Unlock more power to bulk delete operation, Upgrade today!!"
|
739 |
+
msgstr "今天就來升級,解鎖更多批量刪除操作功能!!"
|
740 |
+
|
741 |
+
#: includes/admin/admin-sidebar.php:25 includes/admin/admin-sidebar.php:28
|
742 |
+
msgid "Upgrade to Pro"
|
743 |
+
msgstr "升級為專業版"
|
744 |
+
|
745 |
+
#: includes/admin/terms/display-delete-terms.php:57
|
746 |
+
#: includes/admin/admin-pages.php:34
|
747 |
+
msgid "Delete Terms"
|
748 |
+
msgstr "刪除分類術語"
|
749 |
+
|
750 |
+
#: includes/admin/admin-pages.php:32
|
751 |
+
msgid "Delete Meta Fields"
|
752 |
+
msgstr "刪除中繼資料欄位"
|
753 |
+
|
754 |
+
#. Author URI of the plugin
|
755 |
+
msgid "http://xylusthemes.com"
|
756 |
+
msgstr "http://xylusthemes.com"
|
757 |
+
|
758 |
+
#. Author of the plugin
|
759 |
+
msgid "Xylus Themes"
|
760 |
+
msgstr "Xylus 主題"
|
761 |
+
|
762 |
+
#. Description of the plugin
|
763 |
+
msgid "Bulk delete and cleanup anything like posts, comments, users, meta fields, taxonomy terms. with powerful filter options."
|
764 |
+
msgstr "可批量刪除和清理如文章、留言、使用者、中繼資料欄位和分類法術語,以及強大的篩選選項."
|
765 |
+
|
766 |
+
#. Plugin URI of the plugin
|
767 |
+
msgid "http://xylusthemes.com/plugins/wp-bulk-delete/"
|
768 |
+
msgstr "http://xylusthemes.com/plugins/wp-bulk-delete/"
|
769 |
+
|
770 |
+
#: wp-bulk-delete.php:74 wp-bulk-delete.php:81
|
771 |
+
msgid "Cheatin’ huh?"
|
772 |
+
msgstr "哦,有問題喔?"
|
773 |
+
|
774 |
+
#: includes/delele-posts-form-functions.php:591
|
775 |
+
msgid "Filter your posts :"
|
776 |
+
msgstr "篩選您的文章 :"
|
777 |
+
|
778 |
+
#: includes/delele-users-form-functions.php:134
|
779 |
+
#: includes/delele-meta-form-functions.php:271
|
780 |
+
#: includes/delele-posts-form-functions.php:463
|
781 |
+
msgid "Value"
|
782 |
+
msgstr "數值"
|
783 |
+
|
784 |
+
#: includes/delele-users-form-functions.php:132
|
785 |
+
#: includes/delele-meta-form-functions.php:255
|
786 |
+
#: includes/delele-posts-form-functions.php:461
|
787 |
+
msgid "equal to ( string )"
|
788 |
+
msgstr "等於 ( 字串 )"
|
789 |
+
|
790 |
+
#: includes/delele-posts-form-functions.php:458
|
791 |
+
msgid "Custom Fields Key"
|
792 |
+
msgstr "自訂欄位金鑰"
|
793 |
+
|
794 |
+
#: includes/delele-posts-form-functions.php:455
|
795 |
+
msgid "Custom fields settings :"
|
796 |
+
msgstr "自訂欄位設定 :"
|
797 |
+
|
798 |
+
#: includes/delele-posts-form-functions.php:438
|
799 |
+
msgid "Set the limit over post delete. It will delete only first limit posts. This option will help you in case of you have lots of posts to delete and script timeout."
|
800 |
+
msgstr "設定刪除文章的數量上限,它將只會刪除前面幾個文章。這個選項對於要刪除大量文章但腳本逾時的狀況時很有幫助。"
|
801 |
+
|
802 |
+
#: includes/delele-users-form-functions.php:187
|
803 |
+
#: includes/delele-posts-form-functions.php:433
|
804 |
+
msgid "Limit :"
|
805 |
+
msgstr "限制 :"
|
806 |
+
|
807 |
+
#: includes/delele-posts-form-functions.php:394
|
808 |
+
msgid "Authors :"
|
809 |
+
msgstr "作者 :"
|
810 |
+
|
811 |
+
#: includes/delele-posts-form-functions.php:378
|
812 |
+
msgid "Delete permanently"
|
813 |
+
msgstr "永久刪除"
|
814 |
+
|
815 |
+
#: includes/delele-posts-form-functions.php:376
|
816 |
+
msgid "Move to Trash"
|
817 |
+
msgstr "移動到回收桶"
|
818 |
+
|
819 |
+
#: includes/delele-posts-form-functions.php:372
|
820 |
+
msgid "Post Delete Type :"
|
821 |
+
msgstr "文章刪除類型 :"
|
822 |
+
|
823 |
+
#: includes/delele-posts-form-functions.php:346
|
824 |
+
msgid "If Post Content Contains :"
|
825 |
+
msgstr "如果文章內容包含 :"
|
826 |
+
|
827 |
+
#: includes/delele-posts-form-functions.php:338
|
828 |
+
#: includes/delele-posts-form-functions.php:353
|
829 |
+
msgid "Don't delete It."
|
830 |
+
msgstr "請勿刪除它."
|
831 |
+
|
832 |
+
#: includes/delele-posts-form-functions.php:337
|
833 |
+
#: includes/delele-posts-form-functions.php:352
|
834 |
+
msgid "Delete It."
|
835 |
+
msgstr "刪除它."
|
836 |
+
|
837 |
+
#: includes/delele-posts-form-functions.php:335
|
838 |
+
#: includes/delele-posts-form-functions.php:350
|
839 |
+
msgid "Then"
|
840 |
+
msgstr "然後"
|
841 |
+
|
842 |
+
#: includes/delele-posts-form-functions.php:331
|
843 |
+
msgid "If Post Title Contains :"
|
844 |
+
msgstr "如果文章標題包含 :"
|
845 |
+
|
846 |
+
#: includes/delele-posts-form-functions.php:313
|
847 |
+
msgid "Set the date interval for items to delete, or leave these fields blank to select all posts. The dates must be specified in the following format: <strong>YYYY-MM-DD</strong>"
|
848 |
+
msgstr "設定刪除項目的日期間隔,或將這些欄位留空以選擇所有文章。日期必須按以下格式: <strong>YYYY-MM-DD</strong>"
|
849 |
+
|
850 |
+
#: includes/delele-meta-form-functions.php:294
|
851 |
+
msgid "Date interval :"
|
852 |
+
msgstr "日期間隔 :"
|
853 |
+
|
854 |
+
#: includes/delele-posts-form-functions.php:215
|
855 |
+
#: includes/delele-terms-form-functions.php:79
|
856 |
+
msgid "Post Taxonomy :"
|
857 |
+
msgstr "文章分類法 :"
|
858 |
+
|
859 |
+
#: includes/delele-meta-form-functions.php:226
|
860 |
+
#: includes/delele-posts-form-functions.php:148
|
861 |
+
#: includes/delele-posts-form-functions.php:196
|
862 |
+
msgid "No post types are there, WP Bulk Delete will not work."
|
863 |
+
msgstr "沒有文章類型,WP Bulk Delete 就無能為力."
|
864 |
+
|
865 |
+
#: includes/delele-meta-form-functions.php:219
|
866 |
+
#: includes/delele-posts-form-functions.php:137
|
867 |
+
#: includes/delele-posts-form-functions.php:189
|
868 |
+
#: includes/delele-posts-form-functions.php:408
|
869 |
+
msgid "%s"
|
870 |
+
msgstr "%s"
|
871 |
+
|
872 |
+
#: includes/delele-posts-form-functions.php:127
|
873 |
+
#: includes/delele-posts-form-functions.php:178
|
874 |
+
msgid "Post type of items to delete :"
|
875 |
+
msgstr "刪除項目的文章類型 :"
|
876 |
+
|
877 |
+
#: includes/delele-posts-form-functions.php:84
|
878 |
+
msgid "%d Record deleted successfully."
|
879 |
+
msgstr "%d 個記錄已成功刪除."
|
880 |
+
|
881 |
+
#: includes/class-delete-api.php:290
|
882 |
+
msgid "%s Trashed Posts Cleaned up"
|
883 |
+
msgstr "%s 個回收桶中的文章已清除"
|
884 |
+
|
885 |
+
#: includes/class-delete-api.php:280
|
886 |
+
msgid "%s Auto Drafts Cleaned up"
|
887 |
+
msgstr "%s 自動草稿已經清除"
|
888 |
+
|
889 |
+
#: includes/class-delete-api.php:270
|
890 |
+
msgid "%s Revisions Cleaned up"
|
891 |
+
msgstr "%s 個修訂已清除"
|
892 |
+
|
893 |
+
#: includes/delele-users-form-functions.php:63
|
894 |
+
#: includes/delele-meta-form-functions.php:87
|
895 |
+
#: includes/delele-comments-form-functions.php:63
|
896 |
+
#: includes/delele-posts-form-functions.php:89
|
897 |
+
#: includes/delele-terms-form-functions.php:57 includes/ajax-functions.php:45
|
898 |
+
#: includes/ajax-functions.php:156 includes/ajax-functions.php:221
|
899 |
+
#: includes/ajax-functions.php:300 includes/ajax-functions.php:366
|
900 |
+
msgid "Nothing to delete!!"
|
901 |
+
msgstr "沒刪除任何東西!!"
|
902 |
+
|
903 |
+
#: includes/admin/users/display-delete-users.php:37
|
904 |
+
msgid "WARNING: Before you delete any users please first take Backup, any delete operation done is irreversible. Please use it with caution!"
|
905 |
+
msgstr "警告:在您清除任何使用者之前請先做好備份,任何刪除操作都是不可逆的,請小心使用!"
|
906 |
+
|
907 |
+
#: includes/admin/terms/display-delete-terms.php:38
|
908 |
+
msgid "WARNING: Before you delete any terms please first take Backup, any delete operation done is irreversible. Please use it with caution!"
|
909 |
+
msgstr "警告:在您清除任何分類術語之前請先做好備份,任何刪除操作都是不可逆的,請小心使用!"
|
910 |
+
|
911 |
+
#: includes/admin/cleanup/cleanup-form.php:95
|
912 |
+
msgid "Run Cleanup"
|
913 |
+
msgstr "執行清除"
|
914 |
+
|
915 |
+
#: includes/delele-users-form-functions.php:75
|
916 |
+
#: includes/admin/cleanup/cleanup-form.php:38
|
917 |
+
#: includes/delele-meta-form-functions.php:99
|
918 |
+
#: includes/delele-comments-form-functions.php:75
|
919 |
+
#: includes/delele-posts-form-functions.php:101
|
920 |
+
#: includes/delele-terms-form-functions.php:36 includes/ajax-functions.php:57
|
921 |
+
#: includes/ajax-functions.php:168 includes/ajax-functions.php:233
|
922 |
+
#: includes/ajax-functions.php:312 includes/ajax-functions.php:378
|
923 |
+
msgid "Sorry, Your nonce did not verify."
|
924 |
+
msgstr "抱歉,您的一次性驗證碼未通過."
|
925 |
+
|
926 |
+
#: includes/delele-users-form-functions.php:32
|
927 |
+
#: includes/admin/cleanup/cleanup-form.php:27
|
928 |
+
#: includes/delele-meta-form-functions.php:43
|
929 |
+
#: includes/delele-comments-form-functions.php:31
|
930 |
+
#: includes/delele-posts-form-functions.php:60
|
931 |
+
#: includes/delele-terms-form-functions.php:29 includes/ajax-functions.php:27
|
932 |
+
#: includes/ajax-functions.php:139 includes/ajax-functions.php:192
|
933 |
+
#: includes/ajax-functions.php:258 includes/ajax-functions.php:337
|
934 |
+
msgid "You don't have enough permission for this operation."
|
935 |
+
msgstr "您沒有足夠的權限進行此操作."
|
936 |
+
|
937 |
+
#: includes/admin/posts/display-delete-posts.php:66
|
938 |
+
msgid "General (By All)"
|
939 |
+
msgstr "一般 (適用全部)"
|
940 |
+
|
941 |
+
#: includes/admin/posts/display-delete-posts.php:63
|
942 |
+
msgid "By Custom fields"
|
943 |
+
msgstr "依照自訂欄位"
|
944 |
+
|
945 |
+
#: includes/admin/posts/display-delete-posts.php:60
|
946 |
+
msgid "By Title or Content"
|
947 |
+
msgstr "依照標題或內容"
|
948 |
+
|
949 |
+
#: includes/admin/posts/display-delete-posts.php:57
|
950 |
+
msgid "By Author"
|
951 |
+
msgstr "依照作者"
|
952 |
+
|
953 |
+
#: includes/admin/posts/display-delete-posts.php:54
|
954 |
+
msgid "By Taxonomy"
|
955 |
+
msgstr "依照分類法"
|
956 |
+
|
957 |
+
#: includes/admin/posts/display-delete-posts.php:51
|
958 |
+
msgid "By Posttype"
|
959 |
+
msgstr "依照文章類型"
|
960 |
+
|
961 |
+
#: includes/admin/posts/display-delete-posts.php:48
|
962 |
+
#: includes/admin/cleanup/cleanup-page.php:25
|
963 |
+
#: includes/admin/meta/display-delete-meta.php:47
|
964 |
+
#: includes/admin/admin-pages.php:36
|
965 |
+
msgid "Cleanup"
|
966 |
+
msgstr "清除"
|
967 |
+
|
968 |
+
#: includes/admin/posts/display-delete-posts.php:35
|
969 |
+
msgid "WARNING: Before you delete any post please first take Backup, any delete operation done is irreversible. Please use it with caution!"
|
970 |
+
msgstr "警告:在您清除任何文章之前請先做好備份,任何刪除操作都是不可逆的,請小心使用!"
|
971 |
+
|
972 |
+
#: includes/admin/meta/display-delete-meta.php:35
|
973 |
+
msgid "WARNING: Before you delete any meta please first take Backup, any delete operation done is irreversible. Please use it with caution!"
|
974 |
+
msgstr "警告:在您清除任何中繼資料之前請先做好備份,任何刪除操作都是不可逆的,請小心使用!"
|
975 |
+
|
976 |
+
#: includes/admin/comments/display-delete-comments.php:39
|
977 |
+
msgid "WARNING: Before you delete any comment please first take Backup, any delete operation done is irreversible. Please use it with caution!"
|
978 |
+
msgstr "警告:在您清除任何留言之前請先做好備份,任何刪除操作都是不可逆的,請小心使用!"
|
979 |
+
|
980 |
+
#: includes/admin/meta/display-delete-meta.php:26
|
981 |
+
msgid "Delete Meta"
|
982 |
+
msgstr "刪除中繼資料"
|
983 |
+
|
984 |
+
#: includes/admin/users/display-delete-users.php:32
|
985 |
+
#: includes/admin/users/display-delete-users.php:58
|
986 |
+
#: includes/admin/admin-pages.php:30
|
987 |
+
msgid "Delete Users"
|
988 |
+
msgstr "刪除使用者"
|
989 |
+
|
990 |
+
#: includes/admin/comments/display-delete-comments.php:34
|
991 |
+
#: includes/admin/comments/display-delete-comments.php:62
|
992 |
+
#: includes/admin/admin-pages.php:28
|
993 |
+
msgid "Delete Comments"
|
994 |
+
msgstr "刪除留言"
|
995 |
+
|
996 |
+
#: includes/admin/posts/display-delete-posts.php:26
|
997 |
+
#: includes/admin/admin-pages.php:26
|
998 |
+
msgid "Delete Posts"
|
999 |
+
msgstr "刪除文章"
|
1000 |
+
|
1001 |
+
#. Plugin Name of the plugin
|
1002 |
+
#: includes/admin/admin-pages.php:23
|
1003 |
+
#: includes/class-wpbd-plugin-deactivation.php:38
|
1004 |
+
msgid "WP Bulk Delete"
|
1005 |
+
msgstr "WP Bulk Delete"
|
languages/wp-bulk-delete.pot
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP Bulk Delete 1.2.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bulk-delete\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date:
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
-
"X-Generator: WP-CLI 2.
|
15 |
"X-Domain: wp-bulk-delete\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
@@ -74,6 +74,7 @@ msgstr ""
|
|
74 |
msgid "Support & Help"
|
75 |
msgstr ""
|
76 |
|
|
|
77 |
#: includes/admin/admin-sidebar.php:25
|
78 |
#: includes/admin/admin-sidebar.php:28
|
79 |
msgid "Upgrade to Pro"
|
@@ -321,67 +322,67 @@ msgstr ""
|
|
321 |
msgid "Please select required fields for proceed delete operation."
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: includes/class-delete-api.php:
|
325 |
msgid "%s Revisions Cleaned up"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: includes/class-delete-api.php:
|
329 |
msgid "%s Auto Drafts Cleaned up"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: includes/class-delete-api.php:
|
333 |
msgid "%s Trashed Posts Cleaned up"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: includes/class-delete-api.php:
|
337 |
msgid "%s Orphaned Post Meta Cleaned up"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: includes/class-delete-api.php:
|
341 |
msgid "%s Orphaned Comment Meta Cleaned up"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: includes/class-delete-api.php:
|
345 |
msgid "%s Orphaned User Meta Cleaned up"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: includes/class-delete-api.php:
|
349 |
msgid "%s Orphaned Term Meta Cleaned up"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: includes/class-delete-api.php:
|
353 |
msgid "%s Duplicated Post Meta Cleaned up"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: includes/class-delete-api.php:
|
357 |
msgid "%s Duplicated Comment Meta Cleaned up"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: includes/class-delete-api.php:
|
361 |
msgid "%s Duplicated User Meta Cleaned up"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/class-delete-api.php:
|
365 |
msgid "%s Duplicated Term Meta Cleaned up"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: includes/class-delete-api.php:
|
369 |
msgid "WP Event Aggregator"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: includes/class-delete-api.php:
|
373 |
msgid "Import Facebook Events"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: includes/class-delete-api.php:
|
377 |
msgid "Import Eventbrite Events"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: includes/class-delete-api.php:
|
381 |
msgid "Import Meetup Events"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: includes/class-delete-api.php:
|
385 |
msgid "Event Schema / Structured Data"
|
386 |
msgstr ""
|
387 |
|
1 |
+
# Copyright (C) 2022 Xylus Themes
|
2 |
+
# This file is distributed under the GPL-2.0+.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP Bulk Delete 1.2.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bulk-delete\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-11-11T11:07:19+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
+
"X-Generator: WP-CLI 2.7.1\n"
|
15 |
"X-Domain: wp-bulk-delete\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
74 |
msgid "Support & Help"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: includes/admin/admin-pages.php:40
|
78 |
#: includes/admin/admin-sidebar.php:25
|
79 |
#: includes/admin/admin-sidebar.php:28
|
80 |
msgid "Upgrade to Pro"
|
322 |
msgid "Please select required fields for proceed delete operation."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/class-delete-api.php:274
|
326 |
msgid "%s Revisions Cleaned up"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/class-delete-api.php:284
|
330 |
msgid "%s Auto Drafts Cleaned up"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/class-delete-api.php:294
|
334 |
msgid "%s Trashed Posts Cleaned up"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: includes/class-delete-api.php:310
|
338 |
msgid "%s Orphaned Post Meta Cleaned up"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/class-delete-api.php:325
|
342 |
msgid "%s Orphaned Comment Meta Cleaned up"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: includes/class-delete-api.php:340
|
346 |
msgid "%s Orphaned User Meta Cleaned up"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/class-delete-api.php:355
|
350 |
msgid "%s Orphaned Term Meta Cleaned up"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/class-delete-api.php:368
|
354 |
msgid "%s Duplicated Post Meta Cleaned up"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: includes/class-delete-api.php:380
|
358 |
msgid "%s Duplicated Comment Meta Cleaned up"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: includes/class-delete-api.php:392
|
362 |
msgid "%s Duplicated User Meta Cleaned up"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: includes/class-delete-api.php:404
|
366 |
msgid "%s Duplicated Term Meta Cleaned up"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: includes/class-delete-api.php:1174
|
370 |
msgid "WP Event Aggregator"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: includes/class-delete-api.php:1175
|
374 |
msgid "Import Facebook Events"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: includes/class-delete-api.php:1176
|
378 |
msgid "Import Eventbrite Events"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: includes/class-delete-api.php:1177
|
382 |
msgid "Import Meetup Events"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/class-delete-api.php:1178
|
386 |
msgid "Event Schema / Structured Data"
|
387 |
msgstr ""
|
388 |
|
wp-bulk-delete.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WP Bulk Delete
|
4 |
* Plugin URI: http://xylusthemes.com/plugins/wp-bulk-delete/
|
5 |
* Description: Bulk delete and cleanup anything like posts, comments, users, meta fields, taxonomy terms. with powerful filter options.
|
6 |
-
* Version: 1.2.
|
7 |
* Author: Xylus Themes
|
8 |
* Author URI: http://xylusthemes.com
|
9 |
* License: GPL-2.0+
|
@@ -71,14 +71,14 @@ class WP_Bulk_Delete{
|
|
71 |
*
|
72 |
* @since 1.0.0
|
73 |
*/
|
74 |
-
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.2.
|
75 |
|
76 |
/**
|
77 |
* A dummy magic method to prevent WP_Bulk_Delete from being unserialized.
|
78 |
*
|
79 |
* @since 1.0.0
|
80 |
*/
|
81 |
-
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.2.
|
82 |
|
83 |
|
84 |
/**
|
@@ -92,7 +92,7 @@ class WP_Bulk_Delete{
|
|
92 |
|
93 |
// Plugin version.
|
94 |
if( ! defined( 'WPBD_VERSION' ) ){
|
95 |
-
define( 'WPBD_VERSION', '1.2.
|
96 |
}
|
97 |
|
98 |
// Plugin folder Path.
|
3 |
* Plugin Name: WP Bulk Delete
|
4 |
* Plugin URI: http://xylusthemes.com/plugins/wp-bulk-delete/
|
5 |
* Description: Bulk delete and cleanup anything like posts, comments, users, meta fields, taxonomy terms. with powerful filter options.
|
6 |
+
* Version: 1.2.3
|
7 |
* Author: Xylus Themes
|
8 |
* Author URI: http://xylusthemes.com
|
9 |
* License: GPL-2.0+
|
71 |
*
|
72 |
* @since 1.0.0
|
73 |
*/
|
74 |
+
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.2.3' ); }
|
75 |
|
76 |
/**
|
77 |
* A dummy magic method to prevent WP_Bulk_Delete from being unserialized.
|
78 |
*
|
79 |
* @since 1.0.0
|
80 |
*/
|
81 |
+
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.2.3' ); }
|
82 |
|
83 |
|
84 |
/**
|
92 |
|
93 |
// Plugin version.
|
94 |
if( ! defined( 'WPBD_VERSION' ) ){
|
95 |
+
define( 'WPBD_VERSION', '1.2.3' );
|
96 |
}
|
97 |
|
98 |
// Plugin folder Path.
|