Migration, Backup, Staging – WPvivid - Version 0.9.42

Version Description

  • Added Bulgarian language translation.
  • Fixed a fatal error occurred during website transfer in some cases.
  • Fixed some bugs in the plugin code.
  • Optimized the plugin code.
Download this release

Release Info

Developer wpvivid
Plugin Icon 128x128 Migration, Backup, Staging – WPvivid
Version 0.9.42
Comparing to
See all releases

Code changes from version 0.9.41 to 0.9.42

admin/css/wpvivid-admin.css CHANGED
@@ -236,8 +236,8 @@
236
  .wpvivid-element-space-bottom{margin-bottom: 10px;}
237
  .wpvivid-element-space-right{margin-right: 10px;}
238
  .wpvivid-export-type-provider{float: left; cursor: pointer; padding: 10px; height: 30px; line-height: 30px; border-right: 1px solid #e5e5e5;}
239
- .wpvivid-export-type-provider:hover{background-color:#f1f1f1 !important; color:#fff !important;}
240
- .wpvivid-export-type-provider-active{background-color:#0085ba !important; color:#fff !important;}
241
  .wpvivid-import-log{padding:10px; width:100%; height:500px; overflow:auto; box-sizing:border-box;}
242
  .import > tbody > :nth-child(odd) {background-color: #ffffff;}
243
  .import > tbody tr:hover {background-color: #f9f9f9;}
236
  .wpvivid-element-space-bottom{margin-bottom: 10px;}
237
  .wpvivid-element-space-right{margin-right: 10px;}
238
  .wpvivid-export-type-provider{float: left; cursor: pointer; padding: 10px; height: 30px; line-height: 30px; border-right: 1px solid #e5e5e5;}
239
+ .wpvivid-export-type-provider:hover{background-color:#f1f1f1 !important;}
240
+ .wpvivid-export-type-provider-active{background-color:#0085ba !important;}
241
  .wpvivid-import-log{padding:10px; width:100%; height:500px; overflow:auto; box-sizing:border-box;}
242
  .import > tbody > :nth-child(odd) {background-color: #ffffff;}
243
  .import > tbody tr:hover {background-color: #f9f9f9;}
includes/class-wpvivid-export-import.php CHANGED
@@ -616,6 +616,7 @@ class WPvivid_Export_Import
616
  global $wpdb;
617
  $post_type = sanitize_text_field($_POST['post_type']);
618
  $descript_type = $post_type === 'post' ? 'posts' : 'pages';
 
619
 
620
  ob_start();
621
  ?>
@@ -766,7 +767,7 @@ class WPvivid_Export_Import
766
  <tr>
767
  <td class="plugin-title column-primary">
768
  <div class="wpvivid-storage-form">
769
- <input class="button-primary" id="wpvivid-post-query-submit" type="submit" name="<?php echo $post_type; ?>" value="<?php esc_attr_e('Search', 'wpvivid'); ?>" />
770
  </div>
771
  </td>
772
  <td class="column-description desc">
616
  global $wpdb;
617
  $post_type = sanitize_text_field($_POST['post_type']);
618
  $descript_type = $post_type === 'post' ? 'posts' : 'pages';
619
+ $btn_text = $post_type === 'post' ? 'Show Posts' : 'Show Pages';
620
 
621
  ob_start();
622
  ?>
767
  <tr>
768
  <td class="plugin-title column-primary">
769
  <div class="wpvivid-storage-form">
770
+ <input class="button-primary" id="wpvivid-post-query-submit" type="submit" name="<?php echo $post_type; ?>" value="<?php echo $btn_text; ?>" />
771
  </div>
772
  </td>
773
  <td class="column-description desc">
includes/class-wpvivid-restore-database.php CHANGED
@@ -173,22 +173,58 @@ class WPvivid_RestoreDB
173
  $this->default_collates[]=DB_COLLATE;
174
  }
175
 
176
- $this->old_prefix='';
177
- $this->new_prefix=$wpdb->base_prefix;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
 
179
- $this->old_site_url='';
180
- $this->old_home_url='';
181
- $this->old_content_url='';
182
- $this->old_upload_url='';
183
 
184
- $this->new_site_url= untrailingslashit(site_url());
185
 
186
- $this->new_home_url=untrailingslashit(home_url());
187
 
188
- $this->new_content_url=untrailingslashit(content_url());
 
 
189
 
190
- $upload_dir = wp_upload_dir();
191
- $this->new_upload_url=untrailingslashit($upload_dir['baseurl']);
192
 
193
  $wpdb->query('SET FOREIGN_KEY_CHECKS=0;');
194
 
@@ -237,28 +273,45 @@ class WPvivid_RestoreDB
237
  $matcher = array();
238
  if(empty($this -> site_url) && preg_match('# site_url: (.*?) #',$line,$matcher))
239
  {
240
- $this->old_site_url = $matcher[1];
241
- $wpvivid_plugin->restore_data->write_log('old site url:'.$this->old_site_url,'notice');
 
 
 
 
242
  }
243
  if(empty($this -> home_url) && preg_match('# home_url: (.*?) #',$line,$matcher))
244
  {
245
- $this->old_home_url = $matcher[1];
246
- $wpvivid_plugin->restore_data->write_log('old home url:'.$this->old_home_url,'notice');
 
 
 
247
  }
248
  if(empty($this -> content_url) && preg_match('# content_url: (.*?) #',$line,$matcher))
249
  {
250
- $this->old_content_url = $matcher[1];
251
- $wpvivid_plugin->restore_data->write_log('old content url:'.$this->old_content_url,'notice');
 
 
 
252
  }
253
  if(empty($this -> upload_url) && preg_match('# upload_url: (.*?) #',$line,$matcher))
254
  {
255
- $this->old_upload_url = $matcher[1];
256
- $wpvivid_plugin->restore_data->write_log('old upload url:'.$this->old_upload_url,'notice');
 
 
 
 
257
  }
258
  if(empty($this -> table_prefix) && preg_match('# table_prefix: (.*?) #',$line,$matcher))
259
  {
260
- $this->old_prefix = $matcher[1];
261
- $wpvivid_plugin->restore_data->write_log('old site prefix:'.$this->old_prefix,'notice');
 
 
 
262
  }
263
  }
264
  continue;
173
  $this->default_collates[]=DB_COLLATE;
174
  }
175
 
176
+ if($this->is_mu&&isset($option['site_id']))
177
+ {
178
+ $this->old_prefix=$option['blog_prefix'];
179
+
180
+ $wpvivid_plugin->restore_data->write_log('old site prefix:'.$this->old_prefix,'notice');
181
+ $this->old_site_url=$option['site_url'];
182
+ $wpvivid_plugin->restore_data->write_log('old site url:'.$this->old_site_url,'notice');
183
+ $this->old_home_url=$option['home_url'];
184
+ $wpvivid_plugin->restore_data->write_log('old home url:'.$this->old_home_url,'notice');
185
+ $this->old_content_url='';
186
+ $this->old_upload_url='';
187
+
188
+ if($option['overwrite'])
189
+ {
190
+ $this->new_prefix=$wpdb->get_blog_prefix($option['overwrite_site']);
191
+ $this->new_site_url= untrailingslashit(get_site_url($option['overwrite_site']));
192
+ $this->new_home_url=untrailingslashit(get_home_url($option['overwrite_site']));
193
+ $this->new_content_url=untrailingslashit(content_url());
194
+ $upload_dir = wp_upload_dir();
195
+ $this->new_upload_url=untrailingslashit($upload_dir['baseurl']);
196
+ }
197
+ else
198
+ {
199
+ $this->new_prefix=$wpdb->get_blog_prefix($option['site_id']);
200
+ $this->new_site_url= untrailingslashit(get_site_url($option['site_id']));
201
+ $this->new_home_url=untrailingslashit(get_home_url($option['site_id']));
202
+ $this->new_content_url=untrailingslashit(content_url());
203
+ $upload_dir = wp_upload_dir();
204
+ $this->new_upload_url=untrailingslashit($upload_dir['baseurl']);
205
+ }
206
+
207
+ }
208
+ else
209
+ {
210
+ $this->old_prefix='';
211
+ $this->new_prefix=$wpdb->base_prefix;
212
+
213
+ $this->old_site_url='';
214
+ $this->old_home_url='';
215
+ $this->old_content_url='';
216
+ $this->old_upload_url='';
217
 
218
+ $this->new_site_url= untrailingslashit(site_url());
 
 
 
219
 
220
+ $this->new_home_url=untrailingslashit(home_url());
221
 
222
+ $this->new_content_url=untrailingslashit(content_url());
223
 
224
+ $upload_dir = wp_upload_dir();
225
+ $this->new_upload_url=untrailingslashit($upload_dir['baseurl']);
226
+ }
227
 
 
 
228
 
229
  $wpdb->query('SET FOREIGN_KEY_CHECKS=0;');
230
 
273
  $matcher = array();
274
  if(empty($this -> site_url) && preg_match('# site_url: (.*?) #',$line,$matcher))
275
  {
276
+ if(empty( $this->old_site_url))
277
+ {
278
+ $this->old_site_url = $matcher[1];
279
+ $wpvivid_plugin->restore_data->write_log('old site url:'.$this->old_site_url,'notice');
280
+ }
281
+
282
  }
283
  if(empty($this -> home_url) && preg_match('# home_url: (.*?) #',$line,$matcher))
284
  {
285
+ if(empty( $this->old_home_url))
286
+ {
287
+ $this->old_home_url = $matcher[1];
288
+ $wpvivid_plugin->restore_data->write_log('old home url:'.$this->old_home_url,'notice');
289
+ }
290
  }
291
  if(empty($this -> content_url) && preg_match('# content_url: (.*?) #',$line,$matcher))
292
  {
293
+ if(empty( $this->old_content_url))
294
+ {
295
+ $this->old_content_url = $matcher[1];
296
+ $wpvivid_plugin->restore_data->write_log('old content url:'.$this->old_content_url,'notice');
297
+ }
298
  }
299
  if(empty($this -> upload_url) && preg_match('# upload_url: (.*?) #',$line,$matcher))
300
  {
301
+ if(empty( $this->old_upload_url))
302
+ {
303
+ $this->old_upload_url = $matcher[1];
304
+ $wpvivid_plugin->restore_data->write_log('old upload url:'.$this->old_upload_url,'notice');
305
+ }
306
+
307
  }
308
  if(empty($this -> table_prefix) && preg_match('# table_prefix: (.*?) #',$line,$matcher))
309
  {
310
+ if(empty( $this->old_prefix))
311
+ {
312
+ $this->old_prefix = $matcher[1];
313
+ $wpvivid_plugin->restore_data->write_log('old site prefix:'.$this->old_prefix,'notice');
314
+ }
315
  }
316
  }
317
  continue;
includes/class-wpvivid-restore-site.php CHANGED
@@ -67,7 +67,8 @@ class WPvivid_RestoreSite
67
  }
68
  else {
69
  $root_path = '';
70
- if (isset($option['root'])) {
 
71
  $root_path = $this->transfer_path(get_home_path() . $option['root']);
72
  } else if (isset($option['root_flag'])) {
73
  if ($option['root_flag'] == WPVIVID_BACKUP_ROOT_WP_CONTENT) {
@@ -77,6 +78,19 @@ class WPvivid_RestoreSite
77
  } else if ($option['root_flag'] == WPVIVID_BACKUP_ROOT_WP_ROOT) {
78
  $root_path = $this->transfer_path(ABSPATH);
79
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  }
81
 
82
  $root_path = rtrim($root_path, '/');
@@ -203,4 +217,152 @@ class WPvivid_RestoreSite
203
  $values = explode('/',$path);
204
  return implode(DIRECTORY_SEPARATOR,$values);
205
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  }
67
  }
68
  else {
69
  $root_path = '';
70
+ if (isset($option['root']))
71
+ {
72
  $root_path = $this->transfer_path(get_home_path() . $option['root']);
73
  } else if (isset($option['root_flag'])) {
74
  if ($option['root_flag'] == WPVIVID_BACKUP_ROOT_WP_CONTENT) {
78
  } else if ($option['root_flag'] == WPVIVID_BACKUP_ROOT_WP_ROOT) {
79
  $root_path = $this->transfer_path(ABSPATH);
80
  }
81
+ else if($option['root_flag'] == 'wpvivid_mu_upload')
82
+ {
83
+ if($option['overwrite'])
84
+ {
85
+ $upload_dir =$this->get_site_upload_dir($option['overwrite_site']);
86
+ }
87
+ else
88
+ {
89
+ $upload_dir =$this->get_site_upload_dir($option['site_id']);
90
+ }
91
+ $root_path=$upload_dir['basedir'];
92
+ $wpvivid_plugin->restore_data->write_log('restore root path:' .$root_path, 'notice');
93
+ }
94
  }
95
 
96
  $root_path = rtrim($root_path, '/');
217
  $values = explode('/',$path);
218
  return implode(DIRECTORY_SEPARATOR,$values);
219
  }
220
+
221
+ public function get_site_upload_dir($site_id, $time = null, $create_dir = true, $refresh_cache = false)
222
+ {
223
+ static $cache = array(), $tested_paths = array();
224
+
225
+ $key = sprintf( '%d-%s',$site_id, (string) $time );
226
+
227
+ if ( $refresh_cache || empty( $cache[ $key ] ) ) {
228
+ $cache[ $key ] = $this->_wp_upload_dir( $site_id,$time );
229
+ }
230
+
231
+ /**
232
+ * Filters the uploads directory data.
233
+ *
234
+ * @since 2.0.0
235
+ *
236
+ * @param array $uploads Array of upload directory data with keys of 'path',
237
+ * 'url', 'subdir, 'basedir', and 'error'.
238
+ */
239
+ $uploads = apply_filters( 'upload_dir', $cache[ $key ] );
240
+
241
+ if ( $create_dir ) {
242
+ $path = $uploads['path'];
243
+
244
+ if ( array_key_exists( $path, $tested_paths ) ) {
245
+ $uploads['error'] = $tested_paths[ $path ];
246
+ } else {
247
+ if ( ! wp_mkdir_p( $path ) ) {
248
+ if ( 0 === strpos( $uploads['basedir'], ABSPATH ) ) {
249
+ $error_path = str_replace( ABSPATH, '', $uploads['basedir'] ) . $uploads['subdir'];
250
+ } else {
251
+ $error_path = basename( $uploads['basedir'] ) . $uploads['subdir'];
252
+ }
253
+
254
+ $uploads['error'] = sprintf(
255
+ /* translators: %s: directory path */
256
+ __( 'Unable to create directory %s. Is its parent directory writable by the server?' ),
257
+ esc_html( $error_path )
258
+ );
259
+ }
260
+
261
+ $tested_paths[ $path ] = $uploads['error'];
262
+ }
263
+ }
264
+
265
+ return $uploads;
266
+ }
267
+
268
+ public function _wp_upload_dir($site_id, $time = null ) {
269
+ $siteurl = get_option( 'siteurl' );
270
+ $upload_path = trim( get_option( 'upload_path' ) );
271
+
272
+ if ( empty( $upload_path ) || 'wp-content/uploads' == $upload_path ) {
273
+ $dir = WP_CONTENT_DIR . '/uploads';
274
+ } elseif ( 0 !== strpos( $upload_path, ABSPATH ) ) {
275
+ // $dir is absolute, $upload_path is (maybe) relative to ABSPATH
276
+ $dir = path_join( ABSPATH, $upload_path );
277
+ } else {
278
+ $dir = $upload_path;
279
+ }
280
+
281
+ if ( ! $url = get_option( 'upload_url_path' ) ) {
282
+ if ( empty( $upload_path ) || ( 'wp-content/uploads' == $upload_path ) || ( $upload_path == $dir ) ) {
283
+ $url = WP_CONTENT_URL . '/uploads';
284
+ } else {
285
+ $url = trailingslashit( $siteurl ) . $upload_path;
286
+ }
287
+ }
288
+
289
+ /*
290
+ * Honor the value of UPLOADS. This happens as long as ms-files rewriting is disabled.
291
+ * We also sometimes obey UPLOADS when rewriting is enabled -- see the next block.
292
+ */
293
+ if ( defined( 'UPLOADS' ) && ! ( is_multisite() && get_site_option( 'ms_files_rewriting' ) ) ) {
294
+ $dir = ABSPATH . UPLOADS;
295
+ $url = trailingslashit( $siteurl ) . UPLOADS;
296
+ }
297
+
298
+ // If multisite (and if not the main site in a post-MU network)
299
+ if ( is_multisite() && ! ( is_main_network() && is_main_site($site_id) && defined( 'MULTISITE' ) ) ) {
300
+ if ( ! get_site_option( 'ms_files_rewriting' ) ) {
301
+ /*
302
+ * If ms-files rewriting is disabled (networks created post-3.5), it is fairly
303
+ * straightforward: Append sites/%d if we're not on the main site (for post-MU
304
+ * networks). (The extra directory prevents a four-digit ID from conflicting with
305
+ * a year-based directory for the main site. But if a MU-era network has disabled
306
+ * ms-files rewriting manually, they don't need the extra directory, as they never
307
+ * had wp-content/uploads for the main site.)
308
+ */
309
+
310
+ if ( defined( 'MULTISITE' ) ) {
311
+ $ms_dir = '/sites/' . $site_id;
312
+ } else {
313
+ $ms_dir = '/' . $site_id;
314
+ }
315
+
316
+ $dir .= $ms_dir;
317
+ $url .= $ms_dir;
318
+ } elseif ( defined( 'UPLOADS' ) && ! ms_is_switched() ) {
319
+ /*
320
+ * Handle the old-form ms-files.php rewriting if the network still has that enabled.
321
+ * When ms-files rewriting is enabled, then we only listen to UPLOADS when:
322
+ * 1) We are not on the main site in a post-MU network, as wp-content/uploads is used
323
+ * there, and
324
+ * 2) We are not switched, as ms_upload_constants() hardcodes these constants to reflect
325
+ * the original blog ID.
326
+ *
327
+ * Rather than UPLOADS, we actually use BLOGUPLOADDIR if it is set, as it is absolute.
328
+ * (And it will be set, see ms_upload_constants().) Otherwise, UPLOADS can be used, as
329
+ * as it is relative to ABSPATH. For the final piece: when UPLOADS is used with ms-files
330
+ * rewriting in multisite, the resulting URL is /files. (#WP22702 for background.)
331
+ */
332
+
333
+ if ( defined( 'BLOGUPLOADDIR' ) ) {
334
+ $dir = untrailingslashit( BLOGUPLOADDIR );
335
+ } else {
336
+ $dir = ABSPATH . UPLOADS;
337
+ }
338
+ $url = trailingslashit( $siteurl ) . 'files';
339
+ }
340
+ }
341
+
342
+ $basedir = $dir;
343
+ $baseurl = $url;
344
+
345
+ $subdir = '';
346
+ if ( get_option( 'uploads_use_yearmonth_folders' ) ) {
347
+ // Generate the yearly and monthly dirs
348
+ if ( ! $time ) {
349
+ $time = current_time( 'mysql' );
350
+ }
351
+ $y = substr( $time, 0, 4 );
352
+ $m = substr( $time, 5, 2 );
353
+ $subdir = "/$y/$m";
354
+ }
355
+
356
+ $dir .= $subdir;
357
+ $url .= $subdir;
358
+
359
+ return array(
360
+ 'path' => $dir,
361
+ 'url' => $url,
362
+ 'subdir' => $subdir,
363
+ 'basedir' => $basedir,
364
+ 'baseurl' => $baseurl,
365
+ 'error' => false,
366
+ );
367
+ }
368
  }
includes/class-wpvivid-restore.php CHANGED
@@ -68,6 +68,15 @@ class WPvivid_Restore
68
  $option=$json;
69
  }
70
  $option=array_merge($option,$restore_task['option']);
 
 
 
 
 
 
 
 
 
71
  $is_type_db = false;
72
  $is_type_db = apply_filters('wpvivid_check_type_database', $is_type_db, $option);
73
  if($is_type_db)
@@ -112,4 +121,285 @@ class WPvivid_Restore
112
  return $ret;
113
  }
114
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  }
68
  $option=$json;
69
  }
70
  $option=array_merge($option,$restore_task['option']);
71
+
72
+ if(isset($restore_task['reset']))
73
+ {
74
+ $wpvivid_plugin->restore_data->write_log('Start resetting '.$restore_task['reset'],'notice');
75
+ $ret= $this->reset_restore($restore_task);
76
+ $wpvivid_plugin->restore_data->write_log('Finished resetting '.$restore_task['reset'],'notice');
77
+ return $ret;
78
+ }
79
+
80
  $is_type_db = false;
81
  $is_type_db = apply_filters('wpvivid_check_type_database', $is_type_db, $option);
82
  if($is_type_db)
121
  return $ret;
122
  }
123
  }
124
+
125
+ public function reset_restore($restore_task)
126
+ {
127
+ $ret['result']=WPVIVID_SUCCESS;
128
+
129
+ if($restore_task['reset']=='themes')
130
+ {
131
+ return $this->delete_themes();
132
+ }
133
+ else if($restore_task['reset']=='deactivate_plugins')
134
+ {
135
+ return $this->deactivate_plugins();
136
+ }
137
+ else if($restore_task['reset']=='plugins')
138
+ {
139
+ return $this->delete_plugins();
140
+ }
141
+ else if($restore_task['reset']=='uploads')
142
+ {
143
+ return $this->delete_uploads();
144
+ }
145
+ else if($restore_task['reset']=='wp_content')
146
+ {
147
+ return $this->delete_wp_content();
148
+ }
149
+ else if($restore_task['reset']=='mu_plugins')
150
+ {
151
+ return $this->delete_mu_plugins();
152
+ }
153
+ else if($restore_task['reset']=='tables')
154
+ {
155
+ return $this->delete_tables();
156
+ }
157
+
158
+ return $ret;
159
+ }
160
+
161
+ public function delete_themes()
162
+ {
163
+ global $wpvivid_plugin;
164
+
165
+ if (!function_exists('delete_theme'))
166
+ {
167
+ require_once ABSPATH . 'wp-admin/includes/theme.php';
168
+ }
169
+
170
+ if (!function_exists('request_filesystem_credentials'))
171
+ {
172
+ require_once ABSPATH . 'wp-admin/includes/file.php';
173
+ }
174
+
175
+ $all_themes = wp_get_themes(array('errors' => null));
176
+
177
+ $wpvivid_plugin->restore_data->write_log('Deleting all themes','notice');
178
+
179
+ foreach ($all_themes as $theme_slug => $theme_details)
180
+ {
181
+ delete_theme($theme_slug);
182
+ }
183
+
184
+ update_option('template', '');
185
+ update_option('stylesheet', '');
186
+ update_option('current_theme', '');
187
+
188
+ $ret['result']=WPVIVID_SUCCESS;
189
+ return $ret;
190
+ }
191
+
192
+ public function deactivate_plugins()
193
+ {
194
+ global $wpvivid_plugin;
195
+
196
+ if (!function_exists('get_plugins'))
197
+ {
198
+ require_once ABSPATH . 'wp-admin/includes/plugin.php';
199
+ }
200
+ if (!function_exists('request_filesystem_credentials'))
201
+ {
202
+ require_once ABSPATH . 'wp-admin/includes/file.php';
203
+ }
204
+
205
+ $wpvivid_plugin->restore_data->write_log('Deactivating all plugins','notice');
206
+
207
+ $active_plugins = (array) get_option('active_plugins', array());
208
+
209
+ $wpvivid_backup_pro='wpvivid-backup-pro/wpvivid-backup-pro.php';
210
+ $wpvivid_backup='wpvivid-backuprestore/wpvivid-backuprestore.php';
211
+
212
+ if (($key = array_search($wpvivid_backup_pro, $active_plugins)) !== false)
213
+ {
214
+ unset($active_plugins[$key]);
215
+ }
216
+
217
+ if (($key = array_search($wpvivid_backup, $active_plugins)) !== false)
218
+ {
219
+ unset($active_plugins[$key]);
220
+ }
221
+
222
+ if (!empty($active_plugins))
223
+ {
224
+ deactivate_plugins($active_plugins, true, false);
225
+ }
226
+
227
+ $ret['result']=WPVIVID_SUCCESS;
228
+ return $ret;
229
+ }
230
+
231
+ public function delete_plugins()
232
+ {
233
+ global $wpvivid_plugin;
234
+
235
+ if (!function_exists('get_plugins'))
236
+ {
237
+ require_once ABSPATH . 'wp-admin/includes/plugin.php';
238
+ }
239
+ if (!function_exists('request_filesystem_credentials'))
240
+ {
241
+ require_once ABSPATH . 'wp-admin/includes/file.php';
242
+ }
243
+
244
+ $wpvivid_backup_pro='wpvivid-backup-pro/wpvivid-backup-pro.php';
245
+ $wpvivid_backup='wpvivid-backuprestore/wpvivid-backuprestore.php';
246
+
247
+ $wpvivid_plugin->restore_data->write_log('Deleting all plugins','notice');
248
+
249
+ $all_plugins = get_plugins();
250
+ unset($all_plugins[$wpvivid_backup_pro]);
251
+ unset($all_plugins[$wpvivid_backup]);
252
+
253
+ if (!empty($all_plugins))
254
+ {
255
+ delete_plugins(array_keys($all_plugins));
256
+ }
257
+
258
+ $ret['result']=WPVIVID_SUCCESS;
259
+ return $ret;
260
+ }
261
+
262
+ public function delete_uploads()
263
+ {
264
+ global $wpvivid_plugin;
265
+
266
+ $upload_dir = wp_get_upload_dir();
267
+
268
+ $wpvivid_plugin->restore_data->write_log('Deleting uploads','notice');
269
+
270
+ $this->delete_folder($upload_dir['basedir'], $upload_dir['basedir']);
271
+
272
+ $ret['result']=WPVIVID_SUCCESS;
273
+ return $ret;
274
+ }
275
+
276
+ public function delete_folder($folder, $base_folder)
277
+ {
278
+ $files = array_diff(scandir($folder), array('.', '..'));
279
+
280
+ foreach ($files as $file)
281
+ {
282
+ if (is_dir($folder . DIRECTORY_SEPARATOR . $file))
283
+ {
284
+ $this->delete_folder($folder . DIRECTORY_SEPARATOR . $file, $base_folder);
285
+ } else {
286
+ @unlink($folder . DIRECTORY_SEPARATOR . $file);
287
+ }
288
+ } // foreach
289
+
290
+ if ($folder != $base_folder)
291
+ {
292
+ $tmp = @rmdir($folder);
293
+ return $tmp;
294
+ } else {
295
+ return true;
296
+ }
297
+ }
298
+
299
+ public function delete_wp_content()
300
+ {
301
+ global $wpvivid_plugin;
302
+
303
+ $wpvivid_plugin->restore_data->write_log('Deleting wp_content','notice');
304
+
305
+ $wp_content_dir = trailingslashit(WP_CONTENT_DIR);
306
+
307
+ $wpvivid_backup=WPvivid_Setting::get_backupdir();
308
+
309
+ $whitelisted_folders = array('mu-plugins', 'plugins', 'themes', 'uploads',$wpvivid_backup);
310
+
311
+ $dirs = glob($wp_content_dir . '*', GLOB_ONLYDIR);
312
+ foreach ($dirs as $dir)
313
+ {
314
+ if (false == in_array(basename($dir), $whitelisted_folders))
315
+ {
316
+ $this->delete_folder($dir, $dir);
317
+ @rmdir($dir);
318
+ }
319
+ }
320
+
321
+ $ret['result']=WPVIVID_SUCCESS;
322
+ return $ret;
323
+ }
324
+
325
+ public function delete_mu_plugins()
326
+ {
327
+ global $wpvivid_plugin;
328
+
329
+ $wpvivid_plugin->restore_data->write_log('Deleting mu_plugins','notice');
330
+
331
+ $ret['result']=WPVIVID_SUCCESS;
332
+
333
+ $mu_plugins = get_mu_plugins();
334
+
335
+ if(empty($mu_plugins))
336
+ {
337
+ return $ret;
338
+ }
339
+
340
+ $this->delete_folder(WPMU_PLUGIN_DIR, WPMU_PLUGIN_DIR);
341
+
342
+ return $ret;
343
+ }
344
+
345
+ public function delete_tables()
346
+ {
347
+ global $wpvivid_plugin,$wpdb;
348
+
349
+ $wpvivid_plugin->restore_data->write_log('Deleting tables','notice');
350
+
351
+ $tables = $this->get_tables();
352
+
353
+ foreach ($tables as $table_name)
354
+ {
355
+ $wpdb->query('SET foreign_key_checks = 0');
356
+ $wpdb->query('DROP TABLE IF EXISTS ' . $table_name);
357
+ $wpvivid_plugin->restore_data->write_log('DROP TABLE:'.$table_name,'notice');
358
+ }
359
+
360
+ $ret['result']=WPVIVID_SUCCESS;
361
+ return $ret;
362
+ }
363
+
364
+ public function get_tables()
365
+ {
366
+ global $wpdb;
367
+ $tables = array();
368
+ $core_tables=array();
369
+ $core_tables[]='commentmeta';
370
+ $core_tables[]='comments';
371
+ $core_tables[]='links';
372
+ $core_tables[]='options';
373
+ $core_tables[]='postmeta';
374
+ $core_tables[]='posts';
375
+ $core_tables[]='term_relationships';
376
+ $core_tables[]='term_taxonomy';
377
+ $core_tables[]='termmeta';
378
+ $core_tables[]='terms';
379
+ $core_tables[]='usermeta';
380
+ $core_tables[]='users';
381
+ $core_tables[]='blogs';
382
+ $core_tables[]='blogmeta';
383
+ $core_tables[]='site';
384
+ $core_tables[]='sitemeta';
385
+
386
+ $sql=$wpdb->prepare("SHOW TABLES LIKE %s;", $wpdb->esc_like($wpdb->base_prefix) . '%');
387
+
388
+ $result = $wpdb->get_results($sql, OBJECT_K);
389
+ if(!empty($result))
390
+ {
391
+ foreach ($result as $table_name=>$value)
392
+ {
393
+ if(in_array(substr($table_name, strlen($wpdb->base_prefix)),$core_tables))
394
+ {
395
+ continue;
396
+ }
397
+ else
398
+ {
399
+ $tables[]=$table_name;
400
+ }
401
+ }
402
+ }
403
+ return $tables;
404
+ }
405
  }
languages/wpvivid-bg_BG.mo ADDED
Binary file
languages/wpvivid-bg_BG.po ADDED
@@ -0,0 +1,2192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wpvivid backup plugin\n"
4
+ "Last-Translator: 刘赓 <420723111@qq.com>\n"
5
+ "Language-Team: Български\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "X-Poedit-KeywordsList: __;_e;esc_attr;esc_attr_e\n"
10
+ "X-Poedit-Basepath: ..\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
12
+ "X-Poedit-SourceCharset: utf-8\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "POT-Creation-Date: 2020-06-09 14:13+0000\n"
15
+ "PO-Revision-Date: 2020-06-21 13:08+0800\n"
16
+ "Language: bg_BG\n"
17
+ "X-Generator: Poedit 2.3.1\n"
18
+ "X-Loco-Version: 2.4.0; wp-5.4.1\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: admin/class-wpvivid-admin.php:100
22
+ #: admin/class-wpvivid-admin.php:114
23
+ #: admin/class-wpvivid-admin.php:635
24
+ msgid "Backup & Restore"
25
+ msgstr "Архивиране и възстановяване"
26
+
27
+ #: admin/class-wpvivid-admin.php:123
28
+ #: admin/class-wpvivid-admin.php:313
29
+ #: admin/class-wpvivid-admin.php:653
30
+ msgid "Settings"
31
+ msgstr "Настройки"
32
+
33
+ #: admin/class-wpvivid-admin.php:139
34
+ msgid "Current Version:"
35
+ msgstr "Текуща версия:"
36
+
37
+ #: admin/class-wpvivid-admin.php:142
38
+ msgid "ChangeLog"
39
+ msgstr "Промени"
40
+
41
+ #: admin/class-wpvivid-admin.php:149
42
+ msgid "Troubleshooting"
43
+ msgstr "Отстраняване на проблеми"
44
+
45
+ #: admin/class-wpvivid-admin.php:154
46
+ msgid "Read <a href=\"https://wpvivid.com/troubleshooting-issues-wpvivid-backup-plugin\" target=\"_blank\">Troubleshooting page</a> for faster solutions."
47
+ msgstr "Прочетете <a href=\"https://wpvivid.com/troubleshooting-issues-wpvivid-backup-plugin\" target=\"_blank\">Страница за отстраняване на неизправности</a> за по-бързи решения."
48
+
49
+ #: admin/class-wpvivid-admin.php:157
50
+ msgid "Adjust <a href=\"https://wpvivid.com/wpvivid-backup-plugin-advanced-settings.html\" target=\"_blank\">Advanced Settings</a> for higher task success rate."
51
+ msgstr "Регулирайте <a href=\"https://wpvivid.com/wpvivid-backup-plugin-advanced-settings.html\" target=\"_blank\">разширените настройки</a> за по-висока скорост на успеваемост на задачите."
52
+
53
+ #: admin/class-wpvivid-admin.php:164
54
+ msgid "How-to"
55
+ msgstr "Как-да"
56
+
57
+ #: admin/class-wpvivid-admin.php:168
58
+ msgid "WPvivid Backup Settings"
59
+ msgstr "Настройки на WPvivid архивиране"
60
+
61
+ #: admin/class-wpvivid-admin.php:169
62
+ msgid "Create a Manual Backup"
63
+ msgstr "Създаване на ръчно архивиране"
64
+
65
+ #: admin/class-wpvivid-admin.php:170
66
+ msgid "Restore Your Site from a Backup"
67
+ msgstr "Възстановяване на вашия сайт от архив"
68
+
69
+ #: admin/class-wpvivid-admin.php:171
70
+ msgid "Migrate WordPress"
71
+ msgstr "Мигриране на WordPress"
72
+
73
+ #: admin/class-wpvivid-admin.php:209
74
+ msgid "Warning:"
75
+ msgstr "Внимание:"
76
+
77
+ #: admin/class-wpvivid-admin.php:210
78
+ msgid "Error:"
79
+ msgstr "Грешка:"
80
+
81
+ #: admin/class-wpvivid-admin.php:211
82
+ msgid "Warning: An alias for remote storage is required."
83
+ msgstr "Предупреждение: Изисква се псевдоним за отдалечено съхранение."
84
+
85
+ #: admin/class-wpvivid-admin.php:212
86
+ msgid "Warning: The alias already exists in storage list."
87
+ msgstr "Предупреждение: Псевдонимът вече съществува в списъка за съхранение."
88
+
89
+ #: admin/class-wpvivid-admin.php:213
90
+ msgid "Calculating the size of files, folder and database timed out. If you continue to receive this error, please go to the plugin settings, uncheck 'Calculate the size of files, folder and database before backing up', save changes, then try again."
91
+ msgstr "Изчисляване на размера на файловете, папката и базата данни изтече. Ако продължавате да получавате тази грешка, моля, отидете на настройките на приставката, махнете отметката от \"Изчислете размера на файловете, папките и базата данни, преди да архивирате\", запишете промените и опитайте отново."
92
+
93
+ #: admin/class-wpvivid-admin.php:346
94
+ msgid "Migration is complete and htaccess file is replaced. In order to successfully complete the migration, you'd better reinstall 301 redirect plugin, firewall and security plugin, and caching plugin if they exist."
95
+ msgstr "Миграцията е завършена и htaccess файлът се заменя. За да завършите успешно миграцията, по-добре е да преинсталирате 301 добавка за пренасочване, защитна стена и приставка за сигурност и кеширане плъгин, ако те съществуват."
96
+
97
+ #: admin/class-wpvivid-admin.php:361
98
+ msgid "Cheers! WPvivid Backup plugin has restored successfully your website. If you found WPvivid Backup plugin helpful, a 5-star rating would be highly appreciated, which motivates us to keep providing new features."
99
+ msgstr "Поздрав! WPvivid Backup плъгинът е възстановил успешно вашия сайт. Ако установите, че WPvivid Backup плъгинът е полезен, ще сме много благодарни, ако ни дадете 5-звезден рейтинг, което ни мотивира да продължим да предоставяме нови функции."
100
+
101
+ #: admin/class-wpvivid-admin.php:367
102
+ msgid "Restore completed successfully."
103
+ msgstr "Възстановяването завърши успешно."
104
+
105
+ #: admin/class-wpvivid-admin.php:454
106
+ #: admin/class-wpvivid-admin.php:471
107
+ msgid "Rate Us"
108
+ msgstr "Оценете ни"
109
+
110
+ #: admin/class-wpvivid-admin.php:455
111
+ #: admin/class-wpvivid-admin.php:472
112
+ msgid "Maybe Later"
113
+ msgstr "Може би по-късно"
114
+
115
+ #: admin/class-wpvivid-admin.php:456
116
+ #: admin/class-wpvivid-admin.php:473
117
+ msgid "Never"
118
+ msgstr "Никога"
119
+
120
+ #: admin/class-wpvivid-admin.php:509
121
+ msgid "As Amazon S3 and DigitalOcean Space have upgraded their connection methods, please delete the previous connections and re-add your Amazon S3/DigitalOcean Space accounts to make sure the connections work."
122
+ msgstr "Както Amazon S3 и DigitalOcean Space са модернизирани своите методи за свързване, моля, изтрийте предишните връзки и добавете отново вашите Amazon S3 /DigitalOcean Space сметки, за да се уверите, че връзките работят."
123
+
124
+ #: admin/class-wpvivid-admin.php:561
125
+ #, php-format
126
+ msgid "The %s extension is not detected. Please install the extension first."
127
+ msgstr "Не е открито разширение %s. Първо инсталирайте разширението."
128
+
129
+ #: admin/class-wpvivid-admin.php:564
130
+ #, php-format
131
+ msgid "The %s extensions are not detected. Please install the extensions first."
132
+ msgstr "Не са открити разширения %s. Първо инсталирайте разширенията."
133
+
134
+ #: admin/class-wpvivid-admin.php:570
135
+ msgid "Class PclZip is not detected. Please update or reinstall your WordPress."
136
+ msgstr "Не се открива клас PCLZip. Актуализирайте или преинсталирайте wordPress."
137
+
138
+ #: admin/class-wpvivid-admin.php:575
139
+ msgid "In order to execute the scheduled backups properly, please set the DISABLE_WP_CRON constant to false."
140
+ msgstr "За да изпълните планираните архиви правилно, задайте DISABLE_WP_CRON постоянна на неистински."
141
+
142
+ #: admin/class-wpvivid-admin.php:641
143
+ msgid "Schedule"
144
+ msgstr "Планиране"
145
+
146
+ #: admin/class-wpvivid-admin.php:647
147
+ msgid "Remote Storage"
148
+ msgstr "Отдалечено съхранение"
149
+
150
+ #: admin/class-wpvivid-admin.php:659
151
+ msgid "Debug"
152
+ msgstr "Отстраняване на грешки"
153
+
154
+ #: admin/class-wpvivid-admin.php:665
155
+ msgid "Logs"
156
+ msgstr "Регистри"
157
+
158
+ #: admin/class-wpvivid-admin.php:672
159
+ #: admin/partials/wpvivid-backup-restore-page-display.php:130
160
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1505
161
+ msgid "Log"
162
+ msgstr "Регистър"
163
+
164
+ #: admin/class-wpvivid-admin.php:683
165
+ msgid "MainWP"
166
+ msgstr "MainWP"
167
+
168
+ #: admin/class-wpvivid-admin.php:693
169
+ msgid "Premium"
170
+ msgstr "Премиум"
171
+
172
+ #: admin/class-wpvivid-admin.php:735
173
+ #: admin/class-wpvivid-admin.php:822
174
+ #: admin/partials/wpvivid-remote-storage-page-display.php:48
175
+ msgid "Save Changes"
176
+ msgstr "Запази промените"
177
+
178
+ #: admin/class-wpvivid-admin.php:870
179
+ msgid "There are two ways available to send us the debug information. The first one is recommended."
180
+ msgstr "Има два начина за изпращане на информацията за отстраняване на грешки. Първият се препоръчва."
181
+
182
+ #: admin/class-wpvivid-admin.php:872
183
+ msgid "Method 1."
184
+ msgstr "Метод 1."
185
+
186
+ #: admin/class-wpvivid-admin.php:872
187
+ msgid "If you have configured SMTP on your site, enter your email address and click the button below to send us the relevant information (website info and errors logs) when you are encountering errors. This will help us figure out what happened. Once the issue is resolved, we will inform you by your email address."
188
+ msgstr "Ако сте конфигурирали SMTP на вашия сайт, въведете вашия имейл адрес и щракнете върху бутона по-долу, за да ни изпратите съответната информация (уеб сайт информация и грешки регистрационни файлове), когато се натъкнете на грешки. Това ще ни помогне да разберем какво се е случило. След като проблемът бъде решен, ще Ви информираме на вашия имейл адрес."
189
+
190
+ #: admin/class-wpvivid-admin.php:875
191
+ msgid "WPvivid support email:"
192
+ msgstr "WPvivid имейл за поддръжка:"
193
+
194
+ #: admin/class-wpvivid-admin.php:876
195
+ msgid "Your email:"
196
+ msgstr "Вашият имейл:"
197
+
198
+ #: admin/class-wpvivid-admin.php:881
199
+ msgid "I am using:"
200
+ msgstr "Аз използвам:"
201
+
202
+ #: admin/class-wpvivid-admin.php:893
203
+ msgid "My web hosting provider is:"
204
+ msgstr "Моят доставчик на уеб хостинг е:"
205
+
206
+ #: admin/class-wpvivid-admin.php:902
207
+ msgid "Please describe your problem here."
208
+ msgstr "Моля, опишете проблема си тук."
209
+
210
+ #: admin/class-wpvivid-admin.php:905
211
+ msgid "Send Debug Information to Us"
212
+ msgstr "Изпращане на информация за отстраняване на грешки до нас"
213
+
214
+ #: admin/class-wpvivid-admin.php:909
215
+ msgid "Method 2."
216
+ msgstr "Метод 2."
217
+
218
+ #: admin/class-wpvivid-admin.php:909
219
+ msgid "If you didn’t configure SMTP on your site, click the button below to download the relevant information (website info and error logs) to your PC when you are encountering some errors. Sending the files to us will help us diagnose what happened."
220
+ msgstr "Ако не сте конфигурирали SMTP на сайта си, щракнете върху бутона по-долу, за да изтеглите съответната информация (информация за уеб сайта и регистрационни файлове за грешки) на вашия компютър, когато срещате някои грешки. Изпращането на файловете до нас ще ни помогне да диагностицираме какво се е случило."
221
+
222
+ #: admin/class-wpvivid-admin.php:912
223
+ #: admin/partials/wpvivid-backup-restore-page-display.php:178
224
+ msgid "Download"
225
+ msgstr "Изтегляне"
226
+
227
+ #: admin/class-wpvivid-admin.php:916
228
+ msgid "Website Info Key"
229
+ msgstr "Ключ за информация за уеб сайта"
230
+
231
+ #: admin/class-wpvivid-admin.php:917
232
+ msgid "Website Info Value"
233
+ msgstr "Стойност на уеб сайта"
234
+
235
+ #: admin/class-wpvivid-admin.php:1030
236
+ msgid "Date"
237
+ msgstr "Дата"
238
+
239
+ #: admin/class-wpvivid-admin.php:1031
240
+ msgid "Log Type"
241
+ msgstr "Тип на регистъра"
242
+
243
+ #: admin/class-wpvivid-admin.php:1032
244
+ msgid "Log File Name"
245
+ msgstr "Име на регистрационния файл"
246
+
247
+ #: admin/class-wpvivid-admin.php:1033
248
+ msgid "Action"
249
+ msgstr "Действие"
250
+
251
+ #: admin/class-wpvivid-admin.php:1045
252
+ msgid " < Pre page "
253
+ msgstr " < Преди страница "
254
+
255
+ #: admin/class-wpvivid-admin.php:1056
256
+ msgid " Next page > "
257
+ msgstr " Следваща страница > "
258
+
259
+ #: admin/class-wpvivid-admin.php:1164
260
+ msgid "If you are a MainWP user, you can set up and control WPvivid Backup Free and Pro for every child site directly from your MainWP dashboard, using our WPvivid Backup for MainWP extension."
261
+ msgstr "Ако сте MainWP потребител, можете да настроите и управлявате WPvivid Backup Free и Pro за всеки сайт на детето директно от таблото на MainWP, като използвате нашия WPvivid Backup за mainWP разширение."
262
+
263
+ #: admin/class-wpvivid-admin.php:1167
264
+ msgid "Download WPvivid Backup for MainWP"
265
+ msgstr "Изтегляне на WPvivid архивиране за MainWP"
266
+
267
+ #: admin/class-wpvivid-admin.php:1170
268
+ msgid "1. Create and download backups for a specific child site"
269
+ msgstr "1. Създаване и изтегляне на резервни копия за конкретен дъщерен сайт"
270
+
271
+ #: admin/class-wpvivid-admin.php:1173
272
+ msgid "2. Set backup schedules for all child sites"
273
+ msgstr "2. Задайте графици за архивиране за всички дъщерни сайтове"
274
+
275
+ #: admin/class-wpvivid-admin.php:1177
276
+ msgid "3. Set WPvivid Backup Free and Pro settings for all child sites"
277
+ msgstr "3. Задайте WPvivid Архивиране Безплатни и Pro настройки за всички сайтове за деца"
278
+
279
+ #: admin/class-wpvivid-admin.php:1182
280
+ msgid "4. Install, claim and update WPvivid Backup Pro for child sites in bulk"
281
+ msgstr "4. Инсталиране, претенции и актуализация WPvivid Backup Pro за дъщерни сайтове в насипно състояние"
282
+
283
+ #: admin/class-wpvivid-admin.php:1187
284
+ msgid "5. Set up remote storage for child sites in bulk (for WPvivid Backup Pro only)"
285
+ msgstr "5. Настройте отдалечено съхранение за деца сайтове в насипно състояние (за WPvivid Backup Pro само)"
286
+
287
+ #: admin/class-wpvivid-admin.php:1192
288
+ #, php-format
289
+ msgid "We also offer a 40% off discount on WPvivid Backup Pro for MainWP users."
290
+ msgstr "Ние също можем да предложим 40% oотстъпка за WPvivid Backup Pro за потребители на MainWP."
291
+
292
+ #: admin/class-wpvivid-admin.php:1196
293
+ msgid "Ask For A 40% OFF Discount"
294
+ msgstr "Попитайте за 40% Отстъпка"
295
+
296
+ #: admin/class-wpvivid-admin.php:1219
297
+ msgid "Pro Version Features"
298
+ msgstr "Функции на версията на Pro"
299
+
300
+ #: admin/class-wpvivid-admin.php:1220
301
+ msgid "Basic"
302
+ msgstr "Основни"
303
+
304
+ #: admin/class-wpvivid-admin.php:1221
305
+ msgid "Freelancer"
306
+ msgstr "На свободна практика"
307
+
308
+ #: admin/class-wpvivid-admin.php:1222
309
+ msgid "Ultimate"
310
+ msgstr "Ултимат"
311
+
312
+ #: admin/class-wpvivid-admin.php:1228
313
+ msgid "Websites"
314
+ msgstr "Сайтове"
315
+
316
+ #: admin/class-wpvivid-admin.php:1229
317
+ #: admin/class-wpvivid-admin.php:1230
318
+ #: admin/class-wpvivid-admin.php:1231
319
+ #: admin/class-wpvivid-admin.php:1232
320
+ msgid "Backup:"
321
+ msgstr "Архивиране:"
322
+
323
+ #: admin/class-wpvivid-admin.php:1229
324
+ #: admin/class-wpvivid-admin.php:1233
325
+ msgid "Custom Content"
326
+ msgstr "Собствено Съдържание"
327
+
328
+ #: admin/class-wpvivid-admin.php:1230
329
+ msgid "Incremental Backup"
330
+ msgstr "Постъпково архивиране"
331
+
332
+ #: admin/class-wpvivid-admin.php:1231
333
+ msgid "Create a restore point"
334
+ msgstr "Създаване на точка на възстановяване"
335
+
336
+ #: admin/class-wpvivid-admin.php:1232
337
+ msgid "Include/exclude files/folders"
338
+ msgstr "Включване/изключване на файлове/папки"
339
+
340
+ #: admin/class-wpvivid-admin.php:1233
341
+ #: admin/class-wpvivid-admin.php:1234
342
+ msgid "Migration:"
343
+ msgstr "Миграция:"
344
+
345
+ #: admin/class-wpvivid-admin.php:1234
346
+ msgid "Migration via remote storage"
347
+ msgstr "Миграция чрез отдалечено съхранение"
348
+
349
+ #: admin/class-wpvivid-admin.php:1235
350
+ #: admin/class-wpvivid-admin.php:1236
351
+ msgid "Remote Storage:"
352
+ msgstr "Отдалечено съхранение:"
353
+
354
+ #: admin/class-wpvivid-admin.php:1235
355
+ msgid "Custom Directory (leading cloud storage providers)"
356
+ msgstr "Персонализиран указател (водещи доставчици на облачно съхранение)"
357
+
358
+ #: admin/class-wpvivid-admin.php:1236
359
+ msgid "WASABI/Pcloud (Only Pro)"
360
+ msgstr "WASABI/Pcloud (само Pro)"
361
+
362
+ #: admin/class-wpvivid-admin.php:1237
363
+ #: admin/class-wpvivid-admin.php:1238
364
+ #: admin/class-wpvivid-admin.php:1239
365
+ #: admin/class-wpvivid-admin.php:1240
366
+ msgid "Schedule:"
367
+ msgstr "График:"
368
+
369
+ #: admin/class-wpvivid-admin.php:1237
370
+ msgid "Incremental Backup Schedule"
371
+ msgstr "График за постъпково архивиране"
372
+
373
+ #: admin/class-wpvivid-admin.php:1238
374
+ msgid "Custom Timezone"
375
+ msgstr "Часова зона по избор"
376
+
377
+ #: admin/class-wpvivid-admin.php:1239
378
+ msgid "Custom content for each schedule"
379
+ msgstr "Потребителско съдържание за всеки график"
380
+
381
+ #: admin/class-wpvivid-admin.php:1240
382
+ msgid "Custom start time of schedule"
383
+ msgstr "Персонализирано начало на графика"
384
+
385
+ #: admin/class-wpvivid-admin.php:1241
386
+ #: admin/class-wpvivid-admin.php:1242
387
+ msgid "Restore:"
388
+ msgstr "Възстановяване:"
389
+
390
+ #: admin/class-wpvivid-admin.php:1241
391
+ msgid "Restore a website from remote storage"
392
+ msgstr "Възстановяване на уеб сайт от отдалечено хранилище"
393
+
394
+ #: admin/class-wpvivid-admin.php:1242
395
+ msgid "Restore what you want from a backup"
396
+ msgstr "Възстановяване на това, което искате от архив"
397
+
398
+ #: admin/class-wpvivid-admin.php:1243
399
+ msgid "Email Reports:"
400
+ msgstr "Имейл отчети:"
401
+
402
+ #: admin/class-wpvivid-admin.php:1243
403
+ msgid "Send email reports to multiple email addresses"
404
+ msgstr "Изпращане на имейл отчети до няколко имейл адреса"
405
+
406
+ #: admin/class-wpvivid-admin.php:1244
407
+ #: admin/class-wpvivid-admin.php:1245
408
+ msgid "Staging (add-on):"
409
+ msgstr "Спиране (добавка):"
410
+
411
+ #: admin/class-wpvivid-admin.php:1244
412
+ msgid "Create a sub-directory staging site with one-click"
413
+ msgstr "Създаване на поддиректорен сайт с едно кликване"
414
+
415
+ #: admin/class-wpvivid-admin.php:1245
416
+ msgid "Publish a staging site to a live site with one-click"
417
+ msgstr "Публикуване на сайт за спиране в сайт на живо с едно кликване"
418
+
419
+ #: admin/class-wpvivid-admin.php:1246
420
+ msgid "Roles & Capabilities (add-on):"
421
+ msgstr "Роли и възможности (добавка):"
422
+
423
+ #: admin/class-wpvivid-admin.php:1246
424
+ msgid "Display the individual sections according to user roles & capabilities"
425
+ msgstr "Показване на отделни секции според ролите на потребителите & способностите"
426
+
427
+ #: admin/class-wpvivid-admin.php:1247
428
+ msgid "Support:"
429
+ msgstr "Подкрепа:"
430
+
431
+ #: admin/class-wpvivid-admin.php:1247
432
+ msgid "Ticket 7x24 support"
433
+ msgstr "Поддръжка на билет 7x24"
434
+
435
+ #: admin/class-wpvivid-admin.php:1250
436
+ msgid "Up to 3 sites"
437
+ msgstr "До 3 сайта"
438
+
439
+ #: admin/class-wpvivid-admin.php:1272
440
+ msgid "Up to 100 sites"
441
+ msgstr "До 100 сайта"
442
+
443
+ #: admin/class-wpvivid-admin.php:1294
444
+ msgid "Unlimited"
445
+ msgstr "Неограничено"
446
+
447
+ #: admin/class-wpvivid-admin.php:1319
448
+ msgid "*No credit card needed. Trial starts with the Free Trial plan with 2 sites. You can choose a plan at the end of the trial."
449
+ msgstr "*Не е необходима кредитна карта. Пробният период започва с плана за безплатен пробен период с 2 обекта. Можете да изберете план в края на процеса."
450
+
451
+ #: admin/class-wpvivid-admin.php:1320
452
+ msgid "START 14-DAY FREE TRIAL"
453
+ msgstr "ЗАПОЧНЕТЕ 14-дневен безплатен пробен период"
454
+
455
+ #: admin/partials/wpvivid-admin-display.php:49
456
+ msgid "WPvivid Backup Plugin"
457
+ msgstr "WPvivid Backup плъгин"
458
+
459
+ #: admin/partials/wpvivid-admin-display.php:63
460
+ msgid "Warning: There is no default remote storage available for the scheduled backups, please set up it first."
461
+ msgstr "Предупреждение: Няма налично отдалечено място за съхранение по подразбиране за планираните архиви, първо го настройте."
462
+
463
+ #: admin/partials/wpvivid-backup-restore-page-display.php:7
464
+ #: admin/partials/wpvivid-schedule-page-display.php:126
465
+ msgid "Database + Files (WordPress Files)"
466
+ msgstr "База данни + файлове (файлове в WordPress)"
467
+
468
+ #: admin/partials/wpvivid-backup-restore-page-display.php:11
469
+ #: admin/partials/wpvivid-schedule-page-display.php:131
470
+ msgid "WordPress Files (Exclude Database)"
471
+ msgstr "Файлове в WordPress (изключване на базата данни)"
472
+
473
+ #: admin/partials/wpvivid-backup-restore-page-display.php:15
474
+ #: admin/partials/wpvivid-schedule-page-display.php:136
475
+ msgid "Only Database"
476
+ msgstr "Само база данни"
477
+
478
+ #: admin/partials/wpvivid-backup-restore-page-display.php:20
479
+ msgid "Create a staging site"
480
+ msgstr "Създаване на сайт за спиране"
481
+
482
+ #: admin/partials/wpvivid-backup-restore-page-display.php:23
483
+ #: admin/partials/wpvivid-backup-restore-page-display.php:32
484
+ #: admin/partials/wpvivid-schedule-page-display.php:24
485
+ #: admin/partials/wpvivid-schedule-page-display.php:36
486
+ #: admin/partials/wpvivid-schedule-page-display.php:98
487
+ #: admin/partials/wpvivid-schedule-page-display.php:146
488
+ msgid "Pro feature: learn more"
489
+ msgstr "Pro функция: научете повече"
490
+
491
+ #: admin/partials/wpvivid-backup-restore-page-display.php:29
492
+ #: admin/partials/wpvivid-schedule-page-display.php:142
493
+ msgid "Custom"
494
+ msgstr "Персонализиране"
495
+
496
+ #: admin/partials/wpvivid-backup-restore-page-display.php:100
497
+ msgid "About backup download"
498
+ msgstr "За изтеглянето на архив"
499
+
500
+ #: admin/partials/wpvivid-backup-restore-page-display.php:102
501
+ msgid "->If backups are stored in remote storage, our plugin will retrieve the backup to your web server first. This may take a little time depending on the size of backup files. Please be patient. Then you can download them to your PC."
502
+ msgstr "->Ако архивите се съхраняват в отдалечено хранилище, нашата приставка ще извлече архива на вашия уеб сървър първо. Това може да отнеме малко време в зависимост от размера на архивните файлове. Моля те, бъди търпелив. След това можете да ги изтеглите на компютъра си."
503
+
504
+ #: admin/partials/wpvivid-backup-restore-page-display.php:103
505
+ msgid "->If backups are stored in web server, the plugin will list all relevant files immediately."
506
+ msgstr "->Ако архивите се съхраняват в уеб сървъра, приставката ще изброи всички съответни файлове незабавно."
507
+
508
+ #: admin/partials/wpvivid-backup-restore-page-display.php:109
509
+ msgid "How to restore your website from a backup(scheduled, manual, uploaded and received backup)"
510
+ msgstr "Как да възстановите уебсайта си от архивно копие (планирано, ръчно, качено и получи резервно копие)"
511
+
512
+ #: admin/partials/wpvivid-backup-restore-page-display.php:123
513
+ msgid "Backups"
514
+ msgstr "Архивиране"
515
+
516
+ #: admin/partials/wpvivid-backup-restore-page-display.php:141
517
+ #: admin/partials/wpvivid-backup-restore-page-display.php:179
518
+ #: admin/partials/wpvivid-backup-restore-page-display.php:892
519
+ msgid "Restore"
520
+ msgstr "Възстановяване"
521
+
522
+ #: admin/partials/wpvivid-backup-restore-page-display.php:176
523
+ msgid "Backup"
524
+ msgstr "Архивиране"
525
+
526
+ #: admin/partials/wpvivid-backup-restore-page-display.php:177
527
+ msgid "Storage"
528
+ msgstr "Обем"
529
+
530
+ #: admin/partials/wpvivid-backup-restore-page-display.php:180
531
+ msgid "Delete"
532
+ msgstr "Изтрий"
533
+
534
+ #: admin/partials/wpvivid-backup-restore-page-display.php:193
535
+ msgid "Delete the selected backups"
536
+ msgstr "Изтриване на избраните архиви"
537
+
538
+ #: admin/partials/wpvivid-backup-restore-page-display.php:725
539
+ msgid "This backup is locked, are you sure to remove it? This backup will be deleted permanently from your hosting (localhost) and remote storages."
540
+ msgstr "Това архивиране е заключено, сигурни ли сте, че сте го махнали? Това архивиране ще бъде изтрито завинаги от вашия хостинг (Localhost) и отдалечени складове."
541
+
542
+ #: admin/partials/wpvivid-backup-restore-page-display.php:729
543
+ msgid "Are you sure to remove this backup? This backup will be deleted permanently from your hosting (localhost) and remote storages."
544
+ msgstr "Сигурни ли сте, че сте го махнали? Това архивиране ще бъде изтрито завинаги от вашия хостинг (Localhost) и отдалечени складове."
545
+
546
+ #: admin/partials/wpvivid-backup-restore-page-display.php:734
547
+ msgid "This request will delete the backup being downloaded, are you sure you want to continue?"
548
+ msgstr "Тази заявка ще изтрие изтегления архив, сигурен ли сте, че искате да продължите?"
549
+
550
+ #: admin/partials/wpvivid-backup-restore-page-display.php:773
551
+ msgid "Please select at least one item."
552
+ msgstr "Изберете поне един елемент."
553
+
554
+ #: admin/partials/wpvivid-backup-restore-page-display.php:778
555
+ msgid "This request might delete the backup being downloaded, are you sure you want to continue?"
556
+ msgstr "Тази заявка може да изтрие изтегленото резервно копие, наистина ли искате да продължите?"
557
+
558
+ #: admin/partials/wpvivid-backup-restore-page-display.php:781
559
+ msgid "Are you sure to remove the selected backups? These backups will be deleted permanently from your hosting (localhost)."
560
+ msgstr "Сигурни ли сте, че сте избрали да премахнете избраните архиви? Тези архиви ще бъдат изтрити завинаги от хостинга ви (Localhost)."
561
+
562
+ #: admin/partials/wpvivid-backup-restore-page-display.php:842
563
+ msgid "Step One: In the backup list, click the 'Restore' button on the backup you want to restore. This will bring up the restore tab"
564
+ msgstr "Първа стъпка: В списъка за архивиране, кликнете върху \"Възстановяване\" бутон на архива, който искате да възстановите. Това ще доведе до раздела за възстановяване"
565
+
566
+ #: admin/partials/wpvivid-backup-restore-page-display.php:843
567
+ msgid "Step Two: Choose an option to complete restore, if any"
568
+ msgstr "Стъпка две: Изберете опция за завършване на възстановяването, ако има такава"
569
+
570
+ #: admin/partials/wpvivid-backup-restore-page-display.php:844
571
+ msgid "Step Three: Click 'Restore' button"
572
+ msgstr "Стъпка трета: Кликнете върху бутона \"Възстановяване\""
573
+
574
+ #: admin/partials/wpvivid-backup-restore-page-display.php:877
575
+ msgid "Restore backup from:"
576
+ msgstr "Възстановяване на архив от:"
577
+
578
+ #: admin/partials/wpvivid-backup-restore-page-display.php:878
579
+ msgid "Please do not close the page or switch to other pages when a restore task is running, as it could trigger some unexpected errors."
580
+ msgstr "Моля, не затваряйте страницата и не превключвайте към други страници, когато изпълнява задача за възстановяване, тъй като тя може да предизвика някои неочаквани грешки."
581
+
582
+ #: admin/partials/wpvivid-backup-restore-page-display.php:879
583
+ msgid "Restore function will replace the current site's themes, plugins, uploads, database and/or other content directories with the existing equivalents in the selected backup."
584
+ msgstr "Функцията за възстановяване ще замени темите, плъгините, качването, базата данни и/или други директории на съдържанието със съществуващите еквиваленти в избрания архив."
585
+
586
+ #: admin/partials/wpvivid-backup-restore-page-display.php:882
587
+ #, php-format
588
+ msgid "Restore and replace the original domain (URL) with %s (migration)"
589
+ msgstr "Възстановяване и заместване на първоначалния домейн (URL) с %s (миграция)"
590
+
591
+ #: admin/partials/wpvivid-backup-restore-page-display.php:885
592
+ msgid "Restore and keep the original domain (URL) unchanged"
593
+ msgstr "Възстановяване и запазване на оригиналния домейн (URL) непроменен"
594
+
595
+ #: admin/partials/wpvivid-backup-restore-page-display.php:889
596
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1787
597
+ msgid "Tips:"
598
+ msgstr "Съвети:"
599
+
600
+ #: admin/partials/wpvivid-backup-restore-page-display.php:889
601
+ msgid "The plugin detects automatically either site restoration or migration (replacing the domain name) based on the current domain name. If the domain name in backup file is same as the current one, it starts restoring. On the contrary, restoring backup means to replace with the current domain name. The precondition is that the backup is created by version 0.9.21 or later."
602
+ msgstr "Приставката открива автоматично или възстановяване на сайт или миграция (заместване на името на домейна) въз основа на текущото име на домейн. Ако името на домейна в архивния файл е същото като текущото, то започва да се възстановява. Напротив, възстановяването на резервното копие означава да замени с текущото име на домейн. Предварително условие е, че архивирането е създаден от версия 0.9.21 или по-нова."
603
+
604
+ #: admin/partials/wpvivid-backup-restore-page-display.php:893
605
+ msgid "Terminate"
606
+ msgstr "Прекрати"
607
+
608
+ #: admin/partials/wpvivid-backup-restore-page-display.php:894
609
+ msgid "Rollback"
610
+ msgstr "Връщане"
611
+
612
+ #: admin/partials/wpvivid-backup-restore-page-display.php:896
613
+ msgid "Retrieve the backup to localhost"
614
+ msgstr "Извличане на резервно копие на localhost"
615
+
616
+ #: admin/partials/wpvivid-backup-restore-page-display.php:897
617
+ msgid "The backup is stored on the remote storage, click on the button to download it to localhost."
618
+ msgstr "Архивът се съхранява на отдалеченото хранилище, кликнете върху бутона, за да го изтеглите в Localhost."
619
+
620
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1489
621
+ msgid "Database Size:"
622
+ msgstr "Размер на базата данни:"
623
+
624
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1490
625
+ msgid "File Size:"
626
+ msgstr "Размер на файла (kb)"
627
+
628
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1493
629
+ #: admin/partials/wpvivid-settings-page-display.php:291
630
+ msgid "Total Size:"
631
+ msgstr "Общ размер:"
632
+
633
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1494
634
+ msgid "Uploaded:"
635
+ msgstr "Качил:"
636
+
637
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1495
638
+ msgid "Speed:"
639
+ msgstr "Скорост:"
640
+
641
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1498
642
+ msgid "Network Connection:"
643
+ msgstr "Мрежова връзка:"
644
+
645
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1504
646
+ msgid "Cancel"
647
+ msgstr "Отказ"
648
+
649
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1557
650
+ msgid "Back Up Manually"
651
+ msgstr "Ръчно архивиране"
652
+
653
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1559
654
+ msgid "Export Content"
655
+ msgstr "Извличане на съдържание"
656
+
657
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1560
658
+ msgid "new feature"
659
+ msgstr "нова функция"
660
+
661
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1563
662
+ msgid "Local Storage Directory:"
663
+ msgstr "Директория за локални хранилища:"
664
+
665
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1565
666
+ msgid "rename directory"
667
+ msgstr "преименуване на директория"
668
+
669
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1594
670
+ msgid "Save Backups to Local"
671
+ msgstr "Запиши архивите локално"
672
+
673
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1598
674
+ msgid "Send Backup to Remote Storage:"
675
+ msgstr "Изпращане на резервно копие на отдалечено хранилище:"
676
+
677
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1611
678
+ msgid "Backup Now"
679
+ msgstr "Архивиране сега"
680
+
681
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1616
682
+ msgid "This backup can only be deleted manually"
683
+ msgstr "Това архивиране може да бъде изтрито само ръчно"
684
+
685
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1787
686
+ msgid "The settings are only for manual backup, which won't affect schedule settings."
687
+ msgstr "Настройките са само за ръчно архивиране, което няма да засегне настройките за график."
688
+
689
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1806
690
+ msgid "Backup Schedule"
691
+ msgstr "Разписание за архивиране"
692
+
693
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1808
694
+ msgid "Schedule Status: "
695
+ msgstr "Състояние на разписание: "
696
+
697
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1810
698
+ msgid "Server Time: "
699
+ msgstr "Час на сървъра: "
700
+
701
+ #: admin/partials/wpvivid-backup-restore-page-display.php:1812
702
+ msgid "Next Backup: "
703
+ msgstr "Следващо архивиране: "
704
+
705
+ #: admin/partials/wpvivid-remote-storage-page-display.php:6
706
+ #: admin/partials/wpvivid-remote-storage-page-display.php:318
707
+ msgid "Storages"
708
+ msgstr "Хранилища"
709
+
710
+ #: admin/partials/wpvivid-remote-storage-page-display.php:14
711
+ #: admin/partials/wpvivid-remote-storage-page-display.php:320
712
+ msgid "Storage Edit"
713
+ msgstr "Редактиране на хранилище"
714
+
715
+ #: admin/partials/wpvivid-remote-storage-page-display.php:26
716
+ #: admin/partials/wpvivid-remote-storage-page-display.php:327
717
+ msgid "Please choose one storage to save your backups (remote storage)"
718
+ msgstr "Изберете едно място за съхранение, за да запазите архивите си (отдалечено хранилище)"
719
+
720
+ #: admin/partials/wpvivid-remote-storage-page-display.php:34
721
+ #: admin/partials/wpvivid-remote-storage-page-display.php:335
722
+ msgid "Storage Provider"
723
+ msgstr "Доставчик на хранилище"
724
+
725
+ #: admin/partials/wpvivid-remote-storage-page-display.php:35
726
+ #: admin/partials/wpvivid-remote-storage-page-display.php:336
727
+ msgid "Remote Storage Alias"
728
+ msgstr "Псевдоним на отдалечено хранилище"
729
+
730
+ #: admin/partials/wpvivid-remote-storage-page-display.php:36
731
+ #: admin/partials/wpvivid-remote-storage-page-display.php:337
732
+ msgid "Actions"
733
+ msgstr "Действия"
734
+
735
+ #: admin/partials/wpvivid-schedule-page-display.php:7
736
+ msgid "Schedule Settings"
737
+ msgstr "Настройки на графика"
738
+
739
+ #: admin/partials/wpvivid-schedule-page-display.php:15
740
+ msgid "Enable backup schedule"
741
+ msgstr "Разрешаване на разписанието за архивиране"
742
+
743
+ #: admin/partials/wpvivid-schedule-page-display.php:20
744
+ msgid "Enable Incremental Backup"
745
+ msgstr "Разрешаване на постъпково архивиране"
746
+
747
+ #: admin/partials/wpvivid-schedule-page-display.php:32
748
+ msgid "Advanced Schedule"
749
+ msgstr "Разширено разписание"
750
+
751
+ #: admin/partials/wpvivid-schedule-page-display.php:85
752
+ msgid "Highlighted icon illuminates that you have choosed a remote storage to store backups"
753
+ msgstr "Маркирана икона осветява, че сте избрали отдалечено съхранение за съхранение на архиви"
754
+
755
+ #: admin/partials/wpvivid-schedule-page-display.php:95
756
+ msgid "+ Add another schedule"
757
+ msgstr "+ Добавяне на друг график"
758
+
759
+ #: admin/partials/wpvivid-schedule-page-display.php:117
760
+ msgid "Scheduled job will start at <strong>UTC</strong> time:"
761
+ msgstr "Планираното задание ще започне по <strong>UTC</strong> време:"
762
+
763
+ #: admin/partials/wpvivid-schedule-page-display.php:118
764
+ msgid "Being subjected to mechanisms of PHP, a scheduled backup task for your site will be triggered only when the site receives at least a visit at any page."
765
+ msgstr "Като се подлага на механизми на PHP, планирана бекъп задача за вашия сайт ще се задейства само когато сайтът получи поне посещение на всяка страница."
766
+
767
+ #: admin/partials/wpvivid-settings-page-display.php:88
768
+ msgid "backups retained"
769
+ msgstr "запазени архиви"
770
+
771
+ #: admin/partials/wpvivid-settings-page-display.php:88
772
+ msgid "Pro feature: Retain more backups"
773
+ msgstr "Pro функция: Запазват повече резервни копия"
774
+
775
+ #: admin/partials/wpvivid-settings-page-display.php:93
776
+ msgid "Calculate the size of files, folder and database before backing up"
777
+ msgstr "Изчислете размера на файловете, папките и базата данни, преди да архивирате"
778
+
779
+ #: admin/partials/wpvivid-settings-page-display.php:99
780
+ msgid "Show WPvivid backup plugin on top admin bar"
781
+ msgstr "Показване на WPvivid резервна добавка на горната администраторска лента"
782
+
783
+ #: admin/partials/wpvivid-settings-page-display.php:105
784
+ msgid "Merge all the backup files into single package when a backup completes. This will save great disk spaces, though takes longer time. We recommended you check the option especially on sites with insufficient server resources."
785
+ msgstr "Обединяване на всички архивни файлове в един пакет, когато архивирането завърши. Това ще спести големи дискови пространства, макар че отнема повече време. Препоръчваме ви да проверите опцията, особено на сайтове с недостатъчни сървърни ресурси."
786
+
787
+ #: admin/partials/wpvivid-settings-page-display.php:111
788
+ msgid "Keep storing the backups in localhost after uploading to remote storage"
789
+ msgstr "Съхранявайте архивите в Localhost след качването на отдалечено хранилище"
790
+
791
+ #: admin/partials/wpvivid-settings-page-display.php:116
792
+ msgid "Backup Folder"
793
+ msgstr "Папка за архивиране"
794
+
795
+ #: admin/partials/wpvivid-settings-page-display.php:118
796
+ msgid "Name your folder, this folder must be writable for creating backup files."
797
+ msgstr "Името на папката трябва да може да се записва за създаване на архивни файлове."
798
+
799
+ #: admin/partials/wpvivid-settings-page-display.php:120
800
+ msgid "Local storage directory:"
801
+ msgstr "Директория за локални хранилища:"
802
+
803
+ #: admin/partials/wpvivid-settings-page-display.php:125
804
+ msgid "Display domain(url) of current site in backup name. (e.g. domain_wpvivid-5ceb938b6dca9_2019-05-27-07-36_backup_all.zip)"
805
+ msgstr "Показване на домейн(URL) на текущия сайт в името на архива. (например domain_wpvivid-5ceb938b6dca9_2019-05-27-07-36_backup_all.zip)"
806
+
807
+ #: admin/partials/wpvivid-settings-page-display.php:130
808
+ msgid "Remove out-of-date backups"
809
+ msgstr "Премахване на архиви с несъстояли"
810
+
811
+ #: admin/partials/wpvivid-settings-page-display.php:134
812
+ msgid "Web Server Directory:"
813
+ msgstr "Директория на уеб сървъра:"
814
+
815
+ #: admin/partials/wpvivid-settings-page-display.php:135
816
+ msgid "Remote Storage Directory:"
817
+ msgstr "Директория за отдалечено съхранение:"
818
+
819
+ #: admin/partials/wpvivid-settings-page-display.php:147
820
+ msgid "Remove"
821
+ msgstr "Премахни"
822
+
823
+ #: admin/partials/wpvivid-settings-page-display.php:148
824
+ msgid "The action is irreversible! It will remove all backups are out-of-date (including local web server and remote storage) if they exist."
825
+ msgstr "Действието е необратимо! Той ще премахне всички архиви са отечещи на дата (включително локален уеб сървър и отдалечено съхранение), ако те съществуват."
826
+
827
+ #: admin/partials/wpvivid-settings-page-display.php:208
828
+ msgid "In order to use this function, please install a <strong><a target=\"_blank\" href=\"https://wpvivid.com/8-best-smtp-plugins-for-wordpress.html\" style=\"text-decoration: none;\">WordPress SMTP plugin</a></strong> of your preference and configure your SMTP server first. This is because WordPress uses the PHP Mail function to send its emails by default, which is not supported by many hosts and can cause issues if it is not set properly."
829
+ msgstr "За да използвате тази функция, моля инсталирайте <strong><a target=\"_blank\" href=\"https://wpvivid.com/8-best-smtp-plugins-for-wordpress.html\" style=\"text-decoration: none;\">WordPress SMTP плъгин</a></strong> на вашите предпочитания и първо да конфигурирате вашия SMTP сървър. Това е така, защото WordPress използва php Mail функция, за да изпраща имейлите си по подразбиране, което не се поддържа от много хостове и може да предизвика проблеми, ако не е зададено правилно."
830
+
831
+ #: admin/partials/wpvivid-settings-page-display.php:213
832
+ msgid "Enable email report"
833
+ msgstr "Разрешаване на отчет за имейл"
834
+
835
+ #: admin/partials/wpvivid-settings-page-display.php:227
836
+ msgid "Test Email"
837
+ msgstr "Тест на имейл"
838
+
839
+ #: admin/partials/wpvivid-settings-page-display.php:232
840
+ msgid "Always send an email notification when a backup is complete"
841
+ msgstr "Винаги изпращайте имейл съобщение, когато архивирането завърши"
842
+
843
+ #: admin/partials/wpvivid-settings-page-display.php:236
844
+ msgid "Only send an email notification when a backup fails"
845
+ msgstr "Само изпраща имейл съобщение, когато архивиране е неуспешно"
846
+
847
+ #: admin/partials/wpvivid-settings-page-display.php:240
848
+ msgid "Pro feature: Add another email address to get report"
849
+ msgstr "Pro функция: Добавете друг имейл адрес, за да получите отчет"
850
+
851
+ #: admin/partials/wpvivid-settings-page-display.php:287
852
+ msgid "Web-server disk space in use by WPvivid"
853
+ msgstr "Уеб сървър дисково пространство използвани от WPvivid"
854
+
855
+ #: admin/partials/wpvivid-settings-page-display.php:293
856
+ msgid "Calculate Sizes"
857
+ msgstr "Изчисляване на размери"
858
+
859
+ #: admin/partials/wpvivid-settings-page-display.php:298
860
+ msgid "logs"
861
+ msgstr "регистри"
862
+
863
+ #: admin/partials/wpvivid-settings-page-display.php:299
864
+ #: admin/partials/wpvivid-settings-page-display.php:310
865
+ #: admin/partials/wpvivid-settings-page-display.php:317
866
+ msgid "Path:"
867
+ msgstr "Път:"
868
+
869
+ #: admin/partials/wpvivid-settings-page-display.php:305
870
+ msgid "Backup Cache"
871
+ msgstr "Кеш за архивиране"
872
+
873
+ #: admin/partials/wpvivid-settings-page-display.php:309
874
+ msgid "Junk"
875
+ msgstr "Нежелана"
876
+
877
+ #: admin/partials/wpvivid-settings-page-display.php:316
878
+ msgid "Temporary Files"
879
+ msgstr "Временни файлове"
880
+
881
+ #: admin/partials/wpvivid-settings-page-display.php:318
882
+ msgid "Temporary Files are created by wpvivid when restoring a website."
883
+ msgstr "Временни файлове са създадени от wpvivid при възстановяване на уеб сайт."
884
+
885
+ #: admin/partials/wpvivid-settings-page-display.php:322
886
+ msgid "Empty"
887
+ msgstr "Празен"
888
+
889
+ #: admin/partials/wpvivid-settings-page-display.php:424
890
+ msgid "Export"
891
+ msgstr "Експортиране"
892
+
893
+ #: admin/partials/wpvivid-settings-page-display.php:425
894
+ msgid "Click 'Export' button to save WPvivid settings on your local computer."
895
+ msgstr "Кликнете върху бутона \"Експортиране\", за да запазите настройките на WPvivid на вашия локален компютър."
896
+
897
+ #: admin/partials/wpvivid-settings-page-display.php:429
898
+ msgid "Import"
899
+ msgstr "Импорт"
900
+
901
+ #: admin/partials/wpvivid-settings-page-display.php:430
902
+ msgid "Importing the json file can help you set WPvivid's configuration on another wordpress site quickly."
903
+ msgstr "Импортирането на Json файл може да ви помогне да настроите конфигурацията WPvivid на друг сайт WordPress бързо."
904
+
905
+ #: admin/partials/wpvivid-settings-page-display.php:550
906
+ msgid "Enable the option when backup failed."
907
+ msgstr "Разрешаване на опцията при неуспешно архивиране."
908
+
909
+ #: admin/partials/wpvivid-settings-page-display.php:550
910
+ msgid "Special optimization for web hosting/shared hosting"
911
+ msgstr "Специална оптимизация за уеб хостинг / споделен хостинг"
912
+
913
+ #: admin/partials/wpvivid-settings-page-display.php:554
914
+ msgid "Enable optimization mode for web hosting/shared hosting"
915
+ msgstr "Активирайте режим за оптимизация за уеб хостинг / споделен хостинг"
916
+
917
+ #: admin/partials/wpvivid-settings-page-display.php:557
918
+ msgid "Enabling this option can improve the backup success rate, but it will take more time for backup."
919
+ msgstr "Активирането на тази опция може да подобри скоростта на успешно архивиране, но ще отнеме повече време за архивиране."
920
+
921
+ #: admin/partials/wpvivid-settings-page-display.php:564
922
+ msgid "Database access method."
923
+ msgstr "Метод за достъп до базата данни."
924
+
925
+ #: admin/partials/wpvivid-settings-page-display.php:569
926
+ msgid "WPDB option has a better compatibility, but the speed of backup and restore is slower."
927
+ msgstr "WPDB опция има по-добра съвместимост, но скоростта на архивиране и възстановяване е по-бавно."
928
+
929
+ #: admin/partials/wpvivid-settings-page-display.php:575
930
+ msgid "It is recommended to choose PDO option if pdo_mysql extension is installed on your server, which lets you backup and restore your site faster."
931
+ msgstr "Препоръчително е да изберете опцията за PDO, ако pdo_mysql разширение е инсталирано на вашия сървър, което ви позволява да архивирате и възстановявате сайта си по-бързо."
932
+
933
+ #: admin/partials/wpvivid-settings-page-display.php:583
934
+ msgid "It will cause a lower CPU Usage and is recommended in a web hosting/ shared hosting environment."
935
+ msgstr "Това ще доведе до по-ниска употреба на CPU и се препоръчва в уеб хостинг / споделена хостинг среда."
936
+
937
+ #: admin/partials/wpvivid-settings-page-display.php:583
938
+ msgid "Only Archive without compressing"
939
+ msgstr "Само архив без компресиране"
940
+
941
+ #: admin/partials/wpvivid-settings-page-display.php:587
942
+ msgid "It will cause a higher CPU Usage and is recommended in a VPS/ dedicated hosting environment."
943
+ msgstr "Това ще доведе до по-висока употреба на CPU и се препоръчва в VPS / посветен хостинг среда."
944
+
945
+ #: admin/partials/wpvivid-settings-page-display.php:587
946
+ msgid "Compress and Archive"
947
+ msgstr "Компресиране и архивиране"
948
+
949
+ #: admin/partials/wpvivid-settings-page-display.php:596
950
+ msgid "Compress Files Every"
951
+ msgstr "Компресиране на файловете Всеки"
952
+
953
+ #: admin/partials/wpvivid-settings-page-display.php:599
954
+ msgid "Some web hosting providers limit large zip files (e.g. 200MB), and therefore splitting your backup into many parts is an ideal way to avoid hitting the limitation if you are running a big website. Please try to adjust the value if you are encountering backup errors. If you use a value of 0 MB, any backup files won't be split."
955
+ msgstr "Някои уеб хостинг доставчици ограничават големи пощенски файлове (например 200MB) и следователно разделянето на архива на много части е идеален начин да избегнете удрянето на ограничението, ако използвате голям уебсайт. Опитайте да коригирате стойността, ако се натъквате на грешки в архива. Ако използвате стойност от 0 МБ, всички архивни файлове няма да бъдат разделени."
956
+
957
+ #: admin/partials/wpvivid-settings-page-display.php:601
958
+ msgid "Exclude the files which are larger than"
959
+ msgstr "Изключване на файлове, които са по-големи от"
960
+
961
+ #: admin/partials/wpvivid-settings-page-display.php:604
962
+ msgid "Using the option will ignore the file larger than the certain size in MB when backing up, '0' (zero) means unlimited."
963
+ msgstr "Използването на опцията ще игнорира файла, по-голям от определен размер в МБ, когато архивирате, \"0\" (нула) означава неограничен."
964
+
965
+ #: admin/partials/wpvivid-settings-page-display.php:606
966
+ msgid "PHP script execution timeout for backup"
967
+ msgstr "Време за изпълнение на PHP скрипт за архивиране"
968
+
969
+ #: admin/partials/wpvivid-settings-page-display.php:609
970
+ msgid "The time-out is not your server PHP time-out. With the execution time exhausted, our plugin will shut the process of backup down. If the progress of backup encounters a time-out, that means you have a medium or large sized website, please try to scale the value bigger."
971
+ msgstr "Времето за изчакване на сървъра не е времето за изчакване на сървъра. С времето за изпълнение изчерпани, нашата приставка ще затвори процеса на архивиране надолу. Ако прогресът на архивирането на данни се сблъска с изчакване, това означава, че имате средно или голям по размер уебсайт, моля, опитайте да мащабите по-голямата стойност."
972
+
973
+ #: admin/partials/wpvivid-settings-page-display.php:611
974
+ msgid "PHP script execution timeout for restore"
975
+ msgstr "Времето за изпълнение на PHP скрипт за възстановяване"
976
+
977
+ #: admin/partials/wpvivid-settings-page-display.php:614
978
+ msgid "The time-out is not your server PHP time-out. With the execution time exhausted, our plugin will shut the process of restore down. If the progress of restore encounters a time-out, that means you have a medium or large sized website, please try to scale the value bigger."
979
+ msgstr "Времето за изчакване на сървъра не е времето за изчакване на сървъра. С времето за изпълнение изчерпани, нашата приставка ще затвори процеса на възстановяване. Ако прогресът на възстановяването на даден период от време, това означава, че имате средно или голям по размер уебсайт, моля, опитайте да мащаба на стойността по-голяма."
980
+
981
+ #: admin/partials/wpvivid-settings-page-display.php:616
982
+ msgid "PHP Memory Limit for backup"
983
+ msgstr "Граница на запаметяване на PHP за архивиране"
984
+
985
+ #: admin/partials/wpvivid-settings-page-display.php:619
986
+ msgid "Adjust this value to apply for a temporary PHP memory limit for WPvivid backup plugin to run a backup. We set this value to 256M by default. Increase the value if you encounter a memory exhausted error. Note: some web hosting providers may not support this."
987
+ msgstr "Коригирайте тази стойност, за да приложите ограничение за временна PHP памет за WPvivid backup плъгин за изпълнение на резервно копие. Тази стойност е 256M по подразбиране. Увеличете стойността, ако се натъкнете на памет изчерпана грешка. Забележка: някои уеб хостинг доставчици може да не поддържат това."
988
+
989
+ #: admin/partials/wpvivid-settings-page-display.php:621
990
+ msgid "PHP Memory Limit for restoration"
991
+ msgstr "Граница на php паметта за възстановяване"
992
+
993
+ #: admin/partials/wpvivid-settings-page-display.php:624
994
+ msgid "Adjust this value to apply for a temporary PHP memory limit for WPvivid backup plugin in restore process. We set this value to 256M by default. Increase the value if you encounter a memory exhausted error. Note: some web hosting providers may not support this."
995
+ msgstr "Коригирайте тази стойност, за да се приложи временно ограничение на PHP паметта за WPvivid резервна добавка в процеса на възстановяване. Тази стойност е 256M по подразбиране. Увеличете стойността, ако се натъкнете на памет изчерпана грешка. Забележка: някои уеб хостинг доставчици може да не поддържат това."
996
+
997
+ #: admin/partials/wpvivid-settings-page-display.php:626
998
+ msgid "Chunk Size"
999
+ msgstr "Размер на парчето"
1000
+
1001
+ #: admin/partials/wpvivid-settings-page-display.php:629
1002
+ msgid "e.g.  if you choose a chunk size of 2MB, a 8MB file will use 4 chunks. Decreasing this value will break the ISP's transmission limit, for example:512KB"
1003
+ msgstr "например.  ако изберете размер на парче 2 МБ, 8MB файл ще използва 4 парчета. Намаляването на тази стойност ще прекъсне границата на пренос на ISP, например: 512 КБ"
1004
+
1005
+ #: admin/partials/wpvivid-settings-page-display.php:643
1006
+ #, php-format
1007
+ msgid "<strong>Retrying </strong>%s<strong> times when encountering a time-out error</strong>"
1008
+ msgstr "<strong>Повторен опит на </strong>%s<strong> пъти при възникване на грешка за изчакване</strong>"
1009
+
1010
+ #: admin/partials/wpvivid-settings-page-display.php:659
1011
+ msgid "General Settings"
1012
+ msgstr "Основни настройки"
1013
+
1014
+ #: admin/partials/wpvivid-settings-page-display.php:665
1015
+ msgid "Advanced Settings"
1016
+ msgstr "Разширение настройки"
1017
+
1018
+ #: includes/class-wpvivid-backup-uploader.php:493
1019
+ msgid "Tips: Click the button below to scan all uploaded or received backups in directory"
1020
+ msgstr "Съвети: Кликнете върху бутона по-долу, за да сканирате всички качени или получени архиви в директорията"
1021
+
1022
+ #: includes/class-wpvivid-backup-uploader.php:496
1023
+ msgid "Scan uploaded backup or received backup"
1024
+ msgstr "Сканиране качено архивиране или получаване на резервно копие"
1025
+
1026
+ #: includes/class-wpvivid-backup-uploader.php:543
1027
+ msgid "Drop files here"
1028
+ msgstr "Пуснете файловете тук"
1029
+
1030
+ #: includes/class-wpvivid-backup-uploader.php:545
1031
+ msgid "Select Files"
1032
+ msgstr "Избиране на файл"
1033
+
1034
+ #: includes/class-wpvivid-backup.php:1062
1035
+ msgid "Ready to backup. Progress: 0%, running time: 0second."
1036
+ msgstr "Готови за подкрепление. Напредък: 0%, време на изпълнение: 0секунда."
1037
+
1038
+ #: includes/class-wpvivid-backup.php:1097
1039
+ #: includes/class-wpvivid-backup.php:1110
1040
+ #: includes/class-wpvivid-export-import.php:1308
1041
+ msgid "Progress: "
1042
+ msgstr "Напредък: "
1043
+
1044
+ #: includes/class-wpvivid-backup.php:1097
1045
+ #: includes/class-wpvivid-backup.php:1110
1046
+ #: includes/class-wpvivid-export-import.php:1308
1047
+ msgid "running time: "
1048
+ msgstr "време на работа: "
1049
+
1050
+ #: includes/class-wpvivid-backup.php:1116
1051
+ #: includes/class-wpvivid-backup.php:1133
1052
+ #: includes/class-wpvivid-function-realize.php:42
1053
+ msgid "The backup will be canceled after backing up the current chunk ends."
1054
+ msgstr "Архивирането ще бъде отменено след архивиране на текущия блок."
1055
+
1056
+ #: includes/class-wpvivid-backup.php:2256
1057
+ #, php-format
1058
+ msgid "Start backing up %s."
1059
+ msgstr "Стартиране на архивирането на %s."
1060
+
1061
+ #: includes/class-wpvivid-backup.php:2264
1062
+ #, php-format
1063
+ msgid "Backing up %s finished."
1064
+ msgstr "Архивирането на %s е завършено."
1065
+
1066
+ #: includes/class-wpvivid-export-import.php:65
1067
+ #: includes/class-wpvivid-export-import.php:78
1068
+ msgid "Export & Import"
1069
+ msgstr "Експортиране - импортиране"
1070
+
1071
+ #: includes/class-wpvivid-export-import.php:119
1072
+ msgid "Export posts or pages with images in bulk."
1073
+ msgstr "Експортирайте публикации или страници с изображения в насипно състояние."
1074
+
1075
+ #: includes/class-wpvivid-export-import.php:121
1076
+ #: includes/class-wpvivid-export-import.php:1515
1077
+ msgid "Learn more"
1078
+ msgstr "Научете още"
1079
+
1080
+ #: includes/class-wpvivid-export-import.php:124
1081
+ msgid "This will contain all of your posts, pages, comments, terms and images (original images, featured images and thumbnails)."
1082
+ msgstr "Това ще съдържа всички ваши публикации, страници, коментари, термини и изображения (оригинални изображения, представени изображения и миниатюри)."
1083
+
1084
+ #: includes/class-wpvivid-export-import.php:125
1085
+ #: includes/class-wpvivid-export-import.php:1518
1086
+ msgid "Note:"
1087
+ msgstr "Бележка:"
1088
+
1089
+ #: includes/class-wpvivid-export-import.php:125
1090
+ msgid "Try to select fewer items when you are facing a shortage of server resources (typically presented as a timeout error)."
1091
+ msgstr "Опитайте да изберете по-малко елементи, когато сте изправени пред недостиг на сървърни ресурси (обикновено представени като грешка за изчакване)."
1092
+
1093
+ #: includes/class-wpvivid-export-import.php:135
1094
+ #, php-format
1095
+ msgid "Exported files will be temporarily stored in %s directory"
1096
+ msgstr "Експортираните файлове ще бъдат временно съхранени в директория %s"
1097
+
1098
+ #: includes/class-wpvivid-export-import.php:141
1099
+ msgid "Choose post type"
1100
+ msgstr "Изберете тип публикация"
1101
+
1102
+ #: includes/class-wpvivid-export-import.php:147
1103
+ msgid "Post"
1104
+ msgstr "Публикация"
1105
+
1106
+ #: includes/class-wpvivid-export-import.php:150
1107
+ msgid "Page"
1108
+ msgstr "Страница"
1109
+
1110
+ #: includes/class-wpvivid-export-import.php:153
1111
+ msgid "More post types coming soon..."
1112
+ msgstr "Скоро ще има още видове пост..."
1113
+
1114
+ #: includes/class-wpvivid-export-import.php:158
1115
+ #: includes/class-wpvivid-export-import.php:181
1116
+ msgid "Next Step"
1117
+ msgstr "Следваща Стъпка"
1118
+
1119
+ #: includes/class-wpvivid-export-import.php:623
1120
+ msgid "Choose what to export"
1121
+ msgstr "Изберете какво да експортирате"
1122
+
1123
+ #: includes/class-wpvivid-export-import.php:631
1124
+ msgid "Filter Posts/Pages"
1125
+ msgstr "Филтриране на публикации/страници"
1126
+
1127
+ #: includes/class-wpvivid-export-import.php:650
1128
+ msgid "All Categories"
1129
+ msgstr "Всички категории"
1130
+
1131
+ #: includes/class-wpvivid-export-import.php:660
1132
+ #, php-format
1133
+ msgid "Export %s of all categories or a specific category."
1134
+ msgstr "Експортиране на %s от всички категории или конкретна категория."
1135
+
1136
+ #: includes/class-wpvivid-export-import.php:680
1137
+ msgid "All Authors"
1138
+ msgstr "Всички автори"
1139
+
1140
+ #: includes/class-wpvivid-export-import.php:691
1141
+ #, php-format
1142
+ msgid "Export %s of all authors or a specific author."
1143
+ msgstr "Експортиране на %s от всички автори или конкретен автор."
1144
+
1145
+ #: includes/class-wpvivid-export-import.php:703
1146
+ #: includes/class-wpvivid-export-import.php:724
1147
+ msgid "&mdash; Select &mdash;"
1148
+ msgstr "&mdash; Изберете &mdash;"
1149
+
1150
+ #: includes/class-wpvivid-export-import.php:712
1151
+ #, php-format
1152
+ msgid "Export %s published after this date."
1153
+ msgstr "Експортиране на %s, публикувано след тази дата."
1154
+
1155
+ #: includes/class-wpvivid-export-import.php:733
1156
+ #, php-format
1157
+ msgid "Export %s published before this date."
1158
+ msgstr "Експортиране на %s, публикувано преди тази дата."
1159
+
1160
+ #: includes/class-wpvivid-export-import.php:769
1161
+ msgid "Search"
1162
+ msgstr "Търсене"
1163
+
1164
+ #: includes/class-wpvivid-export-import.php:776
1165
+ #, php-format
1166
+ msgid "Search for %s according to the above rules."
1167
+ msgstr "Търсене на %s съгласно горните правила."
1168
+
1169
+ #: includes/class-wpvivid-export-import.php:789
1170
+ msgid "Comment the export (optional)"
1171
+ msgstr "Коментиране на експортирането (по избор)"
1172
+
1173
+ #: includes/class-wpvivid-export-import.php:794
1174
+ msgid "Comment the export: "
1175
+ msgstr "Коментирайте износа: "
1176
+
1177
+ #: includes/class-wpvivid-export-import.php:798
1178
+ msgid "Only letters (except for wpvivid) and numbers are allowed."
1179
+ msgstr "Допускат се само букви (с изключение на wpvivid) и цифри."
1180
+
1181
+ #: includes/class-wpvivid-export-import.php:802
1182
+ msgid "Sample:"
1183
+ msgstr "Пример:"
1184
+
1185
+ #: includes/class-wpvivid-export-import.php:811
1186
+ msgid "Export and Download"
1187
+ msgstr "Експортиране и изтегляне"
1188
+
1189
+ #: includes/class-wpvivid-export-import.php:1116
1190
+ msgid "Empty post id"
1191
+ msgstr "Празен ИД на публикация"
1192
+
1193
+ #: includes/class-wpvivid-export-import.php:1123
1194
+ #: includes/class-wpvivid-export-import.php:1159
1195
+ msgid "A task is already running. Please wait until the running task is complete, and try again."
1196
+ msgstr "Вече се изпълнява задача. Изчакайте, докато изпълняваната задача завърши и опитайте отново."
1197
+
1198
+ #: includes/class-wpvivid-export-import.php:1149
1199
+ msgid "Error occurred while parsing the request data. Please try to run export task again."
1200
+ msgstr "Възникна грешка при анализиране на данните за заявката. Опитайте да изпълните задачата за експортиране отново."
1201
+
1202
+ #: includes/class-wpvivid-export-import.php:1304
1203
+ msgid "Ready to export. Progress: 0%, running time: 0second."
1204
+ msgstr "Готови за експортиране. Напредък: 0%, време на изпълнение: 0секунда."
1205
+
1206
+ #: includes/class-wpvivid-export-import.php:1316
1207
+ msgid "The export task is not responding."
1208
+ msgstr "Задачата за експортиране не отговаря."
1209
+
1210
+ #: includes/class-wpvivid-export-import.php:1341
1211
+ msgid "Export error:"
1212
+ msgstr "Грешка при експортиране:"
1213
+
1214
+ #: includes/class-wpvivid-export-import.php:1375
1215
+ msgid "Task time out."
1216
+ msgstr "Време за изчакване на задачата."
1217
+
1218
+ #: includes/class-wpvivid-export-import.php:1482
1219
+ msgid "File size not match. please retry again."
1220
+ msgstr "Размерът на файла не съвпада. опитайте отново."
1221
+
1222
+ #: includes/class-wpvivid-export-import.php:1488
1223
+ msgid "File not found. please retry again."
1224
+ msgstr "Файлът не е намерен. опитайте отново."
1225
+
1226
+ #: includes/class-wpvivid-export-import.php:1513
1227
+ msgid "Import posts or pages with images in bulk."
1228
+ msgstr "Импортирайте публикации или страници с изображения в насипно състояние."
1229
+
1230
+ #: includes/class-wpvivid-export-import.php:1519
1231
+ msgid "To properly display the imported content, please make sure that the importing and exporting sites have the same environment, for example, same theme or pages built with the same page builder."
1232
+ msgstr "За да покажете правилно импортираното съдържание, уверете се, че обектите за импортиране и експортиране имат една и съща среда, например същата тема или страници, създадени със същия конструктор на страници."
1233
+
1234
+ #: includes/class-wpvivid-export-import.php:1528
1235
+ #, php-format
1236
+ msgid "Imported files will be temporarily stored in directory %s"
1237
+ msgstr "Импортираните файлове ще бъдат временно съхранени в директория %s"
1238
+
1239
+ #: includes/class-wpvivid-export-import.php:1529
1240
+ msgid "Delete Exported Files In Folder"
1241
+ msgstr "Изтриване на експортираните файлове в папката"
1242
+
1243
+ #: includes/class-wpvivid-export-import.php:1534
1244
+ msgid "Choose an export from your computer to import: "
1245
+ msgstr "Изберете експортиране от компютъра за импортиране: "
1246
+
1247
+ #: includes/class-wpvivid-export-import.php:1535
1248
+ msgid "Upload and Import"
1249
+ msgstr "Качване и импортиране"
1250
+
1251
+ #: includes/class-wpvivid-export-import.php:1538
1252
+ #, php-format
1253
+ msgid "Or you can use ftp to upload the export to the directory %s. Then click the button below to scan the file to import."
1254
+ msgstr "Или можете да използвате FTP, за да качите експортирането в директорията %s. След това кликнете върху бутона по-долу, за да сканирате файла за импортиране."
1255
+
1256
+ #: includes/class-wpvivid-export-import.php:1539
1257
+ msgid "Scan Uploaded Exports"
1258
+ msgstr "Сканиране на качените експорти"
1259
+
1260
+ #: includes/class-wpvivid-export-import.php:1543
1261
+ msgid "The importing file info"
1262
+ msgstr "Информация за файла за импортиране"
1263
+
1264
+ #: includes/class-wpvivid-export-import.php:1546
1265
+ msgid "Assign author"
1266
+ msgstr "Присвояване на автор"
1267
+
1268
+ #: includes/class-wpvivid-export-import.php:1548
1269
+ msgid "Select an existing author:"
1270
+ msgstr "Изберете съществуващ автор:"
1271
+
1272
+ #: includes/class-wpvivid-export-import.php:1549
1273
+ msgid "- Select -"
1274
+ msgstr "- Избери -"
1275
+
1276
+ #: includes/class-wpvivid-export-import.php:1551
1277
+ msgid "Import Setting"
1278
+ msgstr "Настройки за импортиране"
1279
+
1280
+ #: includes/class-wpvivid-export-import.php:1555
1281
+ msgid "Overwrite existing pages"
1282
+ msgstr "Презапис на съществуващи страници"
1283
+
1284
+ #: includes/class-wpvivid-export-import.php:1559
1285
+ msgid "With this option checked, Pages/posts already existing will be overwritten with the updated ones in an import."
1286
+ msgstr "При тази отметка, страници/публикации, които вече са съществуващи, ще бъдат презаписани с актуализираните в импортираните."
1287
+
1288
+ #: includes/class-wpvivid-export-import.php:1561
1289
+ msgid "Start to Import"
1290
+ msgstr "Начало на импортиране"
1291
+
1292
+ #: includes/class-wpvivid-export-import.php:1562
1293
+ msgid "Back to Import Page"
1294
+ msgstr "Обратно към страницата за импортиране"
1295
+
1296
+ #: includes/class-wpvivid-exporter.php:71
1297
+ #: includes/class-wpvivid-importer.php:50
1298
+ msgid "Select All"
1299
+ msgstr "Избор на всичко"
1300
+
1301
+ #: includes/class-wpvivid-exporter.php:118
1302
+ msgid "Author"
1303
+ msgstr "Автор"
1304
+
1305
+ #: includes/class-wpvivid-exporter.php:150
1306
+ msgid "Comments"
1307
+ msgstr "Коментари"
1308
+
1309
+ #: includes/class-wpvivid-exporter.php:265
1310
+ msgid "Unpublished"
1311
+ msgstr "Непубликуван"
1312
+
1313
+ #: includes/class-wpvivid-exporter.php:275
1314
+ #, php-format
1315
+ msgid "%s ago"
1316
+ msgstr "преди %s"
1317
+
1318
+ #: includes/class-wpvivid-exporter.php:282
1319
+ msgid "Published"
1320
+ msgstr "Публикувана"
1321
+
1322
+ #: includes/class-wpvivid-exporter.php:285
1323
+ msgid "Missed schedule"
1324
+ msgstr "Пропуснат график"
1325
+
1326
+ #: includes/class-wpvivid-exporter.php:287
1327
+ msgid "Scheduled"
1328
+ msgstr "Планирана"
1329
+
1330
+ #: includes/class-wpvivid-exporter.php:290
1331
+ msgid "Last Modified"
1332
+ msgstr "Последна промяна"
1333
+
1334
+ #: includes/class-wpvivid-exporter.php:548
1335
+ #: includes/class-wpvivid-importer.php:304
1336
+ msgid "First page"
1337
+ msgstr "Първа страница"
1338
+
1339
+ #: includes/class-wpvivid-exporter.php:559
1340
+ #: includes/class-wpvivid-importer.php:315
1341
+ msgid "Previous page"
1342
+ msgstr "Предишна страница"
1343
+
1344
+ #: includes/class-wpvivid-exporter.php:566
1345
+ #: includes/class-wpvivid-exporter.php:570
1346
+ #: includes/class-wpvivid-importer.php:322
1347
+ #: includes/class-wpvivid-importer.php:326
1348
+ msgid "Current Page"
1349
+ msgstr "Текуща Страница"
1350
+
1351
+ #: includes/class-wpvivid-exporter.php:584
1352
+ #: includes/class-wpvivid-importer.php:340
1353
+ msgid "Next page"
1354
+ msgstr "Следваща страница"
1355
+
1356
+ #: includes/class-wpvivid-exporter.php:594
1357
+ #: includes/class-wpvivid-importer.php:350
1358
+ msgid "Last page"
1359
+ msgstr "Последна страница"
1360
+
1361
+ #: includes/class-wpvivid-function-realize.php:65
1362
+ #: includes/class-wpvivid-function-realize.php:93
1363
+ msgid "Retrieving the backup information failed while showing log. Please try again later."
1364
+ msgstr "Извличането на архивната информация е неуспешно при показване на регистрационния файл. Моля, опитайте отново по-късно."
1365
+
1366
+ #: includes/class-wpvivid-function-realize.php:70
1367
+ #: includes/class-wpvivid-function-realize.php:82
1368
+ #: includes/class-wpvivid-function-realize.php:99
1369
+ msgid "The log not found."
1370
+ msgstr "Регистрационният файл не е намерен."
1371
+
1372
+ #: includes/class-wpvivid-importer.php:86
1373
+ msgid "File Name"
1374
+ msgstr "Име на файл"
1375
+
1376
+ #: includes/class-wpvivid-importer.php:87
1377
+ msgid "Post Types"
1378
+ msgstr "Видове публикации"
1379
+
1380
+ #: includes/class-wpvivid-importer.php:88
1381
+ msgid "Count"
1382
+ msgstr "Брой"
1383
+
1384
+ #: includes/class-wpvivid-importer.php:89
1385
+ msgid "Media Files Size"
1386
+ msgstr "Размер на медийните файлове"
1387
+
1388
+ #: includes/class-wpvivid-importer.php:167
1389
+ msgid "Type: "
1390
+ msgstr "Тип: "
1391
+
1392
+ #: includes/class-wpvivid-importer.php:1669
1393
+ msgid "File not exist, file:"
1394
+ msgstr "Файлът не съществува, файл:"
1395
+
1396
+ #: includes/class-wpvivid-importer.php:1676
1397
+ #: includes/class-wpvivid-importer.php:1777
1398
+ msgid "Sorry, this file type is not permitted for security reasons."
1399
+ msgstr "За съжаление, този тип файлове не е разрешен от съображения за сигурност."
1400
+
1401
+ #: includes/class-wpvivid-importer.php:1724
1402
+ msgid "Fetching attachments is not enabled"
1403
+ msgstr "Извличането на прикачени файлове не е активирано"
1404
+
1405
+ #: includes/class-wpvivid-importer.php:1737
1406
+ msgid "Invalid file type"
1407
+ msgstr "Невалиден тип файл"
1408
+
1409
+ #: includes/class-wpvivid-importer.php:1782
1410
+ msgid "File not exist file:"
1411
+ msgstr "Файлът не съществува:"
1412
+
1413
+ #: includes/class-wpvivid-importer.php:1877
1414
+ #: includes/class-wpvivid-importer.php:1913
1415
+ #: includes/class-wpvivid-importer.php:1921
1416
+ msgid "There was an error when reading this WXR file"
1417
+ msgstr "При четене на този WXR файл възникна грешка"
1418
+
1419
+ #: includes/class-wpvivid-importer.php:1878
1420
+ msgid "Details are shown above. The importer will now try again with a different parser..."
1421
+ msgstr "Подробностите са показани по-горе. Ще опитаме отново с друг анализатор ..."
1422
+
1423
+ #: includes/class-wpvivid-importer.php:1925
1424
+ #: includes/class-wpvivid-importer.php:1930
1425
+ #: includes/class-wpvivid-importer.php:2155
1426
+ #: includes/class-wpvivid-importer.php:2351
1427
+ msgid "This does not appear to be a WXR file, missing/invalid WXR version number"
1428
+ msgstr "Това изглежда не е WXR файл, липсващ или невалиден номер на версията на WXR"
1429
+
1430
+ #: includes/class-wpvivid-interface-mainwp.php:138
1431
+ msgid "Error occurred while parsing the request data. Please try to run backup again."
1432
+ msgstr "Възникна грешка при анализиране на данните за заявката. Опитайте да изпълните отново архивиране."
1433
+
1434
+ #: includes/class-wpvivid-interface-mainwp.php:182
1435
+ #: includes/class-wpvivid-interface-mainwp.php:220
1436
+ #: includes/class-wpvivid-interface-mainwp.php:273
1437
+ msgid "Unable to open the log file."
1438
+ msgstr "Регистрационният файл не може да се отвори."
1439
+
1440
+ #: includes/class-wpvivid-interface-mainwp.php:211
1441
+ msgid "Reading the log failed. Please try again."
1442
+ msgstr "Четенето на регистрационния файл е неуспешно. Моля, опитайте отново."
1443
+
1444
+ #: includes/class-wpvivid-mail-report.php:558
1445
+ msgid "Unable to send email. Please check the configuration of email server."
1446
+ msgstr "Не може да се изпрати имейл. Моля, проверете конфигурацията на имейл сървъра."
1447
+
1448
+ #: includes/class-wpvivid-migrate.php:49
1449
+ msgid "Auto-Migration"
1450
+ msgstr "Автоматично мигриране"
1451
+
1452
+ #: includes/class-wpvivid-migrate.php:55
1453
+ msgid "Key"
1454
+ msgstr "Ключ"
1455
+
1456
+ #: includes/class-wpvivid-migrate.php:390
1457
+ msgid "In order to allow another site to send a backup to this site, please generate a key below. Once the key is generated, this site is ready to receive a backup from another site. Then, please copy and paste the key in sending site and save it."
1458
+ msgstr "За да позволите на друг сайт да изпрати резервно копие на този сайт, моля генерирайте ключ по-долу. След като ключът е генериран, този сайт е готов да получи резервно копие от друг сайт. След това копирайте и поставете ключа в изпращането на сайта и го запазете."
1459
+
1460
+ #: includes/class-wpvivid-migrate.php:392
1461
+ msgid "The key will expire in "
1462
+ msgstr "Ключът ще изтече в "
1463
+
1464
+ #: includes/class-wpvivid-migrate.php:399
1465
+ msgid "Tips: For security reason, please choose an appropriate expiration time for the key."
1466
+ msgstr "Съвети: Поради причини за сигурност, моля, изберете подходящо време за изтичане на ключа."
1467
+
1468
+ #: includes/class-wpvivid-migrate.php:401
1469
+ msgid "Generate"
1470
+ msgstr "Генериране"
1471
+
1472
+ #: includes/class-wpvivid-migrate.php:850
1473
+ msgid "Please paste the key below."
1474
+ msgstr "Моля, поставете ключа по-долу."
1475
+
1476
+ #: includes/class-wpvivid-migrate.php:850
1477
+ msgid "How to get a site key?"
1478
+ msgstr "Как да получите ключ за сайта?"
1479
+
1480
+ #: includes/class-wpvivid-migrate.php:853
1481
+ msgid "Save"
1482
+ msgstr "Запази"
1483
+
1484
+ #: includes/class-wpvivid-migrate.php:969
1485
+ msgid "1. Visit Key tab page of WPvivid backup plugin of destination site."
1486
+ msgstr "1. Посетете ключови раздел на WPvivid резервна плъгин на целевия сайт."
1487
+
1488
+ #: includes/class-wpvivid-migrate.php:970
1489
+ msgid "2. Generate a key by clicking Generate button and copy it."
1490
+ msgstr "2. Генерирайте ключ, като кликнете върху бутона \"Генерирам\" и го копирайте."
1491
+
1492
+ #: includes/class-wpvivid-migrate.php:971
1493
+ msgid "3. Go back to this page and paste the key in key box below. Lastly, click Save button."
1494
+ msgstr "3, Върнете се на тази страница и поставете ключа в полето по-долу. Накрая, щракнете върху Бутона Запазване."
1495
+
1496
+ #: includes/class-wpvivid-migrate.php:985
1497
+ msgid "The feature can help you transfer a Wordpress site to a new domain(site). It would be a convenient way to migrate your WP site from dev environment to live server or from old server to the new."
1498
+ msgstr "Функцията може да ви помогне да прехвърлите wordpress сайт в нов домейн (сайт). Това би било удобен начин да мигрирате вашия WP сайт от dev среда на сървър на живо или от стар сървър към нов."
1499
+
1500
+ #: includes/class-wpvivid-migrate.php:995
1501
+ msgid "Choose the content you want to transfer"
1502
+ msgstr "Изберете съдържанието, което искате да прехвърлите"
1503
+
1504
+ #: includes/class-wpvivid-migrate.php:1010
1505
+ msgid "Clone then Transfer"
1506
+ msgstr "Клонинг след това прехвърляне"
1507
+
1508
+ #: includes/class-wpvivid-migrate.php:1090
1509
+ msgid "Note: "
1510
+ msgstr "Забележка: "
1511
+
1512
+ #: includes/class-wpvivid-migrate.php:1091
1513
+ msgid "1. In order to successfully complete the migration, you'd better deactivate <a href=\"https://wpvivid.com/best-redirect-plugins.html\" target=\"_blank\" style=\"text-decoration: none;\">301 redirect plugin</a>, <a href=\"https://wpvivid.com/8-best-wordpress-firewall-plugins.html\" target=\"_blank\" style=\"text-decoration: none;\">firewall and security plugin</a>, and <a href=\"https://wpvivid.com/best-free-wordpress-caching-plugins.html\" target=\"_blank\" style=\"text-decoration: none;\">caching plugin</a> (if they exist) before transferring website."
1514
+ msgstr "1. За да завършите успешно миграцията, по-добре деактивирайте <a href=\"https://wpvivid.com/best-redirect-plugins.html\" target=\"_blank\" style=\"text-decoration: none;\">301 приставка за пренасочване,</a> <a href=\"https://wpvivid.com/8-best-wordpress-firewall-plugins.html\" target=\"_blank\" style=\"text-decoration: none;\">защитна стена и приставка за сигурност</a>и <a href=\"https://wpvivid.com/best-free-wordpress-caching-plugins.html\" target=\"_blank\" style=\"text-decoration: none;\">кеширане плъгин</a> (ако те съществуват) преди прехвърлянето на уебсайта."
1515
+
1516
+ #: includes/class-wpvivid-migrate.php:1092
1517
+ msgid "2. Please migrate website with the manual way when using <strong>Local by Flywheel</strong> environment."
1518
+ msgstr "2. Моля мигрирайте уебсайт с ръчното използване на <strong>local by Flywheel</strong> среда."
1519
+
1520
+ #: includes/class-wpvivid-migrate.php:1098
1521
+ msgid "<strong>Tips: </strong>The unstable connection between sites could cause a failure of files transfer. In this case, uploading backups to destination site is a good alternative to the automatic website migration."
1522
+ msgstr "<strong>Съвети:</strong> Нестабилната връзка между сайтове може да доведе до отказ на прехвърляне на файлове. В този случай качването на резервни копия на сайта местоназначение е добра алтернатива на автоматичната миграция на уебсайта."
1523
+
1524
+ #: includes/class-wpvivid-migrate.php:1099
1525
+ msgid "How to migrate Wordpress site manually to a new domain(site) with WPvivid backup plugin?"
1526
+ msgstr "Как да мигрирате WordPress сайт ръчно в нов домейн (сайт) с WPvivid резервна добавка?"
1527
+
1528
+ #: includes/class-wpvivid-migrate.php:1100
1529
+ msgid "1. Download a backup in backups list to your computer."
1530
+ msgstr "1. Изтеглете резервно копие в списъка с резервни копия на компютъра си."
1531
+
1532
+ #: includes/class-wpvivid-migrate.php:1101
1533
+ msgid "2. Upload the backup to destination site. There are two ways available to use:"
1534
+ msgstr "2. Качете резервното копие на мястото на местоназначението. Има два начина, които могат да се използват:"
1535
+
1536
+ #: includes/class-wpvivid-migrate.php:1102
1537
+ msgid "2.1 Upload the backup to the upload section of WPvivid backup plugin in destination site."
1538
+ msgstr "2.1 Качване на резервно копие в секцията за качване на WPvivid резервна плъгин в целевия сайт."
1539
+
1540
+ #: includes/class-wpvivid-migrate.php:1103
1541
+ #, php-format
1542
+ msgid "2.2 Upload the backup with FTP client to backup directory %s in destination site, then click <strong>Scan uploaded backup or received backup</strong> button."
1543
+ msgstr "2.2 Качване на резервно копие с FTP клиент в директорията за архивиране %s в целевия сайт, след което щракнете върху <strong>Сканиране качено архивиране или получи бутон за архивиране</strong>."
1544
+
1545
+ #: includes/class-wpvivid-migrate.php:1104
1546
+ msgid "3. Once done, the backup appears in backups list. Then, restore the backup."
1547
+ msgstr "3. След като направите, архивирането се появява в списъка с резервни копия. След това възстановете архива."
1548
+
1549
+ #: includes/class-wpvivid-migrate.php:1124
1550
+ msgid "Choose what to migrate"
1551
+ msgstr "Изберете какво да мигрирате"
1552
+
1553
+ #: includes/class-wpvivid-migrate.php:1185
1554
+ msgid "Transfer succeeded. Please scan the backup list on the destination site to display the backup, then restore the backup."
1555
+ msgstr "Прехвърлянето е успешно. Сканирайте списъка с резервни копия на сайта местоназначение, за да покажете архива, след което възстановете архива."
1556
+
1557
+ #: includes/class-wpvivid-migrate.php:1245
1558
+ msgid "Upload"
1559
+ msgstr "Качи"
1560
+
1561
+ #: includes/class-wpvivid-migrate.php:1255
1562
+ #, php-format
1563
+ msgid "The backups will be uploaded to %s directory."
1564
+ msgstr "Архивните файлове ще бъдат качени в директория %s."
1565
+
1566
+ #: includes/class-wpvivid-migrate.php:1258
1567
+ msgid "Note: The files you want to upload must be a backup created by WPvivid backup plugin. Make sure that uploading every part of a backup to the directory if the backup is split into many parts"
1568
+ msgstr "Забележка: Файловете, които искате да качите, трябва да бъдат резервно копие, създадено от WPvivid backup плъгин. Уверете се, че качването на всяка част от архива в директорията, ако архивирането е разделено на много части"
1569
+
1570
+ #: includes/class-wpvivid-schedule.php:34
1571
+ msgid "12 Hours"
1572
+ msgstr "12 часа"
1573
+
1574
+ #: includes/class-wpvivid-schedule.php:40
1575
+ #: includes/class-wpvivid-schedule.php:94
1576
+ msgid "Daily"
1577
+ msgstr "Ежедневно"
1578
+
1579
+ #: includes/class-wpvivid-schedule.php:46
1580
+ #: includes/class-wpvivid-schedule.php:97
1581
+ msgid "Weekly"
1582
+ msgstr "Седмично"
1583
+
1584
+ #: includes/class-wpvivid-schedule.php:52
1585
+ #: includes/class-wpvivid-schedule.php:100
1586
+ msgid "Fortnightly"
1587
+ msgstr "Две седмици"
1588
+
1589
+ #: includes/class-wpvivid-schedule.php:58
1590
+ #: includes/class-wpvivid-schedule.php:103
1591
+ msgid "Monthly"
1592
+ msgstr "Месечно"
1593
+
1594
+ #: includes/class-wpvivid-schedule.php:91
1595
+ msgid "12Hours"
1596
+ msgstr "12Часа"
1597
+
1598
+ #: includes/class-wpvivid-schedule.php:282
1599
+ #: includes/class-wpvivid-schedule.php:296
1600
+ msgid "Creating scheduled tasks failed. Please try again later."
1601
+ msgstr "Неуспешно създаване на планирани задачи. Моля, опитайте отново по-късно."
1602
+
1603
+ #: includes/class-wpvivid.php:507
1604
+ #: includes/class-wpvivid.php:515
1605
+ msgid "A backup type is required."
1606
+ msgstr "Изисква се тип архивиране."
1607
+
1608
+ #: includes/class-wpvivid.php:521
1609
+ #: includes/class-wpvivid.php:530
1610
+ msgid "Choose at least one storage location for backups."
1611
+ msgstr "Изберете поне едно място за съхранение за архивиране."
1612
+
1613
+ #: includes/class-wpvivid.php:541
1614
+ #: includes/class-wpvivid.php:4557
1615
+ msgid "There is no default remote storage configured. Please set it up first."
1616
+ msgstr "Няма конфигурирано отдалечено място за съхранение по подразбиране. Моля, първо го настройте."
1617
+
1618
+ #: includes/class-wpvivid.php:1408
1619
+ #: includes/class-wpvivid.php:1430
1620
+ #: includes/class-wpvivid.php:1456
1621
+ #: includes/class-wpvivid.php:1581
1622
+ #: includes/class-wpvivid.php:1701
1623
+ msgid "Too many resumption attempts."
1624
+ msgstr "Твърде много опити за възобновяване."
1625
+
1626
+ #: includes/class-wpvivid.php:1589
1627
+ #: includes/class-wpvivid.php:1709
1628
+ msgid "Task timed out."
1629
+ msgstr "Времето за изчакване на задачата изтече."
1630
+
1631
+ #: includes/class-wpvivid.php:2479
1632
+ msgid "Retrieving the backup(s) information failed while deleting the selected backup(s). Please try again later."
1633
+ msgstr "Извличането на информация за архивирането е неуспешно при изтриване на избраните архиви. Моля, опитайте отново по-късно."
1634
+
1635
+ #: includes/class-wpvivid.php:2489
1636
+ msgid "Unable to delete the locked backup. Please unlock it first and try again."
1637
+ msgstr "Не може да се изтрие заключеното архивиране. Първо го отключите и опитайте отново."
1638
+
1639
+ #: includes/class-wpvivid.php:2592
1640
+ msgid "You have successfully added a remote storage."
1641
+ msgstr "Успешно сте добавили отдалечено хранилище."
1642
+
1643
+ #: includes/class-wpvivid.php:2644
1644
+ msgid "Fail to delete the remote storage, can not retrieve the storage infomation. Please try again."
1645
+ msgstr "Не може да изтриете отдалеченото хранилище, не може да извлече информацията за съхранение. Моля, опитайте отново."
1646
+
1647
+ #: includes/class-wpvivid.php:2672
1648
+ msgid "Failed to get the remote storage information. Please try again later."
1649
+ msgstr "Неуспешно получаване на информация за отдалечено съхранение. Моля, опитайте отново по-късно."
1650
+
1651
+ #: includes/class-wpvivid.php:3416
1652
+ msgid "restore failed error unknown"
1653
+ msgstr "неизвестна грешка при възстановяване"
1654
+
1655
+ #: includes/class-wpvivid.php:3449
1656
+ msgid "The restore file not found. Please verify the file exists."
1657
+ msgstr "Файлът за възстановяване не е намерен. Проверете дали файлът съществува."
1658
+
1659
+ #: includes/class-wpvivid.php:3561
1660
+ #: includes/class-wpvivid.php:3577
1661
+ msgid "The last backup message not found."
1662
+ msgstr "Последното съобщение за архивиране не е намерено."
1663
+
1664
+ #: includes/class-wpvivid.php:3580
1665
+ msgid "Last Backup: "
1666
+ msgstr "Последно архивиране: "
1667
+
1668
+ #: includes/class-wpvivid.php:3677
1669
+ #, php-format
1670
+ msgid "%d backup tasks have been completed. Please switch to <a href=\"#\" onclick=\"wpvivid_click_switch_page('wrap', 'wpvivid_tab_log', true);\">Log</a> page to check the details."
1671
+ msgstr "%d архивиране са завършени. Преминете към <a href=\"#\" onclick=\"wpvivid_click_switch_page('wrap', 'wpvivid_tab_log', true);\">логаритмичен</a> страницата, за да проверите данните."
1672
+
1673
+ #: includes/class-wpvivid.php:3770
1674
+ msgid "Getting backup directory failed. Please try again later."
1675
+ msgstr "Неуспешно получаване на директория за архивиране. Моля, опитайте отново по-късно."
1676
+
1677
+ #: includes/class-wpvivid.php:3965
1678
+ msgid "Choose at least one type of junk files for deleting."
1679
+ msgstr "Изберете поне един тип нежелани файлове за изтриване."
1680
+
1681
+ #: includes/class-wpvivid.php:4039
1682
+ msgid "The selected junk flies have been deleted."
1683
+ msgstr "Избраните нежелани мухи са били изтрити."
1684
+
1685
+ #: includes/class-wpvivid.php:4210
1686
+ msgid "Choose one storage from the list to be the default storage."
1687
+ msgstr "Изберете едно място за съхранение от списъка, за да бъде хранилището по подразбиране."
1688
+
1689
+ #: includes/class-wpvivid.php:4465
1690
+ #: includes/class-wpvivid.php:4473
1691
+ msgid "The maximum zip file size is required."
1692
+ msgstr "Изисква се максималният размер на zip файла."
1693
+
1694
+ #: includes/class-wpvivid.php:4479
1695
+ #: includes/class-wpvivid.php:4486
1696
+ msgid "The size for excluded files is required."
1697
+ msgstr "Размерът на изключените файлове е необходим."
1698
+
1699
+ #: includes/class-wpvivid.php:4492
1700
+ #: includes/class-wpvivid.php:4499
1701
+ msgid "The maximum execution time for PHP script is required."
1702
+ msgstr "Изисква се максимално време за изпълнение на PHP скрипт."
1703
+
1704
+ #: includes/class-wpvivid.php:4505
1705
+ #: includes/class-wpvivid.php:4512
1706
+ msgid "The local storage path is required."
1707
+ msgstr "Изисква се локален път за съхранение."
1708
+
1709
+ #: includes/class-wpvivid.php:4522
1710
+ msgid "An email address is required."
1711
+ msgstr "Изисква се имейл адрес."
1712
+
1713
+ #: includes/class-wpvivid.php:4531
1714
+ #: includes/class-wpvivid.php:4535
1715
+ msgid "The pdo_mysql extension is not detected. Please install the extension first or choose wpdb option for Database connection method."
1716
+ msgstr "Не е открито разширението на pdo_mysql. Моля, първо инсталирайте разширението или изберете wpdb опция за метод за връзка с база данни."
1717
+
1718
+ #: includes/class-wpvivid.php:4654
1719
+ msgid "The selected file is not the setting file for WPvivid. Please upload the right file."
1720
+ msgstr "Избраният файл не е файл за настройка за WPvivid. Моля, качете правилния файл."
1721
+
1722
+ #: includes/class-wpvivid.php:4676
1723
+ msgid "Invalid email address"
1724
+ msgstr "Невалиден email"
1725
+
1726
+ #: includes/class-wpvivid.php:5248
1727
+ msgid "Type:"
1728
+ msgstr "Вид:"
1729
+
1730
+ #: includes/class-wpvivid.php:5402
1731
+ msgid "Save backups on localhost (web server)"
1732
+ msgstr "Запазване на архивите на localhost (уеб сървър)"
1733
+
1734
+ #: includes/class-wpvivid.php:5406
1735
+ msgid "Send backups to remote storage (choose this option, the local backup will be deleted after uploading to remote storage completely)"
1736
+ msgstr "Изпращане на резервни копия на отдалечено съхранение (изберете тази опция, локалния архив ще бъде изтрит след качването на отдалечено съхранение напълно)"
1737
+
1738
+ #: includes/class-wpvivid.php:5571
1739
+ msgid "User's email address is required."
1740
+ msgstr "Имейл адрес на потребителя е необходим."
1741
+
1742
+ #: includes/class-wpvivid.php:5576
1743
+ msgid "Please enter a valid email address."
1744
+ msgstr "Моля, въведете валиден имейл адрес."
1745
+
1746
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:44
1747
+ msgid "Amazon S3"
1748
+ msgstr "1000000000"
1749
+
1750
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:62
1751
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:200
1752
+ msgid "Enter Your Amazon S3 Account"
1753
+ msgstr "Въведете своя профил в Amazon S3"
1754
+
1755
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:70
1756
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:208
1757
+ msgid "Enter a unique alias: e.g. Amazon S3-001"
1758
+ msgstr "Въведете уникален псевдоним: например Amazon S3-001"
1759
+
1760
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:75
1761
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:213
1762
+ #: includes/customclass/class-wpvivid-dropbox.php:477
1763
+ #: includes/customclass/class-wpvivid-dropbox.php:602
1764
+ #: includes/customclass/class-wpvivid-ftpclass.php:57
1765
+ #: includes/customclass/class-wpvivid-ftpclass.php:184
1766
+ #: includes/customclass/class-wpvivid-google-drive.php:319
1767
+ #: includes/customclass/class-wpvivid-google-drive.php:447
1768
+ msgid "A name to help you identify the storage if you have multiple remote storage connected."
1769
+ msgstr "Име, което да ви помогне да идентифицирате хранилището, ако сте свързани няколко отдалечени места за съхранение."
1770
+
1771
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:82
1772
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:220
1773
+ msgid "Amazon S3 access key"
1774
+ msgstr "Ключ за достъп на Amazon S3"
1775
+
1776
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:87
1777
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:225
1778
+ msgid "Enter your Amazon S3 access key."
1779
+ msgstr "Въведете ключа си за достъп до Amazon S3."
1780
+
1781
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:87
1782
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:225
1783
+ msgid "How to get an AmazonS3 access key."
1784
+ msgstr "Как да получите достъп до AmazonS3 ключ."
1785
+
1786
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:94
1787
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:232
1788
+ msgid "Amazon S3 secret key"
1789
+ msgstr "Тайният ключ на Amazon S3"
1790
+
1791
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:99
1792
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:237
1793
+ msgid "Enter your Amazon S3 secret key."
1794
+ msgstr "Въведете вашия Amazon S3 тайна ключ."
1795
+
1796
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:99
1797
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:237
1798
+ msgid "How to get an AmazonS3 secret key."
1799
+ msgstr "Как да получите тайната на AmazonS3 ключ."
1800
+
1801
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:106
1802
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:244
1803
+ msgid "Amazon S3 Bucket Name(e.g. test)"
1804
+ msgstr "Име на кофата на Амазонка S3 (напр. тест)"
1805
+
1806
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:111
1807
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:249
1808
+ msgid "Enter an existed Bucket to create a custom backup storage directory."
1809
+ msgstr "Въведете съществувало хранилище, за да създадете директория за съхранение по избор."
1810
+
1811
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:118
1812
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:256
1813
+ msgid "Custom Path"
1814
+ msgstr "Път по избор"
1815
+
1816
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:123
1817
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:261
1818
+ msgid "Customize the directory where you want to store backups within the Bucket."
1819
+ msgstr "Персонализирайте директорията, в която искате да съхранявате архиви в \"Кофа\"."
1820
+
1821
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:131
1822
+ #: includes/customclass/class-wpvivid-dropbox.php:509
1823
+ #: includes/customclass/class-wpvivid-ftpclass.php:125
1824
+ #: includes/customclass/class-wpvivid-google-drive.php:351
1825
+ msgid "Set as the default remote storage."
1826
+ msgstr "Задайте като отдалечено хранилище по подразбиране."
1827
+
1828
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:137
1829
+ #: includes/customclass/class-wpvivid-dropbox.php:515
1830
+ #: includes/customclass/class-wpvivid-ftpclass.php:131
1831
+ #: includes/customclass/class-wpvivid-google-drive.php:357
1832
+ msgid "Once checked, all this sites backups sent to a remote storage destination will be uploaded to this storage by default."
1833
+ msgstr "След като е маркирано, всички резервни копия на тези сайтове, изпратени до местоназначение за отдалечено съхранение, ще бъдат качени по подразбиране на това място за съхранение."
1834
+
1835
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:145
1836
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:269
1837
+ msgid "Storage class: Standard (infrequent access)."
1838
+ msgstr "Клас на съхранение: Стандартен (нечестен достъп)."
1839
+
1840
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:151
1841
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:275
1842
+ msgid "Check the option to use Amazon S3 Standard-Infrequent Access (S3 Standard-IA) storage class for data transfer."
1843
+ msgstr "Проверете опцията за използване на amazon S3 стандартен-рядък достъп (S3 Standard-IA) клас за съхранение за прехвърляне на данни."
1844
+
1845
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:159
1846
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:283
1847
+ msgid "Server-side encryption."
1848
+ msgstr "Шифроване от страна на сървъра."
1849
+
1850
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:165
1851
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:289
1852
+ msgid "Check the option to use Amazon S3 server-side encryption to protect data."
1853
+ msgstr "Проверете опцията за използване на шифроване от страна на сървъра на Amazon S3, за да защитите данните."
1854
+
1855
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:173
1856
+ #: includes/customclass/class-wpvivid-ftpclass.php:153
1857
+ msgid "Test and Add"
1858
+ msgstr "Тест и добавяне"
1859
+
1860
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:178
1861
+ msgid "Click the button to connect to Amazon S3 storage and add it to the storage list below."
1862
+ msgstr "Щракнете върху бутона, за да се свържете с хранилището на Amazon S3 и го добавете към списъка за съхранение по-долу."
1863
+
1864
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:187
1865
+ msgid "The simplexml extension is not detected. Please install the extension first."
1866
+ msgstr "Разширението на simplexml не се открива. Първо инсталирайте разширението."
1867
+
1868
+ #: includes/customclass/class-wpvivid-amazons3-plus.php:302
1869
+ #: includes/customclass/class-wpvivid-dropbox.php:614
1870
+ #: includes/customclass/class-wpvivid-ftpclass.php:259
1871
+ #: includes/customclass/class-wpvivid-google-drive.php:459
1872
+ msgid "Click the button to save the changes."
1873
+ msgstr "Щракнете върху бутона, за да запишете промените."
1874
+
1875
+ #: includes/customclass/class-wpvivid-dropbox.php:433
1876
+ msgid "You have authenticated the Dropbox account as your remote storage."
1877
+ msgstr "Вие сте удостоверени Dropbox акаунт като вашето отдалечено място за съхранение."
1878
+
1879
+ #: includes/customclass/class-wpvivid-dropbox.php:441
1880
+ #: includes/customclass/class-wpvivid-google-drive.php:280
1881
+ msgid "You have successfully updated the storage alias."
1882
+ msgstr "Успешно сте актуализирали псевдонима на хранилището."
1883
+
1884
+ #: includes/customclass/class-wpvivid-dropbox.php:452
1885
+ msgid "Dropbox"
1886
+ msgstr "Dropbox"
1887
+
1888
+ #: includes/customclass/class-wpvivid-dropbox.php:462
1889
+ msgid "Please read <a target=\"_blank\" href=\"https://wpvivid.com/privacy-policy\" style=\"text-decoration: none;\">this privacy policy</a> for use of our Dropbox authorization app (none of your backup data is sent to us)."
1890
+ msgstr "Моля, прочетете <a target=\"_blank\" href=\"https://wpvivid.com/privacy-policy\" style=\"text-decoration: none;\">тази декларация</a> за поверителност за използване на нашето Приложение за разрешение Dropbox (нито един от вашите архивни данни не се изпраща до нас)."
1891
+
1892
+ #: includes/customclass/class-wpvivid-dropbox.php:465
1893
+ #: includes/customclass/class-wpvivid-dropbox.php:590
1894
+ msgid "Enter Your Dropbox Information"
1895
+ msgstr "Въведете информацията за вашата Dropbox"
1896
+
1897
+ #: includes/customclass/class-wpvivid-dropbox.php:472
1898
+ #: includes/customclass/class-wpvivid-dropbox.php:597
1899
+ msgid "Enter a unique alias: e.g. Dropbox-001"
1900
+ msgstr "Въведете уникален псевдоним: например Dropbox-001"
1901
+
1902
+ #: includes/customclass/class-wpvivid-dropbox.php:489
1903
+ #: includes/customclass/class-wpvivid-google-drive.php:331
1904
+ msgid "All backups will be uploaded to this directory."
1905
+ msgstr "Всички архиви ще бъдат качени в тази директория."
1906
+
1907
+ #: includes/customclass/class-wpvivid-dropbox.php:501
1908
+ #: includes/customclass/class-wpvivid-google-drive.php:343
1909
+ msgid "Pro feature: Create a directory for storing the backups of the site"
1910
+ msgstr "Pro функция: Създаване на директория за съхраняване на архивите на сайта"
1911
+
1912
+ #: includes/customclass/class-wpvivid-dropbox.php:522
1913
+ msgid "Authenticate with Dropbox"
1914
+ msgstr "Удостоверяване с Dropbox"
1915
+
1916
+ #: includes/customclass/class-wpvivid-dropbox.php:527
1917
+ msgid "Click the button to get Dropbox authentication and add it to the storage list below."
1918
+ msgstr "Щракнете върху бутона, за да получите удостоверяване Dropbox и да го добавите към списъка за съхранение по-долу."
1919
+
1920
+ #: includes/customclass/class-wpvivid-ftpclass.php:36
1921
+ msgid "FTP"
1922
+ msgstr "FTP"
1923
+
1924
+ #: includes/customclass/class-wpvivid-ftpclass.php:45
1925
+ #: includes/customclass/class-wpvivid-ftpclass.php:172
1926
+ msgid "Enter Your FTP Account"
1927
+ msgstr "Въведете вашия FTP акаунт"
1928
+
1929
+ #: includes/customclass/class-wpvivid-ftpclass.php:52
1930
+ #: includes/customclass/class-wpvivid-ftpclass.php:179
1931
+ msgid "Enter an unique alias: e.g. FTP-001"
1932
+ msgstr "Въведете уникален псевдоним: например FTP-001"
1933
+
1934
+ #: includes/customclass/class-wpvivid-ftpclass.php:64
1935
+ #: includes/customclass/class-wpvivid-ftpclass.php:191
1936
+ msgid "FTP server (server's port 21)"
1937
+ msgstr "FTP сървър (порт на сървъра 21)"
1938
+
1939
+ #: includes/customclass/class-wpvivid-ftpclass.php:69
1940
+ #: includes/customclass/class-wpvivid-ftpclass.php:196
1941
+ msgid "Enter the FTP server."
1942
+ msgstr "Въведете FTP сървъра."
1943
+
1944
+ #: includes/customclass/class-wpvivid-ftpclass.php:81
1945
+ msgid "Pro feature: Change the FTP default port number"
1946
+ msgstr "Pro функция: Промяна на FTP номера на порт по подразбиране"
1947
+
1948
+ #: includes/customclass/class-wpvivid-ftpclass.php:88
1949
+ #: includes/customclass/class-wpvivid-ftpclass.php:203
1950
+ msgid "FTP login"
1951
+ msgstr "FTP вход"
1952
+
1953
+ #: includes/customclass/class-wpvivid-ftpclass.php:93
1954
+ #: includes/customclass/class-wpvivid-ftpclass.php:208
1955
+ msgid "Enter your FTP server user name."
1956
+ msgstr "Въведете потребителското име на FTP сървъра."
1957
+
1958
+ #: includes/customclass/class-wpvivid-ftpclass.php:100
1959
+ #: includes/customclass/class-wpvivid-ftpclass.php:215
1960
+ msgid "FTP password"
1961
+ msgstr "FTP парола"
1962
+
1963
+ #: includes/customclass/class-wpvivid-ftpclass.php:105
1964
+ #: includes/customclass/class-wpvivid-ftpclass.php:220
1965
+ msgid "Enter the FTP server password."
1966
+ msgstr "Въведете паролата на FTP сървъра."
1967
+
1968
+ #: includes/customclass/class-wpvivid-ftpclass.php:112
1969
+ #: includes/customclass/class-wpvivid-ftpclass.php:227
1970
+ msgid "Absolute path must exist(e.g. /home/username)"
1971
+ msgstr "Абсолютен път трябва да съществува (напр. /начало/потребителско име)"
1972
+
1973
+ #: includes/customclass/class-wpvivid-ftpclass.php:117
1974
+ #: includes/customclass/class-wpvivid-ftpclass.php:232
1975
+ msgid "Enter an absolute path and a custom subdirectory (optional) for holding the backups of current website. For example, /home/username/customfolder"
1976
+ msgstr "Въведете абсолютен път и персонализирана поддиректорията (по избор) за задържане на резервните копия на текущия сайт. Например ,,/дом/потребителско име/персонализирана папка"
1977
+
1978
+ #: includes/customclass/class-wpvivid-ftpclass.php:139
1979
+ #: includes/customclass/class-wpvivid-ftpclass.php:240
1980
+ msgid "Uncheck this to enable FTP active mode."
1981
+ msgstr "Премахнете отметката от това, за да активирате активен режим на FTP."
1982
+
1983
+ #: includes/customclass/class-wpvivid-ftpclass.php:145
1984
+ #: includes/customclass/class-wpvivid-ftpclass.php:246
1985
+ msgid "Uncheck the option to use FTP active mode when transferring files. Make sure the FTP server you are configuring supports the active FTP mode."
1986
+ msgstr "Премахнете отметката от опцията за използване на FTP активен режим при прехвърляне на файлове. Уверете се, че ftp сървърът, който конфигурирате, поддържа активния FTP режим."
1987
+
1988
+ #: includes/customclass/class-wpvivid-ftpclass.php:158
1989
+ msgid "Click the button to connect to FTP server and add it to the storage list below."
1990
+ msgstr "Щракнете върху бутона, за да се свържете с FTP сървър и го добавете към списъка за съхранение по-долу."
1991
+
1992
+ #: includes/customclass/class-wpvivid-google-drive.php:111
1993
+ #: includes/customclass/class-wpvivid-google-drive.php:207
1994
+ msgid "Authentication failed, the client_secrets.json file is missing. Please make sure the client_secrets.json file is in wpvivid-backuprestore\\includes\\customclass directory."
1995
+ msgstr "Неуспешно удостоверяване, липсва файлът client_secrets.json. Моля, уверете се, че файлът client_secrets.json е в wpvivid-backuprestore\\включва\\customclass директория."
1996
+
1997
+ #: includes/customclass/class-wpvivid-google-drive.php:115
1998
+ #: includes/customclass/class-wpvivid-google-drive.php:211
1999
+ msgid "Authentication failed, the format of the client_secrets.json file is incorrect. Please delete and re-install the plugin to recreate the file."
2000
+ msgstr "Неуспешно удостоверяване, форматът на файла client_secrets.json е неправилен. Изтрийте и инсталирайте отново приставката, за да създадете файла."
2001
+
2002
+ #: includes/customclass/class-wpvivid-google-drive.php:272
2003
+ msgid "You have authenticated the Google Drive account as your remote storage."
2004
+ msgstr "Вие сте удостоверили профила в Google Диск като вашето отдалечено хранилище."
2005
+
2006
+ #: includes/customclass/class-wpvivid-google-drive.php:292
2007
+ msgid "Google Drive"
2008
+ msgstr "Google Диск"
2009
+
2010
+ #: includes/customclass/class-wpvivid-google-drive.php:304
2011
+ msgid "Please read <a target=\"_blank\" href=\"https://wpvivid.com/privacy-policy\" style=\"text-decoration: none;\">this privacy policy</a> for use of our Google Drive authorization app (none of your backup data is sent to us)."
2012
+ msgstr "Моля, прочетете <a target=\"_blank\" href=\"https://wpvivid.com/privacy-policy\" style=\"text-decoration: none;\">тази декларация</a> за поверителност за използване на приложението ни за упълномощаване Google Диск (нито един от вашите архивни данни не се изпраща до нас)."
2013
+
2014
+ #: includes/customclass/class-wpvivid-google-drive.php:307
2015
+ #: includes/customclass/class-wpvivid-google-drive.php:435
2016
+ msgid "Enter Your Google Drive Information"
2017
+ msgstr "Въведете информацията за google Диск"
2018
+
2019
+ #: includes/customclass/class-wpvivid-google-drive.php:314
2020
+ #: includes/customclass/class-wpvivid-google-drive.php:442
2021
+ msgid "Enter a unique alias: e.g. Google Drive-001"
2022
+ msgstr "Въведете уникален псевдоним: например Google Диск-001"
2023
+
2024
+ #: includes/customclass/class-wpvivid-google-drive.php:364
2025
+ msgid "Authenticate with Google Drive"
2026
+ msgstr "Удостоверяване с Google Диск"
2027
+
2028
+ #: includes/customclass/class-wpvivid-google-drive.php:369
2029
+ msgid "Click the button to get Google authentication and add it to the storage list below."
2030
+ msgstr "Кликнете върху бутона, за да получите удостоверяване от Google и да го добавите към списъка за съхранение по-долу."
2031
+
2032
+ #: includes/customclass/class-wpvivid-one-drive.php:240
2033
+ msgid "You have authenticated the Microsoft OneDrive account as your remote storage."
2034
+ msgstr "Вие сте удостоверили акаунта на Microsoft OneDrive като вашето отдалечено място за съхранение."
2035
+
2036
+ #: includes/customclass/class-wpvivid-one-drive.php:260
2037
+ msgid "Microsoft OneDrive"
2038
+ msgstr "Преглед на оригиналната статия на английски: 301"
2039
+
2040
+ #: includes/customclass/class-wpvivid-one-drive.php:272
2041
+ msgid "Please read <a target=\"_blank\" href=\"https://wpvivid.com/privacy-policy\" style=\"text-decoration: none;\">this privacy policy</a> for use of our Microsoft OneDrive authorization app (none of your backup data is sent to us)."
2042
+ msgstr "Моля, прочетете <a target=\"_blank\" href=\"https://wpvivid.com/privacy-policy\" style=\"text-decoration: none;\">тази декларация</a> за поверителност за използване на нашето приложение за оторизиране на Microsoft OneDrive (нито една от вашите данни не се изпраща до нас)."
2043
+
2044
+ #: includes/customclass/class-wpvivid-one-drive.php:275
2045
+ #: includes/customclass/class-wpvivid-one-drive.php:403
2046
+ msgid "Enter Your Microsoft OneDrive Information"
2047
+ msgstr "Въведете информацията за Вашия Microsoft OneDrive"
2048
+
2049
+ #: includes/customclass/class-wpvivid-one-drive.php:282
2050
+ #: includes/customclass/class-wpvivid-one-drive.php:410
2051
+ msgid "Enter a unique alias: e.g. OneDrive-001"
2052
+ msgstr "Въведете уникален псевдоним: например OneDrive-001"
2053
+
2054
+ #: includes/customclass/class-wpvivid-one-drive.php:332
2055
+ msgid "Authenticate with Microsoft OneDrive"
2056
+ msgstr "Удостоверяване с Microsoft OneDrive"
2057
+
2058
+ #: includes/customclass/class-wpvivid-one-drive.php:337
2059
+ msgid "Click the button to get Microsoft authentication and add it to the storage list below."
2060
+ msgstr "Щракнете върху бутона, за да получите Microsoft удостоверяване и да го добавите към списъка за съхранение по-долу."
2061
+
2062
+ #: includes/customclass/class-wpvivid-s3compat.php:403
2063
+ msgid "DigitalOcean Spaces"
2064
+ msgstr "Дигитални пространства"
2065
+
2066
+ #: includes/customclass/class-wpvivid-s3compat.php:412
2067
+ #: includes/customclass/class-wpvivid-s3compat.php:527
2068
+ msgid "Enter Your DigitalOcean Spaces Account"
2069
+ msgstr "Въведете вашия цифров акаунт за пространства"
2070
+
2071
+ #: includes/customclass/class-wpvivid-s3compat.php:420
2072
+ #: includes/customclass/class-wpvivid-s3compat.php:535
2073
+ msgid "Enter a unique alias: e.g. DOS-001"
2074
+ msgstr "Въведете уникален псевдоним: например DOS-001"
2075
+
2076
+ #: includes/customclass/class-wpvivid-s3compat.php:432
2077
+ #: includes/customclass/class-wpvivid-s3compat.php:547
2078
+ msgid "DigitalOcean Spaces access key"
2079
+ msgstr "Ключ за достъп до цифрови пространства"
2080
+
2081
+ #: includes/customclass/class-wpvivid-s3compat.php:437
2082
+ #: includes/customclass/class-wpvivid-s3compat.php:552
2083
+ msgid "Enter your DigitalOcean Spaces access key"
2084
+ msgstr "Въведете ключа за достъп до цифровите пространства"
2085
+
2086
+ #: includes/customclass/class-wpvivid-s3compat.php:444
2087
+ #: includes/customclass/class-wpvivid-s3compat.php:559
2088
+ msgid "DigitalOcean Spaces secret key"
2089
+ msgstr "Цифровококийски пространства таен ключ"
2090
+
2091
+ #: includes/customclass/class-wpvivid-s3compat.php:449
2092
+ #: includes/customclass/class-wpvivid-s3compat.php:564
2093
+ msgid "Enter your DigitalOcean Spaces secret key"
2094
+ msgstr "Въведете таен ключ за цифровите пространства"
2095
+
2096
+ #: includes/customclass/class-wpvivid-s3compat.php:456
2097
+ #: includes/customclass/class-wpvivid-s3compat.php:571
2098
+ msgid "Space Name(e.g. test)"
2099
+ msgstr "Име на интервала (напр. тест)"
2100
+
2101
+ #: includes/customclass/class-wpvivid-s3compat.php:461
2102
+ #: includes/customclass/class-wpvivid-s3compat.php:576
2103
+ msgid "Enter an existed Space to create a custom backup storage directory."
2104
+ msgstr "Въведете съществувало пространство, за да създадете директория за съхранение по избор."
2105
+
2106
+ #: includes/customclass/class-wpvivid-s3compat.php:473
2107
+ #: includes/customclass/class-wpvivid-s3compat.php:588
2108
+ msgid "Customize the directory where you want to store backups within the Space."
2109
+ msgstr "Персонализирайте директорията, където искате да съхранявате архиви в пространството."
2110
+
2111
+ #: includes/customclass/class-wpvivid-s3compat.php:480
2112
+ #: includes/customclass/class-wpvivid-s3compat.php:595
2113
+ msgid "region.digitaloceanspaces.com"
2114
+ msgstr "region.digitaloceanspaces.com"
2115
+
2116
+ #: includes/customclass/class-wpvivid-s3compat.php:485
2117
+ #: includes/customclass/class-wpvivid-s3compat.php:600
2118
+ msgid "Enter the DigitalOcean Endpoint for the storage"
2119
+ msgstr "Въведете крайна точка digitalOcean за съхранение"
2120
+
2121
+ #: includes/customclass/class-wpvivid-s3compat.php:512
2122
+ msgid "Click the button to connect to DigitalOcean Spaces storage and add it to the storage list below."
2123
+ msgstr "Щракнете върху бутона, за да се свържете с DigitalOcean Spaces за съхранение и да го добавите към списъка за съхранение по-долу."
2124
+
2125
+ #: includes/customclass/class-wpvivid-sftpclass.php:38
2126
+ msgid "SFTP"
2127
+ msgstr "Sftp"
2128
+
2129
+ #: includes/customclass/class-wpvivid-sftpclass.php:48
2130
+ #: includes/customclass/class-wpvivid-sftpclass.php:163
2131
+ msgid "Enter Your SFTP Account"
2132
+ msgstr "Въведете своя SFTP акаунт"
2133
+
2134
+ #: includes/customclass/class-wpvivid-sftpclass.php:56
2135
+ #: includes/customclass/class-wpvivid-sftpclass.php:171
2136
+ msgid "Enter a unique alias: e.g. SFTP-001"
2137
+ msgstr "Въведете уникален псевдоним: например SFTP-001"
2138
+
2139
+ #: includes/customclass/class-wpvivid-sftpclass.php:68
2140
+ #: includes/customclass/class-wpvivid-sftpclass.php:183
2141
+ msgid "Server Address"
2142
+ msgstr "Адрес на сървъра"
2143
+
2144
+ #: includes/customclass/class-wpvivid-sftpclass.php:73
2145
+ #: includes/customclass/class-wpvivid-sftpclass.php:188
2146
+ msgid "Enter the server address."
2147
+ msgstr "Въведете адреса на сървъра."
2148
+
2149
+ #: includes/customclass/class-wpvivid-sftpclass.php:80
2150
+ #: includes/customclass/class-wpvivid-sftpclass.php:195
2151
+ msgid "User Name"
2152
+ msgstr "Потребителско име"
2153
+
2154
+ #: includes/customclass/class-wpvivid-sftpclass.php:85
2155
+ #: includes/customclass/class-wpvivid-sftpclass.php:200
2156
+ msgid "Enter the user name."
2157
+ msgstr "Въведете потребителското име."
2158
+
2159
+ #: includes/customclass/class-wpvivid-sftpclass.php:92
2160
+ #: includes/customclass/class-wpvivid-sftpclass.php:207
2161
+ msgid "User Password"
2162
+ msgstr "Потребителска парола"
2163
+
2164
+ #: includes/customclass/class-wpvivid-sftpclass.php:97
2165
+ #: includes/customclass/class-wpvivid-sftpclass.php:212
2166
+ msgid "Enter the user password."
2167
+ msgstr "Въведете потребителската парола."
2168
+
2169
+ #: includes/customclass/class-wpvivid-sftpclass.php:104
2170
+ #: includes/customclass/class-wpvivid-sftpclass.php:219
2171
+ msgid "Port"
2172
+ msgstr "Порт"
2173
+
2174
+ #: includes/customclass/class-wpvivid-sftpclass.php:109
2175
+ #: includes/customclass/class-wpvivid-sftpclass.php:224
2176
+ msgid "Enter the server port."
2177
+ msgstr "Въведете сървъра порт."
2178
+
2179
+ #: includes/customclass/class-wpvivid-sftpclass.php:116
2180
+ #: includes/customclass/class-wpvivid-sftpclass.php:231
2181
+ msgid "Absolute path must exist(e.g. /var)"
2182
+ msgstr "Абсолютен път трябва да съществува (напр. /var)"
2183
+
2184
+ #: includes/customclass/class-wpvivid-sftpclass.php:121
2185
+ #: includes/customclass/class-wpvivid-sftpclass.php:236
2186
+ msgid "Enter an absolute path and a custom subdirectory (optional) for holding the backups of current website. For example, /var/customfolder/"
2187
+ msgstr "Въведете абсолютен път и персонализирана поддиректорията (по избор) за задържане на резервните копия на текущия сайт. Например /var/ customfolder/"
2188
+
2189
+ #: includes/customclass/class-wpvivid-sftpclass.php:148
2190
+ msgid "Click the button to connect to SFTP server and add it to the storage list below."
2191
+ msgstr "Щракнете върху бутона, за да се свържете със SFTP сървър и да го добавите към списъка за съхранение по-долу."
2192
+
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Migrate & Backup WordPress - WPvivid Backup Plugin ===
2
  Contributors: wpvivid
3
  Tags: move, clone, migrate, copy, backup, restore, auto backup, cloud backup
4
  Requires at least: 4.5
5
  Tested up to: 5.4.1
6
  Requires PHP: 5.3
7
- Stable tag: 0.9.41
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
@@ -176,8 +176,14 @@ Thank you for translating WPvivid Backup Plugin to your languages!
176
  * [Andrew Galas](https://profiles.wordpress.org/andrewgalas) (Polish)
177
  * [Shohei OKADA](https://ja.gravatar.com/silversword0630) (Japanese)
178
  * Francesco Tosi (Italian)
 
179
 
180
  == Changelog ==
 
 
 
 
 
181
  = 0.9.41 =
182
  - Added an option in the plugin settings to delete the WPvivid directory when deleting the plugin.
183
  - Added Italian language translation.
1
+ === Migrate & Backup WordPress - WPvivid Backup Plugin ===
2
  Contributors: wpvivid
3
  Tags: move, clone, migrate, copy, backup, restore, auto backup, cloud backup
4
  Requires at least: 4.5
5
  Tested up to: 5.4.1
6
  Requires PHP: 5.3
7
+ Stable tag: 0.9.42
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
176
  * [Andrew Galas](https://profiles.wordpress.org/andrewgalas) (Polish)
177
  * [Shohei OKADA](https://ja.gravatar.com/silversword0630) (Japanese)
178
  * Francesco Tosi (Italian)
179
+ * Valentin Lyong (Bulgarian)
180
 
181
  == Changelog ==
182
+ = 0.9.42 =
183
+ - Added Bulgarian language translation.
184
+ - Fixed a fatal error occurred during website transfer in some cases.
185
+ - Fixed some bugs in the plugin code.
186
+ - Optimized the plugin code.
187
  = 0.9.41 =
188
  - Added an option in the plugin settings to delete the WPvivid directory when deleting the plugin.
189
  - Added Italian language translation.
wpvivid-backuprestore.php CHANGED
@@ -7,7 +7,7 @@
7
  * @wordpress-plugin
8
  * Plugin Name: WPvivid Backup Plugin
9
  * Description: Clone or copy WP sites then move or migrate them to new host (new domain), schedule backups, transfer backups to leading remote storage. All in one.
10
- * Version: 0.9.41
11
  * Author: WPvivid Team
12
  * Author URI: https://wpvivid.com
13
  * License: GPL-3.0+
@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) {
21
  die;
22
  }
23
 
24
- define( 'WPVIVID_PLUGIN_VERSION', '0.9.41' );
25
  //
26
  define('WPVIVID_RESTORE_INIT','init');
27
  define('WPVIVID_RESTORE_READY','ready');
7
  * @wordpress-plugin
8
  * Plugin Name: WPvivid Backup Plugin
9
  * Description: Clone or copy WP sites then move or migrate them to new host (new domain), schedule backups, transfer backups to leading remote storage. All in one.
10
+ * Version: 0.9.42
11
  * Author: WPvivid Team
12
  * Author URI: https://wpvivid.com
13
  * License: GPL-3.0+
21
  die;
22
  }
23
 
24
+ define( 'WPVIVID_PLUGIN_VERSION', '0.9.42' );
25
  //
26
  define('WPVIVID_RESTORE_INIT','init');
27
  define('WPVIVID_RESTORE_READY','ready');