UpdraftPlus WordPress Backup Plugin - Version 1.14.2

Version Description

  • 22/Dec/2017 =

  • FIX: Email backups not sending correctly

  • FIX: Buttons in the 'Migrate' dialog box stopped working after you switched tabs (until you reload the page)

  • FIX: Unable to delete multi-storage S3 instances

  • TWEAK: Remove duplicate DOM id for nonce fields

  • TWEAK: Correct name of PutObjectAclVersion permission when requesting it in S3 wizard

  • TWEAK: Improve S3 log message to make clear which back-end a message is coming from

  • TWEAK: Improved migration warning message if migrator addon is available and restoration site url is slightly different than current site url

  • TWEAK: New non-existent Backblaze B2 buckets are now created automatically

  • TWEAK: Suppress expected (but confusing to some users) "404 not found" message in the log when WebDAV backup file is at 0% uploaded

Download this release

Release Info

Developer DavidAnderson
Plugin Icon 128x128 UpdraftPlus WordPress Backup Plugin
Version 1.14.2
Comparing to
See all releases

Code changes from version 1.13.16 to 1.14.2

admin.php CHANGED
@@ -773,6 +773,8 @@ class UpdraftPlus_Admin {
773
  // For remote storage handlebarsjs template
774
  'remote_storage_options' => $remote_storage_options_and_templates['options'],
775
  'remote_storage_templates' => $remote_storage_options_and_templates['templates'],
 
 
776
  ));
777
  }
778
 
@@ -1192,9 +1194,9 @@ class UpdraftPlus_Admin {
1192
  $msg = array(
1193
  'result' => 'needs_download',
1194
  'request' => array(
1195
- 'type' => $type,
1196
- 'timestamp' => $timestamp,
1197
- 'findex' => $findex
1198
  )
1199
  );
1200
 
773
  // For remote storage handlebarsjs template
774
  'remote_storage_options' => $remote_storage_options_and_templates['options'],
775
  'remote_storage_templates' => $remote_storage_options_and_templates['templates'],
776
+ 'instance_enabled' => __('Currently enabled', 'updraftplus'),
777
+ 'instance_disabled' => __('Currently disabled', 'updraftplus'),
778
  ));
779
  }
780
 
1194
  $msg = array(
1195
  'result' => 'needs_download',
1196
  'request' => array(
1197
+ 'type' => $type,
1198
+ 'timestamp' => $timestamp,
1199
+ 'findex' => $findex
1200
  )
1201
  );
1202
 
backup.php CHANGED
@@ -409,7 +409,7 @@ class UpdraftPlus_Backup {
409
  $updraftplus->log("Cloud backup selection (".($ind+1)."/".count($services)."): ".$service." with instance (".($instance_id_count+1)."/".$total_instance_ids.")".$log_extra);
410
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
411
 
412
- if ("none" == $service || '' == $service) {
413
  $updraftplus->log("No remote despatch: user chose no remote backup service");
414
  // Still want to mark as "uploaded", to signal that nothing more needs doing. (Important on incremental runs with no cloud storage).
415
  foreach ($backup_array as $bind => $file) {
@@ -419,12 +419,12 @@ class UpdraftPlus_Backup {
419
  $updraftplus->uploaded_file($file, true);
420
  }
421
  }
422
- $this->prune_retained_backups(array("none" => array("all" => array(null, null))));
423
- } elseif ('remotesend' == $service) {
424
  $remote_obj = $storage_objects_and_ids[$service]['object'];
425
 
426
  $do_prune = array_merge_recursive($do_prune, $this->upload_cloud($remote_obj, $service, $backup_array, ''));
427
- } else {
428
  foreach ($storage_objects_and_ids[$service]['instance_settings'] as $instance_id => $options) {
429
  // Used for logging by record_upload_chunk()
430
  $this->current_instance = $instance_id;
@@ -692,17 +692,18 @@ class UpdraftPlus_Backup {
692
  if (!empty($data)) {
693
  $size_key = $key.'-size';
694
  $size = isset($backup_to_examine[$size_key]) ? $backup_to_examine[$size_key] : null;
695
- foreach ($services as $service => $instance_ids) {
696
- foreach ($instance_ids as $instance_id => $sd) {
697
- if ("none" != $service && '' != $service && 'all' != $instance_id) {
698
- $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids(array($service));
699
- $opts = $storage_objects_and_ids[$service]['instance_settings'][$instance_id];
700
- $sd[0]->set_options($opts, false, $instance_id);
701
- $this->prune_file($service, $data, $sd[0], $sd[1], array($size));
702
- } elseif ("none" != $service && '' != $service && 'all' == $instance_id) {
703
  $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids(array($service));
704
- foreach ($storage_objects_and_ids[$service]['instance_settings'] as $instance_id => $options) {
705
- $sd[0]->set_options($options, false, $instance_id);
 
 
 
 
 
 
706
  $this->prune_file($service, $data, $sd[0], $sd[1], array($size));
707
  }
708
  } else {
@@ -836,17 +837,18 @@ class UpdraftPlus_Backup {
836
  // Sending an empty array is not itself a problem - except that the remote storage method may not check that before setting up a connection, which can waste time: especially if this is done every time around the loop.
837
  if (!empty($files_to_prune)) {
838
  // Actually delete the files
839
- foreach ($services as $service => $instance_ids) {
840
- foreach ($instance_ids as $instance_id => $sd) {
841
- if ("none" != $service && '' != $service && 'all' != $instance_id) {
842
  $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids(array($service));
843
- $opts = $storage_objects_and_ids[$service]['instance_settings'][$instance_id];
844
- $sd[0]->set_options($opts, false, $instance_id);
845
- $this->prune_file($service, $files_to_prune, $sd[0], $sd[1], array($size));
846
- } elseif ("none" != $service && '' != $service && 'all' == $instance_id) {
847
- $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids(array($service));
848
- foreach ($storage_objects_and_ids[$service]['instance_settings'] as $instance_id => $options) {
849
- $sd[0]->set_options($options, false, $instance_id);
 
850
  $this->prune_file($service, $files_to_prune, $sd[0], $sd[1], array($size));
851
  }
852
  } else {
@@ -1429,7 +1431,7 @@ class UpdraftPlus_Backup {
1429
  if (is_array($dirlist)) $dirlist =array_shift($dirlist);
1430
  }
1431
 
1432
- if (count($dirlist)>0) {
1433
  $created = $this->create_zip($dirlist, $youwhat, $backup_file_basename, $index);
1434
  // Now, store the results
1435
  if (!is_string($created) && !is_array($created)) $updraftplus->log("$youwhat: create_zip returned an error");
@@ -1728,7 +1730,7 @@ class UpdraftPlus_Backup {
1728
  $bindump = (isset($rows) && ($rows>$bindump_threshold || (defined('UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP') && UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP)) && is_string($binsqldump)) ? $this->backup_table_bindump($binsqldump, $table, $where) : false;
1729
  if (true !== $bindump) $this->backup_table($table, $where, 'none', $table_type);
1730
 
1731
- if (!empty($manyrows_warning)) $updraftplus->log_removewarning('manyrows_'.$this->whichdb_suffix.$table);
1732
 
1733
  $this->close();
1734
 
@@ -1763,7 +1765,7 @@ class UpdraftPlus_Backup {
1763
  die;
1764
  }
1765
  } else {
1766
- $updraftplus->log_removewarning('optstablenotfound');
1767
  }
1768
  }
1769
 
409
  $updraftplus->log("Cloud backup selection (".($ind+1)."/".count($services)."): ".$service." with instance (".($instance_id_count+1)."/".$total_instance_ids.")".$log_extra);
410
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
411
 
412
+ if ('none' == $service || '' == $service) {
413
  $updraftplus->log("No remote despatch: user chose no remote backup service");
414
  // Still want to mark as "uploaded", to signal that nothing more needs doing. (Important on incremental runs with no cloud storage).
415
  foreach ($backup_array as $bind => $file) {
419
  $updraftplus->uploaded_file($file, true);
420
  }
421
  }
422
+ $this->prune_retained_backups(array('none' => array('all' => array(null, null))));
423
+ } elseif (!empty($storage_objects_and_ids[$service]['object']) && !$storage_objects_and_ids[$service]['object']->supports_feature('multi_options')) {
424
  $remote_obj = $storage_objects_and_ids[$service]['object'];
425
 
426
  $do_prune = array_merge_recursive($do_prune, $this->upload_cloud($remote_obj, $service, $backup_array, ''));
427
+ } elseif (!empty($storage_objects_and_ids[$service]['instance_settings'])) {
428
  foreach ($storage_objects_and_ids[$service]['instance_settings'] as $instance_id => $options) {
429
  // Used for logging by record_upload_chunk()
430
  $this->current_instance = $instance_id;
692
  if (!empty($data)) {
693
  $size_key = $key.'-size';
694
  $size = isset($backup_to_examine[$size_key]) ? $backup_to_examine[$size_key] : null;
695
+ foreach ($services as $service => $instance_ids_to_prune) {
696
+ foreach ($instance_ids_to_prune as $instance_id_to_prune => $sd) {
697
+ if ('none' != $service && '' != $service && $sd[0]->supports_feature('multi_options')) {
 
 
 
 
 
698
  $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids(array($service));
699
+ if ('all' == $instance_id_to_prune) {
700
+ foreach ($storage_objects_and_ids[$service]['instance_settings'] as $saved_instance_id => $options) {
701
+ $sd[0]->set_options($options, false, $saved_instance_id);
702
+ $this->prune_file($service, $data, $sd[0], $sd[1], array($size));
703
+ }
704
+ } else {
705
+ $opts = $storage_objects_and_ids[$service]['instance_settings'][$instance_id_to_prune];
706
+ $sd[0]->set_options($opts, false, $instance_id_to_prune);
707
  $this->prune_file($service, $data, $sd[0], $sd[1], array($size));
708
  }
709
  } else {
837
  // Sending an empty array is not itself a problem - except that the remote storage method may not check that before setting up a connection, which can waste time: especially if this is done every time around the loop.
838
  if (!empty($files_to_prune)) {
839
  // Actually delete the files
840
+ foreach ($services as $service => $instance_ids_to_prune) {
841
+ foreach ($instance_ids_to_prune as $instance_id_to_prune => $sd) {
842
+ if ("none" != $service && '' != $service && $sd[0]->supports_feature('multi_options')) {
843
  $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids(array($service));
844
+ if ('all' == $instance_id_to_prune) {
845
+ foreach ($storage_objects_and_ids[$service]['instance_settings'] as $saved_instance_id => $options) {
846
+ $sd[0]->set_options($options, false, $saved_instance_id);
847
+ $this->prune_file($service, $files_to_prune, $sd[0], $sd[1], array($size));
848
+ }
849
+ } else {
850
+ $opts = $storage_objects_and_ids[$service]['instance_settings'][$instance_id_to_prune];
851
+ $sd[0]->set_options($opts, false, $instance_id_to_prune);
852
  $this->prune_file($service, $files_to_prune, $sd[0], $sd[1], array($size));
853
  }
854
  } else {
1431
  if (is_array($dirlist)) $dirlist =array_shift($dirlist);
1432
  }
1433
 
1434
+ if (!empty($dirlist)) {
1435
  $created = $this->create_zip($dirlist, $youwhat, $backup_file_basename, $index);
1436
  // Now, store the results
1437
  if (!is_string($created) && !is_array($created)) $updraftplus->log("$youwhat: create_zip returned an error");
1730
  $bindump = (isset($rows) && ($rows>$bindump_threshold || (defined('UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP') && UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP)) && is_string($binsqldump)) ? $this->backup_table_bindump($binsqldump, $table, $where) : false;
1731
  if (true !== $bindump) $this->backup_table($table, $where, 'none', $table_type);
1732
 
1733
+ if (!empty($manyrows_warning)) $updraftplus->log_remove_warning('manyrows_'.$this->whichdb_suffix.$table);
1734
 
1735
  $this->close();
1736
 
1765
  die;
1766
  }
1767
  } else {
1768
+ $updraftplus->log_remove_warning('optstablenotfound');
1769
  }
1770
  }
1771
 
central/modules/comments.php CHANGED
@@ -347,9 +347,9 @@ class UpdraftCentral_Comments_Commands extends UpdraftCentral_Commands {
347
  public function get_comment_filters() {
348
  // Options for comment_types field
349
  $comment_types = apply_filters('admin_comment_types_dropdown', array(
350
- 'comment' => __('Comments'),
351
- 'pings' => __('Pings'),
352
- ));
353
 
354
  // Options for comment_status field
355
  $comment_statuses = array(
347
  public function get_comment_filters() {
348
  // Options for comment_types field
349
  $comment_types = apply_filters('admin_comment_types_dropdown', array(
350
+ 'comment' => __('Comments'),
351
+ 'pings' => __('Pings'),
352
+ ));
353
 
354
  // Options for comment_status field
355
  $comment_statuses = array(
central/modules/plugin.php CHANGED
@@ -56,7 +56,7 @@ class UpdraftCentral_Plugin_Commands extends UpdraftCentral_Commands {
56
  $result = array('activated' => true);
57
  }
58
  } else {
59
- $result = array('error' => true, 'message' => 'plugin_not_installed', 'values' => array());
60
  }
61
 
62
  return $this->_response($result);
@@ -126,7 +126,7 @@ class UpdraftCentral_Plugin_Commands extends UpdraftCentral_Commands {
126
  }
127
 
128
  if (!$installed) {
129
- $result = array('error' => true, 'message' => 'plugin_install_failed', 'values' => array());
130
  } else {
131
  // Here, we're pulling the information one more time to verify the installation and to
132
  // extract the plugin_path that will be used to activate the plugin in case it did not
56
  $result = array('activated' => true);
57
  }
58
  } else {
59
+ $result = array('error' => true, 'message' => 'plugin_not_installed', 'values' => array($query['plugin']));
60
  }
61
 
62
  return $this->_response($result);
126
  }
127
 
128
  if (!$installed) {
129
+ $result = array('error' => true, 'message' => 'plugin_install_failed', 'values' => array($query['plugin']));
130
  } else {
131
  // Here, we're pulling the information one more time to verify the installation and to
132
  // extract the plugin_path that will be used to activate the plugin in case it did not
central/modules/users.php CHANGED
@@ -46,14 +46,14 @@ class UpdraftCentral_Users_Commands extends UpdraftCentral_Commands {
46
  'meta_query'=>array(
47
  'relation' => 'OR',
48
  array(
49
- 'key' => 'first_name',
50
- 'value' => $query["search"],
51
- 'compare' => 'LIKE'
52
  ),
53
  array(
54
- 'key' => 'last_name',
55
- 'value' => $query["search"],
56
- 'compare' => 'LIKE'
57
  ),
58
  )
59
  ));
46
  'meta_query'=>array(
47
  'relation' => 'OR',
48
  array(
49
+ 'key' => 'first_name',
50
+ 'value' => $query["search"],
51
+ 'compare' => 'LIKE'
52
  ),
53
  array(
54
+ 'key' => 'last_name',
55
+ 'value' => $query["search"],
56
+ 'compare' => 'LIKE'
57
  ),
58
  )
59
  ));
class-updraftplus.php CHANGED
@@ -291,8 +291,8 @@ class UpdraftPlus {
291
  // Already converted?
292
  if (isset($options['version'])) return $options;
293
 
294
- // Cryptographic randomness not required. The prefix helps avoid potential for type-juggling issues.
295
- $uuid = 's-'.md5(rand().uniqid().microtime(true));
296
 
297
  $new_setting = array(
298
  'version' => 1,
@@ -305,6 +305,18 @@ class UpdraftPlus {
305
  return $new_setting;
306
  }
307
 
 
 
 
 
 
 
 
 
 
 
 
 
308
  /**
309
  * Returns the number of bytes free, if it can be detected; otherwise, false
310
  * Presently, we only detect CPanel. If you know of others, then feel free to contribute!
@@ -929,7 +941,14 @@ class UpdraftPlus {
929
  if (defined('UPDRAFTPLUS_BROWSERLOG') && UPDRAFTPLUS_BROWSERLOG) echo htmlentities($line)."<br>\n";
930
  }
931
 
932
- public function log_removewarning($uniq_id) {
 
 
 
 
 
 
 
933
  $warnings = $this->jobdata_get('warnings');
934
  if (!is_array($warnings)) $warnings = array();
935
  unset($warnings[$uniq_id]);
@@ -972,6 +991,12 @@ class UpdraftPlus {
972
  return false;
973
  }
974
 
 
 
 
 
 
 
975
  public function get_max_packet_size() {
976
  global $wpdb;
977
  $mp = (int) $wpdb->get_var("SELECT @@session.max_allowed_packet");
@@ -1704,7 +1729,7 @@ class UpdraftPlus {
1704
  'type' => $matches[4],
1705
  'index' => (empty($matches[5]) ? 0 : $matches[5]-1),
1706
  'extension' => $matches[6]
1707
- );
1708
  } else {
1709
  return false;
1710
  }
@@ -2309,7 +2334,7 @@ class UpdraftPlus {
2309
  do_action('updraft_final_backup_history', $our_files);
2310
 
2311
  // We finished; so, low memory was not a problem
2312
- $this->log_removewarning('lowram');
2313
 
2314
  if (0 == count($undone_files)) {
2315
  $this->log("Resume backup ($bnonce, $resumption_no): finish run");
@@ -3388,10 +3413,36 @@ class UpdraftPlus {
3388
  }
3389
  }
3390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3391
  /**
3392
  * This method will return an array of remote storage objects and instance settings of the currently connected remote storage services.
3393
  *
3394
- * @param Array $services - an list of service identifiers (e.g. ['dropbox', 's3'])
 
 
3395
  *
3396
  * @return Array - returns an array, with a key equal to each member of the $services list passed in. The corresponding value is then an array with keys 'object', 'instance_settings'. The value for 'object' is an UpdraftPlus_BackupModule instance. The value for 'instance_settings' is an array keyed by associated instance IDs, with the values being the associated settings for the instance ID.
3397
  */
@@ -3403,14 +3454,10 @@ class UpdraftPlus {
3403
 
3404
  if ('none' === $method || '' == $method) continue;
3405
 
3406
- $call_method = 'UpdraftPlus_BackupModule_'.$method;
3407
-
3408
- if (!class_exists($call_method)) include_once UPDRAFTPLUS_DIR.'/methods/'.$method.'.php';
3409
-
3410
- if (class_exists($call_method)) {
3411
 
3412
- $remote_storage = new $call_method;
3413
-
3414
  if (!empty($method_objects[$method])) $storage_objects_and_ids[$method] = array();
3415
 
3416
  $storage_objects_and_ids[$method]['object'] = $remote_storage;
@@ -3455,7 +3502,7 @@ class UpdraftPlus {
3455
  }
3456
 
3457
  } else {
3458
- error_log("UpdraftPlus: no such storage class: $call_method");
3459
  }
3460
  }
3461
 
@@ -3466,39 +3513,54 @@ class UpdraftPlus {
3466
  /**
3467
  * This method will return an array of remote storage options and storage_templates.
3468
  *
3469
- * @return Array - returns an array which consists of storage options and storage_templates multidimensional array
3470
  */
3471
  public function get_remote_storage_options_and_templates() {
 
3472
  $storage_objects_and_ids = $this->get_storage_objects_and_ids(array_keys($this->backup_methods));
3473
  $options = array();
3474
  $templates = array();
 
3475
  foreach ($storage_objects_and_ids as $method => $method_info) {
3476
- if (!$method_info['object']->supports_feature('multi_options')) {
 
 
 
3477
  ob_start();
3478
  do_action('updraftplus_config_print_before_storage', $method, null);
3479
- $method_info['object']->config_print();
3480
  $templates[$method] = ob_get_clean();
3481
  } else {
3482
- $templates[$method] = $method_info['object']->get_template();
3483
  }
 
3484
  if (isset($method_info['instance_settings'])) {
 
 
 
3485
  foreach ($method_info['instance_settings'] as $instance_id => $instance_options) {
 
3486
  $opts_without_transform = $instance_options;
3487
- if ($method_info['object']->supports_feature('multi_options')) {
 
3488
  $opts_without_transform['instance_id'] = $instance_id;
3489
  }
3490
- $opts = $method_info['object']->transform_options_for_template($opts_without_transform);
3491
- foreach ($method_info['object']->filter_frontend_settings_keys() as $filter_frontend_settings_key) {
 
 
3492
  unset($opts[$filter_frontend_settings_key]);
3493
  }
 
3494
  $options[$method][$instance_id] = $opts;
3495
  }
3496
  }
3497
  }
 
3498
  return array(
3499
- 'options' => $options,
3500
- 'templates' => $templates,
3501
- );
3502
  }
3503
 
3504
  /**
@@ -3648,322 +3710,22 @@ class UpdraftPlus {
3648
  /**
3649
  * Acts as a WordPress options filter
3650
  *
3651
- * @param Array $onedrive - An array of OneDrive options
3652
- * @return Array - the returned array can either be the set of updated OneDrive settings or a WordPress error array
3653
- */
3654
- public function onedrive_checkchange($onedrive) {
3655
-
3656
- // Get the current options (and possibly update them to the new format)
3657
- $opts = $this->update_remote_storage_options_format('onedrive');
3658
-
3659
- if (is_wp_error($opts)) {
3660
- if ('recursion' !== $opts->get_error_code()) {
3661
- $msg = "OneDrive (".$opts->get_error_code()."): ".$opts->get_error_message();
3662
- $this->log($msg);
3663
- error_log("UpdraftPlus: $msg");
3664
- }
3665
- // The saved options had a problem; so, return the new ones
3666
- return $onedrive;
3667
- }
3668
-
3669
- if (!is_array($onedrive)) return $opts;
3670
-
3671
- // Remove instances that no longer exist
3672
- foreach ($opts['settings'] as $instance_id => $storage_options) {
3673
- if (!isset($onedrive['settings'][$instance_id])) unset($opts['settings'][$instance_id]);
3674
- }
3675
-
3676
- foreach ($onedrive['settings'] as $instance_id => $storage_options) {
3677
- $old_client_id = empty($opts['settings'][$instance_id]['clientid']) ? '' : $opts['settings'][$instance_id]['clientid'];
3678
- $now_client_id = empty($storage_options['clientid']) ? '' : $storage_options['clientid'];
3679
- if (!empty($opts['settings'][$instance_id]['refresh_token']) && $old_client_id != $now_client_id) {
3680
- unset($opts['settings'][$instance_id]['refresh_token']);
3681
- unset($opts['settings'][$instance_id]['tokensecret']);
3682
- unset($opts['settings'][$instance_id]['ownername']);
3683
- }
3684
-
3685
- foreach ($storage_options as $key => $value) {
3686
- if ('folder' == $key) $value = trim(str_replace('\\', '/', $value), '/');
3687
- $opts['settings'][$instance_id][$key] = ('clientid' == $key || 'secret' == $key) ? trim($value) : $value;
3688
- }
3689
- }
3690
- return $opts;
3691
- }
3692
-
3693
- /**
3694
- * Acts as a WordPress options filter
3695
- *
3696
- * @param Array $azure an array of Azure options
3697
- * @return Array - the returned array can either be the set of updated Azure settings or a WordPress error array
3698
- */
3699
- public function azure_checkchange($azure) {
3700
- // Get the current options (and possibly update them to the new format)
3701
- $opts = $this->update_remote_storage_options_format('azure');
3702
-
3703
- if (is_wp_error($opts)) {
3704
- if ('recursion' !== $opts->get_error_code()) {
3705
- $msg = "Azure (".$opts->get_error_code()."): ".$opts->get_error_message();
3706
- $this->log($msg);
3707
- error_log("UpdraftPlus: $msg");
3708
- }
3709
- // The saved options had a problem; so, return the new ones
3710
- return $azure;
3711
- }
3712
-
3713
- if (!is_array($azure)) return $opts;
3714
-
3715
- // Remove instances that no longer exist
3716
- foreach ($opts['settings'] as $instance_id => $storage_options) {
3717
- if (!isset($azure['settings'][$instance_id])) unset($opts['settings'][$instance_id]);
3718
- }
3719
- foreach ($azure['settings'] as $instance_id => $storage_options) {
3720
- foreach ($storage_options as $key => $value) {
3721
- if ('folder' == $key) $value = trim(str_replace('\\', '/', $value), '/');
3722
- // Only lower-case containers are permitted - enforce this
3723
- if ('container' == $key) $value = strtolower($value);
3724
- $opts['settings'][$instance_id][$key] = ('key' == $key || 'account_name' == $key) ? trim($value) : $value;
3725
- // Convert one likely misunderstanding of the format to enter the account name in
3726
- if ('account_name' == $key && preg_match('#^https?://(.*)\.blob\.core\.windows#i', $opts['settings'][$instance_id]['account_name'], $matches)) {
3727
- $opts['settings'][$instance_id]['account_name'] = $matches[1];
3728
- }
3729
- }
3730
- }
3731
- return $opts;
3732
- }
3733
-
3734
-
3735
- /**
3736
- * Acts as a WordPress options filter
3737
- *
3738
- * @param Array $google - An array of Google Drive options
3739
- * @return Array - the returned array can either be the set of updated Google Drive settings or a WordPress error array
3740
- */
3741
- public function googledrive_checkchange($google) {
3742
-
3743
- // Get the current options (and possibly update them to the new format)
3744
- $opts = $this->update_remote_storage_options_format('googledrive');
3745
-
3746
- if (is_wp_error($opts)) {
3747
- if ('recursion' !== $opts->get_error_code()) {
3748
- $msg = "Google Drive (".$opts->get_error_code()."): ".$opts->get_error_message();
3749
- $this->log($msg);
3750
- error_log("UpdraftPlus: $msg");
3751
- }
3752
- // The saved options had a problem; so, return the new ones
3753
- return $google;
3754
- }
3755
- // $opts = UpdraftPlus_Options::get_updraft_option('updraft_googledrive');
3756
- if (!is_array($google)) return $opts;
3757
-
3758
- // Remove instances that no longer exist
3759
- foreach ($opts['settings'] as $instance_id => $storage_options) {
3760
- if (!isset($google['settings'][$instance_id])) unset($opts['settings'][$instance_id]);
3761
- }
3762
-
3763
- foreach ($google['settings'] as $instance_id => $storage_options) {
3764
- if (empty($opts['settings'][$instance_id]['user_id'])) {
3765
- $old_client_id = (empty($opts['settings'][$instance_id]['clientid'])) ? '' : $opts['settings'][$instance_id]['clientid'];
3766
- if (!empty($opts['settings'][$instance_id]['token']) && $old_client_id != $storage_options['clientid']) {
3767
- include_once(UPDRAFTPLUS_DIR.'/methods/googledrive.php');
3768
- $this->register_wp_http_option_hooks();
3769
- $googledrive = new UpdraftPlus_BackupModule_googledrive();
3770
- $googledrive->gdrive_auth_revoke(false);
3771
- $this->register_wp_http_option_hooks(false);
3772
- $opts['settings'][$instance_id]['token'] = '';
3773
- unset($opts['settings'][$instance_id]['ownername']);
3774
- }
3775
- }
3776
-
3777
- foreach ($storage_options as $key => $value) {
3778
- // Trim spaces - I got support requests from users who didn't spot the spaces they introduced when copy/pasting
3779
- $opts['settings'][$instance_id][$key] = ('clientid' == $key || 'secret' == $key) ? trim($value) : $value;
3780
- }
3781
- if (isset($opts['settings'][$instance_id]['folder'])) {
3782
- $opts['settings'][$instance_id]['folder'] = apply_filters('updraftplus_options_googledrive_foldername', 'UpdraftPlus', $opts['settings'][$instance_id]['folder']);
3783
- unset($opts['settings'][$instance_id]['parentid']);
3784
- }
3785
- }
3786
- return $opts;
3787
- }
3788
-
3789
- /**
3790
- * Acts as a WordPress options filter
3791
  *
3792
- * @param Array $google - An array of Google Cloud options
3793
- * @return Array - the returned array can either be the set of updated Google Cloud settings or a WordPress error array
3794
  */
3795
- public function googlecloud_checkchange($google) {
3796
-
3797
- // Get the current options (and possibly update them to the new format)
3798
- $opts = $this->update_remote_storage_options_format('googlecloud');
3799
-
3800
- if (is_wp_error($opts)) {
3801
- if ('recursion' !== $opts->get_error_code()) {
3802
- $msg = "Google Cloud (".$opts->get_error_code()."): ".$opts->get_error_message();
3803
- $this->log($msg);
3804
- error_log("UpdraftPlus: $msg");
3805
- }
3806
- // The saved options had a problem; so, return the new ones
3807
- return $google;
3808
- }
3809
-
3810
- if (!is_array($google)) return $opts;
3811
-
3812
- // Remove instances that no longer exist
3813
- foreach ($opts['settings'] as $instance_id => $storage_options) {
3814
- if (!isset($google['settings'][$instance_id])) unset($opts['settings'][$instance_id]);
3815
- }
3816
 
3817
- foreach ($google['settings'] as $instance_id => $storage_options) {
3818
- $old_token = (empty($opts['settings'][$instance_id]['token'])) ? '' : $opts['settings'][$instance_id]['token'];
3819
- $old_client_id = (empty($opts['settings'][$instance_id]['clientid'])) ? '' : $opts['settings'][$instance_id]['clientid'];
3820
- $old_client_secret = (empty($opts['settings'][$instance_id]['secret'])) ? '' : $opts['settings'][$instance_id]['secret'];
3821
-
3822
- if (isset($google['settings'][$instance_id]['clientid']) && $old_client_id == $google['settings'][$instance_id]['clientid'] && $old_client_secret == $google['settings'][$instance_id]['secret']) {
3823
- $google['settings'][$instance_id]['token'] = $old_token;
3824
- }
3825
- if (!empty($opts['settings'][$instance_id]['token']) && $old_client_id != $google['settings'][$instance_id]['clientid']) {
3826
- include_once(UPDRAFTPLUS_DIR.'/methods/googlecloud.php');
3827
- $this->register_wp_http_option_hooks();
3828
- $googlecloud = new UpdraftPlus_BackupModule_googlecloud();
3829
- $googlecloud->gcloud_auth_revoke(false);
3830
- $this->register_wp_http_option_hooks(false);
3831
- $opts['settings'][$instance_id]['token'] = '';
3832
- unset($opts['settings'][$instance_id]['ownername']);
3833
- }
3834
- foreach ($storage_options as $key => $value) {
3835
- // Trim spaces - I got support requests from users who didn't spot the spaces they introduced when copy/pasting
3836
- $opts['settings'][$instance_id][$key] = ('clientid' == $key || 'secret' == $key) ? trim($value) : $value;
3837
- if ('bucket_location' == $key) $opts['settings'][$instance_id][$key] = trim(strtolower($value));
3838
- }
3839
- }
3840
 
3841
- return $opts;
3842
- }
3843
 
3844
- /**
3845
- * WordPress options filter, sanitising the FTP options saved from the options page
3846
- *
3847
- * @param Array $settings - the options, prior to sanitisation
3848
- *
3849
- * @return Array - the sanitised options for saving
3850
- */
3851
- public function ftp_sanitise($settings) {
3852
- if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3853
- foreach ($settings['settings'] as $instance_id => $instance_settings) {
3854
- if (!empty($instance_settings['host']) && preg_match('#ftp(es|s)?://(.*)#i', $instance_settings['host'], $matches)) {
3855
- $settings['settings'][$instance_id]['host'] = rtrim($matches[2], "/ \t\n\r\0x0B");
3856
- }
3857
- if (isset($instance_settings['pass'])) {
3858
- $settings['settings'][$instance_id]['pass'] = trim($instance_settings['pass'], "\n\r\0\x0B");
3859
- }
3860
- }
3861
- }
3862
- return $settings;
3863
  }
3864
-
3865
- /**
3866
- * Acts as a WordPress options filter
3867
- *
3868
- * @param Array $settings - pre-filtered settings
3869
- *
3870
- * @return Array filtered settings
3871
- */
3872
- public function backblaze_sanitise($settings) {
3873
- if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3874
- foreach ($settings['settings'] as $instance_id => $instance_settings) {
3875
- if (!empty($instance_settings['backup_path'])) {
3876
- $settings['settings'][$instance_id]['backup_path'] = trim($instance_settings['backup_path'], "/ \t\n\r\0\x0B");
3877
- }
3878
- }
3879
- }
3880
- return $settings;
3881
- }
3882
-
3883
- /**
3884
- * Acts as a WordPress options filter
3885
- *
3886
- * @param Array $settings - pre-filtered settings
3887
- *
3888
- * @return Array filtered settings
3889
- */
3890
- public function s3_sanitise($settings) {
3891
- if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3892
- foreach ($settings['settings'] as $instance_id => $instance_settings) {
3893
- if (!empty($instance_settings['path'])) {
3894
- $settings['settings'][$instance_id]['path'] = trim($instance_settings['path'], "/ \t\n\r\0\x0B");
3895
- }
3896
- }
3897
- }
3898
- return $settings;
3899
- }
3900
-
3901
- /**
3902
- * Acts as a WordPress options filter
3903
- *
3904
- * @param Array $dropbox - An array of Dropbox options
3905
- * @return Array - the returned array can either be the set of updated Dropbox settings or a WordPress error array
3906
- */
3907
- public function dropbox_checkchange($dropbox) {
3908
-
3909
- // Get the current options (and possibly update them to the new format)
3910
- $opts = $this->update_remote_storage_options_format('dropbox');
3911
-
3912
- if (is_wp_error($opts)) {
3913
- if ('recursion' !== $opts->get_error_code()) {
3914
- $msg = "Dropbox (".$opts->get_error_code()."): ".$opts->get_error_message();
3915
- $this->log($msg);
3916
- error_log("UpdraftPlus: $msg");
3917
- }
3918
- // The saved options had a problem; so, return the new ones
3919
- return $dropbox;
3920
- }
3921
-
3922
- // If the input is not as expected, then return the current options
3923
- if (!is_array($dropbox)) return $opts;
3924
-
3925
- // Remove instances that no longer exist
3926
- foreach ($opts['settings'] as $instance_id => $storage_options) {
3927
- if (!isset($dropbox['settings'][$instance_id])) unset($opts['settings'][$instance_id]);
3928
- }
3929
-
3930
- // Dropbox has a special case where the settings could be empty so we should check for this before
3931
- if (!empty($dropbox['settings'])) {
3932
-
3933
- foreach ($dropbox['settings'] as $instance_id => $storage_options) {
3934
- if (!empty($opts['settings'][$instance_id]['tk_access_token'])) {
3935
-
3936
- $current_app_key = empty($opts['settings'][$instance_id]['appkey']) ? false : $opts['settings'][$instance_id]['appkey'];
3937
- $new_app_key = empty($storage_options['appkey']) ? false : $storage_options['appkey'];
3938
-
3939
- // If a different app key is being used, then wipe the stored token as it cannot belong to the new app
3940
- if ($current_app_key !== $new_app_key) {
3941
- unset($opts['settings'][$instance_id]['tk_access_token']);
3942
- unset($opts['settings'][$instance_id]['ownername']);
3943
- unset($opts['settings'][$instance_id]['CSRF']);
3944
- }
3945
-
3946
- }
3947
-
3948
- // Now loop over the new options, and replace old options with them
3949
- foreach ($storage_options as $key => $value) {
3950
- if (null === $value) {
3951
- unset($opts['settings'][$instance_id][$key]);
3952
- } else {
3953
- if (!isset($opts['settings'][$instance_id])) $opts['settings'][$instance_id] = array();
3954
- $opts['settings'][$instance_id][$key] = $value;
3955
- }
3956
- }
3957
-
3958
- if (!empty($opts['settings'][$instance_id]['folder']) && preg_match('#^https?://(www.)dropbox\.com/home/Apps/UpdraftPlus(.Com)?([^/]*)/(.*)$#i', $opts['settings'][$instance_id]['folder'], $matches)) $opts['settings'][$instance_id]['folder'] = $matches[3];
3959
-
3960
- }
3961
-
3962
- }
3963
-
3964
- return $opts;
3965
- }
3966
-
3967
  public function remove_local_directory($dir, $contents_only = false) {
3968
  // PHP 5.3+ only
3969
  // foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST) as $path) {
@@ -4162,83 +3924,7 @@ class UpdraftPlus {
4162
  $input = (int) $input;
4163
  return ($input > 0) ? min($input, 9999) : 1;
4164
  }
4165
-
4166
- /**
4167
- * Acts as a WordPress options filter
4168
- *
4169
- * @param Array $webdav - An array of WebDAV options
4170
- * @return Array - the returned array can either be the set of updated WebDAV settings or a WordPress error array
4171
- */
4172
- public function construct_webdav_url($webdav) {
4173
- // Get the current options (and possibly update them to the new format)
4174
- $opts = $this->update_remote_storage_options_format('webdav');
4175
-
4176
- if (is_wp_error($opts)) {
4177
- if ('recursion' !== $opts->get_error_code()) {
4178
- $msg = "WebDAV (".$opts->get_error_code()."): ".$opts->get_error_message();
4179
- $this->log($msg);
4180
- error_log("UpdraftPlus: $msg");
4181
- }
4182
- // The saved options had a problem; so, return the new ones
4183
- return $webdav;
4184
- }
4185
-
4186
- // If the input is not as expected, then return the current options
4187
- if (!is_array($webdav)) return $opts;
4188
-
4189
- // Remove instances that no longer exist
4190
- foreach ($opts['settings'] as $instance_id => $storage_options) {
4191
- if (!isset($webdav['settings'][$instance_id])) unset($opts['settings'][$instance_id]);
4192
- }
4193
-
4194
- // WebDAV has a special case where the settings could be empty so we should check for this before proceeding
4195
- if (!empty($webdav['settings'])) {
4196
-
4197
- foreach ($webdav['settings'] as $instance_id => $storage_options) {
4198
- if (isset($storage_options['webdav'])) {
4199
-
4200
- $url = null;
4201
- $slash = "/";
4202
- $host = "";
4203
- $colon = "";
4204
- $port_colon = "";
4205
-
4206
- if ((80 == $storage_options['port'] && 'webdav' == $storage_options['webdav']) || (443 == $storage_options['port'] && 'webdavs' == $storage_options['webdav'])) {
4207
- $storage_options['port'] = '';
4208
- }
4209
-
4210
- if ('/' == substr($storage_options['path'], 0, 1)) {
4211
- $slash = "";
4212
- }
4213
-
4214
- if (false === strpos($storage_options['host'], "@")) {
4215
- $host = "@";
4216
- }
4217
-
4218
- if ('' != $storage_options['user'] && '' != $storage_options['pass']) {
4219
- $colon = ":";
4220
- }
4221
-
4222
- if ('' != $storage_options['host'] && '' != $storage_options['port']) {
4223
- $port_colon = ":";
4224
- }
4225
-
4226
- if (!empty($storage_options['url']) && 'http' == strtolower(substr($storage_options['url'], 0, 4))) {
4227
- $storage_options['url'] = 'webdav'.substr($storage_options['url'], 4);
4228
- } elseif ('' != $storage_options['user'] && '' != $storage_options['pass']) {
4229
- $storage_options['url'] = $storage_options['webdav'].urlencode($storage_options['user']).$colon.urlencode($storage_options['pass']).$host.urlencode($storage_options['host']).$port_colon.$storage_options['port'].$slash.$storage_options['path'];
4230
- } else {
4231
- $storage_options['url'] = $storage_options['webdav'].urlencode($storage_options['host']).$port_colon.$storage_options['port'].$slash.$storage_options['path'];
4232
- }
4233
-
4234
- $opts['settings'][$instance_id]['url'] = $storage_options['url'];
4235
- }
4236
- }
4237
- }
4238
-
4239
- return $opts;
4240
- }
4241
-
4242
  public function just_one_email($input, $required = false) {
4243
  $x = $this->just_one($input, 'saveemails', (empty($input) && false === $required) ? '' : get_bloginfo('admin_email'));
4244
  if (is_array($x)) {
@@ -4446,21 +4132,26 @@ class UpdraftPlus {
4446
  if (!$migration_warning) {
4447
  $migration_warning = true;
4448
  $info['migration'] = true;
4449
- if ($this->normalise_url($old_siteurl) == $this->normalise_url(site_url()) && !class_exists('UpdraftPlus_Addons_Migrator')) {
 
4450
  $old_siteurl_parsed = parse_url($old_siteurl);
4451
  $actual_siteurl_parsed = parse_url(site_url());
4452
  if ((stripos($old_siteurl_parsed['host'], 'www.') === 0 && stripos($actual_siteurl_parsed['host'], 'www.') !== 0) || (stripos($old_siteurl_parsed['host'], 'www.') !== 0 && stripos($actual_siteurl_parsed['host'], 'www.') === 0)) {
4453
- $warn[] = sprintf(__('The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site.', 'updraftplus'), $old_siteurl, site_url());
 
 
4454
  }
4455
  if (('https' == $old_siteurl_parsed['scheme'] && 'http' == $actual_siteurl_parsed['scheme']) || ('http' == $old_siteurl_parsed['scheme'] && 'https' == $actual_siteurl_parsed['scheme'])) {
4456
- $powarn_ssl = sprintf(__('This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s.', 'updraftplus'), $old_siteurl_parsed['scheme'], $actual_siteurl_parsed['scheme']);
4457
  if ('https' == $old_siteurl_parsed['scheme']) {
4458
- $powarn_ssl .= ' '.sprintf(__('This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https.', 'updraftplus'), '<a href="https://updraftplus.com/shop/migrator/">'.__('the migrator add-on', 'updraftplus').'</a>');
4459
  } else {
4460
- $powarn_ssl .= ' '.sprintf(__('As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced.', 'updraftplus'), '<a href="https://updraftplus.com/shop/migrator/">'.__('the migrator add-on', 'updraftplus').'</a>');
4461
  }
4462
- $warn[] = $powarn_ssl;
 
4463
  }
 
4464
  } else {
4465
  $warn[] = apply_filters('updraftplus_dbscan_urlchange', '<a href="https://updraftplus.com/shop/migrator/">'.__('This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work.', 'updraftplus').'</a>', $old_siteurl, $res);
4466
  }
291
  // Already converted?
292
  if (isset($options['version'])) return $options;
293
 
294
+ // Generate an instance id
295
+ $uuid = $this->generate_instance_id();
296
 
297
  $new_setting = array(
298
  'version' => 1,
305
  return $new_setting;
306
  }
307
 
308
+ /**
309
+ * This method will return a random instance id string
310
+ *
311
+ * @return String - a random instance id
312
+ */
313
+ public function generate_instance_id() {
314
+ // Cryptographic randomness not required. The prefix helps avoid potential for type-juggling issues.
315
+ $uuid = 's-'.md5(rand().uniqid().microtime(true));
316
+
317
+ return $uuid;
318
+ }
319
+
320
  /**
321
  * Returns the number of bytes free, if it can be detected; otherwise, false
322
  * Presently, we only detect CPanel. If you know of others, then feel free to contribute!
941
  if (defined('UPDRAFTPLUS_BROWSERLOG') && UPDRAFTPLUS_BROWSERLOG) echo htmlentities($line)."<br>\n";
942
  }
943
 
944
+ /**
945
+ * Remove any logged warnings with the specified identifier. (The use case for this is that you can warn of something that may be about to happen (with a probably crash if it does), and then remove the warning if it did not happen).
946
+ *
947
+ * @see self::log()
948
+ *
949
+ * @param String $uniq_id - the identifier, previously passed to self::log()
950
+ */
951
+ public function log_remove_warning($uniq_id) {
952
  $warnings = $this->jobdata_get('warnings');
953
  if (!is_array($warnings)) $warnings = array();
954
  unset($warnings[$uniq_id]);
991
  return false;
992
  }
993
 
994
+ /**
995
+ * Get the maximum packet size on the WPDB MySQL connection, in bytes, after attempting to raise it to 32MB if it appeared to be lower.
996
+ * A default value equal to 1MB is returned if the true value could not be found - it has been found reasonable to assume that at least this is available.
997
+ *
998
+ * @return Integer
999
+ */
1000
  public function get_max_packet_size() {
1001
  global $wpdb;
1002
  $mp = (int) $wpdb->get_var("SELECT @@session.max_allowed_packet");
1729
  'type' => $matches[4],
1730
  'index' => (empty($matches[5]) ? 0 : $matches[5]-1),
1731
  'extension' => $matches[6]
1732
+ );
1733
  } else {
1734
  return false;
1735
  }
2334
  do_action('updraft_final_backup_history', $our_files);
2335
 
2336
  // We finished; so, low memory was not a problem
2337
+ $this->log_remove_warning('lowram');
2338
 
2339
  if (0 == count($undone_files)) {
2340
  $this->log("Resume backup ($bnonce, $resumption_no): finish run");
3413
  }
3414
  }
3415
 
3416
+ /**
3417
+ * Instantiate a remote storage object. If one of the same type has previously been fetched, then it will be returned.
3418
+ *
3419
+ * @param String $method - the storage method (e.g. 'dropbox', 's3', etc.)
3420
+ *
3421
+ * @return Object|WP_Error - an instance of UpdraftPlus_BackupModule, or anerror
3422
+ */
3423
+ public function get_storage_object($method) {
3424
+
3425
+ static $objects = array();
3426
+
3427
+ if (!empty($objects[$method])) return $objects[$method];
3428
+
3429
+ $method_class = 'UpdraftPlus_BackupModule_'.$method;
3430
+
3431
+ if (!class_exists($method_class)) include_once UPDRAFTPLUS_DIR.'/methods/'.$method.'.php';
3432
+
3433
+ if (!class_exists($method_class)) return WP_Error('no_such_storage_class', "The specified storage method ($method) was not found");
3434
+
3435
+ $objects[$method] = new $method_class;
3436
+
3437
+ return $objects[$method];
3438
+ }
3439
+
3440
  /**
3441
  * This method will return an array of remote storage objects and instance settings of the currently connected remote storage services.
3442
  *
3443
+ * @param Array $services - an list of service identifiers (e.g. ['dropbox', 's3'])
3444
+ *
3445
+ * @uses self::get_storage_object()
3446
  *
3447
  * @return Array - returns an array, with a key equal to each member of the $services list passed in. The corresponding value is then an array with keys 'object', 'instance_settings'. The value for 'object' is an UpdraftPlus_BackupModule instance. The value for 'instance_settings' is an array keyed by associated instance IDs, with the values being the associated settings for the instance ID.
3448
  */
3454
 
3455
  if ('none' === $method || '' == $method) continue;
3456
 
3457
+ $remote_storage = $this->get_storage_object($method);
3458
+
3459
+ if (is_a($remote_storage, 'UpdraftPlus_BackupModule')) {
 
 
3460
 
 
 
3461
  if (!empty($method_objects[$method])) $storage_objects_and_ids[$method] = array();
3462
 
3463
  $storage_objects_and_ids[$method]['object'] = $remote_storage;
3502
  }
3503
 
3504
  } else {
3505
+ error_log("UpdraftPlus: storage method not found: $method");
3506
  }
3507
  }
3508
 
3513
  /**
3514
  * This method will return an array of remote storage options and storage_templates.
3515
  *
3516
+ * @return Array - returns an array which consists of storage options and storage_templates multidimensional array
3517
  */
3518
  public function get_remote_storage_options_and_templates() {
3519
+
3520
  $storage_objects_and_ids = $this->get_storage_objects_and_ids(array_keys($this->backup_methods));
3521
  $options = array();
3522
  $templates = array();
3523
+
3524
  foreach ($storage_objects_and_ids as $method => $method_info) {
3525
+
3526
+ $object = $method_info['object'];
3527
+
3528
+ if (!$object->supports_feature('multi_options')) {
3529
  ob_start();
3530
  do_action('updraftplus_config_print_before_storage', $method, null);
3531
+ $object->config_print();
3532
  $templates[$method] = ob_get_clean();
3533
  } else {
3534
+ $templates[$method] = $object->get_template();
3535
  }
3536
+
3537
  if (isset($method_info['instance_settings'])) {
3538
+ // Add the methods default settings so that we can add new instances
3539
+ $method_info['instance_settings']['default'] = $object->get_default_options();
3540
+
3541
  foreach ($method_info['instance_settings'] as $instance_id => $instance_options) {
3542
+
3543
  $opts_without_transform = $instance_options;
3544
+
3545
+ if ($object->supports_feature('multi_options')) {
3546
  $opts_without_transform['instance_id'] = $instance_id;
3547
  }
3548
+
3549
+ $opts = $object->transform_options_for_template($opts_without_transform);
3550
+
3551
+ foreach ($object->filter_frontend_settings_keys() as $filter_frontend_settings_key) {
3552
  unset($opts[$filter_frontend_settings_key]);
3553
  }
3554
+
3555
  $options[$method][$instance_id] = $opts;
3556
  }
3557
  }
3558
  }
3559
+
3560
  return array(
3561
+ 'options' => $options,
3562
+ 'templates' => $templates,
3563
+ );
3564
  }
3565
 
3566
  /**
3710
  /**
3711
  * Acts as a WordPress options filter
3712
  *
3713
+ * @param Array $options - An array of options
3714
+ * @param String $option_name - The option name
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3715
  *
3716
+ * @return Array - the returned array can either be the set of updated options or a WordPress error array
 
3717
  */
3718
+ public function storage_options_filter($options, $option_name) {
3719
+ if ('updraft_' !== substr($option_name, 0, 8)) return $options;
3720
+ $method = substr($option_name, 8);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3721
 
3722
+ $storage = $this->get_storage_object($method);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3723
 
3724
+ if (!is_a($storage, 'UpdraftPlus_BackupModule') || !is_callable(array($storage, 'options_filter'))) return $options;
 
3725
 
3726
+ return call_user_func(array($storage, 'options_filter'), $options);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3727
  }
3728
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3729
  public function remove_local_directory($dir, $contents_only = false) {
3730
  // PHP 5.3+ only
3731
  // foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST) as $path) {
3924
  $input = (int) $input;
3925
  return ($input > 0) ? min($input, 9999) : 1;
3926
  }
3927
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3928
  public function just_one_email($input, $required = false) {
3929
  $x = $this->just_one($input, 'saveemails', (empty($input) && false === $required) ? '' : get_bloginfo('admin_email'));
3930
  if (is_array($x)) {
4132
  if (!$migration_warning) {
4133
  $migration_warning = true;
4134
  $info['migration'] = true;
4135
+ // && !class_exists('UpdraftPlus_Addons_Migrator')
4136
+ if ($this->normalise_url($old_siteurl) == $this->normalise_url(site_url())) {
4137
  $old_siteurl_parsed = parse_url($old_siteurl);
4138
  $actual_siteurl_parsed = parse_url(site_url());
4139
  if ((stripos($old_siteurl_parsed['host'], 'www.') === 0 && stripos($actual_siteurl_parsed['host'], 'www.') !== 0) || (stripos($old_siteurl_parsed['host'], 'www.') !== 0 && stripos($actual_siteurl_parsed['host'], 'www.') === 0)) {
4140
+ $powarn = sprintf(__('The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site.', 'updraftplus'), $old_siteurl, site_url()).' ';
4141
+ } else {
4142
+ $powarn = '';
4143
  }
4144
  if (('https' == $old_siteurl_parsed['scheme'] && 'http' == $actual_siteurl_parsed['scheme']) || ('http' == $old_siteurl_parsed['scheme'] && 'https' == $actual_siteurl_parsed['scheme'])) {
4145
+ $powarn .= sprintf(__('This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s.', 'updraftplus'), $old_siteurl_parsed['scheme'], $actual_siteurl_parsed['scheme']);
4146
  if ('https' == $old_siteurl_parsed['scheme']) {
4147
+ $powarn .= ' '.apply_filters('updraftplus_https_to_http_additional_warning', sprintf(__('This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https.', 'updraftplus'), '<a href="https://updraftplus.com/shop/migrator/">'.__('the migrator add-on', 'updraftplus').'</a>'));
4148
  } else {
4149
+ $powarn .= ' '.apply_filters('updraftplus_http_to_https_additional_warning', sprintf(__('As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced.', 'updraftplus'), apply_filters('updraftplus_migrator_addon_link', '<a href="https://updraftplus.com/shop/migrator/">'.__('the migrator add-on', 'updraftplus').'</a>')));
4150
  }
4151
+ } else {
4152
+ $powarn .= apply_filters('updraftplus_dbscan_urlchange_www_append_warning', '');
4153
  }
4154
+ $warn[] = $powarn;
4155
  } else {
4156
  $warn[] = apply_filters('updraftplus_dbscan_urlchange', '<a href="https://updraftplus.com/shop/migrator/">'.__('This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work.', 'updraftplus').'</a>', $old_siteurl, $res);
4157
  }
css/admin.css CHANGED
@@ -334,6 +334,20 @@ h3 .thank-you {
334
  min-width: 180px;
335
  }
336
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  .updraft_debugrow th {
338
  float: right;
339
  text-align: right;
334
  min-width: 180px;
335
  }
336
 
337
+ tr[class*="_updraft_remote_storage_border"] {
338
+ border-top: 1px solid #CCC;
339
+ }
340
+
341
+ .updraft_multi_storage_options {
342
+ float: right;
343
+ clear: right;
344
+ margin-bottom: 5px !important;
345
+ }
346
+
347
+ .updraft_toggle_instance_label {
348
+ vertical-align: top !important;
349
+ }
350
+
351
  .updraft_debugrow th {
352
  float: right;
353
  text-align: right;
css/admin.min.css CHANGED
@@ -1,2 +1,2 @@
1
- .max-width-600{max-width:600px}.width-900{width:900px}.width-80{width:80%}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}input{border-radius:4px;line-height:1.42;border:1px solid #CCC;height:27px;padding:2px 6px;color:#555}input[type="text"]{font-size:14px}input[type="number"]{height:31px}select{border-radius:4px}.main-dashboard-buttons{border-width:4px;border-radius:12px;letter-spacing:0;font-size:17px;font-weight:bold;padding-left:.7em;padding-right:2em;padding:.3em 1em;line-height:1.7em;background:transparent;position:relative;border:2px solid;transition:all .2s;vertical-align:baseline;box-sizing:border-box;text-align:center;line-height:1.3em;margin-left:.3em;text-transform:none;line-height:1;text-decoration:none}.button-restore{border-color:#629ec0;color:#629ec0}.dashboard-main-sizing{border-width:4px;width:190px;line-height:1.7em}.button-restore:hover,.button-migrate:hover,.button-backup:hover,.button-view-log:hover,.button-mass-selectors:hover,.button-delete:hover,.button-entity-backup:hover,.udp-button-primary:hover{border-color:#df6926;color:#df6926}.button-migrate{color:#eea920;border-color:#eea920}.button-backup{border-color:#84ca1b;color:#84ca1b}.existing-backups-buttons{font-size:11px;line-height:1.4em;border-width:3px}.existing-backups-restore-buttons{font-size:11px;line-height:1.4em;border-width:3px}.button-delete{color:#e23900;border-color:#e23900;font-size:14px;line-height:1.4em;border-width:2px;margin-right:10px}.button-view-log,.button-mass-selectors{color:darkgrey;border-color:darkgrey;font-size:14px;line-height:1.4em;border-width:2px;margin-top:-1px}.button-view-log{width:120px}.button-existing-restore{font-size:14px;line-height:1.4em;border-width:2px;width:110px}.main-restore{margin-right:3%;margin-left:3%}.button-entity-backup{color:#555;border-color:#555;font-size:11px;line-height:1.4em;border-width:2px;margin-right:5px}.button-select-all{width:122px}.button-deselect{width:92px}#ud_massactions>.display-flex>.mass-selectors-margins{margin-right:-4px}.udp-button-primary{border-width:4px;color:#0073aa;border-color:#0073aa;font-size:14px;height:40px}#ud_massactions .button-delete{margin-right:0}.stored_local{border-radius:5px;background-color:#007fe7;padding:3px 5px 5px 5px;color:#FFF;font-size:75%}.form-table td.updraft_existingbackup_date{padding-bottom:5px}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label .clear-right{clear:right}.udp-logo-70{width:70px;height:70px;float:left;padding-right:25px}h3 .thank-you{margin-top:0}.ws_advert{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.dismiss-dash-notice{float:right;position:relative;top:-20px}#updraft_report_cell .updraft_reportbox{padding:8px;margin:8px 0;border:1px dotted;clear:left;float:left}#updraft_report_cell button.updraft_reportbox_delete{font-size:50%;float:right;padding:0 3px;position:relative;top:-4px;left:4px}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_checkbox{margin-top:4px}#updraft_report_cell .updraft_report_email{width:300px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#CCC}.updraft_settings_sectionheading{display:none}.updraft-backupentitybutton-disabled{background-color:transparent;border:0;color:#0074a2;text-decoration:underline;cursor:pointer;clear:none;float:left}.updraft-backupentitybutton{margin-left:8px}.updraft-bigbutton{padding:2px 0 !important;margin-right:14px !important;font-size:22px !important;min-height:32px;min-width:180px}.updraft_debugrow th{float:right;text-align:right;font-weight:bold;padding-right:8px;min-width:140px}.updraft_debugrow td{min-width:300px;vertical-align:bottom}#updraft_webdav_host_error{color:red}#updraft_zip_files_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}#updraft_zip_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}#updraft_zip_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}#updraft_zip_info_container p{margin:1px;padding-left:10px;font-size:14px}#updraft_zip_download_item{display:none;color:#0073aa;padding-left:10px}#updraft_zip_download_notice{padding-left:10px}#updraft_zip_files_jstree_container{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;height:300px;width:100%;border:1px dotted;margin-bottom:5px}#updraft_jstree_buttons{position:absolute;top:0;right:0}#updraft_jstree_container{height:100%;width:100%;overflow:auto}#updraft_more_files_container button{height:22px;line-height:20px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete{cursor:pointer;color:red;font-size:23px !important}.updraftplus-morefiles-row-edit{cursor:pointer;font-size:24px !important}#updraft-wrap .form-table th{width:230px}.updraftplus-remove{background-color:#c00000;border:1px solid #c00000;height:22px;padding:4px 3px 0 3px;margin-right:6px}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{background-color:#FFF;color:#000;border:1px solid #000;height:26px;padding:0;margin:0 4px 0 0;border-radius:3px;float:left}.updraft-viewlogdiv input,.updraft-viewlogdiv a{border:0;background-color:transparent;color:#000;margin:0;padding:3px 4px;font-size:16px;line-height:26px}.updraft-viewlogdiv:hover{background-color:#000;color:#FFF;border:1px solid #FFF;cursor:pointer}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.updraftplus-remove a{color:white;padding:4px 4px 0 4px}.updraftplus-remove:hover{background-color:white;border:1px solid #c00000}.updraftplus-remove a:hover{color:#c00000}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file{padding:5px;background:#ececec;border:solid 1px #CCC;margin:4px 0}ul.updraft_premium_description_list,ul#updraft_restore_warnings{list-style:disc inside}ul.updraft_premium_description_list li{display:inline}ul.updraft_premium_description_list li::after{content:" | "}ul.updraft_premium_description_list li.last::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraft_feat_table,.updraft_feat_th,.updraft_feat_table td{border:1px solid black;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:16px}.updraft_feat_table h4{margin:5px 0}.updraft_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.updraft_feat_table .dashicons-yes,.updraft_feat_table .updraft-yes{color:green}.updraft_feat_table .dashicons-no-alt,.updraft_feat_table .updraft-no{color:red}.updraft_tick_cell{text-align:center}.updraft_tick_cell img{margin:4px 0;height:24px}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#f6a828;height:5px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}tr.updraftplusmethod h3{margin:0}#updraft_retain_db_rules .updraft_retain_rules_delete,#updraft_retain_files_rules .updraft_retain_rules_delete{cursor:pointer;color:red;font-size:120%;font-weight:bold;border:0;border-radius:3px;padding:2px;margin:0 6px}#updraft_retain_db_rules .updraft_retain_rules_delete:hover,#updraft_retain_files_rules .updraft_retain_rules_delete:hover{cursor:pointer;color:white;background:red}#updraft_backup_started{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.next-backup .updraft_all-files{color:blue;margin:0;padding:2px 0 0 0}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.premium-upgrade-prompt{font-size:115%}.updraft_feat_table{margin-top:30px}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_lastlogmessagerow .last-message{padding-top:20px;display:block}.updraft_simplepie{vertical-align:top}.download-backups{margin-top:8px}.download-backups .updraft_download_button{margin-right:6px;margin-top:4px}.download-backups .choose-components-button{font-size:16px}.download-backups .ud-whitespace-warning{background-color:pink;padding:8px;margin:4px;border:1px dotted}.download-backups .ul{list-style:none inside;max-width:800px;margin-top:6px;margin-bottom:12px}#updraft-plupload-modal{width:75%;margin:16px;margin-left:100px}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:70%}.ud_downloadstatus{padding:10px;background:#f1f1f1}#ud_massactions{padding:14px;position:fixed;right:25%;top:25%;border:2px solid;border-radius:4px;background:#f1f1f1;float:right}#ud_massactions .updraftplus-remove{clear:left;font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv{font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:12px}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}#updraft_restorer_dboptions{padding:12px;margin:8px 0 4px 0;border:dashed 1px}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraft_debugrow th{vertical-align:top;padding-top:6px}.expertmode p{font-size:125%}.expertmode .call-wp-action{width:300px;height:22px}.updraftplus-lock-advert{clear:left;max-width:600px}.uncompressed-data{clear:left;max-width:600px}.delete-old-directories{padding:8px;padding-bottom:12px}.active-jobs{min-width:480px;min-height:48px;text-align:center;margin-top:4px;padding:8px;border:1px solid;float:left;clear:left}.job-id{min-width:480px;margin-top:4px;padding:8px;border:1px solid;clear:left;float:left}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#f6a828}.curstage{border-radius:4px;margin-top:8px;padding-top:4px;border:1px solid #AAA;width:100%;height:22px;position:relative;text-align:center;font-style:italic}.retain-files{width:48px}.backup-interval-description tr td div{max-width:670px}#updraft-manualdecrypt-modal{width:85%;margin:6px;margin-left:100px}.directory-permissions{font-size:110%;font-weight:bold}.double-warning{border:1px solid;padding:6px}.raw-backup-info{font-style:italic;font-weight:bold;font-size:120%}.updraft_existingbackup_date{width:22%;max-width:140px}.existing-backups-table{margin-top:20px;margin-left:20px;width:80%}.tr-bottom-4{margin-bottom:4px}.form-table .backup-date{width:172px;padding:0;padding-left:15px}.form-table .backup-data{width:426px;padding:0;padding-left:15px}.form-table .updraft_backup_actions{width:272px;padding:0 0 10px 15px}.existing-date{box-sizing:border-box;max-width:140px;width:25%}.line-break-tr{height:2px;padding:1px;margin:0}.line-break-td{margin:0;padding:0}.td-line-color{height:2px;background-color:#888}.raw-backup{max-width:140px}.existing-backups-actions{padding:1px;margin:0}.existing-backups-border{height:2px;padding:1px;margin:0}.existing-backups-border>td{margin:0;padding:0}.existing-backups-border>div{height:2px;background-color:#AAA}.updraft_existing_backup_date{max-width:140px}.restore-button{margin-right:6px;float:left;clear:none}.updraftplus-remove{font-size:16px;text-align:center;border-radius:4px}.before-restore-button{padding:1px;margin:0}.table-separator-tr{height:2px;padding:1px;margin:0}.table-separator-td{margin:0;padding:0}.end-of-table-div{height:2px;background-color:#AAA}.last-backup-job{padding-top:3% !important}.line-height-03{line-height:.3 !important}.line-height-13{line-height:1.3 !important}.line-height-23{line-height:2.3 !important}#updraft_diskspaceused{color:#df6926}.updraft_premium_description_list{text-align:left}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.job-id{margin:0 auto;width:20%}.updraft_all-files{color:#df6926}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}.dashicons{line-height:inherit;font-size:inherit}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important;padding-bottom:20px}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option{float:left;width:33%;text-align:center;padding-top:20px}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3{margin-top:5px !important}.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools{display:none}.expertmode .advanced_settings_container .advanced_settings_content .site_info{display:block}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:inline-block;cursor:pointer;padding:5px;color:#000}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text{font-size:16px}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover{background-color:#eaeaea}.expertmode .advanced_settings_container .advanced_settings_menu .active{background-color:#3498db;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_menu .active:hover{background-color:#72c5fd;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_content input#import_settings{height:auto !important}div#updraft-wrap a{cursor:pointer !important}.updraftcentral_wizard_option{width:45%;float:left;text-align:center}.updraftcentral_wizard_option label{margin-bottom:8px}#updraftcentral_keys_table{display:none}.create_key_container{border:1px solid;border-radius:4px;padding:0 0 6px 6px;margin-bottom:8px}@media screen and (min-width:670px){.expertmode .advanced_settings_container .advanced_settings_menu{float:left;width:215px;border-right:1px solid #ccc;border-bottom:0}.expertmode .advanced_settings_container .advanced_settings_content{padding-left:10px;padding-top:0}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:block}}
2
  /*# sourceMappingURL=admin.min.css.map */
1
+ .max-width-600{max-width:600px}.width-900{width:900px}.width-80{width:80%}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}input{border-radius:4px;line-height:1.42;border:1px solid #CCC;height:27px;padding:2px 6px;color:#555}input[type="text"]{font-size:14px}input[type="number"]{height:31px}select{border-radius:4px}.main-dashboard-buttons{border-width:4px;border-radius:12px;letter-spacing:0;font-size:17px;font-weight:bold;padding-left:.7em;padding-right:2em;padding:.3em 1em;line-height:1.7em;background:transparent;position:relative;border:2px solid;transition:all .2s;vertical-align:baseline;box-sizing:border-box;text-align:center;line-height:1.3em;margin-left:.3em;text-transform:none;line-height:1;text-decoration:none}.button-restore{border-color:#629ec0;color:#629ec0}.dashboard-main-sizing{border-width:4px;width:190px;line-height:1.7em}.button-restore:hover,.button-migrate:hover,.button-backup:hover,.button-view-log:hover,.button-mass-selectors:hover,.button-delete:hover,.button-entity-backup:hover,.udp-button-primary:hover{border-color:#df6926;color:#df6926}.button-migrate{color:#eea920;border-color:#eea920}.button-backup{border-color:#84ca1b;color:#84ca1b}.existing-backups-buttons{font-size:11px;line-height:1.4em;border-width:3px}.existing-backups-restore-buttons{font-size:11px;line-height:1.4em;border-width:3px}.button-delete{color:#e23900;border-color:#e23900;font-size:14px;line-height:1.4em;border-width:2px;margin-right:10px}.button-view-log,.button-mass-selectors{color:darkgrey;border-color:darkgrey;font-size:14px;line-height:1.4em;border-width:2px;margin-top:-1px}.button-view-log{width:120px}.button-existing-restore{font-size:14px;line-height:1.4em;border-width:2px;width:110px}.main-restore{margin-right:3%;margin-left:3%}.button-entity-backup{color:#555;border-color:#555;font-size:11px;line-height:1.4em;border-width:2px;margin-right:5px}.button-select-all{width:122px}.button-deselect{width:92px}#ud_massactions>.display-flex>.mass-selectors-margins{margin-right:-4px}.udp-button-primary{border-width:4px;color:#0073aa;border-color:#0073aa;font-size:14px;height:40px}#ud_massactions .button-delete{margin-right:0}.stored_local{border-radius:5px;background-color:#007fe7;padding:3px 5px 5px 5px;color:#FFF;font-size:75%}.form-table td.updraft_existingbackup_date{padding-bottom:5px}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label .clear-right{clear:right}.udp-logo-70{width:70px;height:70px;float:left;padding-right:25px}h3 .thank-you{margin-top:0}.ws_advert{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.dismiss-dash-notice{float:right;position:relative;top:-20px}#updraft_report_cell .updraft_reportbox{padding:8px;margin:8px 0;border:1px dotted;clear:left;float:left}#updraft_report_cell button.updraft_reportbox_delete{font-size:50%;float:right;padding:0 3px;position:relative;top:-4px;left:4px}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_checkbox{margin-top:4px}#updraft_report_cell .updraft_report_email{width:300px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#CCC}.updraft_settings_sectionheading{display:none}.updraft-backupentitybutton-disabled{background-color:transparent;border:0;color:#0074a2;text-decoration:underline;cursor:pointer;clear:none;float:left}.updraft-backupentitybutton{margin-left:8px}.updraft-bigbutton{padding:2px 0 !important;margin-right:14px !important;font-size:22px !important;min-height:32px;min-width:180px}tr[class*="_updraft_remote_storage_border"]{border-top:1px solid #CCC}.updraft_multi_storage_options{float:right;clear:right;margin-bottom:5px !important}.updraft_toggle_instance_label{vertical-align:top !important}.updraft_debugrow th{float:right;text-align:right;font-weight:bold;padding-right:8px;min-width:140px}.updraft_debugrow td{min-width:300px;vertical-align:bottom}#updraft_webdav_host_error{color:red}#updraft_zip_files_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}#updraft_zip_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}#updraft_zip_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}#updraft_zip_info_container p{margin:1px;padding-left:10px;font-size:14px}#updraft_zip_download_item{display:none;color:#0073aa;padding-left:10px}#updraft_zip_download_notice{padding-left:10px}#updraft_zip_files_jstree_container{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;height:300px;width:100%;border:1px dotted;margin-bottom:5px}#updraft_jstree_buttons{position:absolute;top:0;right:0}#updraft_jstree_container{height:100%;width:100%;overflow:auto}#updraft_more_files_container button{height:22px;line-height:20px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete{cursor:pointer;color:red;font-size:23px !important}.updraftplus-morefiles-row-edit{cursor:pointer;font-size:24px !important}#updraft-wrap .form-table th{width:230px}.updraftplus-remove{background-color:#c00000;border:1px solid #c00000;height:22px;padding:4px 3px 0 3px;margin-right:6px}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{background-color:#FFF;color:#000;border:1px solid #000;height:26px;padding:0;margin:0 4px 0 0;border-radius:3px;float:left}.updraft-viewlogdiv input,.updraft-viewlogdiv a{border:0;background-color:transparent;color:#000;margin:0;padding:3px 4px;font-size:16px;line-height:26px}.updraft-viewlogdiv:hover{background-color:#000;color:#FFF;border:1px solid #FFF;cursor:pointer}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.updraftplus-remove a{color:white;padding:4px 4px 0 4px}.updraftplus-remove:hover{background-color:white;border:1px solid #c00000}.updraftplus-remove a:hover{color:#c00000}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file{padding:5px;background:#ececec;border:solid 1px #CCC;margin:4px 0}ul.updraft_premium_description_list,ul#updraft_restore_warnings{list-style:disc inside}ul.updraft_premium_description_list li{display:inline}ul.updraft_premium_description_list li::after{content:" | "}ul.updraft_premium_description_list li.last::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraft_feat_table,.updraft_feat_th,.updraft_feat_table td{border:1px solid black;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:16px}.updraft_feat_table h4{margin:5px 0}.updraft_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.updraft_feat_table .dashicons-yes,.updraft_feat_table .updraft-yes{color:green}.updraft_feat_table .dashicons-no-alt,.updraft_feat_table .updraft-no{color:red}.updraft_tick_cell{text-align:center}.updraft_tick_cell img{margin:4px 0;height:24px}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#f6a828;height:5px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}tr.updraftplusmethod h3{margin:0}#updraft_retain_db_rules .updraft_retain_rules_delete,#updraft_retain_files_rules .updraft_retain_rules_delete{cursor:pointer;color:red;font-size:120%;font-weight:bold;border:0;border-radius:3px;padding:2px;margin:0 6px}#updraft_retain_db_rules .updraft_retain_rules_delete:hover,#updraft_retain_files_rules .updraft_retain_rules_delete:hover{cursor:pointer;color:white;background:red}#updraft_backup_started{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.next-backup .updraft_all-files{color:blue;margin:0;padding:2px 0 0 0}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.premium-upgrade-prompt{font-size:115%}.updraft_feat_table{margin-top:30px}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_lastlogmessagerow .last-message{padding-top:20px;display:block}.updraft_simplepie{vertical-align:top}.download-backups{margin-top:8px}.download-backups .updraft_download_button{margin-right:6px;margin-top:4px}.download-backups .choose-components-button{font-size:16px}.download-backups .ud-whitespace-warning{background-color:pink;padding:8px;margin:4px;border:1px dotted}.download-backups .ul{list-style:none inside;max-width:800px;margin-top:6px;margin-bottom:12px}#updraft-plupload-modal{width:75%;margin:16px;margin-left:100px}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:70%}.ud_downloadstatus{padding:10px;background:#f1f1f1}#ud_massactions{padding:14px;position:fixed;right:25%;top:25%;border:2px solid;border-radius:4px;background:#f1f1f1;float:right}#ud_massactions .updraftplus-remove{clear:left;font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv{font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:12px}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}#updraft_restorer_dboptions{padding:12px;margin:8px 0 4px 0;border:dashed 1px}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraft_debugrow th{vertical-align:top;padding-top:6px}.expertmode p{font-size:125%}.expertmode .call-wp-action{width:300px;height:22px}.updraftplus-lock-advert{clear:left;max-width:600px}.uncompressed-data{clear:left;max-width:600px}.delete-old-directories{padding:8px;padding-bottom:12px}.active-jobs{min-width:480px;min-height:48px;text-align:center;margin-top:4px;padding:8px;border:1px solid;float:left;clear:left}.job-id{min-width:480px;margin-top:4px;padding:8px;border:1px solid;clear:left;float:left}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#f6a828}.curstage{border-radius:4px;margin-top:8px;padding-top:4px;border:1px solid #AAA;width:100%;height:22px;position:relative;text-align:center;font-style:italic}.retain-files{width:48px}.backup-interval-description tr td div{max-width:670px}#updraft-manualdecrypt-modal{width:85%;margin:6px;margin-left:100px}.directory-permissions{font-size:110%;font-weight:bold}.double-warning{border:1px solid;padding:6px}.raw-backup-info{font-style:italic;font-weight:bold;font-size:120%}.updraft_existingbackup_date{width:22%;max-width:140px}.existing-backups-table{margin-top:20px;margin-left:20px;width:80%}.tr-bottom-4{margin-bottom:4px}.form-table .backup-date{width:172px;padding:0;padding-left:15px}.form-table .backup-data{width:426px;padding:0;padding-left:15px}.form-table .updraft_backup_actions{width:272px;padding:0 0 10px 15px}.existing-date{box-sizing:border-box;max-width:140px;width:25%}.line-break-tr{height:2px;padding:1px;margin:0}.line-break-td{margin:0;padding:0}.td-line-color{height:2px;background-color:#888}.raw-backup{max-width:140px}.existing-backups-actions{padding:1px;margin:0}.existing-backups-border{height:2px;padding:1px;margin:0}.existing-backups-border>td{margin:0;padding:0}.existing-backups-border>div{height:2px;background-color:#AAA}.updraft_existing_backup_date{max-width:140px}.restore-button{margin-right:6px;float:left;clear:none}.updraftplus-remove{font-size:16px;text-align:center;border-radius:4px}.before-restore-button{padding:1px;margin:0}.table-separator-tr{height:2px;padding:1px;margin:0}.table-separator-td{margin:0;padding:0}.end-of-table-div{height:2px;background-color:#AAA}.last-backup-job{padding-top:3% !important}.line-height-03{line-height:.3 !important}.line-height-13{line-height:1.3 !important}.line-height-23{line-height:2.3 !important}#updraft_diskspaceused{color:#df6926}.updraft_premium_description_list{text-align:left}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.job-id{margin:0 auto;width:20%}.updraft_all-files{color:#df6926}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}.dashicons{line-height:inherit;font-size:inherit}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important;padding-bottom:20px}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option{float:left;width:33%;text-align:center;padding-top:20px}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3{margin-top:5px !important}.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools{display:none}.expertmode .advanced_settings_container .advanced_settings_content .site_info{display:block}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:inline-block;cursor:pointer;padding:5px;color:#000}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text{font-size:16px}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover{background-color:#eaeaea}.expertmode .advanced_settings_container .advanced_settings_menu .active{background-color:#3498db;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_menu .active:hover{background-color:#72c5fd;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_content input#import_settings{height:auto !important}div#updraft-wrap a{cursor:pointer !important}.updraftcentral_wizard_option{width:45%;float:left;text-align:center}.updraftcentral_wizard_option label{margin-bottom:8px}#updraftcentral_keys_table{display:none}.create_key_container{border:1px solid;border-radius:4px;padding:0 0 6px 6px;margin-bottom:8px}@media screen and (min-width:670px){.expertmode .advanced_settings_container .advanced_settings_menu{float:left;width:215px;border-right:1px solid #ccc;border-bottom:0}.expertmode .advanced_settings_container .advanced_settings_content{padding-left:10px;padding-top:0}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:block}}
2
  /*# sourceMappingURL=admin.min.css.map */
css/admin.min.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/admin.css"],"names":[],"mappings":"AAAA,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED,iBAAiB;;AAEjB;CACC,mBAAmB;CACnB,kBAAkB;CAClB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB;;AAED,qBAAqB;;AAErB,kBAAkB;AAClB;CACC,kBAAkB;CAClB,oBAAoB;CACpB,oBAAoB;CACpB,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,wBAAwB;CACxB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,yBAAyB;CACzB,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,gCAAgC;CAChC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb,mBAAmB;CACnB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED,sBAAsB;;AAEtB,4BAA4B;;AAE5B;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,eAAe;CACf,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,UAAU;CACV;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,SAAS;CACT;;AAED;CACC,aAAa;CACb,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,aAAa;CACb,uBAAuB;CACvB,kBAAkB;CAClB;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,yBAAyB;CACzB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,aAAa;CACb;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,gBAAgB;CAChB,WAAW;CACX,SAAS;CACT,kBAAkB;CAClB,mBAAmB;CACnB,+BAA+B;CAC/B,aAAa;CACb;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,uBAAuB;CACvB;;AAED;CAGC,uBAAuB;CACvB,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,eAAe;CACf;;AAED,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;AACA;;;;;;;;;IASI;CACH;;AAED,uCAAuC;AACvC,6CAA6C;AAC7C;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,4CAA4C;CAC5C;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED","file":"admin.min.css","sourcesContent":["/* Widths and sizing */\r\n.max-width-600 {\r\n\tmax-width: 600px;\r\n}\r\n\r\n.width-900 {\r\n\twidth: 900px;\r\n}\r\n\r\n.width-80 {\r\n\twidth: 80%;\r\n}\r\n\r\n/* End widths and sizing */\r\n\r\n/* Font styling */\r\n.no-decoration {\r\n\ttext-decoration: none;\r\n}\r\n\r\n.bold {\r\n\tfont-weight: bold;\r\n}\r\n\r\n/* End font styling */\r\n/* Alignment */\r\n.center-align-td {\r\n\ttext-align: center;\r\n}\r\n\r\n/* End of Alignment */\r\n/* Padding */\r\n.remove-padding {\r\n\tpadding: 0 !important;\r\n}\r\n\r\n/* End of padding */\r\n\r\n.updraft-text-center {\r\n\ttext-align: center;\r\n}\r\n\r\n.autobackup {\r\n\tpadding: 6px;\r\n\tmargin: 8px 0px;\r\n}\r\n\r\nul .disc {\r\n\tlist-style: disc inside;\r\n}\r\n\r\n.dashicons-log-fix {\r\n\tdisplay: inherit;\r\n}\r\n\r\n/* Input boxes */\r\n\r\ninput {\r\n\tborder-radius: 4px;\r\n\tline-height: 1.42;\r\n\tborder: 1px solid #CCC;\r\n\theight: 27px;\r\n\tpadding: 2px 6px;\r\n\tcolor: #555;\r\n}\r\n\r\ninput[type=\"text\"] {\r\n\tfont-size: 14px;\r\n}\r\n\r\ninput[type=\"number\"] {\r\n\theight: 31px;\r\n}\r\n\r\nselect {\r\n\tborder-radius: 4px;\r\n}\r\n\r\n/* End input boxes */\r\n\r\n/* Main Buttons */\r\n.main-dashboard-buttons {\r\n\tborder-width: 4px;\r\n\tborder-radius: 12px;\r\n\tletter-spacing: 0px;\r\n\tfont-size: 17px;\r\n\tfont-weight: bold;\r\n\tpadding-left: 0.7em;\r\n\tpadding-right: 2em;\r\n\tpadding: 0.3em 1em;\r\n\tline-height: 1.7em;\r\n\tbackground: transparent;\r\n\tposition: relative;\r\n\tborder: 2px solid;\r\n\ttransition: all 0.2s;\r\n\tvertical-align: baseline;\r\n\tbox-sizing: border-box;\r\n\ttext-align: center;\r\n\tline-height: 1.3em;\r\n\tmargin-left: .3em;\r\n\ttext-transform: none;\r\n\tline-height: 1;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.button-restore {\r\n\tborder-color: rgb(98, 158, 192);\r\n\tcolor: rgb(98, 158, 192);\r\n}\r\n\r\n.dashboard-main-sizing {\r\n\tborder-width: 4px;\r\n\twidth: 190px;\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\r\n.button-view-log:hover, .button-mass-selectors:hover,\r\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\r\n\tborder-color: #DF6926;\r\n\tcolor: #DF6926;\r\n}\r\n\r\n.button-migrate {\r\n\tcolor: rgb(238, 169, 32);\r\n\tborder-color: rgb(238, 169, 32);\r\n}\r\n\r\n.button-backup {\r\n\tborder-color: #84CA1B;\r\n\tcolor: #84CA1B;\r\n}\r\n\r\n.existing-backups-buttons {\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 3px;\r\n}\r\n\r\n.existing-backups-restore-buttons {\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 3px;\r\n}\r\n\r\n.button-delete {\r\n\tcolor: #E23900;\r\n\tborder-color: #E23900;\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-right: 10px;\r\n}\r\n\r\n.button-view-log, .button-mass-selectors {\r\n\tcolor: darkgrey;\r\n\tborder-color: darkgrey;\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-top: -1px;\r\n}\r\n\r\n.button-view-log {\r\n\twidth: 120px;\r\n}\r\n\r\n.button-existing-restore {\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\twidth: 110px;\r\n}\r\n\r\n.main-restore {\r\n\tmargin-right: 3%;\r\n\tmargin-left: 3%;\r\n}\r\n\r\n.button-entity-backup {\r\n\tcolor: #555;\r\n\tborder-color: #555;\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-right: 5px;\r\n}\r\n\r\n.button-select-all {\r\n\twidth: 122px;\r\n}\r\n\r\n.button-deselect {\r\n\twidth: 92px;\r\n}\r\n\r\n#ud_massactions > .display-flex > .mass-selectors-margins {\r\n\tmargin-right: -4px;\r\n}\r\n\r\n.udp-button-primary {\r\n\tborder-width: 4px;\r\n\tcolor: #0073AA;\r\n\tborder-color: #0073AA;\r\n\tfont-size: 14px;\r\n\theight: 40px;\r\n}\r\n\r\n#ud_massactions .button-delete {\r\n\tmargin-right: 0px;\r\n}\r\n\r\n.stored_local {\r\n\tborder-radius: 5px;\r\n\tbackground-color: #007FE7;\r\n\tpadding: 3px 5px 5px 5px;\r\n\tcolor: #FFF;\r\n\tfont-size: 75%;\r\n}\r\n\r\n.form-table td.updraft_existingbackup_date {\r\n\tpadding-bottom: 5px;\r\n}\r\n\r\nspan#updraft_lastlogcontainer {\r\n\tword-break: break-all;\r\n}\r\n\r\n.stored_icon {\r\n\theight: 1.3em;\r\n\tposition: relative;\r\n\ttop: 0.2em;\r\n}\r\n\r\n.backup_date_label .clear-right {\r\n\tclear: right;\r\n}\r\n\r\n/* End Main Buttons */\r\n\r\n/* End of common elements */\r\n\r\n.udp-logo-70 {\r\n\twidth: 70px;\r\n\theight: 70px;\r\n\tfloat: left;\r\n\tpadding-right: 25px;\r\n}\r\n\r\nh3 .thank-you {\r\n\tmargin-top: 0px;\r\n}\r\n\r\n.ws_advert {\r\n\tmax-width: 800px;\r\n\tfont-size: 140%;\r\n\tline-height: 140%;\r\n\tpadding: 14px;\r\n\tclear: left;\r\n}\r\n\r\n.dismiss-dash-notice {\r\n\tfloat: right;\r\n\tposition: relative;\r\n\ttop: -20px;\r\n}\r\n\r\n#updraft_report_cell .updraft_reportbox {\r\n\tpadding: 8px;\r\n\tmargin: 8px 0;\r\n\tborder: 1px dotted;\r\n\tclear: left;\r\n\tfloat: left;\r\n}\r\n\r\n#updraft_report_cell button.updraft_reportbox_delete {\r\n\tfont-size: 50%;\r\n\tfloat: right;\r\n\tpadding: 0 3px;\r\n\tposition: relative;\r\n\ttop: -4px;\r\n\tleft: 4px;\r\n}\r\n\r\n#updraft-navtab-settings-content .updraft-test-button {\r\n\tfont-size: 18px !important;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_checkbox {\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_email {\r\n\twidth: 300px;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_another_p {\r\n\tclear: left;\r\n}\r\n\r\n/* Taken straight from admin.php */\r\n\r\n#updraft-navtab-settings-content table.form-table p {\r\n\tmax-width: 700px;\r\n}\r\n\r\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\r\n\tbackground-color: #CCC;\r\n}\r\n\r\n.updraft_settings_sectionheading {\r\n\tdisplay: none;\r\n}\r\n\r\n.updraft-backupentitybutton-disabled {\r\n\tbackground-color: transparent;\r\n\tborder: none;\r\n\tcolor: #0074A2;\r\n\ttext-decoration: underline;\r\n\tcursor: pointer;\r\n\tclear: none;\r\n\tfloat: left;\r\n}\r\n\r\n.updraft-backupentitybutton {\r\n\tmargin-left: 8px;\r\n}\r\n\r\n.updraft-bigbutton {\r\n\tpadding: 2px 0px !important;\r\n\tmargin-right: 14px !important;\r\n\tfont-size: 22px !important;\r\n\tmin-height: 32px;\r\n\tmin-width: 180px;\r\n}\r\n\r\n.updraft_debugrow th {\r\n\tfloat: right;\r\n\ttext-align: right;\r\n\tfont-weight: bold;\r\n\tpadding-right: 8px;\r\n\tmin-width: 140px;\r\n}\r\n\r\n.updraft_debugrow td {\r\n\tmin-width: 300px;\r\n\tvertical-align: bottom;\r\n}\r\n\r\n#updraft_webdav_host_error {\r\n\tcolor: red;\r\n}\r\n\r\n/* jstree styles */\r\n\r\n/* these styles hide the dots from the parent but keep the arrows */\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-node,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\r\n\tbackground: transparent;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\r\n\tbackground-position: -36px -4px;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\r\n\tbackground-position: -4px -4px;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\r\n\tbackground: transparent;\r\n}\r\n\r\n/* zip browser jstree styles */\r\n#updraft_zip_files_container {\r\n\tposition: relative;\r\n\theight: 450px;\r\n\toverflow: none;\r\n}\r\n\r\n#updraft_zip_info_container {\r\n\tposition: relative;\r\n\theight: auto;\r\n\twidth: 100%;\r\n\tborder: 1px dotted;\r\n\tmargin-bottom: 5px;\r\n}\r\n\r\n#updraft_zip_info_container p {\r\n\tmargin: 1px;\r\n\tpadding-left: 10px;\r\n\tfont-size: 14px;\r\n}\r\n\r\n#updraft_zip_download_item {\r\n\tdisplay: none;\r\n\tcolor: #0073AA;\r\n\tpadding-left: 10px;\r\n}\r\n\r\n#updraft_zip_download_notice {\r\n\tpadding-left: 10px;\r\n}\r\n\r\n#updraft_zip_files_jstree_container {\r\n\tposition: relative;\r\n\tborder: 1px dotted;\r\n\theight: 80%;\r\n\twidth: 100%;\r\n\toverflow: auto;\r\n}\r\n\r\n/* More files jstree styles */\r\n#updraft_more_files_container {\r\n\tposition: relative;\r\n\tdisplay: none;\r\n\theight: 300px;\r\n\twidth: 100%;\r\n\tborder: 1px dotted;\r\n\tmargin-bottom: 5px;\r\n}\r\n\r\n#updraft_jstree_buttons {\r\n\tposition: absolute;\r\n\ttop: 0;\r\n\tright: 0;\r\n}\r\n\r\n#updraft_jstree_container {\r\n\theight: 100%;\r\n\twidth: 100%;\r\n\toverflow: auto;\r\n}\r\n\r\n#updraft_more_files_container button {\r\n\theight: 22px;\r\n\tline-height: 20px;\r\n}\r\n\r\n#updraft_jstree_confirm, #updraft_jstree_cancel {\r\n\tdisplay: none;\r\n}\r\n\r\n.updraftplus-morefiles-row-delete {\r\n\tcursor: pointer;\r\n\tcolor: red;\r\n\tfont-size: 23px !important;\r\n}\r\n\r\n.updraftplus-morefiles-row-edit {\r\n\tcursor: pointer;\r\n\tfont-size: 24px !important;\r\n}\r\n\r\n#updraft-wrap .form-table th {\r\n\twidth: 230px;\r\n}\r\n\r\n.updraftplus-remove {\r\n\tbackground-color: #C00000;\r\n\tborder: 1px solid #C00000;\r\n\theight: 22px;\r\n\tpadding: 4px 3px 0 3px;\r\n\tmargin-right: 6px;\r\n}\r\n\r\n.updraft-viewlogdiv form {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.updraft-viewlogdiv {\r\n\tbackground-color: #FFF;\r\n\tcolor: #000;\r\n\tborder: 1px solid #000;\r\n\theight: 26px;\r\n\tpadding: 0px;\r\n\tmargin: 0 4px 0 0;\r\n\tborder-radius: 3px;\r\n\tfloat: left;\r\n}\r\n\r\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\r\n\tborder: none;\r\n\tbackground-color: transparent;\r\n\tcolor: #000;\r\n\tmargin: 0px;\r\n\tpadding: 3px 4px;\r\n\tfont-size: 16px;\r\n\tline-height: 26px;\r\n}\r\n\r\n.updraft-viewlogdiv:hover {\r\n\tbackground-color: #000;\r\n\tcolor: #FFF;\r\n\tborder: 1px solid #FFF;\r\n\tcursor: pointer;\r\n}\r\n\r\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\r\n\tcolor: #FFF;\r\n\tcursor: pointer;\r\n}\r\n\r\n.updraftplus-remove a {\r\n\tcolor: white;\r\n\tpadding: 4px 4px 0px 4px;\r\n}\r\n\r\n.updraftplus-remove:hover {\r\n\tbackground-color: white;\r\n\tborder: 1px solid #C00000;\r\n}\r\n\r\n.updraftplus-remove a:hover {\r\n\tcolor: #C00000;\r\n}\r\n\r\n.drag-drop #drag-drop-area2 {\r\n\tborder: 4px dashed #DDD;\r\n\theight: 200px;\r\n}\r\n\r\n#drag-drop-area2 .drag-drop-inside {\r\n\tmargin: 36px auto 0;\r\n\twidth: 350px;\r\n}\r\n\r\n#filelist, #filelist2 {\r\n\twidth: 100%;\r\n}\r\n\r\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\r\n\tpadding: 5px;\r\n\tbackground: #ECECEC;\r\n\tborder: solid 1px #CCC;\r\n\tmargin: 4px 0;\r\n}\r\n\r\nul.updraft_premium_description_list, ul#updraft_restore_warnings {\r\n\tlist-style: disc inside;\r\n}\r\n\r\nul.updraft_premium_description_list li {\r\n\tdisplay: inline;\r\n}\r\n\r\nul.updraft_premium_description_list li::after {\r\n\tcontent: \" | \";\r\n}\r\n\r\nul.updraft_premium_description_list li.last::after {\r\n\tcontent: \"\";\r\n}\r\n\r\n.updraft_feature_cell {\r\n\tbackground-color: #F7D9C9 !important;\r\n\tpadding: 5px 10px;\r\n}\r\n\r\n.updraft_feat_table, .updraft_feat_th, .updraft_feat_table td {\r\n\tborder: 1px solid black;\r\n\tborder-collapse: collapse;\r\n\tfont-size: 120%;\r\n\tbackground-color: white;\r\n\ttext-align: center;\r\n}\r\n\r\n.updraft_feat_table p {\r\n\tpadding: 0px 10px;\r\n\tmargin: 5px 0px;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.updraft_feat_table h4 {\r\n\tmargin: 5px 0px;\r\n}\r\n\r\n.updraft_feat_table .dashicons {\r\n\twidth: 25px;\r\n\theight: 25px;\r\n\tfont-size: 25px;\r\n\tline-height: 1;\r\n}\r\n\r\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\r\n\tcolor: green;\r\n}\r\n\r\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\r\n\tcolor: red;\r\n}\r\n\r\n.updraft_tick_cell {\r\n\ttext-align: center;\r\n}\r\n\r\n.updraft_tick_cell img {\r\n\tmargin: 4px 0;\r\n\theight: 24px;\r\n}\r\n\r\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\r\n\twidth: 0%;\r\n\tbackground: #F6A828;\r\n\theight: 5px;\r\n}\r\n\r\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\r\n\tmargin-top: 8px;\r\n\tclear: left;\r\n}\r\n\r\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\r\n\tmargin-top: 8px;\r\n}\r\n\r\ntr.updraftplusmethod h3 {\r\n\tmargin: 0px;\r\n}\r\n\r\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\r\n\tcursor: pointer;\r\n\tcolor: red;\r\n\tfont-size: 120%;\r\n\tfont-weight: bold;\r\n\tborder: 0px;\r\n\tborder-radius: 3px;\r\n\tpadding: 2px;\r\n\tmargin: 0 6px;\r\n}\r\n\r\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\r\n\tcursor: pointer;\r\n\tcolor: white;\r\n\tbackground: red;\r\n}\r\n\r\n#updraft_backup_started {\r\n\tmax-width: 800px;\r\n\tfont-size: 140%;\r\n\tline-height: 140%;\r\n\tpadding: 14px;\r\n\tclear: left;\r\n}\r\n\r\n.udp-premium-image {\r\n\tdisplay: none;\r\n}\r\n\r\n@media screen and (min-width: 720px) {\r\n\r\n\t.udp-premium-image {\r\n\t\tdisplay: block;\r\n\t\tfloat: left;\r\n\t\tpadding-right: 5px;\r\n\t}\r\n\r\n}\r\n\r\n/* End stuff already in admin.php */\r\n#plupload-upload-ui2 {\r\n\twidth: 80%;\r\n}\r\n\r\n.backup-restored {\r\n\tpadding: 8px;\r\n}\r\n\r\n.backup-restored span {\r\n\tfont-size: 120%;\r\n}\r\n\r\n.memory-limit {\r\n\tpadding: 8px;\r\n}\r\n\r\n.updraft_list_errors {\r\n\tpadding: 8px;\r\n}\r\n\r\n/*.nav-tab {\r\n\tborder-radius: 20px 20px 0 0;\r\n\tborder-color: grey;\r\n\tborder-width: 2px;\r\n\tmargin-top: 34px;\r\n}\r\n\r\n.nav-tab:hover {\r\n\tborder-bottom: 0;\r\n}\r\n\r\n.nav-tab-active, .nav-tab-active:active {\r\n\tcolor: #df6926;\r\n\tborder-color: #D3D3D3;\r\n\tborder-width: 1px;\r\n\tborder-bottom: 0;\r\n}\r\n\r\n.nav-tab-active:focus {\r\n\tcolor: #df6926;\r\n}*/\r\n\r\n.nav-tab-wrapper {\r\n\tmargin: 14px 0px;\r\n}\r\n\r\n#updraft-poplog-content {\r\n\twhite-space: pre-wrap;\r\n}\r\n\r\n.next-backup {\r\n\tborder: 0px;\r\n\tpadding: 0px;\r\n\tmargin: 0 10px 0 0;\r\n}\r\n\r\n.not-scheduled {\r\n\tvertical-align: top !important;\r\n\tmargin: 0px !important;\r\n\tpadding: 0px !important;\r\n}\r\n\r\n.next-backup .updraft_scheduled {\r\n\t/* width: 124px;*/\r\n\tmargin: 0px;\r\n\tpadding: 2px 4px 2px 0px;\r\n}\r\n\r\n#next-backup-table-inner td {\r\n\tvertical-align: top;\r\n}\r\n\r\n.next-backup .updraft_all-files {\r\n\tcolor: blue;\r\n\tmargin: 0px;\r\n\tpadding: 2px 0px 0px 0px;\r\n}\r\n\r\n.multisite-advert-width {\r\n\twidth: 800px;\r\n}\r\n\r\n.updraft_settings_sectionheading {\r\n\tmargin-top: 6px;\r\n}\r\n\r\n.premium-upgrade-prompt {\r\n\tfont-size: 115%;\r\n}\r\n\r\n.updraft_feat_table {\r\n\tmargin-top: 30px;\r\n}\r\n\r\n.show_admin_restore_in_progress_notice {\r\n\tpadding: 8px;\r\n}\r\n\r\n.show_admin_restore_in_progress_notice .unfinished-restoration {\r\n\tfont-size: 120%;\r\n}\r\n\r\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\r\n\tmargin: 4px 16px 6px 16px;\r\n\tborder: 1px dotted;\r\n\tpadding: 6px 10px;\r\n}\r\n\r\n#backupnow_database_moreoptions {\r\n\tmax-height: 250px;\r\n\toverflow: auto;\r\n}\r\n\r\n.form-table #updraft_activejobsrow .minimum-height {\r\n\tmin-height: 100px;\r\n}\r\n\r\n#updraft_lastlogmessagerow .last-message {\r\n\tpadding-top: 20px;\r\n\tdisplay: block;\r\n}\r\n\r\n.updraft_simplepie {\r\n\tvertical-align: top;\r\n}\r\n\r\n.download-backups {\r\n\tmargin-top: 8px;\r\n}\r\n\r\n.download-backups .updraft_download_button {\r\n\tmargin-right: 6px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n.download-backups .choose-components-button {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.download-backups .ud-whitespace-warning {\r\n\tbackground-color: pink;\r\n\tpadding: 8px;\r\n\tmargin: 4px;\r\n\tborder: 1px dotted;\r\n}\r\n\r\n.download-backups .ul {\r\n\tlist-style: none inside;\r\n\tmax-width: 800px;\r\n\tmargin-top: 6px;\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\n#updraft-plupload-modal {\r\n\twidth: 75%;\r\n\tmargin: 16px;\r\n\tmargin-left: 100px;\r\n}\r\n\r\n.download-backups .upload {\r\n\tmax-width: 610px;\r\n}\r\n\r\n.download-backups #plupload-upload-ui {\r\n\twidth: 70%;\r\n}\r\n\r\n.ud_downloadstatus {\r\n\tpadding: 10px;\r\n\tbackground: #F1F1F1;\r\n}\r\n\r\n#ud_massactions {\r\n\tpadding: 14px;\r\n\tposition: fixed;\r\n\tright: 25%;\r\n\ttop: 25%;\r\n\tborder: 2px solid;\r\n\tborder-radius: 4px;\r\n\tbackground: rgb(241, 241, 241);\r\n\tfloat: right;\r\n}\r\n\r\n#ud_massactions .updraftplus-remove {\r\n\tclear: left;\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#ud_massactions .updraftplus-remove a {\r\n\ttext-decoration: none;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv {\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv a {\r\n\ttext-decoration: none;\r\n\tposition: relative;\r\n\ttop: 3px;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv a {\r\n\ttext-decoration: none;\r\n\tposition: relative;\r\n\ttop: 3px;\r\n}\r\n\r\n#updraft-navtab-backups-content .updraft_existing_backups {\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\n#updraft-message-modal-innards {\r\n\tpadding: 4px;\r\n}\r\n\r\n#updraft-authenticate-modal {\r\n\ttext-align: center;\r\n\tfont-size: 16px !important;\r\n}\r\n\r\n#updraft-authenticate-modal p {\r\n\tfont-size: 16px;\r\n}\r\n\r\n#updraft_delete_form p {\r\n\tmargin-top: 3px;\r\n\tpadding-top: 0;\r\n}\r\n\r\n#updraft_restore_form .cannot-restore {\r\n\tmargin: 8px 0;\r\n}\r\n\r\n#updraft_restorer_dboptions {\r\n\tpadding: 12px;\r\n\tmargin: 8px 0 4px 0;\r\n\tborder: dashed 1px;\r\n}\r\n\r\n#updraft_restorer_dboptions h4 {\r\n\tmargin: 0px 0px 6px 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\n.updraft_debugrow th {\r\n\tvertical-align: top;\r\n\tpadding-top: 6px;\r\n}\r\n\r\n.expertmode p {\r\n\tfont-size: 125%;\r\n}\r\n\r\n.expertmode .call-wp-action {\r\n\twidth: 300px;\r\n\theight: 22px;\r\n}\r\n\r\n.updraftplus-lock-advert {\r\n\tclear: left;\r\n\tmax-width: 600px;\r\n}\r\n\r\n.uncompressed-data {\r\n\tclear: left;\r\n\tmax-width: 600px;\r\n}\r\n\r\n.delete-old-directories {\r\n\tpadding: 8px;\r\n\tpadding-bottom: 12px;\r\n}\r\n\r\n.active-jobs {\r\n\tmin-width: 480px;\r\n\tmin-height: 48px;\r\n\ttext-align: center;\r\n\tmargin-top: 4px;\r\n\tpadding: 8px;\r\n\tborder: 1px solid;\r\n\tfloat: left;\r\n\tclear: left;\r\n}\r\n\r\n.job-id {\r\n\tmin-width: 480px;\r\n\tmargin-top: 4px;\r\n\tpadding: 8px;\r\n\tborder: 1px solid;\r\n\tclear: left;\r\n\tfloat: left;\r\n}\r\n\r\n.next-resumption {\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraft_percentage {\r\n\tz-index: -1;\r\n\tposition: absolute;\r\n\tleft: 0px;\r\n\ttop: 0px;\r\n\ttext-align: center;\r\n\tbackground-color: #F6A828;\r\n}\r\n\r\n.curstage {\r\n\tborder-radius: 4px;\r\n\tmargin-top: 8px;\r\n\tpadding-top: 4px;\r\n\tborder: 1px solid #AAA;\r\n\twidth: 100%;\r\n\theight: 22px;\r\n\tposition: relative;\r\n\ttext-align: center;\r\n\tfont-style: italic;\r\n}\r\n\r\n.retain-files {\r\n\twidth: 48px;\r\n}\r\n\r\n.backup-interval-description tr td div {\r\n\tmax-width: 670px;\r\n}\r\n\r\n#updraft-manualdecrypt-modal {\r\n\twidth: 85%;\r\n\tmargin: 6px;\r\n\tmargin-left: 100px;\r\n}\r\n\r\n.directory-permissions {\r\n\tfont-size: 110%;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.double-warning {\r\n\tborder: 1px solid;\r\n\tpadding: 6px;\r\n}\r\n\r\n.raw-backup-info {\r\n\tfont-style: italic;\r\n\tfont-weight: bold;\r\n\tfont-size: 120%;\r\n}\r\n\r\n.updraft_existingbackup_date {\r\n\twidth: 22%;\r\n\tmax-width: 140px;\r\n}\r\n\r\n.existing-backups-table {\r\n\tmargin-top: 20px;\r\n\tmargin-left: 20px;\r\n\twidth: 80%;\r\n}\r\n\r\n.tr-bottom-4 {\r\n\tmargin-bottom: 4px;\r\n}\r\n\r\n.form-table .backup-date {\r\n\twidth: 172px;\r\n\tpadding: 0;\r\n\tpadding-left: 15px;\r\n}\r\n\r\n.form-table .backup-data {\r\n\twidth: 426px;\r\n\tpadding: 0;\r\n\tpadding-left: 15px;\r\n}\r\n\r\n.form-table .updraft_backup_actions {\r\n\twidth: 272px;\r\n\tpadding: 0 0 10px 15px;\r\n}\r\n\r\n.existing-date {\r\n\t-webkit-box-sizing: border-box;\r\n\t-moz-box-sizing: border-box;\r\n\tbox-sizing: border-box;\r\n\tmax-width: 140px;\r\n\twidth: 25%;\r\n}\r\n\r\n.line-break-tr {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.line-break-td {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.td-line-color {\r\n\theight: 2px;\r\n\tbackground-color: #888;\r\n}\r\n\r\n.raw-backup {\r\n\tmax-width: 140px;\r\n}\r\n\r\n.existing-backups-actions {\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.existing-backups-border {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.existing-backups-border > td {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.existing-backups-border > div {\r\n\theight: 2px;\r\n\tbackground-color: #AAA;\r\n}\r\n\r\n.updraft_existing_backup_date {\r\n\tmax-width: 140px;\r\n}\r\n\r\n.restore-button {\r\n\tmargin-right: 6px;\r\n\tfloat: left;\r\n\tclear: none;\r\n}\r\n\r\n.updraftplus-remove {\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n}\r\n\r\n.before-restore-button {\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.table-separator-tr {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.table-separator-td {\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\n.end-of-table-div {\r\n\theight: 2px;\r\n\tbackground-color: #AAA;\r\n}\r\n\r\n.last-backup-job {\r\n\tpadding-top: 3% !important;\r\n}\r\n\r\n.line-height-03 {\r\n\tline-height: 0.3 !important;\r\n}\r\n\r\n.line-height-13 {\r\n\tline-height: 1.3 !important;\r\n}\r\n\r\n.line-height-23 {\r\n\tline-height: 2.3 !important;\r\n}\r\n\r\n#updraft_diskspaceused {\r\n\tcolor: #DF6926;\r\n}\r\n\r\n.updraft_premium_description_list {\r\n\ttext-align: left;\r\n}\r\n\r\n#updraft_delete_old_dirs_pagediv {\r\n\tpadding-bottom: 10px;\r\n}\r\n\r\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\r\n\tpadding: 0;\r\n}*/\r\n\r\n.job-id {\r\n\tmargin: 0 auto;\r\n\twidth: 20%;\r\n}\r\n\r\n.updraft_all-files {\r\n\tcolor: #DF6926;\r\n}\r\n\r\n/* Time + scheduling add-on*/\r\n.fix-time {\r\n\twidth: 70px;\r\n}\r\n\r\n.retain-files {\r\n\twidth: 70px;\r\n}\r\n\r\n.number-input {\r\n\tmin-width: 50px;\r\n\tmax-width: 70px;\r\n}\r\n\r\n.additional-rule-width {\r\n\tmin-width: 60px;\r\n\tmax-width: 70px;\r\n}\r\n\r\n/* Add-ons */\r\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\r\n\r\n.dashicons {\r\n\tline-height: inherit;\r\n\tfont-size: inherit;\r\n}\r\n\r\n.addon-logo-150 {\r\n\tmargin-left: 30px;\r\n\tmargin-top: 33px;\r\n\theight: 125px;\r\n\twidth: 150px;\r\n}\r\n\r\n.margin-bottom-50 {\r\n\tmargin-bottom: 50px;\r\n}\r\n\r\n.premium-container {\r\n\twidth: 80%;\r\n}\r\n\r\n/* Main Header */\r\n\r\n.main-header {\r\n\tbackground-color: #DF6926;\r\n\theight: 200px;\r\n\twidth: 100%;\r\n}\r\n\r\n.button-add-to-cart {\r\n\tcolor: white;\r\n\tborder-color: white;\r\n\tfloat: none;\r\n\tmargin-right: 17px;\r\n}\r\n\r\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\r\n\tborder-color: #A0A5AA;\r\n\tcolor: #A0A5AA;\r\n}\r\n\r\n.addon-title {\r\n\tmargin-top: 25px;\r\n}\r\n\r\n.addon-text {\r\n\tmargin-top: 75px;\r\n}\r\n\r\n.image-main-div {\r\n\twidth: 25%;\r\n\tfloat: left;\r\n}\r\n\r\n.text-main-div {\r\n\twidth: 60%;\r\n\tfloat: left;\r\n\ttext-align: center;\r\n\tcolor: white;\r\n\tmargin-top: 16px;\r\n}\r\n\r\n.text-main-div-title {\r\n\tfont-weight: bold !important;\r\n\tcolor: white;\r\n\ttext-align: center;\r\n}\r\n\r\n.text-main-div-paragraph {\r\n\tcolor: white;\r\n}\r\n\r\n/* End main header */\r\n\r\n/* Vault icons */\r\n\r\n.updraftplus-vault-cta {\r\n\twidth: 100%;\r\n\ttext-align: center;\r\n\tmargin-bottom: 50px;\r\n}\r\n\r\n.updraftplus-vault-cta h1 {\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraftvault-buy {\r\n\twidth: 225px;\r\n\theight: 225px;\r\n\tborder: 2px solid #777;\r\n\tdisplay: inline-table;\r\n\tmargin: 0 auto;\r\n\tmargin-right: 50px;\r\n\tposition: relative;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault {\r\n\twidth: 275px;\r\n\theight: 275px;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\r\n\tright: 21%;\r\n\tfont-size: 16px;\r\n\tborder-width: 4px !important;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.updraftvault-buy .button-purchase {\r\n\tright: 24%;\r\n\tmargin-left: 0;\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.updraftvault-buy hr {\r\n\theight: 2px;\r\n\tbackground-color: #777;\r\n\tmargin-top: 18px;\r\n}\r\n\r\n.right {\r\n\tmargin-right: 0px;\r\n}\r\n\r\n.updraftvault-buy .addon-logo-100 {\r\n\theight: 100px;\r\n\twidth: 125px;\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.updraftvault-buy .addon-logo-large {\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.updraftvault-buy .button-buy-vault {\r\n\tfont-size: 12px;\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tborder-width: 2px !important;\r\n\tposition: absolute;\r\n\tright: 29%;\r\n\tbottom: 2%;\r\n}\r\n\r\n.premium-addon-div .button-purchase {\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.updraftvault-buy .button-buy-vault:hover {\r\n\tborder-color: darkgrey;\r\n\tcolor: darkgrey;\r\n}\r\n\r\n/* End Vault icons */\r\n\r\n/* Premium addons */\r\n\r\n.premium-addons {\r\n\tmargin-top: 80px;\r\n\twidth: 100%;\r\n\tmargin: 0 auto;\r\n\tdisplay: table;\r\n}\r\n\r\n.addon-list {\r\n\t/* margin-left: 32px; */\r\n\tdisplay: table;\r\n\ttext-align: center;\r\n}\r\n\r\n.premium-addons h1 {\r\n\ttext-align: center;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.premium-addons p {\r\n\ttext-align: center;\r\n}\r\n\r\n.premium-addons .premium-addon-div {\r\n\twidth: 200px;\r\n\theight: 250px;\r\n\tborder: 2px solid #777;\r\n\tdisplay: inline-table;\r\n\tmargin: 0 auto;\r\n\tmargin-right: 25px;\r\n\tmargin-top: 25px;\r\n\ttext-align: center;\r\n\tposition: relative;\r\n}\r\n\r\n.premium-addons .premium-addon-div p {\r\n\tmargin-left: 2px;\r\n\tmargin-right: 2px;\r\n}\r\n\r\n.premium-addons .premium-addon-div img {\r\n\twidth: auto;\r\n\theight: 50px;\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .hr-alignment {\r\n\tmargin-top: 44px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .dropbox-logo {\r\n\theight: 39px;\r\n\twidth: 150px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\r\n\twidth: 75%;\r\n\theight: 24px;\r\n}\r\n\r\n.button-purchase {\r\n\tfont-size: 12px;\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tborder-width: 2px !important;\r\n\tposition: absolute;\r\n\tright: 25%;\r\n\tbottom: 2%;\r\n}\r\n\r\n.button-purchase:hover {\r\n\tcolor: darkgrey;\r\n\tborder-color: darkgrey;\r\n}\r\n\r\n.premium-addons .premium-addon-div hr {\r\n\theight: 2px;\r\n\tbackground-color: #777;\r\n\tmargin-top: 18px;\r\n}\r\n\r\n.premium-addon-div p {\r\n\tfont-style: italic;\r\n}\r\n\r\n.addon-list > .premium-addon-div > .onedrive-fix,\r\n.addon-list > .premium-addon-div > .azure-logo {\r\n\tmargin-top: 33px;\r\n}\r\n\r\n.addon-list > .premium-addon-div > .dropbox-fix {\r\n\tmargin-top: 18px;\r\n}\r\n\r\n/* End premium addons */\r\n\r\n\r\n/* Forgotton something (that is the name of the div rather than a mental note!) */\r\n\r\n.premium-forgotton-something {\r\n\tmargin-top: 5%;\r\n}\r\n\r\n.premium-forgotton-something h1 {\r\n\ttext-align: center;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.premium-forgotton-something p {\r\n\ttext-align: center;\r\n\tfont-weight: normal;\r\n}\r\n\r\n.premium-forgotton-something .button-faq {\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tmargin: 0 auto;\r\n\tdisplay: table;\r\n}\r\n\r\n.premium-forgotton-something .button-faq:hover {\r\n\tcolor: #777;\r\n\tborder-color: #777;\r\n}\r\n\r\n/* End of forgotton something */\r\n\r\n.updraftplusmethod.updraftvault #vaultlogo {\r\n\tpadding-left: 40px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault_primary_option {\r\n\tfloat: left;\r\n\twidth: 50%;\r\n\ttext-align: center;\r\n\tpadding-bottom: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault_primary_option div {\r\n\tclear: right;\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .clear-left {\r\n\tclear: left;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .padding-top-20px {\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .padding-top-14px {\r\n\tpadding-top: 14px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\r\n\tfont-size: 18px !important;\r\n\tpadding-bottom: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\r\n\tmargin-top: 8px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\r\n\tmargin-right: 10px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_email {\r\n\twidth: 280px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_pass {\r\n\twidth: 200px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #vault-is-connected {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\r\n\tclear: left;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option {\r\n\tfloat: left;\r\n\twidth: 33%;\r\n\ttext-align: center;\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\r\n\tfont-size: 200%;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\r\n\tclear: both;\r\n\tfont-size: 150%;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\r\n\tclear: both;\r\n\tfont-size: 115%;\r\n\tfont-style: italic;\r\n}\r\n\r\n/* Automation Backup Advert by B */\r\n.autobackup-image {\r\n/* \tdisplay: inline-block; */\r\n/*\tmin-width: 10%;\r\n\tmax-width:25%;*/\r\n/*\tfloat: left;*/\r\n\tclear: left;\r\n\tfloat: left;\r\n\twidth: 110px;\r\n\theight: 110px;\r\n}\r\n\r\n.autobackup-description {\r\n\twidth: 100%;\r\n}\r\n\r\n.advert-description {\r\n\tfloat: left;\r\n\tclear: right;\r\n\tpadding: 4px 10px 8px 10px;\r\n\twidth: 70%;\r\n\tclear: right;\r\n\tvertical-align: top;\r\n}\r\n\r\n.advert-btn {\r\n\tdisplay: inline-block;\r\n\tmin-width: 10%;\r\n\tvertical-align: top;\r\n\tmargin-bottom: 8px;\r\n}\r\n\r\n.advert-btn:first-of-type {\r\n\tmargin-top: 25px;\r\n}\r\n\r\n.advert-btn a {\r\n\tdisplay: block;\r\n\tcursor: pointer;\r\n}\r\n\r\na.btn-get-started {\r\n\tbackground: #FFF;\r\n\tborder: 2px solid #DF6926;\r\n\tborder-radius: 4px;\r\n\tcolor: #DF6926;\r\n\tdisplay: inline-block;\r\n\tmargin-left: 10px !important;\r\n\tmargin-bottom: 7px !important;\r\n\tfont-size: 18px !important;\r\n\tline-height: 20px;\r\n\tmin-height: 28px;\r\n\tpadding: 11px 10px 5px 10px;\r\n\ttext-transform: uppercase;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.circle-dblarrow {\r\n\tborder: 1px solid #DF6926;\r\n\tborder-radius: 100%;\r\n\tdisplay: inline-block;\r\n\tfont-size: 17px;\r\n\tline-height: 17px;\r\n\tmargin-left: 5px;\r\n\twidth: 20px;\r\n\theight: 20px;\r\n\ttext-align: center;\r\n}\r\n\r\n@media screen and (max-width: 782px) {\r\n/*\t.advert-description {\r\n\t\tmin-width: 75%;\r\n\t\tmargin-bottom: 5px;\r\n\t}\r\n\r\n\t.advert-btn {\r\n\t\tmargin-top: 15px;\r\n\t\tmargin-left:86px;\r\n\t\tmin-width: 100%;\r\n\t}*/\r\n}\r\n\r\n/* End Automation Backup Advert by B */\r\n/* New Responsive Pretty Advanced Settings */\r\n.expertmode .advanced_settings_container {\r\n\theight: auto;\r\n\toverflow: hidden;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu {\r\n\tfloat: none;\r\n\tborder-bottom: 1px solid rgb(204, 204, 204);\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content {\r\n\tpadding-top: 5px;\r\n\tfloat: none;\r\n\twidth: auto;\r\n\toverflow: auto;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content h3 {\r\n\tmargin-top: 5px !important;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\r\n\tdisplay: none;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\r\n\tdisplay: block;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\r\n\tdisplay: inline-block;\r\n\tcursor: pointer;\r\n\tpadding: 5px;\r\n\tcolor: #000;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\r\n\tbackground-color: #EAEAEA;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\r\n\tbackground-color: #3498DB;\r\n\tcolor: #FFF;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\r\n\tbackground-color: #72C5FD;\r\n\tcolor: #FFF;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\r\n\theight: auto !important;\r\n}\r\n\r\ndiv#updraft-wrap a {\r\n\tcursor: pointer !important;\r\n}\r\n\r\n.updraftcentral_wizard_option {\r\n\twidth: 45%;\r\n\tfloat: left;\r\n\ttext-align: center;\r\n}\r\n\r\n.updraftcentral_wizard_option label {\r\n\tmargin-bottom: 8px;\r\n}\r\n\r\n#updraftcentral_keys_table {\r\n\tdisplay: none;\r\n}\r\n\r\n.create_key_container {\r\n\tborder: 1px solid;\r\n\tborder-radius: 4px;\r\n\tpadding: 0 0 6px 6px;\r\n\tmargin-bottom: 8px;\r\n}\r\n\r\n@media screen and (min-width: 670px) {\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\r\n\t\tfloat: left;\r\n\t\twidth: 215px;\r\n\t\tborder-right: 1px solid rgb(204, 204, 204);\r\n\t\tborder-bottom: none;\r\n\t}\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_content {\r\n\t\tpadding-left: 10px;\r\n\t\tpadding-top: 0px;\r\n\t}\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\r\n\t\tdisplay: block;\r\n\t}\r\n\r\n}\r\n"]}
1
+ {"version":3,"sources":["css/admin.css"],"names":[],"mappings":"AAAA,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED,iBAAiB;;AAEjB;CACC,mBAAmB;CACnB,kBAAkB;CAClB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB;;AAED,qBAAqB;;AAErB,kBAAkB;AAClB;CACC,kBAAkB;CAClB,oBAAoB;CACpB,oBAAoB;CACpB,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,wBAAwB;CACxB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,yBAAyB;CACzB,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,gCAAgC;CAChC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb,mBAAmB;CACnB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED,sBAAsB;;AAEtB,4BAA4B;;AAE5B;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,eAAe;CACf,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,UAAU;CACV;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb,aAAa;CACb,8BAA8B;CAC9B;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,SAAS;CACT;;AAED;CACC,aAAa;CACb,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,aAAa;CACb,uBAAuB;CACvB,kBAAkB;CAClB;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,yBAAyB;CACzB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,aAAa;CACb;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,gBAAgB;CAChB,WAAW;CACX,SAAS;CACT,kBAAkB;CAClB,mBAAmB;CACnB,+BAA+B;CAC/B,aAAa;CACb;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,uBAAuB;CACvB;;AAED;CAGC,uBAAuB;CACvB,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,eAAe;CACf;;AAED,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;AACA;;;;;;;;;IASI;CACH;;AAED,uCAAuC;AACvC,6CAA6C;AAC7C;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,4CAA4C;CAC5C;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED","file":"admin.min.css","sourcesContent":["/* Widths and sizing */\r\n.max-width-600 {\r\n\tmax-width: 600px;\r\n}\r\n\r\n.width-900 {\r\n\twidth: 900px;\r\n}\r\n\r\n.width-80 {\r\n\twidth: 80%;\r\n}\r\n\r\n/* End widths and sizing */\r\n\r\n/* Font styling */\r\n.no-decoration {\r\n\ttext-decoration: none;\r\n}\r\n\r\n.bold {\r\n\tfont-weight: bold;\r\n}\r\n\r\n/* End font styling */\r\n/* Alignment */\r\n.center-align-td {\r\n\ttext-align: center;\r\n}\r\n\r\n/* End of Alignment */\r\n/* Padding */\r\n.remove-padding {\r\n\tpadding: 0 !important;\r\n}\r\n\r\n/* End of padding */\r\n\r\n.updraft-text-center {\r\n\ttext-align: center;\r\n}\r\n\r\n.autobackup {\r\n\tpadding: 6px;\r\n\tmargin: 8px 0px;\r\n}\r\n\r\nul .disc {\r\n\tlist-style: disc inside;\r\n}\r\n\r\n.dashicons-log-fix {\r\n\tdisplay: inherit;\r\n}\r\n\r\n/* Input boxes */\r\n\r\ninput {\r\n\tborder-radius: 4px;\r\n\tline-height: 1.42;\r\n\tborder: 1px solid #CCC;\r\n\theight: 27px;\r\n\tpadding: 2px 6px;\r\n\tcolor: #555;\r\n}\r\n\r\ninput[type=\"text\"] {\r\n\tfont-size: 14px;\r\n}\r\n\r\ninput[type=\"number\"] {\r\n\theight: 31px;\r\n}\r\n\r\nselect {\r\n\tborder-radius: 4px;\r\n}\r\n\r\n/* End input boxes */\r\n\r\n/* Main Buttons */\r\n.main-dashboard-buttons {\r\n\tborder-width: 4px;\r\n\tborder-radius: 12px;\r\n\tletter-spacing: 0px;\r\n\tfont-size: 17px;\r\n\tfont-weight: bold;\r\n\tpadding-left: 0.7em;\r\n\tpadding-right: 2em;\r\n\tpadding: 0.3em 1em;\r\n\tline-height: 1.7em;\r\n\tbackground: transparent;\r\n\tposition: relative;\r\n\tborder: 2px solid;\r\n\ttransition: all 0.2s;\r\n\tvertical-align: baseline;\r\n\tbox-sizing: border-box;\r\n\ttext-align: center;\r\n\tline-height: 1.3em;\r\n\tmargin-left: .3em;\r\n\ttext-transform: none;\r\n\tline-height: 1;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.button-restore {\r\n\tborder-color: rgb(98, 158, 192);\r\n\tcolor: rgb(98, 158, 192);\r\n}\r\n\r\n.dashboard-main-sizing {\r\n\tborder-width: 4px;\r\n\twidth: 190px;\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\r\n.button-view-log:hover, .button-mass-selectors:hover,\r\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\r\n\tborder-color: #DF6926;\r\n\tcolor: #DF6926;\r\n}\r\n\r\n.button-migrate {\r\n\tcolor: rgb(238, 169, 32);\r\n\tborder-color: rgb(238, 169, 32);\r\n}\r\n\r\n.button-backup {\r\n\tborder-color: #84CA1B;\r\n\tcolor: #84CA1B;\r\n}\r\n\r\n.existing-backups-buttons {\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 3px;\r\n}\r\n\r\n.existing-backups-restore-buttons {\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 3px;\r\n}\r\n\r\n.button-delete {\r\n\tcolor: #E23900;\r\n\tborder-color: #E23900;\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-right: 10px;\r\n}\r\n\r\n.button-view-log, .button-mass-selectors {\r\n\tcolor: darkgrey;\r\n\tborder-color: darkgrey;\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-top: -1px;\r\n}\r\n\r\n.button-view-log {\r\n\twidth: 120px;\r\n}\r\n\r\n.button-existing-restore {\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\twidth: 110px;\r\n}\r\n\r\n.main-restore {\r\n\tmargin-right: 3%;\r\n\tmargin-left: 3%;\r\n}\r\n\r\n.button-entity-backup {\r\n\tcolor: #555;\r\n\tborder-color: #555;\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-right: 5px;\r\n}\r\n\r\n.button-select-all {\r\n\twidth: 122px;\r\n}\r\n\r\n.button-deselect {\r\n\twidth: 92px;\r\n}\r\n\r\n#ud_massactions > .display-flex > .mass-selectors-margins {\r\n\tmargin-right: -4px;\r\n}\r\n\r\n.udp-button-primary {\r\n\tborder-width: 4px;\r\n\tcolor: #0073AA;\r\n\tborder-color: #0073AA;\r\n\tfont-size: 14px;\r\n\theight: 40px;\r\n}\r\n\r\n#ud_massactions .button-delete {\r\n\tmargin-right: 0px;\r\n}\r\n\r\n.stored_local {\r\n\tborder-radius: 5px;\r\n\tbackground-color: #007FE7;\r\n\tpadding: 3px 5px 5px 5px;\r\n\tcolor: #FFF;\r\n\tfont-size: 75%;\r\n}\r\n\r\n.form-table td.updraft_existingbackup_date {\r\n\tpadding-bottom: 5px;\r\n}\r\n\r\nspan#updraft_lastlogcontainer {\r\n\tword-break: break-all;\r\n}\r\n\r\n.stored_icon {\r\n\theight: 1.3em;\r\n\tposition: relative;\r\n\ttop: 0.2em;\r\n}\r\n\r\n.backup_date_label .clear-right {\r\n\tclear: right;\r\n}\r\n\r\n/* End Main Buttons */\r\n\r\n/* End of common elements */\r\n\r\n.udp-logo-70 {\r\n\twidth: 70px;\r\n\theight: 70px;\r\n\tfloat: left;\r\n\tpadding-right: 25px;\r\n}\r\n\r\nh3 .thank-you {\r\n\tmargin-top: 0px;\r\n}\r\n\r\n.ws_advert {\r\n\tmax-width: 800px;\r\n\tfont-size: 140%;\r\n\tline-height: 140%;\r\n\tpadding: 14px;\r\n\tclear: left;\r\n}\r\n\r\n.dismiss-dash-notice {\r\n\tfloat: right;\r\n\tposition: relative;\r\n\ttop: -20px;\r\n}\r\n\r\n#updraft_report_cell .updraft_reportbox {\r\n\tpadding: 8px;\r\n\tmargin: 8px 0;\r\n\tborder: 1px dotted;\r\n\tclear: left;\r\n\tfloat: left;\r\n}\r\n\r\n#updraft_report_cell button.updraft_reportbox_delete {\r\n\tfont-size: 50%;\r\n\tfloat: right;\r\n\tpadding: 0 3px;\r\n\tposition: relative;\r\n\ttop: -4px;\r\n\tleft: 4px;\r\n}\r\n\r\n#updraft-navtab-settings-content .updraft-test-button {\r\n\tfont-size: 18px !important;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_checkbox {\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_email {\r\n\twidth: 300px;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_another_p {\r\n\tclear: left;\r\n}\r\n\r\n/* Taken straight from admin.php */\r\n\r\n#updraft-navtab-settings-content table.form-table p {\r\n\tmax-width: 700px;\r\n}\r\n\r\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\r\n\tbackground-color: #CCC;\r\n}\r\n\r\n.updraft_settings_sectionheading {\r\n\tdisplay: none;\r\n}\r\n\r\n.updraft-backupentitybutton-disabled {\r\n\tbackground-color: transparent;\r\n\tborder: none;\r\n\tcolor: #0074A2;\r\n\ttext-decoration: underline;\r\n\tcursor: pointer;\r\n\tclear: none;\r\n\tfloat: left;\r\n}\r\n\r\n.updraft-backupentitybutton {\r\n\tmargin-left: 8px;\r\n}\r\n\r\n.updraft-bigbutton {\r\n\tpadding: 2px 0px !important;\r\n\tmargin-right: 14px !important;\r\n\tfont-size: 22px !important;\r\n\tmin-height: 32px;\r\n\tmin-width: 180px;\r\n}\r\n\r\ntr[class*=\"_updraft_remote_storage_border\"] {\r\n\tborder-top: 1px solid #CCC;\r\n}\r\n\r\n.updraft_multi_storage_options {\r\n\tfloat: right;\r\n\tclear: right;\r\n\tmargin-bottom: 5px !important;\r\n}\r\n\r\n.updraft_toggle_instance_label {\r\n\tvertical-align: top !important;\r\n}\r\n\r\n.updraft_debugrow th {\r\n\tfloat: right;\r\n\ttext-align: right;\r\n\tfont-weight: bold;\r\n\tpadding-right: 8px;\r\n\tmin-width: 140px;\r\n}\r\n\r\n.updraft_debugrow td {\r\n\tmin-width: 300px;\r\n\tvertical-align: bottom;\r\n}\r\n\r\n#updraft_webdav_host_error {\r\n\tcolor: red;\r\n}\r\n\r\n/* jstree styles */\r\n\r\n/* these styles hide the dots from the parent but keep the arrows */\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-node,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\r\n\tbackground: transparent;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\r\n\tbackground-position: -36px -4px;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\r\n\tbackground-position: -4px -4px;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\r\n\tbackground: transparent;\r\n}\r\n\r\n/* zip browser jstree styles */\r\n#updraft_zip_files_container {\r\n\tposition: relative;\r\n\theight: 450px;\r\n\toverflow: none;\r\n}\r\n\r\n#updraft_zip_info_container {\r\n\tposition: relative;\r\n\theight: auto;\r\n\twidth: 100%;\r\n\tborder: 1px dotted;\r\n\tmargin-bottom: 5px;\r\n}\r\n\r\n#updraft_zip_info_container p {\r\n\tmargin: 1px;\r\n\tpadding-left: 10px;\r\n\tfont-size: 14px;\r\n}\r\n\r\n#updraft_zip_download_item {\r\n\tdisplay: none;\r\n\tcolor: #0073AA;\r\n\tpadding-left: 10px;\r\n}\r\n\r\n#updraft_zip_download_notice {\r\n\tpadding-left: 10px;\r\n}\r\n\r\n#updraft_zip_files_jstree_container {\r\n\tposition: relative;\r\n\tborder: 1px dotted;\r\n\theight: 80%;\r\n\twidth: 100%;\r\n\toverflow: auto;\r\n}\r\n\r\n/* More files jstree styles */\r\n#updraft_more_files_container {\r\n\tposition: relative;\r\n\tdisplay: none;\r\n\theight: 300px;\r\n\twidth: 100%;\r\n\tborder: 1px dotted;\r\n\tmargin-bottom: 5px;\r\n}\r\n\r\n#updraft_jstree_buttons {\r\n\tposition: absolute;\r\n\ttop: 0;\r\n\tright: 0;\r\n}\r\n\r\n#updraft_jstree_container {\r\n\theight: 100%;\r\n\twidth: 100%;\r\n\toverflow: auto;\r\n}\r\n\r\n#updraft_more_files_container button {\r\n\theight: 22px;\r\n\tline-height: 20px;\r\n}\r\n\r\n#updraft_jstree_confirm, #updraft_jstree_cancel {\r\n\tdisplay: none;\r\n}\r\n\r\n.updraftplus-morefiles-row-delete {\r\n\tcursor: pointer;\r\n\tcolor: red;\r\n\tfont-size: 23px !important;\r\n}\r\n\r\n.updraftplus-morefiles-row-edit {\r\n\tcursor: pointer;\r\n\tfont-size: 24px !important;\r\n}\r\n\r\n#updraft-wrap .form-table th {\r\n\twidth: 230px;\r\n}\r\n\r\n.updraftplus-remove {\r\n\tbackground-color: #C00000;\r\n\tborder: 1px solid #C00000;\r\n\theight: 22px;\r\n\tpadding: 4px 3px 0 3px;\r\n\tmargin-right: 6px;\r\n}\r\n\r\n.updraft-viewlogdiv form {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.updraft-viewlogdiv {\r\n\tbackground-color: #FFF;\r\n\tcolor: #000;\r\n\tborder: 1px solid #000;\r\n\theight: 26px;\r\n\tpadding: 0px;\r\n\tmargin: 0 4px 0 0;\r\n\tborder-radius: 3px;\r\n\tfloat: left;\r\n}\r\n\r\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\r\n\tborder: none;\r\n\tbackground-color: transparent;\r\n\tcolor: #000;\r\n\tmargin: 0px;\r\n\tpadding: 3px 4px;\r\n\tfont-size: 16px;\r\n\tline-height: 26px;\r\n}\r\n\r\n.updraft-viewlogdiv:hover {\r\n\tbackground-color: #000;\r\n\tcolor: #FFF;\r\n\tborder: 1px solid #FFF;\r\n\tcursor: pointer;\r\n}\r\n\r\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\r\n\tcolor: #FFF;\r\n\tcursor: pointer;\r\n}\r\n\r\n.updraftplus-remove a {\r\n\tcolor: white;\r\n\tpadding: 4px 4px 0px 4px;\r\n}\r\n\r\n.updraftplus-remove:hover {\r\n\tbackground-color: white;\r\n\tborder: 1px solid #C00000;\r\n}\r\n\r\n.updraftplus-remove a:hover {\r\n\tcolor: #C00000;\r\n}\r\n\r\n.drag-drop #drag-drop-area2 {\r\n\tborder: 4px dashed #DDD;\r\n\theight: 200px;\r\n}\r\n\r\n#drag-drop-area2 .drag-drop-inside {\r\n\tmargin: 36px auto 0;\r\n\twidth: 350px;\r\n}\r\n\r\n#filelist, #filelist2 {\r\n\twidth: 100%;\r\n}\r\n\r\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\r\n\tpadding: 5px;\r\n\tbackground: #ECECEC;\r\n\tborder: solid 1px #CCC;\r\n\tmargin: 4px 0;\r\n}\r\n\r\nul.updraft_premium_description_list, ul#updraft_restore_warnings {\r\n\tlist-style: disc inside;\r\n}\r\n\r\nul.updraft_premium_description_list li {\r\n\tdisplay: inline;\r\n}\r\n\r\nul.updraft_premium_description_list li::after {\r\n\tcontent: \" | \";\r\n}\r\n\r\nul.updraft_premium_description_list li.last::after {\r\n\tcontent: \"\";\r\n}\r\n\r\n.updraft_feature_cell {\r\n\tbackground-color: #F7D9C9 !important;\r\n\tpadding: 5px 10px;\r\n}\r\n\r\n.updraft_feat_table, .updraft_feat_th, .updraft_feat_table td {\r\n\tborder: 1px solid black;\r\n\tborder-collapse: collapse;\r\n\tfont-size: 120%;\r\n\tbackground-color: white;\r\n\ttext-align: center;\r\n}\r\n\r\n.updraft_feat_table p {\r\n\tpadding: 0px 10px;\r\n\tmargin: 5px 0px;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.updraft_feat_table h4 {\r\n\tmargin: 5px 0px;\r\n}\r\n\r\n.updraft_feat_table .dashicons {\r\n\twidth: 25px;\r\n\theight: 25px;\r\n\tfont-size: 25px;\r\n\tline-height: 1;\r\n}\r\n\r\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\r\n\tcolor: green;\r\n}\r\n\r\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\r\n\tcolor: red;\r\n}\r\n\r\n.updraft_tick_cell {\r\n\ttext-align: center;\r\n}\r\n\r\n.updraft_tick_cell img {\r\n\tmargin: 4px 0;\r\n\theight: 24px;\r\n}\r\n\r\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\r\n\twidth: 0%;\r\n\tbackground: #F6A828;\r\n\theight: 5px;\r\n}\r\n\r\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\r\n\tmargin-top: 8px;\r\n\tclear: left;\r\n}\r\n\r\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\r\n\tmargin-top: 8px;\r\n}\r\n\r\ntr.updraftplusmethod h3 {\r\n\tmargin: 0px;\r\n}\r\n\r\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\r\n\tcursor: pointer;\r\n\tcolor: red;\r\n\tfont-size: 120%;\r\n\tfont-weight: bold;\r\n\tborder: 0px;\r\n\tborder-radius: 3px;\r\n\tpadding: 2px;\r\n\tmargin: 0 6px;\r\n}\r\n\r\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\r\n\tcursor: pointer;\r\n\tcolor: white;\r\n\tbackground: red;\r\n}\r\n\r\n#updraft_backup_started {\r\n\tmax-width: 800px;\r\n\tfont-size: 140%;\r\n\tline-height: 140%;\r\n\tpadding: 14px;\r\n\tclear: left;\r\n}\r\n\r\n.udp-premium-image {\r\n\tdisplay: none;\r\n}\r\n\r\n@media screen and (min-width: 720px) {\r\n\r\n\t.udp-premium-image {\r\n\t\tdisplay: block;\r\n\t\tfloat: left;\r\n\t\tpadding-right: 5px;\r\n\t}\r\n\r\n}\r\n\r\n/* End stuff already in admin.php */\r\n#plupload-upload-ui2 {\r\n\twidth: 80%;\r\n}\r\n\r\n.backup-restored {\r\n\tpadding: 8px;\r\n}\r\n\r\n.backup-restored span {\r\n\tfont-size: 120%;\r\n}\r\n\r\n.memory-limit {\r\n\tpadding: 8px;\r\n}\r\n\r\n.updraft_list_errors {\r\n\tpadding: 8px;\r\n}\r\n\r\n/*.nav-tab {\r\n\tborder-radius: 20px 20px 0 0;\r\n\tborder-color: grey;\r\n\tborder-width: 2px;\r\n\tmargin-top: 34px;\r\n}\r\n\r\n.nav-tab:hover {\r\n\tborder-bottom: 0;\r\n}\r\n\r\n.nav-tab-active, .nav-tab-active:active {\r\n\tcolor: #df6926;\r\n\tborder-color: #D3D3D3;\r\n\tborder-width: 1px;\r\n\tborder-bottom: 0;\r\n}\r\n\r\n.nav-tab-active:focus {\r\n\tcolor: #df6926;\r\n}*/\r\n\r\n.nav-tab-wrapper {\r\n\tmargin: 14px 0px;\r\n}\r\n\r\n#updraft-poplog-content {\r\n\twhite-space: pre-wrap;\r\n}\r\n\r\n.next-backup {\r\n\tborder: 0px;\r\n\tpadding: 0px;\r\n\tmargin: 0 10px 0 0;\r\n}\r\n\r\n.not-scheduled {\r\n\tvertical-align: top !important;\r\n\tmargin: 0px !important;\r\n\tpadding: 0px !important;\r\n}\r\n\r\n.next-backup .updraft_scheduled {\r\n\t/* width: 124px;*/\r\n\tmargin: 0px;\r\n\tpadding: 2px 4px 2px 0px;\r\n}\r\n\r\n#next-backup-table-inner td {\r\n\tvertical-align: top;\r\n}\r\n\r\n.next-backup .updraft_all-files {\r\n\tcolor: blue;\r\n\tmargin: 0px;\r\n\tpadding: 2px 0px 0px 0px;\r\n}\r\n\r\n.multisite-advert-width {\r\n\twidth: 800px;\r\n}\r\n\r\n.updraft_settings_sectionheading {\r\n\tmargin-top: 6px;\r\n}\r\n\r\n.premium-upgrade-prompt {\r\n\tfont-size: 115%;\r\n}\r\n\r\n.updraft_feat_table {\r\n\tmargin-top: 30px;\r\n}\r\n\r\n.show_admin_restore_in_progress_notice {\r\n\tpadding: 8px;\r\n}\r\n\r\n.show_admin_restore_in_progress_notice .unfinished-restoration {\r\n\tfont-size: 120%;\r\n}\r\n\r\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\r\n\tmargin: 4px 16px 6px 16px;\r\n\tborder: 1px dotted;\r\n\tpadding: 6px 10px;\r\n}\r\n\r\n#backupnow_database_moreoptions {\r\n\tmax-height: 250px;\r\n\toverflow: auto;\r\n}\r\n\r\n.form-table #updraft_activejobsrow .minimum-height {\r\n\tmin-height: 100px;\r\n}\r\n\r\n#updraft_lastlogmessagerow .last-message {\r\n\tpadding-top: 20px;\r\n\tdisplay: block;\r\n}\r\n\r\n.updraft_simplepie {\r\n\tvertical-align: top;\r\n}\r\n\r\n.download-backups {\r\n\tmargin-top: 8px;\r\n}\r\n\r\n.download-backups .updraft_download_button {\r\n\tmargin-right: 6px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n.download-backups .choose-components-button {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.download-backups .ud-whitespace-warning {\r\n\tbackground-color: pink;\r\n\tpadding: 8px;\r\n\tmargin: 4px;\r\n\tborder: 1px dotted;\r\n}\r\n\r\n.download-backups .ul {\r\n\tlist-style: none inside;\r\n\tmax-width: 800px;\r\n\tmargin-top: 6px;\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\n#updraft-plupload-modal {\r\n\twidth: 75%;\r\n\tmargin: 16px;\r\n\tmargin-left: 100px;\r\n}\r\n\r\n.download-backups .upload {\r\n\tmax-width: 610px;\r\n}\r\n\r\n.download-backups #plupload-upload-ui {\r\n\twidth: 70%;\r\n}\r\n\r\n.ud_downloadstatus {\r\n\tpadding: 10px;\r\n\tbackground: #F1F1F1;\r\n}\r\n\r\n#ud_massactions {\r\n\tpadding: 14px;\r\n\tposition: fixed;\r\n\tright: 25%;\r\n\ttop: 25%;\r\n\tborder: 2px solid;\r\n\tborder-radius: 4px;\r\n\tbackground: rgb(241, 241, 241);\r\n\tfloat: right;\r\n}\r\n\r\n#ud_massactions .updraftplus-remove {\r\n\tclear: left;\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#ud_massactions .updraftplus-remove a {\r\n\ttext-decoration: none;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv {\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv a {\r\n\ttext-decoration: none;\r\n\tposition: relative;\r\n\ttop: 3px;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv a {\r\n\ttext-decoration: none;\r\n\tposition: relative;\r\n\ttop: 3px;\r\n}\r\n\r\n#updraft-navtab-backups-content .updraft_existing_backups {\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\n#updraft-message-modal-innards {\r\n\tpadding: 4px;\r\n}\r\n\r\n#updraft-authenticate-modal {\r\n\ttext-align: center;\r\n\tfont-size: 16px !important;\r\n}\r\n\r\n#updraft-authenticate-modal p {\r\n\tfont-size: 16px;\r\n}\r\n\r\n#updraft_delete_form p {\r\n\tmargin-top: 3px;\r\n\tpadding-top: 0;\r\n}\r\n\r\n#updraft_restore_form .cannot-restore {\r\n\tmargin: 8px 0;\r\n}\r\n\r\n#updraft_restorer_dboptions {\r\n\tpadding: 12px;\r\n\tmargin: 8px 0 4px 0;\r\n\tborder: dashed 1px;\r\n}\r\n\r\n#updraft_restorer_dboptions h4 {\r\n\tmargin: 0px 0px 6px 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\n.updraft_debugrow th {\r\n\tvertical-align: top;\r\n\tpadding-top: 6px;\r\n}\r\n\r\n.expertmode p {\r\n\tfont-size: 125%;\r\n}\r\n\r\n.expertmode .call-wp-action {\r\n\twidth: 300px;\r\n\theight: 22px;\r\n}\r\n\r\n.updraftplus-lock-advert {\r\n\tclear: left;\r\n\tmax-width: 600px;\r\n}\r\n\r\n.uncompressed-data {\r\n\tclear: left;\r\n\tmax-width: 600px;\r\n}\r\n\r\n.delete-old-directories {\r\n\tpadding: 8px;\r\n\tpadding-bottom: 12px;\r\n}\r\n\r\n.active-jobs {\r\n\tmin-width: 480px;\r\n\tmin-height: 48px;\r\n\ttext-align: center;\r\n\tmargin-top: 4px;\r\n\tpadding: 8px;\r\n\tborder: 1px solid;\r\n\tfloat: left;\r\n\tclear: left;\r\n}\r\n\r\n.job-id {\r\n\tmin-width: 480px;\r\n\tmargin-top: 4px;\r\n\tpadding: 8px;\r\n\tborder: 1px solid;\r\n\tclear: left;\r\n\tfloat: left;\r\n}\r\n\r\n.next-resumption {\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraft_percentage {\r\n\tz-index: -1;\r\n\tposition: absolute;\r\n\tleft: 0px;\r\n\ttop: 0px;\r\n\ttext-align: center;\r\n\tbackground-color: #F6A828;\r\n}\r\n\r\n.curstage {\r\n\tborder-radius: 4px;\r\n\tmargin-top: 8px;\r\n\tpadding-top: 4px;\r\n\tborder: 1px solid #AAA;\r\n\twidth: 100%;\r\n\theight: 22px;\r\n\tposition: relative;\r\n\ttext-align: center;\r\n\tfont-style: italic;\r\n}\r\n\r\n.retain-files {\r\n\twidth: 48px;\r\n}\r\n\r\n.backup-interval-description tr td div {\r\n\tmax-width: 670px;\r\n}\r\n\r\n#updraft-manualdecrypt-modal {\r\n\twidth: 85%;\r\n\tmargin: 6px;\r\n\tmargin-left: 100px;\r\n}\r\n\r\n.directory-permissions {\r\n\tfont-size: 110%;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.double-warning {\r\n\tborder: 1px solid;\r\n\tpadding: 6px;\r\n}\r\n\r\n.raw-backup-info {\r\n\tfont-style: italic;\r\n\tfont-weight: bold;\r\n\tfont-size: 120%;\r\n}\r\n\r\n.updraft_existingbackup_date {\r\n\twidth: 22%;\r\n\tmax-width: 140px;\r\n}\r\n\r\n.existing-backups-table {\r\n\tmargin-top: 20px;\r\n\tmargin-left: 20px;\r\n\twidth: 80%;\r\n}\r\n\r\n.tr-bottom-4 {\r\n\tmargin-bottom: 4px;\r\n}\r\n\r\n.form-table .backup-date {\r\n\twidth: 172px;\r\n\tpadding: 0;\r\n\tpadding-left: 15px;\r\n}\r\n\r\n.form-table .backup-data {\r\n\twidth: 426px;\r\n\tpadding: 0;\r\n\tpadding-left: 15px;\r\n}\r\n\r\n.form-table .updraft_backup_actions {\r\n\twidth: 272px;\r\n\tpadding: 0 0 10px 15px;\r\n}\r\n\r\n.existing-date {\r\n\t-webkit-box-sizing: border-box;\r\n\t-moz-box-sizing: border-box;\r\n\tbox-sizing: border-box;\r\n\tmax-width: 140px;\r\n\twidth: 25%;\r\n}\r\n\r\n.line-break-tr {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.line-break-td {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.td-line-color {\r\n\theight: 2px;\r\n\tbackground-color: #888;\r\n}\r\n\r\n.raw-backup {\r\n\tmax-width: 140px;\r\n}\r\n\r\n.existing-backups-actions {\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.existing-backups-border {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.existing-backups-border > td {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.existing-backups-border > div {\r\n\theight: 2px;\r\n\tbackground-color: #AAA;\r\n}\r\n\r\n.updraft_existing_backup_date {\r\n\tmax-width: 140px;\r\n}\r\n\r\n.restore-button {\r\n\tmargin-right: 6px;\r\n\tfloat: left;\r\n\tclear: none;\r\n}\r\n\r\n.updraftplus-remove {\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n}\r\n\r\n.before-restore-button {\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.table-separator-tr {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.table-separator-td {\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\n.end-of-table-div {\r\n\theight: 2px;\r\n\tbackground-color: #AAA;\r\n}\r\n\r\n.last-backup-job {\r\n\tpadding-top: 3% !important;\r\n}\r\n\r\n.line-height-03 {\r\n\tline-height: 0.3 !important;\r\n}\r\n\r\n.line-height-13 {\r\n\tline-height: 1.3 !important;\r\n}\r\n\r\n.line-height-23 {\r\n\tline-height: 2.3 !important;\r\n}\r\n\r\n#updraft_diskspaceused {\r\n\tcolor: #DF6926;\r\n}\r\n\r\n.updraft_premium_description_list {\r\n\ttext-align: left;\r\n}\r\n\r\n#updraft_delete_old_dirs_pagediv {\r\n\tpadding-bottom: 10px;\r\n}\r\n\r\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\r\n\tpadding: 0;\r\n}*/\r\n\r\n.job-id {\r\n\tmargin: 0 auto;\r\n\twidth: 20%;\r\n}\r\n\r\n.updraft_all-files {\r\n\tcolor: #DF6926;\r\n}\r\n\r\n/* Time + scheduling add-on*/\r\n.fix-time {\r\n\twidth: 70px;\r\n}\r\n\r\n.retain-files {\r\n\twidth: 70px;\r\n}\r\n\r\n.number-input {\r\n\tmin-width: 50px;\r\n\tmax-width: 70px;\r\n}\r\n\r\n.additional-rule-width {\r\n\tmin-width: 60px;\r\n\tmax-width: 70px;\r\n}\r\n\r\n/* Add-ons */\r\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\r\n\r\n.dashicons {\r\n\tline-height: inherit;\r\n\tfont-size: inherit;\r\n}\r\n\r\n.addon-logo-150 {\r\n\tmargin-left: 30px;\r\n\tmargin-top: 33px;\r\n\theight: 125px;\r\n\twidth: 150px;\r\n}\r\n\r\n.margin-bottom-50 {\r\n\tmargin-bottom: 50px;\r\n}\r\n\r\n.premium-container {\r\n\twidth: 80%;\r\n}\r\n\r\n/* Main Header */\r\n\r\n.main-header {\r\n\tbackground-color: #DF6926;\r\n\theight: 200px;\r\n\twidth: 100%;\r\n}\r\n\r\n.button-add-to-cart {\r\n\tcolor: white;\r\n\tborder-color: white;\r\n\tfloat: none;\r\n\tmargin-right: 17px;\r\n}\r\n\r\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\r\n\tborder-color: #A0A5AA;\r\n\tcolor: #A0A5AA;\r\n}\r\n\r\n.addon-title {\r\n\tmargin-top: 25px;\r\n}\r\n\r\n.addon-text {\r\n\tmargin-top: 75px;\r\n}\r\n\r\n.image-main-div {\r\n\twidth: 25%;\r\n\tfloat: left;\r\n}\r\n\r\n.text-main-div {\r\n\twidth: 60%;\r\n\tfloat: left;\r\n\ttext-align: center;\r\n\tcolor: white;\r\n\tmargin-top: 16px;\r\n}\r\n\r\n.text-main-div-title {\r\n\tfont-weight: bold !important;\r\n\tcolor: white;\r\n\ttext-align: center;\r\n}\r\n\r\n.text-main-div-paragraph {\r\n\tcolor: white;\r\n}\r\n\r\n/* End main header */\r\n\r\n/* Vault icons */\r\n\r\n.updraftplus-vault-cta {\r\n\twidth: 100%;\r\n\ttext-align: center;\r\n\tmargin-bottom: 50px;\r\n}\r\n\r\n.updraftplus-vault-cta h1 {\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraftvault-buy {\r\n\twidth: 225px;\r\n\theight: 225px;\r\n\tborder: 2px solid #777;\r\n\tdisplay: inline-table;\r\n\tmargin: 0 auto;\r\n\tmargin-right: 50px;\r\n\tposition: relative;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault {\r\n\twidth: 275px;\r\n\theight: 275px;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\r\n\tright: 21%;\r\n\tfont-size: 16px;\r\n\tborder-width: 4px !important;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.updraftvault-buy .button-purchase {\r\n\tright: 24%;\r\n\tmargin-left: 0;\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.updraftvault-buy hr {\r\n\theight: 2px;\r\n\tbackground-color: #777;\r\n\tmargin-top: 18px;\r\n}\r\n\r\n.right {\r\n\tmargin-right: 0px;\r\n}\r\n\r\n.updraftvault-buy .addon-logo-100 {\r\n\theight: 100px;\r\n\twidth: 125px;\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.updraftvault-buy .addon-logo-large {\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.updraftvault-buy .button-buy-vault {\r\n\tfont-size: 12px;\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tborder-width: 2px !important;\r\n\tposition: absolute;\r\n\tright: 29%;\r\n\tbottom: 2%;\r\n}\r\n\r\n.premium-addon-div .button-purchase {\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.updraftvault-buy .button-buy-vault:hover {\r\n\tborder-color: darkgrey;\r\n\tcolor: darkgrey;\r\n}\r\n\r\n/* End Vault icons */\r\n\r\n/* Premium addons */\r\n\r\n.premium-addons {\r\n\tmargin-top: 80px;\r\n\twidth: 100%;\r\n\tmargin: 0 auto;\r\n\tdisplay: table;\r\n}\r\n\r\n.addon-list {\r\n\t/* margin-left: 32px; */\r\n\tdisplay: table;\r\n\ttext-align: center;\r\n}\r\n\r\n.premium-addons h1 {\r\n\ttext-align: center;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.premium-addons p {\r\n\ttext-align: center;\r\n}\r\n\r\n.premium-addons .premium-addon-div {\r\n\twidth: 200px;\r\n\theight: 250px;\r\n\tborder: 2px solid #777;\r\n\tdisplay: inline-table;\r\n\tmargin: 0 auto;\r\n\tmargin-right: 25px;\r\n\tmargin-top: 25px;\r\n\ttext-align: center;\r\n\tposition: relative;\r\n}\r\n\r\n.premium-addons .premium-addon-div p {\r\n\tmargin-left: 2px;\r\n\tmargin-right: 2px;\r\n}\r\n\r\n.premium-addons .premium-addon-div img {\r\n\twidth: auto;\r\n\theight: 50px;\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .hr-alignment {\r\n\tmargin-top: 44px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .dropbox-logo {\r\n\theight: 39px;\r\n\twidth: 150px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\r\n\twidth: 75%;\r\n\theight: 24px;\r\n}\r\n\r\n.button-purchase {\r\n\tfont-size: 12px;\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tborder-width: 2px !important;\r\n\tposition: absolute;\r\n\tright: 25%;\r\n\tbottom: 2%;\r\n}\r\n\r\n.button-purchase:hover {\r\n\tcolor: darkgrey;\r\n\tborder-color: darkgrey;\r\n}\r\n\r\n.premium-addons .premium-addon-div hr {\r\n\theight: 2px;\r\n\tbackground-color: #777;\r\n\tmargin-top: 18px;\r\n}\r\n\r\n.premium-addon-div p {\r\n\tfont-style: italic;\r\n}\r\n\r\n.addon-list > .premium-addon-div > .onedrive-fix,\r\n.addon-list > .premium-addon-div > .azure-logo {\r\n\tmargin-top: 33px;\r\n}\r\n\r\n.addon-list > .premium-addon-div > .dropbox-fix {\r\n\tmargin-top: 18px;\r\n}\r\n\r\n/* End premium addons */\r\n\r\n\r\n/* Forgotton something (that is the name of the div rather than a mental note!) */\r\n\r\n.premium-forgotton-something {\r\n\tmargin-top: 5%;\r\n}\r\n\r\n.premium-forgotton-something h1 {\r\n\ttext-align: center;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.premium-forgotton-something p {\r\n\ttext-align: center;\r\n\tfont-weight: normal;\r\n}\r\n\r\n.premium-forgotton-something .button-faq {\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tmargin: 0 auto;\r\n\tdisplay: table;\r\n}\r\n\r\n.premium-forgotton-something .button-faq:hover {\r\n\tcolor: #777;\r\n\tborder-color: #777;\r\n}\r\n\r\n/* End of forgotton something */\r\n\r\n.updraftplusmethod.updraftvault #vaultlogo {\r\n\tpadding-left: 40px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault_primary_option {\r\n\tfloat: left;\r\n\twidth: 50%;\r\n\ttext-align: center;\r\n\tpadding-bottom: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault_primary_option div {\r\n\tclear: right;\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .clear-left {\r\n\tclear: left;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .padding-top-20px {\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .padding-top-14px {\r\n\tpadding-top: 14px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\r\n\tfont-size: 18px !important;\r\n\tpadding-bottom: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\r\n\tmargin-top: 8px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\r\n\tmargin-right: 10px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_email {\r\n\twidth: 280px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_pass {\r\n\twidth: 200px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #vault-is-connected {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\r\n\tclear: left;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option {\r\n\tfloat: left;\r\n\twidth: 33%;\r\n\ttext-align: center;\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\r\n\tfont-size: 200%;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\r\n\tclear: both;\r\n\tfont-size: 150%;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\r\n\tclear: both;\r\n\tfont-size: 115%;\r\n\tfont-style: italic;\r\n}\r\n\r\n/* Automation Backup Advert by B */\r\n.autobackup-image {\r\n/* \tdisplay: inline-block; */\r\n/*\tmin-width: 10%;\r\n\tmax-width:25%;*/\r\n/*\tfloat: left;*/\r\n\tclear: left;\r\n\tfloat: left;\r\n\twidth: 110px;\r\n\theight: 110px;\r\n}\r\n\r\n.autobackup-description {\r\n\twidth: 100%;\r\n}\r\n\r\n.advert-description {\r\n\tfloat: left;\r\n\tclear: right;\r\n\tpadding: 4px 10px 8px 10px;\r\n\twidth: 70%;\r\n\tclear: right;\r\n\tvertical-align: top;\r\n}\r\n\r\n.advert-btn {\r\n\tdisplay: inline-block;\r\n\tmin-width: 10%;\r\n\tvertical-align: top;\r\n\tmargin-bottom: 8px;\r\n}\r\n\r\n.advert-btn:first-of-type {\r\n\tmargin-top: 25px;\r\n}\r\n\r\n.advert-btn a {\r\n\tdisplay: block;\r\n\tcursor: pointer;\r\n}\r\n\r\na.btn-get-started {\r\n\tbackground: #FFF;\r\n\tborder: 2px solid #DF6926;\r\n\tborder-radius: 4px;\r\n\tcolor: #DF6926;\r\n\tdisplay: inline-block;\r\n\tmargin-left: 10px !important;\r\n\tmargin-bottom: 7px !important;\r\n\tfont-size: 18px !important;\r\n\tline-height: 20px;\r\n\tmin-height: 28px;\r\n\tpadding: 11px 10px 5px 10px;\r\n\ttext-transform: uppercase;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.circle-dblarrow {\r\n\tborder: 1px solid #DF6926;\r\n\tborder-radius: 100%;\r\n\tdisplay: inline-block;\r\n\tfont-size: 17px;\r\n\tline-height: 17px;\r\n\tmargin-left: 5px;\r\n\twidth: 20px;\r\n\theight: 20px;\r\n\ttext-align: center;\r\n}\r\n\r\n@media screen and (max-width: 782px) {\r\n/*\t.advert-description {\r\n\t\tmin-width: 75%;\r\n\t\tmargin-bottom: 5px;\r\n\t}\r\n\r\n\t.advert-btn {\r\n\t\tmargin-top: 15px;\r\n\t\tmargin-left:86px;\r\n\t\tmin-width: 100%;\r\n\t}*/\r\n}\r\n\r\n/* End Automation Backup Advert by B */\r\n/* New Responsive Pretty Advanced Settings */\r\n.expertmode .advanced_settings_container {\r\n\theight: auto;\r\n\toverflow: hidden;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu {\r\n\tfloat: none;\r\n\tborder-bottom: 1px solid rgb(204, 204, 204);\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content {\r\n\tpadding-top: 5px;\r\n\tfloat: none;\r\n\twidth: auto;\r\n\toverflow: auto;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content h3 {\r\n\tmargin-top: 5px !important;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\r\n\tdisplay: none;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\r\n\tdisplay: block;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\r\n\tdisplay: inline-block;\r\n\tcursor: pointer;\r\n\tpadding: 5px;\r\n\tcolor: #000;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\r\n\tbackground-color: #EAEAEA;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\r\n\tbackground-color: #3498DB;\r\n\tcolor: #FFF;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\r\n\tbackground-color: #72C5FD;\r\n\tcolor: #FFF;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\r\n\theight: auto !important;\r\n}\r\n\r\ndiv#updraft-wrap a {\r\n\tcursor: pointer !important;\r\n}\r\n\r\n.updraftcentral_wizard_option {\r\n\twidth: 45%;\r\n\tfloat: left;\r\n\ttext-align: center;\r\n}\r\n\r\n.updraftcentral_wizard_option label {\r\n\tmargin-bottom: 8px;\r\n}\r\n\r\n#updraftcentral_keys_table {\r\n\tdisplay: none;\r\n}\r\n\r\n.create_key_container {\r\n\tborder: 1px solid;\r\n\tborder-radius: 4px;\r\n\tpadding: 0 0 6px 6px;\r\n\tmargin-bottom: 8px;\r\n}\r\n\r\n@media screen and (min-width: 670px) {\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\r\n\t\tfloat: left;\r\n\t\twidth: 215px;\r\n\t\tborder-right: 1px solid rgb(204, 204, 204);\r\n\t\tborder-bottom: none;\r\n\t}\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_content {\r\n\t\tpadding-left: 10px;\r\n\t\tpadding-top: 0px;\r\n\t}\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\r\n\t\tdisplay: block;\r\n\t}\r\n\r\n}\r\n"]}
includes/class-commands.php CHANGED
@@ -381,10 +381,10 @@ class UpdraftPlus_Commands {
381
  $error = true;
382
  $output = 'cloudfiles_addon_not_found';
383
  } else {
384
- $output = array(
385
  'accounts' => $updraftplus_addon_cloudfilesenhanced->account_options(),
386
  'regions' => $updraftplus_addon_cloudfilesenhanced->region_options(),
387
- );
388
  }
389
  break;
390
 
@@ -446,11 +446,8 @@ class UpdraftPlus_Commands {
446
  if (isset($response_decode->e)) {
447
  return new WP_Error('error', '', htmlspecialchars($response_decode->e));
448
  }
449
-
450
- return array(
451
- 'status' => $response_decode->code,
452
- 'response' => $response_decode->html_response
453
- );
454
  }
455
 
456
  /**
381
  $error = true;
382
  $output = 'cloudfiles_addon_not_found';
383
  } else {
384
+ $output = array(
385
  'accounts' => $updraftplus_addon_cloudfilesenhanced->account_options(),
386
  'regions' => $updraftplus_addon_cloudfilesenhanced->region_options(),
387
+ );
388
  }
389
  break;
390
 
446
  if (isset($response_decode->e)) {
447
  return new WP_Error('error', '', htmlspecialchars($response_decode->e));
448
  }
449
+
450
+ return array('status' => $response_decode->code, 'response' => $response_decode->html_response);
 
 
 
451
  }
452
 
453
  /**
includes/class-wpadmin-commands.php CHANGED
@@ -426,7 +426,7 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
426
  );
427
  } else {
428
  $node_array[] = array(
429
- 'text' => $value,
430
  'children' => false,
431
  'id' => $path . DIRECTORY_SEPARATOR . $value,
432
  'type' => 'file',
@@ -561,7 +561,7 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
561
  'icon' => 'jstree-file',
562
  'li_attr' => array(
563
  'path' => $parent_name . DIRECTORY_SEPARATOR . $si['name'],
564
- 'size' => $updraftplus->convert_numeric_size_to_text($si['size'])
565
  )
566
  );
567
  }
426
  );
427
  } else {
428
  $node_array[] = array(
429
+ 'text' => $value,
430
  'children' => false,
431
  'id' => $path . DIRECTORY_SEPARATOR . $value,
432
  'type' => 'file',
561
  'icon' => 'jstree-file',
562
  'li_attr' => array(
563
  'path' => $parent_name . DIRECTORY_SEPARATOR . $si['name'],
564
+ 'size' => $updraftplus->convert_numeric_size_to_text($si['size'])
565
  )
566
  );
567
  }
includes/updraftplus-admin.js CHANGED
@@ -1406,9 +1406,7 @@ jQuery(document).ready(function($) {
1406
 
1407
  // Update WebDAV URL as user edits
1408
  $('#updraft-navtab-settings-content #remote-storage-holder').on('change keyup paste', '.updraft_webdav_settings', function() {
1409
-
1410
  var updraft_webdav_settings = [];
1411
- var instance_id = "";
1412
  $('.updraft_webdav_settings').each(function(index, item) {
1413
 
1414
  var id = $(item).attr('id');
@@ -1417,19 +1415,44 @@ jQuery(document).ready(function($) {
1417
  var which_one = id.substring(15);
1418
  id_split = which_one.split('_');
1419
  which_one = id_split[0];
1420
- instance_id = id_split[1];
1421
- updraft_webdav_settings[which_one] = this.value;
 
1422
  }
1423
  });
1424
-
1425
  var updraft_webdav_url = "";
1426
  var host = "@";
1427
  var slash = "/";
1428
  var colon = ":";
1429
  var colon_port = ":";
1430
-
1431
- if (updraft_webdav_settings['host'].indexOf("@") >= 0 || "" === updraft_webdav_settings['host']) {
1432
- host = "";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1433
  }
1434
  if (updraft_webdav_settings['host'].indexOf("/") >= 0) {
1435
  $('#updraft_webdav_host_error').show();
@@ -1449,7 +1472,7 @@ jQuery(document).ready(function($) {
1449
  colon_port = "";
1450
  }
1451
 
1452
- updraft_webdav_url = updraft_webdav_settings['webdav'] + updraft_webdav_settings['user'] + colon + updraft_webdav_settings['pass'] + host +encodeURIComponent(updraft_webdav_settings['host']) + colon_port + updraft_webdav_settings['port'] + slash + updraft_webdav_settings['path'];
1453
 
1454
  $('#updraft_webdav_url_' + instance_id).val(updraft_webdav_url);
1455
  });
@@ -1463,6 +1486,74 @@ jQuery(document).ready(function($) {
1463
  $('#ud_massactions').hide();
1464
  }
1465
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1466
 
1467
  jQuery('#updraft-navtab-settings-content #remote-storage-holder').on('click', '.updraftplusmethod button.updraft-test-button', function() {
1468
 
@@ -1825,7 +1916,7 @@ jQuery('#setting-error-settings_updated').slideUp();}, 5000);
1825
  updraft_delete_modal_buttons[updraftlion.cancel] = function() {
1826
  jQuery(this).dialog("close"); };
1827
  jQuery("#updraft-delete-modal").dialog({
1828
- autoOpen: false, height: 262, width: 430, modal: true,
1829
  buttons: updraft_delete_modal_buttons
1830
  });
1831
 
@@ -2632,22 +2723,22 @@ jQuery(document).ready(function($) {
2632
  jQuery('#updraft-hidethis').remove();
2633
 
2634
  /*
2635
- * A Handlebarsjs helper function that is used to compare
2636
- * two values if they are equal. Please refer to the example below.
2637
- * Assuming "comment_status" contains the value of "spam".
2638
- *
2639
- * @param {mixed} a The first value to compare
2640
- * @param {mixed} b The second value to compare
2641
- *
2642
- * @example
2643
- * // returns "<span>I am spam!</span>", otherwise "<span>I am not a spam!</span>"
2644
- * {{#ifeq "spam" comment_status}}
2645
- * <span>I am spam!</span>
2646
- * {{else}}
2647
- * <span>I am not a spam!</span>
2648
- * {{/ifeq}}
2649
- *
2650
- * @return {string}
2651
  */
2652
 
2653
  Handlebars.registerHelper('ifeq', function (a, b, opts) {
@@ -2665,9 +2756,16 @@ jQuery(document).ready(function($) {
2665
  for (var method in updraftlion.remote_storage_templates) {
2666
  if ('undefined' != typeof updraftlion.remote_storage_options[method]) {
2667
  var template = Handlebars.compile(updraftlion.remote_storage_templates[method]);
 
2668
  for (var instance_id in updraftlion.remote_storage_options[method]) {
 
2669
  var context = updraftlion.remote_storage_options[method][instance_id];
 
 
 
 
2670
  html += template(context);
 
2671
  }
2672
  } else {
2673
  html += updraftlion.remote_storage_templates[method];
1406
 
1407
  // Update WebDAV URL as user edits
1408
  $('#updraft-navtab-settings-content #remote-storage-holder').on('change keyup paste', '.updraft_webdav_settings', function() {
 
1409
  var updraft_webdav_settings = [];
 
1410
  $('.updraft_webdav_settings').each(function(index, item) {
1411
 
1412
  var id = $(item).attr('id');
1415
  var which_one = id.substring(15);
1416
  id_split = which_one.split('_');
1417
  which_one = id_split[0];
1418
+ var instance_id = id_split[1];
1419
+ if ('undefined' == typeof updraft_webdav_settings[instance_id]) updraft_webdav_settings[instance_id] = [];
1420
+ updraft_webdav_settings[instance_id][which_one] = this.value;
1421
  }
1422
  });
1423
+
1424
  var updraft_webdav_url = "";
1425
  var host = "@";
1426
  var slash = "/";
1427
  var colon = ":";
1428
  var colon_port = ":";
1429
+
1430
+ for (var instance_id in updraft_webdav_settings) {
1431
+
1432
+ if (updraft_webdav_settings[instance_id]['host'].indexOf("@") >= 0 || "" === updraft_webdav_settings[instance_id]['host']) {
1433
+ host = "";
1434
+ }
1435
+ if (updraft_webdav_settings[instance_id]['host'].indexOf("/") >= 0) {
1436
+ $('#updraft_webdav_host_error').show();
1437
+ } else {
1438
+ $('#updraft_webdav_host_error').hide();
1439
+ }
1440
+
1441
+ if (0 == updraft_webdav_settings[instance_id]['path'].indexOf("/") || "" === updraft_webdav_settings[instance_id]['path']) {
1442
+ slash = "";
1443
+ }
1444
+
1445
+ if ("" === updraft_webdav_settings[instance_id]['user'] || "" === updraft_webdav_settings[instance_id]['pass']) {
1446
+ colon = "";
1447
+ }
1448
+
1449
+ if ("" === updraft_webdav_settings[instance_id]['host'] || "" === updraft_webdav_settings[instance_id]['port']) {
1450
+ colon_port = "";
1451
+ }
1452
+
1453
+ updraft_webdav_url = updraft_webdav_settings[instance_id]['webdav'] + updraft_webdav_settings[instance_id]['user'] + colon + updraft_webdav_settings[instance_id]['pass'] + host +encodeURIComponent(updraft_webdav_settings[instance_id]['host']) + colon_port + updraft_webdav_settings[instance_id]['port'] + slash + updraft_webdav_settings[instance_id]['path'];
1454
+
1455
+ $('#updraft_webdav_url_' + instance_id).val(updraft_webdav_url);
1456
  }
1457
  if (updraft_webdav_settings['host'].indexOf("/") >= 0) {
1458
  $('#updraft_webdav_host_error').show();
1472
  colon_port = "";
1473
  }
1474
 
1475
+ updraft_webdav_url = updraft_webdav_settings['webdav'] + updraft_webdav_settings['user'] + colon + encodeURIComponent(updraft_webdav_settings['pass']) + host +encodeURIComponent(updraft_webdav_settings['host']) + colon_port + updraft_webdav_settings['port'] + slash + updraft_webdav_settings['path'];
1476
 
1477
  $('#updraft_webdav_url_' + instance_id).val(updraft_webdav_url);
1478
  });
1486
  $('#ud_massactions').hide();
1487
  }
1488
  });
1489
+
1490
+ jQuery('#updraft-navtab-settings-content #remote-storage-holder').on('click', '.updraftplusmethod a.updraft_add_instance', function(e) {
1491
+ e.preventDefault();
1492
+
1493
+ updraft_settings_form_changed = true;
1494
+
1495
+ var method = jQuery(this).data('method');
1496
+ add_new_instance(method);
1497
+ });
1498
+
1499
+ jQuery('#updraft-navtab-settings-content #remote-storage-holder').on('click', '.updraftplusmethod a.updraft_delete_instance', function(e) {
1500
+ e.preventDefault();
1501
+
1502
+ updraft_settings_form_changed = true;
1503
+
1504
+ var method = jQuery(this).data('method');
1505
+ var instance_id = jQuery(this).data('instance_id');
1506
+
1507
+ if (1 === jQuery('.' + method + '_updraft_remote_storage_border').length) {
1508
+ add_new_instance(method);
1509
+ }
1510
+
1511
+ jQuery('.' + method + '-' + instance_id).hide('slow', function() {
1512
+ jQuery(this).remove();
1513
+ });
1514
+ });
1515
+
1516
+ /**
1517
+ * This method will get the default options and compile a template with them
1518
+ *
1519
+ * @param {string} method - the remote storage name
1520
+ * @param {boolean} first_instance - indicates if this is the first instance of this type
1521
+ */
1522
+ function add_new_instance(method) {
1523
+ var template = Handlebars.compile(updraftlion.remote_storage_templates[method]);
1524
+ var context = updraftlion.remote_storage_options[method]['default'];
1525
+ context['instance_id'] = 's-' + generate_instance_id(32);
1526
+ context['instance_enabled'] = 1;
1527
+ var html = template(context);
1528
+ jQuery(html).hide().insertAfter('.' + method + '_add_instance_container:first').show('slow');
1529
+ }
1530
+
1531
+ /**
1532
+ * This method will return a random instance id string
1533
+ *
1534
+ * @param {integer} length - the length of the string to be generated
1535
+ *
1536
+ * @return string - the instance id
1537
+ */
1538
+ function generate_instance_id(length) {
1539
+ var uuid = '';
1540
+ var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
1541
+
1542
+ for (var i = 0; i < length; i++) {
1543
+ uuid += characters.charAt(Math.floor(Math.random() * characters.length));
1544
+ }
1545
+
1546
+ return uuid;
1547
+ }
1548
+
1549
+ jQuery('#updraft-navtab-settings-content #remote-storage-holder').on("change", "input[class='updraft_instance_toggle']", function () {
1550
+ updraft_settings_form_changed = true;
1551
+ if (jQuery(this).is(':checked')) {
1552
+ jQuery(this).siblings('label').html(updraftlion.instance_enabled);
1553
+ } else {
1554
+ jQuery(this).siblings('label').html(updraftlion.instance_disabled);
1555
+ }
1556
+ });
1557
 
1558
  jQuery('#updraft-navtab-settings-content #remote-storage-holder').on('click', '.updraftplusmethod button.updraft-test-button', function() {
1559
 
1916
  updraft_delete_modal_buttons[updraftlion.cancel] = function() {
1917
  jQuery(this).dialog("close"); };
1918
  jQuery("#updraft-delete-modal").dialog({
1919
+ autoOpen: false, height: 322, width: 430, modal: true,
1920
  buttons: updraft_delete_modal_buttons
1921
  });
1922
 
2723
  jQuery('#updraft-hidethis').remove();
2724
 
2725
  /*
2726
+ * A Handlebarsjs helper function that is used to compare
2727
+ * two values if they are equal. Please refer to the example below.
2728
+ * Assuming "comment_status" contains the value of "spam".
2729
+ *
2730
+ * @param {mixed} a The first value to compare
2731
+ * @param {mixed} b The second value to compare
2732
+ *
2733
+ * @example
2734
+ * // returns "<span>I am spam!</span>", otherwise "<span>I am not a spam!</span>"
2735
+ * {{#ifeq "spam" comment_status}}
2736
+ * <span>I am spam!</span>
2737
+ * {{else}}
2738
+ * <span>I am not a spam!</span>
2739
+ * {{/ifeq}}
2740
+ *
2741
+ * @return {string}
2742
  */
2743
 
2744
  Handlebars.registerHelper('ifeq', function (a, b, opts) {
2756
  for (var method in updraftlion.remote_storage_templates) {
2757
  if ('undefined' != typeof updraftlion.remote_storage_options[method]) {
2758
  var template = Handlebars.compile(updraftlion.remote_storage_templates[method]);
2759
+ var first_instance = true;
2760
  for (var instance_id in updraftlion.remote_storage_options[method]) {
2761
+ if ('default' === instance_id) continue;
2762
  var context = updraftlion.remote_storage_options[method][instance_id];
2763
+ context['first_instance'] = first_instance;
2764
+ if ('undefined' == typeof context['instance_enabled']) {
2765
+ context['instance_enabled'] = 1;
2766
+ }
2767
  html += template(context);
2768
+ first_instance = false;
2769
  }
2770
  } else {
2771
  html += updraftlion.remote_storage_templates[method];
includes/updraftplus-admin.min.js CHANGED
@@ -1,3 +1,3 @@
1
- function updraft_send_command(t,e,a,r){default_options={json_parse:!0,alert_on_error:!0,action:"updraft_ajax",nonce:updraft_credentialtest_nonce,nonce_key:"nonce",timeout:null,async:!0,type:"POST"},"undefined"==typeof r&&(r={});for(var n in default_options)r.hasOwnProperty(n)||(r[n]=default_options[n]);var o={action:r.action,subaction:t};if(o[r.nonce_key]=r.nonce,"object"==typeof e)for(var u in e)o[u]=e[u];else o.action_data=e;var d={type:r.type,url:ajaxurl,data:o,success:function(t,e){if(r.json_parse){try{var n=ud_parse_json(t)}catch(o){return console.log(o),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t))}"function"==typeof a&&a(n,e,t)}else"function"==typeof a&&a(t,e)},error:function(t,e,a){"function"==typeof r.error_callback?r.error_callback(t,e,a):(console.log("updraft_send_command: error: "+e+" ("+a+")"),console.log(t))},dataType:"text",async:r.async};null!=r.timeout&&(d.timeout=r.timeout),jQuery.ajax(d)}function updraft_delete(t,e,a){jQuery("#updraft_delete_timestamp").val(t),jQuery("#updraft_delete_nonce").val(e),a?jQuery("#updraft-delete-remote-section, #updraft_delete_remote").removeAttr("disabled").show():jQuery("#updraft-delete-remote-section, #updraft_delete_remote").hide().attr("disabled","disabled"),t.indexOf(",")>-1?(jQuery("#updraft_delete_question_singular").hide(),jQuery("#updraft_delete_question_plural").show()):(jQuery("#updraft_delete_question_plural").hide(),jQuery("#updraft_delete_question_singular").show()),jQuery("#updraft-delete-modal").dialog("open")}function updraft_remote_storage_tab_activation(t){jQuery(".updraftplusmethod").hide(),jQuery(".remote-tab").data("active",!1),jQuery(".remote-tab").removeClass("nav-tab-active"),jQuery(".updraftplusmethod."+t).show(),jQuery(".remote-tab-"+t).data("active",!0),jQuery(".remote-tab-"+t).addClass("nav-tab-active")}function updraft_check_overduecrons(){updraft_send_command("check_overdue_crons",null,function(t){t&&t.hasOwnProperty("m")&&jQuery("#updraft-insert-admin-warning").html(t.m)},{alert_on_error:!1})}function updraft_remote_storage_tabs_setup(){var t=0,e=jQuery(".updraft_servicecheckbox:checked");jQuery(e).each(function(a,r){var n=jQuery(r).val();"updraft_servicecheckbox_none"!=jQuery(r).attr("id")&&t++,jQuery(".remote-tab-"+n).show(),a==jQuery(e).length-1&&updraft_remote_storage_tab_activation(n)}),t>0&&jQuery(".updraftplusmethod.none").hide(),jQuery(document).keyup(function(t){if((32===t.keyCode||13===t.keyCode)&&jQuery(document.activeElement).is("input.labelauty + label")){var e=jQuery(document.activeElement).attr("for");e&&jQuery("#"+e).change()}}),jQuery(".updraft_servicecheckbox").change(function(){var e=jQuery(this).attr("id");if("updraft_servicecheckbox_"==e.substring(0,24)){var a=e.substring(24);null!=a&&""!=a&&(jQuery(this).is(":checked")?(t++,jQuery(".remote-tab-"+a).fadeIn(),updraft_remote_storage_tab_activation(a)):(t--,jQuery(".remote-tab-"+a).hide(),1==jQuery(".remote-tab-"+a).data("active")&&updraft_remote_storage_tab_activation(jQuery(".remote-tab:visible").last().attr("name"))))}t<=0?jQuery(".updraftplusmethod.none").fadeIn():jQuery(".updraftplusmethod.none").hide()}),jQuery(".updraft_servicecheckbox:not(.multi)").change(function(){var t=jQuery(this).attr("value");jQuery(this).is(":not(:checked)")?(jQuery(".updraftplusmethod."+t).hide(),jQuery(".updraftplusmethod.none").fadeIn()):jQuery(".updraft_servicecheckbox").not(this).prop("checked",!1)});var a=jQuery(".updraft_servicecheckbox");"function"==typeof a.labelauty&&a.labelauty()}function updraft_remote_storage_test(t,e,a){var r,n;a?(r=jQuery("#updraft-"+t+"-test-"+a),n=".updraftplusmethod."+t+"-"+a):(r=jQuery("#updraft-"+t+"-test"),n=".updraftplusmethod."+t);var o=r.data("method_label");r.html(updraftlion.testing_settings.replace("%s",o));var u={method:t};jQuery("#updraft-navtab-settings-content "+n+" input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test"),r=jQuery(e).attr("type");if(a){r||(console.log("UpdraftPlus: settings test input item with no type found"),console.log(e),r="text");var n=null;"checkbox"==r?n=jQuery(e).is(":checked")?1:0:"text"==r||"password"==r?n=jQuery(e).val():(console.log("UpdraftPlus: settings test input item with unrecognised type ("+r+") found"),console.log(e)),u[a]=n}}),jQuery("#updraft-navtab-settings-content "+n+" textarea[data-updraft_settings_test], #updraft-navtab-settings-content "+n+" select[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test");u[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",u,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,u)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))})}function backupnow_whichfiles_checked(t){return jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(e){if(jQuery(this).is(":checked")){var a=jQuery(this).attr("name");if("updraft_include_"==a.substring(0,16)){var r=a.substring(16);""!=t&&(t+=","),t+=r}}}),t}function backupnow_whichtables_checked(t){var e=!1;return jQuery('#backupnow_database_moreoptions input[type="checkbox"]').each(function(t){if(!jQuery(this).is(":checked"))return void(e=!0)}),t=jQuery("input[name^='updraft_include_tables_']").serializeArray(),!e||t}function updraft_deleteallselected(){var t=0,e="",a="",r="";jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").each(function(n){t++;var o=jQuery(this).data("nonce");a&&(a+=","),a+=o;var u=jQuery(this).data("key");e&&(e+=","),e+=u;var d=jQuery(this).find(".updraftplus-remove").data("hasremote");r&&(r+=","),r+=d}),updraft_delete(e,a,r)}function updraft_openrestorepanel(t){updraft_console_focussed_tab=2,updraft_historytimertoggle(t),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-backups-content").show(),jQuery("#updraft-navtab-backups").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){jQuery("#updraft-migrate-modal").dialog("close"),jQuery('#updraft-navtab-backups-content .updraft_existing_backups button[data-backup_timestamp="'+t+'"]').click()}function updraft_restore_setoptions(t){var e=0;jQuery('input[name="updraft_restore[]"]').each(function(a,r){var n=jQuery(r).val(),o=n+"=([0-9,]+)",u=new RegExp(o),d=t.match(u);d?(jQuery(r).removeAttr("disabled").data("howmany",d[1]).parent().show(),e++,"db"==n&&(e+=4.5),jQuery(r).is(":checked")&&jQuery("#updraft_restorer_"+n+"options").show()):jQuery(r).attr("disabled","disabled").parent().hide()});var a=t.match(/dbcrypted=1/);a?jQuery(".updraft_restore_crypteddb").show():jQuery(".updraft_restore_crypteddb").hide();var r=t.match(/meta_foreign=([12])/);r?jQuery("#updraft_restore_meta_foreign").val(r[1]):jQuery("#updraft_restore_meta_foreign").val("0");var n=336+20*e;jQuery("#updraft-restore-modal").dialog("option","height",n)}function updraft_backup_dialog_open(){jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed?window.confirm(updraftlion.unsavedsettingsbackup)&&(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open")):(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open"))}function updraft_migrate_dialog_open(){jQuery("#updraft_migrate_modal_alt").hide(),updraft_migrate_modal_default_buttons={},updraft_migrate_modal_default_buttons[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-migrate-modal").dialog("option","buttons",updraft_migrate_modal_default_buttons),jQuery("#updraft-migrate-modal").dialog("open"),jQuery("#updraft_migrate_modal_main").show()}function updraft_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&updraft_activejobs_update(!0))}function updraft_backupnow_inpage_go(t,e,a,r,n,o,u){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,u="undefined"==typeof u?updraftlion.automaticbackupbeforeupdate:u,updraft_console_focussed_tab=1,updraft_inpage_success_callback=t;var d={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",d),jQuery("#updraft_inpage_prebackup").hide(),s&&jQuery("#updraft-backupnow-inpage-modal").dialog("open"),jQuery("#updraft_inpage_backup").show(),updraft_activejobslist_backupnownonce_only=1,updraft_inpage_hasbegun=0,updraft_backupnow_go(r,n,o,e,a,u,"")}function updraft_activejobs_update(t){var e=(new Date).getTime();if(!(0==t&&e<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=e+5500;var a="";jQuery(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,e){var r=jQuery(e).data("downloaderfor");"object"==typeof r&&(""!=a&&(a+=":"),a=a+r.base+","+r.nonce+","+r.what+","+r.index)});var r={downloaders:a};try{jQuery("#updraft-poplog").dialog("isOpen")&&(r.log_fetch=1,r.log_nonce=updraft_poplog_log_nonce,r.log_pointer=updraft_poplog_log_pointer)}catch(n){console.log(n)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(r.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",r,function(t){try{resp=ud_parse_json(t),resp.hasOwnProperty("l")&&(resp.l?(jQuery("#updraft_lastlogmessagerow").show(),jQuery("#updraft_lastlogcontainer").html(resp.l)):(jQuery("#updraft_lastlogmessagerow").hide(),jQuery("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var n=-1;if(jQuery("#updraft_activejobs").html(resp.j),jQuery("#updraft_activejobs .updraft_jobtimings").each(function(t,a){var r=jQuery(a);if(r.data("lastactivity")&&r.data("jobid")){var o=r.data("jobid"),u=r.data("lastactivity");(n==-1||u<n)&&(n=u);var d=r.data("nextresumptionafter"),s=r.data("nextresumption");e=(new Date).getTime(),u>50&&s>0&&d<-30&&e>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||s!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=s,updraft_last_forced_jobid=o,updraft_last_forced_when=e,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+s),updraft_send_command("forcescheduledresumption",{resumption:s,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),e=(new Date).getTime(),updraft_activejobs_nextupdate=e+18e4,1==updraft_page_is_visible&&(1==updraft_console_focussed_tab||2==updraft_console_focussed_tab&&""!=a)&&(updraft_activejobs_nextupdate=n>-1?n<5?e+1750:e+5e3:lastlog_lastdata==t?e+7500:e+1750),lastlog_lastdata=t,null!=resp.j&&""!=resp.j?(jQuery("#updraft_activejobsrow").show(),r.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly).length?(updraft_inpage_hasbegun=1,console.log("UpdraftPlus: the start of the requested backup job has been detected")):!updraft_inpage_hasbegun&&updraft_activejobslist_backupnownonce_only&&jQuery(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=jQuery(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,r.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):jQuery("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){jQuery("#updraft_backup_started").slideUp()},3500)):jQuery("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),jQuery("#updraft_activejobsrow").hide()),lastlog_jobs=resp.j,null!=resp.ds&&""!=resp.ds&&jQuery(resp.ds).each(function(e,a){""!=a.base&&updraft_downloader_status_update(a.base,a.timestamp,a.what,a.findex,a,t)}),null!=resp.u&&""!=resp.u&&jQuery("#updraft-poplog").dialog("isOpen")){var o=resp.u;if(o.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=o.pointer,null!=o.log&&""!=o.log)){var u=jQuery("#updraft-poplog").scrollTop();jQuery("#updraft-poplog-content").append(o.log),updraft_poplog_lastscroll!=u&&updraft_poplog_lastscroll!=-1||(jQuery("#updraft-poplog").scrollTop(jQuery("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=jQuery("#updraft-poplog").scrollTop())}}}catch(d){console.log(updraftlion.unexpectedresponse+" "+t),console.log(d)}},{json_parse:!1,type:"GET"})}}function updraft_popuplog(t){var e=updraftlion.loading_log_file;t&&(e+=" (log."+t+".txt)"),jQuery("#updraft-poplog").dialog("option","title",e),jQuery("#updraft-poplog-content").html("<em>"+e+" ...</em> "),jQuery("#updraft-poplog").dialog("open"),updraft_send_command("get_log",t,function(t){updraft_poplog_log_pointer=t.pointer,updraft_poplog_log_nonce=t.nonce;var e="?page=updraftplus&action=downloadlog&force_download=1&updraftplus_backup_nonce="+t.nonce;jQuery("#updraft-poplog-content").html(t.log);var a={};a[updraftlion.downloadlogfile]=function(){window.location.href=e},a[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-poplog").dialog("option","buttons",a),jQuery("#updraft-poplog").dialog("option","title","log."+t.nonce+".txt"),updraft_poplog_lastscroll=-1},{type:"GET",timeout:6e4,error_callback:function(t,e,a){var r=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(r),console.log(t)}})}function updraft_showlastbackup(){updraft_send_command("get_fragment","last_backup_html",function(t){response=t.output,lastbackup_laststatus==response?setTimeout(function(){updraft_showlastbackup()},7e3):jQuery("#updraft_last_backup").html(response),lastbackup_laststatus=response},{type:"GET"})}function updraft_historytimertoggle(t){updraft_historytimer&&1!=t?(clearTimeout(updraft_historytimer),updraft_historytimer=0):(updraft_updatehistory(0,0),updraft_historytimer=setInterval(function(){updraft_updatehistory(0,0)},3e4),calculated_diskspace||(updraftplus_diskspace(),calculated_diskspace=1))}function updraft_updatehistory(t,e){var a=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=a+30;else if(a<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+a.toString()+" < "+updraft_historytimer_notbefore.toString());1==t&&(1==e?(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanningremote+"</em></p>")):(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanning+"</em></p>")));var r=e?"remotescan":!!t&&"rescan";updraft_send_command("rescan",r,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_modal")&&t.migrate_modal&&jQuery("#updraft_migrate_modal_main").replaceWith(t.migrate_modal),null!=t.n&&jQuery("#updraft-navtab-backups").html(t.n),null!=t.t){if(null!=t.cksum){if(t.cksum==updraft_history_lastchecksum)return;updraft_history_lastchecksum=t.cksum}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html(t.t),t.data&&console.log(t.data)}})}function updraft_intervals_monthly_or_not(t,e){var a="#updraft-navtab-settings-content #"+t,r=jQuery(a+" option").length,n="monthly"==e,o=!1;if(r>10&&(o=!0),n||o){if(n&&o)return void("monthly"==e&&(jQuery(".updraft_monthly_extra_words_"+t).remove(),jQuery(a).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>")));if(jQuery(".updraft_monthly_extra_words_"+t).remove(),n){updraft_interval_week_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.mdayselector).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>");var u=updraft_interval_month_val===!1?1:updraft_interval_month_val;u-=1,jQuery(a+" option:eq("+u+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var d=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+d+")").prop("selected",!0)}}}function updraft_check_same_times(){var t=0,e=jQuery("#updraft-navtab-settings-content .updraft_interval").val();"manual"==e?jQuery("#updraft-navtab-settings-content .updraft_files_timings").hide():jQuery("#updraft-navtab-settings-content .updraft_files_timings").show(),"weekly"==e||"fortnightly"==e||"monthly"==e?(updraft_intervals_monthly_or_not("updraft_startday_files",e),jQuery("#updraft-navtab-settings-content #updraft_startday_files").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_files").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_files").hide());var a=jQuery("#updraft-navtab-settings-content .updraft_interval_database").val();"manual"==a&&(t=1,jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide()),"weekly"==a||"fortnightly"==a||"monthly"==a?(updraft_intervals_monthly_or_not("updraft_startday_db",a),jQuery("#updraft-navtab-settings-content #updraft_startday_db").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_db").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_db").hide()),a==e?(jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide(),0==t?jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").show():jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide()):(jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide(),0==t&&jQuery("#updraft-navtab-settings-content .updraft_db_timings").show())}function updraft_activejobs_delete(t){updraft_send_command("activejobs_delete",t,function(e){"Y"==e.ok?jQuery("#updraft-jobid-"+t).html(e.m).fadeOut("slow").remove():"N"==e.ok?alert(e.m):(alert(updraftlion.unexpectedresponse),console.log(e))})}function updraftplus_diskspace_entity(t){jQuery("#updraft_diskspaceused_"+t).html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:t},function(e){jQuery("#updraft_diskspaceused_"+t).html(e.output)},{type:"GET"})}function updraft_iframe_modal(t,e){var a=780,r=500;jQuery("#updraft-iframe-modal-innards").html('<iframe width="100%" height="430px" src="'+ajaxurl+"?action=updraft_ajax&subaction="+t+"&nonce="+updraft_credentialtest_nonce+'"></iframe>'),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("open")}function updraft_html_modal(t,e,a,r){jQuery("#updraft-iframe-modal-innards").html(t);var n={};a<450&&(n[updraftlion.close]=function(){jQuery(this).dialog("close")}),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("option","buttons",n).dialog("open")}function updraftplus_diskspace(){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html(t.output)},{type:"GET"})}function updraftplus_deletefromserver(t,e,a){a||(a=0);var r={stage:"delete",timestamp:t,type:e,findex:a};updraft_send_command("updraft_download_backup",r,null,{action:"updraft_download_backup",nonce:updraft_download_nonce,nonce_key:"_wpnonce"})}function updraftplus_downloadstage2(t,e,a){location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"&timestamp="+t+"&type="+e+"&stage=2&findex="+a+"&action=updraft_download_backup"}function updraftplus_show_contents(t,e,a){var r='<div id="updraft_zip_files_container" class="hidden-in-updraftcentral" style="clear:left;"><div id="updraft_zip_info_container"><p><span id="updraft_zip_path_text">'+updraftlion.zip_file_contents_info+'</span> - <span id="updraft_zip_size_text"></span></p>'+updraftlion.browse_download_link+'</div><div id="updraft_zip_files_jstree_container"><input type="search" id="zip_files_jstree_search" name="zip_files_jstree_search" placeholder="'+updraftlion.search+'"><div id="updraft_zip_files_jstree"></div></div></div>';updraft_html_modal(r,updraftlion.zip_file_contents,780,500),zip_files_jstree("zipbrowser",t,e,a)}function zip_files_jstree(t,e,a,r){jQuery("#updraft_zip_files_jstree").jstree({core:{multiple:!1,data:function(n,o){updraft_send_command("get_jstree_directory_nodes",{entity:t,node:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):o.call(this,t.nodes)})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["search","sort"]}),jQuery("#updraft_zip_files_jstree").on("ready.jstree",function(t,e){jQuery("#updraft-iframe-modal").dialog("option","title",updraftlion.zip_file_contents+": "+e.instance.get_node("#").children[0])});var n=!1;jQuery("#zip_files_jstree_search").keyup(function(){n&&clearTimeout(n),n=setTimeout(function(){var t=jQuery("#zip_files_jstree_search").val();jQuery("#updraft_zip_files_jstree").jstree(!0).search(t)},250)}),jQuery("#updraft_zip_files_jstree").on("changed.jstree",function(t,e){jQuery("#updraft_zip_path_text").text(e.node.li_attr.path),e.node.li_attr.size?(jQuery("#updraft_zip_size_text").text(e.node.li_attr.size),jQuery("#updraft_zip_download_item").show()):(jQuery("#updraft_zip_size_text").text(""),jQuery("#updraft_zip_download_item").hide())}),jQuery("#updraft_zip_download_item").click(function(t){t.preventDefault();var n=jQuery("#updraft_zip_path_text").text();updraft_send_command("get_zipfile_download",{path:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):t.hasOwnProperty("path")?location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"&timestamp="+e+"&type="+a+"&stage=2&findex="+r+"&filepath="+t.path+"&action=updraft_download_backup":alert(updraftlion.download_timeout)})})}function updraft_downloader(t,e,a,r,n,o,u){"string"!=typeof n&&(n=n.toString());for(var n=n.split(","),d=0;d<n.length;d++){var s=t+e+"_"+a+"_"+n[d],i="."+s,p=parseInt(n[d]);p++;var l=0==n[d]?"":" ("+p+")";if(!jQuery(i).length){var c=o?o:e;jQuery(r).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+s+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+" "+a+l+" ("+c+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+s+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(i).data("downloaderfor",{base:t,nonce:e,what:a,index:n[d]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)}jQuery(i).data("lasttimebegan",(new Date).getTime()),u=!!u;var f=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+n[d]).data("wp_nonce").toString(),_={type:a,timestamp:e,findex:n[d]},g={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:f,timeout:1e4,async:u};updraft_send_command("updraft_download_backup",_,function(t){},g)}return!1}function ud_parse_json(t){t.charAt(0),t.charAt(t.length-1);try{var e=JSON.parse(t);return e}catch(a){console.log("UpdraftPlus: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(t)}var r=t.indexOf("{"),n=t.lastIndexOf("}");if(r>-1&&n>-1){var o=t.slice(r,n+1);try{var u=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),u}catch(a){throw console.log("UpdraftPlus: Exception when trying to parse JSON (2)"),a}}throw"UpdraftPlus: could not parse the JSON"}function updraft_restorer_checkstage2(t){var e=jQuery("#ud_downloadstatus2 .file").length;return e>0?void(t&&alert(updraftlion.stilldownloading)):(jQuery("#updraft-restore-modal-stage2a").html(updraftlion.processing),void updraft_send_command("restore_alldownloaded",{timestamp:jQuery("#updraft_restore_timestamp").val(),restoreopts:jQuery("#updraft_restore_form").serialize()},function(t){var e=null;jQuery("#updraft_restorer_restore_options").val("");try{var a=ud_parse_json(t);if(null==a)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);var r=a.m;if(""!=a.w&&(r=r+"<p><strong>"+updraftlion.warnings+"</strong><br>"+a.w+"</p>"),""!=a.e?r=r+"<p><strong>"+updraftlion.errors+"</strong><br>"+a.e+"</p>":updraft_restore_stage=3,a.hasOwnProperty("i")){try{if(e=ud_parse_json(a.i),e.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var n=e.addui;r+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+n+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete e.addui,a.i=JSON.stringify(e))}}catch(o){console.log(o),console.log(a)}jQuery("#updraft_restorer_backup_info").val(a.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(r),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(o){console.log(t),console.log(o),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+t).html()}},{json_parse:!1}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e,a,r,n,o){var u=t+e+"_"+a+"_"+r,d="."+u,s=0;if(null!=n.e)jQuery(d+" .raw").html("<strong>"+updraftlion.error+"</strong> "+n.e),console.log(n);else if(null!=n.p){if(jQuery(d+"_st .dlfileprogress").width(n.p+"%"),null!=n.a&&n.a>0){var i=(new Date).getTime(),p=jQuery(d).data("lasttimebegan"),l=i-p;if(n.a>90&&l>6e4){console.log(e+" "+a+" "+r+": restarting download: file_age="+n.a+", sincelastrestart_ms="+l),jQuery(d).data("lasttimebegan",(new Date).getTime());var c=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+r),f={type:a,timestamp:e,findex:r},_={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:c.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",f,function(t){},_),jQuery(d).data("lasttimebegan",(new Date).getTime())}}if(null!=n.m)if(n.p>=100&&"udrestoredlstatus_"==t)jQuery(d+" .raw").html(n.m),jQuery(d).fadeOut("slow",function(){jQuery(this).remove(),updraft_restorer_checkstage2(0)});else if(n.p<100||"uddlstatus_"!=t)jQuery(d+" .raw").html(n.m);else{var g=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button type="button" onclick="updraftplus_downloadstage2(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button id="uddownloaddelete_'+e+"_"+a+'" type="button" onclick="updraftplus_deletefromserver(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.deletefromserver+"</button>";n.hasOwnProperty("can_show_contents")&&n.can_show_contents&&(g+=' <button type="button" onclick="updraftplus_show_contents(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(d+" .raw").html(g)}}else null!=n.m?jQuery(d+" .raw").html(n.m):(jQuery(d+" .raw").html(updraftlion.jsonnotunderstood+" ("+o+")"),s=1);return s}function updraft_backupnow_go(t,e,a,r,n,o,u){jQuery("#updraft_backup_started").html("<em>"+updraftlion.requeststart+"</em>").slideDown(""),setTimeout(function(){jQuery("#updraft_backup_started").fadeOut("slow")},75e3);var d={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};""!=r&&(d.onlythisfileentity=r),""!=u&&(d.onlythesetableentities=u),updraft_send_command("backupnow",d,function(t){jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),setTimeout(function(){updraft_activejobs_update(!0)},500)})}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var updraft_restore_stage=1,lastlog_lastmessage="",lastlog_lastdata="",lastlog_jobs="",updraft_activejobs_nextupdate=(new Date).getTime()+1e3,updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_settings_form_changed=!1;window.onbeforeunload=function(t){if(updraft_settings_form_changed)return updraftlion.unsavedsettings},"undefined"!=typeof document.hidden&&document.addEventListener("visibilitychange",function(){updraft_check_page_visibility(0)},!1),updraft_check_page_visibility(1);var updraft_poplog_log_nonce,updraft_poplog_log_pointer=0,updraft_poplog_lastscroll=-1,updraft_last_forced_jobid=-1,updraft_last_forced_resumption=-1,updraft_last_forced_when=-1,updraft_backupnow_nonce="",updraft_activejobslist_backupnownonce_only=0,updraft_inpage_hasbegun=0,updraft_historytimer=0,calculated_diskspace=0,updraft_historytimer_notbefore=0,updraft_history_lastchecksum=!1,updraft_interval_week_val=!1,updraft_interval_month_val=!1;"undefined"!=typeof updraft_siteurl&&setInterval(function(){jQuery.get(updraft_siteurl+"/wp-cron.php")},21e4);var lastlog_lastmessage="";jQuery(document).ajaxError(function(t,e,a,r){if(null!=r&&""!=r&&null!=e.responseText&&""!=e.responseText&&(console.log("Error caught by UpdraftPlus ajaxError handler (follows) for "+a.url),console.log(r),0==a.url.search(ajaxurl)))if(a.url.search("subaction=downloadstatus")>=0){var n=a.url.match(/timestamp=\d+/),o=a.url.match(/type=[a-z]+/),u=a.url.match(/findex=\d+/),d=a.url.match(/base=[a-z_]+/);if(u=u instanceof Array?parseInt(u[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",d=d instanceof Array?d[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=d&&""!=o&&n>0){var s=d+n+"_"+o+"_"+u;jQuery("."+s+" .raw").html("<strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode)}}else a.url.search("subaction=restore_alldownloaded")>=0&&jQuery("#updraft-restore-modal-stage2a").append("<br><strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode+": "+r)}),jQuery(document).ready(function(t){function e(e){t('.expertmode .advanced_settings_container .advanced_tools:not(".'+e+'")').hide(),t(".expertmode .advanced_settings_container .advanced_tools."+e).fadeIn("slow"),t(".expertmode .advanced_settings_container .advanced_tools_button:not(#"+e+")").removeClass("active"),t(".expertmode .advanced_settings_container .advanced_tools_button#"+e).addClass("active")}function a(t){var e=!!jQuery("#updraftcentral_mothership_other").is(":checked");e?(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!1),t?jQuery("#updraftcentral_keycreate_mothership_firewalled_container").show():(jQuery(".updraftcentral_wizard_self_hosted_stage2").show(),jQuery("#updraftcentral_keycreate_mothership_firewalled_container").slideDown(),jQuery("#updraftcentral_keycreate_mothership").focus())):(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!0),t||(jQuery(".updraftcentral_wizard_self_hosted_stage2").hide(),r()))}function r(){jQuery("#updraftcentral_wizard_stage1_error").text("");
2
- var t="";if(jQuery("#updraftcentral_mothership_updraftpluscom").is(":checked"))jQuery(".updraftcentral_keycreate_description").hide(),t="updraftplus.com";else if(jQuery("#updraftcentral_mothership_other").is(":checked")){jQuery(".updraftcentral_keycreate_description").show();var e=jQuery("#updraftcentral_keycreate_mothership").val();if(""==e)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_empty_url);try{var a=new URL(e);t=a.hostname}catch(r){if("undefined"==typeof URL&&(t=jQuery("<a>").prop("href",e).prop("hostname")),!t||"undefined"!=typeof URL)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_invalid_url)}}jQuery("#updraftcentral_keycreate_description").val(t),jQuery(".updraftcentral_wizard_stage1").hide(),jQuery(".updraftcentral_wizard_stage2").show()}function n(e,a,r,o){jQuery("#updraft-delete-waitwarning").slideDown();var u=e,d=a,s=r,i=o,p=jQuery("#updraft_delete_timestamp").val().split(","),l=jQuery("#updraft_delete_form").serializeArray(),c={};t.each(l,function(){void 0!==c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c.remote_delete_limit=updraftlion.remote_delete_limit,delete c.action,delete c.subaction,delete c.nonce,updraft_send_command("deleteset",c,function(t){if(t.hasOwnProperty("result")&&null!=t.result)if("error"==t.result)alert(updraftlion.error+" "+t.message);else if("continue"==t.result)u=u+t.backup_local+t.backup_remote,d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,jQuery("#updraft-deleted-files-total").text(u+" "+updraftlion.remote_files_deleted),n(u,d,s,i);else if("success"==t.result){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp(),t.hasOwnProperty("count_backups")&&jQuery("#updraft-navtab-backups").html(updraftlion.existing_backups+" ("+t.count_backups+")");for(var e=0;e<p.length;e++){var a=p[e];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+a).slideUp().remove()}jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length<1&&jQuery("#ud_massactions").hide(),updraft_history_lastchecksum=!1,jQuery("#updraft-delete-modal").dialog("close"),d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,alert(t.set_message+" "+i+"\n"+t.local_message+" "+d+"\n"+t.remote_message+" "+s)}})}function o(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideUp()}function u(){var t=new plupload.Uploader(updraft_plupload_config);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){if(!/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+?)?(\.(zip|gz|gz\.crypt))?$/i.test(e.name)&&!/^log\.([0-9a-f]{12})\.txt$/.test(e.name)){for(var a=!1,r=0;r<updraft_accept_archivename.length;r++)if(updraft_accept_archivename[r].test(e.name))var a=!0;if(!a)return/\.(zip|tar|tar\.gz|tar\.bz2)$/i.test(e.name)||/\.sql(\.gz)?$/i.test(e.name)?(jQuery("#updraft-message-modal-innards").html("<p><strong>"+e.name+"</strong></p> "+updraftlion.notarchive2),jQuery("#updraft-message-modal").dialog("open")):alert(e.name+": "+updraftlion.notarchive),void t.removeFile(e)}jQuery("#filelist").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>')}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100))),e.size==e.loaded&&(jQuery("#"+e.id).html('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(parseInt(e.size*e.percent/100))+"</span>/"+plupload.formatSize(e.size)+") - "+updraftlion.complete+"</div>"),jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"))}),t.bind("Error",function(t,e){console.log(e);var a;a="-200"==e.code?"\n"+updraftlion.makesure2:updraftlion.makesure;var r=updraftlion.uploaderr+" (code "+e.code+") : "+e.message;e.hasOwnProperty("status")&&e.status&&(r+=" ("+updraftlion.http_code+" "+e.status+")"),e.hasOwnProperty("response")&&(console.log("UpdraftPlus: plupload error: "+e.response),e.response.length<100&&(r+=" "+updraftlion.error+" "+e.response+"\n")),r+=" "+a,alert(r)}),t.bind("FileUploaded",function(t,e,a){if("200"==a.status)try{resp=ud_parse_json(a.response),resp.e?alert(updraftlion.uploaderror+" "+resp.e):resp.dm?(alert(resp.dm),updraft_updatehistory(1,0)):resp.m?updraft_updatehistory(1,0):alert("Unknown server response: "+a.response)}catch(r){console.log(a),alert(updraftlion.jsonnotunderstood)}else alert("Unknown server response status: "+a.code),console.log(a)})}function d(t){params={uri:jQuery("#updraftplus_httpget_uri").val()},params.curl=t,updraft_send_command("httpget",params,function(t){t.e&&alert(t.e),t.r?jQuery("#updraftplus_httpget_results").html("<pre>"+t.r+"</pre>"):console.log(t)},{type:"GET"})}function s(t,e,a){updraft_restore_setoptions(t),jQuery("#updraft_restore_timestamp").val(e),jQuery(".updraft_restore_date").html(a),updraft_restore_stage=1,jQuery("#updraft-migrate-modal").dialog("close"),jQuery("#updraft-restore-modal").dialog("open"),jQuery("#updraft-restore-modal-stage1").show(),jQuery("#updraft-restore-modal-stage2").hide(),jQuery("#updraft-restore-modal-stage2a").html(""),updraft_activejobs_update(!0)}function i(t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e="[\\?&]"+t+"=([^&#]*)",a=new RegExp(e),r=a.exec(window.location.href);return null==r?"":decodeURIComponent(r[1].replace(/\+/g," "))}if(t(".expertmode .advanced_settings_container .advanced_tools_button").click(function(){e(t(this).attr("id"))}),jQuery.ui&&jQuery.ui.dialog&&jQuery.ui.dialog.prototype._allowInteraction){var p=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||p.apply(this,arguments)}}t("#updraftcentral_keys").on("click","a.updraftcentral_keys_show",function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keys_table").slideDown()}),t("#updraftcentral_keycreate_altmethod_moreinfo_get").click(function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keycreate_altmethod_moreinfo").slideDown()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("change keyup paste",".updraft_webdav_settings",function(){var e=[],a="";t(".updraft_webdav_settings").each(function(r,n){var o=t(n).attr("id");if(o&&"updraft_webdav_"==o.substring(0,15)){var u=o.substring(15);id_split=u.split("_"),u=id_split[0],a=id_split[1],e[u]=this.value}});var r="",n="@",o="/",u=":",d=":";(e.host.indexOf("@")>=0||""===e.host)&&(n=""),e.host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e.path.indexOf("/")&&""!==e.path||(o=""),""!==e.user&&""!==e.pass||(u=""),""!==e.host&&""!==e.port||(d=""),r=e.webdav+e.user+u+e.pass+n+encodeURIComponent(e.host)+d+e.port+o+e.path,t("#updraft_webdav_url_"+a).val(r)}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(e){(e.ctrlKey||e.metaKey)&&(t(this).toggleClass("backuprowselected"),t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length>0?t("#ud_massactions").show():t("#ud_massactions").hide())}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod button.updraft-test-button",function(){var t=jQuery(this).data("method"),e=jQuery(this).data("instance_id");updraft_remote_storage_test(t,function(e,a,r){return"sftp"==t&&(r.hasOwnProperty("scp")&&r.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+e.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+e.output),e.hasOwnProperty("data")&&console.log(e.data),!0)},e)}),t("#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database").change(function(){updraft_check_same_times()}),t("#backupnow_includefiles_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_includefiles_moreoptions").toggle()}),t("#backupnow_database_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_database_moreoptions").toggle()}),t("#updraft-navtab-backups-content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),updraftplus_diskspace()}),t("#updraft-navtab-backups-content a.updraft_uploader_toggle").click(function(e){e.preventDefault(),t("#updraft-plupload-modal").slideToggle()}),t("#updraft-navtab-backups-content a.updraft_rescan_local").click(function(t){t.preventDefault(),updraft_updatehistory(1,0)}),t("#updraft-navtab-backups-content a.updraft_rescan_remote").click(function(t){t.preventDefault(),updraft_updatehistory(1,1)}),jQuery("#updraftcentral_keys").on("click",'input[type="radio"]',function(){a(!1)}),a(!0),jQuery("#updraftcentral_keys").on("click","#updraftcentral_view_log",function(t){t.preventDefault(),jQuery("#updraftcentral_view_log_container").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.fetching+"</div>"});try{updraft_send_command("updraftcentral_get_log",null,function(t){jQuery("#updraftcentral_view_log_container").unblock(),t.hasOwnProperty("log_contents")?jQuery("#updraftcentral_view_log_contents").html('<div style="border:1px solid;padding: 2px;max-height: 400px; overflow-y:scroll;">'+t.log_contents+"</div>"):console.response(resp)})}catch(e){jQuery("#updraft_central_key").html(),console.log(e)}}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_wizard_go",function(t){jQuery("#updraftcentral_wizard_go").hide(),jQuery(".updraftcentral_wizard_success").remove(),jQuery(".create_key_container").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage1_go",function(t){t.preventDefault(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery(".updraftcentral_wizard_stage1").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage2_go",function(t){t.preventDefault(),r()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_keycreate_go",function(t){t.preventDefault();var e=!!jQuery("#updraftcentral_mothership_other").is(":checked"),a=jQuery("#updraftcentral_keycreate_description").val(),r=jQuery("#updraftcentral_keycreate_keysize").val(),n="__updraftpluscom";if(data={key_description:a,key_size:r},e&&(n=jQuery("#updraftcentral_keycreate_mothership").val(),"http"!=n.substring(0,4)))return void alert(updraftlion.enter_mothership_url);data.mothership_firewalled=jQuery("#updraftcentral_keycreate_mothership_firewalled").is(":checked")?1:0,data.where_send=n,jQuery(".create_key_container").hide(),jQuery(".updraftcentral_wizard_stage1").show(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+"</div>"});try{updraft_send_command("updraftcentral_create_key",data,function(t){jQuery("#updraftcentral_keys").unblock();try{if(resp=ud_parse_json(t),resp.hasOwnProperty("error"))return alert(resp.error),void console.log(resp);alert(resp.r),resp.hasOwnProperty("bundle")&&resp.hasOwnProperty("keys_guide")?(jQuery("#updraftcentral_keys_content").html(resp.keys_guide),jQuery("#updraftcentral_keys_content").append('<div class="updraftcentral_wizard_success">'+resp.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+resp.bundle+"</textarea></div>")):console.log(resp),resp.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").append(resp.keys_table),jQuery("#updraftcentral_wizard_go").show()}catch(e){alert(updraftlion.unexpectedresponse+" "+t),console.log(e)}},{json_parse:!1})}catch(o){jQuery("#updraft_central_key").html(),console.log(o)}}),jQuery("#updraftcentral_keys").on("click",".updraftcentral_key_delete",function(t){t.preventDefault();var e=jQuery(this).data("key_id");return"undefined"==typeof e?void console.log("UpdraftPlus: .updraftcentral_key_delete clicked, but no key ID found"):(jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.deleting+"</div>"}),void updraft_send_command("updraftcentral_delete_key",{key_id:e},function(t){jQuery("#updraftcentral_keys").unblock(),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").html(t.keys_table)}))}),jQuery("#updraft_reset_sid").click(function(t){t.preventDefault(),updraft_send_command("reset_site_id",null,function(t){jQuery("#updraft_show_sid").html(t)},{json_parse:!1})}),jQuery("#updraft-navtab-settings-content form input:not('.udignorechange'), #updraft-navtab-settings-content form select").change(function(t){updraft_settings_form_changed=!0}),jQuery("#updraft-navtab-settings-content form input[type='submit']").click(function(t){updraft_settings_form_changed=!1});var l=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>l&&(l=a)}),l>180&&jQuery(".updraft-bigbutton").width(l),setInterval(function(){updraft_activejobs_update(!1)},1250),setTimeout(function(){jQuery("#setting-error-settings_updated").slideUp()},5e3),jQuery("#updraft_restore_db").change(function(){jQuery("#updraft_restore_db").is(":checked")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var c={};c[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:c});var f={};f[updraftlion.deletebutton]=function(){n(0,0,0,0)},f[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:262,width:430,modal:!0,buttons:f});var _={};_[updraftlion.restore]=function(){var t=0,e=[],a=0,r=jQuery("#updraft_restore_meta_foreign").val();if(jQuery('input[name="updraft_restore[]"]').each(function(n,o){if(jQuery(o).is(":checked")&&!jQuery(o).is(":disabled")){t=1;var u=jQuery(o).data("howmany"),d=jQuery(o).val();if((1==r||2==r&&"db"!=d)&&("wpcore"!=d&&(u=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),d="wpcore"),"wpcore"!=d||0==a){var s=[d,u];e.push(s),"wpcore"==d&&(a=1)}}}),1==t){if(1==updraft_restore_stage){jQuery("#updraft-restore-modal-stage1").slideUp("slow"),jQuery("#updraft-restore-modal-stage2").show(),updraft_restore_stage=2;var n=jQuery(".updraft_restore_date").first().text(),o=e,u=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:u},function(t){if(t.hasOwnProperty("downloads")&&(console.log("UpdraftPlus: items which still require downloading follow"),o=t.downloads,console.log(o)),0==o.length)updraft_restorer_checkstage2(0);else for(var e=0;e<o.length;e++)updraft_downloader("udrestoredlstatus_",u,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1})}catch(d){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(d),alert(updraftlion.jsonnotunderstood)}}else if(2==updraft_restore_stage)updraft_restorer_checkstage2(1);else if(3==updraft_restore_stage){var s=1;if(jQuery("#updraft_restoreoptions_ui input.required").each(function(t){if(0!=s){var e=jQuery(this).val();if(""==e)alert(updraftlion.pleasefillinrequired),s=0;else if(""!=jQuery(this).attr("pattern")){var a=jQuery(this).attr("pattern"),r=new RegExp(a,"g");r.test(e)||(alert(jQuery(this).data("invalidpattern")),s=0)}}}),!s)return;var i=jQuery("#updraft_restoreoptions_ui select, #updraft_restoreoptions_ui input").serialize();console.log("Restore options: "+i),jQuery("#updraft_restorer_restore_options").val(i),jQuery("#updraft-restore-modal-stage2a").html(updraftlion.restore_proceeding),jQuery("#updraft_restore_form").submit(),updraft_restore_stage=4}}else alert(updraftlion.youdidnotselectany)},_[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:_}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:345,width:580,modal:!0});var g={};g[updraftlion.backupnow]=function(){var t=jQuery("#backupnow_includedb").is(":checked")?0:1,e=jQuery("#backupnow_includefiles").is(":checked")?0:1,a=jQuery("#backupnow_includecloud").is(":checked")?0:1,r=backupnow_whichtables_checked("");if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var n=backupnow_whichfiles_checked("");return""==n&&0==e?(alert(updraftlion.nofileschosen),void jQuery("#backupnow_includefiles_moreoptions").show()):t&&e?void alert(updraftlion.excludedeverything):(jQuery(this).dialog("close"),setTimeout(function(){jQuery("#updraft_lastlogmessagerow").fadeOut("slow",function(){jQuery(this).fadeIn("slow")})},1700),void updraft_backupnow_go(t,e,a,n,"",jQuery("#backupnow_label").val(),r))},g[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:g}),jQuery("#updraft-migrate-modal").dialog({autoOpen:!1,height:updraftlion.migratemodalheight,width:updraftlion.migratemodalwidth,modal:!0}),jQuery("#updraft-poplog").dialog({autoOpen:!1,height:600,width:"75%",modal:!0}),jQuery("#updraft-navtab-settings-content .enableexpertmode").click(function(){return jQuery("#updraft-navtab-settings-content .expertmode").fadeIn(),jQuery("#updraft-navtab-settings-content .enableexpertmode").off("click"),!1}),jQuery("#updraft-navtab-settings-content .backupdirrow").on("click","a.updraft_backup_dir_reset",function(){return jQuery("#updraft_dir").val("updraft"),!1}),jQuery("#updraft-navtab-settings-content .updraft_include_entity").click(function(){var t=jQuery(this).data("toggle_exclude_field");t&&o(t,!1)}),jQuery("#updraft-navtab-settings-content .updraft-service").change(function(){var t=jQuery(this).val();jQuery("#updraft-navtab-settings-content .updraftplusmethod").hide(),jQuery("#updraft-navtab-settings-content ."+t).show()}),jQuery("#updraft-navtab-settings-content a.updraft_show_decryption_widget").click(function(t){t.preventDefault(),jQuery("#updraftplus_db_decrypt").val(jQuery("#updraft_encryptionphrase").val()),jQuery("#updraft-manualdecrypt-modal").slideToggle()}),jQuery("#updraftplus-phpinfo").click(function(t){t.preventDefault(),updraft_iframe_modal("phpinfo",updraftlion.phpinfo)}),jQuery("#updraftplus-rawbackuphistory").click(function(t){t.preventDefault(),updraft_iframe_modal("rawbackuphistory",updraftlion.raw)}),jQuery("#updraft-navtab-status").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-status-content").show(),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-expert-content").show(),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=4}),jQuery("#updraft-navtab-settings, #updraft-navtab-settings2, #updraft_backupnow_gotosettings").click(function(t){t.preventDefault(),jQuery(this).parents(".updraftmessage").remove(),jQuery("#updraft-backupnow-modal").dialog("close"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-settings-content").show(),jQuery("#updraft-navtab-settings").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=3}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").show(),jQuery("#updraft-navtab-addons").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=5}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_openrestorepanel(1)}),updraft_send_command("ping",null,function(t,e){"success"==e&&"pong"!=t&&t.indexOf("pong")>=0&&(jQuery("#updraft-navtab-backups-content .ud-whitespace-warning").show(),console.log("UpdraftPlus: Extra output warning: response (which should be just (string)'pong') follows."),console.log(t))},{json_parse:!1,type:"GET"});try{"undefined"!=typeof updraft_plupload_config&&u()}catch(y){console.log(y)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),d(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),d(1)}),jQuery("#updraftplus_callwpaction_go").click(function(t){t.preventDefault(),params={wpaction:jQuery("#updraftplus_callwpaction").val()},updraft_send_command("call_wordpress_action",params,function(t){t.e?alert(t.e):t.s||(t.r?jQuery("#updraftplus_callwpaction_results").html(t.r):(console.log(t),alert(updraftlion.jsonnotunderstood)))})}),jQuery("#updraft_activejobs_table").on("click",".updraft_jobinfo_delete",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_activejobs_delete(e):console.log("UpdraftPlus: A stop job link was clicked, but the Job ID could not be found")}),jQuery("#updraft_activejobs_table, #updraft-navtab-backups-content .updraft_existing_backups, #updraft-backupnow-inpage-modal").on("click",".updraft-log-link",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_popuplog(e):console.log("UpdraftPlus: A log link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.choose-components-button",function(t){var e=jQuery(this).data("entities"),a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("showdata");s(e,a,r)}),"initiate_restore"==i("udaction")){var h=i("entities"),m=i("backup_timestamp"),v=i("showdata");s(h,m,v)}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click",".updraft-delete-link",function(t){t.preventDefault();var e=jQuery(this).data("hasremote"),a=jQuery(this).data("nonce").toString(),r=jQuery(this).data("key").toString();a?updraft_delete(r,a,e):console.log("UpdraftPlus: A delete link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.updraft_download_button",function(t){t.preventDefault();var e="uddlstatus_",a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("what"),n=".ud_downloadstatus",o=jQuery(this).data("set_contents"),u=jQuery(this).data("prettydate"),d=!0;updraft_downloader(e,a,r,n,o,u,d)}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("dblclick",".updraft_existingbackup_date",function(t){t.preventDefault();var e=jQuery(this).data("rawbackup");null!=e&&""!=e&&updraft_html_modal(e,updraftlion.raw,780,500)})}),jQuery(document).ready(function(t){var e="#updraft-navtab-settings-content ";t(e+"#remote-storage-holder").on("click",".updraftvault_backtostart",function(a){a.preventDefault(),t(e+"#updraftvault_settings_showoptions").slideUp(),t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").slideUp(),t(e+"#updraftvault_settings_default").slideDown()}),t(e+"#updraftvault_settings_connect input").keypress(function(a){if(13==a.which)return t(e+"#updraftvault_connect_go").click(),!1}),t(e+"#remote-storage-holder").on("click","#updraftvault_recountquota",function(a){a.preventDefault(),t(e+"#updraftvault_recountquota").html(updraftlion.counting);try{updraft_send_command("vault_recountquota",{instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html),a.hasOwnProperty("connected")&&(a.connected?(t(e+"#updraftvault_settings_default").hide(),t(e+"#updraftvault_settings_connected").show()):(t(e+"#updraftvault_settings_connected").hide(),t(e+"#updraftvault_settings_default").show())))})}catch(r){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_disconnect",function(a){a.preventDefault(),t(e+"#updraftvault_disconnect").html(updraftlion.disconnecting);try{updraft_send_command("vault_disconnect",{immediate_echo:!0,instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html).slideUp(),t(e+"#updraftvault_settings_default").slideDown())})}catch(r){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_connect").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_showoptions",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_showoptions").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect_go",function(a){return t(e+"#updraftvault_connect_go").html(updraftlion.connecting),updraft_send_command("vault_connect",{email:t("#updraftvault_email").val(),pass:t("#updraftvault_pass").val(),instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a,r,n){t(e+"#updraftvault_connect_go").html(updraftlion.connect),a.hasOwnProperty("e")?(updraft_html_modal('<h4 style="margin-top:0px; padding-top:0px;">'+updraftlion.errornocolon+"</h4><p>"+a.e+"</p>",updraftlion.disconnect,400,250),a.hasOwnProperty("code")&&"no_quota"==a.code&&(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_default").slideDown())):a.hasOwnProperty("connected")&&a.connected&&a.hasOwnProperty("html")?(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").html(a.html).slideDown()):(console.log(a),alert(updraftlion.unexpectedresponse+" "+n))}),!1})}),jQuery(document).ready(function(t){function e(){var t=new plupload.Uploader(updraft_plupload_config2);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui2");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area2").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area2").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){return/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-db([0-9]+)?\.(gz\.crypt)$/i.test(e.name)?void jQuery("#filelist2").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>'):(alert(e.name+": "+updraftlion.notdba),void t.removeFile(e))}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100)))}),t.bind("Error",function(t,e){"-200"==e.code?err_makesure="\n"+updraftlion.makesure2:err_makesure=updraftlion.makesure,alert(updraftlion.uploaderr+" (code "+e.code+") : "+e.message+" "+err_makesure)}),t.bind("FileUploaded",function(t,e,a){"200"==a.status?"ERROR:"==a.response.substring(0,6)?alert(updraftlion.uploaderror+" "+a.response.substring(6)):"OK:"==a.response.substring(0,3)?(bkey=a.response.substring(3),jQuery("#"+e.id+" .fileprogress").hide(),jQuery("#"+e.id).append(updraftlion.uploaded+' <a href="?page=updraftplus&action=downloadfile&updraftplus_file='+bkey+"&decrypt_key="+encodeURIComponent(jQuery("#updraftplus_db_decrypt").val())+'">'+updraftlion.followlink+"</a> "+updraftlion.thiskey+" "+jQuery("#updraftplus_db_decrypt").val().replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;"))):alert(updraftlion.unknownresp+" "+a.response):alert(updraftlion.ukrespstatus+" "+a.code)})}try{"undefined"!=typeof updraft_plupload_config2&&e()}catch(a){console.log(a)}if(jQuery("#updraft-hidethis").remove(),Handlebars.registerHelper("ifeq",function(t,e,a){return"string"!=typeof t&&"undefined"!=typeof t&&null!==t&&(t=t.toString()),"string"!=typeof e&&"undefined"!=typeof e&&null!==e&&(e=e.toString()),t===e?a.fn(this):a.inverse(this)}),t("#remote-storage-holder").length){var r="";for(var n in updraftlion.remote_storage_templates)if("undefined"!=typeof updraftlion.remote_storage_options[n]){var o=Handlebars.compile(updraftlion.remote_storage_templates[n]);for(var u in updraftlion.remote_storage_options[n]){var d=updraftlion.remote_storage_options[n][u];r+=o(d)}}else r+=updraftlion.remote_storage_templates[n];t("#remote-storage-holder").append(r).ready(function(){t(".updraftplusmethod").not(".none").hide(),updraft_remote_storage_tabs_setup()})}}),jQuery(document).ready(function(t){function e(){var t=r("object"),e=new Date;t=JSON.stringify({version:"1.12.40",
3
- epoch_date:e.getTime(),local_date:e.toLocaleString(),network_site_url:updraftlion.network_site_url,data:t});var a=document.body.appendChild(document.createElement("a"));a.setAttribute("download",updraftlion.export_settings_file_name),a.setAttribute("style","display:none;"),a.setAttribute("href","data:text/json;charset=UTF-8,"+encodeURIComponent(t)),a.click()}function a(e){var a,r=decodeURIComponent(e);try{a=ud_parse_json(r)}catch(o){return t.unblockUI(),jQuery("#import_settings").val(""),console.log(r),console.log(o),void alert(updraftlion.import_invalid_json_file)}if(window.confirm(updraftlion.importing_data_from+" "+r.network_site_url+"\n"+updraftlion.exported_on+" "+r.local_date+"\n"+updraftlion.continue_import)){var u=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:u,updraftplus_version:updraftlion.updraftplus_version},function(e){var a=n(e);!a.hasOwnProperty("saved")||a.saved?(updraft_settings_form_changed=!1,location.replace(updraftlion.updraft_settings_url)):(t.unblockUI(),a.hasOwnProperty("error_message")&&a.error_message&&alert(a.error_message))},{action:"updraft_importsettings",nonce:updraftplus_settings_nonce,json_parse:!1})}else t.unblockUI()}function r(e){var a="",e="undefined"==typeof e?"string":e;return"object"==e?a=t("#updraft-navtab-settings-content form input[name!='action'][name!='option_page'][name!='_wpnonce'][name!='_wp_http_referer'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select, #updraft-navtab-settings-content form input[type=checkbox]").serializeJSON({checkboxUncheckedValue:"0",useIntKeysAsArrayIndex:!0}):(a=t("#updraft-navtab-settings-content form input[name!='action'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select").serialize(),t.each(t("#updraft-navtab-settings-content form input[type=checkbox]").filter(function(e){return 0==t(this).prop("checked")}),function(e,r){var n="0";a+="&"+t(r).attr("name")+"="+n})),a}function n(e){try{var a=ud_parse_json(e),r=(a.messages,a.backup_dir.writable),n=a.backup_dir.message,o=a.backup_dir.button_title}catch(u){return console.log(u),console.log(e),alert(updraftlion.jsonnotunderstood),t.unblockUI(),{}}if(a.hasOwnProperty("changed")){console.log("UpdraftPlus: savesettings: some values were changed after being filtered"),console.log(a.changed);for(prop in a.changed)if("object"==typeof a.changed[prop])for(innerprop in a.changed[prop])t("[name='"+innerprop+"']").is(":checkbox")||t("[name='"+prop+"["+innerprop+"]']").val(a.changed[prop][innerprop]);else t("[name='"+prop+"']").is(":checkbox")||t("[name='"+prop+"']").val(a.changed[prop])}return t("#updraft_writable_mess").html(n),0==r?(t("#updraft-backupnow-button").attr("disabled","disabled"),t("#updraft-backupnow-button").attr("title",o),t(".backupdirrow").css("display","table-row")):(t("#updraft-backupnow-button").removeAttr("disabled"),t("#updraft-backupnow-button").removeAttr("title")),a.hasOwnProperty("updraft_include_more_path")&&t("#backupnow_includefiles_moreoptions").html(a.updraft_include_more_path),a.hasOwnProperty("backup_now_message")&&t("#backupnow_remote_container").html(a.backup_now_message),t(".updraftmessage").remove(),t("#updraft_backup_started").before(a.messages),t("#next-backup-table-inner").html(a.scheduled),a}function o(){var t=!1;if(jQuery("#updraft-authenticate-modal-innards").html(""),jQuery("div[class*=updraft_authenticate_] a.updraft_authlink").each(function(){jQuery("#updraft-authenticate-modal-innards").append('<p><a href="'+jQuery(this).attr("href")+'">'+jQuery(this).html()+"</a></p>"),t=!0}),t){var e={};e[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-authenticate-modal").dialog({autoOpen:!0,modal:!0,resizable:!1,draggable:!1,buttons:e,width:"auto"}).dialog("open")}}var u=new Image;u.src=updraftlion.ud_url+"/images/udlogo-rotating.gif",t("#updraft-navtab-settings-content input.updraft_include_entity").change(function(e){var a=t(this).attr("id"),r=t(this).is(":checked"),n="#backupnow_files_"+a;t(n).prop("checked",r)}),t("#updraftplus-settings-save").click(function(e){e.preventDefault(),t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.saving+"</div>"});var a=r("string");updraft_send_command("savesettings",{settings:a,updraftplus_version:updraftlion.updraftplus_version},function(e){n(e),t("#updraft-wrap .fade").delay(6e3).fadeOut(2e3),t("html, body").animate({scrollTop:t("#updraft-wrap").offset().top},1e3,function(){o()}),t.unblockUI()},{action:"updraft_savesettings",nonce:updraftplus_settings_nonce,json_parse:!1})}),t("#updraftplus-settings-export").click(function(){updraft_settings_form_changed&&alert(updraftlion.unsaved_settings_export),e()}),t("#updraftplus-settings-import").click(function(){t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.importing+"</div>"});var e=document.getElementById("import_settings");if(0==e.files.length)return alert(updraftlion.import_select_file),void t.unblockUI();var r=e.files[0],n=new FileReader;n.onload=function(){a(this.result)},n.readAsText(r)})}),jQuery(document).ready(function(t){jQuery("#updraft-restore-modal").on("change","#updraft_restorer_charset",function(e){if(t("#updraft_restorer_charset").length&&t("#updraft_restorer_collate").length&&t("#collate_change_on_charset_selection_data").length){var a=t("#updraft_restorer_charset").val();t("#updraft_restorer_collate option").show(),t("#updraft_restorer_collate option[data-charset!="+a+"]").hide(),updraft_send_command("collate_change_on_charset_selection",{collate_change_on_charset_selection_data:t("#collate_change_on_charset_selection_data").val(),updraft_restorer_charset:a,updraft_restorer_collate:t("#updraft_restorer_collate").val()},function(e){e.hasOwnProperty("is_action_required")&&1==e.is_action_required&&e.hasOwnProperty("similar_type_collate")&&t("#updraft_restorer_collate").val(e.similar_type_collate)})}})});
1
+ function updraft_send_command(t,e,a,r){default_options={json_parse:!0,alert_on_error:!0,action:"updraft_ajax",nonce:updraft_credentialtest_nonce,nonce_key:"nonce",timeout:null,async:!0,type:"POST"},"undefined"==typeof r&&(r={});for(var n in default_options)r.hasOwnProperty(n)||(r[n]=default_options[n]);var o={action:r.action,subaction:t};if(o[r.nonce_key]=r.nonce,"object"==typeof e)for(var u in e)o[u]=e[u];else o.action_data=e;var d={type:r.type,url:ajaxurl,data:o,success:function(t,e){if(r.json_parse){try{var n=ud_parse_json(t)}catch(o){return console.log(o),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t))}"function"==typeof a&&a(n,e,t)}else"function"==typeof a&&a(t,e)},error:function(t,e,a){"function"==typeof r.error_callback?r.error_callback(t,e,a):(console.log("updraft_send_command: error: "+e+" ("+a+")"),console.log(t))},dataType:"text",async:r.async};null!=r.timeout&&(d.timeout=r.timeout),jQuery.ajax(d)}function updraft_delete(t,e,a){jQuery("#updraft_delete_timestamp").val(t),jQuery("#updraft_delete_nonce").val(e),a?jQuery("#updraft-delete-remote-section, #updraft_delete_remote").removeAttr("disabled").show():jQuery("#updraft-delete-remote-section, #updraft_delete_remote").hide().attr("disabled","disabled"),t.indexOf(",")>-1?(jQuery("#updraft_delete_question_singular").hide(),jQuery("#updraft_delete_question_plural").show()):(jQuery("#updraft_delete_question_plural").hide(),jQuery("#updraft_delete_question_singular").show()),jQuery("#updraft-delete-modal").dialog("open")}function updraft_remote_storage_tab_activation(t){jQuery(".updraftplusmethod").hide(),jQuery(".remote-tab").data("active",!1),jQuery(".remote-tab").removeClass("nav-tab-active"),jQuery(".updraftplusmethod."+t).show(),jQuery(".remote-tab-"+t).data("active",!0),jQuery(".remote-tab-"+t).addClass("nav-tab-active")}function updraft_check_overduecrons(){updraft_send_command("check_overdue_crons",null,function(t){t&&t.hasOwnProperty("m")&&jQuery("#updraft-insert-admin-warning").html(t.m)},{alert_on_error:!1})}function updraft_remote_storage_tabs_setup(){var t=0,e=jQuery(".updraft_servicecheckbox:checked");jQuery(e).each(function(a,r){var n=jQuery(r).val();"updraft_servicecheckbox_none"!=jQuery(r).attr("id")&&t++,jQuery(".remote-tab-"+n).show(),a==jQuery(e).length-1&&updraft_remote_storage_tab_activation(n)}),t>0&&jQuery(".updraftplusmethod.none").hide(),jQuery(document).keyup(function(t){if((32===t.keyCode||13===t.keyCode)&&jQuery(document.activeElement).is("input.labelauty + label")){var e=jQuery(document.activeElement).attr("for");e&&jQuery("#"+e).change()}}),jQuery(".updraft_servicecheckbox").change(function(){var e=jQuery(this).attr("id");if("updraft_servicecheckbox_"==e.substring(0,24)){var a=e.substring(24);null!=a&&""!=a&&(jQuery(this).is(":checked")?(t++,jQuery(".remote-tab-"+a).fadeIn(),updraft_remote_storage_tab_activation(a)):(t--,jQuery(".remote-tab-"+a).hide(),1==jQuery(".remote-tab-"+a).data("active")&&updraft_remote_storage_tab_activation(jQuery(".remote-tab:visible").last().attr("name"))))}t<=0?jQuery(".updraftplusmethod.none").fadeIn():jQuery(".updraftplusmethod.none").hide()}),jQuery(".updraft_servicecheckbox:not(.multi)").change(function(){var t=jQuery(this).attr("value");jQuery(this).is(":not(:checked)")?(jQuery(".updraftplusmethod."+t).hide(),jQuery(".updraftplusmethod.none").fadeIn()):jQuery(".updraft_servicecheckbox").not(this).prop("checked",!1)});var a=jQuery(".updraft_servicecheckbox");"function"==typeof a.labelauty&&a.labelauty()}function updraft_remote_storage_test(t,e,a){var r,n;a?(r=jQuery("#updraft-"+t+"-test-"+a),n=".updraftplusmethod."+t+"-"+a):(r=jQuery("#updraft-"+t+"-test"),n=".updraftplusmethod."+t);var o=r.data("method_label");r.html(updraftlion.testing_settings.replace("%s",o));var u={method:t};jQuery("#updraft-navtab-settings-content "+n+" input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test"),r=jQuery(e).attr("type");if(a){r||(console.log("UpdraftPlus: settings test input item with no type found"),console.log(e),r="text");var n=null;"checkbox"==r?n=jQuery(e).is(":checked")?1:0:"text"==r||"password"==r?n=jQuery(e).val():(console.log("UpdraftPlus: settings test input item with unrecognised type ("+r+") found"),console.log(e)),u[a]=n}}),jQuery("#updraft-navtab-settings-content "+n+" textarea[data-updraft_settings_test], #updraft-navtab-settings-content "+n+" select[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test");u[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",u,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,u)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))})}function backupnow_whichfiles_checked(t){return jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(e){if(jQuery(this).is(":checked")){var a=jQuery(this).attr("name");if("updraft_include_"==a.substring(0,16)){var r=a.substring(16);""!=t&&(t+=","),t+=r}}}),t}function backupnow_whichtables_checked(t){var e=!1;return jQuery('#backupnow_database_moreoptions input[type="checkbox"]').each(function(t){if(!jQuery(this).is(":checked"))return void(e=!0)}),t=jQuery("input[name^='updraft_include_tables_']").serializeArray(),!e||t}function updraft_deleteallselected(){var t=0,e="",a="",r="";jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").each(function(n){t++;var o=jQuery(this).data("nonce");a&&(a+=","),a+=o;var u=jQuery(this).data("key");e&&(e+=","),e+=u;var d=jQuery(this).find(".updraftplus-remove").data("hasremote");r&&(r+=","),r+=d}),updraft_delete(e,a,r)}function updraft_openrestorepanel(t){updraft_console_focussed_tab=2,updraft_historytimertoggle(t),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-backups-content").show(),jQuery("#updraft-navtab-backups").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){jQuery("#updraft-migrate-modal").dialog("close"),jQuery('#updraft-navtab-backups-content .updraft_existing_backups button[data-backup_timestamp="'+t+'"]').click()}function updraft_restore_setoptions(t){var e=0;jQuery('input[name="updraft_restore[]"]').each(function(a,r){var n=jQuery(r).val(),o=n+"=([0-9,]+)",u=new RegExp(o),d=t.match(u);d?(jQuery(r).removeAttr("disabled").data("howmany",d[1]).parent().show(),e++,"db"==n&&(e+=4.5),jQuery(r).is(":checked")&&jQuery("#updraft_restorer_"+n+"options").show()):jQuery(r).attr("disabled","disabled").parent().hide()});var a=t.match(/dbcrypted=1/);a?jQuery(".updraft_restore_crypteddb").show():jQuery(".updraft_restore_crypteddb").hide();var r=t.match(/meta_foreign=([12])/);r?jQuery("#updraft_restore_meta_foreign").val(r[1]):jQuery("#updraft_restore_meta_foreign").val("0");var n=336+20*e;jQuery("#updraft-restore-modal").dialog("option","height",n)}function updraft_backup_dialog_open(){jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed?window.confirm(updraftlion.unsavedsettingsbackup)&&(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open")):(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open"))}function updraft_migrate_dialog_open(){jQuery("#updraft_migrate_modal_alt").hide(),updraft_migrate_modal_default_buttons={},updraft_migrate_modal_default_buttons[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-migrate-modal").dialog("option","buttons",updraft_migrate_modal_default_buttons),jQuery("#updraft-migrate-modal").dialog("open"),jQuery("#updraft_migrate_modal_main").show()}function updraft_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&updraft_activejobs_update(!0))}function updraft_backupnow_inpage_go(t,e,a,r,n,o,u){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,u="undefined"==typeof u?updraftlion.automaticbackupbeforeupdate:u,updraft_console_focussed_tab=1,updraft_inpage_success_callback=t;var d={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",d),jQuery("#updraft_inpage_prebackup").hide(),s&&jQuery("#updraft-backupnow-inpage-modal").dialog("open"),jQuery("#updraft_inpage_backup").show(),updraft_activejobslist_backupnownonce_only=1,updraft_inpage_hasbegun=0,updraft_backupnow_go(r,n,o,e,a,u,"")}function updraft_activejobs_update(t){var e=(new Date).getTime();if(!(0==t&&e<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=e+5500;var a="";jQuery(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,e){var r=jQuery(e).data("downloaderfor");"object"==typeof r&&(""!=a&&(a+=":"),a=a+r.base+","+r.nonce+","+r.what+","+r.index)});var r={downloaders:a};try{jQuery("#updraft-poplog").dialog("isOpen")&&(r.log_fetch=1,r.log_nonce=updraft_poplog_log_nonce,r.log_pointer=updraft_poplog_log_pointer)}catch(n){console.log(n)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(r.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",r,function(t){try{resp=ud_parse_json(t),resp.hasOwnProperty("l")&&(resp.l?(jQuery("#updraft_lastlogmessagerow").show(),jQuery("#updraft_lastlogcontainer").html(resp.l)):(jQuery("#updraft_lastlogmessagerow").hide(),jQuery("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var n=-1;if(jQuery("#updraft_activejobs").html(resp.j),jQuery("#updraft_activejobs .updraft_jobtimings").each(function(t,a){var r=jQuery(a);if(r.data("lastactivity")&&r.data("jobid")){var o=r.data("jobid"),u=r.data("lastactivity");(n==-1||u<n)&&(n=u);var d=r.data("nextresumptionafter"),s=r.data("nextresumption");e=(new Date).getTime(),u>50&&s>0&&d<-30&&e>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||s!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=s,updraft_last_forced_jobid=o,updraft_last_forced_when=e,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+s),updraft_send_command("forcescheduledresumption",{resumption:s,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),e=(new Date).getTime(),updraft_activejobs_nextupdate=e+18e4,1==updraft_page_is_visible&&(1==updraft_console_focussed_tab||2==updraft_console_focussed_tab&&""!=a)&&(updraft_activejobs_nextupdate=n>-1?n<5?e+1750:e+5e3:lastlog_lastdata==t?e+7500:e+1750),lastlog_lastdata=t,null!=resp.j&&""!=resp.j?(jQuery("#updraft_activejobsrow").show(),r.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly).length?(updraft_inpage_hasbegun=1,console.log("UpdraftPlus: the start of the requested backup job has been detected")):!updraft_inpage_hasbegun&&updraft_activejobslist_backupnownonce_only&&jQuery(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=jQuery(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,r.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):jQuery("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){jQuery("#updraft_backup_started").slideUp()},3500)):jQuery("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),jQuery("#updraft_activejobsrow").hide()),lastlog_jobs=resp.j,null!=resp.ds&&""!=resp.ds&&jQuery(resp.ds).each(function(e,a){""!=a.base&&updraft_downloader_status_update(a.base,a.timestamp,a.what,a.findex,a,t)}),null!=resp.u&&""!=resp.u&&jQuery("#updraft-poplog").dialog("isOpen")){var o=resp.u;if(o.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=o.pointer,null!=o.log&&""!=o.log)){var u=jQuery("#updraft-poplog").scrollTop();jQuery("#updraft-poplog-content").append(o.log),updraft_poplog_lastscroll!=u&&updraft_poplog_lastscroll!=-1||(jQuery("#updraft-poplog").scrollTop(jQuery("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=jQuery("#updraft-poplog").scrollTop())}}}catch(d){console.log(updraftlion.unexpectedresponse+" "+t),console.log(d)}},{json_parse:!1,type:"GET"})}}function updraft_popuplog(t){var e=updraftlion.loading_log_file;t&&(e+=" (log."+t+".txt)"),jQuery("#updraft-poplog").dialog("option","title",e),jQuery("#updraft-poplog-content").html("<em>"+e+" ...</em> "),jQuery("#updraft-poplog").dialog("open"),updraft_send_command("get_log",t,function(t){updraft_poplog_log_pointer=t.pointer,updraft_poplog_log_nonce=t.nonce;var e="?page=updraftplus&action=downloadlog&force_download=1&updraftplus_backup_nonce="+t.nonce;jQuery("#updraft-poplog-content").html(t.log);var a={};a[updraftlion.downloadlogfile]=function(){window.location.href=e},a[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-poplog").dialog("option","buttons",a),jQuery("#updraft-poplog").dialog("option","title","log."+t.nonce+".txt"),updraft_poplog_lastscroll=-1},{type:"GET",timeout:6e4,error_callback:function(t,e,a){var r=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(r),console.log(t)}})}function updraft_showlastbackup(){updraft_send_command("get_fragment","last_backup_html",function(t){response=t.output,lastbackup_laststatus==response?setTimeout(function(){updraft_showlastbackup()},7e3):jQuery("#updraft_last_backup").html(response),lastbackup_laststatus=response},{type:"GET"})}function updraft_historytimertoggle(t){updraft_historytimer&&1!=t?(clearTimeout(updraft_historytimer),updraft_historytimer=0):(updraft_updatehistory(0,0),updraft_historytimer=setInterval(function(){updraft_updatehistory(0,0)},3e4),calculated_diskspace||(updraftplus_diskspace(),calculated_diskspace=1))}function updraft_updatehistory(t,e){var a=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=a+30;else if(a<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+a.toString()+" < "+updraft_historytimer_notbefore.toString());1==t&&(1==e?(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanningremote+"</em></p>")):(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanning+"</em></p>")));var r=e?"remotescan":!!t&&"rescan";updraft_send_command("rescan",r,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_modal")&&t.migrate_modal&&jQuery("#updraft_migrate_modal_main").replaceWith(t.migrate_modal),null!=t.n&&jQuery("#updraft-navtab-backups").html(t.n),null!=t.t){if(null!=t.cksum){if(t.cksum==updraft_history_lastchecksum)return;updraft_history_lastchecksum=t.cksum}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html(t.t),t.data&&console.log(t.data)}})}function updraft_intervals_monthly_or_not(t,e){var a="#updraft-navtab-settings-content #"+t,r=jQuery(a+" option").length,n="monthly"==e,o=!1;if(r>10&&(o=!0),n||o){if(n&&o)return void("monthly"==e&&(jQuery(".updraft_monthly_extra_words_"+t).remove(),jQuery(a).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>")));if(jQuery(".updraft_monthly_extra_words_"+t).remove(),n){updraft_interval_week_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.mdayselector).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>");var u=updraft_interval_month_val===!1?1:updraft_interval_month_val;u-=1,jQuery(a+" option:eq("+u+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var d=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+d+")").prop("selected",!0)}}}function updraft_check_same_times(){var t=0,e=jQuery("#updraft-navtab-settings-content .updraft_interval").val();"manual"==e?jQuery("#updraft-navtab-settings-content .updraft_files_timings").hide():jQuery("#updraft-navtab-settings-content .updraft_files_timings").show(),"weekly"==e||"fortnightly"==e||"monthly"==e?(updraft_intervals_monthly_or_not("updraft_startday_files",e),jQuery("#updraft-navtab-settings-content #updraft_startday_files").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_files").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_files").hide());var a=jQuery("#updraft-navtab-settings-content .updraft_interval_database").val();"manual"==a&&(t=1,jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide()),"weekly"==a||"fortnightly"==a||"monthly"==a?(updraft_intervals_monthly_or_not("updraft_startday_db",a),jQuery("#updraft-navtab-settings-content #updraft_startday_db").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_db").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_db").hide()),a==e?(jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide(),0==t?jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").show():jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide()):(jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide(),0==t&&jQuery("#updraft-navtab-settings-content .updraft_db_timings").show())}function updraft_activejobs_delete(t){updraft_send_command("activejobs_delete",t,function(e){"Y"==e.ok?jQuery("#updraft-jobid-"+t).html(e.m).fadeOut("slow").remove():"N"==e.ok?alert(e.m):(alert(updraftlion.unexpectedresponse),console.log(e))})}function updraftplus_diskspace_entity(t){jQuery("#updraft_diskspaceused_"+t).html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:t},function(e){jQuery("#updraft_diskspaceused_"+t).html(e.output)},{type:"GET"})}function updraft_iframe_modal(t,e){var a=780,r=500;jQuery("#updraft-iframe-modal-innards").html('<iframe width="100%" height="430px" src="'+ajaxurl+"?action=updraft_ajax&subaction="+t+"&nonce="+updraft_credentialtest_nonce+'"></iframe>'),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("open")}function updraft_html_modal(t,e,a,r){jQuery("#updraft-iframe-modal-innards").html(t);var n={};a<450&&(n[updraftlion.close]=function(){jQuery(this).dialog("close")}),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("option","buttons",n).dialog("open")}function updraftplus_diskspace(){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html(t.output)},{type:"GET"})}function updraftplus_deletefromserver(t,e,a){a||(a=0);var r={stage:"delete",timestamp:t,type:e,findex:a};updraft_send_command("updraft_download_backup",r,null,{action:"updraft_download_backup",nonce:updraft_download_nonce,nonce_key:"_wpnonce"})}function updraftplus_downloadstage2(t,e,a){location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"&timestamp="+t+"&type="+e+"&stage=2&findex="+a+"&action=updraft_download_backup"}function updraftplus_show_contents(t,e,a){var r='<div id="updraft_zip_files_container" class="hidden-in-updraftcentral" style="clear:left;"><div id="updraft_zip_info_container"><p><span id="updraft_zip_path_text">'+updraftlion.zip_file_contents_info+'</span> - <span id="updraft_zip_size_text"></span></p>'+updraftlion.browse_download_link+'</div><div id="updraft_zip_files_jstree_container"><input type="search" id="zip_files_jstree_search" name="zip_files_jstree_search" placeholder="'+updraftlion.search+'"><div id="updraft_zip_files_jstree"></div></div></div>';updraft_html_modal(r,updraftlion.zip_file_contents,780,500),zip_files_jstree("zipbrowser",t,e,a)}function zip_files_jstree(t,e,a,r){jQuery("#updraft_zip_files_jstree").jstree({core:{multiple:!1,data:function(n,o){updraft_send_command("get_jstree_directory_nodes",{entity:t,node:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):o.call(this,t.nodes)})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["search","sort"]}),jQuery("#updraft_zip_files_jstree").on("ready.jstree",function(t,e){jQuery("#updraft-iframe-modal").dialog("option","title",updraftlion.zip_file_contents+": "+e.instance.get_node("#").children[0])});var n=!1;jQuery("#zip_files_jstree_search").keyup(function(){n&&clearTimeout(n),n=setTimeout(function(){var t=jQuery("#zip_files_jstree_search").val();jQuery("#updraft_zip_files_jstree").jstree(!0).search(t)},250)}),jQuery("#updraft_zip_files_jstree").on("changed.jstree",function(t,e){jQuery("#updraft_zip_path_text").text(e.node.li_attr.path),e.node.li_attr.size?(jQuery("#updraft_zip_size_text").text(e.node.li_attr.size),jQuery("#updraft_zip_download_item").show()):(jQuery("#updraft_zip_size_text").text(""),jQuery("#updraft_zip_download_item").hide())}),jQuery("#updraft_zip_download_item").click(function(t){t.preventDefault();var n=jQuery("#updraft_zip_path_text").text();updraft_send_command("get_zipfile_download",{path:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):t.hasOwnProperty("path")?location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"&timestamp="+e+"&type="+a+"&stage=2&findex="+r+"&filepath="+t.path+"&action=updraft_download_backup":alert(updraftlion.download_timeout)})})}function updraft_downloader(t,e,a,r,n,o,u){"string"!=typeof n&&(n=n.toString());for(var n=n.split(","),d=0;d<n.length;d++){var s=t+e+"_"+a+"_"+n[d],i="."+s,p=parseInt(n[d]);p++;var l=0==n[d]?"":" ("+p+")";if(!jQuery(i).length){var c=o?o:e;jQuery(r).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+s+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+" "+a+l+" ("+c+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+s+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(i).data("downloaderfor",{base:t,nonce:e,what:a,index:n[d]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)}jQuery(i).data("lasttimebegan",(new Date).getTime()),u=!!u;var f=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+n[d]).data("wp_nonce").toString(),_={type:a,timestamp:e,findex:n[d]},g={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:f,timeout:1e4,async:u};updraft_send_command("updraft_download_backup",_,function(t){},g)}return!1}function ud_parse_json(t){t.charAt(0),t.charAt(t.length-1);try{var e=JSON.parse(t);return e}catch(a){console.log("UpdraftPlus: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(t)}var r=t.indexOf("{"),n=t.lastIndexOf("}");if(r>-1&&n>-1){var o=t.slice(r,n+1);try{var u=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),u}catch(a){throw console.log("UpdraftPlus: Exception when trying to parse JSON (2)"),a}}throw"UpdraftPlus: could not parse the JSON"}function updraft_restorer_checkstage2(t){var e=jQuery("#ud_downloadstatus2 .file").length;return e>0?void(t&&alert(updraftlion.stilldownloading)):(jQuery("#updraft-restore-modal-stage2a").html(updraftlion.processing),void updraft_send_command("restore_alldownloaded",{timestamp:jQuery("#updraft_restore_timestamp").val(),restoreopts:jQuery("#updraft_restore_form").serialize()},function(t){var e=null;jQuery("#updraft_restorer_restore_options").val("");try{var a=ud_parse_json(t);if(null==a)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);var r=a.m;if(""!=a.w&&(r=r+"<p><strong>"+updraftlion.warnings+"</strong><br>"+a.w+"</p>"),""!=a.e?r=r+"<p><strong>"+updraftlion.errors+"</strong><br>"+a.e+"</p>":updraft_restore_stage=3,a.hasOwnProperty("i")){try{if(e=ud_parse_json(a.i),e.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var n=e.addui;r+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+n+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete e.addui,a.i=JSON.stringify(e))}}catch(o){console.log(o),console.log(a)}jQuery("#updraft_restorer_backup_info").val(a.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(r),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(o){console.log(t),console.log(o),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+t).html()}},{json_parse:!1}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e,a,r,n,o){var u=t+e+"_"+a+"_"+r,d="."+u,s=0;if(null!=n.e)jQuery(d+" .raw").html("<strong>"+updraftlion.error+"</strong> "+n.e),console.log(n);else if(null!=n.p){if(jQuery(d+"_st .dlfileprogress").width(n.p+"%"),null!=n.a&&n.a>0){var i=(new Date).getTime(),p=jQuery(d).data("lasttimebegan"),l=i-p;if(n.a>90&&l>6e4){console.log(e+" "+a+" "+r+": restarting download: file_age="+n.a+", sincelastrestart_ms="+l),jQuery(d).data("lasttimebegan",(new Date).getTime());var c=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+r),f={type:a,timestamp:e,findex:r},_={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:c.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",f,function(t){},_),jQuery(d).data("lasttimebegan",(new Date).getTime())}}if(null!=n.m)if(n.p>=100&&"udrestoredlstatus_"==t)jQuery(d+" .raw").html(n.m),jQuery(d).fadeOut("slow",function(){jQuery(this).remove(),updraft_restorer_checkstage2(0)});else if(n.p<100||"uddlstatus_"!=t)jQuery(d+" .raw").html(n.m);else{var g=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button type="button" onclick="updraftplus_downloadstage2(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button id="uddownloaddelete_'+e+"_"+a+'" type="button" onclick="updraftplus_deletefromserver(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.deletefromserver+"</button>";n.hasOwnProperty("can_show_contents")&&n.can_show_contents&&(g+=' <button type="button" onclick="updraftplus_show_contents(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(d+" .raw").html(g)}}else null!=n.m?jQuery(d+" .raw").html(n.m):(jQuery(d+" .raw").html(updraftlion.jsonnotunderstood+" ("+o+")"),s=1);return s}function updraft_backupnow_go(t,e,a,r,n,o,u){jQuery("#updraft_backup_started").html("<em>"+updraftlion.requeststart+"</em>").slideDown(""),setTimeout(function(){jQuery("#updraft_backup_started").fadeOut("slow")},75e3);var d={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};""!=r&&(d.onlythisfileentity=r),""!=u&&(d.onlythesetableentities=u),updraft_send_command("backupnow",d,function(t){jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),setTimeout(function(){updraft_activejobs_update(!0)},500)})}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var updraft_restore_stage=1,lastlog_lastmessage="",lastlog_lastdata="",lastlog_jobs="",updraft_activejobs_nextupdate=(new Date).getTime()+1e3,updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_settings_form_changed=!1;window.onbeforeunload=function(t){if(updraft_settings_form_changed)return updraftlion.unsavedsettings},"undefined"!=typeof document.hidden&&document.addEventListener("visibilitychange",function(){updraft_check_page_visibility(0)},!1),updraft_check_page_visibility(1);var updraft_poplog_log_nonce,updraft_poplog_log_pointer=0,updraft_poplog_lastscroll=-1,updraft_last_forced_jobid=-1,updraft_last_forced_resumption=-1,updraft_last_forced_when=-1,updraft_backupnow_nonce="",updraft_activejobslist_backupnownonce_only=0,updraft_inpage_hasbegun=0,updraft_historytimer=0,calculated_diskspace=0,updraft_historytimer_notbefore=0,updraft_history_lastchecksum=!1,updraft_interval_week_val=!1,updraft_interval_month_val=!1;"undefined"!=typeof updraft_siteurl&&setInterval(function(){jQuery.get(updraft_siteurl+"/wp-cron.php")},21e4);var lastlog_lastmessage="";jQuery(document).ajaxError(function(t,e,a,r){if(null!=r&&""!=r&&null!=e.responseText&&""!=e.responseText&&(console.log("Error caught by UpdraftPlus ajaxError handler (follows) for "+a.url),console.log(r),0==a.url.search(ajaxurl)))if(a.url.search("subaction=downloadstatus")>=0){var n=a.url.match(/timestamp=\d+/),o=a.url.match(/type=[a-z]+/),u=a.url.match(/findex=\d+/),d=a.url.match(/base=[a-z_]+/);if(u=u instanceof Array?parseInt(u[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",d=d instanceof Array?d[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=d&&""!=o&&n>0){var s=d+n+"_"+o+"_"+u;jQuery("."+s+" .raw").html("<strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode)}}else a.url.search("subaction=restore_alldownloaded")>=0&&jQuery("#updraft-restore-modal-stage2a").append("<br><strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode+": "+r)}),jQuery(document).ready(function(t){function e(e){t('.expertmode .advanced_settings_container .advanced_tools:not(".'+e+'")').hide(),t(".expertmode .advanced_settings_container .advanced_tools."+e).fadeIn("slow"),t(".expertmode .advanced_settings_container .advanced_tools_button:not(#"+e+")").removeClass("active"),t(".expertmode .advanced_settings_container .advanced_tools_button#"+e).addClass("active")}function a(t){var e=Handlebars.compile(updraftlion.remote_storage_templates[t]),a=updraftlion.remote_storage_options[t]["default"];a.instance_id="s-"+r(32),a.instance_enabled=1;var n=e(a);jQuery(n).hide().insertAfter("."+t+"_add_instance_container:first").show("slow")}function r(t){for(var e="",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=0;r<t;r++)e+=a.charAt(Math.floor(Math.random()*a.length));return e}function n(t){var e=!!jQuery("#updraftcentral_mothership_other").is(":checked");e?(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!1),t?jQuery("#updraftcentral_keycreate_mothership_firewalled_container").show():(jQuery(".updraftcentral_wizard_self_hosted_stage2").show(),
2
+ jQuery("#updraftcentral_keycreate_mothership_firewalled_container").slideDown(),jQuery("#updraftcentral_keycreate_mothership").focus())):(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!0),t||(jQuery(".updraftcentral_wizard_self_hosted_stage2").hide(),o()))}function o(){jQuery("#updraftcentral_wizard_stage1_error").text("");var t="";if(jQuery("#updraftcentral_mothership_updraftpluscom").is(":checked"))jQuery(".updraftcentral_keycreate_description").hide(),t="updraftplus.com";else if(jQuery("#updraftcentral_mothership_other").is(":checked")){jQuery(".updraftcentral_keycreate_description").show();var e=jQuery("#updraftcentral_keycreate_mothership").val();if(""==e)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_empty_url);try{var a=new URL(e);t=a.hostname}catch(r){if("undefined"==typeof URL&&(t=jQuery("<a>").prop("href",e).prop("hostname")),!t||"undefined"!=typeof URL)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_invalid_url)}}jQuery("#updraftcentral_keycreate_description").val(t),jQuery(".updraftcentral_wizard_stage1").hide(),jQuery(".updraftcentral_wizard_stage2").show()}function u(e,a,r,n){jQuery("#updraft-delete-waitwarning").slideDown();var o=e,d=a,s=r,i=n,p=jQuery("#updraft_delete_timestamp").val().split(","),l=jQuery("#updraft_delete_form").serializeArray(),c={};t.each(l,function(){void 0!==c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c.remote_delete_limit=updraftlion.remote_delete_limit,delete c.action,delete c.subaction,delete c.nonce,updraft_send_command("deleteset",c,function(t){if(t.hasOwnProperty("result")&&null!=t.result)if("error"==t.result)alert(updraftlion.error+" "+t.message);else if("continue"==t.result)o=o+t.backup_local+t.backup_remote,d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,jQuery("#updraft-deleted-files-total").text(o+" "+updraftlion.remote_files_deleted),u(o,d,s,i);else if("success"==t.result){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp(),t.hasOwnProperty("count_backups")&&jQuery("#updraft-navtab-backups").html(updraftlion.existing_backups+" ("+t.count_backups+")");for(var e=0;e<p.length;e++){var a=p[e];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+a).slideUp().remove()}jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length<1&&jQuery("#ud_massactions").hide(),updraft_history_lastchecksum=!1,jQuery("#updraft-delete-modal").dialog("close"),d+=t.backup_local,s+=t.backup_remote,i+=t.backup_sets,alert(t.set_message+" "+i+"\n"+t.local_message+" "+d+"\n"+t.remote_message+" "+s)}})}function d(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideUp()}function s(){var t=new plupload.Uploader(updraft_plupload_config);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){if(!/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+?)?(\.(zip|gz|gz\.crypt))?$/i.test(e.name)&&!/^log\.([0-9a-f]{12})\.txt$/.test(e.name)){for(var a=!1,r=0;r<updraft_accept_archivename.length;r++)if(updraft_accept_archivename[r].test(e.name))var a=!0;if(!a)return/\.(zip|tar|tar\.gz|tar\.bz2)$/i.test(e.name)||/\.sql(\.gz)?$/i.test(e.name)?(jQuery("#updraft-message-modal-innards").html("<p><strong>"+e.name+"</strong></p> "+updraftlion.notarchive2),jQuery("#updraft-message-modal").dialog("open")):alert(e.name+": "+updraftlion.notarchive),void t.removeFile(e)}jQuery("#filelist").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>')}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100))),e.size==e.loaded&&(jQuery("#"+e.id).html('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(parseInt(e.size*e.percent/100))+"</span>/"+plupload.formatSize(e.size)+") - "+updraftlion.complete+"</div>"),jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"))}),t.bind("Error",function(t,e){console.log(e);var a;a="-200"==e.code?"\n"+updraftlion.makesure2:updraftlion.makesure;var r=updraftlion.uploaderr+" (code "+e.code+") : "+e.message;e.hasOwnProperty("status")&&e.status&&(r+=" ("+updraftlion.http_code+" "+e.status+")"),e.hasOwnProperty("response")&&(console.log("UpdraftPlus: plupload error: "+e.response),e.response.length<100&&(r+=" "+updraftlion.error+" "+e.response+"\n")),r+=" "+a,alert(r)}),t.bind("FileUploaded",function(t,e,a){if("200"==a.status)try{resp=ud_parse_json(a.response),resp.e?alert(updraftlion.uploaderror+" "+resp.e):resp.dm?(alert(resp.dm),updraft_updatehistory(1,0)):resp.m?updraft_updatehistory(1,0):alert("Unknown server response: "+a.response)}catch(r){console.log(a),alert(updraftlion.jsonnotunderstood)}else alert("Unknown server response status: "+a.code),console.log(a)})}function i(t){params={uri:jQuery("#updraftplus_httpget_uri").val()},params.curl=t,updraft_send_command("httpget",params,function(t){t.e&&alert(t.e),t.r?jQuery("#updraftplus_httpget_results").html("<pre>"+t.r+"</pre>"):console.log(t)},{type:"GET"})}function p(t,e,a){updraft_restore_setoptions(t),jQuery("#updraft_restore_timestamp").val(e),jQuery(".updraft_restore_date").html(a),updraft_restore_stage=1,jQuery("#updraft-migrate-modal").dialog("close"),jQuery("#updraft-restore-modal").dialog("open"),jQuery("#updraft-restore-modal-stage1").show(),jQuery("#updraft-restore-modal-stage2").hide(),jQuery("#updraft-restore-modal-stage2a").html(""),updraft_activejobs_update(!0)}function l(t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e="[\\?&]"+t+"=([^&#]*)",a=new RegExp(e),r=a.exec(window.location.href);return null==r?"":decodeURIComponent(r[1].replace(/\+/g," "))}if(t(".expertmode .advanced_settings_container .advanced_tools_button").click(function(){e(t(this).attr("id"))}),jQuery.ui&&jQuery.ui.dialog&&jQuery.ui.dialog.prototype._allowInteraction){var c=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||c.apply(this,arguments)}}t("#updraftcentral_keys").on("click","a.updraftcentral_keys_show",function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keys_table").slideDown()}),t("#updraftcentral_keycreate_altmethod_moreinfo_get").click(function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keycreate_altmethod_moreinfo").slideDown()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("change keyup paste",".updraft_webdav_settings",function(){var e=[];t(".updraft_webdav_settings").each(function(a,r){var n=t(r).attr("id");if(n&&"updraft_webdav_"==n.substring(0,15)){var o=n.substring(15);id_split=o.split("_"),o=id_split[0];var u=id_split[1];"undefined"==typeof e[u]&&(e[u]=[]),e[u][o]=this.value}});var a="",r="@",n="/",o=":",u=":";for(var d in e)(e[d].host.indexOf("@")>=0||""===e[d].host)&&(r=""),e[d].host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e[d].path.indexOf("/")&&""!==e[d].path||(n=""),""!==e[d].user&&""!==e[d].pass||(o=""),""!==e[d].host&&""!==e[d].port||(u=""),a=e[d].webdav+e[d].user+o+e[d].pass+r+encodeURIComponent(e[d].host)+u+e[d].port+n+e[d].path,t("#updraft_webdav_url_"+d).val(a);e.host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e.path.indexOf("/")&&""!==e.path||(n=""),""!==e.user&&""!==e.pass||(o=""),""!==e.host&&""!==e.port||(u=""),a=e.webdav+e.user+o+encodeURIComponent(e.pass)+r+encodeURIComponent(e.host)+u+e.port+n+e.path,t("#updraft_webdav_url_"+d).val(a)}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(e){(e.ctrlKey||e.metaKey)&&(t(this).toggleClass("backuprowselected"),t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length>0?t("#ud_massactions").show():t("#ud_massactions").hide())}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_add_instance",function(t){t.preventDefault(),updraft_settings_form_changed=!0;var e=jQuery(this).data("method");a(e)}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_delete_instance",function(t){t.preventDefault(),updraft_settings_form_changed=!0;var e=jQuery(this).data("method"),r=jQuery(this).data("instance_id");1===jQuery("."+e+"_updraft_remote_storage_border").length&&a(e),jQuery("."+e+"-"+r).hide("slow",function(){jQuery(this).remove()})}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("change","input[class='updraft_instance_toggle']",function(){updraft_settings_form_changed=!0,jQuery(this).is(":checked")?jQuery(this).siblings("label").html(updraftlion.instance_enabled):jQuery(this).siblings("label").html(updraftlion.instance_disabled)}),jQuery("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod button.updraft-test-button",function(){var t=jQuery(this).data("method"),e=jQuery(this).data("instance_id");updraft_remote_storage_test(t,function(e,a,r){return"sftp"==t&&(r.hasOwnProperty("scp")&&r.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+e.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+e.output),e.hasOwnProperty("data")&&console.log(e.data),!0)},e)}),t("#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database").change(function(){updraft_check_same_times()}),t("#backupnow_includefiles_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_includefiles_moreoptions").toggle()}),t("#backupnow_database_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_database_moreoptions").toggle()}),t("#updraft-navtab-backups-content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),updraftplus_diskspace()}),t("#updraft-navtab-backups-content a.updraft_uploader_toggle").click(function(e){e.preventDefault(),t("#updraft-plupload-modal").slideToggle()}),t("#updraft-navtab-backups-content a.updraft_rescan_local").click(function(t){t.preventDefault(),updraft_updatehistory(1,0)}),t("#updraft-navtab-backups-content a.updraft_rescan_remote").click(function(t){t.preventDefault(),updraft_updatehistory(1,1)}),jQuery("#updraftcentral_keys").on("click",'input[type="radio"]',function(){n(!1)}),n(!0),jQuery("#updraftcentral_keys").on("click","#updraftcentral_view_log",function(t){t.preventDefault(),jQuery("#updraftcentral_view_log_container").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.fetching+"</div>"});try{updraft_send_command("updraftcentral_get_log",null,function(t){jQuery("#updraftcentral_view_log_container").unblock(),t.hasOwnProperty("log_contents")?jQuery("#updraftcentral_view_log_contents").html('<div style="border:1px solid;padding: 2px;max-height: 400px; overflow-y:scroll;">'+t.log_contents+"</div>"):console.response(resp)})}catch(e){jQuery("#updraft_central_key").html(),console.log(e)}}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_wizard_go",function(t){jQuery("#updraftcentral_wizard_go").hide(),jQuery(".updraftcentral_wizard_success").remove(),jQuery(".create_key_container").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage1_go",function(t){t.preventDefault(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery(".updraftcentral_wizard_stage1").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage2_go",function(t){t.preventDefault(),o()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_keycreate_go",function(t){t.preventDefault();var e=!!jQuery("#updraftcentral_mothership_other").is(":checked"),a=jQuery("#updraftcentral_keycreate_description").val(),r=jQuery("#updraftcentral_keycreate_keysize").val(),n="__updraftpluscom";if(data={key_description:a,key_size:r},e&&(n=jQuery("#updraftcentral_keycreate_mothership").val(),"http"!=n.substring(0,4)))return void alert(updraftlion.enter_mothership_url);data.mothership_firewalled=jQuery("#updraftcentral_keycreate_mothership_firewalled").is(":checked")?1:0,data.where_send=n,jQuery(".create_key_container").hide(),jQuery(".updraftcentral_wizard_stage1").show(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+"</div>"});try{updraft_send_command("updraftcentral_create_key",data,function(t){jQuery("#updraftcentral_keys").unblock();try{if(resp=ud_parse_json(t),resp.hasOwnProperty("error"))return alert(resp.error),void console.log(resp);alert(resp.r),resp.hasOwnProperty("bundle")&&resp.hasOwnProperty("keys_guide")?(jQuery("#updraftcentral_keys_content").html(resp.keys_guide),jQuery("#updraftcentral_keys_content").append('<div class="updraftcentral_wizard_success">'+resp.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+resp.bundle+"</textarea></div>")):console.log(resp),resp.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").append(resp.keys_table),jQuery("#updraftcentral_wizard_go").show()}catch(e){alert(updraftlion.unexpectedresponse+" "+t),console.log(e)}},{json_parse:!1})}catch(o){jQuery("#updraft_central_key").html(),console.log(o)}}),jQuery("#updraftcentral_keys").on("click",".updraftcentral_key_delete",function(t){t.preventDefault();var e=jQuery(this).data("key_id");return"undefined"==typeof e?void console.log("UpdraftPlus: .updraftcentral_key_delete clicked, but no key ID found"):(jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.deleting+"</div>"}),void updraft_send_command("updraftcentral_delete_key",{key_id:e},function(t){jQuery("#updraftcentral_keys").unblock(),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").html(t.keys_table)}))}),jQuery("#updraft_reset_sid").click(function(t){t.preventDefault(),updraft_send_command("reset_site_id",null,function(t){jQuery("#updraft_show_sid").html(t)},{json_parse:!1})}),jQuery("#updraft-navtab-settings-content form input:not('.udignorechange'), #updraft-navtab-settings-content form select").change(function(t){updraft_settings_form_changed=!0}),jQuery("#updraft-navtab-settings-content form input[type='submit']").click(function(t){updraft_settings_form_changed=!1});var f=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>f&&(f=a)}),f>180&&jQuery(".updraft-bigbutton").width(f),setInterval(function(){updraft_activejobs_update(!1)},1250),setTimeout(function(){jQuery("#setting-error-settings_updated").slideUp()},5e3),jQuery("#updraft_restore_db").change(function(){jQuery("#updraft_restore_db").is(":checked")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var _={};_[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:_});var g={};g[updraftlion.deletebutton]=function(){u(0,0,0,0)},g[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:322,width:430,modal:!0,buttons:g});var h={};h[updraftlion.restore]=function(){var t=0,e=[],a=0,r=jQuery("#updraft_restore_meta_foreign").val();if(jQuery('input[name="updraft_restore[]"]').each(function(n,o){if(jQuery(o).is(":checked")&&!jQuery(o).is(":disabled")){t=1;var u=jQuery(o).data("howmany"),d=jQuery(o).val();if((1==r||2==r&&"db"!=d)&&("wpcore"!=d&&(u=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),d="wpcore"),"wpcore"!=d||0==a){var s=[d,u];e.push(s),"wpcore"==d&&(a=1)}}}),1==t){if(1==updraft_restore_stage){jQuery("#updraft-restore-modal-stage1").slideUp("slow"),jQuery("#updraft-restore-modal-stage2").show(),updraft_restore_stage=2;var n=jQuery(".updraft_restore_date").first().text(),o=e,u=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:u},function(t){if(t.hasOwnProperty("downloads")&&(console.log("UpdraftPlus: items which still require downloading follow"),o=t.downloads,console.log(o)),0==o.length)updraft_restorer_checkstage2(0);else for(var e=0;e<o.length;e++)updraft_downloader("udrestoredlstatus_",u,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1})}catch(d){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(d),alert(updraftlion.jsonnotunderstood)}}else if(2==updraft_restore_stage)updraft_restorer_checkstage2(1);else if(3==updraft_restore_stage){var s=1;if(jQuery("#updraft_restoreoptions_ui input.required").each(function(t){if(0!=s){var e=jQuery(this).val();if(""==e)alert(updraftlion.pleasefillinrequired),s=0;else if(""!=jQuery(this).attr("pattern")){var a=jQuery(this).attr("pattern"),r=new RegExp(a,"g");r.test(e)||(alert(jQuery(this).data("invalidpattern")),s=0)}}}),!s)return;var i=jQuery("#updraft_restoreoptions_ui select, #updraft_restoreoptions_ui input").serialize();console.log("Restore options: "+i),jQuery("#updraft_restorer_restore_options").val(i),jQuery("#updraft-restore-modal-stage2a").html(updraftlion.restore_proceeding),jQuery("#updraft_restore_form").submit(),updraft_restore_stage=4}}else alert(updraftlion.youdidnotselectany)},h[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:h}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:345,width:580,modal:!0});var y={};y[updraftlion.backupnow]=function(){var t=jQuery("#backupnow_includedb").is(":checked")?0:1,e=jQuery("#backupnow_includefiles").is(":checked")?0:1,a=jQuery("#backupnow_includecloud").is(":checked")?0:1,r=backupnow_whichtables_checked("");if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var n=backupnow_whichfiles_checked("");return""==n&&0==e?(alert(updraftlion.nofileschosen),void jQuery("#backupnow_includefiles_moreoptions").show()):t&&e?void alert(updraftlion.excludedeverything):(jQuery(this).dialog("close"),setTimeout(function(){jQuery("#updraft_lastlogmessagerow").fadeOut("slow",function(){jQuery(this).fadeIn("slow")})},1700),void updraft_backupnow_go(t,e,a,n,"",jQuery("#backupnow_label").val(),r))},y[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:y}),jQuery("#updraft-migrate-modal").dialog({autoOpen:!1,height:updraftlion.migratemodalheight,width:updraftlion.migratemodalwidth,modal:!0}),jQuery("#updraft-poplog").dialog({autoOpen:!1,height:600,width:"75%",modal:!0}),jQuery("#updraft-navtab-settings-content .enableexpertmode").click(function(){return jQuery("#updraft-navtab-settings-content .expertmode").fadeIn(),jQuery("#updraft-navtab-settings-content .enableexpertmode").off("click"),!1}),jQuery("#updraft-navtab-settings-content .backupdirrow").on("click","a.updraft_backup_dir_reset",function(){return jQuery("#updraft_dir").val("updraft"),!1}),jQuery("#updraft-navtab-settings-content .updraft_include_entity").click(function(){var t=jQuery(this).data("toggle_exclude_field");t&&d(t,!1)}),jQuery("#updraft-navtab-settings-content .updraft-service").change(function(){var t=jQuery(this).val();jQuery("#updraft-navtab-settings-content .updraftplusmethod").hide(),jQuery("#updraft-navtab-settings-content ."+t).show()}),jQuery("#updraft-navtab-settings-content a.updraft_show_decryption_widget").click(function(t){t.preventDefault(),jQuery("#updraftplus_db_decrypt").val(jQuery("#updraft_encryptionphrase").val()),jQuery("#updraft-manualdecrypt-modal").slideToggle()}),jQuery("#updraftplus-phpinfo").click(function(t){t.preventDefault(),updraft_iframe_modal("phpinfo",updraftlion.phpinfo)}),jQuery("#updraftplus-rawbackuphistory").click(function(t){t.preventDefault(),updraft_iframe_modal("rawbackuphistory",updraftlion.raw)}),jQuery("#updraft-navtab-status").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-status-content").show(),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-expert-content").show(),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=4}),jQuery("#updraft-navtab-settings, #updraft-navtab-settings2, #updraft_backupnow_gotosettings").click(function(t){t.preventDefault(),jQuery(this).parents(".updraftmessage").remove(),jQuery("#updraft-backupnow-modal").dialog("close"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-settings-content").show(),jQuery("#updraft-navtab-settings").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=3}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").show(),jQuery("#updraft-navtab-addons").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=5}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_openrestorepanel(1)}),updraft_send_command("ping",null,function(t,e){"success"==e&&"pong"!=t&&t.indexOf("pong")>=0&&(jQuery("#updraft-navtab-backups-content .ud-whitespace-warning").show(),console.log("UpdraftPlus: Extra output warning: response (which should be just (string)'pong') follows."),console.log(t))},{json_parse:!1,type:"GET"});try{"undefined"!=typeof updraft_plupload_config&&s()}catch(m){console.log(m)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),i(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),i(1)}),jQuery("#updraftplus_callwpaction_go").click(function(t){t.preventDefault(),params={wpaction:jQuery("#updraftplus_callwpaction").val()},updraft_send_command("call_wordpress_action",params,function(t){t.e?alert(t.e):t.s||(t.r?jQuery("#updraftplus_callwpaction_results").html(t.r):(console.log(t),alert(updraftlion.jsonnotunderstood)))})}),jQuery("#updraft_activejobs_table").on("click",".updraft_jobinfo_delete",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_activejobs_delete(e):console.log("UpdraftPlus: A stop job link was clicked, but the Job ID could not be found")}),jQuery("#updraft_activejobs_table, #updraft-navtab-backups-content .updraft_existing_backups, #updraft-backupnow-inpage-modal").on("click",".updraft-log-link",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_popuplog(e):console.log("UpdraftPlus: A log link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.choose-components-button",function(t){var e=jQuery(this).data("entities"),a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("showdata");p(e,a,r)}),"initiate_restore"==l("udaction")){var v=l("entities"),b=l("backup_timestamp"),j=l("showdata");p(v,b,j)}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click",".updraft-delete-link",function(t){t.preventDefault();var e=jQuery(this).data("hasremote"),a=jQuery(this).data("nonce").toString(),r=jQuery(this).data("key").toString();a?updraft_delete(r,a,e):console.log("UpdraftPlus: A delete link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.updraft_download_button",function(t){t.preventDefault();var e="uddlstatus_",a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("what"),n=".ud_downloadstatus",o=jQuery(this).data("set_contents"),u=jQuery(this).data("prettydate"),d=!0;updraft_downloader(e,a,r,n,o,u,d)}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("dblclick",".updraft_existingbackup_date",function(t){t.preventDefault();var e=jQuery(this).data("rawbackup");null!=e&&""!=e&&updraft_html_modal(e,updraftlion.raw,780,500)})}),jQuery(document).ready(function(t){var e="#updraft-navtab-settings-content ";t(e+"#remote-storage-holder").on("click",".updraftvault_backtostart",function(a){a.preventDefault(),t(e+"#updraftvault_settings_showoptions").slideUp(),t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").slideUp(),t(e+"#updraftvault_settings_default").slideDown()}),t(e+"#updraftvault_settings_connect input").keypress(function(a){if(13==a.which)return t(e+"#updraftvault_connect_go").click(),!1}),t(e+"#remote-storage-holder").on("click","#updraftvault_recountquota",function(a){a.preventDefault(),t(e+"#updraftvault_recountquota").html(updraftlion.counting);try{updraft_send_command("vault_recountquota",{instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html),a.hasOwnProperty("connected")&&(a.connected?(t(e+"#updraftvault_settings_default").hide(),t(e+"#updraftvault_settings_connected").show()):(t(e+"#updraftvault_settings_connected").hide(),t(e+"#updraftvault_settings_default").show())))})}catch(r){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_disconnect",function(a){a.preventDefault(),t(e+"#updraftvault_disconnect").html(updraftlion.disconnecting);try{updraft_send_command("vault_disconnect",{immediate_echo:!0,instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html).slideUp(),t(e+"#updraftvault_settings_default").slideDown())})}catch(r){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),console.log(r)}}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_connect").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_showoptions",function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_showoptions").slideDown()}),t(e+"#remote-storage-holder").on("click","#updraftvault_connect_go",function(a){return t(e+"#updraftvault_connect_go").html(updraftlion.connecting),updraft_send_command("vault_connect",{email:t("#updraftvault_email").val(),pass:t("#updraftvault_pass").val(),instance_id:t("#updraftvault_settings_connect").data("instance_id")},function(a,r,n){t(e+"#updraftvault_connect_go").html(updraftlion.connect),a.hasOwnProperty("e")?(updraft_html_modal('<h4 style="margin-top:0px; padding-top:0px;">'+updraftlion.errornocolon+"</h4><p>"+a.e+"</p>",updraftlion.disconnect,400,250),a.hasOwnProperty("code")&&"no_quota"==a.code&&(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_default").slideDown())):a.hasOwnProperty("connected")&&a.connected&&a.hasOwnProperty("html")?(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").html(a.html).slideDown()):(console.log(a),alert(updraftlion.unexpectedresponse+" "+n))}),!1})}),jQuery(document).ready(function(t){function e(){var t=new plupload.Uploader(updraft_plupload_config2);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui2");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area2").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area2").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){return/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-db([0-9]+)?\.(gz\.crypt)$/i.test(e.name)?void jQuery("#filelist2").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>'):(alert(e.name+": "+updraftlion.notdba),void t.removeFile(e))}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100)))}),t.bind("Error",function(t,e){"-200"==e.code?err_makesure="\n"+updraftlion.makesure2:err_makesure=updraftlion.makesure,alert(updraftlion.uploaderr+" (code "+e.code+") : "+e.message+" "+err_makesure);
3
+ }),t.bind("FileUploaded",function(t,e,a){"200"==a.status?"ERROR:"==a.response.substring(0,6)?alert(updraftlion.uploaderror+" "+a.response.substring(6)):"OK:"==a.response.substring(0,3)?(bkey=a.response.substring(3),jQuery("#"+e.id+" .fileprogress").hide(),jQuery("#"+e.id).append(updraftlion.uploaded+' <a href="?page=updraftplus&action=downloadfile&updraftplus_file='+bkey+"&decrypt_key="+encodeURIComponent(jQuery("#updraftplus_db_decrypt").val())+'">'+updraftlion.followlink+"</a> "+updraftlion.thiskey+" "+jQuery("#updraftplus_db_decrypt").val().replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;"))):alert(updraftlion.unknownresp+" "+a.response):alert(updraftlion.ukrespstatus+" "+a.code)})}try{"undefined"!=typeof updraft_plupload_config2&&e()}catch(a){console.log(a)}if(jQuery("#updraft-hidethis").remove(),Handlebars.registerHelper("ifeq",function(t,e,a){return"string"!=typeof t&&"undefined"!=typeof t&&null!==t&&(t=t.toString()),"string"!=typeof e&&"undefined"!=typeof e&&null!==e&&(e=e.toString()),t===e?a.fn(this):a.inverse(this)}),t("#remote-storage-holder").length){var r="";for(var n in updraftlion.remote_storage_templates)if("undefined"!=typeof updraftlion.remote_storage_options[n]){var o=Handlebars.compile(updraftlion.remote_storage_templates[n]),u=!0;for(var d in updraftlion.remote_storage_options[n])if("default"!==d){var s=updraftlion.remote_storage_options[n][d];s.first_instance=u,"undefined"==typeof s.instance_enabled&&(s.instance_enabled=1),r+=o(s),u=!1}}else r+=updraftlion.remote_storage_templates[n];t("#remote-storage-holder").append(r).ready(function(){t(".updraftplusmethod").not(".none").hide(),updraft_remote_storage_tabs_setup()})}}),jQuery(document).ready(function(t){function e(){var t=r("object"),e=new Date;t=JSON.stringify({version:"1.12.40",epoch_date:e.getTime(),local_date:e.toLocaleString(),network_site_url:updraftlion.network_site_url,data:t});var a=document.body.appendChild(document.createElement("a"));a.setAttribute("download",updraftlion.export_settings_file_name),a.setAttribute("style","display:none;"),a.setAttribute("href","data:text/json;charset=UTF-8,"+encodeURIComponent(t)),a.click()}function a(e){var a,r=decodeURIComponent(e);try{a=ud_parse_json(r)}catch(o){return t.unblockUI(),jQuery("#import_settings").val(""),console.log(r),console.log(o),void alert(updraftlion.import_invalid_json_file)}if(window.confirm(updraftlion.importing_data_from+" "+r.network_site_url+"\n"+updraftlion.exported_on+" "+r.local_date+"\n"+updraftlion.continue_import)){var u=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:u,updraftplus_version:updraftlion.updraftplus_version},function(e){var a=n(e);!a.hasOwnProperty("saved")||a.saved?(updraft_settings_form_changed=!1,location.replace(updraftlion.updraft_settings_url)):(t.unblockUI(),a.hasOwnProperty("error_message")&&a.error_message&&alert(a.error_message))},{action:"updraft_importsettings",nonce:updraftplus_settings_nonce,json_parse:!1})}else t.unblockUI()}function r(e){var a="",e="undefined"==typeof e?"string":e;return"object"==e?a=t("#updraft-navtab-settings-content form input[name!='action'][name!='option_page'][name!='_wpnonce'][name!='_wp_http_referer'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select, #updraft-navtab-settings-content form input[type=checkbox]").serializeJSON({checkboxUncheckedValue:"0",useIntKeysAsArrayIndex:!0}):(a=t("#updraft-navtab-settings-content form input[name!='action'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select").serialize(),t.each(t("#updraft-navtab-settings-content form input[type=checkbox]").filter(function(e){return 0==t(this).prop("checked")}),function(e,r){var n="0";a+="&"+t(r).attr("name")+"="+n})),a}function n(e){try{var a=ud_parse_json(e),r=(a.messages,a.backup_dir.writable),n=a.backup_dir.message,o=a.backup_dir.button_title}catch(u){return console.log(u),console.log(e),alert(updraftlion.jsonnotunderstood),t.unblockUI(),{}}if(a.hasOwnProperty("changed")){console.log("UpdraftPlus: savesettings: some values were changed after being filtered"),console.log(a.changed);for(prop in a.changed)if("object"==typeof a.changed[prop])for(innerprop in a.changed[prop])t("[name='"+innerprop+"']").is(":checkbox")||t("[name='"+prop+"["+innerprop+"]']").val(a.changed[prop][innerprop]);else t("[name='"+prop+"']").is(":checkbox")||t("[name='"+prop+"']").val(a.changed[prop])}return t("#updraft_writable_mess").html(n),0==r?(t("#updraft-backupnow-button").attr("disabled","disabled"),t("#updraft-backupnow-button").attr("title",o),t(".backupdirrow").css("display","table-row")):(t("#updraft-backupnow-button").removeAttr("disabled"),t("#updraft-backupnow-button").removeAttr("title")),a.hasOwnProperty("updraft_include_more_path")&&t("#backupnow_includefiles_moreoptions").html(a.updraft_include_more_path),a.hasOwnProperty("backup_now_message")&&t("#backupnow_remote_container").html(a.backup_now_message),t(".updraftmessage").remove(),t("#updraft_backup_started").before(a.messages),t("#next-backup-table-inner").html(a.scheduled),a}function o(){var t=!1;if(jQuery("#updraft-authenticate-modal-innards").html(""),jQuery("div[class*=updraft_authenticate_] a.updraft_authlink").each(function(){jQuery("#updraft-authenticate-modal-innards").append('<p><a href="'+jQuery(this).attr("href")+'">'+jQuery(this).html()+"</a></p>"),t=!0}),t){var e={};e[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-authenticate-modal").dialog({autoOpen:!0,modal:!0,resizable:!1,draggable:!1,buttons:e,width:"auto"}).dialog("open")}}var u=new Image;u.src=updraftlion.ud_url+"/images/udlogo-rotating.gif",t("#updraft-navtab-settings-content input.updraft_include_entity").change(function(e){var a=t(this).attr("id"),r=t(this).is(":checked"),n="#backupnow_files_"+a;t(n).prop("checked",r)}),t("#updraftplus-settings-save").click(function(e){e.preventDefault(),t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.saving+"</div>"});var a=r("string");updraft_send_command("savesettings",{settings:a,updraftplus_version:updraftlion.updraftplus_version},function(e){n(e),t("#updraft-wrap .fade").delay(6e3).fadeOut(2e3),t("html, body").animate({scrollTop:t("#updraft-wrap").offset().top},1e3,function(){o()}),t.unblockUI()},{action:"updraft_savesettings",nonce:updraftplus_settings_nonce,json_parse:!1})}),t("#updraftplus-settings-export").click(function(){updraft_settings_form_changed&&alert(updraftlion.unsaved_settings_export),e()}),t("#updraftplus-settings-import").click(function(){t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.importing+"</div>"});var e=document.getElementById("import_settings");if(0==e.files.length)return alert(updraftlion.import_select_file),void t.unblockUI();var r=e.files[0],n=new FileReader;n.onload=function(){a(this.result)},n.readAsText(r)})}),jQuery(document).ready(function(t){jQuery("#updraft-restore-modal").on("change","#updraft_restorer_charset",function(e){if(t("#updraft_restorer_charset").length&&t("#updraft_restorer_collate").length&&t("#collate_change_on_charset_selection_data").length){var a=t("#updraft_restorer_charset").val();t("#updraft_restorer_collate option").show(),t("#updraft_restorer_collate option[data-charset!="+a+"]").hide(),updraft_send_command("collate_change_on_charset_selection",{collate_change_on_charset_selection_data:t("#collate_change_on_charset_selection_data").val(),updraft_restorer_charset:a,updraft_restorer_collate:t("#updraft_restorer_collate").val()},function(e){e.hasOwnProperty("is_action_required")&&1==e.is_action_required&&e.hasOwnProperty("similar_type_collate")&&t("#updraft_restorer_collate").val(e.similar_type_collate)})}})});
languages/updraftplus-af.mo CHANGED
Binary file
languages/updraftplus-af.po CHANGED
@@ -7,10 +7,38 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/2.2.2\n"
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/templates/wp-admin/settings/tab-addons.php:14
15
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
16
  msgstr ""
@@ -23,11 +51,11 @@ msgstr ""
23
  msgid "get it here"
24
  msgstr ""
25
 
26
- #: src/methods/stream-base.php:305
27
  msgid "Download chunk size successfully changed to %d"
28
  msgstr ""
29
 
30
- #: src/methods/stream-base.php:302
31
  msgid "Download chunk size failed to change to %d"
32
  msgstr ""
33
 
@@ -43,7 +71,7 @@ msgstr ""
43
  msgid "remote site"
44
  msgstr ""
45
 
46
- #: src/addons/backblaze.php:443
47
  msgid "Invalid bucket name"
48
  msgstr ""
49
 
@@ -53,49 +81,49 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
- #: src/class-updraftplus.php:4673
57
  msgid "Your chosen replacement collation"
58
  msgstr ""
59
 
60
- #: src/class-updraftplus.php:4650
61
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
62
  msgstr ""
63
 
64
- #: src/class-updraftplus.php:4650
65
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
66
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
67
  msgstr[0] ""
68
  msgstr[1] ""
69
 
70
- #: src/addons/migrator.php:493
71
  msgid "Database restoration options:"
72
  msgstr ""
73
 
74
- #: src/addons/migrator.php:370
75
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
76
  msgstr ""
77
 
78
- #: src/addons/azure.php:562
79
  msgid "%s Prefix"
80
  msgstr ""
81
 
82
- #: src/addons/azure.php:557
83
  msgid "%s Container"
84
  msgstr ""
85
 
86
- #: src/addons/azure.php:552
87
  msgid "%s Key"
88
  msgstr ""
89
 
90
- #: src/addons/azure.php:548
91
  msgid "%s Account Name"
92
  msgstr ""
93
 
94
- #: src/addons/googlecloud.php:625
95
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
96
  msgstr ""
97
 
98
- #: src/addons/googlecloud.php:623
99
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
100
  msgstr ""
101
 
@@ -119,7 +147,7 @@ msgstr ""
119
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
120
  msgstr ""
121
 
122
- #: src/addons/migrator.php:877
123
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
124
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
125
  msgstr[0] ""
@@ -129,15 +157,15 @@ msgstr[1] ""
129
  msgid "Requested table character set (%s) is not present - changing to %s."
130
  msgstr ""
131
 
132
- #: src/class-updraftplus.php:4626
133
  msgid "Your chosen character set to use instead:"
134
  msgstr ""
135
 
136
- #: src/class-updraftplus.php:4616
137
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
138
  msgstr ""
139
 
140
- #: src/class-updraftplus.php:4616
141
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
142
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
143
  msgstr[0] ""
@@ -191,79 +219,79 @@ msgstr ""
191
  msgid "Please enter a valid URL e.g http://example.com"
192
  msgstr ""
193
 
194
- #: src/addons/backblaze.php:588
195
  msgid "your Backblaze console"
196
  msgstr ""
197
 
198
- #: src/addons/backblaze.php:588
199
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
200
  msgstr ""
201
 
202
- #: src/addons/backblaze.php:588
203
  msgid "N.B. You need to create the bucket in %s first."
204
  msgstr ""
205
 
206
- #: src/addons/backblaze.php:587
207
  msgid "some/path"
208
  msgstr ""
209
 
210
- #: src/addons/backblaze.php:587
211
  msgid "Bucket name"
212
  msgstr ""
213
 
214
- #: src/addons/backblaze.php:586
215
  msgid "Backup path"
216
  msgstr ""
217
 
218
- #: src/addons/backblaze.php:581
219
  msgid "Application key"
220
  msgstr ""
221
 
222
- #: src/addons/backblaze.php:576, src/addons/backblaze.php:576
223
  msgid "here"
224
  msgstr ""
225
 
226
- #: src/addons/backblaze.php:576
227
  msgid "Get these settings from %s, or sign up %s."
228
  msgstr ""
229
 
230
- #: src/addons/backblaze.php:440
231
  msgid "Bucket not found"
232
  msgstr ""
233
 
234
- #: src/addons/backblaze.php:394
235
  msgid "Account Key"
236
  msgstr ""
237
 
238
- #: src/addons/backblaze.php:393, src/addons/backblaze.php:574
239
  msgid "Account ID"
240
  msgstr ""
241
 
242
- #: src/class-updraftplus.php:4460
243
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
244
  msgstr ""
245
 
246
- #: src/class-updraftplus.php:4458, src/class-updraftplus.php:4460
247
  msgid "the migrator add-on"
248
  msgstr ""
249
 
250
- #: src/class-updraftplus.php:4458
251
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
252
  msgstr ""
253
 
254
- #: src/class-updraftplus.php:4456
255
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
256
  msgstr ""
257
 
258
- #: src/class-updraftplus.php:4453
259
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
260
  msgstr ""
261
 
262
- #: src/methods/googledrive.php:1173
263
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
264
  msgstr ""
265
 
266
- #: src/methods/googledrive.php:1170
267
  msgid "Follow this link to remove this site's settings for %s."
268
  msgstr ""
269
 
@@ -275,15 +303,15 @@ msgstr ""
275
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
276
  msgstr ""
277
 
278
- #: src/admin.php:1348, src/admin.php:4168, src/backup.php:2065,
279
- #: src/class-updraftplus.php:2156, src/class-updraftplus.php:2221,
280
- #: src/class-updraftplus.php:2355
281
  msgid "A PHP fatal error (%s) has occurred: %s"
282
  msgstr ""
283
 
284
- #: src/admin.php:1339, src/admin.php:4154, src/backup.php:2056,
285
- #: src/class-updraftplus.php:2147, src/class-updraftplus.php:2214,
286
- #: src/class-updraftplus.php:2348
287
  msgid "A PHP exception (%s) has occurred: %s"
288
  msgstr ""
289
 
@@ -327,7 +355,7 @@ msgstr ""
327
  msgid "Select Files"
328
  msgstr ""
329
 
330
- #: src/methods/cloudfiles.php:465
331
  msgid "Rackspace Storage Region"
332
  msgstr ""
333
 
@@ -335,23 +363,23 @@ msgstr ""
335
  msgid "Instant and secure logon with a wave of your phone."
336
  msgstr ""
337
 
338
- #: src/backup.php:2069
339
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
340
  msgstr ""
341
 
342
- #: src/admin.php:4696
343
  msgid "Value"
344
  msgstr ""
345
 
346
- #: src/admin.php:1614
347
  msgid "Did not know how to delete from this cloud service."
348
  msgstr ""
349
 
350
- #: src/addons/sftp.php:700
351
  msgid "Encrypted login failed; trying non-encrypted"
352
  msgstr ""
353
 
354
- #: src/addons/azure.php:539
355
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
356
  msgstr ""
357
 
@@ -359,15 +387,15 @@ msgstr ""
359
  msgid "Stored at: %s"
360
  msgstr ""
361
 
362
- #: src/methods/cloudfiles.php:485
363
  msgid "Cloud Files"
364
  msgstr ""
365
 
366
- #: src/admin.php:4509
367
  msgid "Your settings failed to save. Please refresh the settings page and try again"
368
  msgstr ""
369
 
370
- #: src/admin.php:4468
371
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
372
  msgstr ""
373
 
@@ -384,15 +412,15 @@ msgstr ""
384
  msgid "Extra database"
385
  msgstr ""
386
 
387
- #: src/admin.php:3729
388
  msgid "Press here to download or browse"
389
  msgstr ""
390
 
391
- #: src/admin.php:1122, src/admin.php:1132
392
  msgid "Error: invalid path"
393
  msgstr ""
394
 
395
- #: src/admin.php:946
396
  msgid "An error occurred when fetching storage module options: "
397
  msgstr ""
398
 
@@ -428,15 +456,15 @@ msgstr ""
428
  msgid "Skipped tables:"
429
  msgstr ""
430
 
431
- #: src/class-updraftplus.php:4738
432
  msgid "This database backup has the following WordPress tables excluded: %s"
433
  msgstr ""
434
 
435
- #: src/admin.php:2624
436
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
437
  msgstr ""
438
 
439
- #: src/admin.php:2624
440
  msgid "All WordPress tables will be backed up."
441
  msgstr ""
442
 
@@ -936,15 +964,15 @@ msgstr ""
936
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
937
  msgstr ""
938
 
939
- #: src/methods/dropbox.php:608
940
  msgid "%s de-authentication"
941
  msgstr ""
942
 
943
- #: src/methods/dropbox.php:528
944
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
945
  msgstr ""
946
 
947
- #: src/methods/dropbox.php:505
948
  msgid "Follow this link to deauthenticate with %s."
949
  msgstr ""
950
 
@@ -952,7 +980,7 @@ msgstr ""
952
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
953
  msgstr ""
954
 
955
- #: src/backup.php:1663
956
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
957
  msgstr ""
958
 
@@ -960,16 +988,16 @@ msgstr ""
960
  msgid "You have selected a remote storage option which has an authorization step to complete:"
961
  msgstr ""
962
 
963
- #: src/admin.php:1690
964
  msgid "Remote files deleted:"
965
  msgstr ""
966
 
967
- #: src/admin.php:1689
968
  msgid "Local files deleted:"
969
  msgstr ""
970
 
971
- #: src/admin.php:994, src/admin.php:1003, src/admin.php:1016,
972
- #: src/admin.php:1025
973
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
974
  msgstr ""
975
 
@@ -1013,24 +1041,24 @@ msgstr ""
1013
  msgid "US East (Ohio)"
1014
  msgstr ""
1015
 
1016
- #: src/addons/onedrive.php:979
1017
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1018
  msgstr ""
1019
 
1020
- #: src/addons/onedrive.php:649
1021
  msgid "Account is not authorized (%s)."
1022
  msgstr ""
1023
 
1024
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873
1025
  msgid "Your IP address:"
1026
  msgstr ""
1027
 
1028
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873,
1029
  #: src/udaddons/updraftplus-addons.php:887
1030
  msgid "To remove any block, please go here."
1031
  msgstr ""
1032
 
1033
- #: src/addons/onedrive.php:594, src/udaddons/updraftplus-addons.php:858
1034
  msgid "An error response was received; HTTP code:"
1035
  msgstr ""
1036
 
@@ -1046,11 +1074,11 @@ msgstr ""
1046
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1047
  msgstr ""
1048
 
1049
- #: src/admin.php:2438
1050
  msgid "To fix this problem go here."
1051
  msgstr ""
1052
 
1053
- #: src/admin.php:2438
1054
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1055
  msgstr ""
1056
 
@@ -1058,27 +1086,27 @@ msgstr ""
1058
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1059
  msgstr ""
1060
 
1061
- #: src/addons/webdav.php:125
1062
  msgid "Path"
1063
  msgstr ""
1064
 
1065
- #: src/addons/webdav.php:120
1066
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1067
  msgstr ""
1068
 
1069
- #: src/addons/webdav.php:112
1070
  msgid "Enter any path in the field below."
1071
  msgstr ""
1072
 
1073
- #: src/addons/webdav.php:112
1074
  msgid "A host name cannot contain a slash."
1075
  msgstr ""
1076
 
1077
- #: src/addons/webdav.php:87
1078
  msgid "Protocol (SSL or not)"
1079
  msgstr ""
1080
 
1081
- #: src/addons/webdav.php:82
1082
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1083
  msgstr ""
1084
 
@@ -1086,7 +1114,7 @@ msgstr ""
1086
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1087
  msgstr ""
1088
 
1089
- #: src/methods/s3.php:1075
1090
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1091
  msgstr ""
1092
 
@@ -1126,53 +1154,53 @@ msgstr ""
1126
  msgid "Public key was sent to:"
1127
  msgstr ""
1128
 
1129
- #: src/backup.php:2281
1130
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1131
  msgstr ""
1132
 
1133
- #: src/backup.php:2259
1134
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1135
  msgstr ""
1136
 
1137
- #: src/addons/migrator.php:2342
1138
  msgid "Create key"
1139
  msgstr ""
1140
 
1141
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:526
1142
  msgid "slower, strongest"
1143
  msgstr ""
1144
 
1145
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1146
  msgid "recommended"
1147
  msgstr ""
1148
 
1149
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1150
  msgid "%s bytes"
1151
  msgstr ""
1152
 
1153
- #: src/addons/migrator.php:2337, src/central/bootstrap.php:524
1154
  msgid "faster (possibility for slow PHP installs)"
1155
  msgstr ""
1156
 
1157
- #: src/addons/migrator.php:2336, src/central/bootstrap.php:523
1158
  msgid "easy to break, fastest"
1159
  msgstr ""
1160
 
1161
- #: src/addons/migrator.php:2336, src/addons/migrator.php:2337,
1162
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:523,
1163
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1164
  msgid "%s bits"
1165
  msgstr ""
1166
 
1167
- #: src/addons/migrator.php:2334, src/central/bootstrap.php:521
1168
  msgid "Encryption key size:"
1169
  msgstr ""
1170
 
1171
- #: src/addons/migrator.php:2332
1172
  msgid "Enter your chosen name"
1173
  msgstr ""
1174
 
1175
- #: src/addons/migrator.php:2331
1176
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1177
  msgstr ""
1178
 
@@ -1180,15 +1208,15 @@ msgstr ""
1180
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1181
  msgstr ""
1182
 
1183
- #: src/methods/ftp.php:408
1184
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1185
  msgstr ""
1186
 
1187
- #: src/methods/ftp.php:380
1188
  msgid "login"
1189
  msgstr ""
1190
 
1191
- #: src/methods/email.php:79
1192
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1193
  msgstr ""
1194
 
@@ -1196,7 +1224,7 @@ msgstr ""
1196
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1197
  msgstr ""
1198
 
1199
- #: src/class-updraftplus.php:1763
1200
  msgid "Size: %s MB"
1201
  msgstr ""
1202
 
@@ -1208,7 +1236,7 @@ msgstr ""
1208
  msgid "Now"
1209
  msgstr ""
1210
 
1211
- #: src/class-updraftplus.php:4475, src/restorer.php:1045
1212
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1213
  msgstr ""
1214
 
@@ -1216,13 +1244,13 @@ msgstr ""
1216
  msgid "(tap on an icon to select or unselect)"
1217
  msgstr ""
1218
 
1219
- #: src/methods/updraftvault.php:310, src/methods/updraftvault.php:316,
1220
- #: src/methods/updraftvault.php:322
1221
  msgid "%s per year"
1222
  msgstr ""
1223
 
1224
- #: src/methods/updraftvault.php:309, src/methods/updraftvault.php:315,
1225
- #: src/methods/updraftvault.php:321
1226
  msgid "or (annual discount)"
1227
  msgstr ""
1228
 
@@ -1230,7 +1258,7 @@ msgstr ""
1230
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1231
  msgstr ""
1232
 
1233
- #: src/class-updraftplus.php:544, src/class-updraftplus.php:589
1234
  msgid "The given file was not found, or could not be read."
1235
  msgstr ""
1236
 
@@ -1314,23 +1342,23 @@ msgstr ""
1314
  msgid "UpdraftCentral Connection"
1315
  msgstr ""
1316
 
1317
- #: src/backup.php:965, src/class-updraftplus.php:2837
1318
  msgid "The backup was aborted by the user"
1319
  msgstr ""
1320
 
1321
- #: src/admin.php:4504
1322
  msgid "Your settings have been saved."
1323
  msgstr ""
1324
 
1325
- #: src/admin.php:3607
1326
  msgid "Total backup size:"
1327
  msgstr ""
1328
 
1329
- #: src/admin.php:2964
1330
  msgid "stop"
1331
  msgstr ""
1332
 
1333
- #: src/admin.php:2806
1334
  msgid "The backup has finished running"
1335
  msgstr ""
1336
 
@@ -1392,19 +1420,19 @@ msgstr ""
1392
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1393
  msgstr ""
1394
 
1395
- #: src/class-updraftplus.php:4526, src/restorer.php:1740
1396
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1397
  msgstr ""
1398
 
1399
- #: src/class-updraftplus.php:4522
1400
  msgid "Please read this link for important information on this process."
1401
  msgstr ""
1402
 
1403
- #: src/class-updraftplus.php:4522
1404
  msgid "It will be imported as a new site."
1405
  msgstr ""
1406
 
1407
- #: src/admin.php:2597, src/templates/wp-admin/notices/horizontal-notice.php:16,
1408
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1409
  msgid "Dismiss"
1410
  msgstr ""
@@ -1413,56 +1441,56 @@ msgstr ""
1413
  msgid "Please fill in the required information."
1414
  msgstr ""
1415
 
1416
- #: src/addons/multisite.php:579
1417
  msgid "Read more..."
1418
  msgstr ""
1419
 
1420
- #: src/addons/multisite.php:570
1421
  msgid "may include some site-wide data"
1422
  msgstr ""
1423
 
1424
- #: src/addons/multisite.php:565
1425
  msgid "All sites"
1426
  msgstr ""
1427
 
1428
- #: src/addons/multisite.php:561
1429
  msgid "Which site to restore"
1430
  msgstr ""
1431
 
1432
- #: src/addons/migrator.php:563, src/addons/migrator.php:564
1433
  msgid "Error when creating new site at your chosen address:"
1434
  msgstr ""
1435
 
1436
- #: src/addons/migrator.php:505
1437
  msgid "Required information for restoring this backup was not given (%s)"
1438
  msgstr ""
1439
 
1440
- #: src/addons/migrator.php:457
1441
  msgid "Attribute imported content to user"
1442
  msgstr ""
1443
 
1444
- #: src/addons/migrator.php:447, src/addons/migrator.php:449
1445
  msgid "You must use lower-case letters or numbers for the site path, only."
1446
  msgstr ""
1447
 
1448
- #: src/addons/migrator.php:435
1449
  msgid "This feature is not compatible with %s"
1450
  msgstr ""
1451
 
1452
- #: src/addons/migrator.php:433, src/addons/migrator.php:435
1453
  msgid "Importing a single site into a multisite install"
1454
  msgstr ""
1455
 
1456
- #: src/addons/migrator.php:424
1457
  msgid "other content from wp-content"
1458
  msgstr ""
1459
 
1460
- #: src/addons/migrator.php:421
1461
  msgid "WordPress core"
1462
  msgstr ""
1463
 
1464
- #: src/addons/migrator.php:421, src/addons/migrator.php:424,
1465
- #: src/addons/migrator.php:427
1466
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1467
  msgstr ""
1468
 
@@ -1470,11 +1498,11 @@ msgstr ""
1470
  msgid "Call WordPress action:"
1471
  msgstr ""
1472
 
1473
- #: src/admin.php:2632
1474
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1475
  msgstr ""
1476
 
1477
- #: src/admin.php:4043
1478
  msgid "Skipping: this archive was already restored."
1479
  msgstr ""
1480
 
@@ -1506,51 +1534,51 @@ msgstr ""
1506
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1507
  msgstr ""
1508
 
1509
- #: src/admin.php:4378
1510
  msgid "Send this backup to remote storage"
1511
  msgstr ""
1512
 
1513
- #: src/admin.php:4376
1514
  msgid "Check out UpdraftPlus Vault."
1515
  msgstr ""
1516
 
1517
- #: src/admin.php:4376
1518
  msgid "Not got any remote storage?"
1519
  msgstr ""
1520
 
1521
- #: src/admin.php:4376
1522
  msgid "settings"
1523
  msgstr ""
1524
 
1525
- #: src/admin.php:4376
1526
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1527
  msgstr ""
1528
 
1529
- #: src/admin.php:2630
1530
  msgid "Include any files in the backup"
1531
  msgstr ""
1532
 
1533
- #: src/admin.php:2616
1534
  msgid "Include the database in the backup"
1535
  msgstr ""
1536
 
1537
- #: src/admin.php:2596
1538
  msgid "Continue restoration"
1539
  msgstr ""
1540
 
1541
- #: src/admin.php:2591
1542
  msgid "You have an unfinished restoration operation, begun %s ago."
1543
  msgstr ""
1544
 
1545
- #: src/admin.php:2590
1546
  msgid "Unfinished restoration"
1547
  msgstr ""
1548
 
1549
- #: src/admin.php:2588
1550
  msgid "%s minutes, %s seconds"
1551
  msgstr ""
1552
 
1553
- #: src/admin.php:2535
1554
  msgid "Backup Contents And Schedule"
1555
  msgstr ""
1556
 
@@ -1558,7 +1586,7 @@ msgstr ""
1558
  msgid "Premium / Extensions"
1559
  msgstr ""
1560
 
1561
- #: src/admin.php:2304, src/admin.php:2313
1562
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1563
  msgstr ""
1564
 
@@ -1579,23 +1607,23 @@ msgstr ""
1579
  msgid "Advanced Tools"
1580
  msgstr ""
1581
 
1582
- #: src/addons/googlecloud.php:967
1583
  msgid "Bucket location"
1584
  msgstr ""
1585
 
1586
- #: src/addons/googlecloud.php:962
1587
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1588
  msgstr ""
1589
 
1590
- #: src/addons/googlecloud.php:962, src/addons/googlecloud.php:975
1591
  msgid "This setting applies only when a new bucket is being created."
1592
  msgstr ""
1593
 
1594
- #: src/addons/googlecloud.php:951
1595
  msgid "You must use a bucket name that is unique, for all %s users."
1596
  msgstr ""
1597
 
1598
- #: src/addons/googlecloud.php:910
1599
  msgid "Do not confuse %s with %s - they are separate things."
1600
  msgstr ""
1601
 
@@ -1657,64 +1685,64 @@ msgstr ""
1657
  msgid "Standard"
1658
  msgstr ""
1659
 
1660
- #: src/addons/azure.php:563
1661
  msgid "container"
1662
  msgstr ""
1663
 
1664
- #: src/addons/azure.php:563
1665
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1666
  msgstr ""
1667
 
1668
- #: src/addons/azure.php:562
1669
  msgid "optional"
1670
  msgstr ""
1671
 
1672
- #: src/addons/azure.php:558
1673
  msgid "See Microsoft's guidelines on container naming by following this link."
1674
  msgstr ""
1675
 
1676
- #: src/addons/azure.php:558
1677
  msgid "Enter the path of the %s you wish to use here."
1678
  msgstr ""
1679
 
1680
- #: src/addons/azure.php:549
1681
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1682
  msgstr ""
1683
 
1684
- #: src/addons/azure.php:548, src/addons/azure.php:552,
1685
- #: src/addons/azure.php:557, src/addons/azure.php:562
1686
  msgid "Azure"
1687
  msgstr ""
1688
 
1689
- #: src/addons/azure.php:544
1690
  msgid "Create Azure credentials in your Azure developer console."
1691
  msgstr ""
1692
 
1693
- #: src/addons/azure.php:513
1694
  msgid "Could not create the container"
1695
  msgstr ""
1696
 
1697
- #: src/addons/azure.php:364
1698
  msgid "Could not access container"
1699
  msgstr ""
1700
 
1701
- #: src/class-updraftplus.php:2854
1702
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1703
  msgstr ""
1704
 
1705
- #: src/backup.php:1715
1706
  msgid "the options table was not found"
1707
  msgstr ""
1708
 
1709
- #: src/backup.php:1713
1710
  msgid "no options or sitemeta table was found"
1711
  msgstr ""
1712
 
1713
- #: src/backup.php:1713, src/backup.php:1715
1714
  msgid "The database backup appears to have failed"
1715
  msgstr ""
1716
 
1717
- #: src/backup.php:1585
1718
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1719
  msgstr ""
1720
 
@@ -1726,47 +1754,47 @@ msgstr ""
1726
  msgid "Not installed"
1727
  msgstr ""
1728
 
1729
- #: src/addons/googlecloud.php:954, src/addons/s3-enhanced.php:63
1730
  msgid "Storage class"
1731
  msgstr ""
1732
 
1733
- #: src/addons/googlecloud.php:951
1734
  msgid "See Google's guidelines on bucket naming by following this link."
1735
  msgstr ""
1736
 
1737
- #: src/addons/googlecloud.php:951
1738
  msgid "Enter the name of the %s bucket you wish to use here."
1739
  msgstr ""
1740
 
1741
- #: src/addons/googlecloud.php:950
1742
  msgid "Bucket"
1743
  msgstr ""
1744
 
1745
- #: src/addons/googlecloud.php:946
1746
  msgid "Otherwise, you can leave it blank."
1747
  msgstr ""
1748
 
1749
- #: src/addons/googlecloud.php:946
1750
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1751
  msgstr ""
1752
 
1753
- #: src/addons/googlecloud.php:946
1754
  msgid "Enter the ID of the %s project you wish to use here."
1755
  msgstr ""
1756
 
1757
- #: src/addons/googlecloud.php:922
1758
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1759
  msgstr ""
1760
 
1761
- #: src/addons/googlecloud.php:835
1762
  msgid "You must enter a project ID in order to be able to create a new bucket."
1763
  msgstr ""
1764
 
1765
- #: src/addons/googlecloud.php:944
1766
  msgid "Project ID"
1767
  msgstr ""
1768
 
1769
- #: src/addons/googlecloud.php:692
1770
  msgid "You must save and authenticate before you can test your settings."
1771
  msgstr ""
1772
 
@@ -1775,22 +1803,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
1775
  msgstr ""
1776
 
1777
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1778
- #: src/addons/googlecloud.php:827, src/addons/googlecloud.php:874
1779
  msgid "You do not have access to this bucket."
1780
  msgstr ""
1781
 
1782
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1783
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1784
- #: src/addons/googlecloud.php:651, src/addons/googlecloud.php:827,
1785
- #: src/addons/googlecloud.php:874, src/addons/googlecloud.php:916,
1786
- #: src/addons/googlecloud.php:916, src/addons/googlecloud.php:931,
1787
- #: src/addons/googlecloud.php:939, src/addons/googlecloud.php:951
1788
  msgid "Google Cloud"
1789
  msgstr ""
1790
 
1791
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1792
- #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:827,
1793
- #: src/addons/googlecloud.php:874
1794
  msgid "%s Service Exception."
1795
  msgstr ""
1796
 
@@ -1827,7 +1855,7 @@ msgstr ""
1827
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1828
  msgstr ""
1829
 
1830
- #: src/admin.php:1688
1831
  msgid "Backup sets removed:"
1832
  msgstr ""
1833
 
@@ -1859,7 +1887,7 @@ msgstr ""
1859
  msgid "day"
1860
  msgstr ""
1861
 
1862
- #: src/addons/morestorage.php:28
1863
  msgid "(as many as you like)"
1864
  msgstr ""
1865
 
@@ -1875,31 +1903,31 @@ msgstr ""
1875
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1876
  msgstr ""
1877
 
1878
- #: src/methods/updraftvault.php:684
1879
  msgid "You do not currently have any UpdraftPlus Vault quota"
1880
  msgstr ""
1881
 
1882
- #: src/class-updraftplus.php:4595
1883
  msgid "You must upgrade MySQL to be able to use this database."
1884
  msgstr ""
1885
 
1886
- #: src/class-updraftplus.php:4595
1887
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1888
  msgstr ""
1889
 
1890
- #: src/admin.php:2423
1891
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1892
  msgstr ""
1893
 
1894
- #: src/methods/updraftvault.php:342
1895
  msgid "Don't know your email address, or forgotten your password?"
1896
  msgstr ""
1897
 
1898
- #: src/methods/updraftvault.php:335
1899
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1900
  msgstr ""
1901
 
1902
- #: src/methods/updraftvault.php:299, src/methods/updraftvault.php:328
1903
  msgid "Read the FAQs here."
1904
  msgstr ""
1905
 
@@ -1911,19 +1939,19 @@ msgstr ""
1911
  msgid "Server-side encryption"
1912
  msgstr ""
1913
 
1914
- #: src/methods/updraftvault.php:692
1915
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1916
  msgstr ""
1917
 
1918
- #: src/admin.php:1008
1919
  msgid "Go to the remote storage settings in order to connect."
1920
  msgstr ""
1921
 
1922
- #: src/admin.php:1008
1923
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1924
  msgstr ""
1925
 
1926
- #: src/methods/updraftvault.php:325
1927
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1928
  msgstr ""
1929
 
@@ -1943,67 +1971,67 @@ msgstr ""
1943
  msgid "Connecting..."
1944
  msgstr ""
1945
 
1946
- #: src/methods/updraftvault.php:445, src/methods/updraftvault.php:519
1947
  msgid "Refresh current status"
1948
  msgstr ""
1949
 
1950
- #: src/methods/updraftvault.php:443, src/methods/updraftvault.php:459,
1951
- #: src/methods/updraftvault.php:461, src/methods/updraftvault.php:519
1952
  msgid "Get more quota"
1953
  msgstr ""
1954
 
1955
- #: src/methods/updraftvault.php:440, src/methods/updraftvault.php:456,
1956
- #: src/methods/updraftvault.php:500
1957
  msgid "Current use:"
1958
  msgstr ""
1959
 
1960
- #: src/methods/updraftvault.php:435
1961
  msgid "You can get more quota here"
1962
  msgstr ""
1963
 
1964
- #: src/methods/updraftvault.php:435
1965
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1966
  msgstr ""
1967
 
1968
- #: src/admin.php:712, src/methods/updraftvault.php:369,
1969
- #: src/methods/updraftvault.php:427
1970
  msgid "Disconnect"
1971
  msgstr ""
1972
 
1973
- #: src/methods/updraftvault.php:366, src/methods/updraftvault.php:419
1974
  msgid "Quota:"
1975
  msgstr ""
1976
 
1977
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1978
  msgid "Vault owner"
1979
  msgstr ""
1980
 
1981
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1982
  msgid "Well done - there's nothing more needed to set up."
1983
  msgstr ""
1984
 
1985
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1986
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1987
  msgstr ""
1988
 
1989
- #: src/methods/updraftvault.php:371, src/methods/updraftvault.php:413
1990
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1991
  msgstr ""
1992
 
1993
- #: src/methods/updraftvault.php:342
1994
  msgid "Go here for help"
1995
  msgstr ""
1996
 
1997
- #: src/methods/updraftvault.php:337
1998
  msgid "E-mail"
1999
  msgstr ""
2000
 
2001
- #: src/central/bootstrap.php:551, src/methods/updraftvault.php:331,
2002
- #: src/methods/updraftvault.php:345
2003
  msgid "Back..."
2004
  msgstr ""
2005
 
2006
- #: src/methods/updraftvault.php:325
2007
  msgid "Subscriptions can be cancelled at any time."
2008
  msgstr ""
2009
 
@@ -2011,37 +2039,37 @@ msgstr ""
2011
  msgid "Buy it now"
2012
  msgstr ""
2013
 
2014
- #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:314,
2015
- #: src/methods/updraftvault.php:320
2016
  msgid "%s per quarter"
2017
  msgstr ""
2018
 
2019
- #: src/central/bootstrap.php:578, src/methods/updraftvault.php:299,
2020
- #: src/methods/updraftvault.php:328
2021
  msgid "Read more about it here."
2022
  msgstr ""
2023
 
2024
- #: src/methods/updraftvault.php:299, src/methods/updraftvault.php:328
2025
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
2026
  msgstr ""
2027
 
2028
- #: src/methods/updraftvault.php:295
2029
  msgid "Already purchased space?"
2030
  msgstr ""
2031
 
2032
- #: src/methods/updraftvault.php:292
2033
  msgid "Show the options"
2034
  msgstr ""
2035
 
2036
- #: src/methods/updraftvault.php:291
2037
  msgid "First time user?"
2038
  msgstr ""
2039
 
2040
- #: src/methods/updraftvault.php:288, src/methods/updraftvault.php:305
2041
  msgid "Press a button to get started."
2042
  msgstr ""
2043
 
2044
- #: src/methods/updraftvault.php:288, src/methods/updraftvault.php:305
2045
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
2046
  msgstr ""
2047
 
@@ -2061,12 +2089,12 @@ msgstr ""
2061
  msgid "Updraft Vault"
2062
  msgstr ""
2063
 
2064
- #: src/addons/azure.php:394, src/addons/backblaze.php:473,
2065
- #: src/addons/googlecloud.php:776, src/methods/s3.php:1103
2066
  msgid "Delete failed:"
2067
  msgstr ""
2068
 
2069
- #: src/backup.php:3326
2070
  msgid "The zip engine returned the message: %s."
2071
  msgstr ""
2072
 
@@ -2086,71 +2114,71 @@ msgstr ""
2086
  msgid "Allow download"
2087
  msgstr ""
2088
 
2089
- #: src/addons/migrator.php:1886
2090
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
2091
  msgstr ""
2092
 
2093
- #: src/addons/migrator.php:1871, src/admin.php:721
2094
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
2095
  msgstr ""
2096
 
2097
- #: src/addons/migrator.php:2374
2098
  msgid "Existing keys"
2099
  msgstr ""
2100
 
2101
- #: src/addons/migrator.php:2365
2102
  msgid "No keys to allow remote sites to connect have yet been created."
2103
  msgstr ""
2104
 
2105
- #: src/addons/migrator.php:2347
2106
  msgid "Your new key:"
2107
  msgstr ""
2108
 
2109
- #: src/addons/migrator.php:2326
2110
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
2111
  msgstr ""
2112
 
2113
- #: src/addons/migrator.php:2308
2114
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
2115
  msgstr ""
2116
 
2117
- #: src/addons/migrator.php:2308
2118
  msgid "Keys for this site are created in the section below the one you just pressed in."
2119
  msgstr ""
2120
 
2121
- #: src/addons/migrator.php:1988, src/central/bootstrap.php:387
2122
  msgid "You must copy and paste this key now - it cannot be shown again."
2123
  msgstr ""
2124
 
2125
- #: src/addons/migrator.php:1988, src/central/bootstrap.php:387
2126
  msgid "Key created successfully."
2127
  msgstr ""
2128
 
2129
- #: src/addons/migrator.php:1973
2130
  msgid "A key with this name already exists; you must use a unique name."
2131
  msgstr ""
2132
 
2133
- #: src/addons/migrator.php:1917
2134
  msgid "Also send this backup to the active remote storage locations"
2135
  msgstr ""
2136
 
2137
- #: src/addons/migrator.php:1882
2138
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
2139
  msgstr ""
2140
 
2141
- #: src/addons/migrator.php:1838
2142
  msgid "site not found"
2143
  msgstr ""
2144
 
2145
- #: src/addons/migrator.php:1823
2146
  msgid "Backup data will be sent to:"
2147
  msgstr ""
2148
 
2149
- #: src/addons/migrator.php:209
2150
  msgid "Restore an existing backup set onto this site"
2151
  msgstr ""
2152
 
2153
- #: src/addons/migrator.php:202
2154
  msgid "This site has no backups to restore from yet."
2155
  msgstr ""
2156
 
@@ -2162,7 +2190,7 @@ msgstr ""
2162
  msgid "This storage method does not allow downloading"
2163
  msgstr ""
2164
 
2165
- #: src/admin.php:3792
2166
  msgid "(backup set imported from remote location)"
2167
  msgstr ""
2168
 
@@ -2182,7 +2210,7 @@ msgstr ""
2182
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
2183
  msgstr ""
2184
 
2185
- #: src/addons/migrator.php:1899, src/admin.php:728
2186
  msgid "Testing connection..."
2187
  msgstr ""
2188
 
@@ -2202,92 +2230,92 @@ msgstr ""
2202
  msgid "Creating..."
2203
  msgstr ""
2204
 
2205
- #: src/addons/migrator.php:2325
2206
  msgid "Or, receive a backup from a remote site"
2207
  msgstr ""
2208
 
2209
- #: src/addons/migrator.php:2314
2210
  msgid "Paste key here"
2211
  msgstr ""
2212
 
2213
- #: src/addons/migrator.php:2308
2214
  msgid "How do I get a site's key?"
2215
  msgstr ""
2216
 
2217
- #: src/addons/migrator.php:2308
2218
  msgid "To add a site as a destination for sending to, enter that site's key below."
2219
  msgstr ""
2220
 
2221
- #: src/addons/migrator.php:2305
2222
  msgid "Or, send a backup to another site"
2223
  msgstr ""
2224
 
2225
- #: src/addons/migrator.php:2070, src/admin.php:729
2226
  msgid "Send"
2227
  msgstr ""
2228
 
2229
- #: src/addons/migrator.php:2064, src/admin.php:720
2230
  msgid "Send to site:"
2231
  msgstr ""
2232
 
2233
- #: src/addons/migrator.php:2062
2234
  msgid "No receiving sites have yet been added."
2235
  msgstr ""
2236
 
2237
- #: src/addons/migrator.php:2043
2238
  msgid "It is for sending backups to the following site: "
2239
  msgstr ""
2240
 
2241
- #: src/addons/migrator.php:2043
2242
  msgid "The key was successfully added."
2243
  msgstr ""
2244
 
2245
- #: src/addons/migrator.php:2027
2246
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2247
  msgstr ""
2248
 
2249
- #: src/addons/migrator.php:2016, src/addons/migrator.php:2018,
2250
- #: src/addons/migrator.php:2022
2251
  msgid "The entered key was corrupt - please try again."
2252
  msgstr ""
2253
 
2254
- #: src/addons/migrator.php:2014
2255
  msgid "The entered key was the wrong length - please try again."
2256
  msgstr ""
2257
 
2258
- #: src/addons/migrator.php:2004
2259
  msgid "key"
2260
  msgstr ""
2261
 
2262
- #: src/methods/ftp.php:352
2263
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2264
  msgstr ""
2265
 
2266
- #: src/methods/ftp.php:350
2267
  msgid "Passive mode"
2268
  msgstr ""
2269
 
2270
- #: src/methods/ftp.php:345
2271
  msgid "Remote path"
2272
  msgstr ""
2273
 
2274
- #: src/methods/ftp.php:340
2275
  msgid "FTP password"
2276
  msgstr ""
2277
 
2278
- #: src/methods/ftp.php:335
2279
  msgid "FTP login"
2280
  msgstr ""
2281
 
2282
- #: src/methods/ftp.php:330
2283
  msgid "FTP server"
2284
  msgstr ""
2285
 
2286
- #: src/addons/migrator.php:174
2287
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
2288
  msgstr ""
2289
 
2290
- #: src/addons/migrator.php:174
2291
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2292
  msgstr ""
2293
 
@@ -2295,7 +2323,7 @@ msgstr ""
2295
  msgid "Resetting..."
2296
  msgstr ""
2297
 
2298
- #: src/addons/migrator.php:2314, src/admin.php:717
2299
  msgid "Add site"
2300
  msgstr ""
2301
 
@@ -2323,15 +2351,15 @@ msgstr ""
2323
  msgid "Go here to re-enter your password."
2324
  msgstr ""
2325
 
2326
- #: src/addons/migrator.php:238
2327
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2328
  msgstr ""
2329
 
2330
- #: src/addons/migrator.php:209
2331
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2332
  msgstr ""
2333
 
2334
- #: src/addons/migrator.php:176
2335
  msgid "To restore using any of the backup sets below, press the button."
2336
  msgstr ""
2337
 
@@ -2339,49 +2367,49 @@ msgstr ""
2339
  msgid "You have made changes to your settings, and not saved."
2340
  msgstr ""
2341
 
2342
- #: src/addons/onedrive.php:1024
2343
  msgid "N.B. %s is not case-sensitive."
2344
  msgstr ""
2345
 
2346
- #: src/addons/onedrive.php:1014
2347
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2348
  msgstr ""
2349
 
2350
- #: src/addons/azure.php:544, src/addons/migrator.php:1886,
2351
- #: src/addons/onedrive.php:1000
2352
  msgid "For longer help, including screenshots, follow this link."
2353
  msgstr ""
2354
 
2355
- #: src/addons/onedrive.php:993
2356
  msgid "Create OneDrive credentials in your OneDrive developer console."
2357
  msgstr ""
2358
 
2359
- #: src/addons/onedrive.php:986
2360
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2361
  msgstr ""
2362
 
2363
- #: src/addons/azure.php:537
2364
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2365
  msgstr ""
2366
 
2367
- #: src/addons/onedrive.php:952, src/addons/onedrive.php:954
2368
  msgid "%s authorisation failed:"
2369
  msgstr ""
2370
 
2371
- #: src/addons/onedrive.php:827, src/addons/onedrive.php:1013,
2372
- #: src/addons/onedrive.php:1017
2373
  msgid "OneDrive"
2374
  msgstr ""
2375
 
2376
- #: src/addons/onedrive.php:640
2377
  msgid "Please re-authorize the connection to your %s account."
2378
  msgstr ""
2379
 
2380
- #: src/methods/email.php:75
2381
  msgid "configure it here"
2382
  msgstr ""
2383
 
2384
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657
2385
  msgid "To remove the block, please go here."
2386
  msgstr ""
2387
 
@@ -2526,7 +2554,7 @@ msgstr ""
2526
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2527
  msgstr ""
2528
 
2529
- #: src/methods/s3.php:879
2530
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2531
  msgstr ""
2532
 
@@ -2538,18 +2566,18 @@ msgstr ""
2538
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
2539
  msgstr ""
2540
 
2541
- #: src/addons/onedrive.php:609, src/addons/onedrive.php:633,
2542
- #: src/methods/updraftvault.php:657, src/udaddons/updraftplus-addons.php:873,
2543
  #: src/udaddons/updraftplus-addons.php:887
2544
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2545
  msgstr ""
2546
 
2547
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657,
2548
  #: src/udaddons/updraftplus-addons.php:887
2549
  msgid "It appears that your web server's IP Address (%s) is blocked."
2550
  msgstr ""
2551
 
2552
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657,
2553
  #: src/udaddons/updraftplus-addons.php:887
2554
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2555
  msgstr ""
@@ -2601,7 +2629,7 @@ msgstr ""
2601
  msgid "(at same time as files backup)"
2602
  msgstr ""
2603
 
2604
- #: src/admin.php:3263
2605
  msgid "No backup has been completed"
2606
  msgstr ""
2607
 
@@ -2648,21 +2676,21 @@ msgstr ""
2648
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2649
  msgstr ""
2650
 
2651
- #: src/addons/sftp.php:436
2652
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2653
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2654
  msgstr ""
2655
 
2656
- #: src/addons/sftp.php:399
2657
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
2658
  msgstr ""
2659
 
2660
- #: src/methods/openstack2.php:183
2661
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2662
  msgid "tenant"
2663
  msgstr ""
2664
 
2665
- #: src/methods/openstack2.php:132
2666
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2667
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2668
  msgstr ""
@@ -2675,7 +2703,7 @@ msgstr ""
2675
  msgid "Check this box to have a basic report sent to"
2676
  msgstr ""
2677
 
2678
- #: src/admin.php:3277
2679
  msgctxt "i.e. Non-automatic"
2680
  msgid "Manual"
2681
  msgstr ""
@@ -2693,7 +2721,7 @@ msgstr ""
2693
  msgid "Any other file/directory on your server that you wish to back up"
2694
  msgstr ""
2695
 
2696
- #: src/admin.php:2440
2697
  msgid "For even more features and personal support, check out "
2698
  msgstr ""
2699
 
@@ -2787,7 +2815,7 @@ msgstr ""
2787
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2788
  msgstr ""
2789
 
2790
- #: src/admin.php:2806, src/admin.php:3823
2791
  msgid "View Log"
2792
  msgstr ""
2793
 
@@ -2804,7 +2832,7 @@ msgstr ""
2804
  msgid "and retain this many scheduled backups"
2805
  msgstr ""
2806
 
2807
- #: src/admin.php:3233
2808
  msgid "incremental backup; base backup: %s"
2809
  msgstr ""
2810
 
@@ -2816,28 +2844,28 @@ msgstr ""
2816
  msgid "Upload files into UpdraftPlus."
2817
  msgstr ""
2818
 
2819
- #: src/admin.php:950, src/includes/class-commands.php:394,
2820
  #: src/templates/wp-admin/settings/tab-status.php:22
2821
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2822
  msgstr ""
2823
 
2824
- #: src/class-updraftplus.php:4511
2825
  msgid "Backup label:"
2826
  msgstr ""
2827
 
2828
- #: src/addons/backblaze.php:189, src/admin.php:1951
2829
  msgid "Error: unexpected file read fail"
2830
  msgstr ""
2831
 
2832
- #: src/backup.php:3332
2833
  msgid "check your log for more details."
2834
  msgstr ""
2835
 
2836
- #: src/backup.php:3330
2837
  msgid "your web hosting account appears to be full; please see: %s"
2838
  msgstr ""
2839
 
2840
- #: src/backup.php:3328
2841
  msgid "A zip error occurred"
2842
  msgstr ""
2843
 
@@ -2845,19 +2873,19 @@ msgstr ""
2845
  msgid "Your label for this backup (optional)"
2846
  msgstr ""
2847
 
2848
- #: src/addons/googlecloud.php:916, src/methods/googledrive.php:1107
2849
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
2850
  msgstr ""
2851
 
2852
- #: src/methods/updraftvault.php:695, src/udaddons/updraftplus-addons.php:926
2853
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2854
  msgstr ""
2855
 
2856
- #: src/methods/updraftvault.php:692, src/udaddons/updraftplus-addons.php:922
2857
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2858
  msgstr ""
2859
 
2860
- #: src/methods/updraftvault.php:633, src/udaddons/updraftplus-addons.php:790
2861
  msgid "You need to supply both an email address and a password"
2862
  msgstr ""
2863
 
@@ -2865,36 +2893,36 @@ msgstr ""
2865
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2866
  msgstr ""
2867
 
2868
- #: src/class-updraftplus.php:4530
2869
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2870
  msgstr ""
2871
 
2872
- #: src/class-updraftplus.php:4530
2873
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2874
  msgstr ""
2875
 
2876
- #: src/addons/migrator.php:1184
2877
  msgid "already done"
2878
  msgstr ""
2879
 
2880
- #: src/addons/migrator.php:1141
2881
  msgid "skipped (not in list)"
2882
  msgstr ""
2883
 
2884
- #: src/addons/migrator.php:1141, src/addons/migrator.php:1184,
2885
- #: src/addons/migrator.php:1318
2886
  msgid "Search and replacing table:"
2887
  msgstr ""
2888
 
2889
- #: src/addons/migrator.php:350
2890
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2891
  msgstr ""
2892
 
2893
- #: src/addons/migrator.php:350
2894
  msgid "These tables only"
2895
  msgstr ""
2896
 
2897
- #: src/addons/migrator.php:349
2898
  msgid "Rows per batch"
2899
  msgstr ""
2900
 
@@ -2906,19 +2934,19 @@ msgstr ""
2906
  msgid "You need to connect to receive future updates to UpdraftPlus."
2907
  msgstr ""
2908
 
2909
- #: src/class-updraftplus.php:4503
2910
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2911
  msgstr ""
2912
 
2913
- #: src/class-updraftplus.php:4503
2914
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2915
  msgstr ""
2916
 
2917
- #: src/class-updraftplus.php:4503
2918
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2919
  msgstr ""
2920
 
2921
- #: src/class-updraftplus.php:4503
2922
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2923
  msgstr ""
2924
 
@@ -2947,7 +2975,7 @@ msgstr ""
2947
  msgid "UpdraftPlus is on social media - check us out!"
2948
  msgstr ""
2949
 
2950
- #: src/admin.php:3890
2951
  msgid "Why am I seeing this?"
2952
  msgstr ""
2953
 
@@ -2959,15 +2987,15 @@ msgstr ""
2959
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2960
  msgstr ""
2961
 
2962
- #: src/admin.php:1890, src/admin.php:1902
2963
  msgid "Start backup"
2964
  msgstr ""
2965
 
2966
- #: src/class-updraftplus.php:4475, src/restorer.php:1045
2967
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2968
  msgstr ""
2969
 
2970
- #: src/admin.php:3131
2971
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2972
  msgstr ""
2973
 
@@ -2975,11 +3003,11 @@ msgstr ""
2975
  msgid "Unless you have a problem, you can completely ignore everything here."
2976
  msgstr ""
2977
 
2978
- #: src/admin.php:2126
2979
  msgid "This file could not be uploaded"
2980
  msgstr ""
2981
 
2982
- #: src/admin.php:2089
2983
  msgid "You will find more information about this in the Settings section."
2984
  msgstr ""
2985
 
@@ -2999,15 +3027,15 @@ msgstr ""
2999
  msgid "Memory limit"
3000
  msgstr ""
3001
 
3002
- #: src/class-updraftplus.php:4944, src/restorer.php:1529
3003
  msgid "restoration"
3004
  msgstr ""
3005
 
3006
- #: src/backup.php:960
3007
  msgid "Incremental"
3008
  msgstr ""
3009
 
3010
- #: src/backup.php:960
3011
  msgid "Full backup"
3012
  msgstr ""
3013
 
@@ -3023,42 +3051,42 @@ msgstr ""
3023
  msgid "Backup succeeded"
3024
  msgstr ""
3025
 
3026
- #: src/admin.php:3278, src/admin.php:3279, src/admin.php:3280,
3027
  #: src/updraftplus.php:99, src/updraftplus.php:100
3028
  msgid "Every %s hours"
3029
  msgstr ""
3030
 
3031
- #: src/addons/migrator.php:835, src/addons/migrator.php:837
3032
  msgid "search and replace"
3033
  msgstr ""
3034
 
3035
- #: src/addons/migrator.php:352
3036
  msgid "Go"
3037
  msgstr ""
3038
 
3039
- #: src/addons/migrator.php:341
3040
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
3041
  msgstr ""
3042
 
3043
- #: src/addons/migrator.php:340
3044
  msgid "This can easily destroy your site; so, use it with care!"
3045
  msgstr ""
3046
 
3047
- #: src/addons/migrator.php:296, src/addons/migrator.php:348
3048
  msgid "Replace with"
3049
  msgstr ""
3050
 
3051
- #: src/addons/migrator.php:295, src/addons/migrator.php:347
3052
  msgid "Search for"
3053
  msgstr ""
3054
 
3055
- #: src/addons/migrator.php:294, src/addons/migrator.php:339,
3056
  #: src/templates/wp-admin/advanced/search-replace.php:7,
3057
  #: src/templates/wp-admin/advanced/tools-menu.php:18
3058
  msgid "Search / replace database"
3059
  msgstr ""
3060
 
3061
- #: src/addons/migrator.php:300
3062
  msgid "search term"
3063
  msgstr ""
3064
 
@@ -3066,19 +3094,19 @@ msgstr ""
3066
  msgid "Too many database errors have occurred - aborting"
3067
  msgstr ""
3068
 
3069
- #: src/backup.php:1026
3070
  msgid "read more at %s"
3071
  msgstr ""
3072
 
3073
- #: src/backup.php:1026
3074
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3075
  msgstr ""
3076
 
3077
- #: src/methods/googledrive.php:1114
3078
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
3079
  msgstr ""
3080
 
3081
- #: src/admin.php:3634
3082
  msgid "You have not yet made any backups."
3083
  msgstr ""
3084
 
@@ -3098,11 +3126,11 @@ msgstr ""
3098
  msgid "Free disk space in account:"
3099
  msgstr ""
3100
 
3101
- #: src/admin.php:4475, src/templates/wp-admin/settings/tab-status.php:27
3102
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3103
  msgstr ""
3104
 
3105
- #: src/admin.php:534, src/admin.php:676, src/admin.php:1736,
3106
  #: src/includes/deprecated-actions.php:29,
3107
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3108
  #: src/templates/wp-admin/settings/tab-bar.php:6
@@ -3113,15 +3141,15 @@ msgstr ""
3113
  msgid "Current Status"
3114
  msgstr ""
3115
 
3116
- #: src/admin.php:955
3117
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
3118
  msgstr ""
3119
 
3120
- #: src/admin.php:955
3121
  msgid "To make a backup, just press the Backup Now button."
3122
  msgstr ""
3123
 
3124
- #: src/admin.php:955
3125
  msgid "Welcome to UpdraftPlus!"
3126
  msgstr ""
3127
 
@@ -3193,11 +3221,11 @@ msgstr ""
3193
  msgid "user"
3194
  msgstr ""
3195
 
3196
- #: src/class-updraftplus.php:1760
3197
  msgid "External database (%s)"
3198
  msgstr ""
3199
 
3200
- #: src/methods/googledrive.php:1114
3201
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
3202
  msgstr ""
3203
 
@@ -3205,12 +3233,12 @@ msgstr ""
3205
  msgid "failed to access parent folder"
3206
  msgstr ""
3207
 
3208
- #: src/addons/googlecloud.php:631, src/addons/onedrive.php:795,
3209
- #: src/addons/onedrive.php:806, src/methods/googledrive.php:420
3210
  msgid "However, subsequent access attempts failed:"
3211
  msgstr ""
3212
 
3213
- #: src/admin.php:3659
3214
  msgid "External database"
3215
  msgstr ""
3216
 
@@ -3242,7 +3270,7 @@ msgstr ""
3242
  msgid "use UpdraftPlus Premium"
3243
  msgstr ""
3244
 
3245
- #: src/class-updraftplus.php:4362
3246
  msgid "Decryption failed. The database file is encrypted."
3247
  msgstr ""
3248
 
@@ -3255,15 +3283,15 @@ msgstr ""
3255
  msgid "An error occurred on the first %s command - aborting run"
3256
  msgstr ""
3257
 
3258
- #: src/addons/moredatabase.php:105, src/backup.php:1526
3259
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3260
  msgstr ""
3261
 
3262
- #: src/backup.php:1526
3263
  msgid "database connection attempt failed."
3264
  msgstr ""
3265
 
3266
- #: src/addons/migrator.php:1072
3267
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3268
  msgstr ""
3269
 
@@ -3271,41 +3299,41 @@ msgstr ""
3271
  msgid "In %s, path names are case sensitive."
3272
  msgstr ""
3273
 
3274
- #: src/addons/azure.php:563, src/addons/google-enhanced.php:76,
3275
- #: src/addons/onedrive.php:1024
3276
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3277
  msgstr ""
3278
 
3279
- #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:951,
3280
- #: src/addons/onedrive.php:1024
3281
  msgid "e.g. %s"
3282
  msgstr ""
3283
 
3284
- #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1024
3285
  msgid "Enter the path of the %s folder you wish to use here."
3286
  msgstr ""
3287
 
3288
- #: src/methods/openstack2.php:163
3289
  msgid "Container"
3290
  msgstr ""
3291
 
3292
- #: src/methods/openstack2.php:146
3293
  msgid "Leave this blank, and a default will be chosen."
3294
  msgstr ""
3295
 
3296
- #: src/methods/openstack2.php:137
3297
  msgid "Tenant"
3298
  msgstr ""
3299
 
3300
- #: src/methods/openstack2.php:137
3301
  msgid "Follow this link for more information"
3302
  msgstr ""
3303
 
3304
- #: src/methods/openstack2.php:129, src/methods/openstack2.php:188
3305
  msgid "authentication URI"
3306
  msgstr ""
3307
 
3308
- #: src/methods/openstack2.php:124
3309
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
3310
  msgstr ""
3311
 
@@ -3325,24 +3353,24 @@ msgstr ""
3325
  msgid "Failed to upload %s"
3326
  msgstr ""
3327
 
3328
- #: src/methods/dropbox.php:664, src/methods/dropbox.php:666
3329
  msgid "Success:"
3330
  msgstr ""
3331
 
3332
- #: src/addons/onedrive.php:1045, src/methods/dropbox.php:517
3333
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
3334
  msgstr ""
3335
 
3336
- #: src/addons/onedrive.php:1037, src/methods/dropbox.php:501
3337
  msgid "(You appear to be already authenticated)."
3338
  msgstr ""
3339
 
3340
- #: src/methods/dropbox.php:497, src/methods/dropbox.php:505,
3341
- #: src/methods/dropbox.php:517
3342
  msgid "Dropbox"
3343
  msgstr ""
3344
 
3345
- #: src/addons/onedrive.php:1030, src/methods/dropbox.php:497
3346
  msgid "Authenticate with %s"
3347
  msgstr ""
3348
 
@@ -3373,34 +3401,34 @@ msgstr ""
3373
  msgid "%s error - failed to access the container"
3374
  msgstr ""
3375
 
3376
- #: src/addons/googlecloud.php:1016, src/addons/onedrive.php:1069,
3377
- #: src/methods/dropbox.php:560, src/methods/googledrive.php:1179
3378
  msgid "Account holder's name: %s."
3379
  msgstr ""
3380
 
3381
- #: src/methods/googledrive.php:1157
3382
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3383
  msgstr ""
3384
 
3385
- #: src/methods/googledrive.php:1144
3386
  msgid "It is an ID number internal to Google Drive"
3387
  msgstr ""
3388
 
3389
- #: src/methods/googledrive.php:1144
3390
  msgid "<strong>This is NOT a folder name</strong>."
3391
  msgstr ""
3392
 
3393
- #: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1022,
3394
- #: src/methods/googledrive.php:1139, src/methods/googledrive.php:1150
3395
  msgid "Folder"
3396
  msgstr ""
3397
 
3398
- #: src/addons/googlecloud.php:296, src/addons/onedrive.php:377,
3399
- #: src/methods/googledrive.php:1063
3400
  msgid "%s download: failed: file not found"
3401
  msgstr ""
3402
 
3403
- #: src/addons/googlecloud.php:651, src/methods/googledrive.php:440
3404
  msgid "Name: %s."
3405
  msgstr ""
3406
 
@@ -3429,7 +3457,7 @@ msgstr ""
3429
  msgid "Fetch"
3430
  msgstr ""
3431
 
3432
- #: src/addons/migrator.php:433,
3433
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3434
  #: src/templates/wp-admin/settings/form-contents.php:190
3435
  msgid "This feature requires %s version %s or later"
@@ -3439,7 +3467,7 @@ msgstr ""
3439
  msgid "Failed to unpack the archive"
3440
  msgstr ""
3441
 
3442
- #: src/class-updraftplus.php:1292
3443
  msgid "Error - failed to download the file"
3444
  msgstr ""
3445
 
@@ -3459,16 +3487,16 @@ msgstr ""
3459
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3460
  msgstr ""
3461
 
3462
- #: src/addons/sftp.php:497
3463
  msgid "password/key"
3464
  msgstr ""
3465
 
3466
- #: src/addons/migrator.php:2332, src/addons/sftp.php:433, src/admin.php:723,
3467
- #: src/admin.php:4696
3468
  msgid "Key"
3469
  msgstr ""
3470
 
3471
- #: src/addons/sftp.php:428
3472
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3473
  msgstr ""
3474
 
@@ -3480,24 +3508,24 @@ msgstr ""
3480
  msgid "SCP/SFTP password/key"
3481
  msgstr ""
3482
 
3483
- #: src/admin.php:3703
3484
  msgid "Files backup (created by %s)"
3485
  msgstr ""
3486
 
3487
- #: src/admin.php:3703
3488
  msgid "Files and database WordPress backup (created by %s)"
3489
  msgstr ""
3490
 
3491
- #: src/addons/importer.php:276, src/admin.php:3697,
3492
  #: src/includes/class-backup-history.php:279
3493
  msgid "Backup created by: %s."
3494
  msgstr ""
3495
 
3496
- #: src/admin.php:3657
3497
  msgid "Database (created by %s)"
3498
  msgstr ""
3499
 
3500
- #: src/admin.php:3651, src/admin.php:3699
3501
  msgid "unknown source"
3502
  msgstr ""
3503
 
@@ -3509,15 +3537,15 @@ msgstr ""
3509
  msgid "Upload backup files"
3510
  msgstr ""
3511
 
3512
- #: src/admin.php:2141
3513
  msgid "This backup was created by %s, and can be imported."
3514
  msgstr ""
3515
 
3516
- #: src/admin.php:984
3517
  msgid "Read this page for a guide to possible causes and how to fix it."
3518
  msgstr ""
3519
 
3520
- #: src/admin.php:984
3521
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3522
  msgstr ""
3523
 
@@ -3534,7 +3562,7 @@ msgstr ""
3534
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3535
  msgstr ""
3536
 
3537
- #: src/admin.php:3700, src/includes/class-wpadmin-commands.php:152,
3538
  #: src/restorer.php:1498
3539
  msgid "Backup created by unknown source (%s) - cannot be restored."
3540
  msgstr ""
@@ -3547,16 +3575,16 @@ msgstr ""
3547
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3548
  msgstr ""
3549
 
3550
- #: src/methods/dropbox.php:309
3551
  msgid "%s returned an unexpected HTTP response: %s"
3552
  msgstr ""
3553
 
3554
- #: src/addons/sftp.php:967
3555
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3556
  msgstr ""
3557
 
3558
- #: src/addons/backblaze.php:525, src/methods/cloudfiles.php:234,
3559
- #: src/methods/dropbox.php:290, src/methods/openstack-base.php:118
3560
  msgid "No settings were found"
3561
  msgstr ""
3562
 
@@ -3568,7 +3596,7 @@ msgstr ""
3568
  msgid "Rescanning remote and local storage for backup sets..."
3569
  msgstr ""
3570
 
3571
- #: src/addons/googlecloud.php:954, src/addons/googlecloud.php:967,
3572
  #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
3573
  msgid "(Read more)"
3574
  msgstr ""
@@ -3586,7 +3614,7 @@ msgstr ""
3586
  msgid "Remove"
3587
  msgstr ""
3588
 
3589
- #: src/methods/s3.php:867
3590
  msgid "Other %s FAQs."
3591
  msgstr ""
3592
 
@@ -3594,28 +3622,28 @@ msgstr ""
3594
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3595
  msgstr ""
3596
 
3597
- #: src/addons/morefiles.php:445, src/admin.php:3382
3598
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3599
  msgstr ""
3600
 
3601
- #: src/class-updraftplus.php:4944, src/methods/ftp.php:309,
3602
  #: src/restorer.php:1529
3603
  msgid "Your hosting company must enable these functions before %s can work."
3604
  msgstr ""
3605
 
3606
- #: src/class-updraftplus.php:4944, src/methods/ftp.php:309
3607
  msgid "Your web server's PHP installation has these functions disabled: %s."
3608
  msgstr ""
3609
 
3610
- #: src/methods/ftp.php:306
3611
  msgid "encrypted FTP (explicit encryption)"
3612
  msgstr ""
3613
 
3614
- #: src/methods/ftp.php:305
3615
  msgid "encrypted FTP (implicit encryption)"
3616
  msgstr ""
3617
 
3618
- #: src/methods/ftp.php:304
3619
  msgid "regular non-encrypted FTP"
3620
  msgstr ""
3621
 
@@ -3673,15 +3701,15 @@ msgstr ""
3673
  msgid "Dismiss from main dashboard (for %s weeks)"
3674
  msgstr ""
3675
 
3676
- #: src/class-updraftplus.php:4994
3677
  msgid "The attempt to undo the double-compression succeeded."
3678
  msgstr ""
3679
 
3680
- #: src/class-updraftplus.php:4971, src/class-updraftplus.php:4992
3681
  msgid "The attempt to undo the double-compression failed."
3682
  msgstr ""
3683
 
3684
- #: src/class-updraftplus.php:4964
3685
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3686
  msgstr ""
3687
 
@@ -3689,15 +3717,15 @@ msgstr ""
3689
  msgid "Constants"
3690
  msgstr ""
3691
 
3692
- #: src/backup.php:1763
3693
  msgid "Failed to open database file for reading:"
3694
  msgstr ""
3695
 
3696
- #: src/backup.php:1574
3697
  msgid "No database tables found"
3698
  msgstr ""
3699
 
3700
- #: src/backup.php:1572
3701
  msgid "please wait for the rescheduled attempt"
3702
  msgstr ""
3703
 
@@ -3705,7 +3733,7 @@ msgstr ""
3705
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
3706
  msgstr ""
3707
 
3708
- #: src/addons/onedrive.php:94, src/methods/dropbox.php:199
3709
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
3710
  msgstr ""
3711
 
@@ -3714,7 +3742,7 @@ msgstr ""
3714
  msgid "Errors occurred:"
3715
  msgstr ""
3716
 
3717
- #: src/admin.php:3909
3718
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3719
  msgstr ""
3720
 
@@ -3738,20 +3766,20 @@ msgstr ""
3738
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3739
  msgstr ""
3740
 
3741
- #: src/admin.php:959, src/class-updraftplus.php:810
3742
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3743
  msgstr ""
3744
 
3745
- #: src/addons/migrator.php:267
3746
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3747
  msgstr ""
3748
 
3749
- #: src/addons/sftp.php:722, src/addons/sftp.php:725,
3750
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
3751
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3752
  msgstr ""
3753
 
3754
- #: src/addons/moredatabase.php:137, src/admin.php:1480
3755
  msgid "Messages:"
3756
  msgstr ""
3757
 
@@ -3763,56 +3791,56 @@ msgstr ""
3763
  msgid "The directory does not exist"
3764
  msgstr ""
3765
 
3766
- #: src/addons/cloudfiles-enhanced.php:277
3767
  msgid "New User's Email Address"
3768
  msgstr ""
3769
 
3770
- #: src/addons/cloudfiles-enhanced.php:274
3771
  msgid "New User's Username"
3772
  msgstr ""
3773
 
3774
- #: src/addons/cloudfiles-enhanced.php:271
3775
  msgid "Admin API Key"
3776
  msgstr ""
3777
 
3778
- #: src/addons/cloudfiles-enhanced.php:268
3779
  msgid "Admin Username"
3780
  msgstr ""
3781
 
3782
- #: src/addons/cloudfiles-enhanced.php:263
3783
  msgid "US or UK Rackspace Account"
3784
  msgstr ""
3785
 
3786
- #: src/addons/cloudfiles-enhanced.php:255
3787
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
3788
  msgstr ""
3789
 
3790
- #: src/addons/cloudfiles-enhanced.php:252
3791
  msgid "Create new API user and container"
3792
  msgstr ""
3793
 
3794
- #: src/addons/cloudfiles-enhanced.php:190
3795
  msgid "API Key: %s"
3796
  msgstr ""
3797
 
3798
- #: src/addons/cloudfiles-enhanced.php:190
3799
  msgid "Password: %s"
3800
  msgstr ""
3801
 
3802
- #: src/addons/cloudfiles-enhanced.php:190, src/addons/s3-enhanced.php:318
3803
  msgid "Username: %s"
3804
  msgstr ""
3805
 
3806
- #: src/addons/cloudfiles-enhanced.php:149,
3807
- #: src/addons/cloudfiles-enhanced.php:152,
3808
- #: src/addons/cloudfiles-enhanced.php:156,
3809
- #: src/addons/cloudfiles-enhanced.php:168,
3810
- #: src/addons/cloudfiles-enhanced.php:175,
3811
- #: src/addons/cloudfiles-enhanced.php:179
3812
  msgid "Cloud Files operation failed (%s)"
3813
  msgstr ""
3814
 
3815
- #: src/addons/cloudfiles-enhanced.php:147
3816
  msgid "Conflict: that user or email address already exists"
3817
  msgstr ""
3818
 
@@ -3848,71 +3876,71 @@ msgstr ""
3848
  msgid "Rackspace Cloud Files, enhanced"
3849
  msgstr ""
3850
 
3851
- #: src/addons/cloudfiles-enhanced.php:284, src/methods/cloudfiles-new.php:139,
3852
- #: src/methods/cloudfiles.php:482
3853
  msgid "Cloud Files Container"
3854
  msgstr ""
3855
 
3856
- #: src/methods/cloudfiles-new.php:134, src/methods/cloudfiles.php:477
3857
  msgid "Cloud Files API Key"
3858
  msgstr ""
3859
 
3860
- #: src/methods/cloudfiles-new.php:129
3861
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3862
  msgstr ""
3863
 
3864
- #: src/methods/cloudfiles-new.php:126
3865
  msgid "Cloud Files Username"
3866
  msgstr ""
3867
 
3868
- #: src/addons/cloudfiles-enhanced.php:47, src/methods/cloudfiles-new.php:158
3869
  msgid "London (LON)"
3870
  msgstr ""
3871
 
3872
- #: src/addons/cloudfiles-enhanced.php:46, src/methods/cloudfiles-new.php:157
3873
  msgid "Hong Kong (HKG)"
3874
  msgstr ""
3875
 
3876
- #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:156
3877
  msgid "Northern Virginia (IAD)"
3878
  msgstr ""
3879
 
3880
- #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:155
3881
  msgid "Chicago (ORD)"
3882
  msgstr ""
3883
 
3884
- #: src/addons/cloudfiles-enhanced.php:43, src/methods/cloudfiles-new.php:154
3885
  msgid "Sydney (SYD)"
3886
  msgstr ""
3887
 
3888
- #: src/addons/cloudfiles-enhanced.php:42, src/methods/cloudfiles-new.php:153
3889
  msgid "Dallas (DFW) (default)"
3890
  msgstr ""
3891
 
3892
- #: src/addons/cloudfiles-enhanced.php:280, src/methods/cloudfiles-new.php:116
3893
  msgid "Cloud Files Storage Region"
3894
  msgstr ""
3895
 
3896
- #: src/methods/cloudfiles-new.php:109
3897
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3898
  msgstr ""
3899
 
3900
- #: src/methods/cloudfiles-new.php:107
3901
  msgid "US or UK-based Rackspace Account"
3902
  msgstr ""
3903
 
3904
- #: src/addons/cloudfiles-enhanced.php:264, src/methods/cloudfiles-new.php:107
3905
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3906
  msgstr ""
3907
 
3908
- #: src/addons/cloudfiles-enhanced.php:145, src/addons/s3-enhanced.php:221,
3909
  #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:484,
3910
  #: src/methods/openstack-base.php:486, src/methods/openstack-base.php:507,
3911
  #: src/methods/openstack2.php:33
3912
  msgid "Authorisation failed (check your credentials)"
3913
  msgstr ""
3914
 
3915
- #: src/methods/updraftvault.php:607, src/udaddons/options.php:270
3916
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3917
  msgstr ""
3918
 
@@ -3928,15 +3956,15 @@ msgstr ""
3928
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3929
  msgstr ""
3930
 
3931
- #: src/admin.php:673, src/admin.php:4188
3932
  msgid "Error data:"
3933
  msgstr ""
3934
 
3935
- #: src/admin.php:3861
3936
  msgid "Backup does not exist in the backup history"
3937
  msgstr ""
3938
 
3939
- #: src/admin.php:2741
3940
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3941
  msgstr ""
3942
 
@@ -3976,11 +4004,11 @@ msgstr ""
3976
  msgid "Email reports"
3977
  msgstr ""
3978
 
3979
- #: src/class-updraftplus.php:1768, src/class-updraftplus.php:1773
3980
  msgid "%s checksum: %s"
3981
  msgstr ""
3982
 
3983
- #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1743
3984
  msgid "files: %s"
3985
  msgstr ""
3986
 
@@ -3992,7 +4020,7 @@ msgstr ""
3992
  msgid "Debugging information"
3993
  msgstr ""
3994
 
3995
- #: src/addons/reporting.php:222, src/admin.php:3590
3996
  msgid "Uploaded to:"
3997
  msgstr ""
3998
 
@@ -4033,22 +4061,22 @@ msgstr ""
4033
  msgid "%d errors, %d warnings"
4034
  msgstr ""
4035
 
4036
- #: src/addons/onedrive.php:751, src/methods/dropbox.php:648
4037
  msgid "%s authentication"
4038
  msgstr ""
4039
 
4040
- #: src/addons/onedrive.php:751, src/class-updraftplus.php:492,
4041
- #: src/methods/dropbox.php:172, src/methods/dropbox.php:608,
4042
- #: src/methods/dropbox.php:648, src/methods/dropbox.php:661,
4043
- #: src/methods/dropbox.php:805
4044
  msgid "%s error: %s"
4045
  msgstr ""
4046
 
4047
- #: src/addons/googlecloud.php:909, src/methods/dropbox.php:474
4048
  msgid "%s logo"
4049
  msgstr ""
4050
 
4051
- #: src/methods/dropbox.php:218
4052
  msgid "%s did not return the expected response - check your log file for more details"
4053
  msgstr ""
4054
 
@@ -4056,16 +4084,16 @@ msgstr ""
4056
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
4057
  msgstr ""
4058
 
4059
- #: src/methods/email.php:76
4060
  msgid "For more options, use the \"%s\" add-on."
4061
  msgstr ""
4062
 
4063
- #: src/methods/email.php:75
4064
  msgid "Your site's admin email address (%s) will be used."
4065
  msgstr ""
4066
 
4067
- #: src/admin.php:710, src/methods/updraftvault.php:296,
4068
- #: src/methods/updraftvault.php:339, src/udaddons/options.php:249
4069
  msgid "Connect"
4070
  msgstr ""
4071
 
@@ -4073,7 +4101,7 @@ msgstr ""
4073
  msgid "For more reporting features, use the Reporting add-on."
4074
  msgstr ""
4075
 
4076
- #: src/class-updraftplus.php:4443
4077
  msgid "(version: %s)"
4078
  msgstr ""
4079
 
@@ -4086,63 +4114,63 @@ msgstr ""
4086
  msgid "When the Email storage method is enabled, also send the entire backup"
4087
  msgstr ""
4088
 
4089
- #: src/addons/reporting.php:181, src/backup.php:1061
4090
  msgid "Latest status:"
4091
  msgstr ""
4092
 
4093
- #: src/backup.php:1060
4094
  msgid "Backup contains:"
4095
  msgstr ""
4096
 
4097
- #: src/backup.php:1017
4098
  msgid "Backed up: %s"
4099
  msgstr ""
4100
 
4101
- #: src/addons/reporting.php:264, src/backup.php:1011
4102
  msgid "The log file has been attached to this email."
4103
  msgstr ""
4104
 
4105
- #: src/backup.php:975
4106
  msgid "Unknown/unexpected error - please raise a support request"
4107
  msgstr ""
4108
 
4109
- #: src/backup.php:972
4110
  msgid "Database only (files were not part of this particular schedule)"
4111
  msgstr ""
4112
 
4113
- #: src/backup.php:972
4114
  msgid "Database (files backup has not completed)"
4115
  msgstr ""
4116
 
4117
- #: src/backup.php:969
4118
  msgid "Files only (database was not part of this particular schedule)"
4119
  msgstr ""
4120
 
4121
- #: src/backup.php:969
4122
  msgid "Files (database backup has not completed)"
4123
  msgstr ""
4124
 
4125
- #: src/admin.php:305, src/backup.php:967
4126
  msgid "Files and database"
4127
  msgstr ""
4128
 
4129
- #: src/options.php:192
4130
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4131
  msgstr ""
4132
 
4133
- #: src/options.php:192
4134
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4135
  msgstr ""
4136
 
4137
- #: src/options.php:192
4138
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4139
  msgstr ""
4140
 
4141
- #: src/options.php:192
4142
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4143
  msgstr ""
4144
 
4145
- #: src/options.php:192
4146
  msgid "UpdraftPlus warning:"
4147
  msgstr ""
4148
 
@@ -4186,16 +4214,16 @@ msgstr ""
4186
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4187
  msgstr ""
4188
 
4189
- #: src/methods/updraftvault.php:686, src/methods/updraftvault.php:701,
4190
  #: src/udaddons/updraftplus-addons.php:933
4191
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4192
  msgstr ""
4193
 
4194
- #: src/methods/updraftvault.php:698, src/udaddons/updraftplus-addons.php:929
4195
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4196
  msgstr ""
4197
 
4198
- #: src/methods/updraftvault.php:659, src/udaddons/updraftplus-addons.php:892
4199
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4200
  msgstr ""
4201
 
@@ -4207,14 +4235,14 @@ msgstr ""
4207
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4208
  msgstr ""
4209
 
4210
- #: src/methods/email.php:76,
4211
  #: src/templates/wp-admin/settings/form-contents.php:251,
4212
  #: src/templates/wp-admin/settings/tab-addons.php:203,
4213
  #: src/templates/wp-admin/settings/tab-addons.php:204
4214
  msgid "Reporting"
4215
  msgstr ""
4216
 
4217
- #: src/admin.php:4693
4218
  msgid "Options (raw)"
4219
  msgstr ""
4220
 
@@ -4234,11 +4262,11 @@ msgstr ""
4234
  msgid "See also the \"More Files\" add-on from our shop."
4235
  msgstr ""
4236
 
4237
- #: src/backup.php:3319, src/class-updraftplus.php:823
4238
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4239
  msgstr ""
4240
 
4241
- #: src/class-updraftplus.php:807
4242
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4243
  msgstr ""
4244
 
@@ -4366,7 +4394,7 @@ msgstr ""
4366
  msgid "Your web-server does not have the %s module installed."
4367
  msgstr ""
4368
 
4369
- #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1169
4370
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4371
  msgstr ""
4372
 
@@ -4390,7 +4418,7 @@ msgstr ""
4390
  msgid "Site home:"
4391
  msgstr ""
4392
 
4393
- #: src/addons/morestorage.php:72
4394
  msgid "Remote Storage Options"
4395
  msgstr ""
4396
 
@@ -4402,7 +4430,7 @@ msgstr ""
4402
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4403
  msgstr ""
4404
 
4405
- #: src/addons/azure.php:371, src/methods/stream-base.php:141,
4406
  #: src/methods/stream-base.php:146
4407
  msgid "Upload failed"
4408
  msgstr ""
@@ -4411,11 +4439,11 @@ msgstr ""
4411
  msgid "You can send a backup to more than one destination with an add-on."
4412
  msgstr ""
4413
 
4414
- #: src/admin.php:2964
4415
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4416
  msgstr ""
4417
 
4418
- #: src/admin.php:2863
4419
  msgid "(%s%%, file %s of %s)"
4420
  msgstr ""
4421
 
@@ -4424,15 +4452,15 @@ msgstr ""
4424
  msgid "Read more about how this works..."
4425
  msgstr ""
4426
 
4427
- #: src/addons/sftp.php:559
4428
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4429
  msgstr ""
4430
 
4431
- #: src/addons/sftp.php:557
4432
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4433
  msgstr ""
4434
 
4435
- #: src/addons/sftp.php:459
4436
  msgid "Use SCP instead of SFTP"
4437
  msgstr ""
4438
 
@@ -4456,11 +4484,11 @@ msgstr ""
4456
  msgid "%s settings test result:"
4457
  msgstr ""
4458
 
4459
- #: src/admin.php:3765, src/admin.php:3767
4460
  msgid "(Not finished)"
4461
  msgstr ""
4462
 
4463
- #: src/admin.php:3767
4464
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4465
  msgstr ""
4466
 
@@ -4472,77 +4500,77 @@ msgstr ""
4472
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4473
  msgstr ""
4474
 
4475
- #: src/admin.php:2959
4476
  msgid "Job ID: %s"
4477
  msgstr ""
4478
 
4479
- #: src/admin.php:2944
4480
  msgid "last activity: %ss ago"
4481
  msgstr ""
4482
 
4483
- #: src/admin.php:2943
4484
  msgid "next resumption: %d (after %ss)"
4485
  msgstr ""
4486
 
4487
- #: src/admin.php:2926, src/central/bootstrap.php:428,
4488
- #: src/central/bootstrap.php:435, src/methods/updraftvault.php:387,
4489
- #: src/methods/updraftvault.php:421, src/methods/updraftvault.php:506
4490
  msgid "Unknown"
4491
  msgstr ""
4492
 
4493
- #: src/admin.php:2877
4494
  msgid "Backup finished"
4495
  msgstr ""
4496
 
4497
- #: src/admin.php:2872
4498
  msgid "Waiting until scheduled time to retry because of errors"
4499
  msgstr ""
4500
 
4501
- #: src/admin.php:2868
4502
  msgid "Pruning old backup sets"
4503
  msgstr ""
4504
 
4505
- #: src/admin.php:2856
4506
  msgid "Uploading files to remote storage"
4507
  msgstr ""
4508
 
4509
- #: src/admin.php:2924
4510
  msgid "Encrypted database"
4511
  msgstr ""
4512
 
4513
- #: src/admin.php:2916
4514
  msgid "Encrypting database"
4515
  msgstr ""
4516
 
4517
- #: src/admin.php:2890
4518
  msgid "Created database backup"
4519
  msgstr ""
4520
 
4521
- #: src/admin.php:2903
4522
  msgid "table: %s"
4523
  msgstr ""
4524
 
4525
- #: src/admin.php:2901
4526
  msgid "Creating database backup"
4527
  msgstr ""
4528
 
4529
- #: src/admin.php:2851
4530
  msgid "Created file backup zips"
4531
  msgstr ""
4532
 
4533
- #: src/admin.php:2838
4534
  msgid "Creating file backup zips"
4535
  msgstr ""
4536
 
4537
- #: src/admin.php:2833
4538
  msgid "Backup begun"
4539
  msgstr ""
4540
 
4541
- #: src/admin.php:2666
4542
  msgid "Backups in progress:"
4543
  msgstr ""
4544
 
4545
- #: src/admin.php:963
4546
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
4547
  msgstr ""
4548
 
@@ -4558,20 +4586,20 @@ msgstr ""
4558
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4559
  msgstr ""
4560
 
4561
- #: src/class-updraftplus.php:2861
4562
  msgid "The backup has not finished; a resumption is scheduled"
4563
  msgstr ""
4564
 
4565
- #: src/class-updraftplus.php:2045
4566
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4567
  msgstr ""
4568
 
4569
- #: src/addons/onedrive.php:895,
4570
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4571
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4572
  msgstr ""
4573
 
4574
- #: src/admin.php:2467
4575
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4576
  msgstr ""
4577
 
@@ -4651,32 +4679,32 @@ msgstr ""
4651
  msgid "Support"
4652
  msgstr ""
4653
 
4654
- #: src/class-updraftplus.php:4743
4655
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4656
  msgstr ""
4657
 
4658
- #: src/class-updraftplus.php:4735
4659
  msgid "This database backup is missing core WordPress tables: %s"
4660
  msgstr ""
4661
 
4662
- #: src/class-updraftplus.php:4496
4663
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4664
  msgstr ""
4665
 
4666
- #: src/class-updraftplus.php:4495, src/class-updraftplus.php:4502
4667
  msgid "%s version: %s"
4668
  msgstr ""
4669
 
4670
- #: src/class-updraftplus.php:4379
4671
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4672
  msgstr ""
4673
 
4674
- #: src/addons/autobackup.php:1053, src/admin.php:798,
4675
  #: src/includes/updraftplus-notices.php:171
4676
  msgid "Be safe with an automatic backup"
4677
  msgstr ""
4678
 
4679
- #: src/admin.php:2420
4680
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4681
  msgstr ""
4682
 
@@ -4724,11 +4752,11 @@ msgstr ""
4724
  msgid "Delete from your web server"
4725
  msgstr ""
4726
 
4727
- #: src/admin.php:3737
4728
  msgid "You appear to be missing one or more archives from this multi-archive set."
4729
  msgstr ""
4730
 
4731
- #: src/admin.php:3734
4732
  msgid "(%d archive(s) in set)."
4733
  msgstr ""
4734
 
@@ -4748,7 +4776,7 @@ msgstr ""
4748
  msgid "Error: the server sent an empty response."
4749
  msgstr ""
4750
 
4751
- #: src/admin.php:2155
4752
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4753
  msgstr ""
4754
 
@@ -4784,7 +4812,7 @@ msgstr ""
4784
  msgid "No such backup set exists"
4785
  msgstr ""
4786
 
4787
- #: src/admin.php:1353
4788
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4789
  msgstr ""
4790
 
@@ -4792,7 +4820,7 @@ msgstr ""
4792
  msgid "Moving unpacked backup into place..."
4793
  msgstr ""
4794
 
4795
- #: src/backup.php:3020, src/backup.php:3275
4796
  msgid "Failed to open the zip file (%s) - %s"
4797
  msgstr ""
4798
 
@@ -4800,27 +4828,28 @@ msgstr ""
4800
  msgid "WordPress root directory server path: %s"
4801
  msgstr ""
4802
 
4803
- #: src/methods/dreamobjects.php:77, src/methods/s3generic.php:93
4804
  msgid "%s end-point"
4805
  msgstr ""
4806
 
4807
- #: src/methods/s3.php:835
4808
  msgid "... and many more!"
4809
  msgstr ""
4810
 
4811
- #: src/methods/s3generic.php:59, src/methods/s3generic.php:72
 
4812
  msgid "S3 (Compatible)"
4813
  msgstr ""
4814
 
4815
- #: src/admin.php:1263
4816
  msgid "File is not locally present - needs retrieving from remote storage"
4817
  msgstr ""
4818
 
4819
- #: src/admin.php:4040
4820
  msgid "Looking for %s archive: file name: %s"
4821
  msgstr ""
4822
 
4823
- #: src/admin.php:4001
4824
  msgid "Final checks"
4825
  msgstr ""
4826
 
@@ -4832,7 +4861,7 @@ msgstr ""
4832
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4833
  msgstr ""
4834
 
4835
- #: src/admin.php:3371
4836
  msgid "Your wp-content directory server path: %s"
4837
  msgstr ""
4838
 
@@ -4848,7 +4877,7 @@ msgstr ""
4848
  msgid "Processing files - please wait..."
4849
  msgstr ""
4850
 
4851
- #: src/admin.php:4190,
4852
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4853
  msgid "Please consult this FAQ for help on what to do about it."
4854
  msgstr ""
@@ -4857,11 +4886,11 @@ msgstr ""
4857
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4858
  msgstr ""
4859
 
4860
- #: src/class-updraftplus.php:4387
4861
  msgid "Failed to open database file."
4862
  msgstr ""
4863
 
4864
- #: src/admin.php:4658
4865
  msgid "Known backups (raw)"
4866
  msgstr ""
4867
 
@@ -4873,14 +4902,14 @@ msgstr ""
4873
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4874
  msgstr ""
4875
 
4876
- #: src/admin.php:4060
4877
  msgid "file is size:"
4878
  msgstr ""
4879
 
4880
- #: src/addons/googlecloud.php:946, src/addons/migrator.php:421,
4881
- #: src/addons/migrator.php:424, src/addons/migrator.php:427, src/admin.php:963,
4882
- #: src/admin.php:2425, src/backup.php:3326, src/class-updraftplus.php:4616,
4883
- #: src/class-updraftplus.php:4616, src/updraftplus.php:156
4884
  msgid "Go here for more information."
4885
  msgstr ""
4886
 
@@ -4888,7 +4917,7 @@ msgstr ""
4888
  msgid "Some files are still downloading or being processed - please wait."
4889
  msgstr ""
4890
 
4891
- #: src/class-updraftplus.php:4465, src/class-updraftplus.php:4486
4892
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4893
  msgstr ""
4894
 
@@ -4900,27 +4929,27 @@ msgstr ""
4900
  msgid "Enter in format HH:MM (e.g. 14:22)."
4901
  msgstr ""
4902
 
4903
- #: src/methods/ftp.php:127
4904
  msgid "%s upload failed"
4905
  msgstr ""
4906
 
4907
- #: src/methods/ftp.php:100, src/methods/ftp.php:151, src/methods/ftp.php:255
4908
  msgid "%s login failure"
4909
  msgstr ""
4910
 
4911
- #: src/methods/dropbox.php:413
4912
  msgid "You do not appear to be authenticated with %s"
4913
  msgstr ""
4914
 
4915
- #: src/methods/dropbox.php:380
4916
  msgid "Failed to access %s when deleting (see log file for more)"
4917
  msgstr ""
4918
 
4919
- #: src/methods/dropbox.php:372
4920
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4921
  msgstr ""
4922
 
4923
- #: src/methods/dropbox.php:127
4924
  msgid "Dropbox error: %s (see log file for more)"
4925
  msgstr ""
4926
 
@@ -4932,11 +4961,11 @@ msgstr ""
4932
  msgid "Error - no such file exists at %s"
4933
  msgstr ""
4934
 
4935
- #: src/addons/azure.php:219, src/methods/addon-base-v2.php:219,
4936
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
4937
- #: src/methods/googledrive.php:1023, src/methods/openstack-base.php:455,
4938
- #: src/methods/stream-base.php:278, src/methods/stream-base.php:285,
4939
- #: src/methods/stream-base.php:317
4940
  msgid "%s Error"
4941
  msgstr ""
4942
 
@@ -4944,7 +4973,7 @@ msgstr ""
4944
  msgid "%s error - failed to upload file"
4945
  msgstr ""
4946
 
4947
- #: src/class-updraftplus.php:1184, src/methods/cloudfiles.php:211
4948
  msgid "%s error - failed to re-assemble chunks"
4949
  msgstr ""
4950
 
@@ -4958,25 +4987,25 @@ msgstr ""
4958
  msgid "%s authentication failed"
4959
  msgstr ""
4960
 
4961
- #: src/addons/googlecloud.php:436, src/addons/migrator.php:519,
4962
- #: src/admin.php:2126, src/admin.php:2147, src/admin.php:2155,
4963
- #: src/class-updraftplus.php:952, src/class-updraftplus.php:958,
4964
- #: src/class-updraftplus.php:4360, src/class-updraftplus.php:4362,
4965
- #: src/class-updraftplus.php:4519, src/class-updraftplus.php:4526,
4966
- #: src/class-updraftplus.php:4595, src/methods/googledrive.php:381,
4967
  #: src/methods/s3.php:320
4968
  msgid "Error: %s"
4969
  msgstr ""
4970
 
4971
- #: src/admin.php:3296
4972
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4973
  msgstr ""
4974
 
4975
- #: src/admin.php:3294
4976
  msgid "Backup directory specified does <b>not</b> exist."
4977
  msgstr ""
4978
 
4979
- #: src/admin.php:2971, src/admin.php:3245
4980
  msgid "Warning: %s"
4981
  msgstr ""
4982
 
@@ -4984,55 +5013,55 @@ msgstr ""
4984
  msgid "Last backup job run:"
4985
  msgstr ""
4986
 
4987
- #: src/backup.php:3046
4988
  msgid "A very large file was encountered: %s (size: %s Mb)"
4989
  msgstr ""
4990
 
4991
- #: src/backup.php:2346
4992
  msgid "%s: unreadable file - could not be backed up"
4993
  msgstr ""
4994
 
4995
- #: src/backup.php:1663
4996
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
4997
  msgstr ""
4998
 
4999
- #: src/backup.php:1784
5000
  msgid "An error occurred whilst closing the final database file"
5001
  msgstr ""
5002
 
5003
- #: src/backup.php:1002
5004
  msgid "Warnings encountered:"
5005
  msgstr ""
5006
 
5007
- #: src/class-updraftplus.php:2849
5008
  msgid "The backup apparently succeeded (with warnings) and is now complete"
5009
  msgstr ""
5010
 
5011
- #: src/class-updraftplus.php:836
5012
  msgid "Your free disk space is very low - only %s Mb remain"
5013
  msgstr ""
5014
 
5015
- #: src/addons/migrator.php:527
5016
  msgid "New site:"
5017
  msgstr ""
5018
 
5019
- #: src/addons/migrator.php:502
5020
  msgid "Migrated site (from UpdraftPlus)"
5021
  msgstr ""
5022
 
5023
- #: src/addons/migrator.php:442
5024
  msgid "Enter details for where this new site is to live within your multisite install:"
5025
  msgstr ""
5026
 
5027
- #: src/addons/migrator.php:441
5028
  msgid "Information needed to continue:"
5029
  msgstr ""
5030
 
5031
- #: src/addons/migrator.php:385
5032
  msgid "Network activating theme:"
5033
  msgstr ""
5034
 
5035
- #: src/addons/migrator.php:375
5036
  msgid "Processed plugin:"
5037
  msgstr ""
5038
 
@@ -5044,15 +5073,15 @@ msgstr ""
5044
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
5045
  msgstr ""
5046
 
5047
- #: src/methods/s3.php:849
5048
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5049
  msgstr ""
5050
 
5051
- #: src/methods/s3.php:1096
5052
  msgid "Please check your access credentials."
5053
  msgstr ""
5054
 
5055
- #: src/addons/s3-enhanced.php:196, src/methods/s3.php:1074
5056
  msgid "The error reported by %s was:"
5057
  msgstr ""
5058
 
@@ -5060,7 +5089,7 @@ msgstr ""
5060
  msgid "Please supply the requested information, and then continue."
5061
  msgstr ""
5062
 
5063
- #: src/class-updraftplus.php:4537, src/restorer.php:1746
5064
  msgid "Site information:"
5065
  msgstr ""
5066
 
@@ -5068,20 +5097,20 @@ msgstr ""
5068
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
5069
  msgstr ""
5070
 
5071
- #: src/admin.php:2420, src/class-updraftplus.php:4530, src/restorer.php:2117
5072
  msgid "Warning:"
5073
  msgstr ""
5074
 
5075
- #: src/class-updraftplus.php:4519, src/class-updraftplus.php:4522,
5076
  #: src/restorer.php:184
5077
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5078
  msgstr ""
5079
 
5080
- #: src/admin.php:4028
5081
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
5082
  msgstr ""
5083
 
5084
- #: src/admin.php:3443, src/methods/updraftvault.php:283
5085
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5086
  msgstr ""
5087
 
@@ -5120,7 +5149,7 @@ msgstr ""
5120
  msgid "Do you want to migrate or clone/duplicate a site?"
5121
  msgstr ""
5122
 
5123
- #: src/addons/migrator.php:177
5124
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
5125
  msgstr ""
5126
 
@@ -5136,7 +5165,7 @@ msgstr ""
5136
  msgid "Also delete from remote storage"
5137
  msgstr ""
5138
 
5139
- #: src/admin.php:2693
5140
  msgid "Latest UpdraftPlus.com news:"
5141
  msgstr ""
5142
 
@@ -5153,7 +5182,7 @@ msgstr ""
5153
  msgid "News"
5154
  msgstr ""
5155
 
5156
- #: src/admin.php:1532, src/includes/class-wpadmin-commands.php:472
5157
  msgid "Backup set not found"
5158
  msgstr ""
5159
 
@@ -5183,15 +5212,15 @@ msgstr ""
5183
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5184
  msgstr ""
5185
 
5186
- #: src/admin.php:979
5187
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
5188
  msgstr ""
5189
 
5190
- #: src/admin.php:979
5191
  msgid "Notice"
5192
  msgstr ""
5193
 
5194
- #: src/backup.php:984
5195
  msgid "Errors encountered:"
5196
  msgstr ""
5197
 
@@ -5207,85 +5236,85 @@ msgstr ""
5207
  msgid "Store at"
5208
  msgstr ""
5209
 
5210
- #: src/addons/migrator.php:1487
5211
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5212
  msgstr ""
5213
 
5214
- #: src/addons/migrator.php:1361
5215
  msgid "rows: %d"
5216
  msgstr ""
5217
 
5218
- #: src/addons/migrator.php:1235
5219
  msgid "Time taken (seconds):"
5220
  msgstr ""
5221
 
5222
- #: src/addons/migrator.php:1234, src/admin.php:671
5223
  msgid "Errors:"
5224
  msgstr ""
5225
 
5226
- #: src/addons/migrator.php:1233
5227
  msgid "SQL update commands run:"
5228
  msgstr ""
5229
 
5230
- #: src/addons/migrator.php:1232
5231
  msgid "Changes made:"
5232
  msgstr ""
5233
 
5234
- #: src/addons/migrator.php:1231
5235
  msgid "Rows examined:"
5236
  msgstr ""
5237
 
5238
- #: src/addons/migrator.php:1230
5239
  msgid "Tables examined:"
5240
  msgstr ""
5241
 
5242
- #: src/addons/migrator.php:1119
5243
  msgid "Could not get list of tables"
5244
  msgstr ""
5245
 
5246
- #: src/addons/migrator.php:1064
5247
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5248
  msgstr ""
5249
 
5250
- #: src/addons/migrator.php:1053
5251
  msgid "Nothing to do: the site URL is already: %s"
5252
  msgstr ""
5253
 
5254
- #: src/addons/migrator.php:1017, src/addons/migrator.php:1021,
5255
- #: src/addons/migrator.php:1025, src/addons/migrator.php:1030,
5256
- #: src/addons/migrator.php:1034, src/addons/migrator.php:1039
5257
  msgid "Error: unexpected empty parameter (%s, %s)"
5258
  msgstr ""
5259
 
5260
- #: src/addons/migrator.php:977
5261
  msgid "Database: search and replace site URL"
5262
  msgstr ""
5263
 
5264
- #: src/addons/migrator.php:837, src/addons/migrator.php:1216
5265
  msgid "Failed: we did not understand the result returned by the %s operation."
5266
  msgstr ""
5267
 
5268
- #: src/addons/migrator.php:835, src/addons/migrator.php:1214
5269
  msgid "Failed: the %s operation was not able to start."
5270
  msgstr ""
5271
 
5272
- #: src/addons/migrator.php:494
5273
  msgid "Search and replace site location in the database (migrate)"
5274
  msgstr ""
5275
 
5276
- #: src/addons/migrator.php:494
5277
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5278
  msgstr ""
5279
 
5280
- #: src/addons/multisite.php:659
5281
  msgid "Blog uploads"
5282
  msgstr ""
5283
 
5284
- #: src/addons/migrator.php:427, src/addons/multisite.php:652
5285
  msgid "Must-use plugins"
5286
  msgstr ""
5287
 
5288
- #: src/addons/multisite.php:174
5289
  msgid "Multisite Install"
5290
  msgstr ""
5291
 
@@ -5293,43 +5322,43 @@ msgstr ""
5293
  msgid "starting from next time it is"
5294
  msgstr ""
5295
 
5296
- #: src/addons/sftp.php:502
5297
  msgid "Failure: Port must be an integer."
5298
  msgstr ""
5299
 
5300
- #: src/methods/ftp.php:384, src/methods/openstack2.php:178
5301
  msgid "password"
5302
  msgstr ""
5303
 
5304
- #: src/addons/sftp.php:493, src/methods/openstack2.php:173
5305
  msgid "username"
5306
  msgstr ""
5307
 
5308
- #: src/addons/sftp.php:489
5309
  msgid "host name"
5310
  msgstr ""
5311
 
5312
- #: src/addons/sftp.php:452
5313
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5314
  msgstr ""
5315
 
5316
- #: src/addons/sftp.php:450
5317
  msgid "Directory path"
5318
  msgstr ""
5319
 
5320
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5321
- #: src/addons/sftp.php:425, src/addons/webdav.php:102,
5322
- #: src/methods/openstack2.php:157, src/methods/updraftvault.php:338,
5323
  #: src/udaddons/options.php:135
5324
  msgid "Password"
5325
  msgstr ""
5326
 
5327
- #: src/addons/sftp.php:411, src/addons/webdav.php:116
5328
  msgid "Port"
5329
  msgstr ""
5330
 
5331
- #: src/addons/moredatabase.php:244, src/addons/sftp.php:404,
5332
- #: src/addons/webdav.php:108
5333
  msgid "Host"
5334
  msgstr ""
5335
 
@@ -5337,7 +5366,7 @@ msgstr ""
5337
  msgid "%s Error: Failed to download"
5338
  msgstr ""
5339
 
5340
- #: src/addons/sftp.php:534
5341
  msgid "Check your file permissions: Could not successfully create and enter:"
5342
  msgstr ""
5343
 
@@ -5381,26 +5410,26 @@ msgstr ""
5381
  msgid "WordPress Core"
5382
  msgstr ""
5383
 
5384
- #: src/methods/addon-base-v2.php:316, src/methods/stream-base.php:347
5385
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5386
  msgstr ""
5387
 
5388
- #: src/addons/googlecloud.php:709, src/addons/googlecloud.php:743,
5389
- #: src/addons/googlecloud.php:749, src/addons/sftp.php:520, src/admin.php:3027,
5390
- #: src/admin.php:3062, src/admin.php:3071, src/methods/addon-base-v2.php:304,
5391
- #: src/methods/stream-base.php:333
5392
  msgid "Failed"
5393
  msgstr ""
5394
 
5395
- #: src/addons/webdav.php:78
5396
  msgid "WebDAV URL"
5397
  msgstr ""
5398
 
5399
- #: src/methods/stream-base.php:317
5400
  msgid "Local write failed: Failed to download"
5401
  msgstr ""
5402
 
5403
- #: src/methods/stream-base.php:285
5404
  msgid "Error opening remote file: Failed to download"
5405
  msgstr ""
5406
 
@@ -5411,136 +5440,136 @@ msgstr ""
5411
  #: src/addons/googlecloud.php:322, src/addons/sftp.php:45,
5412
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
5413
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5414
- #: src/methods/addon-base-v2.php:283, src/methods/ftp.php:42,
5415
  #: src/methods/googledrive.php:182, src/methods/googledrive.php:184,
5416
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:161,
5417
  #: src/methods/stream-base.php:167, src/methods/stream-base.php:201,
5418
- #: src/methods/stream-base.php:259
5419
  msgid "No %s settings were found"
5420
  msgstr ""
5421
 
5422
- #: src/methods/ftp.php:406
5423
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5424
  msgstr ""
5425
 
5426
- #: src/methods/ftp.php:403
5427
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5428
  msgstr ""
5429
 
5430
- #: src/methods/ftp.php:394
5431
  msgid "Failure: we did not successfully log in with those credentials."
5432
  msgstr ""
5433
 
5434
- #: src/methods/ftp.php:376
5435
  msgid "Failure: No server details were given."
5436
  msgstr ""
5437
 
5438
- #: src/methods/ftp.php:346
5439
  msgid "Needs to already exist"
5440
  msgstr ""
5441
 
5442
- #: src/methods/ftp.php:326
5443
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5444
  msgstr ""
5445
 
5446
- #: src/addons/onedrive.php:789, src/methods/dropbox.php:679
5447
  msgid "Your %s account name: %s"
5448
  msgstr ""
5449
 
5450
- #: src/methods/dropbox.php:669, src/methods/dropbox.php:691
5451
  msgid "though part of the returned information was not as expected - your mileage may vary"
5452
  msgstr ""
5453
 
5454
- #: src/methods/dropbox.php:664, src/methods/dropbox.php:666
5455
  msgid "you have authenticated your %s account"
5456
  msgstr ""
5457
 
5458
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5459
  msgid "there's an add-on for that."
5460
  msgstr ""
5461
 
5462
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5463
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5464
  msgstr ""
5465
 
5466
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5467
  msgid "Backups are saved in"
5468
  msgstr ""
5469
 
5470
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5471
  msgid "Need to use sub-folders?"
5472
  msgstr ""
5473
 
5474
- #: src/methods/dropbox.php:216, src/methods/dropbox.php:237,
5475
- #: src/methods/dropbox.php:253
5476
  msgid "error: failed to upload file to %s (see log file for more)"
5477
  msgstr ""
5478
 
5479
- #: src/methods/dropbox.php:105, src/methods/dropbox.php:122
5480
  msgid "You do not appear to be authenticated with Dropbox"
5481
  msgstr ""
5482
 
5483
- #: src/methods/s3.php:1091
5484
  msgid "The communication with %s was not encrypted."
5485
  msgstr ""
5486
 
5487
- #: src/methods/s3.php:1089
5488
  msgid "The communication with %s was encrypted."
5489
  msgstr ""
5490
 
5491
- #: src/addons/googlecloud.php:772, src/methods/s3.php:1086
5492
  msgid "We accessed the bucket, and were able to create files within it."
5493
  msgstr ""
5494
 
5495
- #: src/addons/googlecloud.php:766, src/addons/googlecloud.php:780,
5496
- #: src/methods/s3.php:1084, src/methods/s3.php:1096
5497
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5498
  msgstr ""
5499
 
5500
- #: src/addons/googlecloud.php:766, src/addons/googlecloud.php:780,
5501
- #: src/methods/s3.php:1084, src/methods/s3.php:1096
5502
  msgid "Failure"
5503
  msgstr ""
5504
 
5505
- #: src/methods/s3.php:1072
5506
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5507
  msgstr ""
5508
 
5509
- #: src/addons/s3-enhanced.php:169, src/methods/openstack2.php:143,
5510
- #: src/methods/s3.php:1066
5511
  msgid "Region"
5512
  msgstr ""
5513
 
5514
- #: src/addons/googlecloud.php:118, src/addons/googlecloud.php:726,
5515
- #: src/methods/s3.php:1048
5516
  msgid "Failure: No bucket details were given."
5517
  msgstr ""
5518
 
5519
- #: src/methods/s3.php:1026
5520
  msgid "API secret"
5521
  msgstr ""
5522
 
5523
- #: src/methods/s3.php:893
5524
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5525
  msgstr ""
5526
 
5527
- #: src/methods/s3.php:892
5528
  msgid "%s location"
5529
  msgstr ""
5530
 
5531
- #: src/methods/s3.php:888
5532
  msgid "%s secret key"
5533
  msgstr ""
5534
 
5535
- #: src/methods/s3.php:884
5536
  msgid "%s access key"
5537
  msgstr ""
5538
 
5539
- #: src/methods/s3.php:865
5540
  msgid "If you see errors about SSL certificates, then please go here for help."
5541
  msgstr ""
5542
 
5543
- #: src/methods/s3.php:863
5544
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5545
  msgstr ""
5546
 
@@ -5573,7 +5602,7 @@ msgstr ""
5573
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5574
  msgstr ""
5575
 
5576
- #: src/methods/email.php:71
5577
  msgid "Note:"
5578
  msgstr ""
5579
 
@@ -5581,81 +5610,81 @@ msgstr ""
5581
  msgid "WordPress Backup"
5582
  msgstr ""
5583
 
5584
- #: src/methods/cloudfiles.php:560, src/methods/openstack-base.php:530
5585
  msgid "We accessed the container, and were able to create files within it."
5586
  msgstr ""
5587
 
5588
- #: src/methods/cloudfiles.php:556
5589
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5590
  msgstr ""
5591
 
5592
- #: src/methods/cloudfiles.php:529, src/methods/openstack-base.php:472
5593
  msgid "Failure: No container details were given."
5594
  msgstr ""
5595
 
5596
- #: src/addons/moredatabase.php:245, src/addons/sftp.php:418,
5597
- #: src/addons/webdav.php:96, src/methods/cloudfiles-new.php:176,
5598
- #: src/methods/cloudfiles.php:509, src/methods/openstack2.php:151
5599
  msgid "Username"
5600
  msgstr ""
5601
 
5602
- #: src/methods/cloudfiles-new.php:171, src/methods/cloudfiles.php:504,
5603
- #: src/methods/s3.php:1022
5604
  msgid "API key"
5605
  msgstr ""
5606
 
5607
- #: src/addons/migrator.php:300, src/addons/migrator.php:2004,
5608
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5609
- #: src/addons/moredatabase.php:86, src/addons/sftp.php:489,
5610
- #: src/addons/sftp.php:493, src/addons/sftp.php:497, src/addons/webdav.php:162,
5611
- #: src/admin.php:724, src/methods/addon-base-v2.php:296,
5612
- #: src/methods/cloudfiles-new.php:171, src/methods/cloudfiles-new.php:176,
5613
- #: src/methods/cloudfiles.php:504, src/methods/cloudfiles.php:509,
5614
- #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5615
- #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5616
- #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5617
- #: src/methods/s3.php:1022, src/methods/s3.php:1026
5618
  msgid "Failure: No %s was given."
5619
  msgstr ""
5620
 
5621
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
5622
- #: src/methods/openstack-base.php:573, src/methods/s3.php:853
5623
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5624
  msgstr ""
5625
 
5626
- #: src/methods/cloudfiles.php:473
5627
  msgid "Cloud Files username"
5628
  msgstr ""
5629
 
5630
- #: src/addons/cloudfiles-enhanced.php:38, src/methods/cloudfiles-new.php:111,
5631
- #: src/methods/cloudfiles.php:456
5632
  msgid "UK"
5633
  msgstr ""
5634
 
5635
- #: src/addons/cloudfiles-enhanced.php:37, src/methods/cloudfiles-new.php:110,
5636
- #: src/methods/cloudfiles.php:455
5637
  msgid "US (default)"
5638
  msgstr ""
5639
 
5640
- #: src/methods/cloudfiles.php:452
5641
  msgid "US or UK Cloud"
5642
  msgstr ""
5643
 
5644
- #: src/methods/cloudfiles-new.php:103, src/methods/cloudfiles.php:448,
5645
- #: src/methods/openstack2.php:124
5646
  msgid "Also, you should read this important FAQ."
5647
  msgstr ""
5648
 
5649
- #: src/methods/cloudfiles-new.php:103, src/methods/cloudfiles.php:448
5650
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5651
  msgstr ""
5652
 
5653
- #: src/admin.php:747, src/methods/backup-module.php:285
5654
  msgid "Test %s Settings"
5655
  msgstr ""
5656
 
5657
- #: src/class-updraftplus.php:1224, src/class-updraftplus.php:1268,
5658
- #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:278
5659
  msgid "Error opening local file: Failed to download"
5660
  msgstr ""
5661
 
@@ -5671,8 +5700,8 @@ msgid "%s Error: Failed to upload"
5671
  msgstr ""
5672
 
5673
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
5674
- #: src/class-updraftplus.php:1082, src/methods/cloudfiles.php:130,
5675
- #: src/methods/googledrive.php:941, src/methods/googledrive.php:946
5676
  msgid "%s Error: Failed to open local file"
5677
  msgstr ""
5678
 
@@ -5681,56 +5710,49 @@ msgstr ""
5681
  msgid "Cloud Files error - failed to create and access the container"
5682
  msgstr ""
5683
 
5684
- #: src/addons/cloudfiles-enhanced.php:105,
5685
- #: src/addons/cloudfiles-enhanced.php:118,
5686
- #: src/addons/cloudfiles-enhanced.php:122, src/methods/cloudfiles.php:539,
5687
- #: src/methods/cloudfiles.php:542, src/methods/cloudfiles.php:545
5688
  msgid "Cloud Files authentication failed"
5689
  msgstr ""
5690
 
5691
- #: src/addons/googlecloud.php:992, src/methods/googledrive.php:1186
5692
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5693
  msgstr ""
5694
 
5695
- #: src/methods/googledrive.php:1164
5696
  msgid "Authenticate with Google"
5697
  msgstr ""
5698
 
5699
- #: src/addons/googlecloud.php:939, src/addons/onedrive.php:1017,
5700
- #: src/methods/googledrive.php:1128
5701
  msgid "Client Secret"
5702
  msgstr ""
5703
 
5704
- #: src/addons/googlecloud.php:934, src/methods/googledrive.php:1125
5705
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5706
  msgstr ""
5707
 
5708
- #: src/addons/googlecloud.php:931, src/addons/onedrive.php:1013,
5709
- #: src/methods/googledrive.php:1124
5710
  msgid "Client ID"
5711
  msgstr ""
5712
 
5713
- #: src/addons/googlecloud.php:922, src/methods/googledrive.php:1114
5714
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5715
  msgstr ""
5716
 
5717
- #: src/addons/googlecloud.php:922, src/methods/googledrive.php:1114
5718
  msgid "Select 'Web Application' as the application type."
5719
  msgstr ""
5720
 
5721
- #: src/addons/googlecloud.php:920, src/methods/googledrive.php:1112
5722
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5723
  msgstr ""
5724
 
5725
- #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:432,
5726
- #: src/methods/dropbox.php:475, src/methods/ftp.php:321,
5727
- #: src/methods/googledrive.php:1095, src/methods/openstack-base.php:564,
5728
- #: src/methods/s3.php:824, src/methods/stream-base.php:233
5729
- msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5730
- msgstr ""
5731
-
5732
  #: src/addons/googlecloud.php:505, src/addons/googlecloud.php:506,
5733
- #: src/addons/googlecloud.php:799, src/methods/googledrive.php:545,
5734
  #: src/methods/googledrive.php:546, src/methods/googledrive.php:556,
5735
  #: src/methods/googledrive.php:557
5736
  msgid "Account is not authorized."
@@ -5750,21 +5772,21 @@ msgstr ""
5750
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5751
  msgstr ""
5752
 
5753
- #: src/addons/googlecloud.php:651, src/addons/onedrive.php:827,
5754
  #: src/methods/googledrive.php:440
5755
  msgid "you have authenticated your %s account."
5756
  msgstr ""
5757
 
5758
- #: src/addons/googlecloud.php:651, src/addons/googlecloud.php:772,
5759
- #: src/addons/onedrive.php:827, src/addons/sftp.php:554,
5760
- #: src/methods/addon-base-v2.php:313, src/methods/cloudfiles.php:560,
5761
  #: src/methods/googledrive.php:440, src/methods/openstack-base.php:530,
5762
- #: src/methods/s3.php:1086, src/methods/stream-base.php:344
5763
  msgid "Success"
5764
  msgstr ""
5765
 
5766
- #: src/addons/onedrive.php:781, src/methods/dropbox.php:702,
5767
- #: src/methods/dropbox.php:711, src/methods/googledrive.php:414
5768
  msgid "Your %s quota usage: %s %% used, %s available"
5769
  msgstr ""
5770
 
@@ -5795,8 +5817,8 @@ msgstr ""
5795
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5796
  msgstr ""
5797
 
5798
- #: src/addons/migrator.php:1899, src/admin.php:1291, src/admin.php:3030,
5799
- #: src/admin.php:3064, src/admin.php:3068, src/admin.php:4058,
5800
  #: src/restorer.php:2358, src/restorer.php:2463
5801
  msgid "OK"
5802
  msgstr ""
@@ -5805,7 +5827,7 @@ msgstr ""
5805
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5806
  msgstr ""
5807
 
5808
- #: src/addons/migrator.php:1249, src/restorer.php:2254
5809
  msgid "the database query being run was:"
5810
  msgstr ""
5811
 
@@ -5813,13 +5835,13 @@ msgstr ""
5813
  msgid "will restore as:"
5814
  msgstr ""
5815
 
5816
- #: src/class-updraftplus.php:4508, src/restorer.php:1728,
5817
  #: src/restorer.php:1817, src/restorer.php:1843
5818
  msgid "Old table prefix:"
5819
  msgstr ""
5820
 
5821
  #: src/addons/reporting.php:70, src/addons/reporting.php:180,
5822
- #: src/backup.php:1058, src/class-updraftplus.php:4443
5823
  msgid "Backup of:"
5824
  msgstr ""
5825
 
@@ -5891,60 +5913,60 @@ msgstr ""
5891
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5892
  msgstr ""
5893
 
5894
- #: src/admin.php:4066, src/admin.php:4067
5895
  msgid "Could not find one of the files for restoration"
5896
  msgstr ""
5897
 
5898
- #: src/admin.php:4180
5899
  msgid "Error message"
5900
  msgstr ""
5901
 
5902
- #: src/admin.php:4063
5903
  msgid "The backup records do not contain information about the proper size of this file."
5904
  msgstr ""
5905
 
5906
- #: src/admin.php:4055
5907
  msgid "Archive is expected to be size:"
5908
  msgstr ""
5909
 
5910
- #: src/admin.php:3953
5911
  msgid "If making a request for support, please include this information:"
5912
  msgstr ""
5913
 
5914
- #: src/admin.php:3952
5915
  msgid "ABORT: Could not find the information on which entities to restore."
5916
  msgstr ""
5917
 
5918
- #: src/admin.php:3907
5919
  msgid "UpdraftPlus Restoration: Progress"
5920
  msgstr ""
5921
 
5922
- #: src/admin.php:3860
5923
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5924
  msgstr ""
5925
 
5926
- #: src/admin.php:3795
5927
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5928
  msgstr ""
5929
 
5930
- #: src/admin.php:3813
5931
  msgid "Delete this backup set"
5932
  msgstr ""
5933
 
5934
- #: src/admin.php:3455
5935
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5936
  msgstr ""
5937
 
5938
- #: src/admin.php:3452
5939
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5940
  msgstr ""
5941
 
5942
- #: src/admin.php:3450
5943
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5944
  msgstr ""
5945
 
5946
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
5947
- #: src/methods/openstack-base.php:573, src/methods/s3.php:853
5948
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5949
  msgstr ""
5950
 
@@ -5980,23 +6002,23 @@ msgstr ""
5980
  msgid "Use the server's SSL certificates"
5981
  msgstr ""
5982
 
5983
- #: src/admin.php:3298
5984
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
5985
  msgstr ""
5986
 
5987
- #: src/admin.php:3298
5988
  msgid "click here"
5989
  msgstr ""
5990
 
5991
- #: src/admin.php:3298
5992
  msgid "or, to reset this option"
5993
  msgstr ""
5994
 
5995
- #: src/admin.php:3298
5996
  msgid "Follow this link to attempt to create the directory and set the permissions"
5997
  msgstr ""
5998
 
5999
- #: src/admin.php:3290
6000
  msgid "Backup directory specified is writable, which is good."
6001
  msgstr ""
6002
 
@@ -6036,7 +6058,7 @@ msgstr ""
6036
  msgid "Cancel"
6037
  msgstr ""
6038
 
6039
- #: src/addons/reporting.php:244, src/admin.php:3602
6040
  msgid "None"
6041
  msgstr ""
6042
 
@@ -6061,11 +6083,11 @@ msgstr ""
6061
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6062
  msgstr ""
6063
 
6064
- #: src/addons/morefiles.php:443, src/admin.php:3380
6065
  msgid "Exclude these:"
6066
  msgstr ""
6067
 
6068
- #: src/admin.php:3371
6069
  msgid "Any other directories found inside wp-content"
6070
  msgstr ""
6071
 
@@ -6081,45 +6103,45 @@ msgstr ""
6081
  msgid "To fix the time at which a backup should take place,"
6082
  msgstr ""
6083
 
6084
- #: src/admin.php:3284
6085
  msgid "Monthly"
6086
  msgstr ""
6087
 
6088
- #: src/admin.php:3283
6089
  msgid "Fortnightly"
6090
  msgstr ""
6091
 
6092
- #: src/admin.php:3282
6093
  msgid "Weekly"
6094
  msgstr ""
6095
 
6096
- #: src/admin.php:3281
6097
  msgid "Daily"
6098
  msgstr ""
6099
 
6100
- #: src/admin.php:706, src/admin.php:3259
6101
  msgid "Download log file"
6102
  msgstr ""
6103
 
6104
- #: src/admin.php:3131
6105
  msgid "The folder exists, but your webserver does not have permission to write to it."
6106
  msgstr ""
6107
 
6108
- #: src/admin.php:3126
6109
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
6110
  msgstr ""
6111
 
6112
- #: src/admin.php:3112
6113
  msgid "The request to the filesystem to create the directory failed."
6114
  msgstr ""
6115
 
6116
- #: src/addons/migrator.php:2377, src/admin.php:700, src/admin.php:3024,
6117
- #: src/admin.php:3057, src/admin.php:3813,
6118
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6119
  msgid "Delete"
6120
  msgstr ""
6121
 
6122
- #: src/admin.php:2962
6123
  msgid "show log"
6124
  msgstr ""
6125
 
@@ -6232,7 +6254,7 @@ msgstr ""
6232
  msgid "Do read this helpful article of useful things to know before restoring."
6233
  msgstr ""
6234
 
6235
- #: src/class-updraftplus.php:4468
6236
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
6237
  msgstr ""
6238
 
@@ -6276,19 +6298,19 @@ msgstr ""
6276
  msgid "Download error: the server sent us a response which we did not understand."
6277
  msgstr ""
6278
 
6279
- #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:108,
6280
- #: src/addons/migrator.php:822, src/addons/migrator.php:1119,
6281
- #: src/addons/migrator.php:1200, src/addons/migrator.php:1249,
6282
- #: src/addons/migrator.php:1487, src/addons/migrator.php:1838,
6283
- #: src/addons/migrator.php:1865, src/addons/migrator.php:1871,
6284
- #: src/addons/migrator.php:1933, src/addons/migrator.php:1973,
6285
- #: src/addons/migrator.php:2012, src/addons/migrator.php:2022,
6286
- #: src/addons/migrator.php:2027, src/addons/s3-enhanced.php:144,
6287
  #: src/addons/s3-enhanced.php:149, src/addons/s3-enhanced.php:151,
6288
- #: src/addons/sftp.php:818, src/addons/webdav.php:112, src/admin.php:87,
6289
- #: src/admin.php:674, src/admin.php:4060, src/admin.php:4090,
6290
  #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6291
- #: src/methods/updraftvault.php:504, src/restorer.php:1444
6292
  msgid "Error:"
6293
  msgstr ""
6294
 
@@ -6318,10 +6340,10 @@ msgstr ""
6318
  #: src/methods/googledrive.php:467, src/methods/googledrive.php:496,
6319
  #: src/methods/googledrive.php:503, src/methods/googledrive.php:513,
6320
  #: src/methods/googledrive.php:519, src/methods/googledrive.php:521,
6321
- #: src/methods/googledrive.php:1094, src/methods/googledrive.php:1107,
6322
- #: src/methods/googledrive.php:1107, src/methods/googledrive.php:1124,
6323
- #: src/methods/googledrive.php:1128, src/methods/googledrive.php:1139,
6324
- #: src/methods/googledrive.php:1150, src/methods/googledrive.php:1170
6325
  msgid "Google Drive"
6326
  msgstr ""
6327
 
@@ -6337,20 +6359,20 @@ msgstr ""
6337
  msgid "More tasks:"
6338
  msgstr ""
6339
 
6340
- #: src/admin.php:2720
6341
  msgid "Download most recently modified log file"
6342
  msgstr ""
6343
 
6344
- #: src/admin.php:2676, src/admin.php:2682, src/central/bootstrap.php:173
6345
  msgid "(Nothing yet logged)"
6346
  msgstr ""
6347
 
6348
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6349
- #: src/admin.php:2675, src/admin.php:2680
6350
  msgid "Last log message"
6351
  msgstr ""
6352
 
6353
- #: src/addons/migrator.php:238, src/admin.php:705, src/admin.php:3795,
6354
  #: src/templates/wp-admin/settings/tab-status.php:30
6355
  msgid "Restore"
6356
  msgstr ""
@@ -6360,16 +6382,16 @@ msgstr ""
6360
  msgid "Backup Now"
6361
  msgstr ""
6362
 
6363
- #: src/addons/migrator.php:1903, src/addons/moredatabase.php:247,
6364
- #: src/addons/reporting.php:259, src/admin.php:309, src/admin.php:3577,
6365
- #: src/admin.php:3657, src/admin.php:4144,
6366
  #: src/includes/class-wpadmin-commands.php:147,
6367
  #: src/includes/class-wpadmin-commands.php:487,
6368
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
6369
  msgid "Database"
6370
  msgstr ""
6371
 
6372
- #: src/admin.php:305, src/admin.php:4665
6373
  msgid "Files"
6374
  msgstr ""
6375
 
@@ -6397,15 +6419,15 @@ msgstr ""
6397
  msgid "JavaScript warning"
6398
  msgstr ""
6399
 
6400
- #: src/admin.php:685, src/admin.php:2747
6401
  msgid "Delete Old Directories"
6402
  msgstr ""
6403
 
6404
- #: src/admin.php:2467
6405
  msgid "Current limit is:"
6406
  msgstr ""
6407
 
6408
- #: src/admin.php:2442
6409
  msgid "Your backup has been restored."
6410
  msgstr ""
6411
 
@@ -6421,68 +6443,68 @@ msgstr ""
6421
  msgid "UpdraftPlus.Com"
6422
  msgstr ""
6423
 
6424
- #: src/admin.php:4557
6425
  msgid "Your settings have been wiped."
6426
  msgstr ""
6427
 
6428
- #: src/admin.php:2402
6429
  msgid "Backup directory successfully created."
6430
  msgstr ""
6431
 
6432
- #: src/admin.php:2395
6433
  msgid "Backup directory could not be created"
6434
  msgstr ""
6435
 
6436
- #: src/admin.php:2994
6437
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6438
  msgstr ""
6439
 
6440
- #: src/admin.php:2992
6441
  msgid "Old directories successfully removed."
6442
  msgstr ""
6443
 
6444
- #: src/admin.php:2989, src/admin.php:2989
6445
  msgid "Remove old directories"
6446
  msgstr ""
6447
 
6448
- #: src/addons/migrator.php:303, src/addons/migrator.php:318,
6449
- #: src/admin.php:2344, src/admin.php:2353, src/admin.php:2362,
6450
- #: src/admin.php:2404, src/admin.php:2996
6451
  msgid "Return to UpdraftPlus Configuration"
6452
  msgstr ""
6453
 
6454
- #: src/admin.php:678, src/admin.php:2344, src/admin.php:2353,
6455
- #: src/admin.php:2362, src/admin.php:2404, src/admin.php:2996,
6456
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6457
  msgid "Actions"
6458
  msgstr ""
6459
 
6460
- #: src/admin.php:2247
6461
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6462
  msgstr ""
6463
 
6464
- #: src/admin.php:2147
6465
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6466
  msgstr ""
6467
 
6468
- #: src/admin.php:2043
6469
  msgid "No local copy present."
6470
  msgstr ""
6471
 
6472
- #: src/admin.php:2040
6473
  msgid "Download in progress"
6474
  msgstr ""
6475
 
6476
- #: src/admin.php:677, src/admin.php:2029
6477
  msgid "File ready."
6478
  msgstr ""
6479
 
6480
- #: src/admin.php:2010
6481
  msgid "Download failed"
6482
  msgstr ""
6483
 
6484
- #: src/admin.php:675, src/admin.php:1300, src/admin.php:1774,
6485
- #: src/class-updraftplus.php:1224, src/class-updraftplus.php:1268,
6486
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
6487
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6488
  #: src/methods/stream-base.php:217, src/restorer.php:2354,
@@ -6490,15 +6512,15 @@ msgstr ""
6490
  msgid "Error"
6491
  msgstr ""
6492
 
6493
- #: src/admin.php:1809
6494
  msgid "Could not find that job - perhaps it has already finished?"
6495
  msgstr ""
6496
 
6497
- #: src/admin.php:1801
6498
  msgid "Job deleted"
6499
  msgstr ""
6500
 
6501
- #: src/admin.php:1890
6502
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6503
  msgstr ""
6504
 
@@ -6506,39 +6528,39 @@ msgstr ""
6506
  msgid "Nothing yet logged"
6507
  msgstr ""
6508
 
6509
- #: src/admin.php:975
6510
  msgid "Please consult this FAQ if you have problems backing up."
6511
  msgstr ""
6512
 
6513
- #: src/admin.php:975
6514
  msgid "Your website is hosted using the %s web server."
6515
  msgstr ""
6516
 
6517
- #: src/admin.php:971
6518
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
6519
  msgstr ""
6520
 
6521
- #: src/admin.php:967
6522
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
6523
  msgstr ""
6524
 
6525
- #: src/addons/migrator.php:877, src/admin.php:959, src/admin.php:963,
6526
- #: src/admin.php:967, src/admin.php:971, src/admin.php:975, src/admin.php:984,
6527
- #: src/admin.php:3443, src/admin.php:3450, src/admin.php:3452,
6528
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
6529
- #: src/methods/ftp.php:309, src/methods/openstack-base.php:573,
6530
- #: src/methods/s3.php:849, src/methods/s3.php:853,
6531
- #: src/methods/updraftvault.php:283,
6532
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6533
  #: src/udaddons/updraftplus-addons.php:253
6534
  msgid "Warning"
6535
  msgstr ""
6536
 
6537
- #: src/admin.php:905
6538
  msgid "Add-Ons / Pro Support"
6539
  msgstr ""
6540
 
6541
- #: src/admin.php:542, src/admin.php:903,
6542
  #: src/templates/wp-admin/settings/tab-bar.php:7
6543
  msgid "Settings"
6544
  msgstr ""
@@ -6547,7 +6569,7 @@ msgstr ""
6547
  msgid "Could not create %s zip. Consult the log file for more information."
6548
  msgstr ""
6549
 
6550
- #: src/backup.php:2226
6551
  msgid "Infinite recursion: consult your log for more information"
6552
  msgstr ""
6553
 
@@ -6559,50 +6581,50 @@ msgstr ""
6559
  msgid "Like UpdraftPlus and can spare one minute?"
6560
  msgstr ""
6561
 
6562
- #: src/addons/azure.php:219, src/class-updraftplus.php:4157,
6563
- #: src/methods/googledrive.php:1023, src/methods/s3.php:320
6564
  msgid "File not found"
6565
  msgstr ""
6566
 
6567
- #: src/class-updraftplus.php:4064
6568
  msgid "The decryption key used:"
6569
  msgstr ""
6570
 
6571
- #: src/class-updraftplus.php:4064, src/class-updraftplus.php:4372,
6572
  #: src/restorer.php:419
6573
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6574
  msgstr ""
6575
 
6576
- #: src/class-updraftplus.php:4045, src/class-updraftplus.php:4360,
6577
  #: src/restorer.php:406
6578
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6579
  msgstr ""
6580
 
6581
- #: src/backup.php:2101
6582
  msgid "Could not open the backup file for writing"
6583
  msgstr ""
6584
 
6585
- #: src/class-updraftplus.php:3387
6586
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6587
  msgstr ""
6588
 
6589
- #: src/class-updraftplus.php:3348
6590
  msgid "Could not read the directory"
6591
  msgstr ""
6592
 
6593
- #: src/admin.php:2089, src/backup.php:1282
6594
  msgid "Backup directory (%s) is not writable, or does not exist."
6595
  msgstr ""
6596
 
6597
- #: src/backup.php:1059
6598
  msgid "WordPress backup is complete"
6599
  msgstr ""
6600
 
6601
- #: src/class-updraftplus.php:2858
6602
  msgid "The backup attempt has finished, apparently unsuccessfully"
6603
  msgstr ""
6604
 
6605
- #: src/class-updraftplus.php:2843
6606
  msgid "The backup apparently succeeded and is now complete"
6607
  msgstr ""
6608
 
@@ -6610,42 +6632,42 @@ msgstr ""
6610
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6611
  msgstr ""
6612
 
6613
- #: src/class-updraftplus.php:2546
6614
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6615
  msgstr ""
6616
 
6617
- #: src/class-updraftplus.php:1825
6618
  msgid "Others"
6619
  msgstr ""
6620
 
6621
- #: src/addons/multisite.php:467, src/class-updraftplus.php:1810
6622
  msgid "Uploads"
6623
  msgstr ""
6624
 
6625
- #: src/class-updraftplus.php:1809
6626
  msgid "Themes"
6627
  msgstr ""
6628
 
6629
- #: src/class-updraftplus.php:1808
6630
  msgid "Plugins"
6631
  msgstr ""
6632
 
6633
- #: src/class-updraftplus.php:584
6634
  msgid "No log files were found."
6635
  msgstr ""
6636
 
6637
- #: src/admin.php:1959, src/admin.php:1963, src/class-updraftplus.php:579
6638
  msgid "The log file could not be read."
6639
  msgstr ""
6640
 
6641
- #: src/admin.php:994, src/admin.php:1003, src/admin.php:1008,
6642
- #: src/admin.php:1016, src/admin.php:1025, src/class-updraftplus.php:544,
6643
- #: src/class-updraftplus.php:579, src/class-updraftplus.php:584,
6644
- #: src/class-updraftplus.php:589
6645
  msgid "UpdraftPlus notice:"
6646
  msgstr ""
6647
 
6648
- #: src/addons/multisite.php:65, src/addons/multisite.php:689,
6649
  #: src/options.php:50
6650
  msgid "UpdraftPlus Backups"
6651
  msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.3.1\n"
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/addons/migrator.php:406
15
+ msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
16
+ msgstr ""
17
+
18
+ #: src/addons/migrator.php:395
19
+ msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use below search and replace so that the non-https links are automatically replaced."
20
+ msgstr ""
21
+
22
+ #: src/addons/migrator.php:384
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use below search and replace to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/addons/morestorage.php:91
27
+ msgid "Add another %s account..."
28
+ msgstr ""
29
+
30
+ #: src/addons/morestorage.php:70
31
+ msgid "Delete these settings"
32
+ msgstr ""
33
+
34
+ #: src/addons/morestorage.php:68, src/admin.php:777
35
+ msgid "Currently disabled"
36
+ msgstr ""
37
+
38
+ #: src/addons/morestorage.php:68, src/admin.php:776
39
+ msgid "Currently enabled"
40
+ msgstr ""
41
+
42
  #: src/templates/wp-admin/settings/tab-addons.php:14
43
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
44
  msgstr ""
51
  msgid "get it here"
52
  msgstr ""
53
 
54
+ #: src/methods/stream-base.php:322
55
  msgid "Download chunk size successfully changed to %d"
56
  msgstr ""
57
 
58
+ #: src/methods/stream-base.php:319
59
  msgid "Download chunk size failed to change to %d"
60
  msgstr ""
61
 
71
  msgid "remote site"
72
  msgstr ""
73
 
74
+ #: src/addons/backblaze.php:461
75
  msgid "Invalid bucket name"
76
  msgstr ""
77
 
81
  msgstr[0] ""
82
  msgstr[1] ""
83
 
84
+ #: src/class-updraftplus.php:4364
85
  msgid "Your chosen replacement collation"
86
  msgstr ""
87
 
88
+ #: src/class-updraftplus.php:4341
89
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
90
  msgstr ""
91
 
92
+ #: src/class-updraftplus.php:4341
93
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
94
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
95
  msgstr[0] ""
96
  msgstr[1] ""
97
 
98
+ #: src/addons/migrator.php:529
99
  msgid "Database restoration options:"
100
  msgstr ""
101
 
102
+ #: src/addons/migrator.php:373
103
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
104
  msgstr ""
105
 
106
+ #: src/addons/azure.php:629
107
  msgid "%s Prefix"
108
  msgstr ""
109
 
110
+ #: src/addons/azure.php:624
111
  msgid "%s Container"
112
  msgstr ""
113
 
114
+ #: src/addons/azure.php:619
115
  msgid "%s Key"
116
  msgstr ""
117
 
118
+ #: src/addons/azure.php:615
119
  msgid "%s Account Name"
120
  msgstr ""
121
 
122
+ #: src/addons/googlecloud.php:684
123
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
124
  msgstr ""
125
 
126
+ #: src/addons/googlecloud.php:682
127
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
128
  msgstr ""
129
 
147
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
148
  msgstr ""
149
 
150
+ #: src/addons/migrator.php:913
151
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
152
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
153
  msgstr[0] ""
157
  msgid "Requested table character set (%s) is not present - changing to %s."
158
  msgstr ""
159
 
160
+ #: src/class-updraftplus.php:4317
161
  msgid "Your chosen character set to use instead:"
162
  msgstr ""
163
 
164
+ #: src/class-updraftplus.php:4307
165
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
166
  msgstr ""
167
 
168
+ #: src/class-updraftplus.php:4307
169
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
170
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
171
  msgstr[0] ""
219
  msgid "Please enter a valid URL e.g http://example.com"
220
  msgstr ""
221
 
222
+ #: src/addons/backblaze.php:619
223
  msgid "your Backblaze console"
224
  msgstr ""
225
 
226
+ #: src/addons/backblaze.php:619
227
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
228
  msgstr ""
229
 
230
+ #: src/addons/backblaze.php:619
231
  msgid "N.B. You need to create the bucket in %s first."
232
  msgstr ""
233
 
234
+ #: src/addons/backblaze.php:618
235
  msgid "some/path"
236
  msgstr ""
237
 
238
+ #: src/addons/backblaze.php:618
239
  msgid "Bucket name"
240
  msgstr ""
241
 
242
+ #: src/addons/backblaze.php:617
243
  msgid "Backup path"
244
  msgstr ""
245
 
246
+ #: src/addons/backblaze.php:612
247
  msgid "Application key"
248
  msgstr ""
249
 
250
+ #: src/addons/backblaze.php:607, src/addons/backblaze.php:607
251
  msgid "here"
252
  msgstr ""
253
 
254
+ #: src/addons/backblaze.php:607
255
  msgid "Get these settings from %s, or sign up %s."
256
  msgstr ""
257
 
258
+ #: src/addons/backblaze.php:458
259
  msgid "Bucket not found"
260
  msgstr ""
261
 
262
+ #: src/addons/backblaze.php:412
263
  msgid "Account Key"
264
  msgstr ""
265
 
266
+ #: src/addons/backblaze.php:411, src/addons/backblaze.php:605
267
  msgid "Account ID"
268
  msgstr ""
269
 
270
+ #: src/class-updraftplus.php:4149
271
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
272
  msgstr ""
273
 
274
+ #: src/class-updraftplus.php:4147, src/class-updraftplus.php:4149
275
  msgid "the migrator add-on"
276
  msgstr ""
277
 
278
+ #: src/class-updraftplus.php:4147
279
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
280
  msgstr ""
281
 
282
+ #: src/class-updraftplus.php:4145
283
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
284
  msgstr ""
285
 
286
+ #: src/class-updraftplus.php:4140
287
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
288
  msgstr ""
289
 
290
+ #: src/methods/googledrive.php:1240
291
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
292
  msgstr ""
293
 
294
+ #: src/methods/googledrive.php:1237
295
  msgid "Follow this link to remove this site's settings for %s."
296
  msgstr ""
297
 
303
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
304
  msgstr ""
305
 
306
+ #: src/admin.php:1350, src/admin.php:4170, src/backup.php:2106,
307
+ #: src/class-updraftplus.php:2181, src/class-updraftplus.php:2246,
308
+ #: src/class-updraftplus.php:2380
309
  msgid "A PHP fatal error (%s) has occurred: %s"
310
  msgstr ""
311
 
312
+ #: src/admin.php:1341, src/admin.php:4156, src/backup.php:2097,
313
+ #: src/class-updraftplus.php:2172, src/class-updraftplus.php:2239,
314
+ #: src/class-updraftplus.php:2373
315
  msgid "A PHP exception (%s) has occurred: %s"
316
  msgstr ""
317
 
355
  msgid "Select Files"
356
  msgstr ""
357
 
358
+ #: src/methods/cloudfiles.php:476
359
  msgid "Rackspace Storage Region"
360
  msgstr ""
361
 
363
  msgid "Instant and secure logon with a wave of your phone."
364
  msgstr ""
365
 
366
+ #: src/backup.php:2110
367
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
368
  msgstr ""
369
 
370
+ #: src/admin.php:4698
371
  msgid "Value"
372
  msgstr ""
373
 
374
+ #: src/admin.php:1616
375
  msgid "Did not know how to delete from this cloud service."
376
  msgstr ""
377
 
378
+ #: src/addons/sftp.php:716
379
  msgid "Encrypted login failed; trying non-encrypted"
380
  msgstr ""
381
 
382
+ #: src/addons/azure.php:592
383
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
384
  msgstr ""
385
 
387
  msgid "Stored at: %s"
388
  msgstr ""
389
 
390
+ #: src/methods/cloudfiles.php:496
391
  msgid "Cloud Files"
392
  msgstr ""
393
 
394
+ #: src/admin.php:4511
395
  msgid "Your settings failed to save. Please refresh the settings page and try again"
396
  msgstr ""
397
 
398
+ #: src/admin.php:4470
399
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
400
  msgstr ""
401
 
412
  msgid "Extra database"
413
  msgstr ""
414
 
415
+ #: src/admin.php:3731
416
  msgid "Press here to download or browse"
417
  msgstr ""
418
 
419
+ #: src/admin.php:1124, src/admin.php:1134
420
  msgid "Error: invalid path"
421
  msgstr ""
422
 
423
+ #: src/admin.php:948
424
  msgid "An error occurred when fetching storage module options: "
425
  msgstr ""
426
 
456
  msgid "Skipped tables:"
457
  msgstr ""
458
 
459
+ #: src/class-updraftplus.php:4429
460
  msgid "This database backup has the following WordPress tables excluded: %s"
461
  msgstr ""
462
 
463
+ #: src/admin.php:2626
464
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
465
  msgstr ""
466
 
467
+ #: src/admin.php:2626
468
  msgid "All WordPress tables will be backed up."
469
  msgstr ""
470
 
964
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
965
  msgstr ""
966
 
967
+ #: src/methods/dropbox.php:686
968
  msgid "%s de-authentication"
969
  msgstr ""
970
 
971
+ #: src/methods/dropbox.php:606
972
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
973
  msgstr ""
974
 
975
+ #: src/methods/dropbox.php:583
976
  msgid "Follow this link to deauthenticate with %s."
977
  msgstr ""
978
 
980
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
981
  msgstr ""
982
 
983
+ #: src/backup.php:1704
984
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
985
  msgstr ""
986
 
988
  msgid "You have selected a remote storage option which has an authorization step to complete:"
989
  msgstr ""
990
 
991
+ #: src/admin.php:1692
992
  msgid "Remote files deleted:"
993
  msgstr ""
994
 
995
+ #: src/admin.php:1691
996
  msgid "Local files deleted:"
997
  msgstr ""
998
 
999
+ #: src/admin.php:996, src/admin.php:1005, src/admin.php:1018,
1000
+ #: src/admin.php:1027
1001
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
1002
  msgstr ""
1003
 
1041
  msgid "US East (Ohio)"
1042
  msgstr ""
1043
 
1044
+ #: src/addons/onedrive.php:1029
1045
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1046
  msgstr ""
1047
 
1048
+ #: src/addons/onedrive.php:698
1049
  msgid "Account is not authorized (%s)."
1050
  msgstr ""
1051
 
1052
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873
1053
  msgid "Your IP address:"
1054
  msgstr ""
1055
 
1056
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873,
1057
  #: src/udaddons/updraftplus-addons.php:887
1058
  msgid "To remove any block, please go here."
1059
  msgstr ""
1060
 
1061
+ #: src/addons/onedrive.php:643, src/udaddons/updraftplus-addons.php:858
1062
  msgid "An error response was received; HTTP code:"
1063
  msgstr ""
1064
 
1074
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1075
  msgstr ""
1076
 
1077
+ #: src/admin.php:2440
1078
  msgid "To fix this problem go here."
1079
  msgstr ""
1080
 
1081
+ #: src/admin.php:2440
1082
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1083
  msgstr ""
1084
 
1086
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1087
  msgstr ""
1088
 
1089
+ #: src/addons/webdav.php:204
1090
  msgid "Path"
1091
  msgstr ""
1092
 
1093
+ #: src/addons/webdav.php:199
1094
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1095
  msgstr ""
1096
 
1097
+ #: src/addons/webdav.php:191
1098
  msgid "Enter any path in the field below."
1099
  msgstr ""
1100
 
1101
+ #: src/addons/webdav.php:191
1102
  msgid "A host name cannot contain a slash."
1103
  msgstr ""
1104
 
1105
+ #: src/addons/webdav.php:166
1106
  msgid "Protocol (SSL or not)"
1107
  msgstr ""
1108
 
1109
+ #: src/addons/webdav.php:161
1110
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1111
  msgstr ""
1112
 
1114
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1115
  msgstr ""
1116
 
1117
+ #: src/methods/s3.php:1110
1118
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1119
  msgstr ""
1120
 
1154
  msgid "Public key was sent to:"
1155
  msgstr ""
1156
 
1157
+ #: src/backup.php:2322
1158
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1159
  msgstr ""
1160
 
1161
+ #: src/backup.php:2300
1162
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1163
  msgstr ""
1164
 
1165
+ #: src/addons/migrator.php:2378
1166
  msgid "Create key"
1167
  msgstr ""
1168
 
1169
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:526
1170
  msgid "slower, strongest"
1171
  msgstr ""
1172
 
1173
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1174
  msgid "recommended"
1175
  msgstr ""
1176
 
1177
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1178
  msgid "%s bytes"
1179
  msgstr ""
1180
 
1181
+ #: src/addons/migrator.php:2373, src/central/bootstrap.php:524
1182
  msgid "faster (possibility for slow PHP installs)"
1183
  msgstr ""
1184
 
1185
+ #: src/addons/migrator.php:2372, src/central/bootstrap.php:523
1186
  msgid "easy to break, fastest"
1187
  msgstr ""
1188
 
1189
+ #: src/addons/migrator.php:2372, src/addons/migrator.php:2373,
1190
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:523,
1191
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1192
  msgid "%s bits"
1193
  msgstr ""
1194
 
1195
+ #: src/addons/migrator.php:2370, src/central/bootstrap.php:521
1196
  msgid "Encryption key size:"
1197
  msgstr ""
1198
 
1199
+ #: src/addons/migrator.php:2368
1200
  msgid "Enter your chosen name"
1201
  msgstr ""
1202
 
1203
+ #: src/addons/migrator.php:2367
1204
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1205
  msgstr ""
1206
 
1208
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1209
  msgstr ""
1210
 
1211
+ #: src/methods/ftp.php:435
1212
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1213
  msgstr ""
1214
 
1215
+ #: src/methods/ftp.php:407
1216
  msgid "login"
1217
  msgstr ""
1218
 
1219
+ #: src/methods/email.php:91
1220
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1221
  msgstr ""
1222
 
1224
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1225
  msgstr ""
1226
 
1227
+ #: src/class-updraftplus.php:1788
1228
  msgid "Size: %s MB"
1229
  msgstr ""
1230
 
1236
  msgid "Now"
1237
  msgstr ""
1238
 
1239
+ #: src/class-updraftplus.php:4166, src/restorer.php:1045
1240
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1241
  msgstr ""
1242
 
1244
  msgid "(tap on an icon to select or unselect)"
1245
  msgstr ""
1246
 
1247
+ #: src/methods/updraftvault.php:319, src/methods/updraftvault.php:325,
1248
+ #: src/methods/updraftvault.php:331
1249
  msgid "%s per year"
1250
  msgstr ""
1251
 
1252
+ #: src/methods/updraftvault.php:318, src/methods/updraftvault.php:324,
1253
+ #: src/methods/updraftvault.php:330
1254
  msgid "or (annual discount)"
1255
  msgstr ""
1256
 
1258
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1259
  msgstr ""
1260
 
1261
+ #: src/class-updraftplus.php:556, src/class-updraftplus.php:601
1262
  msgid "The given file was not found, or could not be read."
1263
  msgstr ""
1264
 
1342
  msgid "UpdraftCentral Connection"
1343
  msgstr ""
1344
 
1345
+ #: src/backup.php:1006, src/class-updraftplus.php:2862
1346
  msgid "The backup was aborted by the user"
1347
  msgstr ""
1348
 
1349
+ #: src/admin.php:4506
1350
  msgid "Your settings have been saved."
1351
  msgstr ""
1352
 
1353
+ #: src/admin.php:3609
1354
  msgid "Total backup size:"
1355
  msgstr ""
1356
 
1357
+ #: src/admin.php:2966
1358
  msgid "stop"
1359
  msgstr ""
1360
 
1361
+ #: src/admin.php:2808
1362
  msgid "The backup has finished running"
1363
  msgstr ""
1364
 
1420
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1421
  msgstr ""
1422
 
1423
+ #: src/class-updraftplus.php:4217, src/restorer.php:1740
1424
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1425
  msgstr ""
1426
 
1427
+ #: src/class-updraftplus.php:4213
1428
  msgid "Please read this link for important information on this process."
1429
  msgstr ""
1430
 
1431
+ #: src/class-updraftplus.php:4213
1432
  msgid "It will be imported as a new site."
1433
  msgstr ""
1434
 
1435
+ #: src/admin.php:2599, src/templates/wp-admin/notices/horizontal-notice.php:16,
1436
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1437
  msgid "Dismiss"
1438
  msgstr ""
1441
  msgid "Please fill in the required information."
1442
  msgstr ""
1443
 
1444
+ #: src/addons/multisite.php:568
1445
  msgid "Read more..."
1446
  msgstr ""
1447
 
1448
+ #: src/addons/multisite.php:559
1449
  msgid "may include some site-wide data"
1450
  msgstr ""
1451
 
1452
+ #: src/addons/multisite.php:554
1453
  msgid "All sites"
1454
  msgstr ""
1455
 
1456
+ #: src/addons/multisite.php:550
1457
  msgid "Which site to restore"
1458
  msgstr ""
1459
 
1460
+ #: src/addons/migrator.php:599, src/addons/migrator.php:600
1461
  msgid "Error when creating new site at your chosen address:"
1462
  msgstr ""
1463
 
1464
+ #: src/addons/migrator.php:541
1465
  msgid "Required information for restoring this backup was not given (%s)"
1466
  msgstr ""
1467
 
1468
+ #: src/addons/migrator.php:493
1469
  msgid "Attribute imported content to user"
1470
  msgstr ""
1471
 
1472
+ #: src/addons/migrator.php:483, src/addons/migrator.php:485
1473
  msgid "You must use lower-case letters or numbers for the site path, only."
1474
  msgstr ""
1475
 
1476
+ #: src/addons/migrator.php:471
1477
  msgid "This feature is not compatible with %s"
1478
  msgstr ""
1479
 
1480
+ #: src/addons/migrator.php:469, src/addons/migrator.php:471
1481
  msgid "Importing a single site into a multisite install"
1482
  msgstr ""
1483
 
1484
+ #: src/addons/migrator.php:460
1485
  msgid "other content from wp-content"
1486
  msgstr ""
1487
 
1488
+ #: src/addons/migrator.php:457
1489
  msgid "WordPress core"
1490
  msgstr ""
1491
 
1492
+ #: src/addons/migrator.php:457, src/addons/migrator.php:460,
1493
+ #: src/addons/migrator.php:463
1494
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1495
  msgstr ""
1496
 
1498
  msgid "Call WordPress action:"
1499
  msgstr ""
1500
 
1501
+ #: src/admin.php:2634
1502
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1503
  msgstr ""
1504
 
1505
+ #: src/admin.php:4045
1506
  msgid "Skipping: this archive was already restored."
1507
  msgstr ""
1508
 
1534
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1535
  msgstr ""
1536
 
1537
+ #: src/admin.php:4380
1538
  msgid "Send this backup to remote storage"
1539
  msgstr ""
1540
 
1541
+ #: src/admin.php:4378
1542
  msgid "Check out UpdraftPlus Vault."
1543
  msgstr ""
1544
 
1545
+ #: src/admin.php:4378
1546
  msgid "Not got any remote storage?"
1547
  msgstr ""
1548
 
1549
+ #: src/admin.php:4378
1550
  msgid "settings"
1551
  msgstr ""
1552
 
1553
+ #: src/admin.php:4378
1554
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1555
  msgstr ""
1556
 
1557
+ #: src/admin.php:2632
1558
  msgid "Include any files in the backup"
1559
  msgstr ""
1560
 
1561
+ #: src/admin.php:2618
1562
  msgid "Include the database in the backup"
1563
  msgstr ""
1564
 
1565
+ #: src/admin.php:2598
1566
  msgid "Continue restoration"
1567
  msgstr ""
1568
 
1569
+ #: src/admin.php:2593
1570
  msgid "You have an unfinished restoration operation, begun %s ago."
1571
  msgstr ""
1572
 
1573
+ #: src/admin.php:2592
1574
  msgid "Unfinished restoration"
1575
  msgstr ""
1576
 
1577
+ #: src/admin.php:2590
1578
  msgid "%s minutes, %s seconds"
1579
  msgstr ""
1580
 
1581
+ #: src/admin.php:2537
1582
  msgid "Backup Contents And Schedule"
1583
  msgstr ""
1584
 
1586
  msgid "Premium / Extensions"
1587
  msgstr ""
1588
 
1589
+ #: src/admin.php:2306, src/admin.php:2315
1590
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1591
  msgstr ""
1592
 
1607
  msgid "Advanced Tools"
1608
  msgstr ""
1609
 
1610
+ #: src/addons/googlecloud.php:1041
1611
  msgid "Bucket location"
1612
  msgstr ""
1613
 
1614
+ #: src/addons/googlecloud.php:1036
1615
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1616
  msgstr ""
1617
 
1618
+ #: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049
1619
  msgid "This setting applies only when a new bucket is being created."
1620
  msgstr ""
1621
 
1622
+ #: src/addons/googlecloud.php:1025
1623
  msgid "You must use a bucket name that is unique, for all %s users."
1624
  msgstr ""
1625
 
1626
+ #: src/addons/googlecloud.php:971
1627
  msgid "Do not confuse %s with %s - they are separate things."
1628
  msgstr ""
1629
 
1685
  msgid "Standard"
1686
  msgstr ""
1687
 
1688
+ #: src/addons/azure.php:630
1689
  msgid "container"
1690
  msgstr ""
1691
 
1692
+ #: src/addons/azure.php:630
1693
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1694
  msgstr ""
1695
 
1696
+ #: src/addons/azure.php:629
1697
  msgid "optional"
1698
  msgstr ""
1699
 
1700
+ #: src/addons/azure.php:625
1701
  msgid "See Microsoft's guidelines on container naming by following this link."
1702
  msgstr ""
1703
 
1704
+ #: src/addons/azure.php:625
1705
  msgid "Enter the path of the %s you wish to use here."
1706
  msgstr ""
1707
 
1708
+ #: src/addons/azure.php:616
1709
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1710
  msgstr ""
1711
 
1712
+ #: src/addons/azure.php:615, src/addons/azure.php:619,
1713
+ #: src/addons/azure.php:624, src/addons/azure.php:629
1714
  msgid "Azure"
1715
  msgstr ""
1716
 
1717
+ #: src/addons/azure.php:596
1718
  msgid "Create Azure credentials in your Azure developer console."
1719
  msgstr ""
1720
 
1721
+ #: src/addons/azure.php:560
1722
  msgid "Could not create the container"
1723
  msgstr ""
1724
 
1725
+ #: src/addons/azure.php:411
1726
  msgid "Could not access container"
1727
  msgstr ""
1728
 
1729
+ #: src/class-updraftplus.php:2879
1730
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1731
  msgstr ""
1732
 
1733
+ #: src/backup.php:1756
1734
  msgid "the options table was not found"
1735
  msgstr ""
1736
 
1737
+ #: src/backup.php:1754
1738
  msgid "no options or sitemeta table was found"
1739
  msgstr ""
1740
 
1741
+ #: src/backup.php:1754, src/backup.php:1756
1742
  msgid "The database backup appears to have failed"
1743
  msgstr ""
1744
 
1745
+ #: src/backup.php:1626
1746
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1747
  msgstr ""
1748
 
1754
  msgid "Not installed"
1755
  msgstr ""
1756
 
1757
+ #: src/addons/googlecloud.php:1028, src/addons/s3-enhanced.php:63
1758
  msgid "Storage class"
1759
  msgstr ""
1760
 
1761
+ #: src/addons/googlecloud.php:1025
1762
  msgid "See Google's guidelines on bucket naming by following this link."
1763
  msgstr ""
1764
 
1765
+ #: src/addons/googlecloud.php:1025
1766
  msgid "Enter the name of the %s bucket you wish to use here."
1767
  msgstr ""
1768
 
1769
+ #: src/addons/googlecloud.php:1024
1770
  msgid "Bucket"
1771
  msgstr ""
1772
 
1773
+ #: src/addons/googlecloud.php:1020
1774
  msgid "Otherwise, you can leave it blank."
1775
  msgstr ""
1776
 
1777
+ #: src/addons/googlecloud.php:1020
1778
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1779
  msgstr ""
1780
 
1781
+ #: src/addons/googlecloud.php:1020
1782
  msgid "Enter the ID of the %s project you wish to use here."
1783
  msgstr ""
1784
 
1785
+ #: src/addons/googlecloud.php:983
1786
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1787
  msgstr ""
1788
 
1789
+ #: src/addons/googlecloud.php:894
1790
  msgid "You must enter a project ID in order to be able to create a new bucket."
1791
  msgstr ""
1792
 
1793
+ #: src/addons/googlecloud.php:1018
1794
  msgid "Project ID"
1795
  msgstr ""
1796
 
1797
+ #: src/addons/googlecloud.php:751
1798
  msgid "You must save and authenticate before you can test your settings."
1799
  msgstr ""
1800
 
1803
  msgstr ""
1804
 
1805
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1806
+ #: src/addons/googlecloud.php:886, src/addons/googlecloud.php:933
1807
  msgid "You do not have access to this bucket."
1808
  msgstr ""
1809
 
1810
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1811
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1812
+ #: src/addons/googlecloud.php:710, src/addons/googlecloud.php:886,
1813
+ #: src/addons/googlecloud.php:933, src/addons/googlecloud.php:977,
1814
+ #: src/addons/googlecloud.php:977, src/addons/googlecloud.php:1005,
1815
+ #: src/addons/googlecloud.php:1013, src/addons/googlecloud.php:1025
1816
  msgid "Google Cloud"
1817
  msgstr ""
1818
 
1819
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1820
+ #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:886,
1821
+ #: src/addons/googlecloud.php:933
1822
  msgid "%s Service Exception."
1823
  msgstr ""
1824
 
1855
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1856
  msgstr ""
1857
 
1858
+ #: src/admin.php:1690
1859
  msgid "Backup sets removed:"
1860
  msgstr ""
1861
 
1887
  msgid "day"
1888
  msgstr ""
1889
 
1890
+ #: src/addons/morestorage.php:29
1891
  msgid "(as many as you like)"
1892
  msgstr ""
1893
 
1903
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1904
  msgstr ""
1905
 
1906
+ #: src/methods/updraftvault.php:693
1907
  msgid "You do not currently have any UpdraftPlus Vault quota"
1908
  msgstr ""
1909
 
1910
+ #: src/class-updraftplus.php:4286
1911
  msgid "You must upgrade MySQL to be able to use this database."
1912
  msgstr ""
1913
 
1914
+ #: src/class-updraftplus.php:4286
1915
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1916
  msgstr ""
1917
 
1918
+ #: src/admin.php:2425
1919
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1920
  msgstr ""
1921
 
1922
+ #: src/methods/updraftvault.php:351
1923
  msgid "Don't know your email address, or forgotten your password?"
1924
  msgstr ""
1925
 
1926
+ #: src/methods/updraftvault.php:344
1927
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1928
  msgstr ""
1929
 
1930
+ #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:337
1931
  msgid "Read the FAQs here."
1932
  msgstr ""
1933
 
1939
  msgid "Server-side encryption"
1940
  msgstr ""
1941
 
1942
+ #: src/methods/updraftvault.php:701
1943
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1944
  msgstr ""
1945
 
1946
+ #: src/admin.php:1010
1947
  msgid "Go to the remote storage settings in order to connect."
1948
  msgstr ""
1949
 
1950
+ #: src/admin.php:1010
1951
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1952
  msgstr ""
1953
 
1954
+ #: src/methods/updraftvault.php:334
1955
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1956
  msgstr ""
1957
 
1971
  msgid "Connecting..."
1972
  msgstr ""
1973
 
1974
+ #: src/methods/updraftvault.php:454, src/methods/updraftvault.php:528
1975
  msgid "Refresh current status"
1976
  msgstr ""
1977
 
1978
+ #: src/methods/updraftvault.php:452, src/methods/updraftvault.php:468,
1979
+ #: src/methods/updraftvault.php:470, src/methods/updraftvault.php:528
1980
  msgid "Get more quota"
1981
  msgstr ""
1982
 
1983
+ #: src/methods/updraftvault.php:449, src/methods/updraftvault.php:465,
1984
+ #: src/methods/updraftvault.php:509
1985
  msgid "Current use:"
1986
  msgstr ""
1987
 
1988
+ #: src/methods/updraftvault.php:444
1989
  msgid "You can get more quota here"
1990
  msgstr ""
1991
 
1992
+ #: src/methods/updraftvault.php:444
1993
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1994
  msgstr ""
1995
 
1996
+ #: src/admin.php:712, src/methods/updraftvault.php:378,
1997
+ #: src/methods/updraftvault.php:436
1998
  msgid "Disconnect"
1999
  msgstr ""
2000
 
2001
+ #: src/methods/updraftvault.php:375, src/methods/updraftvault.php:428
2002
  msgid "Quota:"
2003
  msgstr ""
2004
 
2005
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2006
  msgid "Vault owner"
2007
  msgstr ""
2008
 
2009
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2010
  msgid "Well done - there's nothing more needed to set up."
2011
  msgstr ""
2012
 
2013
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2014
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
2015
  msgstr ""
2016
 
2017
+ #: src/methods/updraftvault.php:380, src/methods/updraftvault.php:422
2018
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
2019
  msgstr ""
2020
 
2021
+ #: src/methods/updraftvault.php:351
2022
  msgid "Go here for help"
2023
  msgstr ""
2024
 
2025
+ #: src/methods/updraftvault.php:346
2026
  msgid "E-mail"
2027
  msgstr ""
2028
 
2029
+ #: src/central/bootstrap.php:551, src/methods/updraftvault.php:340,
2030
+ #: src/methods/updraftvault.php:354
2031
  msgid "Back..."
2032
  msgstr ""
2033
 
2034
+ #: src/methods/updraftvault.php:334
2035
  msgid "Subscriptions can be cancelled at any time."
2036
  msgstr ""
2037
 
2039
  msgid "Buy it now"
2040
  msgstr ""
2041
 
2042
+ #: src/methods/updraftvault.php:317, src/methods/updraftvault.php:323,
2043
+ #: src/methods/updraftvault.php:329
2044
  msgid "%s per quarter"
2045
  msgstr ""
2046
 
2047
+ #: src/central/bootstrap.php:578, src/methods/updraftvault.php:308,
2048
+ #: src/methods/updraftvault.php:337
2049
  msgid "Read more about it here."
2050
  msgstr ""
2051
 
2052
+ #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:337
2053
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
2054
  msgstr ""
2055
 
2056
+ #: src/methods/updraftvault.php:304
2057
  msgid "Already purchased space?"
2058
  msgstr ""
2059
 
2060
+ #: src/methods/updraftvault.php:301
2061
  msgid "Show the options"
2062
  msgstr ""
2063
 
2064
+ #: src/methods/updraftvault.php:300
2065
  msgid "First time user?"
2066
  msgstr ""
2067
 
2068
+ #: src/methods/updraftvault.php:297, src/methods/updraftvault.php:314
2069
  msgid "Press a button to get started."
2070
  msgstr ""
2071
 
2072
+ #: src/methods/updraftvault.php:297, src/methods/updraftvault.php:314
2073
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
2074
  msgstr ""
2075
 
2089
  msgid "Updraft Vault"
2090
  msgstr ""
2091
 
2092
+ #: src/addons/azure.php:441, src/addons/backblaze.php:491,
2093
+ #: src/addons/googlecloud.php:835, src/methods/s3.php:1138
2094
  msgid "Delete failed:"
2095
  msgstr ""
2096
 
2097
+ #: src/backup.php:3367
2098
  msgid "The zip engine returned the message: %s."
2099
  msgstr ""
2100
 
2114
  msgid "Allow download"
2115
  msgstr ""
2116
 
2117
+ #: src/addons/migrator.php:1922
2118
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
2119
  msgstr ""
2120
 
2121
+ #: src/addons/migrator.php:1907, src/admin.php:721
2122
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
2123
  msgstr ""
2124
 
2125
+ #: src/addons/migrator.php:2410
2126
  msgid "Existing keys"
2127
  msgstr ""
2128
 
2129
+ #: src/addons/migrator.php:2401
2130
  msgid "No keys to allow remote sites to connect have yet been created."
2131
  msgstr ""
2132
 
2133
+ #: src/addons/migrator.php:2383
2134
  msgid "Your new key:"
2135
  msgstr ""
2136
 
2137
+ #: src/addons/migrator.php:2362
2138
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
2139
  msgstr ""
2140
 
2141
+ #: src/addons/migrator.php:2344
2142
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
2143
  msgstr ""
2144
 
2145
+ #: src/addons/migrator.php:2344
2146
  msgid "Keys for this site are created in the section below the one you just pressed in."
2147
  msgstr ""
2148
 
2149
+ #: src/addons/migrator.php:2024, src/central/bootstrap.php:387
2150
  msgid "You must copy and paste this key now - it cannot be shown again."
2151
  msgstr ""
2152
 
2153
+ #: src/addons/migrator.php:2024, src/central/bootstrap.php:387
2154
  msgid "Key created successfully."
2155
  msgstr ""
2156
 
2157
+ #: src/addons/migrator.php:2009
2158
  msgid "A key with this name already exists; you must use a unique name."
2159
  msgstr ""
2160
 
2161
+ #: src/addons/migrator.php:1953
2162
  msgid "Also send this backup to the active remote storage locations"
2163
  msgstr ""
2164
 
2165
+ #: src/addons/migrator.php:1918
2166
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
2167
  msgstr ""
2168
 
2169
+ #: src/addons/migrator.php:1874
2170
  msgid "site not found"
2171
  msgstr ""
2172
 
2173
+ #: src/addons/migrator.php:1859
2174
  msgid "Backup data will be sent to:"
2175
  msgstr ""
2176
 
2177
+ #: src/addons/migrator.php:213
2178
  msgid "Restore an existing backup set onto this site"
2179
  msgstr ""
2180
 
2181
+ #: src/addons/migrator.php:206
2182
  msgid "This site has no backups to restore from yet."
2183
  msgstr ""
2184
 
2190
  msgid "This storage method does not allow downloading"
2191
  msgstr ""
2192
 
2193
+ #: src/admin.php:3794
2194
  msgid "(backup set imported from remote location)"
2195
  msgstr ""
2196
 
2210
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
2211
  msgstr ""
2212
 
2213
+ #: src/addons/migrator.php:1935, src/admin.php:728
2214
  msgid "Testing connection..."
2215
  msgstr ""
2216
 
2230
  msgid "Creating..."
2231
  msgstr ""
2232
 
2233
+ #: src/addons/migrator.php:2361
2234
  msgid "Or, receive a backup from a remote site"
2235
  msgstr ""
2236
 
2237
+ #: src/addons/migrator.php:2350
2238
  msgid "Paste key here"
2239
  msgstr ""
2240
 
2241
+ #: src/addons/migrator.php:2344
2242
  msgid "How do I get a site's key?"
2243
  msgstr ""
2244
 
2245
+ #: src/addons/migrator.php:2344
2246
  msgid "To add a site as a destination for sending to, enter that site's key below."
2247
  msgstr ""
2248
 
2249
+ #: src/addons/migrator.php:2341
2250
  msgid "Or, send a backup to another site"
2251
  msgstr ""
2252
 
2253
+ #: src/addons/migrator.php:2106, src/admin.php:729
2254
  msgid "Send"
2255
  msgstr ""
2256
 
2257
+ #: src/addons/migrator.php:2100, src/admin.php:720
2258
  msgid "Send to site:"
2259
  msgstr ""
2260
 
2261
+ #: src/addons/migrator.php:2098
2262
  msgid "No receiving sites have yet been added."
2263
  msgstr ""
2264
 
2265
+ #: src/addons/migrator.php:2079
2266
  msgid "It is for sending backups to the following site: "
2267
  msgstr ""
2268
 
2269
+ #: src/addons/migrator.php:2079
2270
  msgid "The key was successfully added."
2271
  msgstr ""
2272
 
2273
+ #: src/addons/migrator.php:2063
2274
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2275
  msgstr ""
2276
 
2277
+ #: src/addons/migrator.php:2052, src/addons/migrator.php:2054,
2278
+ #: src/addons/migrator.php:2058
2279
  msgid "The entered key was corrupt - please try again."
2280
  msgstr ""
2281
 
2282
+ #: src/addons/migrator.php:2050
2283
  msgid "The entered key was the wrong length - please try again."
2284
  msgstr ""
2285
 
2286
+ #: src/addons/migrator.php:2040
2287
  msgid "key"
2288
  msgstr ""
2289
 
2290
+ #: src/methods/ftp.php:379
2291
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2292
  msgstr ""
2293
 
2294
+ #: src/methods/ftp.php:377
2295
  msgid "Passive mode"
2296
  msgstr ""
2297
 
2298
+ #: src/methods/ftp.php:372
2299
  msgid "Remote path"
2300
  msgstr ""
2301
 
2302
+ #: src/methods/ftp.php:367
2303
  msgid "FTP password"
2304
  msgstr ""
2305
 
2306
+ #: src/methods/ftp.php:362
2307
  msgid "FTP login"
2308
  msgstr ""
2309
 
2310
+ #: src/methods/ftp.php:357
2311
  msgid "FTP server"
2312
  msgstr ""
2313
 
2314
+ #: src/addons/migrator.php:178
2315
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
2316
  msgstr ""
2317
 
2318
+ #: src/addons/migrator.php:178
2319
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2320
  msgstr ""
2321
 
2323
  msgid "Resetting..."
2324
  msgstr ""
2325
 
2326
+ #: src/addons/migrator.php:2350, src/admin.php:717
2327
  msgid "Add site"
2328
  msgstr ""
2329
 
2351
  msgid "Go here to re-enter your password."
2352
  msgstr ""
2353
 
2354
+ #: src/addons/migrator.php:242
2355
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2356
  msgstr ""
2357
 
2358
+ #: src/addons/migrator.php:213
2359
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2360
  msgstr ""
2361
 
2362
+ #: src/addons/migrator.php:180
2363
  msgid "To restore using any of the backup sets below, press the button."
2364
  msgstr ""
2365
 
2367
  msgid "You have made changes to your settings, and not saved."
2368
  msgstr ""
2369
 
2370
+ #: src/addons/onedrive.php:1089
2371
  msgid "N.B. %s is not case-sensitive."
2372
  msgstr ""
2373
 
2374
+ #: src/addons/onedrive.php:1079
2375
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2376
  msgstr ""
2377
 
2378
+ #: src/addons/azure.php:597, src/addons/migrator.php:1922,
2379
+ #: src/addons/onedrive.php:1052
2380
  msgid "For longer help, including screenshots, follow this link."
2381
  msgstr ""
2382
 
2383
+ #: src/addons/onedrive.php:1045
2384
  msgid "Create OneDrive credentials in your OneDrive developer console."
2385
  msgstr ""
2386
 
2387
+ #: src/addons/onedrive.php:1037
2388
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2389
  msgstr ""
2390
 
2391
+ #: src/addons/azure.php:590
2392
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2393
  msgstr ""
2394
 
2395
+ #: src/addons/onedrive.php:1001, src/addons/onedrive.php:1003
2396
  msgid "%s authorisation failed:"
2397
  msgstr ""
2398
 
2399
+ #: src/addons/onedrive.php:876, src/addons/onedrive.php:1078,
2400
+ #: src/addons/onedrive.php:1082
2401
  msgid "OneDrive"
2402
  msgstr ""
2403
 
2404
+ #: src/addons/onedrive.php:689
2405
  msgid "Please re-authorize the connection to your %s account."
2406
  msgstr ""
2407
 
2408
+ #: src/methods/email.php:87
2409
  msgid "configure it here"
2410
  msgstr ""
2411
 
2412
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666
2413
  msgid "To remove the block, please go here."
2414
  msgstr ""
2415
 
2554
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2555
  msgstr ""
2556
 
2557
+ #: src/methods/s3.php:894
2558
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2559
  msgstr ""
2560
 
2566
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
2567
  msgstr ""
2568
 
2569
+ #: src/addons/onedrive.php:658, src/addons/onedrive.php:682,
2570
+ #: src/methods/updraftvault.php:666, src/udaddons/updraftplus-addons.php:873,
2571
  #: src/udaddons/updraftplus-addons.php:887
2572
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2573
  msgstr ""
2574
 
2575
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666,
2576
  #: src/udaddons/updraftplus-addons.php:887
2577
  msgid "It appears that your web server's IP Address (%s) is blocked."
2578
  msgstr ""
2579
 
2580
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666,
2581
  #: src/udaddons/updraftplus-addons.php:887
2582
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2583
  msgstr ""
2629
  msgid "(at same time as files backup)"
2630
  msgstr ""
2631
 
2632
+ #: src/admin.php:3265
2633
  msgid "No backup has been completed"
2634
  msgstr ""
2635
 
2676
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2677
  msgstr ""
2678
 
2679
+ #: src/addons/sftp.php:452
2680
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2681
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2682
  msgstr ""
2683
 
2684
+ #: src/addons/sftp.php:402
2685
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
2686
  msgstr ""
2687
 
2688
+ #: src/methods/openstack2.php:190
2689
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2690
  msgid "tenant"
2691
  msgstr ""
2692
 
2693
+ #: src/methods/openstack2.php:139
2694
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2695
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2696
  msgstr ""
2703
  msgid "Check this box to have a basic report sent to"
2704
  msgstr ""
2705
 
2706
+ #: src/admin.php:3279
2707
  msgctxt "i.e. Non-automatic"
2708
  msgid "Manual"
2709
  msgstr ""
2721
  msgid "Any other file/directory on your server that you wish to back up"
2722
  msgstr ""
2723
 
2724
+ #: src/admin.php:2442
2725
  msgid "For even more features and personal support, check out "
2726
  msgstr ""
2727
 
2815
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2816
  msgstr ""
2817
 
2818
+ #: src/admin.php:2808, src/admin.php:3825
2819
  msgid "View Log"
2820
  msgstr ""
2821
 
2832
  msgid "and retain this many scheduled backups"
2833
  msgstr ""
2834
 
2835
+ #: src/admin.php:3235
2836
  msgid "incremental backup; base backup: %s"
2837
  msgstr ""
2838
 
2844
  msgid "Upload files into UpdraftPlus."
2845
  msgstr ""
2846
 
2847
+ #: src/admin.php:952, src/includes/class-commands.php:394,
2848
  #: src/templates/wp-admin/settings/tab-status.php:22
2849
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2850
  msgstr ""
2851
 
2852
+ #: src/class-updraftplus.php:4202
2853
  msgid "Backup label:"
2854
  msgstr ""
2855
 
2856
+ #: src/addons/backblaze.php:189, src/admin.php:1953
2857
  msgid "Error: unexpected file read fail"
2858
  msgstr ""
2859
 
2860
+ #: src/backup.php:3373
2861
  msgid "check your log for more details."
2862
  msgstr ""
2863
 
2864
+ #: src/backup.php:3371
2865
  msgid "your web hosting account appears to be full; please see: %s"
2866
  msgstr ""
2867
 
2868
+ #: src/backup.php:3369
2869
  msgid "A zip error occurred"
2870
  msgstr ""
2871
 
2873
  msgid "Your label for this backup (optional)"
2874
  msgstr ""
2875
 
2876
+ #: src/addons/googlecloud.php:977, src/methods/googledrive.php:1161
2877
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
2878
  msgstr ""
2879
 
2880
+ #: src/methods/updraftvault.php:704, src/udaddons/updraftplus-addons.php:926
2881
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2882
  msgstr ""
2883
 
2884
+ #: src/methods/updraftvault.php:701, src/udaddons/updraftplus-addons.php:922
2885
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2886
  msgstr ""
2887
 
2888
+ #: src/methods/updraftvault.php:642, src/udaddons/updraftplus-addons.php:790
2889
  msgid "You need to supply both an email address and a password"
2890
  msgstr ""
2891
 
2893
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2894
  msgstr ""
2895
 
2896
+ #: src/class-updraftplus.php:4221
2897
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2898
  msgstr ""
2899
 
2900
+ #: src/class-updraftplus.php:4221
2901
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2902
  msgstr ""
2903
 
2904
+ #: src/addons/migrator.php:1220
2905
  msgid "already done"
2906
  msgstr ""
2907
 
2908
+ #: src/addons/migrator.php:1177
2909
  msgid "skipped (not in list)"
2910
  msgstr ""
2911
 
2912
+ #: src/addons/migrator.php:1177, src/addons/migrator.php:1220,
2913
+ #: src/addons/migrator.php:1354
2914
  msgid "Search and replacing table:"
2915
  msgstr ""
2916
 
2917
+ #: src/addons/migrator.php:354
2918
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2919
  msgstr ""
2920
 
2921
+ #: src/addons/migrator.php:354
2922
  msgid "These tables only"
2923
  msgstr ""
2924
 
2925
+ #: src/addons/migrator.php:353
2926
  msgid "Rows per batch"
2927
  msgstr ""
2928
 
2934
  msgid "You need to connect to receive future updates to UpdraftPlus."
2935
  msgstr ""
2936
 
2937
+ #: src/class-updraftplus.php:4194
2938
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2939
  msgstr ""
2940
 
2941
+ #: src/class-updraftplus.php:4194
2942
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2943
  msgstr ""
2944
 
2945
+ #: src/class-updraftplus.php:4194
2946
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2947
  msgstr ""
2948
 
2949
+ #: src/class-updraftplus.php:4194
2950
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2951
  msgstr ""
2952
 
2975
  msgid "UpdraftPlus is on social media - check us out!"
2976
  msgstr ""
2977
 
2978
+ #: src/admin.php:3892
2979
  msgid "Why am I seeing this?"
2980
  msgstr ""
2981
 
2987
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2988
  msgstr ""
2989
 
2990
+ #: src/admin.php:1892, src/admin.php:1904
2991
  msgid "Start backup"
2992
  msgstr ""
2993
 
2994
+ #: src/class-updraftplus.php:4166, src/restorer.php:1045
2995
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2996
  msgstr ""
2997
 
2998
+ #: src/admin.php:3133
2999
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
3000
  msgstr ""
3001
 
3003
  msgid "Unless you have a problem, you can completely ignore everything here."
3004
  msgstr ""
3005
 
3006
+ #: src/admin.php:2128
3007
  msgid "This file could not be uploaded"
3008
  msgstr ""
3009
 
3010
+ #: src/admin.php:2091
3011
  msgid "You will find more information about this in the Settings section."
3012
  msgstr ""
3013
 
3027
  msgid "Memory limit"
3028
  msgstr ""
3029
 
3030
+ #: src/class-updraftplus.php:4635, src/restorer.php:1529
3031
  msgid "restoration"
3032
  msgstr ""
3033
 
3034
+ #: src/backup.php:1001
3035
  msgid "Incremental"
3036
  msgstr ""
3037
 
3038
+ #: src/backup.php:1001
3039
  msgid "Full backup"
3040
  msgstr ""
3041
 
3051
  msgid "Backup succeeded"
3052
  msgstr ""
3053
 
3054
+ #: src/admin.php:3280, src/admin.php:3281, src/admin.php:3282,
3055
  #: src/updraftplus.php:99, src/updraftplus.php:100
3056
  msgid "Every %s hours"
3057
  msgstr ""
3058
 
3059
+ #: src/addons/migrator.php:871, src/addons/migrator.php:873
3060
  msgid "search and replace"
3061
  msgstr ""
3062
 
3063
+ #: src/addons/migrator.php:356
3064
  msgid "Go"
3065
  msgstr ""
3066
 
3067
+ #: src/addons/migrator.php:345
3068
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
3069
  msgstr ""
3070
 
3071
+ #: src/addons/migrator.php:344
3072
  msgid "This can easily destroy your site; so, use it with care!"
3073
  msgstr ""
3074
 
3075
+ #: src/addons/migrator.php:300, src/addons/migrator.php:352
3076
  msgid "Replace with"
3077
  msgstr ""
3078
 
3079
+ #: src/addons/migrator.php:299, src/addons/migrator.php:351
3080
  msgid "Search for"
3081
  msgstr ""
3082
 
3083
+ #: src/addons/migrator.php:298, src/addons/migrator.php:343,
3084
  #: src/templates/wp-admin/advanced/search-replace.php:7,
3085
  #: src/templates/wp-admin/advanced/tools-menu.php:18
3086
  msgid "Search / replace database"
3087
  msgstr ""
3088
 
3089
+ #: src/addons/migrator.php:304
3090
  msgid "search term"
3091
  msgstr ""
3092
 
3094
  msgid "Too many database errors have occurred - aborting"
3095
  msgstr ""
3096
 
3097
+ #: src/backup.php:1067
3098
  msgid "read more at %s"
3099
  msgstr ""
3100
 
3101
+ #: src/backup.php:1067
3102
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3103
  msgstr ""
3104
 
3105
+ #: src/methods/googledrive.php:1168
3106
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
3107
  msgstr ""
3108
 
3109
+ #: src/admin.php:3636
3110
  msgid "You have not yet made any backups."
3111
  msgstr ""
3112
 
3126
  msgid "Free disk space in account:"
3127
  msgstr ""
3128
 
3129
+ #: src/admin.php:4477, src/templates/wp-admin/settings/tab-status.php:27
3130
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3131
  msgstr ""
3132
 
3133
+ #: src/admin.php:534, src/admin.php:676, src/admin.php:1738,
3134
  #: src/includes/deprecated-actions.php:29,
3135
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3136
  #: src/templates/wp-admin/settings/tab-bar.php:6
3141
  msgid "Current Status"
3142
  msgstr ""
3143
 
3144
+ #: src/admin.php:957
3145
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
3146
  msgstr ""
3147
 
3148
+ #: src/admin.php:957
3149
  msgid "To make a backup, just press the Backup Now button."
3150
  msgstr ""
3151
 
3152
+ #: src/admin.php:957
3153
  msgid "Welcome to UpdraftPlus!"
3154
  msgstr ""
3155
 
3221
  msgid "user"
3222
  msgstr ""
3223
 
3224
+ #: src/class-updraftplus.php:1785
3225
  msgid "External database (%s)"
3226
  msgstr ""
3227
 
3228
+ #: src/methods/googledrive.php:1168
3229
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
3230
  msgstr ""
3231
 
3233
  msgid "failed to access parent folder"
3234
  msgstr ""
3235
 
3236
+ #: src/addons/googlecloud.php:690, src/addons/onedrive.php:844,
3237
+ #: src/addons/onedrive.php:855, src/methods/googledrive.php:420
3238
  msgid "However, subsequent access attempts failed:"
3239
  msgstr ""
3240
 
3241
+ #: src/admin.php:3661
3242
  msgid "External database"
3243
  msgstr ""
3244
 
3270
  msgid "use UpdraftPlus Premium"
3271
  msgstr ""
3272
 
3273
+ #: src/class-updraftplus.php:4048
3274
  msgid "Decryption failed. The database file is encrypted."
3275
  msgstr ""
3276
 
3283
  msgid "An error occurred on the first %s command - aborting run"
3284
  msgstr ""
3285
 
3286
+ #: src/addons/moredatabase.php:105, src/backup.php:1567
3287
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3288
  msgstr ""
3289
 
3290
+ #: src/backup.php:1567
3291
  msgid "database connection attempt failed."
3292
  msgstr ""
3293
 
3294
+ #: src/addons/migrator.php:1108
3295
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3296
  msgstr ""
3297
 
3299
  msgid "In %s, path names are case sensitive."
3300
  msgstr ""
3301
 
3302
+ #: src/addons/azure.php:630, src/addons/google-enhanced.php:76,
3303
+ #: src/addons/onedrive.php:1089
3304
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3305
  msgstr ""
3306
 
3307
+ #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1025,
3308
+ #: src/addons/onedrive.php:1089
3309
  msgid "e.g. %s"
3310
  msgstr ""
3311
 
3312
+ #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1089
3313
  msgid "Enter the path of the %s folder you wish to use here."
3314
  msgstr ""
3315
 
3316
+ #: src/methods/openstack2.php:170
3317
  msgid "Container"
3318
  msgstr ""
3319
 
3320
+ #: src/methods/openstack2.php:153
3321
  msgid "Leave this blank, and a default will be chosen."
3322
  msgstr ""
3323
 
3324
+ #: src/methods/openstack2.php:144
3325
  msgid "Tenant"
3326
  msgstr ""
3327
 
3328
+ #: src/methods/openstack2.php:144
3329
  msgid "Follow this link for more information"
3330
  msgstr ""
3331
 
3332
+ #: src/methods/openstack2.php:136, src/methods/openstack2.php:195
3333
  msgid "authentication URI"
3334
  msgstr ""
3335
 
3336
+ #: src/methods/openstack2.php:120
3337
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
3338
  msgstr ""
3339
 
3353
  msgid "Failed to upload %s"
3354
  msgstr ""
3355
 
3356
+ #: src/methods/dropbox.php:742, src/methods/dropbox.php:744
3357
  msgid "Success:"
3358
  msgstr ""
3359
 
3360
+ #: src/addons/onedrive.php:1110, src/methods/dropbox.php:595
3361
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
3362
  msgstr ""
3363
 
3364
+ #: src/addons/onedrive.php:1102, src/methods/dropbox.php:579
3365
  msgid "(You appear to be already authenticated)."
3366
  msgstr ""
3367
 
3368
+ #: src/methods/dropbox.php:575, src/methods/dropbox.php:583,
3369
+ #: src/methods/dropbox.php:595
3370
  msgid "Dropbox"
3371
  msgstr ""
3372
 
3373
+ #: src/addons/onedrive.php:1095, src/methods/dropbox.php:575
3374
  msgid "Authenticate with %s"
3375
  msgstr ""
3376
 
3401
  msgid "%s error - failed to access the container"
3402
  msgstr ""
3403
 
3404
+ #: src/addons/googlecloud.php:1090, src/addons/onedrive.php:1134,
3405
+ #: src/methods/dropbox.php:638, src/methods/googledrive.php:1246
3406
  msgid "Account holder's name: %s."
3407
  msgstr ""
3408
 
3409
+ #: src/methods/googledrive.php:1224
3410
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3411
  msgstr ""
3412
 
3413
+ #: src/methods/googledrive.php:1211
3414
  msgid "It is an ID number internal to Google Drive"
3415
  msgstr ""
3416
 
3417
+ #: src/methods/googledrive.php:1211
3418
  msgid "<strong>This is NOT a folder name</strong>."
3419
  msgstr ""
3420
 
3421
+ #: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1087,
3422
+ #: src/methods/googledrive.php:1206, src/methods/googledrive.php:1217
3423
  msgid "Folder"
3424
  msgstr ""
3425
 
3426
+ #: src/addons/googlecloud.php:296, src/addons/onedrive.php:426,
3427
+ #: src/methods/googledrive.php:1121
3428
  msgid "%s download: failed: file not found"
3429
  msgstr ""
3430
 
3431
+ #: src/addons/googlecloud.php:710, src/methods/googledrive.php:440
3432
  msgid "Name: %s."
3433
  msgstr ""
3434
 
3457
  msgid "Fetch"
3458
  msgstr ""
3459
 
3460
+ #: src/addons/migrator.php:469,
3461
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3462
  #: src/templates/wp-admin/settings/form-contents.php:190
3463
  msgid "This feature requires %s version %s or later"
3467
  msgid "Failed to unpack the archive"
3468
  msgstr ""
3469
 
3470
+ #: src/class-updraftplus.php:1317
3471
  msgid "Error - failed to download the file"
3472
  msgstr ""
3473
 
3487
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3488
  msgstr ""
3489
 
3490
+ #: src/addons/sftp.php:513
3491
  msgid "password/key"
3492
  msgstr ""
3493
 
3494
+ #: src/addons/migrator.php:2368, src/addons/sftp.php:449, src/admin.php:723,
3495
+ #: src/admin.php:4698
3496
  msgid "Key"
3497
  msgstr ""
3498
 
3499
+ #: src/addons/sftp.php:444
3500
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3501
  msgstr ""
3502
 
3508
  msgid "SCP/SFTP password/key"
3509
  msgstr ""
3510
 
3511
+ #: src/admin.php:3705
3512
  msgid "Files backup (created by %s)"
3513
  msgstr ""
3514
 
3515
+ #: src/admin.php:3705
3516
  msgid "Files and database WordPress backup (created by %s)"
3517
  msgstr ""
3518
 
3519
+ #: src/addons/importer.php:276, src/admin.php:3699,
3520
  #: src/includes/class-backup-history.php:279
3521
  msgid "Backup created by: %s."
3522
  msgstr ""
3523
 
3524
+ #: src/admin.php:3659
3525
  msgid "Database (created by %s)"
3526
  msgstr ""
3527
 
3528
+ #: src/admin.php:3653, src/admin.php:3701
3529
  msgid "unknown source"
3530
  msgstr ""
3531
 
3537
  msgid "Upload backup files"
3538
  msgstr ""
3539
 
3540
+ #: src/admin.php:2143
3541
  msgid "This backup was created by %s, and can be imported."
3542
  msgstr ""
3543
 
3544
+ #: src/admin.php:986
3545
  msgid "Read this page for a guide to possible causes and how to fix it."
3546
  msgstr ""
3547
 
3548
+ #: src/admin.php:986
3549
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3550
  msgstr ""
3551
 
3562
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3563
  msgstr ""
3564
 
3565
+ #: src/admin.php:3702, src/includes/class-wpadmin-commands.php:152,
3566
  #: src/restorer.php:1498
3567
  msgid "Backup created by unknown source (%s) - cannot be restored."
3568
  msgstr ""
3575
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3576
  msgstr ""
3577
 
3578
+ #: src/methods/dropbox.php:377
3579
  msgid "%s returned an unexpected HTTP response: %s"
3580
  msgstr ""
3581
 
3582
+ #: src/addons/sftp.php:983
3583
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3584
  msgstr ""
3585
 
3586
+ #: src/addons/backblaze.php:543, src/methods/cloudfiles.php:234,
3587
+ #: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
3588
  msgid "No settings were found"
3589
  msgstr ""
3590
 
3596
  msgid "Rescanning remote and local storage for backup sets..."
3597
  msgstr ""
3598
 
3599
+ #: src/addons/googlecloud.php:1028, src/addons/googlecloud.php:1041,
3600
  #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
3601
  msgid "(Read more)"
3602
  msgstr ""
3614
  msgid "Remove"
3615
  msgstr ""
3616
 
3617
+ #: src/methods/s3.php:845
3618
  msgid "Other %s FAQs."
3619
  msgstr ""
3620
 
3622
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3623
  msgstr ""
3624
 
3625
+ #: src/addons/morefiles.php:445, src/admin.php:3384
3626
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3627
  msgstr ""
3628
 
3629
+ #: src/class-updraftplus.php:4635, src/methods/ftp.php:330,
3630
  #: src/restorer.php:1529
3631
  msgid "Your hosting company must enable these functions before %s can work."
3632
  msgstr ""
3633
 
3634
+ #: src/class-updraftplus.php:4635, src/methods/ftp.php:330
3635
  msgid "Your web server's PHP installation has these functions disabled: %s."
3636
  msgstr ""
3637
 
3638
+ #: src/methods/ftp.php:327
3639
  msgid "encrypted FTP (explicit encryption)"
3640
  msgstr ""
3641
 
3642
+ #: src/methods/ftp.php:326
3643
  msgid "encrypted FTP (implicit encryption)"
3644
  msgstr ""
3645
 
3646
+ #: src/methods/ftp.php:325
3647
  msgid "regular non-encrypted FTP"
3648
  msgstr ""
3649
 
3701
  msgid "Dismiss from main dashboard (for %s weeks)"
3702
  msgstr ""
3703
 
3704
+ #: src/class-updraftplus.php:4685
3705
  msgid "The attempt to undo the double-compression succeeded."
3706
  msgstr ""
3707
 
3708
+ #: src/class-updraftplus.php:4662, src/class-updraftplus.php:4683
3709
  msgid "The attempt to undo the double-compression failed."
3710
  msgstr ""
3711
 
3712
+ #: src/class-updraftplus.php:4655
3713
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3714
  msgstr ""
3715
 
3717
  msgid "Constants"
3718
  msgstr ""
3719
 
3720
+ #: src/backup.php:1804
3721
  msgid "Failed to open database file for reading:"
3722
  msgstr ""
3723
 
3724
+ #: src/backup.php:1615
3725
  msgid "No database tables found"
3726
  msgstr ""
3727
 
3728
+ #: src/backup.php:1613
3729
  msgid "please wait for the rescheduled attempt"
3730
  msgstr ""
3731
 
3733
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
3734
  msgstr ""
3735
 
3736
+ #: src/addons/onedrive.php:94, src/methods/dropbox.php:267
3737
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
3738
  msgstr ""
3739
 
3742
  msgid "Errors occurred:"
3743
  msgstr ""
3744
 
3745
+ #: src/admin.php:3911
3746
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3747
  msgstr ""
3748
 
3766
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3767
  msgstr ""
3768
 
3769
+ #: src/admin.php:961, src/class-updraftplus.php:822
3770
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3771
  msgstr ""
3772
 
3773
+ #: src/addons/migrator.php:271
3774
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3775
  msgstr ""
3776
 
3777
+ #: src/addons/sftp.php:738, src/addons/sftp.php:741,
3778
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
3779
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3780
  msgstr ""
3781
 
3782
+ #: src/addons/moredatabase.php:137, src/admin.php:1482
3783
  msgid "Messages:"
3784
  msgstr ""
3785
 
3791
  msgid "The directory does not exist"
3792
  msgstr ""
3793
 
3794
+ #: src/addons/cloudfiles-enhanced.php:279
3795
  msgid "New User's Email Address"
3796
  msgstr ""
3797
 
3798
+ #: src/addons/cloudfiles-enhanced.php:276
3799
  msgid "New User's Username"
3800
  msgstr ""
3801
 
3802
+ #: src/addons/cloudfiles-enhanced.php:273
3803
  msgid "Admin API Key"
3804
  msgstr ""
3805
 
3806
+ #: src/addons/cloudfiles-enhanced.php:270
3807
  msgid "Admin Username"
3808
  msgstr ""
3809
 
3810
+ #: src/addons/cloudfiles-enhanced.php:265
3811
  msgid "US or UK Rackspace Account"
3812
  msgstr ""
3813
 
3814
+ #: src/addons/cloudfiles-enhanced.php:257
3815
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
3816
  msgstr ""
3817
 
3818
+ #: src/addons/cloudfiles-enhanced.php:254
3819
  msgid "Create new API user and container"
3820
  msgstr ""
3821
 
3822
+ #: src/addons/cloudfiles-enhanced.php:192
3823
  msgid "API Key: %s"
3824
  msgstr ""
3825
 
3826
+ #: src/addons/cloudfiles-enhanced.php:192
3827
  msgid "Password: %s"
3828
  msgstr ""
3829
 
3830
+ #: src/addons/cloudfiles-enhanced.php:192, src/addons/s3-enhanced.php:318
3831
  msgid "Username: %s"
3832
  msgstr ""
3833
 
3834
+ #: src/addons/cloudfiles-enhanced.php:151,
3835
+ #: src/addons/cloudfiles-enhanced.php:154,
3836
+ #: src/addons/cloudfiles-enhanced.php:158,
3837
+ #: src/addons/cloudfiles-enhanced.php:170,
3838
+ #: src/addons/cloudfiles-enhanced.php:177,
3839
+ #: src/addons/cloudfiles-enhanced.php:181
3840
  msgid "Cloud Files operation failed (%s)"
3841
  msgstr ""
3842
 
3843
+ #: src/addons/cloudfiles-enhanced.php:149
3844
  msgid "Conflict: that user or email address already exists"
3845
  msgstr ""
3846
 
3876
  msgid "Rackspace Cloud Files, enhanced"
3877
  msgstr ""
3878
 
3879
+ #: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
3880
+ #: src/methods/cloudfiles.php:493
3881
  msgid "Cloud Files Container"
3882
  msgstr ""
3883
 
3884
+ #: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:488
3885
  msgid "Cloud Files API Key"
3886
  msgstr ""
3887
 
3888
+ #: src/methods/cloudfiles-new.php:137
3889
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3890
  msgstr ""
3891
 
3892
+ #: src/methods/cloudfiles-new.php:134
3893
  msgid "Cloud Files Username"
3894
  msgstr ""
3895
 
3896
+ #: src/addons/cloudfiles-enhanced.php:47, src/methods/cloudfiles-new.php:166
3897
  msgid "London (LON)"
3898
  msgstr ""
3899
 
3900
+ #: src/addons/cloudfiles-enhanced.php:46, src/methods/cloudfiles-new.php:165
3901
  msgid "Hong Kong (HKG)"
3902
  msgstr ""
3903
 
3904
+ #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:164
3905
  msgid "Northern Virginia (IAD)"
3906
  msgstr ""
3907
 
3908
+ #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:163
3909
  msgid "Chicago (ORD)"
3910
  msgstr ""
3911
 
3912
+ #: src/addons/cloudfiles-enhanced.php:43, src/methods/cloudfiles-new.php:162
3913
  msgid "Sydney (SYD)"
3914
  msgstr ""
3915
 
3916
+ #: src/addons/cloudfiles-enhanced.php:42, src/methods/cloudfiles-new.php:161
3917
  msgid "Dallas (DFW) (default)"
3918
  msgstr ""
3919
 
3920
+ #: src/addons/cloudfiles-enhanced.php:282, src/methods/cloudfiles-new.php:124
3921
  msgid "Cloud Files Storage Region"
3922
  msgstr ""
3923
 
3924
+ #: src/methods/cloudfiles-new.php:117
3925
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3926
  msgstr ""
3927
 
3928
+ #: src/methods/cloudfiles-new.php:115
3929
  msgid "US or UK-based Rackspace Account"
3930
  msgstr ""
3931
 
3932
+ #: src/addons/cloudfiles-enhanced.php:266, src/methods/cloudfiles-new.php:115
3933
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3934
  msgstr ""
3935
 
3936
+ #: src/addons/cloudfiles-enhanced.php:147, src/addons/s3-enhanced.php:221,
3937
  #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:484,
3938
  #: src/methods/openstack-base.php:486, src/methods/openstack-base.php:507,
3939
  #: src/methods/openstack2.php:33
3940
  msgid "Authorisation failed (check your credentials)"
3941
  msgstr ""
3942
 
3943
+ #: src/methods/updraftvault.php:616, src/udaddons/options.php:270
3944
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3945
  msgstr ""
3946
 
3956
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3957
  msgstr ""
3958
 
3959
+ #: src/admin.php:673, src/admin.php:4190
3960
  msgid "Error data:"
3961
  msgstr ""
3962
 
3963
+ #: src/admin.php:3863
3964
  msgid "Backup does not exist in the backup history"
3965
  msgstr ""
3966
 
3967
+ #: src/admin.php:2743
3968
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3969
  msgstr ""
3970
 
4004
  msgid "Email reports"
4005
  msgstr ""
4006
 
4007
+ #: src/class-updraftplus.php:1793, src/class-updraftplus.php:1798
4008
  msgid "%s checksum: %s"
4009
  msgstr ""
4010
 
4011
+ #: src/class-updraftplus.php:1766, src/class-updraftplus.php:1768
4012
  msgid "files: %s"
4013
  msgstr ""
4014
 
4020
  msgid "Debugging information"
4021
  msgstr ""
4022
 
4023
+ #: src/addons/reporting.php:222, src/admin.php:3592
4024
  msgid "Uploaded to:"
4025
  msgstr ""
4026
 
4061
  msgid "%d errors, %d warnings"
4062
  msgstr ""
4063
 
4064
+ #: src/addons/onedrive.php:800, src/methods/dropbox.php:726
4065
  msgid "%s authentication"
4066
  msgstr ""
4067
 
4068
+ #: src/addons/onedrive.php:800, src/class-updraftplus.php:504,
4069
+ #: src/methods/dropbox.php:240, src/methods/dropbox.php:686,
4070
+ #: src/methods/dropbox.php:726, src/methods/dropbox.php:739,
4071
+ #: src/methods/dropbox.php:883
4072
  msgid "%s error: %s"
4073
  msgstr ""
4074
 
4075
+ #: src/addons/googlecloud.php:970, src/methods/dropbox.php:544
4076
  msgid "%s logo"
4077
  msgstr ""
4078
 
4079
+ #: src/methods/dropbox.php:286
4080
  msgid "%s did not return the expected response - check your log file for more details"
4081
  msgstr ""
4082
 
4084
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
4085
  msgstr ""
4086
 
4087
+ #: src/methods/email.php:88
4088
  msgid "For more options, use the \"%s\" add-on."
4089
  msgstr ""
4090
 
4091
+ #: src/methods/email.php:87
4092
  msgid "Your site's admin email address (%s) will be used."
4093
  msgstr ""
4094
 
4095
+ #: src/admin.php:710, src/methods/updraftvault.php:305,
4096
+ #: src/methods/updraftvault.php:348, src/udaddons/options.php:249
4097
  msgid "Connect"
4098
  msgstr ""
4099
 
4101
  msgid "For more reporting features, use the Reporting add-on."
4102
  msgstr ""
4103
 
4104
+ #: src/class-updraftplus.php:4129
4105
  msgid "(version: %s)"
4106
  msgstr ""
4107
 
4114
  msgid "When the Email storage method is enabled, also send the entire backup"
4115
  msgstr ""
4116
 
4117
+ #: src/addons/reporting.php:181, src/backup.php:1102
4118
  msgid "Latest status:"
4119
  msgstr ""
4120
 
4121
+ #: src/backup.php:1101
4122
  msgid "Backup contains:"
4123
  msgstr ""
4124
 
4125
+ #: src/backup.php:1058
4126
  msgid "Backed up: %s"
4127
  msgstr ""
4128
 
4129
+ #: src/addons/reporting.php:264, src/backup.php:1052
4130
  msgid "The log file has been attached to this email."
4131
  msgstr ""
4132
 
4133
+ #: src/backup.php:1016
4134
  msgid "Unknown/unexpected error - please raise a support request"
4135
  msgstr ""
4136
 
4137
+ #: src/backup.php:1013
4138
  msgid "Database only (files were not part of this particular schedule)"
4139
  msgstr ""
4140
 
4141
+ #: src/backup.php:1013
4142
  msgid "Database (files backup has not completed)"
4143
  msgstr ""
4144
 
4145
+ #: src/backup.php:1010
4146
  msgid "Files only (database was not part of this particular schedule)"
4147
  msgstr ""
4148
 
4149
+ #: src/backup.php:1010
4150
  msgid "Files (database backup has not completed)"
4151
  msgstr ""
4152
 
4153
+ #: src/admin.php:305, src/backup.php:1008
4154
  msgid "Files and database"
4155
  msgstr ""
4156
 
4157
+ #: src/options.php:185
4158
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4159
  msgstr ""
4160
 
4161
+ #: src/options.php:185
4162
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4163
  msgstr ""
4164
 
4165
+ #: src/options.php:185
4166
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4167
  msgstr ""
4168
 
4169
+ #: src/options.php:185
4170
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4171
  msgstr ""
4172
 
4173
+ #: src/options.php:185
4174
  msgid "UpdraftPlus warning:"
4175
  msgstr ""
4176
 
4214
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4215
  msgstr ""
4216
 
4217
+ #: src/methods/updraftvault.php:695, src/methods/updraftvault.php:710,
4218
  #: src/udaddons/updraftplus-addons.php:933
4219
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4220
  msgstr ""
4221
 
4222
+ #: src/methods/updraftvault.php:707, src/udaddons/updraftplus-addons.php:929
4223
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4224
  msgstr ""
4225
 
4226
+ #: src/methods/updraftvault.php:668, src/udaddons/updraftplus-addons.php:892
4227
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4228
  msgstr ""
4229
 
4235
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4236
  msgstr ""
4237
 
4238
+ #: src/methods/email.php:88,
4239
  #: src/templates/wp-admin/settings/form-contents.php:251,
4240
  #: src/templates/wp-admin/settings/tab-addons.php:203,
4241
  #: src/templates/wp-admin/settings/tab-addons.php:204
4242
  msgid "Reporting"
4243
  msgstr ""
4244
 
4245
+ #: src/admin.php:4695
4246
  msgid "Options (raw)"
4247
  msgstr ""
4248
 
4262
  msgid "See also the \"More Files\" add-on from our shop."
4263
  msgstr ""
4264
 
4265
+ #: src/backup.php:3360, src/class-updraftplus.php:835
4266
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4267
  msgstr ""
4268
 
4269
+ #: src/class-updraftplus.php:819
4270
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4271
  msgstr ""
4272
 
4394
  msgid "Your web-server does not have the %s module installed."
4395
  msgstr ""
4396
 
4397
+ #: src/addons/googlecloud.php:1057, src/methods/googledrive.php:1236
4398
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4399
  msgstr ""
4400
 
4418
  msgid "Site home:"
4419
  msgstr ""
4420
 
4421
+ #: src/addons/morestorage.php:112
4422
  msgid "Remote Storage Options"
4423
  msgstr ""
4424
 
4430
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4431
  msgstr ""
4432
 
4433
+ #: src/addons/azure.php:418, src/methods/stream-base.php:141,
4434
  #: src/methods/stream-base.php:146
4435
  msgid "Upload failed"
4436
  msgstr ""
4439
  msgid "You can send a backup to more than one destination with an add-on."
4440
  msgstr ""
4441
 
4442
+ #: src/admin.php:2966
4443
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4444
  msgstr ""
4445
 
4446
+ #: src/admin.php:2865
4447
  msgid "(%s%%, file %s of %s)"
4448
  msgstr ""
4449
 
4452
  msgid "Read more about how this works..."
4453
  msgstr ""
4454
 
4455
+ #: src/addons/sftp.php:575
4456
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4457
  msgstr ""
4458
 
4459
+ #: src/addons/sftp.php:573
4460
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4461
  msgstr ""
4462
 
4463
+ #: src/addons/sftp.php:475
4464
  msgid "Use SCP instead of SFTP"
4465
  msgstr ""
4466
 
4484
  msgid "%s settings test result:"
4485
  msgstr ""
4486
 
4487
+ #: src/admin.php:3767, src/admin.php:3769
4488
  msgid "(Not finished)"
4489
  msgstr ""
4490
 
4491
+ #: src/admin.php:3769
4492
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4493
  msgstr ""
4494
 
4500
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4501
  msgstr ""
4502
 
4503
+ #: src/admin.php:2961
4504
  msgid "Job ID: %s"
4505
  msgstr ""
4506
 
4507
+ #: src/admin.php:2946
4508
  msgid "last activity: %ss ago"
4509
  msgstr ""
4510
 
4511
+ #: src/admin.php:2945
4512
  msgid "next resumption: %d (after %ss)"
4513
  msgstr ""
4514
 
4515
+ #: src/admin.php:2928, src/central/bootstrap.php:428,
4516
+ #: src/central/bootstrap.php:435, src/methods/updraftvault.php:396,
4517
+ #: src/methods/updraftvault.php:430, src/methods/updraftvault.php:515
4518
  msgid "Unknown"
4519
  msgstr ""
4520
 
4521
+ #: src/admin.php:2879
4522
  msgid "Backup finished"
4523
  msgstr ""
4524
 
4525
+ #: src/admin.php:2874
4526
  msgid "Waiting until scheduled time to retry because of errors"
4527
  msgstr ""
4528
 
4529
+ #: src/admin.php:2870
4530
  msgid "Pruning old backup sets"
4531
  msgstr ""
4532
 
4533
+ #: src/admin.php:2858
4534
  msgid "Uploading files to remote storage"
4535
  msgstr ""
4536
 
4537
+ #: src/admin.php:2926
4538
  msgid "Encrypted database"
4539
  msgstr ""
4540
 
4541
+ #: src/admin.php:2918
4542
  msgid "Encrypting database"
4543
  msgstr ""
4544
 
4545
+ #: src/admin.php:2892
4546
  msgid "Created database backup"
4547
  msgstr ""
4548
 
4549
+ #: src/admin.php:2905
4550
  msgid "table: %s"
4551
  msgstr ""
4552
 
4553
+ #: src/admin.php:2903
4554
  msgid "Creating database backup"
4555
  msgstr ""
4556
 
4557
+ #: src/admin.php:2853
4558
  msgid "Created file backup zips"
4559
  msgstr ""
4560
 
4561
+ #: src/admin.php:2840
4562
  msgid "Creating file backup zips"
4563
  msgstr ""
4564
 
4565
+ #: src/admin.php:2835
4566
  msgid "Backup begun"
4567
  msgstr ""
4568
 
4569
+ #: src/admin.php:2668
4570
  msgid "Backups in progress:"
4571
  msgstr ""
4572
 
4573
+ #: src/admin.php:965
4574
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
4575
  msgstr ""
4576
 
4586
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4587
  msgstr ""
4588
 
4589
+ #: src/class-updraftplus.php:2886
4590
  msgid "The backup has not finished; a resumption is scheduled"
4591
  msgstr ""
4592
 
4593
+ #: src/class-updraftplus.php:2070
4594
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4595
  msgstr ""
4596
 
4597
+ #: src/addons/onedrive.php:944,
4598
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4599
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4600
  msgstr ""
4601
 
4602
+ #: src/admin.php:2469
4603
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4604
  msgstr ""
4605
 
4679
  msgid "Support"
4680
  msgstr ""
4681
 
4682
+ #: src/class-updraftplus.php:4434
4683
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4684
  msgstr ""
4685
 
4686
+ #: src/class-updraftplus.php:4426
4687
  msgid "This database backup is missing core WordPress tables: %s"
4688
  msgstr ""
4689
 
4690
+ #: src/class-updraftplus.php:4187
4691
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4692
  msgstr ""
4693
 
4694
+ #: src/class-updraftplus.php:4186, src/class-updraftplus.php:4193
4695
  msgid "%s version: %s"
4696
  msgstr ""
4697
 
4698
+ #: src/class-updraftplus.php:4065
4699
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4700
  msgstr ""
4701
 
4702
+ #: src/addons/autobackup.php:1053, src/admin.php:800,
4703
  #: src/includes/updraftplus-notices.php:171
4704
  msgid "Be safe with an automatic backup"
4705
  msgstr ""
4706
 
4707
+ #: src/admin.php:2422
4708
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4709
  msgstr ""
4710
 
4752
  msgid "Delete from your web server"
4753
  msgstr ""
4754
 
4755
+ #: src/admin.php:3739
4756
  msgid "You appear to be missing one or more archives from this multi-archive set."
4757
  msgstr ""
4758
 
4759
+ #: src/admin.php:3736
4760
  msgid "(%d archive(s) in set)."
4761
  msgstr ""
4762
 
4776
  msgid "Error: the server sent an empty response."
4777
  msgstr ""
4778
 
4779
+ #: src/admin.php:2157
4780
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4781
  msgstr ""
4782
 
4812
  msgid "No such backup set exists"
4813
  msgstr ""
4814
 
4815
+ #: src/admin.php:1355
4816
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4817
  msgstr ""
4818
 
4820
  msgid "Moving unpacked backup into place..."
4821
  msgstr ""
4822
 
4823
+ #: src/backup.php:3061, src/backup.php:3316
4824
  msgid "Failed to open the zip file (%s) - %s"
4825
  msgstr ""
4826
 
4828
  msgid "WordPress root directory server path: %s"
4829
  msgstr ""
4830
 
4831
+ #: src/methods/dreamobjects.php:86, src/methods/s3generic.php:102
4832
  msgid "%s end-point"
4833
  msgstr ""
4834
 
4835
+ #: src/methods/s3.php:822
4836
  msgid "... and many more!"
4837
  msgstr ""
4838
 
4839
+ #: src/methods/s3generic.php:59, src/methods/s3generic.php:70,
4840
+ #: src/methods/s3generic.php:81
4841
  msgid "S3 (Compatible)"
4842
  msgstr ""
4843
 
4844
+ #: src/admin.php:1265
4845
  msgid "File is not locally present - needs retrieving from remote storage"
4846
  msgstr ""
4847
 
4848
+ #: src/admin.php:4042
4849
  msgid "Looking for %s archive: file name: %s"
4850
  msgstr ""
4851
 
4852
+ #: src/admin.php:4003
4853
  msgid "Final checks"
4854
  msgstr ""
4855
 
4861
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4862
  msgstr ""
4863
 
4864
+ #: src/admin.php:3373
4865
  msgid "Your wp-content directory server path: %s"
4866
  msgstr ""
4867
 
4877
  msgid "Processing files - please wait..."
4878
  msgstr ""
4879
 
4880
+ #: src/admin.php:4192,
4881
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4882
  msgid "Please consult this FAQ for help on what to do about it."
4883
  msgstr ""
4886
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4887
  msgstr ""
4888
 
4889
+ #: src/class-updraftplus.php:4073
4890
  msgid "Failed to open database file."
4891
  msgstr ""
4892
 
4893
+ #: src/admin.php:4660
4894
  msgid "Known backups (raw)"
4895
  msgstr ""
4896
 
4902
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4903
  msgstr ""
4904
 
4905
+ #: src/admin.php:4062
4906
  msgid "file is size:"
4907
  msgstr ""
4908
 
4909
+ #: src/addons/googlecloud.php:1020, src/addons/migrator.php:457,
4910
+ #: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:965,
4911
+ #: src/admin.php:2427, src/backup.php:3367, src/class-updraftplus.php:4307,
4912
+ #: src/class-updraftplus.php:4307, src/updraftplus.php:156
4913
  msgid "Go here for more information."
4914
  msgstr ""
4915
 
4917
  msgid "Some files are still downloading or being processed - please wait."
4918
  msgstr ""
4919
 
4920
+ #: src/class-updraftplus.php:4156, src/class-updraftplus.php:4177
4921
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4922
  msgstr ""
4923
 
4929
  msgid "Enter in format HH:MM (e.g. 14:22)."
4930
  msgstr ""
4931
 
4932
+ #: src/methods/ftp.php:148
4933
  msgid "%s upload failed"
4934
  msgstr ""
4935
 
4936
+ #: src/methods/ftp.php:121, src/methods/ftp.php:172, src/methods/ftp.php:276
4937
  msgid "%s login failure"
4938
  msgstr ""
4939
 
4940
+ #: src/methods/dropbox.php:481
4941
  msgid "You do not appear to be authenticated with %s"
4942
  msgstr ""
4943
 
4944
+ #: src/methods/dropbox.php:448
4945
  msgid "Failed to access %s when deleting (see log file for more)"
4946
  msgstr ""
4947
 
4948
+ #: src/methods/dropbox.php:440
4949
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4950
  msgstr ""
4951
 
4952
+ #: src/methods/dropbox.php:195
4953
  msgid "Dropbox error: %s (see log file for more)"
4954
  msgstr ""
4955
 
4961
  msgid "Error - no such file exists at %s"
4962
  msgstr ""
4963
 
4964
+ #: src/addons/azure.php:266, src/methods/addon-base-v2.php:219,
4965
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
4966
+ #: src/methods/googledrive.php:1081, src/methods/openstack-base.php:455,
4967
+ #: src/methods/stream-base.php:295, src/methods/stream-base.php:302,
4968
+ #: src/methods/stream-base.php:334
4969
  msgid "%s Error"
4970
  msgstr ""
4971
 
4973
  msgid "%s error - failed to upload file"
4974
  msgstr ""
4975
 
4976
+ #: src/class-updraftplus.php:1209, src/methods/cloudfiles.php:211
4977
  msgid "%s error - failed to re-assemble chunks"
4978
  msgstr ""
4979
 
4987
  msgid "%s authentication failed"
4988
  msgstr ""
4989
 
4990
+ #: src/addons/googlecloud.php:436, src/addons/migrator.php:555,
4991
+ #: src/admin.php:2128, src/admin.php:2149, src/admin.php:2157,
4992
+ #: src/class-updraftplus.php:971, src/class-updraftplus.php:977,
4993
+ #: src/class-updraftplus.php:4046, src/class-updraftplus.php:4048,
4994
+ #: src/class-updraftplus.php:4210, src/class-updraftplus.php:4217,
4995
+ #: src/class-updraftplus.php:4286, src/methods/googledrive.php:381,
4996
  #: src/methods/s3.php:320
4997
  msgid "Error: %s"
4998
  msgstr ""
4999
 
5000
+ #: src/admin.php:3298
5001
  msgid "Backup directory specified exists, but is <b>not</b> writable."
5002
  msgstr ""
5003
 
5004
+ #: src/admin.php:3296
5005
  msgid "Backup directory specified does <b>not</b> exist."
5006
  msgstr ""
5007
 
5008
+ #: src/admin.php:2973, src/admin.php:3247
5009
  msgid "Warning: %s"
5010
  msgstr ""
5011
 
5013
  msgid "Last backup job run:"
5014
  msgstr ""
5015
 
5016
+ #: src/backup.php:3087
5017
  msgid "A very large file was encountered: %s (size: %s Mb)"
5018
  msgstr ""
5019
 
5020
+ #: src/backup.php:2387
5021
  msgid "%s: unreadable file - could not be backed up"
5022
  msgstr ""
5023
 
5024
+ #: src/backup.php:1704
5025
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
5026
  msgstr ""
5027
 
5028
+ #: src/backup.php:1825
5029
  msgid "An error occurred whilst closing the final database file"
5030
  msgstr ""
5031
 
5032
+ #: src/backup.php:1043
5033
  msgid "Warnings encountered:"
5034
  msgstr ""
5035
 
5036
+ #: src/class-updraftplus.php:2874
5037
  msgid "The backup apparently succeeded (with warnings) and is now complete"
5038
  msgstr ""
5039
 
5040
+ #: src/class-updraftplus.php:848
5041
  msgid "Your free disk space is very low - only %s Mb remain"
5042
  msgstr ""
5043
 
5044
+ #: src/addons/migrator.php:563
5045
  msgid "New site:"
5046
  msgstr ""
5047
 
5048
+ #: src/addons/migrator.php:538
5049
  msgid "Migrated site (from UpdraftPlus)"
5050
  msgstr ""
5051
 
5052
+ #: src/addons/migrator.php:478
5053
  msgid "Enter details for where this new site is to live within your multisite install:"
5054
  msgstr ""
5055
 
5056
+ #: src/addons/migrator.php:477
5057
  msgid "Information needed to continue:"
5058
  msgstr ""
5059
 
5060
+ #: src/addons/migrator.php:421
5061
  msgid "Network activating theme:"
5062
  msgstr ""
5063
 
5064
+ #: src/addons/migrator.php:411
5065
  msgid "Processed plugin:"
5066
  msgstr ""
5067
 
5073
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
5074
  msgstr ""
5075
 
5076
+ #: src/methods/s3.php:831
5077
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5078
  msgstr ""
5079
 
5080
+ #: src/methods/s3.php:1131
5081
  msgid "Please check your access credentials."
5082
  msgstr ""
5083
 
5084
+ #: src/addons/s3-enhanced.php:196, src/methods/s3.php:1109
5085
  msgid "The error reported by %s was:"
5086
  msgstr ""
5087
 
5089
  msgid "Please supply the requested information, and then continue."
5090
  msgstr ""
5091
 
5092
+ #: src/class-updraftplus.php:4228, src/restorer.php:1746
5093
  msgid "Site information:"
5094
  msgstr ""
5095
 
5097
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
5098
  msgstr ""
5099
 
5100
+ #: src/admin.php:2422, src/class-updraftplus.php:4221, src/restorer.php:2117
5101
  msgid "Warning:"
5102
  msgstr ""
5103
 
5104
+ #: src/class-updraftplus.php:4210, src/class-updraftplus.php:4213,
5105
  #: src/restorer.php:184
5106
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5107
  msgstr ""
5108
 
5109
+ #: src/admin.php:4030
5110
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
5111
  msgstr ""
5112
 
5113
+ #: src/admin.php:3445, src/methods/updraftvault.php:292
5114
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5115
  msgstr ""
5116
 
5149
  msgid "Do you want to migrate or clone/duplicate a site?"
5150
  msgstr ""
5151
 
5152
+ #: src/addons/migrator.php:181
5153
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
5154
  msgstr ""
5155
 
5165
  msgid "Also delete from remote storage"
5166
  msgstr ""
5167
 
5168
+ #: src/admin.php:2695
5169
  msgid "Latest UpdraftPlus.com news:"
5170
  msgstr ""
5171
 
5182
  msgid "News"
5183
  msgstr ""
5184
 
5185
+ #: src/admin.php:1534, src/includes/class-wpadmin-commands.php:472
5186
  msgid "Backup set not found"
5187
  msgstr ""
5188
 
5212
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5213
  msgstr ""
5214
 
5215
+ #: src/admin.php:981
5216
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
5217
  msgstr ""
5218
 
5219
+ #: src/admin.php:981
5220
  msgid "Notice"
5221
  msgstr ""
5222
 
5223
+ #: src/backup.php:1025
5224
  msgid "Errors encountered:"
5225
  msgstr ""
5226
 
5236
  msgid "Store at"
5237
  msgstr ""
5238
 
5239
+ #: src/addons/migrator.php:1523
5240
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5241
  msgstr ""
5242
 
5243
+ #: src/addons/migrator.php:1397
5244
  msgid "rows: %d"
5245
  msgstr ""
5246
 
5247
+ #: src/addons/migrator.php:1271
5248
  msgid "Time taken (seconds):"
5249
  msgstr ""
5250
 
5251
+ #: src/addons/migrator.php:1270, src/admin.php:671
5252
  msgid "Errors:"
5253
  msgstr ""
5254
 
5255
+ #: src/addons/migrator.php:1269
5256
  msgid "SQL update commands run:"
5257
  msgstr ""
5258
 
5259
+ #: src/addons/migrator.php:1268
5260
  msgid "Changes made:"
5261
  msgstr ""
5262
 
5263
+ #: src/addons/migrator.php:1267
5264
  msgid "Rows examined:"
5265
  msgstr ""
5266
 
5267
+ #: src/addons/migrator.php:1266
5268
  msgid "Tables examined:"
5269
  msgstr ""
5270
 
5271
+ #: src/addons/migrator.php:1155
5272
  msgid "Could not get list of tables"
5273
  msgstr ""
5274
 
5275
+ #: src/addons/migrator.php:1100
5276
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5277
  msgstr ""
5278
 
5279
+ #: src/addons/migrator.php:1089
5280
  msgid "Nothing to do: the site URL is already: %s"
5281
  msgstr ""
5282
 
5283
+ #: src/addons/migrator.php:1053, src/addons/migrator.php:1057,
5284
+ #: src/addons/migrator.php:1061, src/addons/migrator.php:1066,
5285
+ #: src/addons/migrator.php:1070, src/addons/migrator.php:1075
5286
  msgid "Error: unexpected empty parameter (%s, %s)"
5287
  msgstr ""
5288
 
5289
+ #: src/addons/migrator.php:1013
5290
  msgid "Database: search and replace site URL"
5291
  msgstr ""
5292
 
5293
+ #: src/addons/migrator.php:873, src/addons/migrator.php:1252
5294
  msgid "Failed: we did not understand the result returned by the %s operation."
5295
  msgstr ""
5296
 
5297
+ #: src/addons/migrator.php:871, src/addons/migrator.php:1250
5298
  msgid "Failed: the %s operation was not able to start."
5299
  msgstr ""
5300
 
5301
+ #: src/addons/migrator.php:530
5302
  msgid "Search and replace site location in the database (migrate)"
5303
  msgstr ""
5304
 
5305
+ #: src/addons/migrator.php:530
5306
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5307
  msgstr ""
5308
 
5309
+ #: src/addons/multisite.php:648
5310
  msgid "Blog uploads"
5311
  msgstr ""
5312
 
5313
+ #: src/addons/migrator.php:463, src/addons/multisite.php:641
5314
  msgid "Must-use plugins"
5315
  msgstr ""
5316
 
5317
+ #: src/addons/multisite.php:173
5318
  msgid "Multisite Install"
5319
  msgstr ""
5320
 
5322
  msgid "starting from next time it is"
5323
  msgstr ""
5324
 
5325
+ #: src/addons/sftp.php:518
5326
  msgid "Failure: Port must be an integer."
5327
  msgstr ""
5328
 
5329
+ #: src/methods/ftp.php:411, src/methods/openstack2.php:185
5330
  msgid "password"
5331
  msgstr ""
5332
 
5333
+ #: src/addons/sftp.php:509, src/methods/openstack2.php:180
5334
  msgid "username"
5335
  msgstr ""
5336
 
5337
+ #: src/addons/sftp.php:505
5338
  msgid "host name"
5339
  msgstr ""
5340
 
5341
+ #: src/addons/sftp.php:468
5342
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5343
  msgstr ""
5344
 
5345
+ #: src/addons/sftp.php:466
5346
  msgid "Directory path"
5347
  msgstr ""
5348
 
5349
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5350
+ #: src/addons/sftp.php:441, src/addons/webdav.php:181,
5351
+ #: src/methods/openstack2.php:164, src/methods/updraftvault.php:347,
5352
  #: src/udaddons/options.php:135
5353
  msgid "Password"
5354
  msgstr ""
5355
 
5356
+ #: src/addons/sftp.php:427, src/addons/webdav.php:195
5357
  msgid "Port"
5358
  msgstr ""
5359
 
5360
+ #: src/addons/moredatabase.php:244, src/addons/sftp.php:420,
5361
+ #: src/addons/webdav.php:187
5362
  msgid "Host"
5363
  msgstr ""
5364
 
5366
  msgid "%s Error: Failed to download"
5367
  msgstr ""
5368
 
5369
+ #: src/addons/sftp.php:550
5370
  msgid "Check your file permissions: Could not successfully create and enter:"
5371
  msgstr ""
5372
 
5410
  msgid "WordPress Core"
5411
  msgstr ""
5412
 
5413
+ #: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:364
5414
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5415
  msgstr ""
5416
 
5417
+ #: src/addons/googlecloud.php:768, src/addons/googlecloud.php:802,
5418
+ #: src/addons/googlecloud.php:808, src/addons/sftp.php:536, src/admin.php:3029,
5419
+ #: src/admin.php:3064, src/admin.php:3073, src/methods/addon-base-v2.php:299,
5420
+ #: src/methods/stream-base.php:350
5421
  msgid "Failed"
5422
  msgstr ""
5423
 
5424
+ #: src/addons/webdav.php:157
5425
  msgid "WebDAV URL"
5426
  msgstr ""
5427
 
5428
+ #: src/methods/stream-base.php:334
5429
  msgid "Local write failed: Failed to download"
5430
  msgstr ""
5431
 
5432
+ #: src/methods/stream-base.php:302
5433
  msgid "Error opening remote file: Failed to download"
5434
  msgstr ""
5435
 
5440
  #: src/addons/googlecloud.php:322, src/addons/sftp.php:45,
5441
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
5442
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5443
+ #: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
5444
  #: src/methods/googledrive.php:182, src/methods/googledrive.php:184,
5445
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:161,
5446
  #: src/methods/stream-base.php:167, src/methods/stream-base.php:201,
5447
+ #: src/methods/stream-base.php:276
5448
  msgid "No %s settings were found"
5449
  msgstr ""
5450
 
5451
+ #: src/methods/ftp.php:433
5452
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5453
  msgstr ""
5454
 
5455
+ #: src/methods/ftp.php:430
5456
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5457
  msgstr ""
5458
 
5459
+ #: src/methods/ftp.php:421
5460
  msgid "Failure: we did not successfully log in with those credentials."
5461
  msgstr ""
5462
 
5463
+ #: src/methods/ftp.php:403
5464
  msgid "Failure: No server details were given."
5465
  msgstr ""
5466
 
5467
+ #: src/methods/ftp.php:373
5468
  msgid "Needs to already exist"
5469
  msgstr ""
5470
 
5471
+ #: src/methods/ftp.php:336
5472
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5473
  msgstr ""
5474
 
5475
+ #: src/addons/onedrive.php:838, src/methods/dropbox.php:757
5476
  msgid "Your %s account name: %s"
5477
  msgstr ""
5478
 
5479
+ #: src/methods/dropbox.php:747, src/methods/dropbox.php:769
5480
  msgid "though part of the returned information was not as expected - your mileage may vary"
5481
  msgstr ""
5482
 
5483
+ #: src/methods/dropbox.php:742, src/methods/dropbox.php:744
5484
  msgid "you have authenticated your %s account"
5485
  msgstr ""
5486
 
5487
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5488
  msgid "there's an add-on for that."
5489
  msgstr ""
5490
 
5491
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5492
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5493
  msgstr ""
5494
 
5495
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5496
  msgid "Backups are saved in"
5497
  msgstr ""
5498
 
5499
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5500
  msgid "Need to use sub-folders?"
5501
  msgstr ""
5502
 
5503
+ #: src/methods/dropbox.php:284, src/methods/dropbox.php:305,
5504
+ #: src/methods/dropbox.php:321
5505
  msgid "error: failed to upload file to %s (see log file for more)"
5506
  msgstr ""
5507
 
5508
+ #: src/methods/dropbox.php:173, src/methods/dropbox.php:190
5509
  msgid "You do not appear to be authenticated with Dropbox"
5510
  msgstr ""
5511
 
5512
+ #: src/methods/s3.php:1126
5513
  msgid "The communication with %s was not encrypted."
5514
  msgstr ""
5515
 
5516
+ #: src/methods/s3.php:1124
5517
  msgid "The communication with %s was encrypted."
5518
  msgstr ""
5519
 
5520
+ #: src/addons/googlecloud.php:831, src/methods/s3.php:1121
5521
  msgid "We accessed the bucket, and were able to create files within it."
5522
  msgstr ""
5523
 
5524
+ #: src/addons/googlecloud.php:825, src/addons/googlecloud.php:839,
5525
+ #: src/methods/s3.php:1119, src/methods/s3.php:1131
5526
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5527
  msgstr ""
5528
 
5529
+ #: src/addons/googlecloud.php:825, src/addons/googlecloud.php:839,
5530
+ #: src/methods/s3.php:1119, src/methods/s3.php:1131
5531
  msgid "Failure"
5532
  msgstr ""
5533
 
5534
+ #: src/methods/s3.php:1107
5535
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5536
  msgstr ""
5537
 
5538
+ #: src/addons/s3-enhanced.php:169, src/methods/openstack2.php:150,
5539
+ #: src/methods/s3.php:1101
5540
  msgid "Region"
5541
  msgstr ""
5542
 
5543
+ #: src/addons/googlecloud.php:118, src/addons/googlecloud.php:785,
5544
+ #: src/methods/s3.php:1083
5545
  msgid "Failure: No bucket details were given."
5546
  msgstr ""
5547
 
5548
+ #: src/methods/s3.php:1061
5549
  msgid "API secret"
5550
  msgstr ""
5551
 
5552
+ #: src/methods/s3.php:909
5553
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5554
  msgstr ""
5555
 
5556
+ #: src/methods/s3.php:908
5557
  msgid "%s location"
5558
  msgstr ""
5559
 
5560
+ #: src/methods/s3.php:904
5561
  msgid "%s secret key"
5562
  msgstr ""
5563
 
5564
+ #: src/methods/s3.php:900
5565
  msgid "%s access key"
5566
  msgstr ""
5567
 
5568
+ #: src/methods/s3.php:843
5569
  msgid "If you see errors about SSL certificates, then please go here for help."
5570
  msgstr ""
5571
 
5572
+ #: src/methods/s3.php:841
5573
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5574
  msgstr ""
5575
 
5602
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5603
  msgstr ""
5604
 
5605
+ #: src/methods/email.php:83
5606
  msgid "Note:"
5607
  msgstr ""
5608
 
5610
  msgid "WordPress Backup"
5611
  msgstr ""
5612
 
5613
+ #: src/methods/cloudfiles.php:571, src/methods/openstack-base.php:530
5614
  msgid "We accessed the container, and were able to create files within it."
5615
  msgstr ""
5616
 
5617
+ #: src/methods/cloudfiles.php:567
5618
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5619
  msgstr ""
5620
 
5621
+ #: src/methods/cloudfiles.php:540, src/methods/openstack-base.php:472
5622
  msgid "Failure: No container details were given."
5623
  msgstr ""
5624
 
5625
+ #: src/addons/moredatabase.php:245, src/addons/sftp.php:434,
5626
+ #: src/addons/webdav.php:175, src/methods/cloudfiles-new.php:184,
5627
+ #: src/methods/cloudfiles.php:520, src/methods/openstack2.php:158
5628
  msgid "Username"
5629
  msgstr ""
5630
 
5631
+ #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles.php:515,
5632
+ #: src/methods/s3.php:1057
5633
  msgid "API key"
5634
  msgstr ""
5635
 
5636
+ #: src/addons/migrator.php:304, src/addons/migrator.php:2040,
5637
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5638
+ #: src/addons/moredatabase.php:86, src/addons/sftp.php:505,
5639
+ #: src/addons/sftp.php:509, src/addons/sftp.php:513, src/addons/webdav.php:241,
5640
+ #: src/admin.php:724, src/methods/addon-base-v2.php:291,
5641
+ #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles-new.php:184,
5642
+ #: src/methods/cloudfiles.php:515, src/methods/cloudfiles.php:520,
5643
+ #: src/methods/ftp.php:407, src/methods/ftp.php:411,
5644
+ #: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
5645
+ #: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
5646
+ #: src/methods/s3.php:1057, src/methods/s3.php:1061
5647
  msgid "Failure: No %s was given."
5648
  msgstr ""
5649
 
5650
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
5651
+ #: src/methods/openstack-base.php:571, src/methods/s3.php:835
5652
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5653
  msgstr ""
5654
 
5655
+ #: src/methods/cloudfiles.php:484
5656
  msgid "Cloud Files username"
5657
  msgstr ""
5658
 
5659
+ #: src/addons/cloudfiles-enhanced.php:38, src/methods/cloudfiles-new.php:119,
5660
+ #: src/methods/cloudfiles.php:467
5661
  msgid "UK"
5662
  msgstr ""
5663
 
5664
+ #: src/addons/cloudfiles-enhanced.php:37, src/methods/cloudfiles-new.php:118,
5665
+ #: src/methods/cloudfiles.php:466
5666
  msgid "US (default)"
5667
  msgstr ""
5668
 
5669
+ #: src/methods/cloudfiles.php:463
5670
  msgid "US or UK Cloud"
5671
  msgstr ""
5672
 
5673
+ #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446,
5674
+ #: src/methods/openstack2.php:120
5675
  msgid "Also, you should read this important FAQ."
5676
  msgstr ""
5677
 
5678
+ #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446
5679
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5680
  msgstr ""
5681
 
5682
+ #: src/admin.php:747, src/methods/backup-module.php:311
5683
  msgid "Test %s Settings"
5684
  msgstr ""
5685
 
5686
+ #: src/class-updraftplus.php:1249, src/class-updraftplus.php:1293,
5687
+ #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:295
5688
  msgid "Error opening local file: Failed to download"
5689
  msgstr ""
5690
 
5700
  msgstr ""
5701
 
5702
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
5703
+ #: src/class-updraftplus.php:1107, src/methods/cloudfiles.php:130,
5704
+ #: src/methods/googledrive.php:999, src/methods/googledrive.php:1004
5705
  msgid "%s Error: Failed to open local file"
5706
  msgstr ""
5707
 
5710
  msgid "Cloud Files error - failed to create and access the container"
5711
  msgstr ""
5712
 
5713
+ #: src/addons/cloudfiles-enhanced.php:107,
5714
+ #: src/addons/cloudfiles-enhanced.php:120,
5715
+ #: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:550,
5716
+ #: src/methods/cloudfiles.php:553, src/methods/cloudfiles.php:556
5717
  msgid "Cloud Files authentication failed"
5718
  msgstr ""
5719
 
5720
+ #: src/addons/googlecloud.php:1066, src/methods/googledrive.php:1253
5721
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5722
  msgstr ""
5723
 
5724
+ #: src/methods/googledrive.php:1231
5725
  msgid "Authenticate with Google"
5726
  msgstr ""
5727
 
5728
+ #: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1082,
5729
+ #: src/methods/googledrive.php:1195
5730
  msgid "Client Secret"
5731
  msgstr ""
5732
 
5733
+ #: src/addons/googlecloud.php:1008, src/methods/googledrive.php:1192
5734
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5735
  msgstr ""
5736
 
5737
+ #: src/addons/googlecloud.php:1005, src/addons/onedrive.php:1078,
5738
+ #: src/methods/googledrive.php:1191
5739
  msgid "Client ID"
5740
  msgstr ""
5741
 
5742
+ #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1168
5743
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5744
  msgstr ""
5745
 
5746
+ #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1168
5747
  msgid "Select 'Web Application' as the application type."
5748
  msgstr ""
5749
 
5750
+ #: src/addons/googlecloud.php:981, src/methods/googledrive.php:1166
5751
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5752
  msgstr ""
5753
 
 
 
 
 
 
 
 
5754
  #: src/addons/googlecloud.php:505, src/addons/googlecloud.php:506,
5755
+ #: src/addons/googlecloud.php:858, src/methods/googledrive.php:545,
5756
  #: src/methods/googledrive.php:546, src/methods/googledrive.php:556,
5757
  #: src/methods/googledrive.php:557
5758
  msgid "Account is not authorized."
5772
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5773
  msgstr ""
5774
 
5775
+ #: src/addons/googlecloud.php:710, src/addons/onedrive.php:876,
5776
  #: src/methods/googledrive.php:440
5777
  msgid "you have authenticated your %s account."
5778
  msgstr ""
5779
 
5780
+ #: src/addons/googlecloud.php:710, src/addons/googlecloud.php:831,
5781
+ #: src/addons/onedrive.php:876, src/addons/sftp.php:570,
5782
+ #: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:571,
5783
  #: src/methods/googledrive.php:440, src/methods/openstack-base.php:530,
5784
+ #: src/methods/s3.php:1121, src/methods/stream-base.php:361
5785
  msgid "Success"
5786
  msgstr ""
5787
 
5788
+ #: src/addons/onedrive.php:830, src/methods/dropbox.php:780,
5789
+ #: src/methods/dropbox.php:789, src/methods/googledrive.php:414
5790
  msgid "Your %s quota usage: %s %% used, %s available"
5791
  msgstr ""
5792
 
5817
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5818
  msgstr ""
5819
 
5820
+ #: src/addons/migrator.php:1935, src/admin.php:1293, src/admin.php:3032,
5821
+ #: src/admin.php:3066, src/admin.php:3070, src/admin.php:4060,
5822
  #: src/restorer.php:2358, src/restorer.php:2463
5823
  msgid "OK"
5824
  msgstr ""
5827
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5828
  msgstr ""
5829
 
5830
+ #: src/addons/migrator.php:1285, src/restorer.php:2254
5831
  msgid "the database query being run was:"
5832
  msgstr ""
5833
 
5835
  msgid "will restore as:"
5836
  msgstr ""
5837
 
5838
+ #: src/class-updraftplus.php:4199, src/restorer.php:1728,
5839
  #: src/restorer.php:1817, src/restorer.php:1843
5840
  msgid "Old table prefix:"
5841
  msgstr ""
5842
 
5843
  #: src/addons/reporting.php:70, src/addons/reporting.php:180,
5844
+ #: src/backup.php:1099, src/class-updraftplus.php:4129
5845
  msgid "Backup of:"
5846
  msgstr ""
5847
 
5913
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5914
  msgstr ""
5915
 
5916
+ #: src/admin.php:4068, src/admin.php:4069
5917
  msgid "Could not find one of the files for restoration"
5918
  msgstr ""
5919
 
5920
+ #: src/admin.php:4182
5921
  msgid "Error message"
5922
  msgstr ""
5923
 
5924
+ #: src/admin.php:4065
5925
  msgid "The backup records do not contain information about the proper size of this file."
5926
  msgstr ""
5927
 
5928
+ #: src/admin.php:4057
5929
  msgid "Archive is expected to be size:"
5930
  msgstr ""
5931
 
5932
+ #: src/admin.php:3955
5933
  msgid "If making a request for support, please include this information:"
5934
  msgstr ""
5935
 
5936
+ #: src/admin.php:3954
5937
  msgid "ABORT: Could not find the information on which entities to restore."
5938
  msgstr ""
5939
 
5940
+ #: src/admin.php:3909
5941
  msgid "UpdraftPlus Restoration: Progress"
5942
  msgstr ""
5943
 
5944
+ #: src/admin.php:3862
5945
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5946
  msgstr ""
5947
 
5948
+ #: src/admin.php:3797
5949
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5950
  msgstr ""
5951
 
5952
+ #: src/admin.php:3815
5953
  msgid "Delete this backup set"
5954
  msgstr ""
5955
 
5956
+ #: src/admin.php:3457
5957
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5958
  msgstr ""
5959
 
5960
+ #: src/admin.php:3454
5961
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5962
  msgstr ""
5963
 
5964
+ #: src/admin.php:3452
5965
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5966
  msgstr ""
5967
 
5968
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
5969
+ #: src/methods/openstack-base.php:571, src/methods/s3.php:835
5970
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5971
  msgstr ""
5972
 
6002
  msgid "Use the server's SSL certificates"
6003
  msgstr ""
6004
 
6005
+ #: src/admin.php:3300
6006
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
6007
  msgstr ""
6008
 
6009
+ #: src/admin.php:3300
6010
  msgid "click here"
6011
  msgstr ""
6012
 
6013
+ #: src/admin.php:3300
6014
  msgid "or, to reset this option"
6015
  msgstr ""
6016
 
6017
+ #: src/admin.php:3300
6018
  msgid "Follow this link to attempt to create the directory and set the permissions"
6019
  msgstr ""
6020
 
6021
+ #: src/admin.php:3292
6022
  msgid "Backup directory specified is writable, which is good."
6023
  msgstr ""
6024
 
6058
  msgid "Cancel"
6059
  msgstr ""
6060
 
6061
+ #: src/addons/reporting.php:244, src/admin.php:3604
6062
  msgid "None"
6063
  msgstr ""
6064
 
6083
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6084
  msgstr ""
6085
 
6086
+ #: src/addons/morefiles.php:443, src/admin.php:3382
6087
  msgid "Exclude these:"
6088
  msgstr ""
6089
 
6090
+ #: src/admin.php:3373
6091
  msgid "Any other directories found inside wp-content"
6092
  msgstr ""
6093
 
6103
  msgid "To fix the time at which a backup should take place,"
6104
  msgstr ""
6105
 
6106
+ #: src/admin.php:3286
6107
  msgid "Monthly"
6108
  msgstr ""
6109
 
6110
+ #: src/admin.php:3285
6111
  msgid "Fortnightly"
6112
  msgstr ""
6113
 
6114
+ #: src/admin.php:3284
6115
  msgid "Weekly"
6116
  msgstr ""
6117
 
6118
+ #: src/admin.php:3283
6119
  msgid "Daily"
6120
  msgstr ""
6121
 
6122
+ #: src/admin.php:706, src/admin.php:3261
6123
  msgid "Download log file"
6124
  msgstr ""
6125
 
6126
+ #: src/admin.php:3133
6127
  msgid "The folder exists, but your webserver does not have permission to write to it."
6128
  msgstr ""
6129
 
6130
+ #: src/admin.php:3128
6131
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
6132
  msgstr ""
6133
 
6134
+ #: src/admin.php:3114
6135
  msgid "The request to the filesystem to create the directory failed."
6136
  msgstr ""
6137
 
6138
+ #: src/addons/migrator.php:2413, src/admin.php:700, src/admin.php:3026,
6139
+ #: src/admin.php:3059, src/admin.php:3815,
6140
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6141
  msgid "Delete"
6142
  msgstr ""
6143
 
6144
+ #: src/admin.php:2964
6145
  msgid "show log"
6146
  msgstr ""
6147
 
6254
  msgid "Do read this helpful article of useful things to know before restoring."
6255
  msgstr ""
6256
 
6257
+ #: src/class-updraftplus.php:4159
6258
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
6259
  msgstr ""
6260
 
6298
  msgid "Download error: the server sent us a response which we did not understand."
6299
  msgstr ""
6300
 
6301
+ #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:110,
6302
+ #: src/addons/migrator.php:858, src/addons/migrator.php:1155,
6303
+ #: src/addons/migrator.php:1236, src/addons/migrator.php:1285,
6304
+ #: src/addons/migrator.php:1523, src/addons/migrator.php:1874,
6305
+ #: src/addons/migrator.php:1901, src/addons/migrator.php:1907,
6306
+ #: src/addons/migrator.php:1969, src/addons/migrator.php:2009,
6307
+ #: src/addons/migrator.php:2048, src/addons/migrator.php:2058,
6308
+ #: src/addons/migrator.php:2063, src/addons/s3-enhanced.php:144,
6309
  #: src/addons/s3-enhanced.php:149, src/addons/s3-enhanced.php:151,
6310
+ #: src/addons/sftp.php:834, src/addons/webdav.php:191, src/admin.php:87,
6311
+ #: src/admin.php:674, src/admin.php:4062, src/admin.php:4092,
6312
  #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6313
+ #: src/methods/updraftvault.php:513, src/restorer.php:1444
6314
  msgid "Error:"
6315
  msgstr ""
6316
 
6340
  #: src/methods/googledrive.php:467, src/methods/googledrive.php:496,
6341
  #: src/methods/googledrive.php:503, src/methods/googledrive.php:513,
6342
  #: src/methods/googledrive.php:519, src/methods/googledrive.php:521,
6343
+ #: src/methods/googledrive.php:1154, src/methods/googledrive.php:1161,
6344
+ #: src/methods/googledrive.php:1161, src/methods/googledrive.php:1191,
6345
+ #: src/methods/googledrive.php:1195, src/methods/googledrive.php:1206,
6346
+ #: src/methods/googledrive.php:1217, src/methods/googledrive.php:1237
6347
  msgid "Google Drive"
6348
  msgstr ""
6349
 
6359
  msgid "More tasks:"
6360
  msgstr ""
6361
 
6362
+ #: src/admin.php:2722
6363
  msgid "Download most recently modified log file"
6364
  msgstr ""
6365
 
6366
+ #: src/admin.php:2678, src/admin.php:2684, src/central/bootstrap.php:173
6367
  msgid "(Nothing yet logged)"
6368
  msgstr ""
6369
 
6370
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6371
+ #: src/admin.php:2677, src/admin.php:2682
6372
  msgid "Last log message"
6373
  msgstr ""
6374
 
6375
+ #: src/addons/migrator.php:242, src/admin.php:705, src/admin.php:3797,
6376
  #: src/templates/wp-admin/settings/tab-status.php:30
6377
  msgid "Restore"
6378
  msgstr ""
6382
  msgid "Backup Now"
6383
  msgstr ""
6384
 
6385
+ #: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
6386
+ #: src/addons/reporting.php:259, src/admin.php:309, src/admin.php:3579,
6387
+ #: src/admin.php:3659, src/admin.php:4146,
6388
  #: src/includes/class-wpadmin-commands.php:147,
6389
  #: src/includes/class-wpadmin-commands.php:487,
6390
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
6391
  msgid "Database"
6392
  msgstr ""
6393
 
6394
+ #: src/admin.php:305, src/admin.php:4667
6395
  msgid "Files"
6396
  msgstr ""
6397
 
6419
  msgid "JavaScript warning"
6420
  msgstr ""
6421
 
6422
+ #: src/admin.php:685, src/admin.php:2749
6423
  msgid "Delete Old Directories"
6424
  msgstr ""
6425
 
6426
+ #: src/admin.php:2469
6427
  msgid "Current limit is:"
6428
  msgstr ""
6429
 
6430
+ #: src/admin.php:2444
6431
  msgid "Your backup has been restored."
6432
  msgstr ""
6433
 
6443
  msgid "UpdraftPlus.Com"
6444
  msgstr ""
6445
 
6446
+ #: src/admin.php:4559
6447
  msgid "Your settings have been wiped."
6448
  msgstr ""
6449
 
6450
+ #: src/admin.php:2404
6451
  msgid "Backup directory successfully created."
6452
  msgstr ""
6453
 
6454
+ #: src/admin.php:2397
6455
  msgid "Backup directory could not be created"
6456
  msgstr ""
6457
 
6458
+ #: src/admin.php:2996
6459
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6460
  msgstr ""
6461
 
6462
+ #: src/admin.php:2994
6463
  msgid "Old directories successfully removed."
6464
  msgstr ""
6465
 
6466
+ #: src/admin.php:2991, src/admin.php:2991
6467
  msgid "Remove old directories"
6468
  msgstr ""
6469
 
6470
+ #: src/addons/migrator.php:307, src/addons/migrator.php:322,
6471
+ #: src/admin.php:2346, src/admin.php:2355, src/admin.php:2364,
6472
+ #: src/admin.php:2406, src/admin.php:2998
6473
  msgid "Return to UpdraftPlus Configuration"
6474
  msgstr ""
6475
 
6476
+ #: src/admin.php:678, src/admin.php:2346, src/admin.php:2355,
6477
+ #: src/admin.php:2364, src/admin.php:2406, src/admin.php:2998,
6478
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6479
  msgid "Actions"
6480
  msgstr ""
6481
 
6482
+ #: src/admin.php:2249
6483
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6484
  msgstr ""
6485
 
6486
+ #: src/admin.php:2149
6487
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6488
  msgstr ""
6489
 
6490
+ #: src/admin.php:2045
6491
  msgid "No local copy present."
6492
  msgstr ""
6493
 
6494
+ #: src/admin.php:2042
6495
  msgid "Download in progress"
6496
  msgstr ""
6497
 
6498
+ #: src/admin.php:677, src/admin.php:2031
6499
  msgid "File ready."
6500
  msgstr ""
6501
 
6502
+ #: src/admin.php:2012
6503
  msgid "Download failed"
6504
  msgstr ""
6505
 
6506
+ #: src/admin.php:675, src/admin.php:1302, src/admin.php:1776,
6507
+ #: src/class-updraftplus.php:1249, src/class-updraftplus.php:1293,
6508
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
6509
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6510
  #: src/methods/stream-base.php:217, src/restorer.php:2354,
6512
  msgid "Error"
6513
  msgstr ""
6514
 
6515
+ #: src/admin.php:1811
6516
  msgid "Could not find that job - perhaps it has already finished?"
6517
  msgstr ""
6518
 
6519
+ #: src/admin.php:1803
6520
  msgid "Job deleted"
6521
  msgstr ""
6522
 
6523
+ #: src/admin.php:1892
6524
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6525
  msgstr ""
6526
 
6528
  msgid "Nothing yet logged"
6529
  msgstr ""
6530
 
6531
+ #: src/admin.php:977
6532
  msgid "Please consult this FAQ if you have problems backing up."
6533
  msgstr ""
6534
 
6535
+ #: src/admin.php:977
6536
  msgid "Your website is hosted using the %s web server."
6537
  msgstr ""
6538
 
6539
+ #: src/admin.php:973
6540
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
6541
  msgstr ""
6542
 
6543
+ #: src/admin.php:969
6544
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
6545
  msgstr ""
6546
 
6547
+ #: src/addons/migrator.php:913, src/admin.php:961, src/admin.php:965,
6548
+ #: src/admin.php:969, src/admin.php:973, src/admin.php:977, src/admin.php:986,
6549
+ #: src/admin.php:3445, src/admin.php:3452, src/admin.php:3454,
6550
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
6551
+ #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
6552
+ #: src/methods/s3.php:831, src/methods/s3.php:835,
6553
+ #: src/methods/updraftvault.php:292,
6554
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6555
  #: src/udaddons/updraftplus-addons.php:253
6556
  msgid "Warning"
6557
  msgstr ""
6558
 
6559
+ #: src/admin.php:907
6560
  msgid "Add-Ons / Pro Support"
6561
  msgstr ""
6562
 
6563
+ #: src/admin.php:542, src/admin.php:905,
6564
  #: src/templates/wp-admin/settings/tab-bar.php:7
6565
  msgid "Settings"
6566
  msgstr ""
6569
  msgid "Could not create %s zip. Consult the log file for more information."
6570
  msgstr ""
6571
 
6572
+ #: src/backup.php:2267
6573
  msgid "Infinite recursion: consult your log for more information"
6574
  msgstr ""
6575
 
6581
  msgid "Like UpdraftPlus and can spare one minute?"
6582
  msgstr ""
6583
 
6584
+ #: src/addons/azure.php:266, src/class-updraftplus.php:3919,
6585
+ #: src/methods/googledrive.php:1081, src/methods/s3.php:320
6586
  msgid "File not found"
6587
  msgstr ""
6588
 
6589
+ #: src/class-updraftplus.php:3826
6590
  msgid "The decryption key used:"
6591
  msgstr ""
6592
 
6593
+ #: src/class-updraftplus.php:3826, src/class-updraftplus.php:4058,
6594
  #: src/restorer.php:419
6595
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6596
  msgstr ""
6597
 
6598
+ #: src/class-updraftplus.php:3807, src/class-updraftplus.php:4046,
6599
  #: src/restorer.php:406
6600
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6601
  msgstr ""
6602
 
6603
+ #: src/backup.php:2142
6604
  msgid "Could not open the backup file for writing"
6605
  msgstr ""
6606
 
6607
+ #: src/class-updraftplus.php:3412
6608
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6609
  msgstr ""
6610
 
6611
+ #: src/class-updraftplus.php:3373
6612
  msgid "Could not read the directory"
6613
  msgstr ""
6614
 
6615
+ #: src/admin.php:2091, src/backup.php:1323
6616
  msgid "Backup directory (%s) is not writable, or does not exist."
6617
  msgstr ""
6618
 
6619
+ #: src/backup.php:1100
6620
  msgid "WordPress backup is complete"
6621
  msgstr ""
6622
 
6623
+ #: src/class-updraftplus.php:2883
6624
  msgid "The backup attempt has finished, apparently unsuccessfully"
6625
  msgstr ""
6626
 
6627
+ #: src/class-updraftplus.php:2868
6628
  msgid "The backup apparently succeeded and is now complete"
6629
  msgstr ""
6630
 
6632
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6633
  msgstr ""
6634
 
6635
+ #: src/class-updraftplus.php:2571
6636
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6637
  msgstr ""
6638
 
6639
+ #: src/class-updraftplus.php:1850
6640
  msgid "Others"
6641
  msgstr ""
6642
 
6643
+ #: src/addons/multisite.php:456, src/class-updraftplus.php:1835
6644
  msgid "Uploads"
6645
  msgstr ""
6646
 
6647
+ #: src/class-updraftplus.php:1834
6648
  msgid "Themes"
6649
  msgstr ""
6650
 
6651
+ #: src/class-updraftplus.php:1833
6652
  msgid "Plugins"
6653
  msgstr ""
6654
 
6655
+ #: src/class-updraftplus.php:596
6656
  msgid "No log files were found."
6657
  msgstr ""
6658
 
6659
+ #: src/admin.php:1961, src/admin.php:1965, src/class-updraftplus.php:591
6660
  msgid "The log file could not be read."
6661
  msgstr ""
6662
 
6663
+ #: src/admin.php:996, src/admin.php:1005, src/admin.php:1010,
6664
+ #: src/admin.php:1018, src/admin.php:1027, src/class-updraftplus.php:556,
6665
+ #: src/class-updraftplus.php:591, src/class-updraftplus.php:596,
6666
+ #: src/class-updraftplus.php:601
6667
  msgid "UpdraftPlus notice:"
6668
  msgstr ""
6669
 
6670
+ #: src/addons/multisite.php:65, src/addons/multisite.php:678,
6671
  #: src/options.php:50
6672
  msgid "UpdraftPlus Backups"
6673
  msgstr ""
languages/updraftplus-ar.mo CHANGED
Binary file
languages/updraftplus-ar.po CHANGED
@@ -7,10 +7,38 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
- "X-Generator: GlotPress/2.2.2\n"
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/templates/wp-admin/settings/tab-addons.php:14
15
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
16
  msgstr ""
@@ -23,11 +51,11 @@ msgstr ""
23
  msgid "get it here"
24
  msgstr ""
25
 
26
- #: src/methods/stream-base.php:305
27
  msgid "Download chunk size successfully changed to %d"
28
  msgstr ""
29
 
30
- #: src/methods/stream-base.php:302
31
  msgid "Download chunk size failed to change to %d"
32
  msgstr ""
33
 
@@ -43,7 +71,7 @@ msgstr ""
43
  msgid "remote site"
44
  msgstr ""
45
 
46
- #: src/addons/backblaze.php:443
47
  msgid "Invalid bucket name"
48
  msgstr ""
49
 
@@ -57,15 +85,15 @@ msgstr[3] ""
57
  msgstr[4] ""
58
  msgstr[5] ""
59
 
60
- #: src/class-updraftplus.php:4673
61
  msgid "Your chosen replacement collation"
62
  msgstr ""
63
 
64
- #: src/class-updraftplus.php:4650
65
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
66
  msgstr ""
67
 
68
- #: src/class-updraftplus.php:4650
69
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
70
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
71
  msgstr[0] ""
@@ -75,35 +103,35 @@ msgstr[3] ""
75
  msgstr[4] ""
76
  msgstr[5] ""
77
 
78
- #: src/addons/migrator.php:493
79
  msgid "Database restoration options:"
80
  msgstr ""
81
 
82
- #: src/addons/migrator.php:370
83
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
84
  msgstr ""
85
 
86
- #: src/addons/azure.php:562
87
  msgid "%s Prefix"
88
  msgstr ""
89
 
90
- #: src/addons/azure.php:557
91
  msgid "%s Container"
92
  msgstr ""
93
 
94
- #: src/addons/azure.php:552
95
  msgid "%s Key"
96
  msgstr ""
97
 
98
- #: src/addons/azure.php:548
99
  msgid "%s Account Name"
100
  msgstr ""
101
 
102
- #: src/addons/googlecloud.php:625
103
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
104
  msgstr ""
105
 
106
- #: src/addons/googlecloud.php:623
107
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
108
  msgstr ""
109
 
@@ -127,7 +155,7 @@ msgstr ""
127
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
128
  msgstr ""
129
 
130
- #: src/addons/migrator.php:877
131
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
132
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
133
  msgstr[0] ""
@@ -141,15 +169,15 @@ msgstr[5] ""
141
  msgid "Requested table character set (%s) is not present - changing to %s."
142
  msgstr ""
143
 
144
- #: src/class-updraftplus.php:4626
145
  msgid "Your chosen character set to use instead:"
146
  msgstr ""
147
 
148
- #: src/class-updraftplus.php:4616
149
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
150
  msgstr ""
151
 
152
- #: src/class-updraftplus.php:4616
153
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
154
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
155
  msgstr[0] ""
@@ -207,79 +235,79 @@ msgstr ""
207
  msgid "Please enter a valid URL e.g http://example.com"
208
  msgstr ""
209
 
210
- #: src/addons/backblaze.php:588
211
  msgid "your Backblaze console"
212
  msgstr ""
213
 
214
- #: src/addons/backblaze.php:588
215
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
216
  msgstr ""
217
 
218
- #: src/addons/backblaze.php:588
219
  msgid "N.B. You need to create the bucket in %s first."
220
  msgstr ""
221
 
222
- #: src/addons/backblaze.php:587
223
  msgid "some/path"
224
  msgstr ""
225
 
226
- #: src/addons/backblaze.php:587
227
  msgid "Bucket name"
228
  msgstr ""
229
 
230
- #: src/addons/backblaze.php:586
231
  msgid "Backup path"
232
  msgstr ""
233
 
234
- #: src/addons/backblaze.php:581
235
  msgid "Application key"
236
  msgstr ""
237
 
238
- #: src/addons/backblaze.php:576, src/addons/backblaze.php:576
239
  msgid "here"
240
  msgstr ""
241
 
242
- #: src/addons/backblaze.php:576
243
  msgid "Get these settings from %s, or sign up %s."
244
  msgstr ""
245
 
246
- #: src/addons/backblaze.php:440
247
  msgid "Bucket not found"
248
  msgstr ""
249
 
250
- #: src/addons/backblaze.php:394
251
  msgid "Account Key"
252
  msgstr ""
253
 
254
- #: src/addons/backblaze.php:393, src/addons/backblaze.php:574
255
  msgid "Account ID"
256
  msgstr ""
257
 
258
- #: src/class-updraftplus.php:4460
259
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
260
  msgstr ""
261
 
262
- #: src/class-updraftplus.php:4458, src/class-updraftplus.php:4460
263
  msgid "the migrator add-on"
264
  msgstr ""
265
 
266
- #: src/class-updraftplus.php:4458
267
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
268
  msgstr ""
269
 
270
- #: src/class-updraftplus.php:4456
271
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
272
  msgstr ""
273
 
274
- #: src/class-updraftplus.php:4453
275
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
276
  msgstr ""
277
 
278
- #: src/methods/googledrive.php:1173
279
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
280
  msgstr ""
281
 
282
- #: src/methods/googledrive.php:1170
283
  msgid "Follow this link to remove this site's settings for %s."
284
  msgstr ""
285
 
@@ -291,15 +319,15 @@ msgstr ""
291
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
292
  msgstr ""
293
 
294
- #: src/admin.php:1348, src/admin.php:4168, src/backup.php:2065,
295
- #: src/class-updraftplus.php:2156, src/class-updraftplus.php:2221,
296
- #: src/class-updraftplus.php:2355
297
  msgid "A PHP fatal error (%s) has occurred: %s"
298
  msgstr ""
299
 
300
- #: src/admin.php:1339, src/admin.php:4154, src/backup.php:2056,
301
- #: src/class-updraftplus.php:2147, src/class-updraftplus.php:2214,
302
- #: src/class-updraftplus.php:2348
303
  msgid "A PHP exception (%s) has occurred: %s"
304
  msgstr ""
305
 
@@ -343,7 +371,7 @@ msgstr ""
343
  msgid "Select Files"
344
  msgstr ""
345
 
346
- #: src/methods/cloudfiles.php:465
347
  msgid "Rackspace Storage Region"
348
  msgstr ""
349
 
@@ -351,23 +379,23 @@ msgstr ""
351
  msgid "Instant and secure logon with a wave of your phone."
352
  msgstr ""
353
 
354
- #: src/backup.php:2069
355
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
356
  msgstr ""
357
 
358
- #: src/admin.php:4696
359
  msgid "Value"
360
  msgstr ""
361
 
362
- #: src/admin.php:1614
363
  msgid "Did not know how to delete from this cloud service."
364
  msgstr ""
365
 
366
- #: src/addons/sftp.php:700
367
  msgid "Encrypted login failed; trying non-encrypted"
368
  msgstr ""
369
 
370
- #: src/addons/azure.php:539
371
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
372
  msgstr ""
373
 
@@ -375,15 +403,15 @@ msgstr ""
375
  msgid "Stored at: %s"
376
  msgstr ""
377
 
378
- #: src/methods/cloudfiles.php:485
379
  msgid "Cloud Files"
380
  msgstr ""
381
 
382
- #: src/admin.php:4509
383
  msgid "Your settings failed to save. Please refresh the settings page and try again"
384
  msgstr ""
385
 
386
- #: src/admin.php:4468
387
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
388
  msgstr ""
389
 
@@ -400,15 +428,15 @@ msgstr ""
400
  msgid "Extra database"
401
  msgstr ""
402
 
403
- #: src/admin.php:3729
404
  msgid "Press here to download or browse"
405
  msgstr ""
406
 
407
- #: src/admin.php:1122, src/admin.php:1132
408
  msgid "Error: invalid path"
409
  msgstr ""
410
 
411
- #: src/admin.php:946
412
  msgid "An error occurred when fetching storage module options: "
413
  msgstr ""
414
 
@@ -444,15 +472,15 @@ msgstr ""
444
  msgid "Skipped tables:"
445
  msgstr ""
446
 
447
- #: src/class-updraftplus.php:4738
448
  msgid "This database backup has the following WordPress tables excluded: %s"
449
  msgstr ""
450
 
451
- #: src/admin.php:2624
452
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
453
  msgstr ""
454
 
455
- #: src/admin.php:2624
456
  msgid "All WordPress tables will be backed up."
457
  msgstr ""
458
 
@@ -952,15 +980,15 @@ msgstr ""
952
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
953
  msgstr ""
954
 
955
- #: src/methods/dropbox.php:608
956
  msgid "%s de-authentication"
957
  msgstr ""
958
 
959
- #: src/methods/dropbox.php:528
960
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
961
  msgstr ""
962
 
963
- #: src/methods/dropbox.php:505
964
  msgid "Follow this link to deauthenticate with %s."
965
  msgstr ""
966
 
@@ -968,7 +996,7 @@ msgstr ""
968
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
969
  msgstr ""
970
 
971
- #: src/backup.php:1663
972
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
973
  msgstr ""
974
 
@@ -976,16 +1004,16 @@ msgstr ""
976
  msgid "You have selected a remote storage option which has an authorization step to complete:"
977
  msgstr ""
978
 
979
- #: src/admin.php:1690
980
  msgid "Remote files deleted:"
981
  msgstr ""
982
 
983
- #: src/admin.php:1689
984
  msgid "Local files deleted:"
985
  msgstr ""
986
 
987
- #: src/admin.php:994, src/admin.php:1003, src/admin.php:1016,
988
- #: src/admin.php:1025
989
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
990
  msgstr ""
991
 
@@ -1029,24 +1057,24 @@ msgstr ""
1029
  msgid "US East (Ohio)"
1030
  msgstr ""
1031
 
1032
- #: src/addons/onedrive.php:979
1033
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1034
  msgstr ""
1035
 
1036
- #: src/addons/onedrive.php:649
1037
  msgid "Account is not authorized (%s)."
1038
  msgstr ""
1039
 
1040
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873
1041
  msgid "Your IP address:"
1042
  msgstr ""
1043
 
1044
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873,
1045
  #: src/udaddons/updraftplus-addons.php:887
1046
  msgid "To remove any block, please go here."
1047
  msgstr ""
1048
 
1049
- #: src/addons/onedrive.php:594, src/udaddons/updraftplus-addons.php:858
1050
  msgid "An error response was received; HTTP code:"
1051
  msgstr ""
1052
 
@@ -1062,11 +1090,11 @@ msgstr ""
1062
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1063
  msgstr ""
1064
 
1065
- #: src/admin.php:2438
1066
  msgid "To fix this problem go here."
1067
  msgstr ""
1068
 
1069
- #: src/admin.php:2438
1070
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1071
  msgstr ""
1072
 
@@ -1074,27 +1102,27 @@ msgstr ""
1074
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1075
  msgstr ""
1076
 
1077
- #: src/addons/webdav.php:125
1078
  msgid "Path"
1079
  msgstr ""
1080
 
1081
- #: src/addons/webdav.php:120
1082
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1083
  msgstr ""
1084
 
1085
- #: src/addons/webdav.php:112
1086
  msgid "Enter any path in the field below."
1087
  msgstr ""
1088
 
1089
- #: src/addons/webdav.php:112
1090
  msgid "A host name cannot contain a slash."
1091
  msgstr ""
1092
 
1093
- #: src/addons/webdav.php:87
1094
  msgid "Protocol (SSL or not)"
1095
  msgstr ""
1096
 
1097
- #: src/addons/webdav.php:82
1098
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1099
  msgstr ""
1100
 
@@ -1102,7 +1130,7 @@ msgstr ""
1102
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1103
  msgstr ""
1104
 
1105
- #: src/methods/s3.php:1075
1106
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1107
  msgstr ""
1108
 
@@ -1142,53 +1170,53 @@ msgstr ""
1142
  msgid "Public key was sent to:"
1143
  msgstr ""
1144
 
1145
- #: src/backup.php:2281
1146
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1147
  msgstr ""
1148
 
1149
- #: src/backup.php:2259
1150
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1151
  msgstr ""
1152
 
1153
- #: src/addons/migrator.php:2342
1154
  msgid "Create key"
1155
  msgstr ""
1156
 
1157
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:526
1158
  msgid "slower, strongest"
1159
  msgstr ""
1160
 
1161
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1162
  msgid "recommended"
1163
  msgstr "موصى به"
1164
 
1165
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1166
  msgid "%s bytes"
1167
  msgstr ""
1168
 
1169
- #: src/addons/migrator.php:2337, src/central/bootstrap.php:524
1170
  msgid "faster (possibility for slow PHP installs)"
1171
  msgstr ""
1172
 
1173
- #: src/addons/migrator.php:2336, src/central/bootstrap.php:523
1174
  msgid "easy to break, fastest"
1175
  msgstr ""
1176
 
1177
- #: src/addons/migrator.php:2336, src/addons/migrator.php:2337,
1178
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:523,
1179
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1180
  msgid "%s bits"
1181
  msgstr ""
1182
 
1183
- #: src/addons/migrator.php:2334, src/central/bootstrap.php:521
1184
  msgid "Encryption key size:"
1185
  msgstr ""
1186
 
1187
- #: src/addons/migrator.php:2332
1188
  msgid "Enter your chosen name"
1189
  msgstr ""
1190
 
1191
- #: src/addons/migrator.php:2331
1192
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1193
  msgstr ""
1194
 
@@ -1196,15 +1224,15 @@ msgstr ""
1196
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1197
  msgstr ""
1198
 
1199
- #: src/methods/ftp.php:408
1200
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1201
  msgstr ""
1202
 
1203
- #: src/methods/ftp.php:380
1204
  msgid "login"
1205
  msgstr "تسجيل الدخول"
1206
 
1207
- #: src/methods/email.php:79
1208
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1209
  msgstr ""
1210
 
@@ -1212,7 +1240,7 @@ msgstr ""
1212
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1213
  msgstr ""
1214
 
1215
- #: src/class-updraftplus.php:1763
1216
  msgid "Size: %s MB"
1217
  msgstr ""
1218
 
@@ -1224,7 +1252,7 @@ msgstr ""
1224
  msgid "Now"
1225
  msgstr "الآن"
1226
 
1227
- #: src/class-updraftplus.php:4475, src/restorer.php:1045
1228
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1229
  msgstr ""
1230
 
@@ -1232,13 +1260,13 @@ msgstr ""
1232
  msgid "(tap on an icon to select or unselect)"
1233
  msgstr ""
1234
 
1235
- #: src/methods/updraftvault.php:310, src/methods/updraftvault.php:316,
1236
- #: src/methods/updraftvault.php:322
1237
  msgid "%s per year"
1238
  msgstr ""
1239
 
1240
- #: src/methods/updraftvault.php:309, src/methods/updraftvault.php:315,
1241
- #: src/methods/updraftvault.php:321
1242
  msgid "or (annual discount)"
1243
  msgstr ""
1244
 
@@ -1246,7 +1274,7 @@ msgstr ""
1246
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1247
  msgstr ""
1248
 
1249
- #: src/class-updraftplus.php:544, src/class-updraftplus.php:589
1250
  msgid "The given file was not found, or could not be read."
1251
  msgstr ""
1252
 
@@ -1330,23 +1358,23 @@ msgstr ""
1330
  msgid "UpdraftCentral Connection"
1331
  msgstr ""
1332
 
1333
- #: src/backup.php:965, src/class-updraftplus.php:2837
1334
  msgid "The backup was aborted by the user"
1335
  msgstr ""
1336
 
1337
- #: src/admin.php:4504
1338
  msgid "Your settings have been saved."
1339
  msgstr "تم حفظ إعداداتك."
1340
 
1341
- #: src/admin.php:3607
1342
  msgid "Total backup size:"
1343
  msgstr ""
1344
 
1345
- #: src/admin.php:2964
1346
  msgid "stop"
1347
  msgstr "توقف"
1348
 
1349
- #: src/admin.php:2806
1350
  msgid "The backup has finished running"
1351
  msgstr ""
1352
 
@@ -1408,19 +1436,19 @@ msgstr ""
1408
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1409
  msgstr ""
1410
 
1411
- #: src/class-updraftplus.php:4526, src/restorer.php:1740
1412
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1413
  msgstr ""
1414
 
1415
- #: src/class-updraftplus.php:4522
1416
  msgid "Please read this link for important information on this process."
1417
  msgstr ""
1418
 
1419
- #: src/class-updraftplus.php:4522
1420
  msgid "It will be imported as a new site."
1421
  msgstr ""
1422
 
1423
- #: src/admin.php:2597, src/templates/wp-admin/notices/horizontal-notice.php:16,
1424
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1425
  msgid "Dismiss"
1426
  msgstr "رفض"
@@ -1429,56 +1457,56 @@ msgstr "رفض"
1429
  msgid "Please fill in the required information."
1430
  msgstr ""
1431
 
1432
- #: src/addons/multisite.php:579
1433
  msgid "Read more..."
1434
  msgstr ""
1435
 
1436
- #: src/addons/multisite.php:570
1437
  msgid "may include some site-wide data"
1438
  msgstr ""
1439
 
1440
- #: src/addons/multisite.php:565
1441
  msgid "All sites"
1442
  msgstr ""
1443
 
1444
- #: src/addons/multisite.php:561
1445
  msgid "Which site to restore"
1446
  msgstr ""
1447
 
1448
- #: src/addons/migrator.php:563, src/addons/migrator.php:564
1449
  msgid "Error when creating new site at your chosen address:"
1450
  msgstr ""
1451
 
1452
- #: src/addons/migrator.php:505
1453
  msgid "Required information for restoring this backup was not given (%s)"
1454
  msgstr ""
1455
 
1456
- #: src/addons/migrator.php:457
1457
  msgid "Attribute imported content to user"
1458
  msgstr ""
1459
 
1460
- #: src/addons/migrator.php:447, src/addons/migrator.php:449
1461
  msgid "You must use lower-case letters or numbers for the site path, only."
1462
  msgstr ""
1463
 
1464
- #: src/addons/migrator.php:435
1465
  msgid "This feature is not compatible with %s"
1466
  msgstr ""
1467
 
1468
- #: src/addons/migrator.php:433, src/addons/migrator.php:435
1469
  msgid "Importing a single site into a multisite install"
1470
  msgstr ""
1471
 
1472
- #: src/addons/migrator.php:424
1473
  msgid "other content from wp-content"
1474
  msgstr ""
1475
 
1476
- #: src/addons/migrator.php:421
1477
  msgid "WordPress core"
1478
  msgstr ""
1479
 
1480
- #: src/addons/migrator.php:421, src/addons/migrator.php:424,
1481
- #: src/addons/migrator.php:427
1482
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1483
  msgstr ""
1484
 
@@ -1486,11 +1514,11 @@ msgstr ""
1486
  msgid "Call WordPress action:"
1487
  msgstr ""
1488
 
1489
- #: src/admin.php:2632
1490
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1491
  msgstr ""
1492
 
1493
- #: src/admin.php:4043
1494
  msgid "Skipping: this archive was already restored."
1495
  msgstr ""
1496
 
@@ -1522,51 +1550,51 @@ msgstr ""
1522
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1523
  msgstr ""
1524
 
1525
- #: src/admin.php:4378
1526
  msgid "Send this backup to remote storage"
1527
  msgstr ""
1528
 
1529
- #: src/admin.php:4376
1530
  msgid "Check out UpdraftPlus Vault."
1531
  msgstr ""
1532
 
1533
- #: src/admin.php:4376
1534
  msgid "Not got any remote storage?"
1535
  msgstr ""
1536
 
1537
- #: src/admin.php:4376
1538
  msgid "settings"
1539
  msgstr "إعدادات"
1540
 
1541
- #: src/admin.php:4376
1542
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1543
  msgstr ""
1544
 
1545
- #: src/admin.php:2630
1546
  msgid "Include any files in the backup"
1547
  msgstr ""
1548
 
1549
- #: src/admin.php:2616
1550
  msgid "Include the database in the backup"
1551
  msgstr ""
1552
 
1553
- #: src/admin.php:2596
1554
  msgid "Continue restoration"
1555
  msgstr ""
1556
 
1557
- #: src/admin.php:2591
1558
  msgid "You have an unfinished restoration operation, begun %s ago."
1559
  msgstr ""
1560
 
1561
- #: src/admin.php:2590
1562
  msgid "Unfinished restoration"
1563
  msgstr ""
1564
 
1565
- #: src/admin.php:2588
1566
  msgid "%s minutes, %s seconds"
1567
  msgstr ""
1568
 
1569
- #: src/admin.php:2535
1570
  msgid "Backup Contents And Schedule"
1571
  msgstr ""
1572
 
@@ -1574,7 +1602,7 @@ msgstr ""
1574
  msgid "Premium / Extensions"
1575
  msgstr ""
1576
 
1577
- #: src/admin.php:2304, src/admin.php:2313
1578
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1579
  msgstr ""
1580
 
@@ -1595,23 +1623,23 @@ msgstr "Extensions"
1595
  msgid "Advanced Tools"
1596
  msgstr ""
1597
 
1598
- #: src/addons/googlecloud.php:967
1599
  msgid "Bucket location"
1600
  msgstr ""
1601
 
1602
- #: src/addons/googlecloud.php:962
1603
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1604
  msgstr ""
1605
 
1606
- #: src/addons/googlecloud.php:962, src/addons/googlecloud.php:975
1607
  msgid "This setting applies only when a new bucket is being created."
1608
  msgstr ""
1609
 
1610
- #: src/addons/googlecloud.php:951
1611
  msgid "You must use a bucket name that is unique, for all %s users."
1612
  msgstr ""
1613
 
1614
- #: src/addons/googlecloud.php:910
1615
  msgid "Do not confuse %s with %s - they are separate things."
1616
  msgstr ""
1617
 
@@ -1673,64 +1701,64 @@ msgstr ""
1673
  msgid "Standard"
1674
  msgstr ""
1675
 
1676
- #: src/addons/azure.php:563
1677
  msgid "container"
1678
  msgstr ""
1679
 
1680
- #: src/addons/azure.php:563
1681
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1682
  msgstr ""
1683
 
1684
- #: src/addons/azure.php:562
1685
  msgid "optional"
1686
  msgstr ""
1687
 
1688
- #: src/addons/azure.php:558
1689
  msgid "See Microsoft's guidelines on container naming by following this link."
1690
  msgstr ""
1691
 
1692
- #: src/addons/azure.php:558
1693
  msgid "Enter the path of the %s you wish to use here."
1694
  msgstr ""
1695
 
1696
- #: src/addons/azure.php:549
1697
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1698
  msgstr ""
1699
 
1700
- #: src/addons/azure.php:548, src/addons/azure.php:552,
1701
- #: src/addons/azure.php:557, src/addons/azure.php:562
1702
  msgid "Azure"
1703
  msgstr ""
1704
 
1705
- #: src/addons/azure.php:544
1706
  msgid "Create Azure credentials in your Azure developer console."
1707
  msgstr ""
1708
 
1709
- #: src/addons/azure.php:513
1710
  msgid "Could not create the container"
1711
  msgstr ""
1712
 
1713
- #: src/addons/azure.php:364
1714
  msgid "Could not access container"
1715
  msgstr ""
1716
 
1717
- #: src/class-updraftplus.php:2854
1718
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1719
  msgstr ""
1720
 
1721
- #: src/backup.php:1715
1722
  msgid "the options table was not found"
1723
  msgstr ""
1724
 
1725
- #: src/backup.php:1713
1726
  msgid "no options or sitemeta table was found"
1727
  msgstr ""
1728
 
1729
- #: src/backup.php:1713, src/backup.php:1715
1730
  msgid "The database backup appears to have failed"
1731
  msgstr ""
1732
 
1733
- #: src/backup.php:1585
1734
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1735
  msgstr ""
1736
 
@@ -1742,47 +1770,47 @@ msgstr ""
1742
  msgid "Not installed"
1743
  msgstr "لم يتم التثبيت"
1744
 
1745
- #: src/addons/googlecloud.php:954, src/addons/s3-enhanced.php:63
1746
  msgid "Storage class"
1747
  msgstr ""
1748
 
1749
- #: src/addons/googlecloud.php:951
1750
  msgid "See Google's guidelines on bucket naming by following this link."
1751
  msgstr ""
1752
 
1753
- #: src/addons/googlecloud.php:951
1754
  msgid "Enter the name of the %s bucket you wish to use here."
1755
  msgstr ""
1756
 
1757
- #: src/addons/googlecloud.php:950
1758
  msgid "Bucket"
1759
  msgstr ""
1760
 
1761
- #: src/addons/googlecloud.php:946
1762
  msgid "Otherwise, you can leave it blank."
1763
  msgstr ""
1764
 
1765
- #: src/addons/googlecloud.php:946
1766
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1767
  msgstr ""
1768
 
1769
- #: src/addons/googlecloud.php:946
1770
  msgid "Enter the ID of the %s project you wish to use here."
1771
  msgstr ""
1772
 
1773
- #: src/addons/googlecloud.php:922
1774
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1775
  msgstr ""
1776
 
1777
- #: src/addons/googlecloud.php:835
1778
  msgid "You must enter a project ID in order to be able to create a new bucket."
1779
  msgstr ""
1780
 
1781
- #: src/addons/googlecloud.php:944
1782
  msgid "Project ID"
1783
  msgstr ""
1784
 
1785
- #: src/addons/googlecloud.php:692
1786
  msgid "You must save and authenticate before you can test your settings."
1787
  msgstr ""
1788
 
@@ -1791,22 +1819,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
1791
  msgstr ""
1792
 
1793
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1794
- #: src/addons/googlecloud.php:827, src/addons/googlecloud.php:874
1795
  msgid "You do not have access to this bucket."
1796
  msgstr ""
1797
 
1798
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1799
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1800
- #: src/addons/googlecloud.php:651, src/addons/googlecloud.php:827,
1801
- #: src/addons/googlecloud.php:874, src/addons/googlecloud.php:916,
1802
- #: src/addons/googlecloud.php:916, src/addons/googlecloud.php:931,
1803
- #: src/addons/googlecloud.php:939, src/addons/googlecloud.php:951
1804
  msgid "Google Cloud"
1805
  msgstr ""
1806
 
1807
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1808
- #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:827,
1809
- #: src/addons/googlecloud.php:874
1810
  msgid "%s Service Exception."
1811
  msgstr ""
1812
 
@@ -1843,7 +1871,7 @@ msgstr ""
1843
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1844
  msgstr ""
1845
 
1846
- #: src/admin.php:1688
1847
  msgid "Backup sets removed:"
1848
  msgstr ""
1849
 
@@ -1875,7 +1903,7 @@ msgstr ""
1875
  msgid "day"
1876
  msgstr ""
1877
 
1878
- #: src/addons/morestorage.php:28
1879
  msgid "(as many as you like)"
1880
  msgstr ""
1881
 
@@ -1891,31 +1919,31 @@ msgstr ""
1891
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1892
  msgstr ""
1893
 
1894
- #: src/methods/updraftvault.php:684
1895
  msgid "You do not currently have any UpdraftPlus Vault quota"
1896
  msgstr ""
1897
 
1898
- #: src/class-updraftplus.php:4595
1899
  msgid "You must upgrade MySQL to be able to use this database."
1900
  msgstr ""
1901
 
1902
- #: src/class-updraftplus.php:4595
1903
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1904
  msgstr ""
1905
 
1906
- #: src/admin.php:2423
1907
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1908
  msgstr ""
1909
 
1910
- #: src/methods/updraftvault.php:342
1911
  msgid "Don't know your email address, or forgotten your password?"
1912
  msgstr ""
1913
 
1914
- #: src/methods/updraftvault.php:335
1915
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1916
  msgstr ""
1917
 
1918
- #: src/methods/updraftvault.php:299, src/methods/updraftvault.php:328
1919
  msgid "Read the FAQs here."
1920
  msgstr ""
1921
 
@@ -1927,19 +1955,19 @@ msgstr ""
1927
  msgid "Server-side encryption"
1928
  msgstr ""
1929
 
1930
- #: src/methods/updraftvault.php:692
1931
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1932
  msgstr ""
1933
 
1934
- #: src/admin.php:1008
1935
  msgid "Go to the remote storage settings in order to connect."
1936
  msgstr ""
1937
 
1938
- #: src/admin.php:1008
1939
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1940
  msgstr ""
1941
 
1942
- #: src/methods/updraftvault.php:325
1943
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1944
  msgstr ""
1945
 
@@ -1959,67 +1987,67 @@ msgstr ""
1959
  msgid "Connecting..."
1960
  msgstr ""
1961
 
1962
- #: src/methods/updraftvault.php:445, src/methods/updraftvault.php:519
1963
  msgid "Refresh current status"
1964
  msgstr ""
1965
 
1966
- #: src/methods/updraftvault.php:443, src/methods/updraftvault.php:459,
1967
- #: src/methods/updraftvault.php:461, src/methods/updraftvault.php:519
1968
  msgid "Get more quota"
1969
  msgstr ""
1970
 
1971
- #: src/methods/updraftvault.php:440, src/methods/updraftvault.php:456,
1972
- #: src/methods/updraftvault.php:500
1973
  msgid "Current use:"
1974
  msgstr ""
1975
 
1976
- #: src/methods/updraftvault.php:435
1977
  msgid "You can get more quota here"
1978
  msgstr ""
1979
 
1980
- #: src/methods/updraftvault.php:435
1981
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1982
  msgstr ""
1983
 
1984
- #: src/admin.php:712, src/methods/updraftvault.php:369,
1985
- #: src/methods/updraftvault.php:427
1986
  msgid "Disconnect"
1987
  msgstr ""
1988
 
1989
- #: src/methods/updraftvault.php:366, src/methods/updraftvault.php:419
1990
  msgid "Quota:"
1991
  msgstr ""
1992
 
1993
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1994
  msgid "Vault owner"
1995
  msgstr ""
1996
 
1997
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1998
  msgid "Well done - there's nothing more needed to set up."
1999
  msgstr ""
2000
 
2001
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
2002
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
2003
  msgstr ""
2004
 
2005
- #: src/methods/updraftvault.php:371, src/methods/updraftvault.php:413
2006
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
2007
  msgstr ""
2008
 
2009
- #: src/methods/updraftvault.php:342
2010
  msgid "Go here for help"
2011
  msgstr ""
2012
 
2013
- #: src/methods/updraftvault.php:337
2014
  msgid "E-mail"
2015
  msgstr ""
2016
 
2017
- #: src/central/bootstrap.php:551, src/methods/updraftvault.php:331,
2018
- #: src/methods/updraftvault.php:345
2019
  msgid "Back..."
2020
  msgstr ""
2021
 
2022
- #: src/methods/updraftvault.php:325
2023
  msgid "Subscriptions can be cancelled at any time."
2024
  msgstr ""
2025
 
@@ -2027,37 +2055,37 @@ msgstr ""
2027
  msgid "Buy it now"
2028
  msgstr ""
2029
 
2030
- #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:314,
2031
- #: src/methods/updraftvault.php:320
2032
  msgid "%s per quarter"
2033
  msgstr ""
2034
 
2035
- #: src/central/bootstrap.php:578, src/methods/updraftvault.php:299,
2036
- #: src/methods/updraftvault.php:328
2037
  msgid "Read more about it here."
2038
  msgstr ""
2039
 
2040
- #: src/methods/updraftvault.php:299, src/methods/updraftvault.php:328
2041
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
2042
  msgstr ""
2043
 
2044
- #: src/methods/updraftvault.php:295
2045
  msgid "Already purchased space?"
2046
  msgstr ""
2047
 
2048
- #: src/methods/updraftvault.php:292
2049
  msgid "Show the options"
2050
  msgstr ""
2051
 
2052
- #: src/methods/updraftvault.php:291
2053
  msgid "First time user?"
2054
  msgstr ""
2055
 
2056
- #: src/methods/updraftvault.php:288, src/methods/updraftvault.php:305
2057
  msgid "Press a button to get started."
2058
  msgstr ""
2059
 
2060
- #: src/methods/updraftvault.php:288, src/methods/updraftvault.php:305
2061
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
2062
  msgstr ""
2063
 
@@ -2077,12 +2105,12 @@ msgstr ""
2077
  msgid "Updraft Vault"
2078
  msgstr ""
2079
 
2080
- #: src/addons/azure.php:394, src/addons/backblaze.php:473,
2081
- #: src/addons/googlecloud.php:776, src/methods/s3.php:1103
2082
  msgid "Delete failed:"
2083
  msgstr ""
2084
 
2085
- #: src/backup.php:3326
2086
  msgid "The zip engine returned the message: %s."
2087
  msgstr ""
2088
 
@@ -2102,71 +2130,71 @@ msgstr ""
2102
  msgid "Allow download"
2103
  msgstr ""
2104
 
2105
- #: src/addons/migrator.php:1886
2106
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
2107
  msgstr ""
2108
 
2109
- #: src/addons/migrator.php:1871, src/admin.php:721
2110
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
2111
  msgstr ""
2112
 
2113
- #: src/addons/migrator.php:2374
2114
  msgid "Existing keys"
2115
  msgstr ""
2116
 
2117
- #: src/addons/migrator.php:2365
2118
  msgid "No keys to allow remote sites to connect have yet been created."
2119
  msgstr ""
2120
 
2121
- #: src/addons/migrator.php:2347
2122
  msgid "Your new key:"
2123
  msgstr ""
2124
 
2125
- #: src/addons/migrator.php:2326
2126
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
2127
  msgstr ""
2128
 
2129
- #: src/addons/migrator.php:2308
2130
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
2131
  msgstr ""
2132
 
2133
- #: src/addons/migrator.php:2308
2134
  msgid "Keys for this site are created in the section below the one you just pressed in."
2135
  msgstr ""
2136
 
2137
- #: src/addons/migrator.php:1988, src/central/bootstrap.php:387
2138
  msgid "You must copy and paste this key now - it cannot be shown again."
2139
  msgstr ""
2140
 
2141
- #: src/addons/migrator.php:1988, src/central/bootstrap.php:387
2142
  msgid "Key created successfully."
2143
  msgstr ""
2144
 
2145
- #: src/addons/migrator.php:1973
2146
  msgid "A key with this name already exists; you must use a unique name."
2147
  msgstr ""
2148
 
2149
- #: src/addons/migrator.php:1917
2150
  msgid "Also send this backup to the active remote storage locations"
2151
  msgstr ""
2152
 
2153
- #: src/addons/migrator.php:1882
2154
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
2155
  msgstr ""
2156
 
2157
- #: src/addons/migrator.php:1838
2158
  msgid "site not found"
2159
  msgstr ""
2160
 
2161
- #: src/addons/migrator.php:1823
2162
  msgid "Backup data will be sent to:"
2163
  msgstr ""
2164
 
2165
- #: src/addons/migrator.php:209
2166
  msgid "Restore an existing backup set onto this site"
2167
  msgstr ""
2168
 
2169
- #: src/addons/migrator.php:202
2170
  msgid "This site has no backups to restore from yet."
2171
  msgstr ""
2172
 
@@ -2178,7 +2206,7 @@ msgstr ""
2178
  msgid "This storage method does not allow downloading"
2179
  msgstr ""
2180
 
2181
- #: src/admin.php:3792
2182
  msgid "(backup set imported from remote location)"
2183
  msgstr ""
2184
 
@@ -2198,7 +2226,7 @@ msgstr ""
2198
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
2199
  msgstr ""
2200
 
2201
- #: src/addons/migrator.php:1899, src/admin.php:728
2202
  msgid "Testing connection..."
2203
  msgstr ""
2204
 
@@ -2218,92 +2246,92 @@ msgstr ""
2218
  msgid "Creating..."
2219
  msgstr ""
2220
 
2221
- #: src/addons/migrator.php:2325
2222
  msgid "Or, receive a backup from a remote site"
2223
  msgstr ""
2224
 
2225
- #: src/addons/migrator.php:2314
2226
  msgid "Paste key here"
2227
  msgstr ""
2228
 
2229
- #: src/addons/migrator.php:2308
2230
  msgid "How do I get a site's key?"
2231
  msgstr ""
2232
 
2233
- #: src/addons/migrator.php:2308
2234
  msgid "To add a site as a destination for sending to, enter that site's key below."
2235
  msgstr ""
2236
 
2237
- #: src/addons/migrator.php:2305
2238
  msgid "Or, send a backup to another site"
2239
  msgstr ""
2240
 
2241
- #: src/addons/migrator.php:2070, src/admin.php:729
2242
  msgid "Send"
2243
  msgstr ""
2244
 
2245
- #: src/addons/migrator.php:2064, src/admin.php:720
2246
  msgid "Send to site:"
2247
  msgstr ""
2248
 
2249
- #: src/addons/migrator.php:2062
2250
  msgid "No receiving sites have yet been added."
2251
  msgstr ""
2252
 
2253
- #: src/addons/migrator.php:2043
2254
  msgid "It is for sending backups to the following site: "
2255
  msgstr ""
2256
 
2257
- #: src/addons/migrator.php:2043
2258
  msgid "The key was successfully added."
2259
  msgstr ""
2260
 
2261
- #: src/addons/migrator.php:2027
2262
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2263
  msgstr ""
2264
 
2265
- #: src/addons/migrator.php:2016, src/addons/migrator.php:2018,
2266
- #: src/addons/migrator.php:2022
2267
  msgid "The entered key was corrupt - please try again."
2268
  msgstr ""
2269
 
2270
- #: src/addons/migrator.php:2014
2271
  msgid "The entered key was the wrong length - please try again."
2272
  msgstr ""
2273
 
2274
- #: src/addons/migrator.php:2004
2275
  msgid "key"
2276
  msgstr ""
2277
 
2278
- #: src/methods/ftp.php:352
2279
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2280
  msgstr ""
2281
 
2282
- #: src/methods/ftp.php:350
2283
  msgid "Passive mode"
2284
  msgstr ""
2285
 
2286
- #: src/methods/ftp.php:345
2287
  msgid "Remote path"
2288
  msgstr ""
2289
 
2290
- #: src/methods/ftp.php:340
2291
  msgid "FTP password"
2292
  msgstr ""
2293
 
2294
- #: src/methods/ftp.php:335
2295
  msgid "FTP login"
2296
  msgstr ""
2297
 
2298
- #: src/methods/ftp.php:330
2299
  msgid "FTP server"
2300
  msgstr ""
2301
 
2302
- #: src/addons/migrator.php:174
2303
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
2304
  msgstr ""
2305
 
2306
- #: src/addons/migrator.php:174
2307
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2308
  msgstr ""
2309
 
@@ -2311,7 +2339,7 @@ msgstr ""
2311
  msgid "Resetting..."
2312
  msgstr ""
2313
 
2314
- #: src/addons/migrator.php:2314, src/admin.php:717
2315
  msgid "Add site"
2316
  msgstr ""
2317
 
@@ -2339,15 +2367,15 @@ msgstr ""
2339
  msgid "Go here to re-enter your password."
2340
  msgstr ""
2341
 
2342
- #: src/addons/migrator.php:238
2343
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2344
  msgstr ""
2345
 
2346
- #: src/addons/migrator.php:209
2347
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2348
  msgstr ""
2349
 
2350
- #: src/addons/migrator.php:176
2351
  msgid "To restore using any of the backup sets below, press the button."
2352
  msgstr ""
2353
 
@@ -2355,49 +2383,49 @@ msgstr ""
2355
  msgid "You have made changes to your settings, and not saved."
2356
  msgstr ""
2357
 
2358
- #: src/addons/onedrive.php:1024
2359
  msgid "N.B. %s is not case-sensitive."
2360
  msgstr ""
2361
 
2362
- #: src/addons/onedrive.php:1014
2363
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2364
  msgstr ""
2365
 
2366
- #: src/addons/azure.php:544, src/addons/migrator.php:1886,
2367
- #: src/addons/onedrive.php:1000
2368
  msgid "For longer help, including screenshots, follow this link."
2369
  msgstr ""
2370
 
2371
- #: src/addons/onedrive.php:993
2372
  msgid "Create OneDrive credentials in your OneDrive developer console."
2373
  msgstr ""
2374
 
2375
- #: src/addons/onedrive.php:986
2376
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2377
  msgstr ""
2378
 
2379
- #: src/addons/azure.php:537
2380
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2381
  msgstr ""
2382
 
2383
- #: src/addons/onedrive.php:952, src/addons/onedrive.php:954
2384
  msgid "%s authorisation failed:"
2385
  msgstr ""
2386
 
2387
- #: src/addons/onedrive.php:827, src/addons/onedrive.php:1013,
2388
- #: src/addons/onedrive.php:1017
2389
  msgid "OneDrive"
2390
  msgstr ""
2391
 
2392
- #: src/addons/onedrive.php:640
2393
  msgid "Please re-authorize the connection to your %s account."
2394
  msgstr ""
2395
 
2396
- #: src/methods/email.php:75
2397
  msgid "configure it here"
2398
  msgstr ""
2399
 
2400
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657
2401
  msgid "To remove the block, please go here."
2402
  msgstr ""
2403
 
@@ -2542,7 +2570,7 @@ msgstr ""
2542
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2543
  msgstr ""
2544
 
2545
- #: src/methods/s3.php:879
2546
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2547
  msgstr ""
2548
 
@@ -2554,18 +2582,18 @@ msgstr ""
2554
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
2555
  msgstr ""
2556
 
2557
- #: src/addons/onedrive.php:609, src/addons/onedrive.php:633,
2558
- #: src/methods/updraftvault.php:657, src/udaddons/updraftplus-addons.php:873,
2559
  #: src/udaddons/updraftplus-addons.php:887
2560
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2561
  msgstr ""
2562
 
2563
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657,
2564
  #: src/udaddons/updraftplus-addons.php:887
2565
  msgid "It appears that your web server's IP Address (%s) is blocked."
2566
  msgstr ""
2567
 
2568
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657,
2569
  #: src/udaddons/updraftplus-addons.php:887
2570
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2571
  msgstr ""
@@ -2617,7 +2645,7 @@ msgstr ""
2617
  msgid "(at same time as files backup)"
2618
  msgstr ""
2619
 
2620
- #: src/admin.php:3263
2621
  msgid "No backup has been completed"
2622
  msgstr ""
2623
 
@@ -2664,21 +2692,21 @@ msgstr ""
2664
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2665
  msgstr ""
2666
 
2667
- #: src/addons/sftp.php:436
2668
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2669
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2670
  msgstr ""
2671
 
2672
- #: src/addons/sftp.php:399
2673
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
2674
  msgstr ""
2675
 
2676
- #: src/methods/openstack2.php:183
2677
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2678
  msgid "tenant"
2679
  msgstr ""
2680
 
2681
- #: src/methods/openstack2.php:132
2682
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2683
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2684
  msgstr ""
@@ -2691,7 +2719,7 @@ msgstr ""
2691
  msgid "Check this box to have a basic report sent to"
2692
  msgstr ""
2693
 
2694
- #: src/admin.php:3277
2695
  msgctxt "i.e. Non-automatic"
2696
  msgid "Manual"
2697
  msgstr ""
@@ -2709,7 +2737,7 @@ msgstr ""
2709
  msgid "Any other file/directory on your server that you wish to back up"
2710
  msgstr ""
2711
 
2712
- #: src/admin.php:2440
2713
  msgid "For even more features and personal support, check out "
2714
  msgstr ""
2715
 
@@ -2803,7 +2831,7 @@ msgstr ""
2803
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2804
  msgstr ""
2805
 
2806
- #: src/admin.php:2806, src/admin.php:3823
2807
  msgid "View Log"
2808
  msgstr ""
2809
 
@@ -2820,7 +2848,7 @@ msgstr ""
2820
  msgid "and retain this many scheduled backups"
2821
  msgstr ""
2822
 
2823
- #: src/admin.php:3233
2824
  msgid "incremental backup; base backup: %s"
2825
  msgstr ""
2826
 
@@ -2832,28 +2860,28 @@ msgstr ""
2832
  msgid "Upload files into UpdraftPlus."
2833
  msgstr ""
2834
 
2835
- #: src/admin.php:950, src/includes/class-commands.php:394,
2836
  #: src/templates/wp-admin/settings/tab-status.php:22
2837
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2838
  msgstr ""
2839
 
2840
- #: src/class-updraftplus.php:4511
2841
  msgid "Backup label:"
2842
  msgstr ""
2843
 
2844
- #: src/addons/backblaze.php:189, src/admin.php:1951
2845
  msgid "Error: unexpected file read fail"
2846
  msgstr ""
2847
 
2848
- #: src/backup.php:3332
2849
  msgid "check your log for more details."
2850
  msgstr ""
2851
 
2852
- #: src/backup.php:3330
2853
  msgid "your web hosting account appears to be full; please see: %s"
2854
  msgstr ""
2855
 
2856
- #: src/backup.php:3328
2857
  msgid "A zip error occurred"
2858
  msgstr ""
2859
 
@@ -2861,19 +2889,19 @@ msgstr ""
2861
  msgid "Your label for this backup (optional)"
2862
  msgstr ""
2863
 
2864
- #: src/addons/googlecloud.php:916, src/methods/googledrive.php:1107
2865
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
2866
  msgstr ""
2867
 
2868
- #: src/methods/updraftvault.php:695, src/udaddons/updraftplus-addons.php:926
2869
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2870
  msgstr ""
2871
 
2872
- #: src/methods/updraftvault.php:692, src/udaddons/updraftplus-addons.php:922
2873
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2874
  msgstr ""
2875
 
2876
- #: src/methods/updraftvault.php:633, src/udaddons/updraftplus-addons.php:790
2877
  msgid "You need to supply both an email address and a password"
2878
  msgstr ""
2879
 
@@ -2881,36 +2909,36 @@ msgstr ""
2881
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2882
  msgstr ""
2883
 
2884
- #: src/class-updraftplus.php:4530
2885
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2886
  msgstr ""
2887
 
2888
- #: src/class-updraftplus.php:4530
2889
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2890
  msgstr ""
2891
 
2892
- #: src/addons/migrator.php:1184
2893
  msgid "already done"
2894
  msgstr ""
2895
 
2896
- #: src/addons/migrator.php:1141
2897
  msgid "skipped (not in list)"
2898
  msgstr ""
2899
 
2900
- #: src/addons/migrator.php:1141, src/addons/migrator.php:1184,
2901
- #: src/addons/migrator.php:1318
2902
  msgid "Search and replacing table:"
2903
  msgstr ""
2904
 
2905
- #: src/addons/migrator.php:350
2906
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2907
  msgstr ""
2908
 
2909
- #: src/addons/migrator.php:350
2910
  msgid "These tables only"
2911
  msgstr ""
2912
 
2913
- #: src/addons/migrator.php:349
2914
  msgid "Rows per batch"
2915
  msgstr ""
2916
 
@@ -2922,19 +2950,19 @@ msgstr ""
2922
  msgid "You need to connect to receive future updates to UpdraftPlus."
2923
  msgstr ""
2924
 
2925
- #: src/class-updraftplus.php:4503
2926
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2927
  msgstr ""
2928
 
2929
- #: src/class-updraftplus.php:4503
2930
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2931
  msgstr ""
2932
 
2933
- #: src/class-updraftplus.php:4503
2934
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2935
  msgstr ""
2936
 
2937
- #: src/class-updraftplus.php:4503
2938
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2939
  msgstr ""
2940
 
@@ -2963,7 +2991,7 @@ msgstr ""
2963
  msgid "UpdraftPlus is on social media - check us out!"
2964
  msgstr ""
2965
 
2966
- #: src/admin.php:3890
2967
  msgid "Why am I seeing this?"
2968
  msgstr ""
2969
 
@@ -2975,15 +3003,15 @@ msgstr ""
2975
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2976
  msgstr ""
2977
 
2978
- #: src/admin.php:1890, src/admin.php:1902
2979
  msgid "Start backup"
2980
  msgstr ""
2981
 
2982
- #: src/class-updraftplus.php:4475, src/restorer.php:1045
2983
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2984
  msgstr ""
2985
 
2986
- #: src/admin.php:3131
2987
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2988
  msgstr ""
2989
 
@@ -2991,11 +3019,11 @@ msgstr ""
2991
  msgid "Unless you have a problem, you can completely ignore everything here."
2992
  msgstr ""
2993
 
2994
- #: src/admin.php:2126
2995
  msgid "This file could not be uploaded"
2996
  msgstr ""
2997
 
2998
- #: src/admin.php:2089
2999
  msgid "You will find more information about this in the Settings section."
3000
  msgstr ""
3001
 
@@ -3015,15 +3043,15 @@ msgstr ""
3015
  msgid "Memory limit"
3016
  msgstr ""
3017
 
3018
- #: src/class-updraftplus.php:4944, src/restorer.php:1529
3019
  msgid "restoration"
3020
  msgstr ""
3021
 
3022
- #: src/backup.php:960
3023
  msgid "Incremental"
3024
  msgstr ""
3025
 
3026
- #: src/backup.php:960
3027
  msgid "Full backup"
3028
  msgstr ""
3029
 
@@ -3039,42 +3067,42 @@ msgstr ""
3039
  msgid "Backup succeeded"
3040
  msgstr ""
3041
 
3042
- #: src/admin.php:3278, src/admin.php:3279, src/admin.php:3280,
3043
  #: src/updraftplus.php:99, src/updraftplus.php:100
3044
  msgid "Every %s hours"
3045
  msgstr ""
3046
 
3047
- #: src/addons/migrator.php:835, src/addons/migrator.php:837
3048
  msgid "search and replace"
3049
  msgstr ""
3050
 
3051
- #: src/addons/migrator.php:352
3052
  msgid "Go"
3053
  msgstr ""
3054
 
3055
- #: src/addons/migrator.php:341
3056
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
3057
  msgstr ""
3058
 
3059
- #: src/addons/migrator.php:340
3060
  msgid "This can easily destroy your site; so, use it with care!"
3061
  msgstr ""
3062
 
3063
- #: src/addons/migrator.php:296, src/addons/migrator.php:348
3064
  msgid "Replace with"
3065
  msgstr ""
3066
 
3067
- #: src/addons/migrator.php:295, src/addons/migrator.php:347
3068
  msgid "Search for"
3069
  msgstr ""
3070
 
3071
- #: src/addons/migrator.php:294, src/addons/migrator.php:339,
3072
  #: src/templates/wp-admin/advanced/search-replace.php:7,
3073
  #: src/templates/wp-admin/advanced/tools-menu.php:18
3074
  msgid "Search / replace database"
3075
  msgstr ""
3076
 
3077
- #: src/addons/migrator.php:300
3078
  msgid "search term"
3079
  msgstr ""
3080
 
@@ -3082,19 +3110,19 @@ msgstr ""
3082
  msgid "Too many database errors have occurred - aborting"
3083
  msgstr ""
3084
 
3085
- #: src/backup.php:1026
3086
  msgid "read more at %s"
3087
  msgstr ""
3088
 
3089
- #: src/backup.php:1026
3090
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3091
  msgstr ""
3092
 
3093
- #: src/methods/googledrive.php:1114
3094
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
3095
  msgstr ""
3096
 
3097
- #: src/admin.php:3634
3098
  msgid "You have not yet made any backups."
3099
  msgstr ""
3100
 
@@ -3114,11 +3142,11 @@ msgstr ""
3114
  msgid "Free disk space in account:"
3115
  msgstr ""
3116
 
3117
- #: src/admin.php:4475, src/templates/wp-admin/settings/tab-status.php:27
3118
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3119
  msgstr ""
3120
 
3121
- #: src/admin.php:534, src/admin.php:676, src/admin.php:1736,
3122
  #: src/includes/deprecated-actions.php:29,
3123
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3124
  #: src/templates/wp-admin/settings/tab-bar.php:6
@@ -3129,15 +3157,15 @@ msgstr ""
3129
  msgid "Current Status"
3130
  msgstr ""
3131
 
3132
- #: src/admin.php:955
3133
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
3134
  msgstr ""
3135
 
3136
- #: src/admin.php:955
3137
  msgid "To make a backup, just press the Backup Now button."
3138
  msgstr ""
3139
 
3140
- #: src/admin.php:955
3141
  msgid "Welcome to UpdraftPlus!"
3142
  msgstr ""
3143
 
@@ -3209,11 +3237,11 @@ msgstr ""
3209
  msgid "user"
3210
  msgstr ""
3211
 
3212
- #: src/class-updraftplus.php:1760
3213
  msgid "External database (%s)"
3214
  msgstr ""
3215
 
3216
- #: src/methods/googledrive.php:1114
3217
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
3218
  msgstr ""
3219
 
@@ -3221,12 +3249,12 @@ msgstr ""
3221
  msgid "failed to access parent folder"
3222
  msgstr ""
3223
 
3224
- #: src/addons/googlecloud.php:631, src/addons/onedrive.php:795,
3225
- #: src/addons/onedrive.php:806, src/methods/googledrive.php:420
3226
  msgid "However, subsequent access attempts failed:"
3227
  msgstr ""
3228
 
3229
- #: src/admin.php:3659
3230
  msgid "External database"
3231
  msgstr ""
3232
 
@@ -3258,7 +3286,7 @@ msgstr ""
3258
  msgid "use UpdraftPlus Premium"
3259
  msgstr ""
3260
 
3261
- #: src/class-updraftplus.php:4362
3262
  msgid "Decryption failed. The database file is encrypted."
3263
  msgstr ""
3264
 
@@ -3271,15 +3299,15 @@ msgstr ""
3271
  msgid "An error occurred on the first %s command - aborting run"
3272
  msgstr ""
3273
 
3274
- #: src/addons/moredatabase.php:105, src/backup.php:1526
3275
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3276
  msgstr ""
3277
 
3278
- #: src/backup.php:1526
3279
  msgid "database connection attempt failed."
3280
  msgstr ""
3281
 
3282
- #: src/addons/migrator.php:1072
3283
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3284
  msgstr ""
3285
 
@@ -3287,41 +3315,41 @@ msgstr ""
3287
  msgid "In %s, path names are case sensitive."
3288
  msgstr ""
3289
 
3290
- #: src/addons/azure.php:563, src/addons/google-enhanced.php:76,
3291
- #: src/addons/onedrive.php:1024
3292
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3293
  msgstr ""
3294
 
3295
- #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:951,
3296
- #: src/addons/onedrive.php:1024
3297
  msgid "e.g. %s"
3298
  msgstr ""
3299
 
3300
- #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1024
3301
  msgid "Enter the path of the %s folder you wish to use here."
3302
  msgstr ""
3303
 
3304
- #: src/methods/openstack2.php:163
3305
  msgid "Container"
3306
  msgstr ""
3307
 
3308
- #: src/methods/openstack2.php:146
3309
  msgid "Leave this blank, and a default will be chosen."
3310
  msgstr ""
3311
 
3312
- #: src/methods/openstack2.php:137
3313
  msgid "Tenant"
3314
  msgstr ""
3315
 
3316
- #: src/methods/openstack2.php:137
3317
  msgid "Follow this link for more information"
3318
  msgstr ""
3319
 
3320
- #: src/methods/openstack2.php:129, src/methods/openstack2.php:188
3321
  msgid "authentication URI"
3322
  msgstr ""
3323
 
3324
- #: src/methods/openstack2.php:124
3325
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
3326
  msgstr ""
3327
 
@@ -3341,24 +3369,24 @@ msgstr ""
3341
  msgid "Failed to upload %s"
3342
  msgstr ""
3343
 
3344
- #: src/methods/dropbox.php:664, src/methods/dropbox.php:666
3345
  msgid "Success:"
3346
  msgstr ""
3347
 
3348
- #: src/addons/onedrive.php:1045, src/methods/dropbox.php:517
3349
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
3350
  msgstr ""
3351
 
3352
- #: src/addons/onedrive.php:1037, src/methods/dropbox.php:501
3353
  msgid "(You appear to be already authenticated)."
3354
  msgstr ""
3355
 
3356
- #: src/methods/dropbox.php:497, src/methods/dropbox.php:505,
3357
- #: src/methods/dropbox.php:517
3358
  msgid "Dropbox"
3359
  msgstr ""
3360
 
3361
- #: src/addons/onedrive.php:1030, src/methods/dropbox.php:497
3362
  msgid "Authenticate with %s"
3363
  msgstr ""
3364
 
@@ -3389,34 +3417,34 @@ msgstr ""
3389
  msgid "%s error - failed to access the container"
3390
  msgstr ""
3391
 
3392
- #: src/addons/googlecloud.php:1016, src/addons/onedrive.php:1069,
3393
- #: src/methods/dropbox.php:560, src/methods/googledrive.php:1179
3394
  msgid "Account holder's name: %s."
3395
  msgstr ""
3396
 
3397
- #: src/methods/googledrive.php:1157
3398
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3399
  msgstr ""
3400
 
3401
- #: src/methods/googledrive.php:1144
3402
  msgid "It is an ID number internal to Google Drive"
3403
  msgstr ""
3404
 
3405
- #: src/methods/googledrive.php:1144
3406
  msgid "<strong>This is NOT a folder name</strong>."
3407
  msgstr ""
3408
 
3409
- #: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1022,
3410
- #: src/methods/googledrive.php:1139, src/methods/googledrive.php:1150
3411
  msgid "Folder"
3412
  msgstr ""
3413
 
3414
- #: src/addons/googlecloud.php:296, src/addons/onedrive.php:377,
3415
- #: src/methods/googledrive.php:1063
3416
  msgid "%s download: failed: file not found"
3417
  msgstr ""
3418
 
3419
- #: src/addons/googlecloud.php:651, src/methods/googledrive.php:440
3420
  msgid "Name: %s."
3421
  msgstr ""
3422
 
@@ -3445,7 +3473,7 @@ msgstr ""
3445
  msgid "Fetch"
3446
  msgstr ""
3447
 
3448
- #: src/addons/migrator.php:433,
3449
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3450
  #: src/templates/wp-admin/settings/form-contents.php:190
3451
  msgid "This feature requires %s version %s or later"
@@ -3455,7 +3483,7 @@ msgstr ""
3455
  msgid "Failed to unpack the archive"
3456
  msgstr ""
3457
 
3458
- #: src/class-updraftplus.php:1292
3459
  msgid "Error - failed to download the file"
3460
  msgstr ""
3461
 
@@ -3475,16 +3503,16 @@ msgstr ""
3475
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3476
  msgstr ""
3477
 
3478
- #: src/addons/sftp.php:497
3479
  msgid "password/key"
3480
  msgstr " الرقم السري/المفتاح"
3481
 
3482
- #: src/addons/migrator.php:2332, src/addons/sftp.php:433, src/admin.php:723,
3483
- #: src/admin.php:4696
3484
  msgid "Key"
3485
  msgstr "مفتاح"
3486
 
3487
- #: src/addons/sftp.php:428
3488
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3489
  msgstr "للدخول يجب ادخال إما الرقم السري أو المفتاح، وليس كلاهما."
3490
 
@@ -3496,24 +3524,24 @@ msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فا
3496
  msgid "SCP/SFTP password/key"
3497
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
3498
 
3499
- #: src/admin.php:3703
3500
  msgid "Files backup (created by %s)"
3501
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
3502
 
3503
- #: src/admin.php:3703
3504
  msgid "Files and database WordPress backup (created by %s)"
3505
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
3506
 
3507
- #: src/addons/importer.php:276, src/admin.php:3697,
3508
  #: src/includes/class-backup-history.php:279
3509
  msgid "Backup created by: %s."
3510
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
3511
 
3512
- #: src/admin.php:3657
3513
  msgid "Database (created by %s)"
3514
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
3515
 
3516
- #: src/admin.php:3651, src/admin.php:3699
3517
  msgid "unknown source"
3518
  msgstr "مصدر غير معروف"
3519
 
@@ -3525,15 +3553,15 @@ msgstr "إعادة فحص الإستضافة الإستضافة السحابية
3525
  msgid "Upload backup files"
3526
  msgstr "رفع ملفات النسخة الإحتياطية"
3527
 
3528
- #: src/admin.php:2141
3529
  msgid "This backup was created by %s, and can be imported."
3530
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
3531
 
3532
- #: src/admin.php:984
3533
  msgid "Read this page for a guide to possible causes and how to fix it."
3534
  msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
3535
 
3536
- #: src/admin.php:984
3537
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3538
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
3539
 
@@ -3550,7 +3578,7 @@ msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zi
3550
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3551
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3552
 
3553
- #: src/admin.php:3700, src/includes/class-wpadmin-commands.php:152,
3554
  #: src/restorer.php:1498
3555
  msgid "Backup created by unknown source (%s) - cannot be restored."
3556
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
@@ -3563,16 +3591,16 @@ msgstr "مجلد (wp-content) غير موجود البثة بهذا الملف
3563
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3564
  msgstr "هذه النسخة من UpdraftPlus لا تستطيع التعامل مع نوع النسخ الإحتياطية هذا."
3565
 
3566
- #: src/methods/dropbox.php:309
3567
  msgid "%s returned an unexpected HTTP response: %s"
3568
  msgstr "أبدى %s إجابة HTTP غير متوقعة: %s"
3569
 
3570
- #: src/addons/sftp.php:967
3571
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3572
  msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
3573
 
3574
- #: src/addons/backblaze.php:525, src/methods/cloudfiles.php:234,
3575
- #: src/methods/dropbox.php:290, src/methods/openstack-base.php:118
3576
  msgid "No settings were found"
3577
  msgstr "لم يتم العثور على الإعدادات"
3578
 
@@ -3584,7 +3612,7 @@ msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتي
3584
  msgid "Rescanning remote and local storage for backup sets..."
3585
  msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
3586
 
3587
- #: src/addons/googlecloud.php:954, src/addons/googlecloud.php:967,
3588
  #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
3589
  msgid "(Read more)"
3590
  msgstr "(قراءة المزيد)"
@@ -3602,7 +3630,7 @@ msgstr ""
3602
  msgid "Remove"
3603
  msgstr "حذف"
3604
 
3605
- #: src/methods/s3.php:867
3606
  msgid "Other %s FAQs."
3607
  msgstr "الأسئلة الشائعة %s الأخرى."
3608
 
@@ -3610,28 +3638,28 @@ msgstr "الأسئلة الشائعة %s الأخرى."
3610
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3611
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
3612
 
3613
- #: src/addons/morefiles.php:445, src/admin.php:3382
3614
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3615
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
3616
 
3617
- #: src/class-updraftplus.php:4944, src/methods/ftp.php:309,
3618
  #: src/restorer.php:1529
3619
  msgid "Your hosting company must enable these functions before %s can work."
3620
  msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
3621
 
3622
- #: src/class-updraftplus.php:4944, src/methods/ftp.php:309
3623
  msgid "Your web server's PHP installation has these functions disabled: %s."
3624
  msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
3625
 
3626
- #: src/methods/ftp.php:306
3627
  msgid "encrypted FTP (explicit encryption)"
3628
  msgstr "خادم FTP مشفر (تشفير واضح)"
3629
 
3630
- #: src/methods/ftp.php:305
3631
  msgid "encrypted FTP (implicit encryption)"
3632
  msgstr "خادم FTP مشفر (تشفير غير واضح)"
3633
 
3634
- #: src/methods/ftp.php:304
3635
  msgid "regular non-encrypted FTP"
3636
  msgstr "خادم FTP غير مشفر اعتيادي"
3637
 
@@ -3689,15 +3717,15 @@ msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا المو
3689
  msgid "Dismiss from main dashboard (for %s weeks)"
3690
  msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
3691
 
3692
- #: src/class-updraftplus.php:4994
3693
  msgid "The attempt to undo the double-compression succeeded."
3694
  msgstr "نجاح محاولة التراجع من الضغط المزدوج"
3695
 
3696
- #: src/class-updraftplus.php:4971, src/class-updraftplus.php:4992
3697
  msgid "The attempt to undo the double-compression failed."
3698
  msgstr "فشل محاولة التراجع من الضغط المزدوج"
3699
 
3700
- #: src/class-updraftplus.php:4964
3701
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3702
  msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
3703
 
@@ -3705,15 +3733,15 @@ msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مر
3705
  msgid "Constants"
3706
  msgstr "ثوابت"
3707
 
3708
- #: src/backup.php:1763
3709
  msgid "Failed to open database file for reading:"
3710
  msgstr "فشل في فتح ملف قاعدة البيانات للقراءة:"
3711
 
3712
- #: src/backup.php:1574
3713
  msgid "No database tables found"
3714
  msgstr "لم نجد أي جداول لقاعدة البيانات"
3715
 
3716
- #: src/backup.php:1572
3717
  msgid "please wait for the rescheduled attempt"
3718
  msgstr "فضلا انتظر محاولة إعادة الجدولة"
3719
 
@@ -3721,7 +3749,7 @@ msgstr "فضلا انتظر محاولة إعادة الجدولة"
3721
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
3722
  msgstr "لاحظ أن رسائل التحذير استشارية - عملية النسخ الاحتياطي لا تتوقف بالنسبة لهم. بدلا من ذلك، ستوفر لك معلومات قد تجدها مفيدة، أو قد تشير إلى مصدر المشكلة إذا لم تنجح عملية النسخ الاحتياطي."
3723
 
3724
- #: src/addons/onedrive.php:94, src/methods/dropbox.php:199
3725
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
3726
  msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبقية، لكن الملف الذي نقوم برفعه حجمه %d بايت متبقية (الحجم الكلي: %d بايت)"
3727
 
@@ -3730,7 +3758,7 @@ msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبق
3730
  msgid "Errors occurred:"
3731
  msgstr "أخطاء حدثت:"
3732
 
3733
- #: src/admin.php:3909
3734
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3735
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
3736
 
@@ -3754,20 +3782,20 @@ msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %
3754
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3755
  msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
3756
 
3757
- #: src/admin.php:959, src/class-updraftplus.php:810
3758
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3759
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
3760
 
3761
- #: src/addons/migrator.php:267
3762
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3763
  msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
3764
 
3765
- #: src/addons/sftp.php:722, src/addons/sftp.php:725,
3766
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
3767
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3768
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
3769
 
3770
- #: src/addons/moredatabase.php:137, src/admin.php:1480
3771
  msgid "Messages:"
3772
  msgstr "رسائل:"
3773
 
@@ -3779,56 +3807,56 @@ msgstr "تم العثور على خط SQL أكبر من الحد الأقصى ل
3779
  msgid "The directory does not exist"
3780
  msgstr "المجلد غير متوفر"
3781
 
3782
- #: src/addons/cloudfiles-enhanced.php:277
3783
  msgid "New User's Email Address"
3784
  msgstr "عنوان بريد إلكتروني جديد للعضو"
3785
 
3786
- #: src/addons/cloudfiles-enhanced.php:274
3787
  msgid "New User's Username"
3788
  msgstr "اسم مستخدم جديد"
3789
 
3790
- #: src/addons/cloudfiles-enhanced.php:271
3791
  msgid "Admin API Key"
3792
  msgstr "مفتاح API الخاص بالمدير"
3793
 
3794
- #: src/addons/cloudfiles-enhanced.php:268
3795
  msgid "Admin Username"
3796
  msgstr "اسم المستخدم للمدير"
3797
 
3798
- #: src/addons/cloudfiles-enhanced.php:263
3799
  msgid "US or UK Rackspace Account"
3800
  msgstr "حساب الولايات المتحدة أو بريطانيا راك سبيس"
3801
 
3802
- #: src/addons/cloudfiles-enhanced.php:255
3803
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
3804
  msgstr "قم بإدخال أسم/مفتاح API الخاص بك لخدمة Rackspace (بحيث يمكن مصادقة Rackspace لإنشاء مستخدمين جدد)، وأدخل اسم كستخدم جديد (فريد) وعنوان بريد إلكتروني للمستخدم الجديد واسم الحاوية."
3805
 
3806
- #: src/addons/cloudfiles-enhanced.php:252
3807
  msgid "Create new API user and container"
3808
  msgstr "خلق مستخدم وحاوية جديدة لمفتاح API "
3809
 
3810
- #: src/addons/cloudfiles-enhanced.php:190
3811
  msgid "API Key: %s"
3812
  msgstr "مفتاح API: %s"
3813
 
3814
- #: src/addons/cloudfiles-enhanced.php:190
3815
  msgid "Password: %s"
3816
  msgstr "كلمة السر: %s"
3817
 
3818
- #: src/addons/cloudfiles-enhanced.php:190, src/addons/s3-enhanced.php:318
3819
  msgid "Username: %s"
3820
  msgstr "اسم المستخدم: %s"
3821
 
3822
- #: src/addons/cloudfiles-enhanced.php:149,
3823
- #: src/addons/cloudfiles-enhanced.php:152,
3824
- #: src/addons/cloudfiles-enhanced.php:156,
3825
- #: src/addons/cloudfiles-enhanced.php:168,
3826
- #: src/addons/cloudfiles-enhanced.php:175,
3827
- #: src/addons/cloudfiles-enhanced.php:179
3828
  msgid "Cloud Files operation failed (%s)"
3829
  msgstr "فشل عملية رفع الملفات للخدمة السحابية (%s)"
3830
 
3831
- #: src/addons/cloudfiles-enhanced.php:147
3832
  msgid "Conflict: that user or email address already exists"
3833
  msgstr "خطأ: اسم المستخدم أو البريد الإلكتروني مسجل مسبقا"
3834
 
@@ -3864,71 +3892,71 @@ msgstr "اضافة قدرات محسنة لخدمة Rackspace "
3864
  msgid "Rackspace Cloud Files, enhanced"
3865
  msgstr "تم تعزيز ملفات المستضافة بخدمة Rackspace "
3866
 
3867
- #: src/addons/cloudfiles-enhanced.php:284, src/methods/cloudfiles-new.php:139,
3868
- #: src/methods/cloudfiles.php:482
3869
  msgid "Cloud Files Container"
3870
  msgstr "حاوية الملفات السحابية"
3871
 
3872
- #: src/methods/cloudfiles-new.php:134, src/methods/cloudfiles.php:477
3873
  msgid "Cloud Files API Key"
3874
  msgstr "مفتاح API للملفات السحابية"
3875
 
3876
- #: src/methods/cloudfiles-new.php:129
3877
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3878
  msgstr "لإنشاء مستخدم فرعي ومفتاح API جديد لديه صلاحيات الوصول فقط إلى هذه الحاوية، قم بإستخدام هذه الإضافة."
3879
 
3880
- #: src/methods/cloudfiles-new.php:126
3881
  msgid "Cloud Files Username"
3882
  msgstr "اسم المستخدم للخدمة السحابية"
3883
 
3884
- #: src/addons/cloudfiles-enhanced.php:47, src/methods/cloudfiles-new.php:158
3885
  msgid "London (LON)"
3886
  msgstr "لندن (LON)"
3887
 
3888
- #: src/addons/cloudfiles-enhanced.php:46, src/methods/cloudfiles-new.php:157
3889
  msgid "Hong Kong (HKG)"
3890
  msgstr "هونغ كونغ (HKG)"
3891
 
3892
- #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:156
3893
  msgid "Northern Virginia (IAD)"
3894
  msgstr "ولاية فرجينيا الشمالية (IAD)"
3895
 
3896
- #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:155
3897
  msgid "Chicago (ORD)"
3898
  msgstr "شيكاغو (ORD)"
3899
 
3900
- #: src/addons/cloudfiles-enhanced.php:43, src/methods/cloudfiles-new.php:154
3901
  msgid "Sydney (SYD)"
3902
  msgstr "سيدني (SYD)"
3903
 
3904
- #: src/addons/cloudfiles-enhanced.php:42, src/methods/cloudfiles-new.php:153
3905
  msgid "Dallas (DFW) (default)"
3906
  msgstr "دالاس (DFW) (الافتراضي)"
3907
 
3908
- #: src/addons/cloudfiles-enhanced.php:280, src/methods/cloudfiles-new.php:116
3909
  msgid "Cloud Files Storage Region"
3910
  msgstr "منطقة الملفات السحابة"
3911
 
3912
- #: src/methods/cloudfiles-new.php:109
3913
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3914
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية"
3915
 
3916
- #: src/methods/cloudfiles-new.php:107
3917
  msgid "US or UK-based Rackspace Account"
3918
  msgstr "حساب Rackspace بالولايات المتحدة أو المملكة المتحدة"
3919
 
3920
- #: src/addons/cloudfiles-enhanced.php:264, src/methods/cloudfiles-new.php:107
3921
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3922
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية "
3923
 
3924
- #: src/addons/cloudfiles-enhanced.php:145, src/addons/s3-enhanced.php:221,
3925
  #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:484,
3926
  #: src/methods/openstack-base.php:486, src/methods/openstack-base.php:507,
3927
  #: src/methods/openstack2.php:33
3928
  msgid "Authorisation failed (check your credentials)"
3929
  msgstr "فشل التفويض (راجع معلوماتك)"
3930
 
3931
- #: src/methods/updraftvault.php:607, src/udaddons/options.php:270
3932
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3933
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
3934
 
@@ -3944,15 +3972,15 @@ msgstr "اعادة المحاولة..."
3944
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3945
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
3946
 
3947
- #: src/admin.php:673, src/admin.php:4188
3948
  msgid "Error data:"
3949
  msgstr "خطأ بالبيانات:"
3950
 
3951
- #: src/admin.php:3861
3952
  msgid "Backup does not exist in the backup history"
3953
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
3954
 
3955
- #: src/admin.php:2741
3956
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3957
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
3958
 
@@ -3992,11 +4020,11 @@ msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تق
3992
  msgid "Email reports"
3993
  msgstr "تقارير البريد الإلكتروني"
3994
 
3995
- #: src/class-updraftplus.php:1768, src/class-updraftplus.php:1773
3996
  msgid "%s checksum: %s"
3997
  msgstr "%s الاختباري:%s"
3998
 
3999
- #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1743
4000
  msgid "files: %s"
4001
  msgstr "ملفات:%s"
4002
 
@@ -4008,7 +4036,7 @@ msgstr "استخدام قسم \"التقارير\" لتكوين عناوين ا
4008
  msgid "Debugging information"
4009
  msgstr "معلومات التصحيح"
4010
 
4011
- #: src/addons/reporting.php:222, src/admin.php:3590
4012
  msgid "Uploaded to:"
4013
  msgstr "تحميلها على:"
4014
 
@@ -4049,22 +4077,22 @@ msgstr "%d ساعة،%d دقيقة، %d ثانية"
4049
  msgid "%d errors, %d warnings"
4050
  msgstr "%d الأخطاء، %d تحذيرات"
4051
 
4052
- #: src/addons/onedrive.php:751, src/methods/dropbox.php:648
4053
  msgid "%s authentication"
4054
  msgstr "%s مصادقة"
4055
 
4056
- #: src/addons/onedrive.php:751, src/class-updraftplus.php:492,
4057
- #: src/methods/dropbox.php:172, src/methods/dropbox.php:608,
4058
- #: src/methods/dropbox.php:648, src/methods/dropbox.php:661,
4059
- #: src/methods/dropbox.php:805
4060
  msgid "%s error: %s"
4061
  msgstr "%s خطأ: %s"
4062
 
4063
- #: src/addons/googlecloud.php:909, src/methods/dropbox.php:474
4064
  msgid "%s logo"
4065
  msgstr "%s الشعار"
4066
 
4067
- #: src/methods/dropbox.php:218
4068
  msgid "%s did not return the expected response - check your log file for more details"
4069
  msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
4070
 
@@ -4072,16 +4100,16 @@ msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من م
4072
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
4073
  msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
4074
 
4075
- #: src/methods/email.php:76
4076
  msgid "For more options, use the \"%s\" add-on."
4077
  msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\"."
4078
 
4079
- #: src/methods/email.php:75
4080
  msgid "Your site's admin email address (%s) will be used."
4081
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
4082
 
4083
- #: src/admin.php:710, src/methods/updraftvault.php:296,
4084
- #: src/methods/updraftvault.php:339, src/udaddons/options.php:249
4085
  msgid "Connect"
4086
  msgstr "الإتصال"
4087
 
@@ -4089,7 +4117,7 @@ msgstr "الإتصال"
4089
  msgid "For more reporting features, use the Reporting add-on."
4090
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
4091
 
4092
- #: src/class-updraftplus.php:4443
4093
  msgid "(version: %s)"
4094
  msgstr "(الإصدار: %s)"
4095
 
@@ -4102,63 +4130,63 @@ msgstr "تحقق من حجم الملفات المسموح به بخدمة ال
4102
  msgid "When the Email storage method is enabled, also send the entire backup"
4103
  msgstr "عندما يتم تمكين طريقة تخزين البريد الإلكتروني، قم أيضا بإرسال النسخ الاحتياطي كاملة"
4104
 
4105
- #: src/addons/reporting.php:181, src/backup.php:1061
4106
  msgid "Latest status:"
4107
  msgstr "آخر التحديثات:"
4108
 
4109
- #: src/backup.php:1060
4110
  msgid "Backup contains:"
4111
  msgstr "تحتوي النسخة الإحتياطية على:"
4112
 
4113
- #: src/backup.php:1017
4114
  msgid "Backed up: %s"
4115
  msgstr "نسخ احتياطي: %s"
4116
 
4117
- #: src/addons/reporting.php:264, src/backup.php:1011
4118
  msgid "The log file has been attached to this email."
4119
  msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
4120
 
4121
- #: src/backup.php:975
4122
  msgid "Unknown/unexpected error - please raise a support request"
4123
  msgstr "خطأ غير معروف / غير متوقع - يرجى رفع طلب دعم"
4124
 
4125
- #: src/backup.php:972
4126
  msgid "Database only (files were not part of this particular schedule)"
4127
  msgstr " قاعدة البيانات فقط (لن يتم خلق نسخ احتياطية للملفات)"
4128
 
4129
- #: src/backup.php:972
4130
  msgid "Database (files backup has not completed)"
4131
  msgstr "قاعدة بيانات (لم يتم إكمال نسخ الملفات احتياطيا)"
4132
 
4133
- #: src/backup.php:969
4134
  msgid "Files only (database was not part of this particular schedule)"
4135
  msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقاعدة البيانات)"
4136
 
4137
- #: src/backup.php:969
4138
  msgid "Files (database backup has not completed)"
4139
  msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
4140
 
4141
- #: src/admin.php:305, src/backup.php:967
4142
  msgid "Files and database"
4143
  msgstr "ملفات وقواعد البيانات"
4144
 
4145
- #: src/options.php:192
4146
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4147
  msgstr "(هذا ينطبق على جميع الإضافات للنسخ الاحتياطي لووردبريس ما لم تكن برمجة من أجل التوافق مع تعدد المواقع)."
4148
 
4149
- #: src/options.php:192
4150
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4151
  msgstr "عند عدم الترقية، سيقوم UpdraftPlus بالسماح <strong>لكل</strong> مدير بالمدونة بالتعديل على خيارات الإضافة للخسن الإحتياطي (وبالتالي الوصول للبيانات، بما في ذلك كلمات السر) وإستعادة (مع امكانية التعديل، مثال: كلمات السر) <strong>الشبكة بالكامل</strong>."
4152
 
4153
- #: src/options.php:192
4154
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4155
  msgstr "دعم مواقع ووردبريس متعددة، مع امتيازات اضافية، على حساب UpdraftPlus المميز، أو بإضافة المواقع المتعددة."
4156
 
4157
- #: src/options.php:192
4158
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4159
  msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (شبكة a.k.a.)."
4160
 
4161
- #: src/options.php:192
4162
  msgid "UpdraftPlus warning:"
4163
  msgstr "تحذير UpdraftPlus :"
4164
 
@@ -4202,16 +4230,16 @@ msgstr "اضافات UpdraftPlus"
4202
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4203
  msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
4204
 
4205
- #: src/methods/updraftvault.php:686, src/methods/updraftvault.php:701,
4206
  #: src/udaddons/updraftplus-addons.php:933
4207
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4208
  msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
4209
 
4210
- #: src/methods/updraftvault.php:698, src/udaddons/updraftplus-addons.php:929
4211
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4212
  msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
4213
 
4214
- #: src/methods/updraftvault.php:659, src/udaddons/updraftplus-addons.php:892
4215
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4216
  msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
4217
 
@@ -4223,14 +4251,14 @@ msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة"
4223
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4224
  msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
4225
 
4226
- #: src/methods/email.php:76,
4227
  #: src/templates/wp-admin/settings/form-contents.php:251,
4228
  #: src/templates/wp-admin/settings/tab-addons.php:203,
4229
  #: src/templates/wp-admin/settings/tab-addons.php:204
4230
  msgid "Reporting"
4231
  msgstr "التقارير"
4232
 
4233
- #: src/admin.php:4693
4234
  msgid "Options (raw)"
4235
  msgstr "خيارات (الخام)"
4236
 
@@ -4250,11 +4278,11 @@ msgstr ""
4250
  msgid "See also the \"More Files\" add-on from our shop."
4251
  msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
4252
 
4253
- #: src/backup.php:3319, src/class-updraftplus.php:823
4254
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4255
  msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
4256
 
4257
- #: src/class-updraftplus.php:807
4258
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4259
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
4260
 
@@ -4382,7 +4410,7 @@ msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
4382
  msgid "Your web-server does not have the %s module installed."
4383
  msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
4384
 
4385
- #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1169
4386
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4387
  msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
4388
 
@@ -4406,7 +4434,7 @@ msgstr "إذا قمت باستبعاد كل من قاعدة البيانات و
4406
  msgid "Site home:"
4407
  msgstr "الصفحة الرئيسية للموقع:"
4408
 
4409
- #: src/addons/morestorage.php:72
4410
  msgid "Remote Storage Options"
4411
  msgstr "خيارات التخزين البعيد"
4412
 
@@ -4418,7 +4446,7 @@ msgstr "(السجلات يمكن العثور عليها فى صفحة اعدا
4418
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4419
  msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
4420
 
4421
- #: src/addons/azure.php:371, src/methods/stream-base.php:141,
4422
  #: src/methods/stream-base.php:146
4423
  msgid "Upload failed"
4424
  msgstr "فشل التحميل"
@@ -4427,11 +4455,11 @@ msgstr "فشل التحميل"
4427
  msgid "You can send a backup to more than one destination with an add-on."
4428
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
4429
 
4430
- #: src/admin.php:2964
4431
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4432
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
4433
 
4434
- #: src/admin.php:2863
4435
  msgid "(%s%%, file %s of %s)"
4436
  msgstr "(%s%%, ملف %s من%s)"
4437
 
@@ -4440,15 +4468,15 @@ msgstr "(%s%%, ملف %s من%s)"
4440
  msgid "Read more about how this works..."
4441
  msgstr "قراءة المزيد عن كيفية عمل ذلك ..."
4442
 
4443
- #: src/addons/sftp.php:559
4444
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4445
  msgstr "فشل:تمكنا من تسجيل الدخول، لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
4446
 
4447
- #: src/addons/sftp.php:557
4448
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4449
  msgstr "فشل:لقد تمكنا من تسجيل الدخول والانتقال إلى الدليل المشار إليه،لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
4450
 
4451
- #: src/addons/sftp.php:459
4452
  msgid "Use SCP instead of SFTP"
4453
  msgstr "استخدام SCP بدلا من SFTP"
4454
 
@@ -4472,11 +4500,11 @@ msgstr "النسخ الأحتياطى من: %s"
4472
  msgid "%s settings test result:"
4473
  msgstr "اعدادات نتيجة اختبار %s"
4474
 
4475
- #: src/admin.php:3765, src/admin.php:3767
4476
  msgid "(Not finished)"
4477
  msgstr "(غير منتهي)"
4478
 
4479
- #: src/admin.php:3767
4480
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4481
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
4482
 
@@ -4488,77 +4516,77 @@ msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل ا
4488
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4489
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
4490
 
4491
- #: src/admin.php:2959
4492
  msgid "Job ID: %s"
4493
  msgstr "رقم الوظيفة: %s"
4494
 
4495
- #: src/admin.php:2944
4496
  msgid "last activity: %ss ago"
4497
  msgstr "آخر نشاط: منذ %ss"
4498
 
4499
- #: src/admin.php:2943
4500
  msgid "next resumption: %d (after %ss)"
4501
  msgstr "الاستئناف التالي: %d (بعد %ss)"
4502
 
4503
- #: src/admin.php:2926, src/central/bootstrap.php:428,
4504
- #: src/central/bootstrap.php:435, src/methods/updraftvault.php:387,
4505
- #: src/methods/updraftvault.php:421, src/methods/updraftvault.php:506
4506
  msgid "Unknown"
4507
  msgstr "غير معروف"
4508
 
4509
- #: src/admin.php:2877
4510
  msgid "Backup finished"
4511
  msgstr "الانتهاء من النسخ الاحتياطي"
4512
 
4513
- #: src/admin.php:2872
4514
  msgid "Waiting until scheduled time to retry because of errors"
4515
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
4516
 
4517
- #: src/admin.php:2868
4518
  msgid "Pruning old backup sets"
4519
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
4520
 
4521
- #: src/admin.php:2856
4522
  msgid "Uploading files to remote storage"
4523
  msgstr "تحميل الملفات للمخزن البعيد"
4524
 
4525
- #: src/admin.php:2924
4526
  msgid "Encrypted database"
4527
  msgstr "قاعدة بيانات مشفرة"
4528
 
4529
- #: src/admin.php:2916
4530
  msgid "Encrypting database"
4531
  msgstr "تشفير قاعدة البيانات"
4532
 
4533
- #: src/admin.php:2890
4534
  msgid "Created database backup"
4535
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
4536
 
4537
- #: src/admin.php:2903
4538
  msgid "table: %s"
4539
  msgstr "الجدول: %s"
4540
 
4541
- #: src/admin.php:2901
4542
  msgid "Creating database backup"
4543
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
4544
 
4545
- #: src/admin.php:2851
4546
  msgid "Created file backup zips"
4547
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
4548
 
4549
- #: src/admin.php:2838
4550
  msgid "Creating file backup zips"
4551
  msgstr "انشاء ملف النسخ الاحتياطى zips"
4552
 
4553
- #: src/admin.php:2833
4554
  msgid "Backup begun"
4555
  msgstr "بدأ النسخ الاحتياطى"
4556
 
4557
- #: src/admin.php:2666
4558
  msgid "Backups in progress:"
4559
  msgstr "تقدم النسخ الأحتياطى:"
4560
 
4561
- #: src/admin.php:963
4562
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
4563
  msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
4564
 
@@ -4574,20 +4602,20 @@ msgstr "مجلد"
4574
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4575
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
4576
 
4577
- #: src/class-updraftplus.php:2861
4578
  msgid "The backup has not finished; a resumption is scheduled"
4579
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
4580
 
4581
- #: src/class-updraftplus.php:2045
4582
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4583
  msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
4584
 
4585
- #: src/addons/onedrive.php:895,
4586
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4587
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4588
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
4589
 
4590
- #: src/admin.php:2467
4591
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4592
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
4593
 
@@ -4667,32 +4695,32 @@ msgstr "مزيد من الملحقات"
4667
  msgid "Support"
4668
  msgstr "الدعم"
4669
 
4670
- #: src/class-updraftplus.php:4743
4671
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4672
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
4673
 
4674
- #: src/class-updraftplus.php:4735
4675
  msgid "This database backup is missing core WordPress tables: %s"
4676
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
4677
 
4678
- #: src/class-updraftplus.php:4496
4679
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4680
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
4681
 
4682
- #: src/class-updraftplus.php:4495, src/class-updraftplus.php:4502
4683
  msgid "%s version: %s"
4684
  msgstr "%s النسخة: %s"
4685
 
4686
- #: src/class-updraftplus.php:4379
4687
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4688
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
4689
 
4690
- #: src/addons/autobackup.php:1053, src/admin.php:798,
4691
  #: src/includes/updraftplus-notices.php:171
4692
  msgid "Be safe with an automatic backup"
4693
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
4694
 
4695
- #: src/admin.php:2420
4696
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4697
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
4698
 
@@ -4740,11 +4768,11 @@ msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
4740
  msgid "Delete from your web server"
4741
  msgstr "حذف من خادم الويب الخاص بك"
4742
 
4743
- #: src/admin.php:3737
4744
  msgid "You appear to be missing one or more archives from this multi-archive set."
4745
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
4746
 
4747
- #: src/admin.php:3734
4748
  msgid "(%d archive(s) in set)."
4749
  msgstr "(%d الأرشيف(s) in set)."
4750
 
@@ -4764,7 +4792,7 @@ msgstr "تحذيرات:"
4764
  msgid "Error: the server sent an empty response."
4765
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
4766
 
4767
- #: src/admin.php:2155
4768
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4769
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
4770
 
@@ -4800,7 +4828,7 @@ msgstr "الملف غير موجود (تحتاج الى رفعة): %s"
4800
  msgid "No such backup set exists"
4801
  msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
4802
 
4803
- #: src/admin.php:1353
4804
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4805
  msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
4806
 
@@ -4808,7 +4836,7 @@ msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى
4808
  msgid "Moving unpacked backup into place..."
4809
  msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
4810
 
4811
- #: src/backup.php:3020, src/backup.php:3275
4812
  msgid "Failed to open the zip file (%s) - %s"
4813
  msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4814
 
@@ -4816,27 +4844,28 @@ msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4816
  msgid "WordPress root directory server path: %s"
4817
  msgstr "مسار جذر الوردبريس فى الخادم: %s"
4818
 
4819
- #: src/methods/dreamobjects.php:77, src/methods/s3generic.php:93
4820
  msgid "%s end-point"
4821
  msgstr "نقطة النهاية %s "
4822
 
4823
- #: src/methods/s3.php:835
4824
  msgid "... and many more!"
4825
  msgstr "... وغيرها الكثير!"
4826
 
4827
- #: src/methods/s3generic.php:59, src/methods/s3generic.php:72
 
4828
  msgid "S3 (Compatible)"
4829
  msgstr "S3 (متوافق)"
4830
 
4831
- #: src/admin.php:1263
4832
  msgid "File is not locally present - needs retrieving from remote storage"
4833
  msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
4834
 
4835
- #: src/admin.php:4040
4836
  msgid "Looking for %s archive: file name: %s"
4837
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
4838
 
4839
- #: src/admin.php:4001
4840
  msgid "Final checks"
4841
  msgstr "الفحوصات النهائية"
4842
 
@@ -4848,7 +4877,7 @@ msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأح
4848
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4849
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
4850
 
4851
- #: src/admin.php:3371
4852
  msgid "Your wp-content directory server path: %s"
4853
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
4854
 
@@ -4864,7 +4893,7 @@ msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة ال
4864
  msgid "Processing files - please wait..."
4865
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
4866
 
4867
- #: src/admin.php:4190,
4868
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4869
  msgid "Please consult this FAQ for help on what to do about it."
4870
  msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
@@ -4873,11 +4902,11 @@ msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول
4873
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4874
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
4875
 
4876
- #: src/class-updraftplus.php:4387
4877
  msgid "Failed to open database file."
4878
  msgstr "فشل فى فتح ملف قاعدة البيانات."
4879
 
4880
- #: src/admin.php:4658
4881
  msgid "Known backups (raw)"
4882
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
4883
 
@@ -4889,14 +4918,14 @@ msgstr "العثور على ملفات:"
4889
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4890
  msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
4891
 
4892
- #: src/admin.php:4060
4893
  msgid "file is size:"
4894
  msgstr "حجم الملف:"
4895
 
4896
- #: src/addons/googlecloud.php:946, src/addons/migrator.php:421,
4897
- #: src/addons/migrator.php:424, src/addons/migrator.php:427, src/admin.php:963,
4898
- #: src/admin.php:2425, src/backup.php:3326, src/class-updraftplus.php:4616,
4899
- #: src/class-updraftplus.php:4616, src/updraftplus.php:156
4900
  msgid "Go here for more information."
4901
  msgstr "اذهب هنا لمزيد من المعلومات."
4902
 
@@ -4904,7 +4933,7 @@ msgstr "اذهب هنا لمزيد من المعلومات."
4904
  msgid "Some files are still downloading or being processed - please wait."
4905
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
4906
 
4907
- #: src/class-updraftplus.php:4465, src/class-updraftplus.php:4486
4908
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4909
  msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
4910
 
@@ -4916,27 +4945,27 @@ msgstr "المنطقة الزمنية المستخدمة هى من اعدادا
4916
  msgid "Enter in format HH:MM (e.g. 14:22)."
4917
  msgstr "ادخل فى صيغة HH:MM (مثل 14:22)."
4918
 
4919
- #: src/methods/ftp.php:127
4920
  msgid "%s upload failed"
4921
  msgstr "فشل ارسال الملف %s"
4922
 
4923
- #: src/methods/ftp.php:100, src/methods/ftp.php:151, src/methods/ftp.php:255
4924
  msgid "%s login failure"
4925
  msgstr "فشل تسجيل الدخول %s"
4926
 
4927
- #: src/methods/dropbox.php:413
4928
  msgid "You do not appear to be authenticated with %s"
4929
  msgstr "لا يبدو انة تمت المصادقة مع: %s"
4930
 
4931
- #: src/methods/dropbox.php:380
4932
  msgid "Failed to access %s when deleting (see log file for more)"
4933
  msgstr "فشل الوصول الى %s عند الحذف (تحقق من ملف السجل لمزيد من المعلومات)"
4934
 
4935
- #: src/methods/dropbox.php:372
4936
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4937
  msgstr "لا يبدو انة لديك التصريح ل %s (لحين الحذف)"
4938
 
4939
- #: src/methods/dropbox.php:127
4940
  msgid "Dropbox error: %s (see log file for more)"
4941
  msgstr "خطأ فى الأسقاط: %s (تحقق من السجل لمزيد من المعلومات)"
4942
 
@@ -4948,11 +4977,11 @@ msgstr "خطأ - فشل فى تحميل الملف من %s"
4948
  msgid "Error - no such file exists at %s"
4949
  msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
4950
 
4951
- #: src/addons/azure.php:219, src/methods/addon-base-v2.php:219,
4952
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
4953
- #: src/methods/googledrive.php:1023, src/methods/openstack-base.php:455,
4954
- #: src/methods/stream-base.php:278, src/methods/stream-base.php:285,
4955
- #: src/methods/stream-base.php:317
4956
  msgid "%s Error"
4957
  msgstr "خطأ %s"
4958
 
@@ -4960,7 +4989,7 @@ msgstr "خطأ %s"
4960
  msgid "%s error - failed to upload file"
4961
  msgstr "خطأ %s - فشل فى ارسال الملف"
4962
 
4963
- #: src/class-updraftplus.php:1184, src/methods/cloudfiles.php:211
4964
  msgid "%s error - failed to re-assemble chunks"
4965
  msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
4966
 
@@ -4974,25 +5003,25 @@ msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
4974
  msgid "%s authentication failed"
4975
  msgstr "المصادقة فشلت %s"
4976
 
4977
- #: src/addons/googlecloud.php:436, src/addons/migrator.php:519,
4978
- #: src/admin.php:2126, src/admin.php:2147, src/admin.php:2155,
4979
- #: src/class-updraftplus.php:952, src/class-updraftplus.php:958,
4980
- #: src/class-updraftplus.php:4360, src/class-updraftplus.php:4362,
4981
- #: src/class-updraftplus.php:4519, src/class-updraftplus.php:4526,
4982
- #: src/class-updraftplus.php:4595, src/methods/googledrive.php:381,
4983
  #: src/methods/s3.php:320
4984
  msgid "Error: %s"
4985
  msgstr "خطأ: %s"
4986
 
4987
- #: src/admin.php:3296
4988
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4989
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
4990
 
4991
- #: src/admin.php:3294
4992
  msgid "Backup directory specified does <b>not</b> exist."
4993
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
4994
 
4995
- #: src/admin.php:2971, src/admin.php:3245
4996
  msgid "Warning: %s"
4997
  msgstr "تحذير: %s"
4998
 
@@ -5000,55 +5029,55 @@ msgstr "تحذير: %s"
5000
  msgid "Last backup job run:"
5001
  msgstr "اخر تشغيل لوظيفة النسخ الأحتياطى:"
5002
 
5003
- #: src/backup.php:3046
5004
  msgid "A very large file was encountered: %s (size: %s Mb)"
5005
  msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
5006
 
5007
- #: src/backup.php:2346
5008
  msgid "%s: unreadable file - could not be backed up"
5009
  msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
5010
 
5011
- #: src/backup.php:1663
5012
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
5013
  msgstr "الجدول %s بة عدد كبير من الصفوف (%s) - نأمل ان شركة الأستضافة الخاصة بك تعطيك ما يكفى من الموارد لتفريغ هذا الجدول من النسخة الأحتياطة."
5014
 
5015
- #: src/backup.php:1784
5016
  msgid "An error occurred whilst closing the final database file"
5017
  msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
5018
 
5019
- #: src/backup.php:1002
5020
  msgid "Warnings encountered:"
5021
  msgstr "مصادفة تحذيرات:"
5022
 
5023
- #: src/class-updraftplus.php:2849
5024
  msgid "The backup apparently succeeded (with warnings) and is now complete"
5025
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
5026
 
5027
- #: src/class-updraftplus.php:836
5028
  msgid "Your free disk space is very low - only %s Mb remain"
5029
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
5030
 
5031
- #: src/addons/migrator.php:527
5032
  msgid "New site:"
5033
  msgstr "الموقع الجديد:"
5034
 
5035
- #: src/addons/migrator.php:502
5036
  msgid "Migrated site (from UpdraftPlus)"
5037
  msgstr "المواقع المدمجة (من UpdraftPlus)"
5038
 
5039
- #: src/addons/migrator.php:442
5040
  msgid "Enter details for where this new site is to live within your multisite install:"
5041
  msgstr "ادخل تفاصيل عن مكان هذا الموقع الجديد ضمن المواقع المتعددة الخاصة بك:"
5042
 
5043
- #: src/addons/migrator.php:441
5044
  msgid "Information needed to continue:"
5045
  msgstr "المعلومات اللازمة للأستمرار:"
5046
 
5047
- #: src/addons/migrator.php:385
5048
  msgid "Network activating theme:"
5049
  msgstr "تفعيل ثيم الشبكة:"
5050
 
5051
- #: src/addons/migrator.php:375
5052
  msgid "Processed plugin:"
5053
  msgstr "المكون الأضافى:"
5054
 
@@ -5060,15 +5089,15 @@ msgstr "تحقق من اذونات الملفات الخاصة بك: تعذر ا
5060
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
5061
  msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
5062
 
5063
- #: src/methods/s3.php:849
5064
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5065
  msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
5066
 
5067
- #: src/methods/s3.php:1096
5068
  msgid "Please check your access credentials."
5069
  msgstr "يرجى التحقق من وصول بيانات الأعتماد."
5070
 
5071
- #: src/addons/s3-enhanced.php:196, src/methods/s3.php:1074
5072
  msgid "The error reported by %s was:"
5073
  msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
5074
 
@@ -5076,7 +5105,7 @@ msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
5076
  msgid "Please supply the requested information, and then continue."
5077
  msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
5078
 
5079
- #: src/class-updraftplus.php:4537, src/restorer.php:1746
5080
  msgid "Site information:"
5081
  msgstr "معلومات عن الموقع:"
5082
 
@@ -5084,20 +5113,20 @@ msgstr "معلومات عن الموقع:"
5084
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
5085
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
5086
 
5087
- #: src/admin.php:2420, src/class-updraftplus.php:4530, src/restorer.php:2117
5088
  msgid "Warning:"
5089
  msgstr "تحذير:"
5090
 
5091
- #: src/class-updraftplus.php:4519, src/class-updraftplus.php:4522,
5092
  #: src/restorer.php:184
5093
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5094
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
5095
 
5096
- #: src/admin.php:4028
5097
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
5098
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
5099
 
5100
- #: src/admin.php:3443, src/methods/updraftvault.php:283
5101
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5102
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
5103
 
@@ -5136,7 +5165,7 @@ msgstr "احصل عليه من هنا."
5136
  msgid "Do you want to migrate or clone/duplicate a site?"
5137
  msgstr "هل تريد ترحيل او استنساخ / تكرار الموقع؟"
5138
 
5139
- #: src/addons/migrator.php:177
5140
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
5141
  msgstr "<a href=\"%s\"> اقرأ هذة المقالة لمعرفة كيف يتم ذلك خطوة بخطوة.</a>"
5142
 
@@ -5152,7 +5181,7 @@ msgstr "جارى الحذف...يرجى اتاحة الوقت لأكمال الأ
5152
  msgid "Also delete from remote storage"
5153
  msgstr "حذف ايضاً من التخزين البعيد"
5154
 
5155
- #: src/admin.php:2693
5156
  msgid "Latest UpdraftPlus.com news:"
5157
  msgstr "اخر اخبار UpdraftPlus.com:"
5158
 
@@ -5169,7 +5198,7 @@ msgstr "مميز"
5169
  msgid "News"
5170
  msgstr "اخبار"
5171
 
5172
- #: src/admin.php:1532, src/includes/class-wpadmin-commands.php:472
5173
  msgid "Backup set not found"
5174
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
5175
 
@@ -5199,15 +5228,15 @@ msgstr "اختبار اعدادات %s ..."
5199
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5200
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
5201
 
5202
- #: src/admin.php:979
5203
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
5204
  msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
5205
 
5206
- #: src/admin.php:979
5207
  msgid "Notice"
5208
  msgstr "لاحظ"
5209
 
5210
- #: src/backup.php:984
5211
  msgid "Errors encountered:"
5212
  msgstr "مصادفة اخطاء:"
5213
 
@@ -5223,85 +5252,85 @@ msgstr "بدأ البحث عن هذا الكيان"
5223
  msgid "Store at"
5224
  msgstr "المتجر فى"
5225
 
5226
- #: src/addons/migrator.php:1487
5227
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5228
  msgstr "\"%s\" لا يوجد لدية مفتاح اساسى, تحتاج الى تغيرها يدويا فى الصف %s."
5229
 
5230
- #: src/addons/migrator.php:1361
5231
  msgid "rows: %d"
5232
  msgstr "الصفوف: %d"
5233
 
5234
- #: src/addons/migrator.php:1235
5235
  msgid "Time taken (seconds):"
5236
  msgstr "الوقت المستغرق (ثانية):"
5237
 
5238
- #: src/addons/migrator.php:1234, src/admin.php:671
5239
  msgid "Errors:"
5240
  msgstr "الأخطاء:"
5241
 
5242
- #: src/addons/migrator.php:1233
5243
  msgid "SQL update commands run:"
5244
  msgstr "تشغيل اوامر تحديث SQL:"
5245
 
5246
- #: src/addons/migrator.php:1232
5247
  msgid "Changes made:"
5248
  msgstr "التغييرات التي تم إجراؤها:"
5249
 
5250
- #: src/addons/migrator.php:1231
5251
  msgid "Rows examined:"
5252
  msgstr "فحص الصفوف:"
5253
 
5254
- #: src/addons/migrator.php:1230
5255
  msgid "Tables examined:"
5256
  msgstr "فحص الجداول:"
5257
 
5258
- #: src/addons/migrator.php:1119
5259
  msgid "Could not get list of tables"
5260
  msgstr "لا يمكن الحصول على قائمة الجداول"
5261
 
5262
- #: src/addons/migrator.php:1064
5263
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5264
  msgstr "تحذير: رابط موقع قواعد البيانات (%s) يختلف عن ما كنا نتوقعة (%s)"
5265
 
5266
- #: src/addons/migrator.php:1053
5267
  msgid "Nothing to do: the site URL is already: %s"
5268
  msgstr "لا شئ لعملة: رابط الموقع بالفعل: %s"
5269
 
5270
- #: src/addons/migrator.php:1017, src/addons/migrator.php:1021,
5271
- #: src/addons/migrator.php:1025, src/addons/migrator.php:1030,
5272
- #: src/addons/migrator.php:1034, src/addons/migrator.php:1039
5273
  msgid "Error: unexpected empty parameter (%s, %s)"
5274
  msgstr "خطأ: معلمة فارغة غير متوقعة (%s, %s)"
5275
 
5276
- #: src/addons/migrator.php:977
5277
  msgid "Database: search and replace site URL"
5278
  msgstr "قاعدة البيانات: بحث واستبدال عنوان الموقع"
5279
 
5280
- #: src/addons/migrator.php:837, src/addons/migrator.php:1216
5281
  msgid "Failed: we did not understand the result returned by the %s operation."
5282
  msgstr "فشل: لم نستطع فهم نتيجة العملية بواسطة %s ."
5283
 
5284
- #: src/addons/migrator.php:835, src/addons/migrator.php:1214
5285
  msgid "Failed: the %s operation was not able to start."
5286
  msgstr "فشل: العملية %s لم تكن قادرة على البدأ."
5287
 
5288
- #: src/addons/migrator.php:494
5289
  msgid "Search and replace site location in the database (migrate)"
5290
  msgstr "بحث واستبدال قاعدة البيانات فى الموقع (ترحيل)"
5291
 
5292
- #: src/addons/migrator.php:494
5293
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5294
  msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
5295
 
5296
- #: src/addons/multisite.php:659
5297
  msgid "Blog uploads"
5298
  msgstr "مدونة الملفات المرفوعة"
5299
 
5300
- #: src/addons/migrator.php:427, src/addons/multisite.php:652
5301
  msgid "Must-use plugins"
5302
  msgstr "لابد من استخدام الأضافات"
5303
 
5304
- #: src/addons/multisite.php:174
5305
  msgid "Multisite Install"
5306
  msgstr "تثبيت الموقع المتعدد"
5307
 
@@ -5309,43 +5338,43 @@ msgstr "تثبيت الموقع المتعدد"
5309
  msgid "starting from next time it is"
5310
  msgstr "ابتداء من المرة القادمة انها"
5311
 
5312
- #: src/addons/sftp.php:502
5313
  msgid "Failure: Port must be an integer."
5314
  msgstr "فشل: المنفذ يجب ان يكون عدد صحيح."
5315
 
5316
- #: src/methods/ftp.php:384, src/methods/openstack2.php:178
5317
  msgid "password"
5318
  msgstr "كلمة السر"
5319
 
5320
- #: src/addons/sftp.php:493, src/methods/openstack2.php:173
5321
  msgid "username"
5322
  msgstr "اسم المستخدم"
5323
 
5324
- #: src/addons/sftp.php:489
5325
  msgid "host name"
5326
  msgstr "اسم المضيف"
5327
 
5328
- #: src/addons/sftp.php:452
5329
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5330
  msgstr "حيث لتغير الدليل الى بعد تسجيل الدخول - غالبا ما يكون هذا هو نسبة الى الدليل الرئيسى الخاص بك."
5331
 
5332
- #: src/addons/sftp.php:450
5333
  msgid "Directory path"
5334
  msgstr "مسار الدليل"
5335
 
5336
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5337
- #: src/addons/sftp.php:425, src/addons/webdav.php:102,
5338
- #: src/methods/openstack2.php:157, src/methods/updraftvault.php:338,
5339
  #: src/udaddons/options.php:135
5340
  msgid "Password"
5341
  msgstr "كلمة السر"
5342
 
5343
- #: src/addons/sftp.php:411, src/addons/webdav.php:116
5344
  msgid "Port"
5345
  msgstr "المنفذ"
5346
 
5347
- #: src/addons/moredatabase.php:244, src/addons/sftp.php:404,
5348
- #: src/addons/webdav.php:108
5349
  msgid "Host"
5350
  msgstr "الاستضافة"
5351
 
@@ -5353,7 +5382,7 @@ msgstr "الاستضافة"
5353
  msgid "%s Error: Failed to download"
5354
  msgstr "خطأ %s: فشل التحميل"
5355
 
5356
- #: src/addons/sftp.php:534
5357
  msgid "Check your file permissions: Could not successfully create and enter:"
5358
  msgstr "تحقق من أذونات الملف الخاص بك: تعذر الإنشاء والدخول بنجاح :"
5359
 
@@ -5397,26 +5426,26 @@ msgstr "إعادة كتابة wp-config.php"
5397
  msgid "WordPress Core"
5398
  msgstr "لب الووردبريس"
5399
 
5400
- #: src/methods/addon-base-v2.php:316, src/methods/stream-base.php:347
5401
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5402
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
5403
 
5404
- #: src/addons/googlecloud.php:709, src/addons/googlecloud.php:743,
5405
- #: src/addons/googlecloud.php:749, src/addons/sftp.php:520, src/admin.php:3027,
5406
- #: src/admin.php:3062, src/admin.php:3071, src/methods/addon-base-v2.php:304,
5407
- #: src/methods/stream-base.php:333
5408
  msgid "Failed"
5409
  msgstr "فشل"
5410
 
5411
- #: src/addons/webdav.php:78
5412
  msgid "WebDAV URL"
5413
  msgstr "رابط WEBDAV"
5414
 
5415
- #: src/methods/stream-base.php:317
5416
  msgid "Local write failed: Failed to download"
5417
  msgstr "فشلت الكتابة المحلية: فشل تحميل"
5418
 
5419
- #: src/methods/stream-base.php:285
5420
  msgid "Error opening remote file: Failed to download"
5421
  msgstr "خطأ في فتح الملف : فشل في التحميل"
5422
 
@@ -5427,136 +5456,136 @@ msgstr "قطعة %s: حدث خطأ %s"
5427
  #: src/addons/googlecloud.php:322, src/addons/sftp.php:45,
5428
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
5429
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5430
- #: src/methods/addon-base-v2.php:283, src/methods/ftp.php:42,
5431
  #: src/methods/googledrive.php:182, src/methods/googledrive.php:184,
5432
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:161,
5433
  #: src/methods/stream-base.php:167, src/methods/stream-base.php:201,
5434
- #: src/methods/stream-base.php:259
5435
  msgid "No %s settings were found"
5436
  msgstr "تم العثور على أية إعدادات %s"
5437
 
5438
- #: src/methods/ftp.php:406
5439
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5440
  msgstr "فشل: نجحنا في تسجيل الدخول، لكن لا يمكننا إنشاء ملف في الدليل المعطى."
5441
 
5442
- #: src/methods/ftp.php:403
5443
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5444
  msgstr "نجاح: نجحنا في تسجيل الدخول، وتأكيد قدرتنا على إنشاء ملف في الدليل المعطى (نوع تسجيل الدخول:"
5445
 
5446
- #: src/methods/ftp.php:394
5447
  msgid "Failure: we did not successfully log in with those credentials."
5448
  msgstr "خطأ: لم نتمكن من تسجيل الدخول بنجاح."
5449
 
5450
- #: src/methods/ftp.php:376
5451
  msgid "Failure: No server details were given."
5452
  msgstr "خطأ: ولم تعط أية تفاصيل خادم."
5453
 
5454
- #: src/methods/ftp.php:346
5455
  msgid "Needs to already exist"
5456
  msgstr "يحتاج إلى وجود بالفعل"
5457
 
5458
- #: src/methods/ftp.php:326
5459
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5460
  msgstr "إذا كنت تريد تشفير (على سبيل المثال كنت تخزن بيانات الأعمال الحساسة)، فهناك اضافة متاحة لهذا الغرض."
5461
 
5462
- #: src/addons/onedrive.php:789, src/methods/dropbox.php:679
5463
  msgid "Your %s account name: %s"
5464
  msgstr "اسم الحساب %s الخاص بك: %s"
5465
 
5466
- #: src/methods/dropbox.php:669, src/methods/dropbox.php:691
5467
  msgid "though part of the returned information was not as expected - your mileage may vary"
5468
  msgstr "على الرغم من أن جزء من المعلومات الذي عاد لم يكن كما هو متوقع - الأميال الخاص بك قد تختلف"
5469
 
5470
- #: src/methods/dropbox.php:664, src/methods/dropbox.php:666
5471
  msgid "you have authenticated your %s account"
5472
  msgstr "تم المصادقة على %s حسابك"
5473
 
5474
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5475
  msgid "there's an add-on for that."
5476
  msgstr "هناك اضافة لذلك."
5477
 
5478
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5479
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5480
  msgstr "اذا كنت تستخدم النسخ الأحتياطى لعدة مواقع فى نفس الدروب بوكس وتريد ان تقوم بتنظيمها مع المجلدات الفرعية, اذا"
5481
 
5482
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5483
  msgid "Backups are saved in"
5484
  msgstr "يتم حفظ النسخ الأحتياطية فى"
5485
 
5486
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5487
  msgid "Need to use sub-folders?"
5488
  msgstr "هل تحتاج الى استخدام المجلدات الفرعية؟"
5489
 
5490
- #: src/methods/dropbox.php:216, src/methods/dropbox.php:237,
5491
- #: src/methods/dropbox.php:253
5492
  msgid "error: failed to upload file to %s (see log file for more)"
5493
  msgstr "خطأ: فشل فى رفع الملف الى %s (انظر السجل لمزيد من التفاصيل)"
5494
 
5495
- #: src/methods/dropbox.php:105, src/methods/dropbox.php:122
5496
  msgid "You do not appear to be authenticated with Dropbox"
5497
  msgstr "لا يبدو ان المصادقة مع Dropbox"
5498
 
5499
- #: src/methods/s3.php:1091
5500
  msgid "The communication with %s was not encrypted."
5501
  msgstr "التواصل مع %s كان غير مشفر."
5502
 
5503
- #: src/methods/s3.php:1089
5504
  msgid "The communication with %s was encrypted."
5505
  msgstr "التواصل مع %s كان مشفر."
5506
 
5507
- #: src/addons/googlecloud.php:772, src/methods/s3.php:1086
5508
  msgid "We accessed the bucket, and were able to create files within it."
5509
  msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
5510
 
5511
- #: src/addons/googlecloud.php:766, src/addons/googlecloud.php:780,
5512
- #: src/methods/s3.php:1084, src/methods/s3.php:1096
5513
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5514
  msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
5515
 
5516
- #: src/addons/googlecloud.php:766, src/addons/googlecloud.php:780,
5517
- #: src/methods/s3.php:1084, src/methods/s3.php:1096
5518
  msgid "Failure"
5519
  msgstr "فشل"
5520
 
5521
- #: src/methods/s3.php:1072
5522
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5523
  msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
5524
 
5525
- #: src/addons/s3-enhanced.php:169, src/methods/openstack2.php:143,
5526
- #: src/methods/s3.php:1066
5527
  msgid "Region"
5528
  msgstr "المنطقة"
5529
 
5530
- #: src/addons/googlecloud.php:118, src/addons/googlecloud.php:726,
5531
- #: src/methods/s3.php:1048
5532
  msgid "Failure: No bucket details were given."
5533
  msgstr "فشل: لم ترد تفاصيل الباكت."
5534
 
5535
- #: src/methods/s3.php:1026
5536
  msgid "API secret"
5537
  msgstr "API السرية"
5538
 
5539
- #: src/methods/s3.php:893
5540
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5541
  msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
5542
 
5543
- #: src/methods/s3.php:892
5544
  msgid "%s location"
5545
  msgstr "المكان %s"
5546
 
5547
- #: src/methods/s3.php:888
5548
  msgid "%s secret key"
5549
  msgstr "المفتاح السرى %s"
5550
 
5551
- #: src/methods/s3.php:884
5552
  msgid "%s access key"
5553
  msgstr "مفتاح الوصول %s"
5554
 
5555
- #: src/methods/s3.php:865
5556
  msgid "If you see errors about SSL certificates, then please go here for help."
5557
  msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
5558
 
5559
- #: src/methods/s3.php:863
5560
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5561
  msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
5562
 
@@ -5589,7 +5618,7 @@ msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
5589
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5590
  msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
5591
 
5592
- #: src/methods/email.php:71
5593
  msgid "Note:"
5594
  msgstr "ملاحظة:"
5595
 
@@ -5597,81 +5626,81 @@ msgstr "ملاحظة:"
5597
  msgid "WordPress Backup"
5598
  msgstr "نسخ ووردريس احتياطيا"
5599
 
5600
- #: src/methods/cloudfiles.php:560, src/methods/openstack-base.php:530
5601
  msgid "We accessed the container, and were able to create files within it."
5602
  msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء ملف داخلها "
5603
 
5604
- #: src/methods/cloudfiles.php:556
5605
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5606
  msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاوية، لكننا فشلنا في إنشاء ملف داخلها"
5607
 
5608
- #: src/methods/cloudfiles.php:529, src/methods/openstack-base.php:472
5609
  msgid "Failure: No container details were given."
5610
  msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
5611
 
5612
- #: src/addons/moredatabase.php:245, src/addons/sftp.php:418,
5613
- #: src/addons/webdav.php:96, src/methods/cloudfiles-new.php:176,
5614
- #: src/methods/cloudfiles.php:509, src/methods/openstack2.php:151
5615
  msgid "Username"
5616
  msgstr "اسم المستخدم"
5617
 
5618
- #: src/methods/cloudfiles-new.php:171, src/methods/cloudfiles.php:504,
5619
- #: src/methods/s3.php:1022
5620
  msgid "API key"
5621
  msgstr "مفتاح API"
5622
 
5623
- #: src/addons/migrator.php:300, src/addons/migrator.php:2004,
5624
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5625
- #: src/addons/moredatabase.php:86, src/addons/sftp.php:489,
5626
- #: src/addons/sftp.php:493, src/addons/sftp.php:497, src/addons/webdav.php:162,
5627
- #: src/admin.php:724, src/methods/addon-base-v2.php:296,
5628
- #: src/methods/cloudfiles-new.php:171, src/methods/cloudfiles-new.php:176,
5629
- #: src/methods/cloudfiles.php:504, src/methods/cloudfiles.php:509,
5630
- #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5631
- #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5632
- #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5633
- #: src/methods/s3.php:1022, src/methods/s3.php:1026
5634
  msgid "Failure: No %s was given."
5635
  msgstr "فضل: لم تعطى أية %s."
5636
 
5637
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
5638
- #: src/methods/openstack-base.php:573, src/methods/s3.php:853
5639
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5640
  msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
5641
 
5642
- #: src/methods/cloudfiles.php:473
5643
  msgid "Cloud Files username"
5644
  msgstr "سحابة ملفات المستخدم"
5645
 
5646
- #: src/addons/cloudfiles-enhanced.php:38, src/methods/cloudfiles-new.php:111,
5647
- #: src/methods/cloudfiles.php:456
5648
  msgid "UK"
5649
  msgstr "المملكة المتحدة"
5650
 
5651
- #: src/addons/cloudfiles-enhanced.php:37, src/methods/cloudfiles-new.php:110,
5652
- #: src/methods/cloudfiles.php:455
5653
  msgid "US (default)"
5654
  msgstr "الولايات المتحدة (افتراضى)"
5655
 
5656
- #: src/methods/cloudfiles.php:452
5657
  msgid "US or UK Cloud"
5658
  msgstr "سحابة الولايات المتحدة او المملكة المتحدة"
5659
 
5660
- #: src/methods/cloudfiles-new.php:103, src/methods/cloudfiles.php:448,
5661
- #: src/methods/openstack2.php:124
5662
  msgid "Also, you should read this important FAQ."
5663
  msgstr "أيضا، يجب عليك قراءة هذا التعليمات الهامة."
5664
 
5665
- #: src/methods/cloudfiles-new.php:103, src/methods/cloudfiles.php:448
5666
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5667
  msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\">من خدمة Rackspace Cloud </a> (يمكن قراءة التعليمات <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">هنا</a>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
5668
 
5669
- #: src/admin.php:747, src/methods/backup-module.php:285
5670
  msgid "Test %s Settings"
5671
  msgstr "اختبار %s الإعدادات"
5672
 
5673
- #: src/class-updraftplus.php:1224, src/class-updraftplus.php:1268,
5674
- #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:278
5675
  msgid "Error opening local file: Failed to download"
5676
  msgstr "خطأ في فتح ملف محلي: فشل التحميل"
5677
 
@@ -5687,8 +5716,8 @@ msgid "%s Error: Failed to upload"
5687
  msgstr "%s خطأ: فشل في تحميل"
5688
 
5689
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
5690
- #: src/class-updraftplus.php:1082, src/methods/cloudfiles.php:130,
5691
- #: src/methods/googledrive.php:941, src/methods/googledrive.php:946
5692
  msgid "%s Error: Failed to open local file"
5693
  msgstr "%s خطأ: فشل في فتح ملف محلي"
5694
 
@@ -5697,56 +5726,49 @@ msgstr "%s خطأ: فشل في فتح ملف محلي"
5697
  msgid "Cloud Files error - failed to create and access the container"
5698
  msgstr "خطأ ملفات السحابة - فشل في إنشاء والوصول إلى الحاوية"
5699
 
5700
- #: src/addons/cloudfiles-enhanced.php:105,
5701
- #: src/addons/cloudfiles-enhanced.php:118,
5702
- #: src/addons/cloudfiles-enhanced.php:122, src/methods/cloudfiles.php:539,
5703
- #: src/methods/cloudfiles.php:542, src/methods/cloudfiles.php:545
5704
  msgid "Cloud Files authentication failed"
5705
  msgstr "فشل المصادقة بملفات سحابة"
5706
 
5707
- #: src/addons/googlecloud.php:992, src/methods/googledrive.php:1186
5708
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5709
  msgstr "<strong>بعد</strong> حفظ خياراتك (بالضغط على زر 'حفظ التغيرات' أدناه)، قم بالرجوع مرة أخرى هنا وقم بزيارة الرابط لإكمال عملية المصادقة مه جوجل."
5710
 
5711
- #: src/methods/googledrive.php:1164
5712
  msgid "Authenticate with Google"
5713
  msgstr "المصادقة مع جوجل"
5714
 
5715
- #: src/addons/googlecloud.php:939, src/addons/onedrive.php:1017,
5716
- #: src/methods/googledrive.php:1128
5717
  msgid "Client Secret"
5718
  msgstr "سر العميل"
5719
 
5720
- #: src/addons/googlecloud.php:934, src/methods/googledrive.php:1125
5721
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5722
  msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
5723
 
5724
- #: src/addons/googlecloud.php:931, src/addons/onedrive.php:1013,
5725
- #: src/methods/googledrive.php:1124
5726
  msgid "Client ID"
5727
  msgstr "معرف العميل"
5728
 
5729
- #: src/addons/googlecloud.php:922, src/methods/googledrive.php:1114
5730
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5731
  msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
5732
 
5733
- #: src/addons/googlecloud.php:922, src/methods/googledrive.php:1114
5734
  msgid "Select 'Web Application' as the application type."
5735
  msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
5736
 
5737
- #: src/addons/googlecloud.php:920, src/methods/googledrive.php:1112
5738
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5739
  msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
5740
 
5741
- #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:432,
5742
- #: src/methods/dropbox.php:475, src/methods/ftp.php:321,
5743
- #: src/methods/googledrive.php:1095, src/methods/openstack-base.php:564,
5744
- #: src/methods/s3.php:824, src/methods/stream-base.php:233
5745
- msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5746
- msgstr "%s هو خيار صائب، لأن UpdraftPlus يدعم الرفع المقسم - لا يهمنا كم حجم موقعكم، لأن UpdraftPlus يستطيع تقسيم ورفع الأجزاء المقسمة، ولن يحبط من كثرة المهلات."
5747
-
5748
  #: src/addons/googlecloud.php:505, src/addons/googlecloud.php:506,
5749
- #: src/addons/googlecloud.php:799, src/methods/googledrive.php:545,
5750
  #: src/methods/googledrive.php:546, src/methods/googledrive.php:556,
5751
  #: src/methods/googledrive.php:557
5752
  msgid "Account is not authorized."
@@ -5766,21 +5788,21 @@ msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك عل
5766
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5767
  msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
5768
 
5769
- #: src/addons/googlecloud.php:651, src/addons/onedrive.php:827,
5770
  #: src/methods/googledrive.php:440
5771
  msgid "you have authenticated your %s account."
5772
  msgstr "لديك حساب %s مصادق عليه."
5773
 
5774
- #: src/addons/googlecloud.php:651, src/addons/googlecloud.php:772,
5775
- #: src/addons/onedrive.php:827, src/addons/sftp.php:554,
5776
- #: src/methods/addon-base-v2.php:313, src/methods/cloudfiles.php:560,
5777
  #: src/methods/googledrive.php:440, src/methods/openstack-base.php:530,
5778
- #: src/methods/s3.php:1086, src/methods/stream-base.php:344
5779
  msgid "Success"
5780
  msgstr "نجاح"
5781
 
5782
- #: src/addons/onedrive.php:781, src/methods/dropbox.php:702,
5783
- #: src/methods/dropbox.php:711, src/methods/googledrive.php:414
5784
  msgid "Your %s quota usage: %s %% used, %s available"
5785
  msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
5786
 
@@ -5811,8 +5833,8 @@ msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها
5811
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5812
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
5813
 
5814
- #: src/addons/migrator.php:1899, src/admin.php:1291, src/admin.php:3030,
5815
- #: src/admin.php:3064, src/admin.php:3068, src/admin.php:4058,
5816
  #: src/restorer.php:2358, src/restorer.php:2463
5817
  msgid "OK"
5818
  msgstr "حسنا"
@@ -5821,7 +5843,7 @@ msgstr "حسنا"
5821
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5822
  msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
5823
 
5824
- #: src/addons/migrator.php:1249, src/restorer.php:2254
5825
  msgid "the database query being run was:"
5826
  msgstr "ادارة استعلام قاعدة البيانات كانت في:"
5827
 
@@ -5829,13 +5851,13 @@ msgstr "ادارة استعلام قاعدة البيانات كانت في:"
5829
  msgid "will restore as:"
5830
  msgstr "إستعادة على النحو التالي:"
5831
 
5832
- #: src/class-updraftplus.php:4508, src/restorer.php:1728,
5833
  #: src/restorer.php:1817, src/restorer.php:1843
5834
  msgid "Old table prefix:"
5835
  msgstr "بادئة الجدول القديمة:"
5836
 
5837
  #: src/addons/reporting.php:70, src/addons/reporting.php:180,
5838
- #: src/backup.php:1058, src/class-updraftplus.php:4443
5839
  msgid "Backup of:"
5840
  msgstr "نسخة احتياطية لـ:"
5841
 
@@ -5907,60 +5929,60 @@ msgstr "ملف النسخ الاحتياطي غير متوفر."
5907
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5908
  msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
5909
 
5910
- #: src/admin.php:4066, src/admin.php:4067
5911
  msgid "Could not find one of the files for restoration"
5912
  msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
5913
 
5914
- #: src/admin.php:4180
5915
  msgid "Error message"
5916
  msgstr "رسالة الخطأ"
5917
 
5918
- #: src/admin.php:4063
5919
  msgid "The backup records do not contain information about the proper size of this file."
5920
  msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
5921
 
5922
- #: src/admin.php:4055
5923
  msgid "Archive is expected to be size:"
5924
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
5925
 
5926
- #: src/admin.php:3953
5927
  msgid "If making a request for support, please include this information:"
5928
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
5929
 
5930
- #: src/admin.php:3952
5931
  msgid "ABORT: Could not find the information on which entities to restore."
5932
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
5933
 
5934
- #: src/admin.php:3907
5935
  msgid "UpdraftPlus Restoration: Progress"
5936
  msgstr "استرجاع UpdraftPlus: تقدم"
5937
 
5938
- #: src/admin.php:3860
5939
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5940
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
5941
 
5942
- #: src/admin.php:3795
5943
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5944
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
5945
 
5946
- #: src/admin.php:3813
5947
  msgid "Delete this backup set"
5948
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
5949
 
5950
- #: src/admin.php:3455
5951
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5952
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
5953
 
5954
- #: src/admin.php:3452
5955
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5956
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
5957
 
5958
- #: src/admin.php:3450
5959
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5960
  msgstr ""
5961
 
5962
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
5963
- #: src/methods/openstack-base.php:573, src/methods/s3.php:853
5964
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5965
  msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
5966
 
@@ -5996,23 +6018,23 @@ msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من
5996
  msgid "Use the server's SSL certificates"
5997
  msgstr "استخدام شهادات SSL للملقم"
5998
 
5999
- #: src/admin.php:3298
6000
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
6001
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
6002
 
6003
- #: src/admin.php:3298
6004
  msgid "click here"
6005
  msgstr "انقر هنا"
6006
 
6007
- #: src/admin.php:3298
6008
  msgid "or, to reset this option"
6009
  msgstr "أو، لإعادة هذا الخيار"
6010
 
6011
- #: src/admin.php:3298
6012
  msgid "Follow this link to attempt to create the directory and set the permissions"
6013
  msgstr ""
6014
 
6015
- #: src/admin.php:3290
6016
  msgid "Backup directory specified is writable, which is good."
6017
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
6018
 
@@ -6052,7 +6074,7 @@ msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
6052
  msgid "Cancel"
6053
  msgstr "إلغاء"
6054
 
6055
- #: src/addons/reporting.php:244, src/admin.php:3602
6056
  msgid "None"
6057
  msgstr "لا شيء"
6058
 
@@ -6077,11 +6099,11 @@ msgstr "البريد الإلكتروني"
6077
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6078
  msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
6079
 
6080
- #: src/addons/morefiles.php:443, src/admin.php:3380
6081
  msgid "Exclude these:"
6082
  msgstr "استبعاد هذه:"
6083
 
6084
- #: src/admin.php:3371
6085
  msgid "Any other directories found inside wp-content"
6086
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
6087
 
@@ -6097,45 +6119,45 @@ msgstr "على سبيل المثال إذا كان الملقم مشغول في
6097
  msgid "To fix the time at which a backup should take place,"
6098
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
6099
 
6100
- #: src/admin.php:3284
6101
  msgid "Monthly"
6102
  msgstr "شهريا"
6103
 
6104
- #: src/admin.php:3283
6105
  msgid "Fortnightly"
6106
  msgstr "نصف شهري"
6107
 
6108
- #: src/admin.php:3282
6109
  msgid "Weekly"
6110
  msgstr "أسبوعيا"
6111
 
6112
- #: src/admin.php:3281
6113
  msgid "Daily"
6114
  msgstr "يوميا"
6115
 
6116
- #: src/admin.php:706, src/admin.php:3259
6117
  msgid "Download log file"
6118
  msgstr "تحميل ملف السجل"
6119
 
6120
- #: src/admin.php:3131
6121
  msgid "The folder exists, but your webserver does not have permission to write to it."
6122
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
6123
 
6124
- #: src/admin.php:3126
6125
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
6126
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
6127
 
6128
- #: src/admin.php:3112
6129
  msgid "The request to the filesystem to create the directory failed."
6130
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
6131
 
6132
- #: src/addons/migrator.php:2377, src/admin.php:700, src/admin.php:3024,
6133
- #: src/admin.php:3057, src/admin.php:3813,
6134
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6135
  msgid "Delete"
6136
  msgstr "حذف"
6137
 
6138
- #: src/admin.php:2962
6139
  msgid "show log"
6140
  msgstr "عرض السجل"
6141
 
@@ -6248,7 +6270,7 @@ msgstr "إجراء نسخة احتياطية لمرة واحدة"
6248
  msgid "Do read this helpful article of useful things to know before restoring."
6249
  msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
6250
 
6251
- #: src/class-updraftplus.php:4468
6252
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
6253
  msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
6254
 
@@ -6292,19 +6314,19 @@ msgstr "حذف مجموعة النسخ الاحتياطية"
6292
  msgid "Download error: the server sent us a response which we did not understand."
6293
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
6294
 
6295
- #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:108,
6296
- #: src/addons/migrator.php:822, src/addons/migrator.php:1119,
6297
- #: src/addons/migrator.php:1200, src/addons/migrator.php:1249,
6298
- #: src/addons/migrator.php:1487, src/addons/migrator.php:1838,
6299
- #: src/addons/migrator.php:1865, src/addons/migrator.php:1871,
6300
- #: src/addons/migrator.php:1933, src/addons/migrator.php:1973,
6301
- #: src/addons/migrator.php:2012, src/addons/migrator.php:2022,
6302
- #: src/addons/migrator.php:2027, src/addons/s3-enhanced.php:144,
6303
  #: src/addons/s3-enhanced.php:149, src/addons/s3-enhanced.php:151,
6304
- #: src/addons/sftp.php:818, src/addons/webdav.php:112, src/admin.php:87,
6305
- #: src/admin.php:674, src/admin.php:4060, src/admin.php:4090,
6306
  #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6307
- #: src/methods/updraftvault.php:504, src/restorer.php:1444
6308
  msgid "Error:"
6309
  msgstr "خطأ:"
6310
 
@@ -6334,10 +6356,10 @@ msgstr "هذا عدد من محتويات مجلدات Updraft "
6334
  #: src/methods/googledrive.php:467, src/methods/googledrive.php:496,
6335
  #: src/methods/googledrive.php:503, src/methods/googledrive.php:513,
6336
  #: src/methods/googledrive.php:519, src/methods/googledrive.php:521,
6337
- #: src/methods/googledrive.php:1094, src/methods/googledrive.php:1107,
6338
- #: src/methods/googledrive.php:1107, src/methods/googledrive.php:1124,
6339
- #: src/methods/googledrive.php:1128, src/methods/googledrive.php:1139,
6340
- #: src/methods/googledrive.php:1150, src/methods/googledrive.php:1170
6341
  msgid "Google Drive"
6342
  msgstr "جوجل درايف"
6343
 
@@ -6353,20 +6375,20 @@ msgstr "متصفح الويب أوبرا "
6353
  msgid "More tasks:"
6354
  msgstr "المزيد من المهام:"
6355
 
6356
- #: src/admin.php:2720
6357
  msgid "Download most recently modified log file"
6358
  msgstr "تحميل ملف السجل المعدل مؤخرا"
6359
 
6360
- #: src/admin.php:2676, src/admin.php:2682, src/central/bootstrap.php:173
6361
  msgid "(Nothing yet logged)"
6362
  msgstr "(لا شيء حتى الآن تم تسجيله)"
6363
 
6364
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6365
- #: src/admin.php:2675, src/admin.php:2680
6366
  msgid "Last log message"
6367
  msgstr "رسالة السجل الأخيرة"
6368
 
6369
- #: src/addons/migrator.php:238, src/admin.php:705, src/admin.php:3795,
6370
  #: src/templates/wp-admin/settings/tab-status.php:30
6371
  msgid "Restore"
6372
  msgstr "الإستعادة"
@@ -6376,16 +6398,16 @@ msgstr "الإستعادة"
6376
  msgid "Backup Now"
6377
  msgstr "النسخ الاحتياطي الآن"
6378
 
6379
- #: src/addons/migrator.php:1903, src/addons/moredatabase.php:247,
6380
- #: src/addons/reporting.php:259, src/admin.php:309, src/admin.php:3577,
6381
- #: src/admin.php:3657, src/admin.php:4144,
6382
  #: src/includes/class-wpadmin-commands.php:147,
6383
  #: src/includes/class-wpadmin-commands.php:487,
6384
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
6385
  msgid "Database"
6386
  msgstr "قاعدة بيانات"
6387
 
6388
- #: src/admin.php:305, src/admin.php:4665
6389
  msgid "Files"
6390
  msgstr "ملفات"
6391
 
@@ -6413,15 +6435,15 @@ msgstr "واجهة المشرف هذه تستخدم الجافا سكريبت ب
6413
  msgid "JavaScript warning"
6414
  msgstr "تحذير جافا سكريبت"
6415
 
6416
- #: src/admin.php:685, src/admin.php:2747
6417
  msgid "Delete Old Directories"
6418
  msgstr "حذف الدلائل القديمة"
6419
 
6420
- #: src/admin.php:2467
6421
  msgid "Current limit is:"
6422
  msgstr "الحد الحالي هو:"
6423
 
6424
- #: src/admin.php:2442
6425
  msgid "Your backup has been restored."
6426
  msgstr "تمت استعادة النسخ الاحتياطي."
6427
 
@@ -6437,68 +6459,68 @@ msgstr "الولوج لموقع المطور"
6437
  msgid "UpdraftPlus.Com"
6438
  msgstr ""
6439
 
6440
- #: src/admin.php:4557
6441
  msgid "Your settings have been wiped."
6442
  msgstr "تم القضاء على الإعدادات الخاصة بك."
6443
 
6444
- #: src/admin.php:2402
6445
  msgid "Backup directory successfully created."
6446
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
6447
 
6448
- #: src/admin.php:2395
6449
  msgid "Backup directory could not be created"
6450
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
6451
 
6452
- #: src/admin.php:2994
6453
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6454
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
6455
 
6456
- #: src/admin.php:2992
6457
  msgid "Old directories successfully removed."
6458
  msgstr "تم إزالة الدلائل القديمة بنجاح."
6459
 
6460
- #: src/admin.php:2989, src/admin.php:2989
6461
  msgid "Remove old directories"
6462
  msgstr "إزالة الدلائل القديمة"
6463
 
6464
- #: src/addons/migrator.php:303, src/addons/migrator.php:318,
6465
- #: src/admin.php:2344, src/admin.php:2353, src/admin.php:2362,
6466
- #: src/admin.php:2404, src/admin.php:2996
6467
  msgid "Return to UpdraftPlus Configuration"
6468
  msgstr "العودة إلى اعدادات UpdraftPlus"
6469
 
6470
- #: src/admin.php:678, src/admin.php:2344, src/admin.php:2353,
6471
- #: src/admin.php:2362, src/admin.php:2404, src/admin.php:2996,
6472
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6473
  msgid "Actions"
6474
  msgstr "الإجراءات"
6475
 
6476
- #: src/admin.php:2247
6477
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6478
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
6479
 
6480
- #: src/admin.php:2147
6481
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6482
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
6483
 
6484
- #: src/admin.php:2043
6485
  msgid "No local copy present."
6486
  msgstr "لا نسخة محلية متوفرة."
6487
 
6488
- #: src/admin.php:2040
6489
  msgid "Download in progress"
6490
  msgstr "التحميل في تقدم"
6491
 
6492
- #: src/admin.php:677, src/admin.php:2029
6493
  msgid "File ready."
6494
  msgstr "ملف جاهز."
6495
 
6496
- #: src/admin.php:2010
6497
  msgid "Download failed"
6498
  msgstr "فشل تحميل"
6499
 
6500
- #: src/admin.php:675, src/admin.php:1300, src/admin.php:1774,
6501
- #: src/class-updraftplus.php:1224, src/class-updraftplus.php:1268,
6502
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
6503
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6504
  #: src/methods/stream-base.php:217, src/restorer.php:2354,
@@ -6506,15 +6528,15 @@ msgstr "فشل تحميل"
6506
  msgid "Error"
6507
  msgstr "خطأ"
6508
 
6509
- #: src/admin.php:1809
6510
  msgid "Could not find that job - perhaps it has already finished?"
6511
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
6512
 
6513
- #: src/admin.php:1801
6514
  msgid "Job deleted"
6515
  msgstr "وظيفة حذفت"
6516
 
6517
- #: src/admin.php:1890
6518
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6519
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
6520
 
@@ -6522,39 +6544,39 @@ msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات ب
6522
  msgid "Nothing yet logged"
6523
  msgstr "لا شيء حتى الآن تم تسجيله"
6524
 
6525
- #: src/admin.php:975
6526
  msgid "Please consult this FAQ if you have problems backing up."
6527
  msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
6528
 
6529
- #: src/admin.php:975
6530
  msgid "Your website is hosted using the %s web server."
6531
  msgstr "موقعك يستخدم %s من خادم الويب."
6532
 
6533
- #: src/admin.php:971
6534
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
6535
  msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
6536
 
6537
- #: src/admin.php:967
6538
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
6539
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
6540
 
6541
- #: src/addons/migrator.php:877, src/admin.php:959, src/admin.php:963,
6542
- #: src/admin.php:967, src/admin.php:971, src/admin.php:975, src/admin.php:984,
6543
- #: src/admin.php:3443, src/admin.php:3450, src/admin.php:3452,
6544
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
6545
- #: src/methods/ftp.php:309, src/methods/openstack-base.php:573,
6546
- #: src/methods/s3.php:849, src/methods/s3.php:853,
6547
- #: src/methods/updraftvault.php:283,
6548
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6549
  #: src/udaddons/updraftplus-addons.php:253
6550
  msgid "Warning"
6551
  msgstr "تحذير"
6552
 
6553
- #: src/admin.php:905
6554
  msgid "Add-Ons / Pro Support"
6555
  msgstr "إضافات / الدعم المدفوع"
6556
 
6557
- #: src/admin.php:542, src/admin.php:903,
6558
  #: src/templates/wp-admin/settings/tab-bar.php:7
6559
  msgid "Settings"
6560
  msgstr "إعدادات"
@@ -6563,7 +6585,7 @@ msgstr "إعدادات"
6563
  msgid "Could not create %s zip. Consult the log file for more information."
6564
  msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
6565
 
6566
- #: src/backup.php:2226
6567
  msgid "Infinite recursion: consult your log for more information"
6568
  msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
6569
 
@@ -6575,50 +6597,50 @@ msgstr ""
6575
  msgid "Like UpdraftPlus and can spare one minute?"
6576
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
6577
 
6578
- #: src/addons/azure.php:219, src/class-updraftplus.php:4157,
6579
- #: src/methods/googledrive.php:1023, src/methods/s3.php:320
6580
  msgid "File not found"
6581
  msgstr "لم يتم العثور على ملف"
6582
 
6583
- #: src/class-updraftplus.php:4064
6584
  msgid "The decryption key used:"
6585
  msgstr "مفتاح فك التشفير المستخدم:"
6586
 
6587
- #: src/class-updraftplus.php:4064, src/class-updraftplus.php:4372,
6588
  #: src/restorer.php:419
6589
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6590
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
6591
 
6592
- #: src/class-updraftplus.php:4045, src/class-updraftplus.php:4360,
6593
  #: src/restorer.php:406
6594
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6595
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
6596
 
6597
- #: src/backup.php:2101
6598
  msgid "Could not open the backup file for writing"
6599
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
6600
 
6601
- #: src/class-updraftplus.php:3387
6602
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6603
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
6604
 
6605
- #: src/class-updraftplus.php:3348
6606
  msgid "Could not read the directory"
6607
  msgstr "لا يمكن قراءة الدليل"
6608
 
6609
- #: src/admin.php:2089, src/backup.php:1282
6610
  msgid "Backup directory (%s) is not writable, or does not exist."
6611
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
6612
 
6613
- #: src/backup.php:1059
6614
  msgid "WordPress backup is complete"
6615
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
6616
 
6617
- #: src/class-updraftplus.php:2858
6618
  msgid "The backup attempt has finished, apparently unsuccessfully"
6619
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
6620
 
6621
- #: src/class-updraftplus.php:2843
6622
  msgid "The backup apparently succeeded and is now complete"
6623
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
6624
 
@@ -6626,42 +6648,42 @@ msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت و
6626
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6627
  msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
6628
 
6629
- #: src/class-updraftplus.php:2546
6630
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6631
  msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
6632
 
6633
- #: src/class-updraftplus.php:1825
6634
  msgid "Others"
6635
  msgstr "أخرى"
6636
 
6637
- #: src/addons/multisite.php:467, src/class-updraftplus.php:1810
6638
  msgid "Uploads"
6639
  msgstr "الملفات المرفوعة"
6640
 
6641
- #: src/class-updraftplus.php:1809
6642
  msgid "Themes"
6643
  msgstr "تصاميم"
6644
 
6645
- #: src/class-updraftplus.php:1808
6646
  msgid "Plugins"
6647
  msgstr "الإضافات"
6648
 
6649
- #: src/class-updraftplus.php:584
6650
  msgid "No log files were found."
6651
  msgstr "لا توجد ملفات السجل."
6652
 
6653
- #: src/admin.php:1959, src/admin.php:1963, src/class-updraftplus.php:579
6654
  msgid "The log file could not be read."
6655
  msgstr "لا يمكن قراءة ملف السجل."
6656
 
6657
- #: src/admin.php:994, src/admin.php:1003, src/admin.php:1008,
6658
- #: src/admin.php:1016, src/admin.php:1025, src/class-updraftplus.php:544,
6659
- #: src/class-updraftplus.php:579, src/class-updraftplus.php:584,
6660
- #: src/class-updraftplus.php:589
6661
  msgid "UpdraftPlus notice:"
6662
  msgstr "إشعار UpdraftPlus :"
6663
 
6664
- #: src/addons/multisite.php:65, src/addons/multisite.php:689,
6665
  #: src/options.php:50
6666
  msgid "UpdraftPlus Backups"
6667
  msgstr "نسخ الإحتياطية UpdraftPlus"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
+ "X-Generator: GlotPress/2.3.1\n"
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/addons/migrator.php:406
15
+ msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
16
+ msgstr ""
17
+
18
+ #: src/addons/migrator.php:395
19
+ msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use below search and replace so that the non-https links are automatically replaced."
20
+ msgstr ""
21
+
22
+ #: src/addons/migrator.php:384
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use below search and replace to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/addons/morestorage.php:91
27
+ msgid "Add another %s account..."
28
+ msgstr ""
29
+
30
+ #: src/addons/morestorage.php:70
31
+ msgid "Delete these settings"
32
+ msgstr ""
33
+
34
+ #: src/addons/morestorage.php:68, src/admin.php:777
35
+ msgid "Currently disabled"
36
+ msgstr ""
37
+
38
+ #: src/addons/morestorage.php:68, src/admin.php:776
39
+ msgid "Currently enabled"
40
+ msgstr ""
41
+
42
  #: src/templates/wp-admin/settings/tab-addons.php:14
43
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
44
  msgstr ""
51
  msgid "get it here"
52
  msgstr ""
53
 
54
+ #: src/methods/stream-base.php:322
55
  msgid "Download chunk size successfully changed to %d"
56
  msgstr ""
57
 
58
+ #: src/methods/stream-base.php:319
59
  msgid "Download chunk size failed to change to %d"
60
  msgstr ""
61
 
71
  msgid "remote site"
72
  msgstr ""
73
 
74
+ #: src/addons/backblaze.php:461
75
  msgid "Invalid bucket name"
76
  msgstr ""
77
 
85
  msgstr[4] ""
86
  msgstr[5] ""
87
 
88
+ #: src/class-updraftplus.php:4364
89
  msgid "Your chosen replacement collation"
90
  msgstr ""
91
 
92
+ #: src/class-updraftplus.php:4341
93
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
94
  msgstr ""
95
 
96
+ #: src/class-updraftplus.php:4341
97
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
98
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
99
  msgstr[0] ""
103
  msgstr[4] ""
104
  msgstr[5] ""
105
 
106
+ #: src/addons/migrator.php:529
107
  msgid "Database restoration options:"
108
  msgstr ""
109
 
110
+ #: src/addons/migrator.php:373
111
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
112
  msgstr ""
113
 
114
+ #: src/addons/azure.php:629
115
  msgid "%s Prefix"
116
  msgstr ""
117
 
118
+ #: src/addons/azure.php:624
119
  msgid "%s Container"
120
  msgstr ""
121
 
122
+ #: src/addons/azure.php:619
123
  msgid "%s Key"
124
  msgstr ""
125
 
126
+ #: src/addons/azure.php:615
127
  msgid "%s Account Name"
128
  msgstr ""
129
 
130
+ #: src/addons/googlecloud.php:684
131
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
132
  msgstr ""
133
 
134
+ #: src/addons/googlecloud.php:682
135
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
136
  msgstr ""
137
 
155
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
156
  msgstr ""
157
 
158
+ #: src/addons/migrator.php:913
159
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
160
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
161
  msgstr[0] ""
169
  msgid "Requested table character set (%s) is not present - changing to %s."
170
  msgstr ""
171
 
172
+ #: src/class-updraftplus.php:4317
173
  msgid "Your chosen character set to use instead:"
174
  msgstr ""
175
 
176
+ #: src/class-updraftplus.php:4307
177
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
178
  msgstr ""
179
 
180
+ #: src/class-updraftplus.php:4307
181
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
182
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
183
  msgstr[0] ""
235
  msgid "Please enter a valid URL e.g http://example.com"
236
  msgstr ""
237
 
238
+ #: src/addons/backblaze.php:619
239
  msgid "your Backblaze console"
240
  msgstr ""
241
 
242
+ #: src/addons/backblaze.php:619
243
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
244
  msgstr ""
245
 
246
+ #: src/addons/backblaze.php:619
247
  msgid "N.B. You need to create the bucket in %s first."
248
  msgstr ""
249
 
250
+ #: src/addons/backblaze.php:618
251
  msgid "some/path"
252
  msgstr ""
253
 
254
+ #: src/addons/backblaze.php:618
255
  msgid "Bucket name"
256
  msgstr ""
257
 
258
+ #: src/addons/backblaze.php:617
259
  msgid "Backup path"
260
  msgstr ""
261
 
262
+ #: src/addons/backblaze.php:612
263
  msgid "Application key"
264
  msgstr ""
265
 
266
+ #: src/addons/backblaze.php:607, src/addons/backblaze.php:607
267
  msgid "here"
268
  msgstr ""
269
 
270
+ #: src/addons/backblaze.php:607
271
  msgid "Get these settings from %s, or sign up %s."
272
  msgstr ""
273
 
274
+ #: src/addons/backblaze.php:458
275
  msgid "Bucket not found"
276
  msgstr ""
277
 
278
+ #: src/addons/backblaze.php:412
279
  msgid "Account Key"
280
  msgstr ""
281
 
282
+ #: src/addons/backblaze.php:411, src/addons/backblaze.php:605
283
  msgid "Account ID"
284
  msgstr ""
285
 
286
+ #: src/class-updraftplus.php:4149
287
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
288
  msgstr ""
289
 
290
+ #: src/class-updraftplus.php:4147, src/class-updraftplus.php:4149
291
  msgid "the migrator add-on"
292
  msgstr ""
293
 
294
+ #: src/class-updraftplus.php:4147
295
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
296
  msgstr ""
297
 
298
+ #: src/class-updraftplus.php:4145
299
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
300
  msgstr ""
301
 
302
+ #: src/class-updraftplus.php:4140
303
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
304
  msgstr ""
305
 
306
+ #: src/methods/googledrive.php:1240
307
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
308
  msgstr ""
309
 
310
+ #: src/methods/googledrive.php:1237
311
  msgid "Follow this link to remove this site's settings for %s."
312
  msgstr ""
313
 
319
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
320
  msgstr ""
321
 
322
+ #: src/admin.php:1350, src/admin.php:4170, src/backup.php:2106,
323
+ #: src/class-updraftplus.php:2181, src/class-updraftplus.php:2246,
324
+ #: src/class-updraftplus.php:2380
325
  msgid "A PHP fatal error (%s) has occurred: %s"
326
  msgstr ""
327
 
328
+ #: src/admin.php:1341, src/admin.php:4156, src/backup.php:2097,
329
+ #: src/class-updraftplus.php:2172, src/class-updraftplus.php:2239,
330
+ #: src/class-updraftplus.php:2373
331
  msgid "A PHP exception (%s) has occurred: %s"
332
  msgstr ""
333
 
371
  msgid "Select Files"
372
  msgstr ""
373
 
374
+ #: src/methods/cloudfiles.php:476
375
  msgid "Rackspace Storage Region"
376
  msgstr ""
377
 
379
  msgid "Instant and secure logon with a wave of your phone."
380
  msgstr ""
381
 
382
+ #: src/backup.php:2110
383
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
384
  msgstr ""
385
 
386
+ #: src/admin.php:4698
387
  msgid "Value"
388
  msgstr ""
389
 
390
+ #: src/admin.php:1616
391
  msgid "Did not know how to delete from this cloud service."
392
  msgstr ""
393
 
394
+ #: src/addons/sftp.php:716
395
  msgid "Encrypted login failed; trying non-encrypted"
396
  msgstr ""
397
 
398
+ #: src/addons/azure.php:592
399
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
400
  msgstr ""
401
 
403
  msgid "Stored at: %s"
404
  msgstr ""
405
 
406
+ #: src/methods/cloudfiles.php:496
407
  msgid "Cloud Files"
408
  msgstr ""
409
 
410
+ #: src/admin.php:4511
411
  msgid "Your settings failed to save. Please refresh the settings page and try again"
412
  msgstr ""
413
 
414
+ #: src/admin.php:4470
415
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
416
  msgstr ""
417
 
428
  msgid "Extra database"
429
  msgstr ""
430
 
431
+ #: src/admin.php:3731
432
  msgid "Press here to download or browse"
433
  msgstr ""
434
 
435
+ #: src/admin.php:1124, src/admin.php:1134
436
  msgid "Error: invalid path"
437
  msgstr ""
438
 
439
+ #: src/admin.php:948
440
  msgid "An error occurred when fetching storage module options: "
441
  msgstr ""
442
 
472
  msgid "Skipped tables:"
473
  msgstr ""
474
 
475
+ #: src/class-updraftplus.php:4429
476
  msgid "This database backup has the following WordPress tables excluded: %s"
477
  msgstr ""
478
 
479
+ #: src/admin.php:2626
480
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
481
  msgstr ""
482
 
483
+ #: src/admin.php:2626
484
  msgid "All WordPress tables will be backed up."
485
  msgstr ""
486
 
980
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
981
  msgstr ""
982
 
983
+ #: src/methods/dropbox.php:686
984
  msgid "%s de-authentication"
985
  msgstr ""
986
 
987
+ #: src/methods/dropbox.php:606
988
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
989
  msgstr ""
990
 
991
+ #: src/methods/dropbox.php:583
992
  msgid "Follow this link to deauthenticate with %s."
993
  msgstr ""
994
 
996
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
997
  msgstr ""
998
 
999
+ #: src/backup.php:1704
1000
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
1001
  msgstr ""
1002
 
1004
  msgid "You have selected a remote storage option which has an authorization step to complete:"
1005
  msgstr ""
1006
 
1007
+ #: src/admin.php:1692
1008
  msgid "Remote files deleted:"
1009
  msgstr ""
1010
 
1011
+ #: src/admin.php:1691
1012
  msgid "Local files deleted:"
1013
  msgstr ""
1014
 
1015
+ #: src/admin.php:996, src/admin.php:1005, src/admin.php:1018,
1016
+ #: src/admin.php:1027
1017
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
1018
  msgstr ""
1019
 
1057
  msgid "US East (Ohio)"
1058
  msgstr ""
1059
 
1060
+ #: src/addons/onedrive.php:1029
1061
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1062
  msgstr ""
1063
 
1064
+ #: src/addons/onedrive.php:698
1065
  msgid "Account is not authorized (%s)."
1066
  msgstr ""
1067
 
1068
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873
1069
  msgid "Your IP address:"
1070
  msgstr ""
1071
 
1072
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873,
1073
  #: src/udaddons/updraftplus-addons.php:887
1074
  msgid "To remove any block, please go here."
1075
  msgstr ""
1076
 
1077
+ #: src/addons/onedrive.php:643, src/udaddons/updraftplus-addons.php:858
1078
  msgid "An error response was received; HTTP code:"
1079
  msgstr ""
1080
 
1090
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1091
  msgstr ""
1092
 
1093
+ #: src/admin.php:2440
1094
  msgid "To fix this problem go here."
1095
  msgstr ""
1096
 
1097
+ #: src/admin.php:2440
1098
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1099
  msgstr ""
1100
 
1102
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1103
  msgstr ""
1104
 
1105
+ #: src/addons/webdav.php:204
1106
  msgid "Path"
1107
  msgstr ""
1108
 
1109
+ #: src/addons/webdav.php:199
1110
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1111
  msgstr ""
1112
 
1113
+ #: src/addons/webdav.php:191
1114
  msgid "Enter any path in the field below."
1115
  msgstr ""
1116
 
1117
+ #: src/addons/webdav.php:191
1118
  msgid "A host name cannot contain a slash."
1119
  msgstr ""
1120
 
1121
+ #: src/addons/webdav.php:166
1122
  msgid "Protocol (SSL or not)"
1123
  msgstr ""
1124
 
1125
+ #: src/addons/webdav.php:161
1126
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1127
  msgstr ""
1128
 
1130
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1131
  msgstr ""
1132
 
1133
+ #: src/methods/s3.php:1110
1134
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1135
  msgstr ""
1136
 
1170
  msgid "Public key was sent to:"
1171
  msgstr ""
1172
 
1173
+ #: src/backup.php:2322
1174
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1175
  msgstr ""
1176
 
1177
+ #: src/backup.php:2300
1178
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1179
  msgstr ""
1180
 
1181
+ #: src/addons/migrator.php:2378
1182
  msgid "Create key"
1183
  msgstr ""
1184
 
1185
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:526
1186
  msgid "slower, strongest"
1187
  msgstr ""
1188
 
1189
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1190
  msgid "recommended"
1191
  msgstr "موصى به"
1192
 
1193
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1194
  msgid "%s bytes"
1195
  msgstr ""
1196
 
1197
+ #: src/addons/migrator.php:2373, src/central/bootstrap.php:524
1198
  msgid "faster (possibility for slow PHP installs)"
1199
  msgstr ""
1200
 
1201
+ #: src/addons/migrator.php:2372, src/central/bootstrap.php:523
1202
  msgid "easy to break, fastest"
1203
  msgstr ""
1204
 
1205
+ #: src/addons/migrator.php:2372, src/addons/migrator.php:2373,
1206
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:523,
1207
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1208
  msgid "%s bits"
1209
  msgstr ""
1210
 
1211
+ #: src/addons/migrator.php:2370, src/central/bootstrap.php:521
1212
  msgid "Encryption key size:"
1213
  msgstr ""
1214
 
1215
+ #: src/addons/migrator.php:2368
1216
  msgid "Enter your chosen name"
1217
  msgstr ""
1218
 
1219
+ #: src/addons/migrator.php:2367
1220
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1221
  msgstr ""
1222
 
1224
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1225
  msgstr ""
1226
 
1227
+ #: src/methods/ftp.php:435
1228
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1229
  msgstr ""
1230
 
1231
+ #: src/methods/ftp.php:407
1232
  msgid "login"
1233
  msgstr "تسجيل الدخول"
1234
 
1235
+ #: src/methods/email.php:91
1236
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1237
  msgstr ""
1238
 
1240
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1241
  msgstr ""
1242
 
1243
+ #: src/class-updraftplus.php:1788
1244
  msgid "Size: %s MB"
1245
  msgstr ""
1246
 
1252
  msgid "Now"
1253
  msgstr "الآن"
1254
 
1255
+ #: src/class-updraftplus.php:4166, src/restorer.php:1045
1256
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1257
  msgstr ""
1258
 
1260
  msgid "(tap on an icon to select or unselect)"
1261
  msgstr ""
1262
 
1263
+ #: src/methods/updraftvault.php:319, src/methods/updraftvault.php:325,
1264
+ #: src/methods/updraftvault.php:331
1265
  msgid "%s per year"
1266
  msgstr ""
1267
 
1268
+ #: src/methods/updraftvault.php:318, src/methods/updraftvault.php:324,
1269
+ #: src/methods/updraftvault.php:330
1270
  msgid "or (annual discount)"
1271
  msgstr ""
1272
 
1274
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1275
  msgstr ""
1276
 
1277
+ #: src/class-updraftplus.php:556, src/class-updraftplus.php:601
1278
  msgid "The given file was not found, or could not be read."
1279
  msgstr ""
1280
 
1358
  msgid "UpdraftCentral Connection"
1359
  msgstr ""
1360
 
1361
+ #: src/backup.php:1006, src/class-updraftplus.php:2862
1362
  msgid "The backup was aborted by the user"
1363
  msgstr ""
1364
 
1365
+ #: src/admin.php:4506
1366
  msgid "Your settings have been saved."
1367
  msgstr "تم حفظ إعداداتك."
1368
 
1369
+ #: src/admin.php:3609
1370
  msgid "Total backup size:"
1371
  msgstr ""
1372
 
1373
+ #: src/admin.php:2966
1374
  msgid "stop"
1375
  msgstr "توقف"
1376
 
1377
+ #: src/admin.php:2808
1378
  msgid "The backup has finished running"
1379
  msgstr ""
1380
 
1436
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1437
  msgstr ""
1438
 
1439
+ #: src/class-updraftplus.php:4217, src/restorer.php:1740
1440
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1441
  msgstr ""
1442
 
1443
+ #: src/class-updraftplus.php:4213
1444
  msgid "Please read this link for important information on this process."
1445
  msgstr ""
1446
 
1447
+ #: src/class-updraftplus.php:4213
1448
  msgid "It will be imported as a new site."
1449
  msgstr ""
1450
 
1451
+ #: src/admin.php:2599, src/templates/wp-admin/notices/horizontal-notice.php:16,
1452
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1453
  msgid "Dismiss"
1454
  msgstr "رفض"
1457
  msgid "Please fill in the required information."
1458
  msgstr ""
1459
 
1460
+ #: src/addons/multisite.php:568
1461
  msgid "Read more..."
1462
  msgstr ""
1463
 
1464
+ #: src/addons/multisite.php:559
1465
  msgid "may include some site-wide data"
1466
  msgstr ""
1467
 
1468
+ #: src/addons/multisite.php:554
1469
  msgid "All sites"
1470
  msgstr ""
1471
 
1472
+ #: src/addons/multisite.php:550
1473
  msgid "Which site to restore"
1474
  msgstr ""
1475
 
1476
+ #: src/addons/migrator.php:599, src/addons/migrator.php:600
1477
  msgid "Error when creating new site at your chosen address:"
1478
  msgstr ""
1479
 
1480
+ #: src/addons/migrator.php:541
1481
  msgid "Required information for restoring this backup was not given (%s)"
1482
  msgstr ""
1483
 
1484
+ #: src/addons/migrator.php:493
1485
  msgid "Attribute imported content to user"
1486
  msgstr ""
1487
 
1488
+ #: src/addons/migrator.php:483, src/addons/migrator.php:485
1489
  msgid "You must use lower-case letters or numbers for the site path, only."
1490
  msgstr ""
1491
 
1492
+ #: src/addons/migrator.php:471
1493
  msgid "This feature is not compatible with %s"
1494
  msgstr ""
1495
 
1496
+ #: src/addons/migrator.php:469, src/addons/migrator.php:471
1497
  msgid "Importing a single site into a multisite install"
1498
  msgstr ""
1499
 
1500
+ #: src/addons/migrator.php:460
1501
  msgid "other content from wp-content"
1502
  msgstr ""
1503
 
1504
+ #: src/addons/migrator.php:457
1505
  msgid "WordPress core"
1506
  msgstr ""
1507
 
1508
+ #: src/addons/migrator.php:457, src/addons/migrator.php:460,
1509
+ #: src/addons/migrator.php:463
1510
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1511
  msgstr ""
1512
 
1514
  msgid "Call WordPress action:"
1515
  msgstr ""
1516
 
1517
+ #: src/admin.php:2634
1518
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1519
  msgstr ""
1520
 
1521
+ #: src/admin.php:4045
1522
  msgid "Skipping: this archive was already restored."
1523
  msgstr ""
1524
 
1550
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1551
  msgstr ""
1552
 
1553
+ #: src/admin.php:4380
1554
  msgid "Send this backup to remote storage"
1555
  msgstr ""
1556
 
1557
+ #: src/admin.php:4378
1558
  msgid "Check out UpdraftPlus Vault."
1559
  msgstr ""
1560
 
1561
+ #: src/admin.php:4378
1562
  msgid "Not got any remote storage?"
1563
  msgstr ""
1564
 
1565
+ #: src/admin.php:4378
1566
  msgid "settings"
1567
  msgstr "إعدادات"
1568
 
1569
+ #: src/admin.php:4378
1570
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1571
  msgstr ""
1572
 
1573
+ #: src/admin.php:2632
1574
  msgid "Include any files in the backup"
1575
  msgstr ""
1576
 
1577
+ #: src/admin.php:2618
1578
  msgid "Include the database in the backup"
1579
  msgstr ""
1580
 
1581
+ #: src/admin.php:2598
1582
  msgid "Continue restoration"
1583
  msgstr ""
1584
 
1585
+ #: src/admin.php:2593
1586
  msgid "You have an unfinished restoration operation, begun %s ago."
1587
  msgstr ""
1588
 
1589
+ #: src/admin.php:2592
1590
  msgid "Unfinished restoration"
1591
  msgstr ""
1592
 
1593
+ #: src/admin.php:2590
1594
  msgid "%s minutes, %s seconds"
1595
  msgstr ""
1596
 
1597
+ #: src/admin.php:2537
1598
  msgid "Backup Contents And Schedule"
1599
  msgstr ""
1600
 
1602
  msgid "Premium / Extensions"
1603
  msgstr ""
1604
 
1605
+ #: src/admin.php:2306, src/admin.php:2315
1606
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1607
  msgstr ""
1608
 
1623
  msgid "Advanced Tools"
1624
  msgstr ""
1625
 
1626
+ #: src/addons/googlecloud.php:1041
1627
  msgid "Bucket location"
1628
  msgstr ""
1629
 
1630
+ #: src/addons/googlecloud.php:1036
1631
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1632
  msgstr ""
1633
 
1634
+ #: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049
1635
  msgid "This setting applies only when a new bucket is being created."
1636
  msgstr ""
1637
 
1638
+ #: src/addons/googlecloud.php:1025
1639
  msgid "You must use a bucket name that is unique, for all %s users."
1640
  msgstr ""
1641
 
1642
+ #: src/addons/googlecloud.php:971
1643
  msgid "Do not confuse %s with %s - they are separate things."
1644
  msgstr ""
1645
 
1701
  msgid "Standard"
1702
  msgstr ""
1703
 
1704
+ #: src/addons/azure.php:630
1705
  msgid "container"
1706
  msgstr ""
1707
 
1708
+ #: src/addons/azure.php:630
1709
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1710
  msgstr ""
1711
 
1712
+ #: src/addons/azure.php:629
1713
  msgid "optional"
1714
  msgstr ""
1715
 
1716
+ #: src/addons/azure.php:625
1717
  msgid "See Microsoft's guidelines on container naming by following this link."
1718
  msgstr ""
1719
 
1720
+ #: src/addons/azure.php:625
1721
  msgid "Enter the path of the %s you wish to use here."
1722
  msgstr ""
1723
 
1724
+ #: src/addons/azure.php:616
1725
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1726
  msgstr ""
1727
 
1728
+ #: src/addons/azure.php:615, src/addons/azure.php:619,
1729
+ #: src/addons/azure.php:624, src/addons/azure.php:629
1730
  msgid "Azure"
1731
  msgstr ""
1732
 
1733
+ #: src/addons/azure.php:596
1734
  msgid "Create Azure credentials in your Azure developer console."
1735
  msgstr ""
1736
 
1737
+ #: src/addons/azure.php:560
1738
  msgid "Could not create the container"
1739
  msgstr ""
1740
 
1741
+ #: src/addons/azure.php:411
1742
  msgid "Could not access container"
1743
  msgstr ""
1744
 
1745
+ #: src/class-updraftplus.php:2879
1746
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1747
  msgstr ""
1748
 
1749
+ #: src/backup.php:1756
1750
  msgid "the options table was not found"
1751
  msgstr ""
1752
 
1753
+ #: src/backup.php:1754
1754
  msgid "no options or sitemeta table was found"
1755
  msgstr ""
1756
 
1757
+ #: src/backup.php:1754, src/backup.php:1756
1758
  msgid "The database backup appears to have failed"
1759
  msgstr ""
1760
 
1761
+ #: src/backup.php:1626
1762
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1763
  msgstr ""
1764
 
1770
  msgid "Not installed"
1771
  msgstr "لم يتم التثبيت"
1772
 
1773
+ #: src/addons/googlecloud.php:1028, src/addons/s3-enhanced.php:63
1774
  msgid "Storage class"
1775
  msgstr ""
1776
 
1777
+ #: src/addons/googlecloud.php:1025
1778
  msgid "See Google's guidelines on bucket naming by following this link."
1779
  msgstr ""
1780
 
1781
+ #: src/addons/googlecloud.php:1025
1782
  msgid "Enter the name of the %s bucket you wish to use here."
1783
  msgstr ""
1784
 
1785
+ #: src/addons/googlecloud.php:1024
1786
  msgid "Bucket"
1787
  msgstr ""
1788
 
1789
+ #: src/addons/googlecloud.php:1020
1790
  msgid "Otherwise, you can leave it blank."
1791
  msgstr ""
1792
 
1793
+ #: src/addons/googlecloud.php:1020
1794
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1795
  msgstr ""
1796
 
1797
+ #: src/addons/googlecloud.php:1020
1798
  msgid "Enter the ID of the %s project you wish to use here."
1799
  msgstr ""
1800
 
1801
+ #: src/addons/googlecloud.php:983
1802
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1803
  msgstr ""
1804
 
1805
+ #: src/addons/googlecloud.php:894
1806
  msgid "You must enter a project ID in order to be able to create a new bucket."
1807
  msgstr ""
1808
 
1809
+ #: src/addons/googlecloud.php:1018
1810
  msgid "Project ID"
1811
  msgstr ""
1812
 
1813
+ #: src/addons/googlecloud.php:751
1814
  msgid "You must save and authenticate before you can test your settings."
1815
  msgstr ""
1816
 
1819
  msgstr ""
1820
 
1821
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1822
+ #: src/addons/googlecloud.php:886, src/addons/googlecloud.php:933
1823
  msgid "You do not have access to this bucket."
1824
  msgstr ""
1825
 
1826
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1827
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1828
+ #: src/addons/googlecloud.php:710, src/addons/googlecloud.php:886,
1829
+ #: src/addons/googlecloud.php:933, src/addons/googlecloud.php:977,
1830
+ #: src/addons/googlecloud.php:977, src/addons/googlecloud.php:1005,
1831
+ #: src/addons/googlecloud.php:1013, src/addons/googlecloud.php:1025
1832
  msgid "Google Cloud"
1833
  msgstr ""
1834
 
1835
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1836
+ #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:886,
1837
+ #: src/addons/googlecloud.php:933
1838
  msgid "%s Service Exception."
1839
  msgstr ""
1840
 
1871
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1872
  msgstr ""
1873
 
1874
+ #: src/admin.php:1690
1875
  msgid "Backup sets removed:"
1876
  msgstr ""
1877
 
1903
  msgid "day"
1904
  msgstr ""
1905
 
1906
+ #: src/addons/morestorage.php:29
1907
  msgid "(as many as you like)"
1908
  msgstr ""
1909
 
1919
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1920
  msgstr ""
1921
 
1922
+ #: src/methods/updraftvault.php:693
1923
  msgid "You do not currently have any UpdraftPlus Vault quota"
1924
  msgstr ""
1925
 
1926
+ #: src/class-updraftplus.php:4286
1927
  msgid "You must upgrade MySQL to be able to use this database."
1928
  msgstr ""
1929
 
1930
+ #: src/class-updraftplus.php:4286
1931
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1932
  msgstr ""
1933
 
1934
+ #: src/admin.php:2425
1935
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1936
  msgstr ""
1937
 
1938
+ #: src/methods/updraftvault.php:351
1939
  msgid "Don't know your email address, or forgotten your password?"
1940
  msgstr ""
1941
 
1942
+ #: src/methods/updraftvault.php:344
1943
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1944
  msgstr ""
1945
 
1946
+ #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:337
1947
  msgid "Read the FAQs here."
1948
  msgstr ""
1949
 
1955
  msgid "Server-side encryption"
1956
  msgstr ""
1957
 
1958
+ #: src/methods/updraftvault.php:701
1959
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1960
  msgstr ""
1961
 
1962
+ #: src/admin.php:1010
1963
  msgid "Go to the remote storage settings in order to connect."
1964
  msgstr ""
1965
 
1966
+ #: src/admin.php:1010
1967
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1968
  msgstr ""
1969
 
1970
+ #: src/methods/updraftvault.php:334
1971
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1972
  msgstr ""
1973
 
1987
  msgid "Connecting..."
1988
  msgstr ""
1989
 
1990
+ #: src/methods/updraftvault.php:454, src/methods/updraftvault.php:528
1991
  msgid "Refresh current status"
1992
  msgstr ""
1993
 
1994
+ #: src/methods/updraftvault.php:452, src/methods/updraftvault.php:468,
1995
+ #: src/methods/updraftvault.php:470, src/methods/updraftvault.php:528
1996
  msgid "Get more quota"
1997
  msgstr ""
1998
 
1999
+ #: src/methods/updraftvault.php:449, src/methods/updraftvault.php:465,
2000
+ #: src/methods/updraftvault.php:509
2001
  msgid "Current use:"
2002
  msgstr ""
2003
 
2004
+ #: src/methods/updraftvault.php:444
2005
  msgid "You can get more quota here"
2006
  msgstr ""
2007
 
2008
+ #: src/methods/updraftvault.php:444
2009
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
2010
  msgstr ""
2011
 
2012
+ #: src/admin.php:712, src/methods/updraftvault.php:378,
2013
+ #: src/methods/updraftvault.php:436
2014
  msgid "Disconnect"
2015
  msgstr ""
2016
 
2017
+ #: src/methods/updraftvault.php:375, src/methods/updraftvault.php:428
2018
  msgid "Quota:"
2019
  msgstr ""
2020
 
2021
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2022
  msgid "Vault owner"
2023
  msgstr ""
2024
 
2025
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2026
  msgid "Well done - there's nothing more needed to set up."
2027
  msgstr ""
2028
 
2029
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2030
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
2031
  msgstr ""
2032
 
2033
+ #: src/methods/updraftvault.php:380, src/methods/updraftvault.php:422
2034
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
2035
  msgstr ""
2036
 
2037
+ #: src/methods/updraftvault.php:351
2038
  msgid "Go here for help"
2039
  msgstr ""
2040
 
2041
+ #: src/methods/updraftvault.php:346
2042
  msgid "E-mail"
2043
  msgstr ""
2044
 
2045
+ #: src/central/bootstrap.php:551, src/methods/updraftvault.php:340,
2046
+ #: src/methods/updraftvault.php:354
2047
  msgid "Back..."
2048
  msgstr ""
2049
 
2050
+ #: src/methods/updraftvault.php:334
2051
  msgid "Subscriptions can be cancelled at any time."
2052
  msgstr ""
2053
 
2055
  msgid "Buy it now"
2056
  msgstr ""
2057
 
2058
+ #: src/methods/updraftvault.php:317, src/methods/updraftvault.php:323,
2059
+ #: src/methods/updraftvault.php:329
2060
  msgid "%s per quarter"
2061
  msgstr ""
2062
 
2063
+ #: src/central/bootstrap.php:578, src/methods/updraftvault.php:308,
2064
+ #: src/methods/updraftvault.php:337
2065
  msgid "Read more about it here."
2066
  msgstr ""
2067
 
2068
+ #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:337
2069
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
2070
  msgstr ""
2071
 
2072
+ #: src/methods/updraftvault.php:304
2073
  msgid "Already purchased space?"
2074
  msgstr ""
2075
 
2076
+ #: src/methods/updraftvault.php:301
2077
  msgid "Show the options"
2078
  msgstr ""
2079
 
2080
+ #: src/methods/updraftvault.php:300
2081
  msgid "First time user?"
2082
  msgstr ""
2083
 
2084
+ #: src/methods/updraftvault.php:297, src/methods/updraftvault.php:314
2085
  msgid "Press a button to get started."
2086
  msgstr ""
2087
 
2088
+ #: src/methods/updraftvault.php:297, src/methods/updraftvault.php:314
2089
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
2090
  msgstr ""
2091
 
2105
  msgid "Updraft Vault"
2106
  msgstr ""
2107
 
2108
+ #: src/addons/azure.php:441, src/addons/backblaze.php:491,
2109
+ #: src/addons/googlecloud.php:835, src/methods/s3.php:1138
2110
  msgid "Delete failed:"
2111
  msgstr ""
2112
 
2113
+ #: src/backup.php:3367
2114
  msgid "The zip engine returned the message: %s."
2115
  msgstr ""
2116
 
2130
  msgid "Allow download"
2131
  msgstr ""
2132
 
2133
+ #: src/addons/migrator.php:1922
2134
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
2135
  msgstr ""
2136
 
2137
+ #: src/addons/migrator.php:1907, src/admin.php:721
2138
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
2139
  msgstr ""
2140
 
2141
+ #: src/addons/migrator.php:2410
2142
  msgid "Existing keys"
2143
  msgstr ""
2144
 
2145
+ #: src/addons/migrator.php:2401
2146
  msgid "No keys to allow remote sites to connect have yet been created."
2147
  msgstr ""
2148
 
2149
+ #: src/addons/migrator.php:2383
2150
  msgid "Your new key:"
2151
  msgstr ""
2152
 
2153
+ #: src/addons/migrator.php:2362
2154
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
2155
  msgstr ""
2156
 
2157
+ #: src/addons/migrator.php:2344
2158
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
2159
  msgstr ""
2160
 
2161
+ #: src/addons/migrator.php:2344
2162
  msgid "Keys for this site are created in the section below the one you just pressed in."
2163
  msgstr ""
2164
 
2165
+ #: src/addons/migrator.php:2024, src/central/bootstrap.php:387
2166
  msgid "You must copy and paste this key now - it cannot be shown again."
2167
  msgstr ""
2168
 
2169
+ #: src/addons/migrator.php:2024, src/central/bootstrap.php:387
2170
  msgid "Key created successfully."
2171
  msgstr ""
2172
 
2173
+ #: src/addons/migrator.php:2009
2174
  msgid "A key with this name already exists; you must use a unique name."
2175
  msgstr ""
2176
 
2177
+ #: src/addons/migrator.php:1953
2178
  msgid "Also send this backup to the active remote storage locations"
2179
  msgstr ""
2180
 
2181
+ #: src/addons/migrator.php:1918
2182
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
2183
  msgstr ""
2184
 
2185
+ #: src/addons/migrator.php:1874
2186
  msgid "site not found"
2187
  msgstr ""
2188
 
2189
+ #: src/addons/migrator.php:1859
2190
  msgid "Backup data will be sent to:"
2191
  msgstr ""
2192
 
2193
+ #: src/addons/migrator.php:213
2194
  msgid "Restore an existing backup set onto this site"
2195
  msgstr ""
2196
 
2197
+ #: src/addons/migrator.php:206
2198
  msgid "This site has no backups to restore from yet."
2199
  msgstr ""
2200
 
2206
  msgid "This storage method does not allow downloading"
2207
  msgstr ""
2208
 
2209
+ #: src/admin.php:3794
2210
  msgid "(backup set imported from remote location)"
2211
  msgstr ""
2212
 
2226
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
2227
  msgstr ""
2228
 
2229
+ #: src/addons/migrator.php:1935, src/admin.php:728
2230
  msgid "Testing connection..."
2231
  msgstr ""
2232
 
2246
  msgid "Creating..."
2247
  msgstr ""
2248
 
2249
+ #: src/addons/migrator.php:2361
2250
  msgid "Or, receive a backup from a remote site"
2251
  msgstr ""
2252
 
2253
+ #: src/addons/migrator.php:2350
2254
  msgid "Paste key here"
2255
  msgstr ""
2256
 
2257
+ #: src/addons/migrator.php:2344
2258
  msgid "How do I get a site's key?"
2259
  msgstr ""
2260
 
2261
+ #: src/addons/migrator.php:2344
2262
  msgid "To add a site as a destination for sending to, enter that site's key below."
2263
  msgstr ""
2264
 
2265
+ #: src/addons/migrator.php:2341
2266
  msgid "Or, send a backup to another site"
2267
  msgstr ""
2268
 
2269
+ #: src/addons/migrator.php:2106, src/admin.php:729
2270
  msgid "Send"
2271
  msgstr ""
2272
 
2273
+ #: src/addons/migrator.php:2100, src/admin.php:720
2274
  msgid "Send to site:"
2275
  msgstr ""
2276
 
2277
+ #: src/addons/migrator.php:2098
2278
  msgid "No receiving sites have yet been added."
2279
  msgstr ""
2280
 
2281
+ #: src/addons/migrator.php:2079
2282
  msgid "It is for sending backups to the following site: "
2283
  msgstr ""
2284
 
2285
+ #: src/addons/migrator.php:2079
2286
  msgid "The key was successfully added."
2287
  msgstr ""
2288
 
2289
+ #: src/addons/migrator.php:2063
2290
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2291
  msgstr ""
2292
 
2293
+ #: src/addons/migrator.php:2052, src/addons/migrator.php:2054,
2294
+ #: src/addons/migrator.php:2058
2295
  msgid "The entered key was corrupt - please try again."
2296
  msgstr ""
2297
 
2298
+ #: src/addons/migrator.php:2050
2299
  msgid "The entered key was the wrong length - please try again."
2300
  msgstr ""
2301
 
2302
+ #: src/addons/migrator.php:2040
2303
  msgid "key"
2304
  msgstr ""
2305
 
2306
+ #: src/methods/ftp.php:379
2307
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2308
  msgstr ""
2309
 
2310
+ #: src/methods/ftp.php:377
2311
  msgid "Passive mode"
2312
  msgstr ""
2313
 
2314
+ #: src/methods/ftp.php:372
2315
  msgid "Remote path"
2316
  msgstr ""
2317
 
2318
+ #: src/methods/ftp.php:367
2319
  msgid "FTP password"
2320
  msgstr ""
2321
 
2322
+ #: src/methods/ftp.php:362
2323
  msgid "FTP login"
2324
  msgstr ""
2325
 
2326
+ #: src/methods/ftp.php:357
2327
  msgid "FTP server"
2328
  msgstr ""
2329
 
2330
+ #: src/addons/migrator.php:178
2331
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
2332
  msgstr ""
2333
 
2334
+ #: src/addons/migrator.php:178
2335
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2336
  msgstr ""
2337
 
2339
  msgid "Resetting..."
2340
  msgstr ""
2341
 
2342
+ #: src/addons/migrator.php:2350, src/admin.php:717
2343
  msgid "Add site"
2344
  msgstr ""
2345
 
2367
  msgid "Go here to re-enter your password."
2368
  msgstr ""
2369
 
2370
+ #: src/addons/migrator.php:242
2371
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2372
  msgstr ""
2373
 
2374
+ #: src/addons/migrator.php:213
2375
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2376
  msgstr ""
2377
 
2378
+ #: src/addons/migrator.php:180
2379
  msgid "To restore using any of the backup sets below, press the button."
2380
  msgstr ""
2381
 
2383
  msgid "You have made changes to your settings, and not saved."
2384
  msgstr ""
2385
 
2386
+ #: src/addons/onedrive.php:1089
2387
  msgid "N.B. %s is not case-sensitive."
2388
  msgstr ""
2389
 
2390
+ #: src/addons/onedrive.php:1079
2391
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2392
  msgstr ""
2393
 
2394
+ #: src/addons/azure.php:597, src/addons/migrator.php:1922,
2395
+ #: src/addons/onedrive.php:1052
2396
  msgid "For longer help, including screenshots, follow this link."
2397
  msgstr ""
2398
 
2399
+ #: src/addons/onedrive.php:1045
2400
  msgid "Create OneDrive credentials in your OneDrive developer console."
2401
  msgstr ""
2402
 
2403
+ #: src/addons/onedrive.php:1037
2404
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2405
  msgstr ""
2406
 
2407
+ #: src/addons/azure.php:590
2408
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2409
  msgstr ""
2410
 
2411
+ #: src/addons/onedrive.php:1001, src/addons/onedrive.php:1003
2412
  msgid "%s authorisation failed:"
2413
  msgstr ""
2414
 
2415
+ #: src/addons/onedrive.php:876, src/addons/onedrive.php:1078,
2416
+ #: src/addons/onedrive.php:1082
2417
  msgid "OneDrive"
2418
  msgstr ""
2419
 
2420
+ #: src/addons/onedrive.php:689
2421
  msgid "Please re-authorize the connection to your %s account."
2422
  msgstr ""
2423
 
2424
+ #: src/methods/email.php:87
2425
  msgid "configure it here"
2426
  msgstr ""
2427
 
2428
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666
2429
  msgid "To remove the block, please go here."
2430
  msgstr ""
2431
 
2570
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2571
  msgstr ""
2572
 
2573
+ #: src/methods/s3.php:894
2574
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2575
  msgstr ""
2576
 
2582
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
2583
  msgstr ""
2584
 
2585
+ #: src/addons/onedrive.php:658, src/addons/onedrive.php:682,
2586
+ #: src/methods/updraftvault.php:666, src/udaddons/updraftplus-addons.php:873,
2587
  #: src/udaddons/updraftplus-addons.php:887
2588
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2589
  msgstr ""
2590
 
2591
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666,
2592
  #: src/udaddons/updraftplus-addons.php:887
2593
  msgid "It appears that your web server's IP Address (%s) is blocked."
2594
  msgstr ""
2595
 
2596
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666,
2597
  #: src/udaddons/updraftplus-addons.php:887
2598
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2599
  msgstr ""
2645
  msgid "(at same time as files backup)"
2646
  msgstr ""
2647
 
2648
+ #: src/admin.php:3265
2649
  msgid "No backup has been completed"
2650
  msgstr ""
2651
 
2692
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2693
  msgstr ""
2694
 
2695
+ #: src/addons/sftp.php:452
2696
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2697
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2698
  msgstr ""
2699
 
2700
+ #: src/addons/sftp.php:402
2701
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
2702
  msgstr ""
2703
 
2704
+ #: src/methods/openstack2.php:190
2705
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2706
  msgid "tenant"
2707
  msgstr ""
2708
 
2709
+ #: src/methods/openstack2.php:139
2710
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2711
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2712
  msgstr ""
2719
  msgid "Check this box to have a basic report sent to"
2720
  msgstr ""
2721
 
2722
+ #: src/admin.php:3279
2723
  msgctxt "i.e. Non-automatic"
2724
  msgid "Manual"
2725
  msgstr ""
2737
  msgid "Any other file/directory on your server that you wish to back up"
2738
  msgstr ""
2739
 
2740
+ #: src/admin.php:2442
2741
  msgid "For even more features and personal support, check out "
2742
  msgstr ""
2743
 
2831
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2832
  msgstr ""
2833
 
2834
+ #: src/admin.php:2808, src/admin.php:3825
2835
  msgid "View Log"
2836
  msgstr ""
2837
 
2848
  msgid "and retain this many scheduled backups"
2849
  msgstr ""
2850
 
2851
+ #: src/admin.php:3235
2852
  msgid "incremental backup; base backup: %s"
2853
  msgstr ""
2854
 
2860
  msgid "Upload files into UpdraftPlus."
2861
  msgstr ""
2862
 
2863
+ #: src/admin.php:952, src/includes/class-commands.php:394,
2864
  #: src/templates/wp-admin/settings/tab-status.php:22
2865
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2866
  msgstr ""
2867
 
2868
+ #: src/class-updraftplus.php:4202
2869
  msgid "Backup label:"
2870
  msgstr ""
2871
 
2872
+ #: src/addons/backblaze.php:189, src/admin.php:1953
2873
  msgid "Error: unexpected file read fail"
2874
  msgstr ""
2875
 
2876
+ #: src/backup.php:3373
2877
  msgid "check your log for more details."
2878
  msgstr ""
2879
 
2880
+ #: src/backup.php:3371
2881
  msgid "your web hosting account appears to be full; please see: %s"
2882
  msgstr ""
2883
 
2884
+ #: src/backup.php:3369
2885
  msgid "A zip error occurred"
2886
  msgstr ""
2887
 
2889
  msgid "Your label for this backup (optional)"
2890
  msgstr ""
2891
 
2892
+ #: src/addons/googlecloud.php:977, src/methods/googledrive.php:1161
2893
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
2894
  msgstr ""
2895
 
2896
+ #: src/methods/updraftvault.php:704, src/udaddons/updraftplus-addons.php:926
2897
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2898
  msgstr ""
2899
 
2900
+ #: src/methods/updraftvault.php:701, src/udaddons/updraftplus-addons.php:922
2901
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2902
  msgstr ""
2903
 
2904
+ #: src/methods/updraftvault.php:642, src/udaddons/updraftplus-addons.php:790
2905
  msgid "You need to supply both an email address and a password"
2906
  msgstr ""
2907
 
2909
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2910
  msgstr ""
2911
 
2912
+ #: src/class-updraftplus.php:4221
2913
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2914
  msgstr ""
2915
 
2916
+ #: src/class-updraftplus.php:4221
2917
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2918
  msgstr ""
2919
 
2920
+ #: src/addons/migrator.php:1220
2921
  msgid "already done"
2922
  msgstr ""
2923
 
2924
+ #: src/addons/migrator.php:1177
2925
  msgid "skipped (not in list)"
2926
  msgstr ""
2927
 
2928
+ #: src/addons/migrator.php:1177, src/addons/migrator.php:1220,
2929
+ #: src/addons/migrator.php:1354
2930
  msgid "Search and replacing table:"
2931
  msgstr ""
2932
 
2933
+ #: src/addons/migrator.php:354
2934
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2935
  msgstr ""
2936
 
2937
+ #: src/addons/migrator.php:354
2938
  msgid "These tables only"
2939
  msgstr ""
2940
 
2941
+ #: src/addons/migrator.php:353
2942
  msgid "Rows per batch"
2943
  msgstr ""
2944
 
2950
  msgid "You need to connect to receive future updates to UpdraftPlus."
2951
  msgstr ""
2952
 
2953
+ #: src/class-updraftplus.php:4194
2954
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2955
  msgstr ""
2956
 
2957
+ #: src/class-updraftplus.php:4194
2958
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2959
  msgstr ""
2960
 
2961
+ #: src/class-updraftplus.php:4194
2962
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2963
  msgstr ""
2964
 
2965
+ #: src/class-updraftplus.php:4194
2966
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2967
  msgstr ""
2968
 
2991
  msgid "UpdraftPlus is on social media - check us out!"
2992
  msgstr ""
2993
 
2994
+ #: src/admin.php:3892
2995
  msgid "Why am I seeing this?"
2996
  msgstr ""
2997
 
3003
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
3004
  msgstr ""
3005
 
3006
+ #: src/admin.php:1892, src/admin.php:1904
3007
  msgid "Start backup"
3008
  msgstr ""
3009
 
3010
+ #: src/class-updraftplus.php:4166, src/restorer.php:1045
3011
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
3012
  msgstr ""
3013
 
3014
+ #: src/admin.php:3133
3015
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
3016
  msgstr ""
3017
 
3019
  msgid "Unless you have a problem, you can completely ignore everything here."
3020
  msgstr ""
3021
 
3022
+ #: src/admin.php:2128
3023
  msgid "This file could not be uploaded"
3024
  msgstr ""
3025
 
3026
+ #: src/admin.php:2091
3027
  msgid "You will find more information about this in the Settings section."
3028
  msgstr ""
3029
 
3043
  msgid "Memory limit"
3044
  msgstr ""
3045
 
3046
+ #: src/class-updraftplus.php:4635, src/restorer.php:1529
3047
  msgid "restoration"
3048
  msgstr ""
3049
 
3050
+ #: src/backup.php:1001
3051
  msgid "Incremental"
3052
  msgstr ""
3053
 
3054
+ #: src/backup.php:1001
3055
  msgid "Full backup"
3056
  msgstr ""
3057
 
3067
  msgid "Backup succeeded"
3068
  msgstr ""
3069
 
3070
+ #: src/admin.php:3280, src/admin.php:3281, src/admin.php:3282,
3071
  #: src/updraftplus.php:99, src/updraftplus.php:100
3072
  msgid "Every %s hours"
3073
  msgstr ""
3074
 
3075
+ #: src/addons/migrator.php:871, src/addons/migrator.php:873
3076
  msgid "search and replace"
3077
  msgstr ""
3078
 
3079
+ #: src/addons/migrator.php:356
3080
  msgid "Go"
3081
  msgstr ""
3082
 
3083
+ #: src/addons/migrator.php:345
3084
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
3085
  msgstr ""
3086
 
3087
+ #: src/addons/migrator.php:344
3088
  msgid "This can easily destroy your site; so, use it with care!"
3089
  msgstr ""
3090
 
3091
+ #: src/addons/migrator.php:300, src/addons/migrator.php:352
3092
  msgid "Replace with"
3093
  msgstr ""
3094
 
3095
+ #: src/addons/migrator.php:299, src/addons/migrator.php:351
3096
  msgid "Search for"
3097
  msgstr ""
3098
 
3099
+ #: src/addons/migrator.php:298, src/addons/migrator.php:343,
3100
  #: src/templates/wp-admin/advanced/search-replace.php:7,
3101
  #: src/templates/wp-admin/advanced/tools-menu.php:18
3102
  msgid "Search / replace database"
3103
  msgstr ""
3104
 
3105
+ #: src/addons/migrator.php:304
3106
  msgid "search term"
3107
  msgstr ""
3108
 
3110
  msgid "Too many database errors have occurred - aborting"
3111
  msgstr ""
3112
 
3113
+ #: src/backup.php:1067
3114
  msgid "read more at %s"
3115
  msgstr ""
3116
 
3117
+ #: src/backup.php:1067
3118
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3119
  msgstr ""
3120
 
3121
+ #: src/methods/googledrive.php:1168
3122
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
3123
  msgstr ""
3124
 
3125
+ #: src/admin.php:3636
3126
  msgid "You have not yet made any backups."
3127
  msgstr ""
3128
 
3142
  msgid "Free disk space in account:"
3143
  msgstr ""
3144
 
3145
+ #: src/admin.php:4477, src/templates/wp-admin/settings/tab-status.php:27
3146
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3147
  msgstr ""
3148
 
3149
+ #: src/admin.php:534, src/admin.php:676, src/admin.php:1738,
3150
  #: src/includes/deprecated-actions.php:29,
3151
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3152
  #: src/templates/wp-admin/settings/tab-bar.php:6
3157
  msgid "Current Status"
3158
  msgstr ""
3159
 
3160
+ #: src/admin.php:957
3161
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
3162
  msgstr ""
3163
 
3164
+ #: src/admin.php:957
3165
  msgid "To make a backup, just press the Backup Now button."
3166
  msgstr ""
3167
 
3168
+ #: src/admin.php:957
3169
  msgid "Welcome to UpdraftPlus!"
3170
  msgstr ""
3171
 
3237
  msgid "user"
3238
  msgstr ""
3239
 
3240
+ #: src/class-updraftplus.php:1785
3241
  msgid "External database (%s)"
3242
  msgstr ""
3243
 
3244
+ #: src/methods/googledrive.php:1168
3245
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
3246
  msgstr ""
3247
 
3249
  msgid "failed to access parent folder"
3250
  msgstr ""
3251
 
3252
+ #: src/addons/googlecloud.php:690, src/addons/onedrive.php:844,
3253
+ #: src/addons/onedrive.php:855, src/methods/googledrive.php:420
3254
  msgid "However, subsequent access attempts failed:"
3255
  msgstr ""
3256
 
3257
+ #: src/admin.php:3661
3258
  msgid "External database"
3259
  msgstr ""
3260
 
3286
  msgid "use UpdraftPlus Premium"
3287
  msgstr ""
3288
 
3289
+ #: src/class-updraftplus.php:4048
3290
  msgid "Decryption failed. The database file is encrypted."
3291
  msgstr ""
3292
 
3299
  msgid "An error occurred on the first %s command - aborting run"
3300
  msgstr ""
3301
 
3302
+ #: src/addons/moredatabase.php:105, src/backup.php:1567
3303
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3304
  msgstr ""
3305
 
3306
+ #: src/backup.php:1567
3307
  msgid "database connection attempt failed."
3308
  msgstr ""
3309
 
3310
+ #: src/addons/migrator.php:1108
3311
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3312
  msgstr ""
3313
 
3315
  msgid "In %s, path names are case sensitive."
3316
  msgstr ""
3317
 
3318
+ #: src/addons/azure.php:630, src/addons/google-enhanced.php:76,
3319
+ #: src/addons/onedrive.php:1089
3320
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3321
  msgstr ""
3322
 
3323
+ #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1025,
3324
+ #: src/addons/onedrive.php:1089
3325
  msgid "e.g. %s"
3326
  msgstr ""
3327
 
3328
+ #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1089
3329
  msgid "Enter the path of the %s folder you wish to use here."
3330
  msgstr ""
3331
 
3332
+ #: src/methods/openstack2.php:170
3333
  msgid "Container"
3334
  msgstr ""
3335
 
3336
+ #: src/methods/openstack2.php:153
3337
  msgid "Leave this blank, and a default will be chosen."
3338
  msgstr ""
3339
 
3340
+ #: src/methods/openstack2.php:144
3341
  msgid "Tenant"
3342
  msgstr ""
3343
 
3344
+ #: src/methods/openstack2.php:144
3345
  msgid "Follow this link for more information"
3346
  msgstr ""
3347
 
3348
+ #: src/methods/openstack2.php:136, src/methods/openstack2.php:195
3349
  msgid "authentication URI"
3350
  msgstr ""
3351
 
3352
+ #: src/methods/openstack2.php:120
3353
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
3354
  msgstr ""
3355
 
3369
  msgid "Failed to upload %s"
3370
  msgstr ""
3371
 
3372
+ #: src/methods/dropbox.php:742, src/methods/dropbox.php:744
3373
  msgid "Success:"
3374
  msgstr ""
3375
 
3376
+ #: src/addons/onedrive.php:1110, src/methods/dropbox.php:595
3377
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
3378
  msgstr ""
3379
 
3380
+ #: src/addons/onedrive.php:1102, src/methods/dropbox.php:579
3381
  msgid "(You appear to be already authenticated)."
3382
  msgstr ""
3383
 
3384
+ #: src/methods/dropbox.php:575, src/methods/dropbox.php:583,
3385
+ #: src/methods/dropbox.php:595
3386
  msgid "Dropbox"
3387
  msgstr ""
3388
 
3389
+ #: src/addons/onedrive.php:1095, src/methods/dropbox.php:575
3390
  msgid "Authenticate with %s"
3391
  msgstr ""
3392
 
3417
  msgid "%s error - failed to access the container"
3418
  msgstr ""
3419
 
3420
+ #: src/addons/googlecloud.php:1090, src/addons/onedrive.php:1134,
3421
+ #: src/methods/dropbox.php:638, src/methods/googledrive.php:1246
3422
  msgid "Account holder's name: %s."
3423
  msgstr ""
3424
 
3425
+ #: src/methods/googledrive.php:1224
3426
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3427
  msgstr ""
3428
 
3429
+ #: src/methods/googledrive.php:1211
3430
  msgid "It is an ID number internal to Google Drive"
3431
  msgstr ""
3432
 
3433
+ #: src/methods/googledrive.php:1211
3434
  msgid "<strong>This is NOT a folder name</strong>."
3435
  msgstr ""
3436
 
3437
+ #: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1087,
3438
+ #: src/methods/googledrive.php:1206, src/methods/googledrive.php:1217
3439
  msgid "Folder"
3440
  msgstr ""
3441
 
3442
+ #: src/addons/googlecloud.php:296, src/addons/onedrive.php:426,
3443
+ #: src/methods/googledrive.php:1121
3444
  msgid "%s download: failed: file not found"
3445
  msgstr ""
3446
 
3447
+ #: src/addons/googlecloud.php:710, src/methods/googledrive.php:440
3448
  msgid "Name: %s."
3449
  msgstr ""
3450
 
3473
  msgid "Fetch"
3474
  msgstr ""
3475
 
3476
+ #: src/addons/migrator.php:469,
3477
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3478
  #: src/templates/wp-admin/settings/form-contents.php:190
3479
  msgid "This feature requires %s version %s or later"
3483
  msgid "Failed to unpack the archive"
3484
  msgstr ""
3485
 
3486
+ #: src/class-updraftplus.php:1317
3487
  msgid "Error - failed to download the file"
3488
  msgstr ""
3489
 
3503
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3504
  msgstr ""
3505
 
3506
+ #: src/addons/sftp.php:513
3507
  msgid "password/key"
3508
  msgstr " الرقم السري/المفتاح"
3509
 
3510
+ #: src/addons/migrator.php:2368, src/addons/sftp.php:449, src/admin.php:723,
3511
+ #: src/admin.php:4698
3512
  msgid "Key"
3513
  msgstr "مفتاح"
3514
 
3515
+ #: src/addons/sftp.php:444
3516
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3517
  msgstr "للدخول يجب ادخال إما الرقم السري أو المفتاح، وليس كلاهما."
3518
 
3524
  msgid "SCP/SFTP password/key"
3525
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
3526
 
3527
+ #: src/admin.php:3705
3528
  msgid "Files backup (created by %s)"
3529
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
3530
 
3531
+ #: src/admin.php:3705
3532
  msgid "Files and database WordPress backup (created by %s)"
3533
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
3534
 
3535
+ #: src/addons/importer.php:276, src/admin.php:3699,
3536
  #: src/includes/class-backup-history.php:279
3537
  msgid "Backup created by: %s."
3538
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
3539
 
3540
+ #: src/admin.php:3659
3541
  msgid "Database (created by %s)"
3542
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
3543
 
3544
+ #: src/admin.php:3653, src/admin.php:3701
3545
  msgid "unknown source"
3546
  msgstr "مصدر غير معروف"
3547
 
3553
  msgid "Upload backup files"
3554
  msgstr "رفع ملفات النسخة الإحتياطية"
3555
 
3556
+ #: src/admin.php:2143
3557
  msgid "This backup was created by %s, and can be imported."
3558
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
3559
 
3560
+ #: src/admin.php:986
3561
  msgid "Read this page for a guide to possible causes and how to fix it."
3562
  msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
3563
 
3564
+ #: src/admin.php:986
3565
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3566
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
3567
 
3578
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3579
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3580
 
3581
+ #: src/admin.php:3702, src/includes/class-wpadmin-commands.php:152,
3582
  #: src/restorer.php:1498
3583
  msgid "Backup created by unknown source (%s) - cannot be restored."
3584
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
3591
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3592
  msgstr "هذه النسخة من UpdraftPlus لا تستطيع التعامل مع نوع النسخ الإحتياطية هذا."
3593
 
3594
+ #: src/methods/dropbox.php:377
3595
  msgid "%s returned an unexpected HTTP response: %s"
3596
  msgstr "أبدى %s إجابة HTTP غير متوقعة: %s"
3597
 
3598
+ #: src/addons/sftp.php:983
3599
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3600
  msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير مدعومة من قبل الملفات المسرودة"
3601
 
3602
+ #: src/addons/backblaze.php:543, src/methods/cloudfiles.php:234,
3603
+ #: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
3604
  msgid "No settings were found"
3605
  msgstr "لم يتم العثور على الإعدادات"
3606
 
3612
  msgid "Rescanning remote and local storage for backup sets..."
3613
  msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
3614
 
3615
+ #: src/addons/googlecloud.php:1028, src/addons/googlecloud.php:1041,
3616
  #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
3617
  msgid "(Read more)"
3618
  msgstr "(قراءة المزيد)"
3630
  msgid "Remove"
3631
  msgstr "حذف"
3632
 
3633
+ #: src/methods/s3.php:845
3634
  msgid "Other %s FAQs."
3635
  msgstr "الأسئلة الشائعة %s الأخرى."
3636
 
3638
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3639
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
3640
 
3641
+ #: src/addons/morefiles.php:445, src/admin.php:3384
3642
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3643
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
3644
 
3645
+ #: src/class-updraftplus.php:4635, src/methods/ftp.php:330,
3646
  #: src/restorer.php:1529
3647
  msgid "Your hosting company must enable these functions before %s can work."
3648
  msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
3649
 
3650
+ #: src/class-updraftplus.php:4635, src/methods/ftp.php:330
3651
  msgid "Your web server's PHP installation has these functions disabled: %s."
3652
  msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
3653
 
3654
+ #: src/methods/ftp.php:327
3655
  msgid "encrypted FTP (explicit encryption)"
3656
  msgstr "خادم FTP مشفر (تشفير واضح)"
3657
 
3658
+ #: src/methods/ftp.php:326
3659
  msgid "encrypted FTP (implicit encryption)"
3660
  msgstr "خادم FTP مشفر (تشفير غير واضح)"
3661
 
3662
+ #: src/methods/ftp.php:325
3663
  msgid "regular non-encrypted FTP"
3664
  msgstr "خادم FTP غير مشفر اعتيادي"
3665
 
3717
  msgid "Dismiss from main dashboard (for %s weeks)"
3718
  msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
3719
 
3720
+ #: src/class-updraftplus.php:4685
3721
  msgid "The attempt to undo the double-compression succeeded."
3722
  msgstr "نجاح محاولة التراجع من الضغط المزدوج"
3723
 
3724
+ #: src/class-updraftplus.php:4662, src/class-updraftplus.php:4683
3725
  msgid "The attempt to undo the double-compression failed."
3726
  msgstr "فشل محاولة التراجع من الضغط المزدوج"
3727
 
3728
+ #: src/class-updraftplus.php:4655
3729
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3730
  msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
3731
 
3733
  msgid "Constants"
3734
  msgstr "ثوابت"
3735
 
3736
+ #: src/backup.php:1804
3737
  msgid "Failed to open database file for reading:"
3738
  msgstr "فشل في فتح ملف قاعدة البيانات للقراءة:"
3739
 
3740
+ #: src/backup.php:1615
3741
  msgid "No database tables found"
3742
  msgstr "لم نجد أي جداول لقاعدة البيانات"
3743
 
3744
+ #: src/backup.php:1613
3745
  msgid "please wait for the rescheduled attempt"
3746
  msgstr "فضلا انتظر محاولة إعادة الجدولة"
3747
 
3749
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
3750
  msgstr "لاحظ أن رسائل التحذير استشارية - عملية النسخ الاحتياطي لا تتوقف بالنسبة لهم. بدلا من ذلك، ستوفر لك معلومات قد تجدها مفيدة، أو قد تشير إلى مصدر المشكلة إذا لم تنجح عملية النسخ الاحتياطي."
3751
 
3752
+ #: src/addons/onedrive.php:94, src/methods/dropbox.php:267
3753
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
3754
  msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبقية، لكن الملف الذي نقوم برفعه حجمه %d بايت متبقية (الحجم الكلي: %d بايت)"
3755
 
3758
  msgid "Errors occurred:"
3759
  msgstr "أخطاء حدثت:"
3760
 
3761
+ #: src/admin.php:3911
3762
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3763
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
3764
 
3782
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3783
  msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
3784
 
3785
+ #: src/admin.php:961, src/class-updraftplus.php:822
3786
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3787
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
3788
 
3789
+ #: src/addons/migrator.php:271
3790
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3791
  msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
3792
 
3793
+ #: src/addons/sftp.php:738, src/addons/sftp.php:741,
3794
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
3795
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3796
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
3797
 
3798
+ #: src/addons/moredatabase.php:137, src/admin.php:1482
3799
  msgid "Messages:"
3800
  msgstr "رسائل:"
3801
 
3807
  msgid "The directory does not exist"
3808
  msgstr "المجلد غير متوفر"
3809
 
3810
+ #: src/addons/cloudfiles-enhanced.php:279
3811
  msgid "New User's Email Address"
3812
  msgstr "عنوان بريد إلكتروني جديد للعضو"
3813
 
3814
+ #: src/addons/cloudfiles-enhanced.php:276
3815
  msgid "New User's Username"
3816
  msgstr "اسم مستخدم جديد"
3817
 
3818
+ #: src/addons/cloudfiles-enhanced.php:273
3819
  msgid "Admin API Key"
3820
  msgstr "مفتاح API الخاص بالمدير"
3821
 
3822
+ #: src/addons/cloudfiles-enhanced.php:270
3823
  msgid "Admin Username"
3824
  msgstr "اسم المستخدم للمدير"
3825
 
3826
+ #: src/addons/cloudfiles-enhanced.php:265
3827
  msgid "US or UK Rackspace Account"
3828
  msgstr "حساب الولايات المتحدة أو بريطانيا راك سبيس"
3829
 
3830
+ #: src/addons/cloudfiles-enhanced.php:257
3831
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
3832
  msgstr "قم بإدخال أسم/مفتاح API الخاص بك لخدمة Rackspace (بحيث يمكن مصادقة Rackspace لإنشاء مستخدمين جدد)، وأدخل اسم كستخدم جديد (فريد) وعنوان بريد إلكتروني للمستخدم الجديد واسم الحاوية."
3833
 
3834
+ #: src/addons/cloudfiles-enhanced.php:254
3835
  msgid "Create new API user and container"
3836
  msgstr "خلق مستخدم وحاوية جديدة لمفتاح API "
3837
 
3838
+ #: src/addons/cloudfiles-enhanced.php:192
3839
  msgid "API Key: %s"
3840
  msgstr "مفتاح API: %s"
3841
 
3842
+ #: src/addons/cloudfiles-enhanced.php:192
3843
  msgid "Password: %s"
3844
  msgstr "كلمة السر: %s"
3845
 
3846
+ #: src/addons/cloudfiles-enhanced.php:192, src/addons/s3-enhanced.php:318
3847
  msgid "Username: %s"
3848
  msgstr "اسم المستخدم: %s"
3849
 
3850
+ #: src/addons/cloudfiles-enhanced.php:151,
3851
+ #: src/addons/cloudfiles-enhanced.php:154,
3852
+ #: src/addons/cloudfiles-enhanced.php:158,
3853
+ #: src/addons/cloudfiles-enhanced.php:170,
3854
+ #: src/addons/cloudfiles-enhanced.php:177,
3855
+ #: src/addons/cloudfiles-enhanced.php:181
3856
  msgid "Cloud Files operation failed (%s)"
3857
  msgstr "فشل عملية رفع الملفات للخدمة السحابية (%s)"
3858
 
3859
+ #: src/addons/cloudfiles-enhanced.php:149
3860
  msgid "Conflict: that user or email address already exists"
3861
  msgstr "خطأ: اسم المستخدم أو البريد الإلكتروني مسجل مسبقا"
3862
 
3892
  msgid "Rackspace Cloud Files, enhanced"
3893
  msgstr "تم تعزيز ملفات المستضافة بخدمة Rackspace "
3894
 
3895
+ #: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
3896
+ #: src/methods/cloudfiles.php:493
3897
  msgid "Cloud Files Container"
3898
  msgstr "حاوية الملفات السحابية"
3899
 
3900
+ #: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:488
3901
  msgid "Cloud Files API Key"
3902
  msgstr "مفتاح API للملفات السحابية"
3903
 
3904
+ #: src/methods/cloudfiles-new.php:137
3905
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3906
  msgstr "لإنشاء مستخدم فرعي ومفتاح API جديد لديه صلاحيات الوصول فقط إلى هذه الحاوية، قم بإستخدام هذه الإضافة."
3907
 
3908
+ #: src/methods/cloudfiles-new.php:134
3909
  msgid "Cloud Files Username"
3910
  msgstr "اسم المستخدم للخدمة السحابية"
3911
 
3912
+ #: src/addons/cloudfiles-enhanced.php:47, src/methods/cloudfiles-new.php:166
3913
  msgid "London (LON)"
3914
  msgstr "لندن (LON)"
3915
 
3916
+ #: src/addons/cloudfiles-enhanced.php:46, src/methods/cloudfiles-new.php:165
3917
  msgid "Hong Kong (HKG)"
3918
  msgstr "هونغ كونغ (HKG)"
3919
 
3920
+ #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:164
3921
  msgid "Northern Virginia (IAD)"
3922
  msgstr "ولاية فرجينيا الشمالية (IAD)"
3923
 
3924
+ #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:163
3925
  msgid "Chicago (ORD)"
3926
  msgstr "شيكاغو (ORD)"
3927
 
3928
+ #: src/addons/cloudfiles-enhanced.php:43, src/methods/cloudfiles-new.php:162
3929
  msgid "Sydney (SYD)"
3930
  msgstr "سيدني (SYD)"
3931
 
3932
+ #: src/addons/cloudfiles-enhanced.php:42, src/methods/cloudfiles-new.php:161
3933
  msgid "Dallas (DFW) (default)"
3934
  msgstr "دالاس (DFW) (الافتراضي)"
3935
 
3936
+ #: src/addons/cloudfiles-enhanced.php:282, src/methods/cloudfiles-new.php:124
3937
  msgid "Cloud Files Storage Region"
3938
  msgstr "منطقة الملفات السحابة"
3939
 
3940
+ #: src/methods/cloudfiles-new.php:117
3941
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3942
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية"
3943
 
3944
+ #: src/methods/cloudfiles-new.php:115
3945
  msgid "US or UK-based Rackspace Account"
3946
  msgstr "حساب Rackspace بالولايات المتحدة أو المملكة المتحدة"
3947
 
3948
+ #: src/addons/cloudfiles-enhanced.php:266, src/methods/cloudfiles-new.php:115
3949
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3950
  msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حسابات أمريكية، الحسابات المنشأة بموقع rackspace.co.uk هي حسابات بريطانية "
3951
 
3952
+ #: src/addons/cloudfiles-enhanced.php:147, src/addons/s3-enhanced.php:221,
3953
  #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:484,
3954
  #: src/methods/openstack-base.php:486, src/methods/openstack-base.php:507,
3955
  #: src/methods/openstack2.php:33
3956
  msgid "Authorisation failed (check your credentials)"
3957
  msgstr "فشل التفويض (راجع معلوماتك)"
3958
 
3959
+ #: src/methods/updraftvault.php:616, src/udaddons/options.php:270
3960
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3961
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
3962
 
3972
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3973
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
3974
 
3975
+ #: src/admin.php:673, src/admin.php:4190
3976
  msgid "Error data:"
3977
  msgstr "خطأ بالبيانات:"
3978
 
3979
+ #: src/admin.php:3863
3980
  msgid "Backup does not exist in the backup history"
3981
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
3982
 
3983
+ #: src/admin.php:2743
3984
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3985
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
3986
 
4020
  msgid "Email reports"
4021
  msgstr "تقارير البريد الإلكتروني"
4022
 
4023
+ #: src/class-updraftplus.php:1793, src/class-updraftplus.php:1798
4024
  msgid "%s checksum: %s"
4025
  msgstr "%s الاختباري:%s"
4026
 
4027
+ #: src/class-updraftplus.php:1766, src/class-updraftplus.php:1768
4028
  msgid "files: %s"
4029
  msgstr "ملفات:%s"
4030
 
4036
  msgid "Debugging information"
4037
  msgstr "معلومات التصحيح"
4038
 
4039
+ #: src/addons/reporting.php:222, src/admin.php:3592
4040
  msgid "Uploaded to:"
4041
  msgstr "تحميلها على:"
4042
 
4077
  msgid "%d errors, %d warnings"
4078
  msgstr "%d الأخطاء، %d تحذيرات"
4079
 
4080
+ #: src/addons/onedrive.php:800, src/methods/dropbox.php:726
4081
  msgid "%s authentication"
4082
  msgstr "%s مصادقة"
4083
 
4084
+ #: src/addons/onedrive.php:800, src/class-updraftplus.php:504,
4085
+ #: src/methods/dropbox.php:240, src/methods/dropbox.php:686,
4086
+ #: src/methods/dropbox.php:726, src/methods/dropbox.php:739,
4087
+ #: src/methods/dropbox.php:883
4088
  msgid "%s error: %s"
4089
  msgstr "%s خطأ: %s"
4090
 
4091
+ #: src/addons/googlecloud.php:970, src/methods/dropbox.php:544
4092
  msgid "%s logo"
4093
  msgstr "%s الشعار"
4094
 
4095
+ #: src/methods/dropbox.php:286
4096
  msgid "%s did not return the expected response - check your log file for more details"
4097
  msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
4098
 
4100
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
4101
  msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
4102
 
4103
+ #: src/methods/email.php:88
4104
  msgid "For more options, use the \"%s\" add-on."
4105
  msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\"."
4106
 
4107
+ #: src/methods/email.php:87
4108
  msgid "Your site's admin email address (%s) will be used."
4109
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
4110
 
4111
+ #: src/admin.php:710, src/methods/updraftvault.php:305,
4112
+ #: src/methods/updraftvault.php:348, src/udaddons/options.php:249
4113
  msgid "Connect"
4114
  msgstr "الإتصال"
4115
 
4117
  msgid "For more reporting features, use the Reporting add-on."
4118
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
4119
 
4120
+ #: src/class-updraftplus.php:4129
4121
  msgid "(version: %s)"
4122
  msgstr "(الإصدار: %s)"
4123
 
4130
  msgid "When the Email storage method is enabled, also send the entire backup"
4131
  msgstr "عندما يتم تمكين طريقة تخزين البريد الإلكتروني، قم أيضا بإرسال النسخ الاحتياطي كاملة"
4132
 
4133
+ #: src/addons/reporting.php:181, src/backup.php:1102
4134
  msgid "Latest status:"
4135
  msgstr "آخر التحديثات:"
4136
 
4137
+ #: src/backup.php:1101
4138
  msgid "Backup contains:"
4139
  msgstr "تحتوي النسخة الإحتياطية على:"
4140
 
4141
+ #: src/backup.php:1058
4142
  msgid "Backed up: %s"
4143
  msgstr "نسخ احتياطي: %s"
4144
 
4145
+ #: src/addons/reporting.php:264, src/backup.php:1052
4146
  msgid "The log file has been attached to this email."
4147
  msgstr "تم إرفاق ملف السجل بهذا البريد الإلكتروني."
4148
 
4149
+ #: src/backup.php:1016
4150
  msgid "Unknown/unexpected error - please raise a support request"
4151
  msgstr "خطأ غير معروف / غير متوقع - يرجى رفع طلب دعم"
4152
 
4153
+ #: src/backup.php:1013
4154
  msgid "Database only (files were not part of this particular schedule)"
4155
  msgstr " قاعدة البيانات فقط (لن يتم خلق نسخ احتياطية للملفات)"
4156
 
4157
+ #: src/backup.php:1013
4158
  msgid "Database (files backup has not completed)"
4159
  msgstr "قاعدة بيانات (لم يتم إكمال نسخ الملفات احتياطيا)"
4160
 
4161
+ #: src/backup.php:1010
4162
  msgid "Files only (database was not part of this particular schedule)"
4163
  msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقاعدة البيانات)"
4164
 
4165
+ #: src/backup.php:1010
4166
  msgid "Files (database backup has not completed)"
4167
  msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
4168
 
4169
+ #: src/admin.php:305, src/backup.php:1008
4170
  msgid "Files and database"
4171
  msgstr "ملفات وقواعد البيانات"
4172
 
4173
+ #: src/options.php:185
4174
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4175
  msgstr "(هذا ينطبق على جميع الإضافات للنسخ الاحتياطي لووردبريس ما لم تكن برمجة من أجل التوافق مع تعدد المواقع)."
4176
 
4177
+ #: src/options.php:185
4178
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4179
  msgstr "عند عدم الترقية، سيقوم UpdraftPlus بالسماح <strong>لكل</strong> مدير بالمدونة بالتعديل على خيارات الإضافة للخسن الإحتياطي (وبالتالي الوصول للبيانات، بما في ذلك كلمات السر) وإستعادة (مع امكانية التعديل، مثال: كلمات السر) <strong>الشبكة بالكامل</strong>."
4180
 
4181
+ #: src/options.php:185
4182
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4183
  msgstr "دعم مواقع ووردبريس متعددة، مع امتيازات اضافية، على حساب UpdraftPlus المميز، أو بإضافة المواقع المتعددة."
4184
 
4185
+ #: src/options.php:185
4186
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4187
  msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (شبكة a.k.a.)."
4188
 
4189
+ #: src/options.php:185
4190
  msgid "UpdraftPlus warning:"
4191
  msgstr "تحذير UpdraftPlus :"
4192
 
4230
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4231
  msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
4232
 
4233
+ #: src/methods/updraftvault.php:695, src/methods/updraftvault.php:710,
4234
  #: src/udaddons/updraftplus-addons.php:933
4235
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4236
  msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
4237
 
4238
+ #: src/methods/updraftvault.php:707, src/udaddons/updraftplus-addons.php:929
4239
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4240
  msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
4241
 
4242
+ #: src/methods/updraftvault.php:668, src/udaddons/updraftplus-addons.php:892
4243
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4244
  msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
4245
 
4251
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4252
  msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
4253
 
4254
+ #: src/methods/email.php:88,
4255
  #: src/templates/wp-admin/settings/form-contents.php:251,
4256
  #: src/templates/wp-admin/settings/tab-addons.php:203,
4257
  #: src/templates/wp-admin/settings/tab-addons.php:204
4258
  msgid "Reporting"
4259
  msgstr "التقارير"
4260
 
4261
+ #: src/admin.php:4695
4262
  msgid "Options (raw)"
4263
  msgstr "خيارات (الخام)"
4264
 
4278
  msgid "See also the \"More Files\" add-on from our shop."
4279
  msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
4280
 
4281
+ #: src/backup.php:3360, src/class-updraftplus.php:835
4282
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4283
  msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
4284
 
4285
+ #: src/class-updraftplus.php:819
4286
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4287
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
4288
 
4410
  msgid "Your web-server does not have the %s module installed."
4411
  msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
4412
 
4413
+ #: src/addons/googlecloud.php:1057, src/methods/googledrive.php:1236
4414
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4415
  msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
4416
 
4434
  msgid "Site home:"
4435
  msgstr "الصفحة الرئيسية للموقع:"
4436
 
4437
+ #: src/addons/morestorage.php:112
4438
  msgid "Remote Storage Options"
4439
  msgstr "خيارات التخزين البعيد"
4440
 
4446
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4447
  msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
4448
 
4449
+ #: src/addons/azure.php:418, src/methods/stream-base.php:141,
4450
  #: src/methods/stream-base.php:146
4451
  msgid "Upload failed"
4452
  msgstr "فشل التحميل"
4455
  msgid "You can send a backup to more than one destination with an add-on."
4456
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
4457
 
4458
+ #: src/admin.php:2966
4459
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4460
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
4461
 
4462
+ #: src/admin.php:2865
4463
  msgid "(%s%%, file %s of %s)"
4464
  msgstr "(%s%%, ملف %s من%s)"
4465
 
4468
  msgid "Read more about how this works..."
4469
  msgstr "قراءة المزيد عن كيفية عمل ذلك ..."
4470
 
4471
+ #: src/addons/sftp.php:575
4472
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4473
  msgstr "فشل:تمكنا من تسجيل الدخول، لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
4474
 
4475
+ #: src/addons/sftp.php:573
4476
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4477
  msgstr "فشل:لقد تمكنا من تسجيل الدخول والانتقال إلى الدليل المشار إليه،لكنه فشل في إنشاء ملف في ذلك الموقع بنجاح."
4478
 
4479
+ #: src/addons/sftp.php:475
4480
  msgid "Use SCP instead of SFTP"
4481
  msgstr "استخدام SCP بدلا من SFTP"
4482
 
4500
  msgid "%s settings test result:"
4501
  msgstr "اعدادات نتيجة اختبار %s"
4502
 
4503
+ #: src/admin.php:3767, src/admin.php:3769
4504
  msgid "(Not finished)"
4505
  msgstr "(غير منتهي)"
4506
 
4507
+ #: src/admin.php:3769
4508
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4509
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
4510
 
4516
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4517
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
4518
 
4519
+ #: src/admin.php:2961
4520
  msgid "Job ID: %s"
4521
  msgstr "رقم الوظيفة: %s"
4522
 
4523
+ #: src/admin.php:2946
4524
  msgid "last activity: %ss ago"
4525
  msgstr "آخر نشاط: منذ %ss"
4526
 
4527
+ #: src/admin.php:2945
4528
  msgid "next resumption: %d (after %ss)"
4529
  msgstr "الاستئناف التالي: %d (بعد %ss)"
4530
 
4531
+ #: src/admin.php:2928, src/central/bootstrap.php:428,
4532
+ #: src/central/bootstrap.php:435, src/methods/updraftvault.php:396,
4533
+ #: src/methods/updraftvault.php:430, src/methods/updraftvault.php:515
4534
  msgid "Unknown"
4535
  msgstr "غير معروف"
4536
 
4537
+ #: src/admin.php:2879
4538
  msgid "Backup finished"
4539
  msgstr "الانتهاء من النسخ الاحتياطي"
4540
 
4541
+ #: src/admin.php:2874
4542
  msgid "Waiting until scheduled time to retry because of errors"
4543
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
4544
 
4545
+ #: src/admin.php:2870
4546
  msgid "Pruning old backup sets"
4547
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
4548
 
4549
+ #: src/admin.php:2858
4550
  msgid "Uploading files to remote storage"
4551
  msgstr "تحميل الملفات للمخزن البعيد"
4552
 
4553
+ #: src/admin.php:2926
4554
  msgid "Encrypted database"
4555
  msgstr "قاعدة بيانات مشفرة"
4556
 
4557
+ #: src/admin.php:2918
4558
  msgid "Encrypting database"
4559
  msgstr "تشفير قاعدة البيانات"
4560
 
4561
+ #: src/admin.php:2892
4562
  msgid "Created database backup"
4563
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
4564
 
4565
+ #: src/admin.php:2905
4566
  msgid "table: %s"
4567
  msgstr "الجدول: %s"
4568
 
4569
+ #: src/admin.php:2903
4570
  msgid "Creating database backup"
4571
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
4572
 
4573
+ #: src/admin.php:2853
4574
  msgid "Created file backup zips"
4575
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
4576
 
4577
+ #: src/admin.php:2840
4578
  msgid "Creating file backup zips"
4579
  msgstr "انشاء ملف النسخ الاحتياطى zips"
4580
 
4581
+ #: src/admin.php:2835
4582
  msgid "Backup begun"
4583
  msgstr "بدأ النسخ الاحتياطى"
4584
 
4585
+ #: src/admin.php:2668
4586
  msgid "Backups in progress:"
4587
  msgstr "تقدم النسخ الأحتياطى:"
4588
 
4589
+ #: src/admin.php:965
4590
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
4591
  msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
4592
 
4602
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4603
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
4604
 
4605
+ #: src/class-updraftplus.php:2886
4606
  msgid "The backup has not finished; a resumption is scheduled"
4607
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
4608
 
4609
+ #: src/class-updraftplus.php:2070
4610
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4611
  msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
4612
 
4613
+ #: src/addons/onedrive.php:944,
4614
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4615
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4616
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
4617
 
4618
+ #: src/admin.php:2469
4619
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4620
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
4621
 
4695
  msgid "Support"
4696
  msgstr "الدعم"
4697
 
4698
+ #: src/class-updraftplus.php:4434
4699
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4700
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
4701
 
4702
+ #: src/class-updraftplus.php:4426
4703
  msgid "This database backup is missing core WordPress tables: %s"
4704
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
4705
 
4706
+ #: src/class-updraftplus.php:4187
4707
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4708
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
4709
 
4710
+ #: src/class-updraftplus.php:4186, src/class-updraftplus.php:4193
4711
  msgid "%s version: %s"
4712
  msgstr "%s النسخة: %s"
4713
 
4714
+ #: src/class-updraftplus.php:4065
4715
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4716
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
4717
 
4718
+ #: src/addons/autobackup.php:1053, src/admin.php:800,
4719
  #: src/includes/updraftplus-notices.php:171
4720
  msgid "Be safe with an automatic backup"
4721
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
4722
 
4723
+ #: src/admin.php:2422
4724
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4725
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
4726
 
4768
  msgid "Delete from your web server"
4769
  msgstr "حذف من خادم الويب الخاص بك"
4770
 
4771
+ #: src/admin.php:3739
4772
  msgid "You appear to be missing one or more archives from this multi-archive set."
4773
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
4774
 
4775
+ #: src/admin.php:3736
4776
  msgid "(%d archive(s) in set)."
4777
  msgstr "(%d الأرشيف(s) in set)."
4778
 
4792
  msgid "Error: the server sent an empty response."
4793
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
4794
 
4795
+ #: src/admin.php:2157
4796
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4797
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
4798
 
4828
  msgid "No such backup set exists"
4829
  msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
4830
 
4831
+ #: src/admin.php:1355
4832
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4833
  msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
4834
 
4836
  msgid "Moving unpacked backup into place..."
4837
  msgstr "نقل النسخ الأحتياطى الذى تم فك حزمة الى المكان..."
4838
 
4839
+ #: src/backup.php:3061, src/backup.php:3316
4840
  msgid "Failed to open the zip file (%s) - %s"
4841
  msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4842
 
4844
  msgid "WordPress root directory server path: %s"
4845
  msgstr "مسار جذر الوردبريس فى الخادم: %s"
4846
 
4847
+ #: src/methods/dreamobjects.php:86, src/methods/s3generic.php:102
4848
  msgid "%s end-point"
4849
  msgstr "نقطة النهاية %s "
4850
 
4851
+ #: src/methods/s3.php:822
4852
  msgid "... and many more!"
4853
  msgstr "... وغيرها الكثير!"
4854
 
4855
+ #: src/methods/s3generic.php:59, src/methods/s3generic.php:70,
4856
+ #: src/methods/s3generic.php:81
4857
  msgid "S3 (Compatible)"
4858
  msgstr "S3 (متوافق)"
4859
 
4860
+ #: src/admin.php:1265
4861
  msgid "File is not locally present - needs retrieving from remote storage"
4862
  msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
4863
 
4864
+ #: src/admin.php:4042
4865
  msgid "Looking for %s archive: file name: %s"
4866
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
4867
 
4868
+ #: src/admin.php:4003
4869
  msgid "Final checks"
4870
  msgstr "الفحوصات النهائية"
4871
 
4877
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4878
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
4879
 
4880
+ #: src/admin.php:3373
4881
  msgid "Your wp-content directory server path: %s"
4882
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
4883
 
4893
  msgid "Processing files - please wait..."
4894
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
4895
 
4896
+ #: src/admin.php:4192,
4897
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4898
  msgid "Please consult this FAQ for help on what to do about it."
4899
  msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
4902
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4903
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
4904
 
4905
+ #: src/class-updraftplus.php:4073
4906
  msgid "Failed to open database file."
4907
  msgstr "فشل فى فتح ملف قاعدة البيانات."
4908
 
4909
+ #: src/admin.php:4660
4910
  msgid "Known backups (raw)"
4911
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
4912
 
4918
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4919
  msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
4920
 
4921
+ #: src/admin.php:4062
4922
  msgid "file is size:"
4923
  msgstr "حجم الملف:"
4924
 
4925
+ #: src/addons/googlecloud.php:1020, src/addons/migrator.php:457,
4926
+ #: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:965,
4927
+ #: src/admin.php:2427, src/backup.php:3367, src/class-updraftplus.php:4307,
4928
+ #: src/class-updraftplus.php:4307, src/updraftplus.php:156
4929
  msgid "Go here for more information."
4930
  msgstr "اذهب هنا لمزيد من المعلومات."
4931
 
4933
  msgid "Some files are still downloading or being processed - please wait."
4934
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
4935
 
4936
+ #: src/class-updraftplus.php:4156, src/class-updraftplus.php:4177
4937
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4938
  msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
4939
 
4945
  msgid "Enter in format HH:MM (e.g. 14:22)."
4946
  msgstr "ادخل فى صيغة HH:MM (مثل 14:22)."
4947
 
4948
+ #: src/methods/ftp.php:148
4949
  msgid "%s upload failed"
4950
  msgstr "فشل ارسال الملف %s"
4951
 
4952
+ #: src/methods/ftp.php:121, src/methods/ftp.php:172, src/methods/ftp.php:276
4953
  msgid "%s login failure"
4954
  msgstr "فشل تسجيل الدخول %s"
4955
 
4956
+ #: src/methods/dropbox.php:481
4957
  msgid "You do not appear to be authenticated with %s"
4958
  msgstr "لا يبدو انة تمت المصادقة مع: %s"
4959
 
4960
+ #: src/methods/dropbox.php:448
4961
  msgid "Failed to access %s when deleting (see log file for more)"
4962
  msgstr "فشل الوصول الى %s عند الحذف (تحقق من ملف السجل لمزيد من المعلومات)"
4963
 
4964
+ #: src/methods/dropbox.php:440
4965
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4966
  msgstr "لا يبدو انة لديك التصريح ل %s (لحين الحذف)"
4967
 
4968
+ #: src/methods/dropbox.php:195
4969
  msgid "Dropbox error: %s (see log file for more)"
4970
  msgstr "خطأ فى الأسقاط: %s (تحقق من السجل لمزيد من المعلومات)"
4971
 
4977
  msgid "Error - no such file exists at %s"
4978
  msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
4979
 
4980
+ #: src/addons/azure.php:266, src/methods/addon-base-v2.php:219,
4981
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
4982
+ #: src/methods/googledrive.php:1081, src/methods/openstack-base.php:455,
4983
+ #: src/methods/stream-base.php:295, src/methods/stream-base.php:302,
4984
+ #: src/methods/stream-base.php:334
4985
  msgid "%s Error"
4986
  msgstr "خطأ %s"
4987
 
4989
  msgid "%s error - failed to upload file"
4990
  msgstr "خطأ %s - فشل فى ارسال الملف"
4991
 
4992
+ #: src/class-updraftplus.php:1209, src/methods/cloudfiles.php:211
4993
  msgid "%s error - failed to re-assemble chunks"
4994
  msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
4995
 
5003
  msgid "%s authentication failed"
5004
  msgstr "المصادقة فشلت %s"
5005
 
5006
+ #: src/addons/googlecloud.php:436, src/addons/migrator.php:555,
5007
+ #: src/admin.php:2128, src/admin.php:2149, src/admin.php:2157,
5008
+ #: src/class-updraftplus.php:971, src/class-updraftplus.php:977,
5009
+ #: src/class-updraftplus.php:4046, src/class-updraftplus.php:4048,
5010
+ #: src/class-updraftplus.php:4210, src/class-updraftplus.php:4217,
5011
+ #: src/class-updraftplus.php:4286, src/methods/googledrive.php:381,
5012
  #: src/methods/s3.php:320
5013
  msgid "Error: %s"
5014
  msgstr "خطأ: %s"
5015
 
5016
+ #: src/admin.php:3298
5017
  msgid "Backup directory specified exists, but is <b>not</b> writable."
5018
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
5019
 
5020
+ #: src/admin.php:3296
5021
  msgid "Backup directory specified does <b>not</b> exist."
5022
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
5023
 
5024
+ #: src/admin.php:2973, src/admin.php:3247
5025
  msgid "Warning: %s"
5026
  msgstr "تحذير: %s"
5027
 
5029
  msgid "Last backup job run:"
5030
  msgstr "اخر تشغيل لوظيفة النسخ الأحتياطى:"
5031
 
5032
+ #: src/backup.php:3087
5033
  msgid "A very large file was encountered: %s (size: %s Mb)"
5034
  msgstr "مصادفة ملف كبير جدا: %s (الحجم: %s ميجابايت)"
5035
 
5036
+ #: src/backup.php:2387
5037
  msgid "%s: unreadable file - could not be backed up"
5038
  msgstr "%s: الملف غير قابل للقراءة - لا يمكن ان يتم اجراء النسخ الأحتياطى"
5039
 
5040
+ #: src/backup.php:1704
5041
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
5042
  msgstr "الجدول %s بة عدد كبير من الصفوف (%s) - نأمل ان شركة الأستضافة الخاصة بك تعطيك ما يكفى من الموارد لتفريغ هذا الجدول من النسخة الأحتياطة."
5043
 
5044
+ #: src/backup.php:1825
5045
  msgid "An error occurred whilst closing the final database file"
5046
  msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات النهائي."
5047
 
5048
+ #: src/backup.php:1043
5049
  msgid "Warnings encountered:"
5050
  msgstr "مصادفة تحذيرات:"
5051
 
5052
+ #: src/class-updraftplus.php:2874
5053
  msgid "The backup apparently succeeded (with warnings) and is now complete"
5054
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
5055
 
5056
+ #: src/class-updraftplus.php:848
5057
  msgid "Your free disk space is very low - only %s Mb remain"
5058
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
5059
 
5060
+ #: src/addons/migrator.php:563
5061
  msgid "New site:"
5062
  msgstr "الموقع الجديد:"
5063
 
5064
+ #: src/addons/migrator.php:538
5065
  msgid "Migrated site (from UpdraftPlus)"
5066
  msgstr "المواقع المدمجة (من UpdraftPlus)"
5067
 
5068
+ #: src/addons/migrator.php:478
5069
  msgid "Enter details for where this new site is to live within your multisite install:"
5070
  msgstr "ادخل تفاصيل عن مكان هذا الموقع الجديد ضمن المواقع المتعددة الخاصة بك:"
5071
 
5072
+ #: src/addons/migrator.php:477
5073
  msgid "Information needed to continue:"
5074
  msgstr "المعلومات اللازمة للأستمرار:"
5075
 
5076
+ #: src/addons/migrator.php:421
5077
  msgid "Network activating theme:"
5078
  msgstr "تفعيل ثيم الشبكة:"
5079
 
5080
+ #: src/addons/migrator.php:411
5081
  msgid "Processed plugin:"
5082
  msgstr "المكون الأضافى:"
5083
 
5089
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
5090
  msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
5091
 
5092
+ #: src/methods/s3.php:831
5093
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5094
  msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
5095
 
5096
+ #: src/methods/s3.php:1131
5097
  msgid "Please check your access credentials."
5098
  msgstr "يرجى التحقق من وصول بيانات الأعتماد."
5099
 
5100
+ #: src/addons/s3-enhanced.php:196, src/methods/s3.php:1109
5101
  msgid "The error reported by %s was:"
5102
  msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
5103
 
5105
  msgid "Please supply the requested information, and then continue."
5106
  msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
5107
 
5108
+ #: src/class-updraftplus.php:4228, src/restorer.php:1746
5109
  msgid "Site information:"
5110
  msgstr "معلومات عن الموقع:"
5111
 
5113
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
5114
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
5115
 
5116
+ #: src/admin.php:2422, src/class-updraftplus.php:4221, src/restorer.php:2117
5117
  msgid "Warning:"
5118
  msgstr "تحذير:"
5119
 
5120
+ #: src/class-updraftplus.php:4210, src/class-updraftplus.php:4213,
5121
  #: src/restorer.php:184
5122
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5123
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
5124
 
5125
+ #: src/admin.php:4030
5126
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
5127
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
5128
 
5129
+ #: src/admin.php:3445, src/methods/updraftvault.php:292
5130
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5131
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
5132
 
5165
  msgid "Do you want to migrate or clone/duplicate a site?"
5166
  msgstr "هل تريد ترحيل او استنساخ / تكرار الموقع؟"
5167
 
5168
+ #: src/addons/migrator.php:181
5169
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
5170
  msgstr "<a href=\"%s\"> اقرأ هذة المقالة لمعرفة كيف يتم ذلك خطوة بخطوة.</a>"
5171
 
5181
  msgid "Also delete from remote storage"
5182
  msgstr "حذف ايضاً من التخزين البعيد"
5183
 
5184
+ #: src/admin.php:2695
5185
  msgid "Latest UpdraftPlus.com news:"
5186
  msgstr "اخر اخبار UpdraftPlus.com:"
5187
 
5198
  msgid "News"
5199
  msgstr "اخبار"
5200
 
5201
+ #: src/admin.php:1534, src/includes/class-wpadmin-commands.php:472
5202
  msgid "Backup set not found"
5203
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
5204
 
5228
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5229
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
5230
 
5231
+ #: src/admin.php:981
5232
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
5233
  msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
5234
 
5235
+ #: src/admin.php:981
5236
  msgid "Notice"
5237
  msgstr "لاحظ"
5238
 
5239
+ #: src/backup.php:1025
5240
  msgid "Errors encountered:"
5241
  msgstr "مصادفة اخطاء:"
5242
 
5252
  msgid "Store at"
5253
  msgstr "المتجر فى"
5254
 
5255
+ #: src/addons/migrator.php:1523
5256
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5257
  msgstr "\"%s\" لا يوجد لدية مفتاح اساسى, تحتاج الى تغيرها يدويا فى الصف %s."
5258
 
5259
+ #: src/addons/migrator.php:1397
5260
  msgid "rows: %d"
5261
  msgstr "الصفوف: %d"
5262
 
5263
+ #: src/addons/migrator.php:1271
5264
  msgid "Time taken (seconds):"
5265
  msgstr "الوقت المستغرق (ثانية):"
5266
 
5267
+ #: src/addons/migrator.php:1270, src/admin.php:671
5268
  msgid "Errors:"
5269
  msgstr "الأخطاء:"
5270
 
5271
+ #: src/addons/migrator.php:1269
5272
  msgid "SQL update commands run:"
5273
  msgstr "تشغيل اوامر تحديث SQL:"
5274
 
5275
+ #: src/addons/migrator.php:1268
5276
  msgid "Changes made:"
5277
  msgstr "التغييرات التي تم إجراؤها:"
5278
 
5279
+ #: src/addons/migrator.php:1267
5280
  msgid "Rows examined:"
5281
  msgstr "فحص الصفوف:"
5282
 
5283
+ #: src/addons/migrator.php:1266
5284
  msgid "Tables examined:"
5285
  msgstr "فحص الجداول:"
5286
 
5287
+ #: src/addons/migrator.php:1155
5288
  msgid "Could not get list of tables"
5289
  msgstr "لا يمكن الحصول على قائمة الجداول"
5290
 
5291
+ #: src/addons/migrator.php:1100
5292
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5293
  msgstr "تحذير: رابط موقع قواعد البيانات (%s) يختلف عن ما كنا نتوقعة (%s)"
5294
 
5295
+ #: src/addons/migrator.php:1089
5296
  msgid "Nothing to do: the site URL is already: %s"
5297
  msgstr "لا شئ لعملة: رابط الموقع بالفعل: %s"
5298
 
5299
+ #: src/addons/migrator.php:1053, src/addons/migrator.php:1057,
5300
+ #: src/addons/migrator.php:1061, src/addons/migrator.php:1066,
5301
+ #: src/addons/migrator.php:1070, src/addons/migrator.php:1075
5302
  msgid "Error: unexpected empty parameter (%s, %s)"
5303
  msgstr "خطأ: معلمة فارغة غير متوقعة (%s, %s)"
5304
 
5305
+ #: src/addons/migrator.php:1013
5306
  msgid "Database: search and replace site URL"
5307
  msgstr "قاعدة البيانات: بحث واستبدال عنوان الموقع"
5308
 
5309
+ #: src/addons/migrator.php:873, src/addons/migrator.php:1252
5310
  msgid "Failed: we did not understand the result returned by the %s operation."
5311
  msgstr "فشل: لم نستطع فهم نتيجة العملية بواسطة %s ."
5312
 
5313
+ #: src/addons/migrator.php:871, src/addons/migrator.php:1250
5314
  msgid "Failed: the %s operation was not able to start."
5315
  msgstr "فشل: العملية %s لم تكن قادرة على البدأ."
5316
 
5317
+ #: src/addons/migrator.php:530
5318
  msgid "Search and replace site location in the database (migrate)"
5319
  msgstr "بحث واستبدال قاعدة البيانات فى الموقع (ترحيل)"
5320
 
5321
+ #: src/addons/migrator.php:530
5322
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5323
  msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
5324
 
5325
+ #: src/addons/multisite.php:648
5326
  msgid "Blog uploads"
5327
  msgstr "مدونة الملفات المرفوعة"
5328
 
5329
+ #: src/addons/migrator.php:463, src/addons/multisite.php:641
5330
  msgid "Must-use plugins"
5331
  msgstr "لابد من استخدام الأضافات"
5332
 
5333
+ #: src/addons/multisite.php:173
5334
  msgid "Multisite Install"
5335
  msgstr "تثبيت الموقع المتعدد"
5336
 
5338
  msgid "starting from next time it is"
5339
  msgstr "ابتداء من المرة القادمة انها"
5340
 
5341
+ #: src/addons/sftp.php:518
5342
  msgid "Failure: Port must be an integer."
5343
  msgstr "فشل: المنفذ يجب ان يكون عدد صحيح."
5344
 
5345
+ #: src/methods/ftp.php:411, src/methods/openstack2.php:185
5346
  msgid "password"
5347
  msgstr "كلمة السر"
5348
 
5349
+ #: src/addons/sftp.php:509, src/methods/openstack2.php:180
5350
  msgid "username"
5351
  msgstr "اسم المستخدم"
5352
 
5353
+ #: src/addons/sftp.php:505
5354
  msgid "host name"
5355
  msgstr "اسم المضيف"
5356
 
5357
+ #: src/addons/sftp.php:468
5358
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5359
  msgstr "حيث لتغير الدليل الى بعد تسجيل الدخول - غالبا ما يكون هذا هو نسبة الى الدليل الرئيسى الخاص بك."
5360
 
5361
+ #: src/addons/sftp.php:466
5362
  msgid "Directory path"
5363
  msgstr "مسار الدليل"
5364
 
5365
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5366
+ #: src/addons/sftp.php:441, src/addons/webdav.php:181,
5367
+ #: src/methods/openstack2.php:164, src/methods/updraftvault.php:347,
5368
  #: src/udaddons/options.php:135
5369
  msgid "Password"
5370
  msgstr "كلمة السر"
5371
 
5372
+ #: src/addons/sftp.php:427, src/addons/webdav.php:195
5373
  msgid "Port"
5374
  msgstr "المنفذ"
5375
 
5376
+ #: src/addons/moredatabase.php:244, src/addons/sftp.php:420,
5377
+ #: src/addons/webdav.php:187
5378
  msgid "Host"
5379
  msgstr "الاستضافة"
5380
 
5382
  msgid "%s Error: Failed to download"
5383
  msgstr "خطأ %s: فشل التحميل"
5384
 
5385
+ #: src/addons/sftp.php:550
5386
  msgid "Check your file permissions: Could not successfully create and enter:"
5387
  msgstr "تحقق من أذونات الملف الخاص بك: تعذر الإنشاء والدخول بنجاح :"
5388
 
5426
  msgid "WordPress Core"
5427
  msgstr "لب الووردبريس"
5428
 
5429
+ #: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:364
5430
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5431
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
5432
 
5433
+ #: src/addons/googlecloud.php:768, src/addons/googlecloud.php:802,
5434
+ #: src/addons/googlecloud.php:808, src/addons/sftp.php:536, src/admin.php:3029,
5435
+ #: src/admin.php:3064, src/admin.php:3073, src/methods/addon-base-v2.php:299,
5436
+ #: src/methods/stream-base.php:350
5437
  msgid "Failed"
5438
  msgstr "فشل"
5439
 
5440
+ #: src/addons/webdav.php:157
5441
  msgid "WebDAV URL"
5442
  msgstr "رابط WEBDAV"
5443
 
5444
+ #: src/methods/stream-base.php:334
5445
  msgid "Local write failed: Failed to download"
5446
  msgstr "فشلت الكتابة المحلية: فشل تحميل"
5447
 
5448
+ #: src/methods/stream-base.php:302
5449
  msgid "Error opening remote file: Failed to download"
5450
  msgstr "خطأ في فتح الملف : فشل في التحميل"
5451
 
5456
  #: src/addons/googlecloud.php:322, src/addons/sftp.php:45,
5457
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
5458
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5459
+ #: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
5460
  #: src/methods/googledrive.php:182, src/methods/googledrive.php:184,
5461
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:161,
5462
  #: src/methods/stream-base.php:167, src/methods/stream-base.php:201,
5463
+ #: src/methods/stream-base.php:276
5464
  msgid "No %s settings were found"
5465
  msgstr "تم العثور على أية إعدادات %s"
5466
 
5467
+ #: src/methods/ftp.php:433
5468
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5469
  msgstr "فشل: نجحنا في تسجيل الدخول، لكن لا يمكننا إنشاء ملف في الدليل المعطى."
5470
 
5471
+ #: src/methods/ftp.php:430
5472
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5473
  msgstr "نجاح: نجحنا في تسجيل الدخول، وتأكيد قدرتنا على إنشاء ملف في الدليل المعطى (نوع تسجيل الدخول:"
5474
 
5475
+ #: src/methods/ftp.php:421
5476
  msgid "Failure: we did not successfully log in with those credentials."
5477
  msgstr "خطأ: لم نتمكن من تسجيل الدخول بنجاح."
5478
 
5479
+ #: src/methods/ftp.php:403
5480
  msgid "Failure: No server details were given."
5481
  msgstr "خطأ: ولم تعط أية تفاصيل خادم."
5482
 
5483
+ #: src/methods/ftp.php:373
5484
  msgid "Needs to already exist"
5485
  msgstr "يحتاج إلى وجود بالفعل"
5486
 
5487
+ #: src/methods/ftp.php:336
5488
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5489
  msgstr "إذا كنت تريد تشفير (على سبيل المثال كنت تخزن بيانات الأعمال الحساسة)، فهناك اضافة متاحة لهذا الغرض."
5490
 
5491
+ #: src/addons/onedrive.php:838, src/methods/dropbox.php:757
5492
  msgid "Your %s account name: %s"
5493
  msgstr "اسم الحساب %s الخاص بك: %s"
5494
 
5495
+ #: src/methods/dropbox.php:747, src/methods/dropbox.php:769
5496
  msgid "though part of the returned information was not as expected - your mileage may vary"
5497
  msgstr "على الرغم من أن جزء من المعلومات الذي عاد لم يكن كما هو متوقع - الأميال الخاص بك قد تختلف"
5498
 
5499
+ #: src/methods/dropbox.php:742, src/methods/dropbox.php:744
5500
  msgid "you have authenticated your %s account"
5501
  msgstr "تم المصادقة على %s حسابك"
5502
 
5503
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5504
  msgid "there's an add-on for that."
5505
  msgstr "هناك اضافة لذلك."
5506
 
5507
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5508
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5509
  msgstr "اذا كنت تستخدم النسخ الأحتياطى لعدة مواقع فى نفس الدروب بوكس وتريد ان تقوم بتنظيمها مع المجلدات الفرعية, اذا"
5510
 
5511
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5512
  msgid "Backups are saved in"
5513
  msgstr "يتم حفظ النسخ الأحتياطية فى"
5514
 
5515
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5516
  msgid "Need to use sub-folders?"
5517
  msgstr "هل تحتاج الى استخدام المجلدات الفرعية؟"
5518
 
5519
+ #: src/methods/dropbox.php:284, src/methods/dropbox.php:305,
5520
+ #: src/methods/dropbox.php:321
5521
  msgid "error: failed to upload file to %s (see log file for more)"
5522
  msgstr "خطأ: فشل فى رفع الملف الى %s (انظر السجل لمزيد من التفاصيل)"
5523
 
5524
+ #: src/methods/dropbox.php:173, src/methods/dropbox.php:190
5525
  msgid "You do not appear to be authenticated with Dropbox"
5526
  msgstr "لا يبدو ان المصادقة مع Dropbox"
5527
 
5528
+ #: src/methods/s3.php:1126
5529
  msgid "The communication with %s was not encrypted."
5530
  msgstr "التواصل مع %s كان غير مشفر."
5531
 
5532
+ #: src/methods/s3.php:1124
5533
  msgid "The communication with %s was encrypted."
5534
  msgstr "التواصل مع %s كان مشفر."
5535
 
5536
+ #: src/addons/googlecloud.php:831, src/methods/s3.php:1121
5537
  msgid "We accessed the bucket, and were able to create files within it."
5538
  msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
5539
 
5540
+ #: src/addons/googlecloud.php:825, src/addons/googlecloud.php:839,
5541
+ #: src/methods/s3.php:1119, src/methods/s3.php:1131
5542
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5543
  msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
5544
 
5545
+ #: src/addons/googlecloud.php:825, src/addons/googlecloud.php:839,
5546
+ #: src/methods/s3.php:1119, src/methods/s3.php:1131
5547
  msgid "Failure"
5548
  msgstr "فشل"
5549
 
5550
+ #: src/methods/s3.php:1107
5551
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5552
  msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
5553
 
5554
+ #: src/addons/s3-enhanced.php:169, src/methods/openstack2.php:150,
5555
+ #: src/methods/s3.php:1101
5556
  msgid "Region"
5557
  msgstr "المنطقة"
5558
 
5559
+ #: src/addons/googlecloud.php:118, src/addons/googlecloud.php:785,
5560
+ #: src/methods/s3.php:1083
5561
  msgid "Failure: No bucket details were given."
5562
  msgstr "فشل: لم ترد تفاصيل الباكت."
5563
 
5564
+ #: src/methods/s3.php:1061
5565
  msgid "API secret"
5566
  msgstr "API السرية"
5567
 
5568
+ #: src/methods/s3.php:909
5569
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5570
  msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
5571
 
5572
+ #: src/methods/s3.php:908
5573
  msgid "%s location"
5574
  msgstr "المكان %s"
5575
 
5576
+ #: src/methods/s3.php:904
5577
  msgid "%s secret key"
5578
  msgstr "المفتاح السرى %s"
5579
 
5580
+ #: src/methods/s3.php:900
5581
  msgid "%s access key"
5582
  msgstr "مفتاح الوصول %s"
5583
 
5584
+ #: src/methods/s3.php:843
5585
  msgid "If you see errors about SSL certificates, then please go here for help."
5586
  msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
5587
 
5588
+ #: src/methods/s3.php:841
5589
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5590
  msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
5591
 
5618
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5619
  msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
5620
 
5621
+ #: src/methods/email.php:83
5622
  msgid "Note:"
5623
  msgstr "ملاحظة:"
5624
 
5626
  msgid "WordPress Backup"
5627
  msgstr "نسخ ووردريس احتياطيا"
5628
 
5629
+ #: src/methods/cloudfiles.php:571, src/methods/openstack-base.php:530
5630
  msgid "We accessed the container, and were able to create files within it."
5631
  msgstr "تم الوصول إلى الحاوية، ويمكننا إنشاء ملف داخلها "
5632
 
5633
+ #: src/methods/cloudfiles.php:567
5634
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5635
  msgstr "خطأ بملفات السحابة - تم الوصول إلى الحاوية، لكننا فشلنا في إنشاء ملف داخلها"
5636
 
5637
+ #: src/methods/cloudfiles.php:540, src/methods/openstack-base.php:472
5638
  msgid "Failure: No container details were given."
5639
  msgstr "خطأ: ولم تعط أية تفاصيل عن الحاوية."
5640
 
5641
+ #: src/addons/moredatabase.php:245, src/addons/sftp.php:434,
5642
+ #: src/addons/webdav.php:175, src/methods/cloudfiles-new.php:184,
5643
+ #: src/methods/cloudfiles.php:520, src/methods/openstack2.php:158
5644
  msgid "Username"
5645
  msgstr "اسم المستخدم"
5646
 
5647
+ #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles.php:515,
5648
+ #: src/methods/s3.php:1057
5649
  msgid "API key"
5650
  msgstr "مفتاح API"
5651
 
5652
+ #: src/addons/migrator.php:304, src/addons/migrator.php:2040,
5653
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5654
+ #: src/addons/moredatabase.php:86, src/addons/sftp.php:505,
5655
+ #: src/addons/sftp.php:509, src/addons/sftp.php:513, src/addons/webdav.php:241,
5656
+ #: src/admin.php:724, src/methods/addon-base-v2.php:291,
5657
+ #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles-new.php:184,
5658
+ #: src/methods/cloudfiles.php:515, src/methods/cloudfiles.php:520,
5659
+ #: src/methods/ftp.php:407, src/methods/ftp.php:411,
5660
+ #: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
5661
+ #: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
5662
+ #: src/methods/s3.php:1057, src/methods/s3.php:1061
5663
  msgid "Failure: No %s was given."
5664
  msgstr "فضل: لم تعطى أية %s."
5665
 
5666
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
5667
+ #: src/methods/openstack-base.php:571, src/methods/s3.php:835
5668
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5669
  msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
5670
 
5671
+ #: src/methods/cloudfiles.php:484
5672
  msgid "Cloud Files username"
5673
  msgstr "سحابة ملفات المستخدم"
5674
 
5675
+ #: src/addons/cloudfiles-enhanced.php:38, src/methods/cloudfiles-new.php:119,
5676
+ #: src/methods/cloudfiles.php:467
5677
  msgid "UK"
5678
  msgstr "المملكة المتحدة"
5679
 
5680
+ #: src/addons/cloudfiles-enhanced.php:37, src/methods/cloudfiles-new.php:118,
5681
+ #: src/methods/cloudfiles.php:466
5682
  msgid "US (default)"
5683
  msgstr "الولايات المتحدة (افتراضى)"
5684
 
5685
+ #: src/methods/cloudfiles.php:463
5686
  msgid "US or UK Cloud"
5687
  msgstr "سحابة الولايات المتحدة او المملكة المتحدة"
5688
 
5689
+ #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446,
5690
+ #: src/methods/openstack2.php:120
5691
  msgid "Also, you should read this important FAQ."
5692
  msgstr "أيضا، يجب عليك قراءة هذا التعليمات الهامة."
5693
 
5694
+ #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446
5695
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5696
  msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\">من خدمة Rackspace Cloud </a> (يمكن قراءة التعليمات <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">هنا</a>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
5697
 
5698
+ #: src/admin.php:747, src/methods/backup-module.php:311
5699
  msgid "Test %s Settings"
5700
  msgstr "اختبار %s الإعدادات"
5701
 
5702
+ #: src/class-updraftplus.php:1249, src/class-updraftplus.php:1293,
5703
+ #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:295
5704
  msgid "Error opening local file: Failed to download"
5705
  msgstr "خطأ في فتح ملف محلي: فشل التحميل"
5706
 
5716
  msgstr "%s خطأ: فشل في تحميل"
5717
 
5718
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
5719
+ #: src/class-updraftplus.php:1107, src/methods/cloudfiles.php:130,
5720
+ #: src/methods/googledrive.php:999, src/methods/googledrive.php:1004
5721
  msgid "%s Error: Failed to open local file"
5722
  msgstr "%s خطأ: فشل في فتح ملف محلي"
5723
 
5726
  msgid "Cloud Files error - failed to create and access the container"
5727
  msgstr "خطأ ملفات السحابة - فشل في إنشاء والوصول إلى الحاوية"
5728
 
5729
+ #: src/addons/cloudfiles-enhanced.php:107,
5730
+ #: src/addons/cloudfiles-enhanced.php:120,
5731
+ #: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:550,
5732
+ #: src/methods/cloudfiles.php:553, src/methods/cloudfiles.php:556
5733
  msgid "Cloud Files authentication failed"
5734
  msgstr "فشل المصادقة بملفات سحابة"
5735
 
5736
+ #: src/addons/googlecloud.php:1066, src/methods/googledrive.php:1253
5737
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5738
  msgstr "<strong>بعد</strong> حفظ خياراتك (بالضغط على زر 'حفظ التغيرات' أدناه)، قم بالرجوع مرة أخرى هنا وقم بزيارة الرابط لإكمال عملية المصادقة مه جوجل."
5739
 
5740
+ #: src/methods/googledrive.php:1231
5741
  msgid "Authenticate with Google"
5742
  msgstr "المصادقة مع جوجل"
5743
 
5744
+ #: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1082,
5745
+ #: src/methods/googledrive.php:1195
5746
  msgid "Client Secret"
5747
  msgstr "سر العميل"
5748
 
5749
+ #: src/addons/googlecloud.php:1008, src/methods/googledrive.php:1192
5750
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5751
  msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
5752
 
5753
+ #: src/addons/googlecloud.php:1005, src/addons/onedrive.php:1078,
5754
+ #: src/methods/googledrive.php:1191
5755
  msgid "Client ID"
5756
  msgstr "معرف العميل"
5757
 
5758
+ #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1168
5759
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5760
  msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
5761
 
5762
+ #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1168
5763
  msgid "Select 'Web Application' as the application type."
5764
  msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
5765
 
5766
+ #: src/addons/googlecloud.php:981, src/methods/googledrive.php:1166
5767
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5768
  msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
5769
 
 
 
 
 
 
 
 
5770
  #: src/addons/googlecloud.php:505, src/addons/googlecloud.php:506,
5771
+ #: src/addons/googlecloud.php:858, src/methods/googledrive.php:545,
5772
  #: src/methods/googledrive.php:546, src/methods/googledrive.php:556,
5773
  #: src/methods/googledrive.php:557
5774
  msgid "Account is not authorized."
5788
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5789
  msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
5790
 
5791
+ #: src/addons/googlecloud.php:710, src/addons/onedrive.php:876,
5792
  #: src/methods/googledrive.php:440
5793
  msgid "you have authenticated your %s account."
5794
  msgstr "لديك حساب %s مصادق عليه."
5795
 
5796
+ #: src/addons/googlecloud.php:710, src/addons/googlecloud.php:831,
5797
+ #: src/addons/onedrive.php:876, src/addons/sftp.php:570,
5798
+ #: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:571,
5799
  #: src/methods/googledrive.php:440, src/methods/openstack-base.php:530,
5800
+ #: src/methods/s3.php:1121, src/methods/stream-base.php:361
5801
  msgid "Success"
5802
  msgstr "نجاح"
5803
 
5804
+ #: src/addons/onedrive.php:830, src/methods/dropbox.php:780,
5805
+ #: src/methods/dropbox.php:789, src/methods/googledrive.php:414
5806
  msgid "Your %s quota usage: %s %% used, %s available"
5807
  msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
5808
 
5833
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5834
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
5835
 
5836
+ #: src/addons/migrator.php:1935, src/admin.php:1293, src/admin.php:3032,
5837
+ #: src/admin.php:3066, src/admin.php:3070, src/admin.php:4060,
5838
  #: src/restorer.php:2358, src/restorer.php:2463
5839
  msgid "OK"
5840
  msgstr "حسنا"
5843
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5844
  msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
5845
 
5846
+ #: src/addons/migrator.php:1285, src/restorer.php:2254
5847
  msgid "the database query being run was:"
5848
  msgstr "ادارة استعلام قاعدة البيانات كانت في:"
5849
 
5851
  msgid "will restore as:"
5852
  msgstr "إستعادة على النحو التالي:"
5853
 
5854
+ #: src/class-updraftplus.php:4199, src/restorer.php:1728,
5855
  #: src/restorer.php:1817, src/restorer.php:1843
5856
  msgid "Old table prefix:"
5857
  msgstr "بادئة الجدول القديمة:"
5858
 
5859
  #: src/addons/reporting.php:70, src/addons/reporting.php:180,
5860
+ #: src/backup.php:1099, src/class-updraftplus.php:4129
5861
  msgid "Backup of:"
5862
  msgstr "نسخة احتياطية لـ:"
5863
 
5929
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5930
  msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
5931
 
5932
+ #: src/admin.php:4068, src/admin.php:4069
5933
  msgid "Could not find one of the files for restoration"
5934
  msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
5935
 
5936
+ #: src/admin.php:4182
5937
  msgid "Error message"
5938
  msgstr "رسالة الخطأ"
5939
 
5940
+ #: src/admin.php:4065
5941
  msgid "The backup records do not contain information about the proper size of this file."
5942
  msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
5943
 
5944
+ #: src/admin.php:4057
5945
  msgid "Archive is expected to be size:"
5946
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
5947
 
5948
+ #: src/admin.php:3955
5949
  msgid "If making a request for support, please include this information:"
5950
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
5951
 
5952
+ #: src/admin.php:3954
5953
  msgid "ABORT: Could not find the information on which entities to restore."
5954
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
5955
 
5956
+ #: src/admin.php:3909
5957
  msgid "UpdraftPlus Restoration: Progress"
5958
  msgstr "استرجاع UpdraftPlus: تقدم"
5959
 
5960
+ #: src/admin.php:3862
5961
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5962
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
5963
 
5964
+ #: src/admin.php:3797
5965
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5966
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
5967
 
5968
+ #: src/admin.php:3815
5969
  msgid "Delete this backup set"
5970
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
5971
 
5972
+ #: src/admin.php:3457
5973
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5974
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
5975
 
5976
+ #: src/admin.php:3454
5977
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5978
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
5979
 
5980
+ #: src/admin.php:3452
5981
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5982
  msgstr ""
5983
 
5984
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
5985
+ #: src/methods/openstack-base.php:571, src/methods/s3.php:835
5986
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5987
  msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
5988
 
6018
  msgid "Use the server's SSL certificates"
6019
  msgstr "استخدام شهادات SSL للملقم"
6020
 
6021
+ #: src/admin.php:3300
6022
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
6023
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
6024
 
6025
+ #: src/admin.php:3300
6026
  msgid "click here"
6027
  msgstr "انقر هنا"
6028
 
6029
+ #: src/admin.php:3300
6030
  msgid "or, to reset this option"
6031
  msgstr "أو، لإعادة هذا الخيار"
6032
 
6033
+ #: src/admin.php:3300
6034
  msgid "Follow this link to attempt to create the directory and set the permissions"
6035
  msgstr ""
6036
 
6037
+ #: src/admin.php:3292
6038
  msgid "Backup directory specified is writable, which is good."
6039
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
6040
 
6074
  msgid "Cancel"
6075
  msgstr "إلغاء"
6076
 
6077
+ #: src/addons/reporting.php:244, src/admin.php:3604
6078
  msgid "None"
6079
  msgstr "لا شيء"
6080
 
6099
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6100
  msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
6101
 
6102
+ #: src/addons/morefiles.php:443, src/admin.php:3382
6103
  msgid "Exclude these:"
6104
  msgstr "استبعاد هذه:"
6105
 
6106
+ #: src/admin.php:3373
6107
  msgid "Any other directories found inside wp-content"
6108
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
6109
 
6119
  msgid "To fix the time at which a backup should take place,"
6120
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
6121
 
6122
+ #: src/admin.php:3286
6123
  msgid "Monthly"
6124
  msgstr "شهريا"
6125
 
6126
+ #: src/admin.php:3285
6127
  msgid "Fortnightly"
6128
  msgstr "نصف شهري"
6129
 
6130
+ #: src/admin.php:3284
6131
  msgid "Weekly"
6132
  msgstr "أسبوعيا"
6133
 
6134
+ #: src/admin.php:3283
6135
  msgid "Daily"
6136
  msgstr "يوميا"
6137
 
6138
+ #: src/admin.php:706, src/admin.php:3261
6139
  msgid "Download log file"
6140
  msgstr "تحميل ملف السجل"
6141
 
6142
+ #: src/admin.php:3133
6143
  msgid "The folder exists, but your webserver does not have permission to write to it."
6144
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
6145
 
6146
+ #: src/admin.php:3128
6147
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
6148
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
6149
 
6150
+ #: src/admin.php:3114
6151
  msgid "The request to the filesystem to create the directory failed."
6152
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
6153
 
6154
+ #: src/addons/migrator.php:2413, src/admin.php:700, src/admin.php:3026,
6155
+ #: src/admin.php:3059, src/admin.php:3815,
6156
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6157
  msgid "Delete"
6158
  msgstr "حذف"
6159
 
6160
+ #: src/admin.php:2964
6161
  msgid "show log"
6162
  msgstr "عرض السجل"
6163
 
6270
  msgid "Do read this helpful article of useful things to know before restoring."
6271
  msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
6272
 
6273
+ #: src/class-updraftplus.php:4159
6274
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
6275
  msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
6276
 
6314
  msgid "Download error: the server sent us a response which we did not understand."
6315
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
6316
 
6317
+ #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:110,
6318
+ #: src/addons/migrator.php:858, src/addons/migrator.php:1155,
6319
+ #: src/addons/migrator.php:1236, src/addons/migrator.php:1285,
6320
+ #: src/addons/migrator.php:1523, src/addons/migrator.php:1874,
6321
+ #: src/addons/migrator.php:1901, src/addons/migrator.php:1907,
6322
+ #: src/addons/migrator.php:1969, src/addons/migrator.php:2009,
6323
+ #: src/addons/migrator.php:2048, src/addons/migrator.php:2058,
6324
+ #: src/addons/migrator.php:2063, src/addons/s3-enhanced.php:144,
6325
  #: src/addons/s3-enhanced.php:149, src/addons/s3-enhanced.php:151,
6326
+ #: src/addons/sftp.php:834, src/addons/webdav.php:191, src/admin.php:87,
6327
+ #: src/admin.php:674, src/admin.php:4062, src/admin.php:4092,
6328
  #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6329
+ #: src/methods/updraftvault.php:513, src/restorer.php:1444
6330
  msgid "Error:"
6331
  msgstr "خطأ:"
6332
 
6356
  #: src/methods/googledrive.php:467, src/methods/googledrive.php:496,
6357
  #: src/methods/googledrive.php:503, src/methods/googledrive.php:513,
6358
  #: src/methods/googledrive.php:519, src/methods/googledrive.php:521,
6359
+ #: src/methods/googledrive.php:1154, src/methods/googledrive.php:1161,
6360
+ #: src/methods/googledrive.php:1161, src/methods/googledrive.php:1191,
6361
+ #: src/methods/googledrive.php:1195, src/methods/googledrive.php:1206,
6362
+ #: src/methods/googledrive.php:1217, src/methods/googledrive.php:1237
6363
  msgid "Google Drive"
6364
  msgstr "جوجل درايف"
6365
 
6375
  msgid "More tasks:"
6376
  msgstr "المزيد من المهام:"
6377
 
6378
+ #: src/admin.php:2722
6379
  msgid "Download most recently modified log file"
6380
  msgstr "تحميل ملف السجل المعدل مؤخرا"
6381
 
6382
+ #: src/admin.php:2678, src/admin.php:2684, src/central/bootstrap.php:173
6383
  msgid "(Nothing yet logged)"
6384
  msgstr "(لا شيء حتى الآن تم تسجيله)"
6385
 
6386
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6387
+ #: src/admin.php:2677, src/admin.php:2682
6388
  msgid "Last log message"
6389
  msgstr "رسالة السجل الأخيرة"
6390
 
6391
+ #: src/addons/migrator.php:242, src/admin.php:705, src/admin.php:3797,
6392
  #: src/templates/wp-admin/settings/tab-status.php:30
6393
  msgid "Restore"
6394
  msgstr "الإستعادة"
6398
  msgid "Backup Now"
6399
  msgstr "النسخ الاحتياطي الآن"
6400
 
6401
+ #: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
6402
+ #: src/addons/reporting.php:259, src/admin.php:309, src/admin.php:3579,
6403
+ #: src/admin.php:3659, src/admin.php:4146,
6404
  #: src/includes/class-wpadmin-commands.php:147,
6405
  #: src/includes/class-wpadmin-commands.php:487,
6406
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
6407
  msgid "Database"
6408
  msgstr "قاعدة بيانات"
6409
 
6410
+ #: src/admin.php:305, src/admin.php:4667
6411
  msgid "Files"
6412
  msgstr "ملفات"
6413
 
6435
  msgid "JavaScript warning"
6436
  msgstr "تحذير جافا سكريبت"
6437
 
6438
+ #: src/admin.php:685, src/admin.php:2749
6439
  msgid "Delete Old Directories"
6440
  msgstr "حذف الدلائل القديمة"
6441
 
6442
+ #: src/admin.php:2469
6443
  msgid "Current limit is:"
6444
  msgstr "الحد الحالي هو:"
6445
 
6446
+ #: src/admin.php:2444
6447
  msgid "Your backup has been restored."
6448
  msgstr "تمت استعادة النسخ الاحتياطي."
6449
 
6459
  msgid "UpdraftPlus.Com"
6460
  msgstr ""
6461
 
6462
+ #: src/admin.php:4559
6463
  msgid "Your settings have been wiped."
6464
  msgstr "تم القضاء على الإعدادات الخاصة بك."
6465
 
6466
+ #: src/admin.php:2404
6467
  msgid "Backup directory successfully created."
6468
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
6469
 
6470
+ #: src/admin.php:2397
6471
  msgid "Backup directory could not be created"
6472
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
6473
 
6474
+ #: src/admin.php:2996
6475
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6476
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
6477
 
6478
+ #: src/admin.php:2994
6479
  msgid "Old directories successfully removed."
6480
  msgstr "تم إزالة الدلائل القديمة بنجاح."
6481
 
6482
+ #: src/admin.php:2991, src/admin.php:2991
6483
  msgid "Remove old directories"
6484
  msgstr "إزالة الدلائل القديمة"
6485
 
6486
+ #: src/addons/migrator.php:307, src/addons/migrator.php:322,
6487
+ #: src/admin.php:2346, src/admin.php:2355, src/admin.php:2364,
6488
+ #: src/admin.php:2406, src/admin.php:2998
6489
  msgid "Return to UpdraftPlus Configuration"
6490
  msgstr "العودة إلى اعدادات UpdraftPlus"
6491
 
6492
+ #: src/admin.php:678, src/admin.php:2346, src/admin.php:2355,
6493
+ #: src/admin.php:2364, src/admin.php:2406, src/admin.php:2998,
6494
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6495
  msgid "Actions"
6496
  msgstr "الإجراءات"
6497
 
6498
+ #: src/admin.php:2249
6499
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6500
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
6501
 
6502
+ #: src/admin.php:2149
6503
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6504
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
6505
 
6506
+ #: src/admin.php:2045
6507
  msgid "No local copy present."
6508
  msgstr "لا نسخة محلية متوفرة."
6509
 
6510
+ #: src/admin.php:2042
6511
  msgid "Download in progress"
6512
  msgstr "التحميل في تقدم"
6513
 
6514
+ #: src/admin.php:677, src/admin.php:2031
6515
  msgid "File ready."
6516
  msgstr "ملف جاهز."
6517
 
6518
+ #: src/admin.php:2012
6519
  msgid "Download failed"
6520
  msgstr "فشل تحميل"
6521
 
6522
+ #: src/admin.php:675, src/admin.php:1302, src/admin.php:1776,
6523
+ #: src/class-updraftplus.php:1249, src/class-updraftplus.php:1293,
6524
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
6525
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6526
  #: src/methods/stream-base.php:217, src/restorer.php:2354,
6528
  msgid "Error"
6529
  msgstr "خطأ"
6530
 
6531
+ #: src/admin.php:1811
6532
  msgid "Could not find that job - perhaps it has already finished?"
6533
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
6534
 
6535
+ #: src/admin.php:1803
6536
  msgid "Job deleted"
6537
  msgstr "وظيفة حذفت"
6538
 
6539
+ #: src/admin.php:1892
6540
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6541
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
6542
 
6544
  msgid "Nothing yet logged"
6545
  msgstr "لا شيء حتى الآن تم تسجيله"
6546
 
6547
+ #: src/admin.php:977
6548
  msgid "Please consult this FAQ if you have problems backing up."
6549
  msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
6550
 
6551
+ #: src/admin.php:977
6552
  msgid "Your website is hosted using the %s web server."
6553
  msgstr "موقعك يستخدم %s من خادم الويب."
6554
 
6555
+ #: src/admin.php:973
6556
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
6557
  msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
6558
 
6559
+ #: src/admin.php:969
6560
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
6561
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
6562
 
6563
+ #: src/addons/migrator.php:913, src/admin.php:961, src/admin.php:965,
6564
+ #: src/admin.php:969, src/admin.php:973, src/admin.php:977, src/admin.php:986,
6565
+ #: src/admin.php:3445, src/admin.php:3452, src/admin.php:3454,
6566
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
6567
+ #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
6568
+ #: src/methods/s3.php:831, src/methods/s3.php:835,
6569
+ #: src/methods/updraftvault.php:292,
6570
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6571
  #: src/udaddons/updraftplus-addons.php:253
6572
  msgid "Warning"
6573
  msgstr "تحذير"
6574
 
6575
+ #: src/admin.php:907
6576
  msgid "Add-Ons / Pro Support"
6577
  msgstr "إضافات / الدعم المدفوع"
6578
 
6579
+ #: src/admin.php:542, src/admin.php:905,
6580
  #: src/templates/wp-admin/settings/tab-bar.php:7
6581
  msgid "Settings"
6582
  msgstr "إعدادات"
6585
  msgid "Could not create %s zip. Consult the log file for more information."
6586
  msgstr "لم نتمكن من خلق الملف المضغوط %s. تحقق من السجل لمزيد من المعلومات."
6587
 
6588
+ #: src/backup.php:2267
6589
  msgid "Infinite recursion: consult your log for more information"
6590
  msgstr "عودية لا نهائية: تحقق من السجل لمزيد من المعلومات"
6591
 
6597
  msgid "Like UpdraftPlus and can spare one minute?"
6598
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
6599
 
6600
+ #: src/addons/azure.php:266, src/class-updraftplus.php:3919,
6601
+ #: src/methods/googledrive.php:1081, src/methods/s3.php:320
6602
  msgid "File not found"
6603
  msgstr "لم يتم العثور على ملف"
6604
 
6605
+ #: src/class-updraftplus.php:3826
6606
  msgid "The decryption key used:"
6607
  msgstr "مفتاح فك التشفير المستخدم:"
6608
 
6609
+ #: src/class-updraftplus.php:3826, src/class-updraftplus.php:4058,
6610
  #: src/restorer.php:419
6611
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6612
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
6613
 
6614
+ #: src/class-updraftplus.php:3807, src/class-updraftplus.php:4046,
6615
  #: src/restorer.php:406
6616
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6617
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
6618
 
6619
+ #: src/backup.php:2142
6620
  msgid "Could not open the backup file for writing"
6621
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
6622
 
6623
+ #: src/class-updraftplus.php:3412
6624
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6625
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
6626
 
6627
+ #: src/class-updraftplus.php:3373
6628
  msgid "Could not read the directory"
6629
  msgstr "لا يمكن قراءة الدليل"
6630
 
6631
+ #: src/admin.php:2091, src/backup.php:1323
6632
  msgid "Backup directory (%s) is not writable, or does not exist."
6633
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
6634
 
6635
+ #: src/backup.php:1100
6636
  msgid "WordPress backup is complete"
6637
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
6638
 
6639
+ #: src/class-updraftplus.php:2883
6640
  msgid "The backup attempt has finished, apparently unsuccessfully"
6641
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
6642
 
6643
+ #: src/class-updraftplus.php:2868
6644
  msgid "The backup apparently succeeded and is now complete"
6645
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
6646
 
6648
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6649
  msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
6650
 
6651
+ #: src/class-updraftplus.php:2571
6652
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6653
  msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
6654
 
6655
+ #: src/class-updraftplus.php:1850
6656
  msgid "Others"
6657
  msgstr "أخرى"
6658
 
6659
+ #: src/addons/multisite.php:456, src/class-updraftplus.php:1835
6660
  msgid "Uploads"
6661
  msgstr "الملفات المرفوعة"
6662
 
6663
+ #: src/class-updraftplus.php:1834
6664
  msgid "Themes"
6665
  msgstr "تصاميم"
6666
 
6667
+ #: src/class-updraftplus.php:1833
6668
  msgid "Plugins"
6669
  msgstr "الإضافات"
6670
 
6671
+ #: src/class-updraftplus.php:596
6672
  msgid "No log files were found."
6673
  msgstr "لا توجد ملفات السجل."
6674
 
6675
+ #: src/admin.php:1961, src/admin.php:1965, src/class-updraftplus.php:591
6676
  msgid "The log file could not be read."
6677
  msgstr "لا يمكن قراءة ملف السجل."
6678
 
6679
+ #: src/admin.php:996, src/admin.php:1005, src/admin.php:1010,
6680
+ #: src/admin.php:1018, src/admin.php:1027, src/class-updraftplus.php:556,
6681
+ #: src/class-updraftplus.php:591, src/class-updraftplus.php:596,
6682
+ #: src/class-updraftplus.php:601
6683
  msgid "UpdraftPlus notice:"
6684
  msgstr "إشعار UpdraftPlus :"
6685
 
6686
+ #: src/addons/multisite.php:65, src/addons/multisite.php:678,
6687
  #: src/options.php:50
6688
  msgid "UpdraftPlus Backups"
6689
  msgstr "نسخ الإحتياطية UpdraftPlus"
languages/updraftplus-bg_BG.mo CHANGED
Binary file
languages/updraftplus-bg_BG.po CHANGED
@@ -7,10 +7,38 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/2.2.2\n"
11
  "Language: bg\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/templates/wp-admin/settings/tab-addons.php:14
15
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
16
  msgstr ""
@@ -23,11 +51,11 @@ msgstr ""
23
  msgid "get it here"
24
  msgstr ""
25
 
26
- #: src/methods/stream-base.php:305
27
  msgid "Download chunk size successfully changed to %d"
28
  msgstr ""
29
 
30
- #: src/methods/stream-base.php:302
31
  msgid "Download chunk size failed to change to %d"
32
  msgstr ""
33
 
@@ -43,7 +71,7 @@ msgstr ""
43
  msgid "remote site"
44
  msgstr ""
45
 
46
- #: src/addons/backblaze.php:443
47
  msgid "Invalid bucket name"
48
  msgstr ""
49
 
@@ -53,49 +81,49 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
- #: src/class-updraftplus.php:4673
57
  msgid "Your chosen replacement collation"
58
  msgstr ""
59
 
60
- #: src/class-updraftplus.php:4650
61
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
62
  msgstr ""
63
 
64
- #: src/class-updraftplus.php:4650
65
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
66
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
67
  msgstr[0] ""
68
  msgstr[1] ""
69
 
70
- #: src/addons/migrator.php:493
71
  msgid "Database restoration options:"
72
  msgstr ""
73
 
74
- #: src/addons/migrator.php:370
75
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
76
  msgstr ""
77
 
78
- #: src/addons/azure.php:562
79
  msgid "%s Prefix"
80
  msgstr ""
81
 
82
- #: src/addons/azure.php:557
83
  msgid "%s Container"
84
  msgstr ""
85
 
86
- #: src/addons/azure.php:552
87
  msgid "%s Key"
88
  msgstr ""
89
 
90
- #: src/addons/azure.php:548
91
  msgid "%s Account Name"
92
  msgstr ""
93
 
94
- #: src/addons/googlecloud.php:625
95
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
96
  msgstr ""
97
 
98
- #: src/addons/googlecloud.php:623
99
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
100
  msgstr ""
101
 
@@ -119,7 +147,7 @@ msgstr ""
119
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
120
  msgstr ""
121
 
122
- #: src/addons/migrator.php:877
123
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
124
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
125
  msgstr[0] ""
@@ -129,15 +157,15 @@ msgstr[1] ""
129
  msgid "Requested table character set (%s) is not present - changing to %s."
130
  msgstr ""
131
 
132
- #: src/class-updraftplus.php:4626
133
  msgid "Your chosen character set to use instead:"
134
  msgstr ""
135
 
136
- #: src/class-updraftplus.php:4616
137
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
138
  msgstr ""
139
 
140
- #: src/class-updraftplus.php:4616
141
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
142
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
143
  msgstr[0] ""
@@ -191,79 +219,79 @@ msgstr ""
191
  msgid "Please enter a valid URL e.g http://example.com"
192
  msgstr "Моля въведете валиден адрес - пример http://example.com"
193
 
194
- #: src/addons/backblaze.php:588
195
  msgid "your Backblaze console"
196
  msgstr ""
197
 
198
- #: src/addons/backblaze.php:588
199
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
200
  msgstr ""
201
 
202
- #: src/addons/backblaze.php:588
203
  msgid "N.B. You need to create the bucket in %s first."
204
  msgstr ""
205
 
206
- #: src/addons/backblaze.php:587
207
  msgid "some/path"
208
  msgstr ""
209
 
210
- #: src/addons/backblaze.php:587
211
  msgid "Bucket name"
212
  msgstr ""
213
 
214
- #: src/addons/backblaze.php:586
215
  msgid "Backup path"
216
  msgstr ""
217
 
218
- #: src/addons/backblaze.php:581
219
  msgid "Application key"
220
  msgstr ""
221
 
222
- #: src/addons/backblaze.php:576, src/addons/backblaze.php:576
223
  msgid "here"
224
  msgstr ""
225
 
226
- #: src/addons/backblaze.php:576
227
  msgid "Get these settings from %s, or sign up %s."
228
  msgstr ""
229
 
230
- #: src/addons/backblaze.php:440
231
  msgid "Bucket not found"
232
  msgstr ""
233
 
234
- #: src/addons/backblaze.php:394
235
  msgid "Account Key"
236
  msgstr "Ключ за Акаунта"
237
 
238
- #: src/addons/backblaze.php:393, src/addons/backblaze.php:574
239
  msgid "Account ID"
240
  msgstr "Акаунт ID"
241
 
242
- #: src/class-updraftplus.php:4460
243
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
244
  msgstr ""
245
 
246
- #: src/class-updraftplus.php:4458, src/class-updraftplus.php:4460
247
  msgid "the migrator add-on"
248
  msgstr ""
249
 
250
- #: src/class-updraftplus.php:4458
251
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
252
  msgstr ""
253
 
254
- #: src/class-updraftplus.php:4456
255
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
256
  msgstr ""
257
 
258
- #: src/class-updraftplus.php:4453
259
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
260
  msgstr ""
261
 
262
- #: src/methods/googledrive.php:1173
263
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
264
  msgstr ""
265
 
266
- #: src/methods/googledrive.php:1170
267
  msgid "Follow this link to remove this site's settings for %s."
268
  msgstr ""
269
 
@@ -275,15 +303,15 @@ msgstr ""
275
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
276
  msgstr ""
277
 
278
- #: src/admin.php:1348, src/admin.php:4168, src/backup.php:2065,
279
- #: src/class-updraftplus.php:2156, src/class-updraftplus.php:2221,
280
- #: src/class-updraftplus.php:2355
281
  msgid "A PHP fatal error (%s) has occurred: %s"
282
  msgstr ""
283
 
284
- #: src/admin.php:1339, src/admin.php:4154, src/backup.php:2056,
285
- #: src/class-updraftplus.php:2147, src/class-updraftplus.php:2214,
286
- #: src/class-updraftplus.php:2348
287
  msgid "A PHP exception (%s) has occurred: %s"
288
  msgstr ""
289
 
@@ -327,7 +355,7 @@ msgstr ""
327
  msgid "Select Files"
328
  msgstr ""
329
 
330
- #: src/methods/cloudfiles.php:465
331
  msgid "Rackspace Storage Region"
332
  msgstr ""
333
 
@@ -335,23 +363,23 @@ msgstr ""
335
  msgid "Instant and secure logon with a wave of your phone."
336
  msgstr ""
337
 
338
- #: src/backup.php:2069
339
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
340
  msgstr ""
341
 
342
- #: src/admin.php:4696
343
  msgid "Value"
344
  msgstr ""
345
 
346
- #: src/admin.php:1614
347
  msgid "Did not know how to delete from this cloud service."
348
  msgstr ""
349
 
350
- #: src/addons/sftp.php:700
351
  msgid "Encrypted login failed; trying non-encrypted"
352
  msgstr ""
353
 
354
- #: src/addons/azure.php:539
355
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
356
  msgstr ""
357
 
@@ -359,15 +387,15 @@ msgstr ""
359
  msgid "Stored at: %s"
360
  msgstr ""
361
 
362
- #: src/methods/cloudfiles.php:485
363
  msgid "Cloud Files"
364
  msgstr ""
365
 
366
- #: src/admin.php:4509
367
  msgid "Your settings failed to save. Please refresh the settings page and try again"
368
  msgstr ""
369
 
370
- #: src/admin.php:4468
371
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
372
  msgstr ""
373
 
@@ -384,15 +412,15 @@ msgstr ""
384
  msgid "Extra database"
385
  msgstr ""
386
 
387
- #: src/admin.php:3729
388
  msgid "Press here to download or browse"
389
  msgstr ""
390
 
391
- #: src/admin.php:1122, src/admin.php:1132
392
  msgid "Error: invalid path"
393
  msgstr ""
394
 
395
- #: src/admin.php:946
396
  msgid "An error occurred when fetching storage module options: "
397
  msgstr ""
398
 
@@ -428,15 +456,15 @@ msgstr ""
428
  msgid "Skipped tables:"
429
  msgstr ""
430
 
431
- #: src/class-updraftplus.php:4738
432
  msgid "This database backup has the following WordPress tables excluded: %s"
433
  msgstr ""
434
 
435
- #: src/admin.php:2624
436
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
437
  msgstr ""
438
 
439
- #: src/admin.php:2624
440
  msgid "All WordPress tables will be backed up."
441
  msgstr ""
442
 
@@ -936,15 +964,15 @@ msgstr ""
936
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
937
  msgstr ""
938
 
939
- #: src/methods/dropbox.php:608
940
  msgid "%s de-authentication"
941
  msgstr ""
942
 
943
- #: src/methods/dropbox.php:528
944
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
945
  msgstr ""
946
 
947
- #: src/methods/dropbox.php:505
948
  msgid "Follow this link to deauthenticate with %s."
949
  msgstr ""
950
 
@@ -952,7 +980,7 @@ msgstr ""
952
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
953
  msgstr ""
954
 
955
- #: src/backup.php:1663
956
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
957
  msgstr ""
958
 
@@ -960,16 +988,16 @@ msgstr ""
960
  msgid "You have selected a remote storage option which has an authorization step to complete:"
961
  msgstr ""
962
 
963
- #: src/admin.php:1690
964
  msgid "Remote files deleted:"
965
  msgstr ""
966
 
967
- #: src/admin.php:1689
968
  msgid "Local files deleted:"
969
  msgstr ""
970
 
971
- #: src/admin.php:994, src/admin.php:1003, src/admin.php:1016,
972
- #: src/admin.php:1025
973
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
974
  msgstr ""
975
 
@@ -1013,24 +1041,24 @@ msgstr ""
1013
  msgid "US East (Ohio)"
1014
  msgstr ""
1015
 
1016
- #: src/addons/onedrive.php:979
1017
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1018
  msgstr ""
1019
 
1020
- #: src/addons/onedrive.php:649
1021
  msgid "Account is not authorized (%s)."
1022
  msgstr ""
1023
 
1024
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873
1025
  msgid "Your IP address:"
1026
  msgstr ""
1027
 
1028
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873,
1029
  #: src/udaddons/updraftplus-addons.php:887
1030
  msgid "To remove any block, please go here."
1031
  msgstr ""
1032
 
1033
- #: src/addons/onedrive.php:594, src/udaddons/updraftplus-addons.php:858
1034
  msgid "An error response was received; HTTP code:"
1035
  msgstr ""
1036
 
@@ -1046,11 +1074,11 @@ msgstr ""
1046
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1047
  msgstr ""
1048
 
1049
- #: src/admin.php:2438
1050
  msgid "To fix this problem go here."
1051
  msgstr ""
1052
 
1053
- #: src/admin.php:2438
1054
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1055
  msgstr ""
1056
 
@@ -1058,27 +1086,27 @@ msgstr ""
1058
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1059
  msgstr ""
1060
 
1061
- #: src/addons/webdav.php:125
1062
  msgid "Path"
1063
  msgstr ""
1064
 
1065
- #: src/addons/webdav.php:120
1066
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1067
  msgstr ""
1068
 
1069
- #: src/addons/webdav.php:112
1070
  msgid "Enter any path in the field below."
1071
  msgstr ""
1072
 
1073
- #: src/addons/webdav.php:112
1074
  msgid "A host name cannot contain a slash."
1075
  msgstr ""
1076
 
1077
- #: src/addons/webdav.php:87
1078
  msgid "Protocol (SSL or not)"
1079
  msgstr ""
1080
 
1081
- #: src/addons/webdav.php:82
1082
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1083
  msgstr ""
1084
 
@@ -1086,7 +1114,7 @@ msgstr ""
1086
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1087
  msgstr ""
1088
 
1089
- #: src/methods/s3.php:1075
1090
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1091
  msgstr ""
1092
 
@@ -1126,53 +1154,53 @@ msgstr ""
1126
  msgid "Public key was sent to:"
1127
  msgstr ""
1128
 
1129
- #: src/backup.php:2281
1130
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1131
  msgstr ""
1132
 
1133
- #: src/backup.php:2259
1134
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1135
  msgstr ""
1136
 
1137
- #: src/addons/migrator.php:2342
1138
  msgid "Create key"
1139
  msgstr ""
1140
 
1141
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:526
1142
  msgid "slower, strongest"
1143
  msgstr ""
1144
 
1145
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1146
  msgid "recommended"
1147
  msgstr ""
1148
 
1149
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1150
  msgid "%s bytes"
1151
  msgstr ""
1152
 
1153
- #: src/addons/migrator.php:2337, src/central/bootstrap.php:524
1154
  msgid "faster (possibility for slow PHP installs)"
1155
  msgstr ""
1156
 
1157
- #: src/addons/migrator.php:2336, src/central/bootstrap.php:523
1158
  msgid "easy to break, fastest"
1159
  msgstr ""
1160
 
1161
- #: src/addons/migrator.php:2336, src/addons/migrator.php:2337,
1162
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:523,
1163
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1164
  msgid "%s bits"
1165
  msgstr ""
1166
 
1167
- #: src/addons/migrator.php:2334, src/central/bootstrap.php:521
1168
  msgid "Encryption key size:"
1169
  msgstr ""
1170
 
1171
- #: src/addons/migrator.php:2332
1172
  msgid "Enter your chosen name"
1173
  msgstr ""
1174
 
1175
- #: src/addons/migrator.php:2331
1176
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1177
  msgstr ""
1178
 
@@ -1180,15 +1208,15 @@ msgstr ""
1180
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1181
  msgstr ""
1182
 
1183
- #: src/methods/ftp.php:408
1184
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1185
  msgstr ""
1186
 
1187
- #: src/methods/ftp.php:380
1188
  msgid "login"
1189
  msgstr ""
1190
 
1191
- #: src/methods/email.php:79
1192
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1193
  msgstr ""
1194
 
@@ -1196,7 +1224,7 @@ msgstr ""
1196
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1197
  msgstr ""
1198
 
1199
- #: src/class-updraftplus.php:1763
1200
  msgid "Size: %s MB"
1201
  msgstr ""
1202
 
@@ -1208,7 +1236,7 @@ msgstr ""
1208
  msgid "Now"
1209
  msgstr ""
1210
 
1211
- #: src/class-updraftplus.php:4475, src/restorer.php:1045
1212
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1213
  msgstr ""
1214
 
@@ -1216,13 +1244,13 @@ msgstr ""
1216
  msgid "(tap on an icon to select or unselect)"
1217
  msgstr ""
1218
 
1219
- #: src/methods/updraftvault.php:310, src/methods/updraftvault.php:316,
1220
- #: src/methods/updraftvault.php:322
1221
  msgid "%s per year"
1222
  msgstr ""
1223
 
1224
- #: src/methods/updraftvault.php:309, src/methods/updraftvault.php:315,
1225
- #: src/methods/updraftvault.php:321
1226
  msgid "or (annual discount)"
1227
  msgstr ""
1228
 
@@ -1230,7 +1258,7 @@ msgstr ""
1230
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1231
  msgstr ""
1232
 
1233
- #: src/class-updraftplus.php:544, src/class-updraftplus.php:589
1234
  msgid "The given file was not found, or could not be read."
1235
  msgstr ""
1236
 
@@ -1314,23 +1342,23 @@ msgstr ""
1314
  msgid "UpdraftCentral Connection"
1315
  msgstr ""
1316
 
1317
- #: src/backup.php:965, src/class-updraftplus.php:2837
1318
  msgid "The backup was aborted by the user"
1319
  msgstr ""
1320
 
1321
- #: src/admin.php:4504
1322
  msgid "Your settings have been saved."
1323
  msgstr ""
1324
 
1325
- #: src/admin.php:3607
1326
  msgid "Total backup size:"
1327
  msgstr ""
1328
 
1329
- #: src/admin.php:2964
1330
  msgid "stop"
1331
  msgstr ""
1332
 
1333
- #: src/admin.php:2806
1334
  msgid "The backup has finished running"
1335
  msgstr ""
1336
 
@@ -1392,19 +1420,19 @@ msgstr ""
1392
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1393
  msgstr ""
1394
 
1395
- #: src/class-updraftplus.php:4526, src/restorer.php:1740
1396
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1397
  msgstr ""
1398
 
1399
- #: src/class-updraftplus.php:4522
1400
  msgid "Please read this link for important information on this process."
1401
  msgstr ""
1402
 
1403
- #: src/class-updraftplus.php:4522
1404
  msgid "It will be imported as a new site."
1405
  msgstr ""
1406
 
1407
- #: src/admin.php:2597, src/templates/wp-admin/notices/horizontal-notice.php:16,
1408
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1409
  msgid "Dismiss"
1410
  msgstr ""
@@ -1413,56 +1441,56 @@ msgstr ""
1413
  msgid "Please fill in the required information."
1414
  msgstr ""
1415
 
1416
- #: src/addons/multisite.php:579
1417
  msgid "Read more..."
1418
  msgstr ""
1419
 
1420
- #: src/addons/multisite.php:570
1421
  msgid "may include some site-wide data"
1422
  msgstr ""
1423
 
1424
- #: src/addons/multisite.php:565
1425
  msgid "All sites"
1426
  msgstr ""
1427
 
1428
- #: src/addons/multisite.php:561
1429
  msgid "Which site to restore"
1430
  msgstr ""
1431
 
1432
- #: src/addons/migrator.php:563, src/addons/migrator.php:564
1433
  msgid "Error when creating new site at your chosen address:"
1434
  msgstr ""
1435
 
1436
- #: src/addons/migrator.php:505
1437
  msgid "Required information for restoring this backup was not given (%s)"
1438
  msgstr ""
1439
 
1440
- #: src/addons/migrator.php:457
1441
  msgid "Attribute imported content to user"
1442
  msgstr ""
1443
 
1444
- #: src/addons/migrator.php:447, src/addons/migrator.php:449
1445
  msgid "You must use lower-case letters or numbers for the site path, only."
1446
  msgstr ""
1447
 
1448
- #: src/addons/migrator.php:435
1449
  msgid "This feature is not compatible with %s"
1450
  msgstr ""
1451
 
1452
- #: src/addons/migrator.php:433, src/addons/migrator.php:435
1453
  msgid "Importing a single site into a multisite install"
1454
  msgstr ""
1455
 
1456
- #: src/addons/migrator.php:424
1457
  msgid "other content from wp-content"
1458
  msgstr ""
1459
 
1460
- #: src/addons/migrator.php:421
1461
  msgid "WordPress core"
1462
  msgstr ""
1463
 
1464
- #: src/addons/migrator.php:421, src/addons/migrator.php:424,
1465
- #: src/addons/migrator.php:427
1466
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1467
  msgstr ""
1468
 
@@ -1470,11 +1498,11 @@ msgstr ""
1470
  msgid "Call WordPress action:"
1471
  msgstr ""
1472
 
1473
- #: src/admin.php:2632
1474
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1475
  msgstr ""
1476
 
1477
- #: src/admin.php:4043
1478
  msgid "Skipping: this archive was already restored."
1479
  msgstr ""
1480
 
@@ -1506,51 +1534,51 @@ msgstr ""
1506
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1507
  msgstr ""
1508
 
1509
- #: src/admin.php:4378
1510
  msgid "Send this backup to remote storage"
1511
  msgstr ""
1512
 
1513
- #: src/admin.php:4376
1514
  msgid "Check out UpdraftPlus Vault."
1515
  msgstr ""
1516
 
1517
- #: src/admin.php:4376
1518
  msgid "Not got any remote storage?"
1519
  msgstr ""
1520
 
1521
- #: src/admin.php:4376
1522
  msgid "settings"
1523
  msgstr ""
1524
 
1525
- #: src/admin.php:4376
1526
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1527
  msgstr ""
1528
 
1529
- #: src/admin.php:2630
1530
  msgid "Include any files in the backup"
1531
  msgstr ""
1532
 
1533
- #: src/admin.php:2616
1534
  msgid "Include the database in the backup"
1535
  msgstr ""
1536
 
1537
- #: src/admin.php:2596
1538
  msgid "Continue restoration"
1539
  msgstr ""
1540
 
1541
- #: src/admin.php:2591
1542
  msgid "You have an unfinished restoration operation, begun %s ago."
1543
  msgstr ""
1544
 
1545
- #: src/admin.php:2590
1546
  msgid "Unfinished restoration"
1547
  msgstr ""
1548
 
1549
- #: src/admin.php:2588
1550
  msgid "%s minutes, %s seconds"
1551
  msgstr ""
1552
 
1553
- #: src/admin.php:2535
1554
  msgid "Backup Contents And Schedule"
1555
  msgstr ""
1556
 
@@ -1558,7 +1586,7 @@ msgstr ""
1558
  msgid "Premium / Extensions"
1559
  msgstr ""
1560
 
1561
- #: src/admin.php:2304, src/admin.php:2313
1562
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1563
  msgstr ""
1564
 
@@ -1579,23 +1607,23 @@ msgstr ""
1579
  msgid "Advanced Tools"
1580
  msgstr ""
1581
 
1582
- #: src/addons/googlecloud.php:967
1583
  msgid "Bucket location"
1584
  msgstr ""
1585
 
1586
- #: src/addons/googlecloud.php:962
1587
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1588
  msgstr ""
1589
 
1590
- #: src/addons/googlecloud.php:962, src/addons/googlecloud.php:975
1591
  msgid "This setting applies only when a new bucket is being created."
1592
  msgstr ""
1593
 
1594
- #: src/addons/googlecloud.php:951
1595
  msgid "You must use a bucket name that is unique, for all %s users."
1596
  msgstr ""
1597
 
1598
- #: src/addons/googlecloud.php:910
1599
  msgid "Do not confuse %s with %s - they are separate things."
1600
  msgstr ""
1601
 
@@ -1657,64 +1685,64 @@ msgstr ""
1657
  msgid "Standard"
1658
  msgstr ""
1659
 
1660
- #: src/addons/azure.php:563
1661
  msgid "container"
1662
  msgstr ""
1663
 
1664
- #: src/addons/azure.php:563
1665
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1666
  msgstr ""
1667
 
1668
- #: src/addons/azure.php:562
1669
  msgid "optional"
1670
  msgstr ""
1671
 
1672
- #: src/addons/azure.php:558
1673
  msgid "See Microsoft's guidelines on container naming by following this link."
1674
  msgstr ""
1675
 
1676
- #: src/addons/azure.php:558
1677
  msgid "Enter the path of the %s you wish to use here."
1678
  msgstr ""
1679
 
1680
- #: src/addons/azure.php:549
1681
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1682
  msgstr ""
1683
 
1684
- #: src/addons/azure.php:548, src/addons/azure.php:552,
1685
- #: src/addons/azure.php:557, src/addons/azure.php:562
1686
  msgid "Azure"
1687
  msgstr ""
1688
 
1689
- #: src/addons/azure.php:544
1690
  msgid "Create Azure credentials in your Azure developer console."
1691
  msgstr ""
1692
 
1693
- #: src/addons/azure.php:513
1694
  msgid "Could not create the container"
1695
  msgstr ""
1696
 
1697
- #: src/addons/azure.php:364
1698
  msgid "Could not access container"
1699
  msgstr ""
1700
 
1701
- #: src/class-updraftplus.php:2854
1702
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1703
  msgstr ""
1704
 
1705
- #: src/backup.php:1715
1706
  msgid "the options table was not found"
1707
  msgstr ""
1708
 
1709
- #: src/backup.php:1713
1710
  msgid "no options or sitemeta table was found"
1711
  msgstr ""
1712
 
1713
- #: src/backup.php:1713, src/backup.php:1715
1714
  msgid "The database backup appears to have failed"
1715
  msgstr ""
1716
 
1717
- #: src/backup.php:1585
1718
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1719
  msgstr ""
1720
 
@@ -1726,47 +1754,47 @@ msgstr ""
1726
  msgid "Not installed"
1727
  msgstr ""
1728
 
1729
- #: src/addons/googlecloud.php:954, src/addons/s3-enhanced.php:63
1730
  msgid "Storage class"
1731
  msgstr ""
1732
 
1733
- #: src/addons/googlecloud.php:951
1734
  msgid "See Google's guidelines on bucket naming by following this link."
1735
  msgstr ""
1736
 
1737
- #: src/addons/googlecloud.php:951
1738
  msgid "Enter the name of the %s bucket you wish to use here."
1739
  msgstr ""
1740
 
1741
- #: src/addons/googlecloud.php:950
1742
  msgid "Bucket"
1743
  msgstr ""
1744
 
1745
- #: src/addons/googlecloud.php:946
1746
  msgid "Otherwise, you can leave it blank."
1747
  msgstr ""
1748
 
1749
- #: src/addons/googlecloud.php:946
1750
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1751
  msgstr ""
1752
 
1753
- #: src/addons/googlecloud.php:946
1754
  msgid "Enter the ID of the %s project you wish to use here."
1755
  msgstr ""
1756
 
1757
- #: src/addons/googlecloud.php:922
1758
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1759
  msgstr ""
1760
 
1761
- #: src/addons/googlecloud.php:835
1762
  msgid "You must enter a project ID in order to be able to create a new bucket."
1763
  msgstr ""
1764
 
1765
- #: src/addons/googlecloud.php:944
1766
  msgid "Project ID"
1767
  msgstr ""
1768
 
1769
- #: src/addons/googlecloud.php:692
1770
  msgid "You must save and authenticate before you can test your settings."
1771
  msgstr ""
1772
 
@@ -1775,22 +1803,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
1775
  msgstr ""
1776
 
1777
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1778
- #: src/addons/googlecloud.php:827, src/addons/googlecloud.php:874
1779
  msgid "You do not have access to this bucket."
1780
  msgstr ""
1781
 
1782
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1783
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1784
- #: src/addons/googlecloud.php:651, src/addons/googlecloud.php:827,
1785
- #: src/addons/googlecloud.php:874, src/addons/googlecloud.php:916,
1786
- #: src/addons/googlecloud.php:916, src/addons/googlecloud.php:931,
1787
- #: src/addons/googlecloud.php:939, src/addons/googlecloud.php:951
1788
  msgid "Google Cloud"
1789
  msgstr ""
1790
 
1791
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1792
- #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:827,
1793
- #: src/addons/googlecloud.php:874
1794
  msgid "%s Service Exception."
1795
  msgstr ""
1796
 
@@ -1827,7 +1855,7 @@ msgstr ""
1827
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1828
  msgstr ""
1829
 
1830
- #: src/admin.php:1688
1831
  msgid "Backup sets removed:"
1832
  msgstr ""
1833
 
@@ -1859,7 +1887,7 @@ msgstr ""
1859
  msgid "day"
1860
  msgstr ""
1861
 
1862
- #: src/addons/morestorage.php:28
1863
  msgid "(as many as you like)"
1864
  msgstr ""
1865
 
@@ -1875,31 +1903,31 @@ msgstr ""
1875
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1876
  msgstr ""
1877
 
1878
- #: src/methods/updraftvault.php:684
1879
  msgid "You do not currently have any UpdraftPlus Vault quota"
1880
  msgstr ""
1881
 
1882
- #: src/class-updraftplus.php:4595
1883
  msgid "You must upgrade MySQL to be able to use this database."
1884
  msgstr ""
1885
 
1886
- #: src/class-updraftplus.php:4595
1887
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1888
  msgstr ""
1889
 
1890
- #: src/admin.php:2423
1891
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1892
  msgstr ""
1893
 
1894
- #: src/methods/updraftvault.php:342
1895
  msgid "Don't know your email address, or forgotten your password?"
1896
  msgstr ""
1897
 
1898
- #: src/methods/updraftvault.php:335
1899
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1900
  msgstr ""
1901
 
1902
- #: src/methods/updraftvault.php:299, src/methods/updraftvault.php:328
1903
  msgid "Read the FAQs here."
1904
  msgstr ""
1905
 
@@ -1911,19 +1939,19 @@ msgstr ""
1911
  msgid "Server-side encryption"
1912
  msgstr ""
1913
 
1914
- #: src/methods/updraftvault.php:692
1915
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1916
  msgstr ""
1917
 
1918
- #: src/admin.php:1008
1919
  msgid "Go to the remote storage settings in order to connect."
1920
  msgstr ""
1921
 
1922
- #: src/admin.php:1008
1923
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1924
  msgstr ""
1925
 
1926
- #: src/methods/updraftvault.php:325
1927
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1928
  msgstr ""
1929
 
@@ -1943,67 +1971,67 @@ msgstr ""
1943
  msgid "Connecting..."
1944
  msgstr ""
1945
 
1946
- #: src/methods/updraftvault.php:445, src/methods/updraftvault.php:519
1947
  msgid "Refresh current status"
1948
  msgstr ""
1949
 
1950
- #: src/methods/updraftvault.php:443, src/methods/updraftvault.php:459,
1951
- #: src/methods/updraftvault.php:461, src/methods/updraftvault.php:519
1952
  msgid "Get more quota"
1953
  msgstr ""
1954
 
1955
- #: src/methods/updraftvault.php:440, src/methods/updraftvault.php:456,
1956
- #: src/methods/updraftvault.php:500
1957
  msgid "Current use:"
1958
  msgstr ""
1959
 
1960
- #: src/methods/updraftvault.php:435
1961
  msgid "You can get more quota here"
1962
  msgstr ""
1963
 
1964
- #: src/methods/updraftvault.php:435
1965
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1966
  msgstr ""
1967
 
1968
- #: src/admin.php:712, src/methods/updraftvault.php:369,
1969
- #: src/methods/updraftvault.php:427
1970
  msgid "Disconnect"
1971
  msgstr ""
1972
 
1973
- #: src/methods/updraftvault.php:366, src/methods/updraftvault.php:419
1974
  msgid "Quota:"
1975
  msgstr ""
1976
 
1977
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1978
  msgid "Vault owner"
1979
  msgstr ""
1980
 
1981
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1982
  msgid "Well done - there's nothing more needed to set up."
1983
  msgstr ""
1984
 
1985
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1986
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1987
  msgstr ""
1988
 
1989
- #: src/methods/updraftvault.php:371, src/methods/updraftvault.php:413
1990
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1991
  msgstr ""
1992
 
1993
- #: src/methods/updraftvault.php:342
1994
  msgid "Go here for help"
1995
  msgstr ""
1996
 
1997
- #: src/methods/updraftvault.php:337
1998
  msgid "E-mail"
1999
  msgstr ""
2000
 
2001
- #: src/central/bootstrap.php:551, src/methods/updraftvault.php:331,
2002
- #: src/methods/updraftvault.php:345
2003
  msgid "Back..."
2004
  msgstr ""
2005
 
2006
- #: src/methods/updraftvault.php:325
2007
  msgid "Subscriptions can be cancelled at any time."
2008
  msgstr ""
2009
 
@@ -2011,37 +2039,37 @@ msgstr ""
2011
  msgid "Buy it now"
2012
  msgstr ""
2013
 
2014
- #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:314,
2015
- #: src/methods/updraftvault.php:320
2016
  msgid "%s per quarter"
2017
  msgstr ""
2018
 
2019
- #: src/central/bootstrap.php:578, src/methods/updraftvault.php:299,
2020
- #: src/methods/updraftvault.php:328
2021
  msgid "Read more about it here."
2022
  msgstr ""
2023
 
2024
- #: src/methods/updraftvault.php:299, src/methods/updraftvault.php:328
2025
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
2026
  msgstr ""
2027
 
2028
- #: src/methods/updraftvault.php:295
2029
  msgid "Already purchased space?"
2030
  msgstr ""
2031
 
2032
- #: src/methods/updraftvault.php:292
2033
  msgid "Show the options"
2034
  msgstr ""
2035
 
2036
- #: src/methods/updraftvault.php:291
2037
  msgid "First time user?"
2038
  msgstr ""
2039
 
2040
- #: src/methods/updraftvault.php:288, src/methods/updraftvault.php:305
2041
  msgid "Press a button to get started."
2042
  msgstr ""
2043
 
2044
- #: src/methods/updraftvault.php:288, src/methods/updraftvault.php:305
2045
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
2046
  msgstr ""
2047
 
@@ -2061,12 +2089,12 @@ msgstr ""
2061
  msgid "Updraft Vault"
2062
  msgstr ""
2063
 
2064
- #: src/addons/azure.php:394, src/addons/backblaze.php:473,
2065
- #: src/addons/googlecloud.php:776, src/methods/s3.php:1103
2066
  msgid "Delete failed:"
2067
  msgstr ""
2068
 
2069
- #: src/backup.php:3326
2070
  msgid "The zip engine returned the message: %s."
2071
  msgstr ""
2072
 
@@ -2086,71 +2114,71 @@ msgstr ""
2086
  msgid "Allow download"
2087
  msgstr ""
2088
 
2089
- #: src/addons/migrator.php:1886
2090
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
2091
  msgstr ""
2092
 
2093
- #: src/addons/migrator.php:1871, src/admin.php:721
2094
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
2095
  msgstr ""
2096
 
2097
- #: src/addons/migrator.php:2374
2098
  msgid "Existing keys"
2099
  msgstr ""
2100
 
2101
- #: src/addons/migrator.php:2365
2102
  msgid "No keys to allow remote sites to connect have yet been created."
2103
  msgstr ""
2104
 
2105
- #: src/addons/migrator.php:2347
2106
  msgid "Your new key:"
2107
  msgstr ""
2108
 
2109
- #: src/addons/migrator.php:2326
2110
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
2111
  msgstr ""
2112
 
2113
- #: src/addons/migrator.php:2308
2114
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
2115
  msgstr ""
2116
 
2117
- #: src/addons/migrator.php:2308
2118
  msgid "Keys for this site are created in the section below the one you just pressed in."
2119
  msgstr ""
2120
 
2121
- #: src/addons/migrator.php:1988, src/central/bootstrap.php:387
2122
  msgid "You must copy and paste this key now - it cannot be shown again."
2123
  msgstr ""
2124
 
2125
- #: src/addons/migrator.php:1988, src/central/bootstrap.php:387
2126
  msgid "Key created successfully."
2127
  msgstr ""
2128
 
2129
- #: src/addons/migrator.php:1973
2130
  msgid "A key with this name already exists; you must use a unique name."
2131
  msgstr ""
2132
 
2133
- #: src/addons/migrator.php:1917
2134
  msgid "Also send this backup to the active remote storage locations"
2135
  msgstr ""
2136
 
2137
- #: src/addons/migrator.php:1882
2138
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
2139
  msgstr ""
2140
 
2141
- #: src/addons/migrator.php:1838
2142
  msgid "site not found"
2143
  msgstr ""
2144
 
2145
- #: src/addons/migrator.php:1823
2146
  msgid "Backup data will be sent to:"
2147
  msgstr ""
2148
 
2149
- #: src/addons/migrator.php:209
2150
  msgid "Restore an existing backup set onto this site"
2151
  msgstr ""
2152
 
2153
- #: src/addons/migrator.php:202
2154
  msgid "This site has no backups to restore from yet."
2155
  msgstr ""
2156
 
@@ -2162,7 +2190,7 @@ msgstr ""
2162
  msgid "This storage method does not allow downloading"
2163
  msgstr ""
2164
 
2165
- #: src/admin.php:3792
2166
  msgid "(backup set imported from remote location)"
2167
  msgstr ""
2168
 
@@ -2182,7 +2210,7 @@ msgstr ""
2182
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
2183
  msgstr ""
2184
 
2185
- #: src/addons/migrator.php:1899, src/admin.php:728
2186
  msgid "Testing connection..."
2187
  msgstr ""
2188
 
@@ -2202,92 +2230,92 @@ msgstr ""
2202
  msgid "Creating..."
2203
  msgstr ""
2204
 
2205
- #: src/addons/migrator.php:2325
2206
  msgid "Or, receive a backup from a remote site"
2207
  msgstr ""
2208
 
2209
- #: src/addons/migrator.php:2314
2210
  msgid "Paste key here"
2211
  msgstr ""
2212
 
2213
- #: src/addons/migrator.php:2308
2214
  msgid "How do I get a site's key?"
2215
  msgstr ""
2216
 
2217
- #: src/addons/migrator.php:2308
2218
  msgid "To add a site as a destination for sending to, enter that site's key below."
2219
  msgstr ""
2220
 
2221
- #: src/addons/migrator.php:2305
2222
  msgid "Or, send a backup to another site"
2223
  msgstr ""
2224
 
2225
- #: src/addons/migrator.php:2070, src/admin.php:729
2226
  msgid "Send"
2227
  msgstr ""
2228
 
2229
- #: src/addons/migrator.php:2064, src/admin.php:720
2230
  msgid "Send to site:"
2231
  msgstr ""
2232
 
2233
- #: src/addons/migrator.php:2062
2234
  msgid "No receiving sites have yet been added."
2235
  msgstr ""
2236
 
2237
- #: src/addons/migrator.php:2043
2238
  msgid "It is for sending backups to the following site: "
2239
  msgstr ""
2240
 
2241
- #: src/addons/migrator.php:2043
2242
  msgid "The key was successfully added."
2243
  msgstr ""
2244
 
2245
- #: src/addons/migrator.php:2027
2246
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2247
  msgstr ""
2248
 
2249
- #: src/addons/migrator.php:2016, src/addons/migrator.php:2018,
2250
- #: src/addons/migrator.php:2022
2251
  msgid "The entered key was corrupt - please try again."
2252
  msgstr ""
2253
 
2254
- #: src/addons/migrator.php:2014
2255
  msgid "The entered key was the wrong length - please try again."
2256
  msgstr ""
2257
 
2258
- #: src/addons/migrator.php:2004
2259
  msgid "key"
2260
  msgstr ""
2261
 
2262
- #: src/methods/ftp.php:352
2263
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2264
  msgstr ""
2265
 
2266
- #: src/methods/ftp.php:350
2267
  msgid "Passive mode"
2268
  msgstr ""
2269
 
2270
- #: src/methods/ftp.php:345
2271
  msgid "Remote path"
2272
  msgstr ""
2273
 
2274
- #: src/methods/ftp.php:340
2275
  msgid "FTP password"
2276
  msgstr ""
2277
 
2278
- #: src/methods/ftp.php:335
2279
  msgid "FTP login"
2280
  msgstr ""
2281
 
2282
- #: src/methods/ftp.php:330
2283
  msgid "FTP server"
2284
  msgstr ""
2285
 
2286
- #: src/addons/migrator.php:174
2287
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
2288
  msgstr ""
2289
 
2290
- #: src/addons/migrator.php:174
2291
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2292
  msgstr ""
2293
 
@@ -2295,7 +2323,7 @@ msgstr ""
2295
  msgid "Resetting..."
2296
  msgstr ""
2297
 
2298
- #: src/addons/migrator.php:2314, src/admin.php:717
2299
  msgid "Add site"
2300
  msgstr ""
2301
 
@@ -2323,15 +2351,15 @@ msgstr ""
2323
  msgid "Go here to re-enter your password."
2324
  msgstr ""
2325
 
2326
- #: src/addons/migrator.php:238
2327
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2328
  msgstr ""
2329
 
2330
- #: src/addons/migrator.php:209
2331
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2332
  msgstr ""
2333
 
2334
- #: src/addons/migrator.php:176
2335
  msgid "To restore using any of the backup sets below, press the button."
2336
  msgstr ""
2337
 
@@ -2339,49 +2367,49 @@ msgstr ""
2339
  msgid "You have made changes to your settings, and not saved."
2340
  msgstr ""
2341
 
2342
- #: src/addons/onedrive.php:1024
2343
  msgid "N.B. %s is not case-sensitive."
2344
  msgstr ""
2345
 
2346
- #: src/addons/onedrive.php:1014
2347
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2348
  msgstr ""
2349
 
2350
- #: src/addons/azure.php:544, src/addons/migrator.php:1886,
2351
- #: src/addons/onedrive.php:1000
2352
  msgid "For longer help, including screenshots, follow this link."
2353
  msgstr ""
2354
 
2355
- #: src/addons/onedrive.php:993
2356
  msgid "Create OneDrive credentials in your OneDrive developer console."
2357
  msgstr ""
2358
 
2359
- #: src/addons/onedrive.php:986
2360
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2361
  msgstr ""
2362
 
2363
- #: src/addons/azure.php:537
2364
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2365
  msgstr ""
2366
 
2367
- #: src/addons/onedrive.php:952, src/addons/onedrive.php:954
2368
  msgid "%s authorisation failed:"
2369
  msgstr ""
2370
 
2371
- #: src/addons/onedrive.php:827, src/addons/onedrive.php:1013,
2372
- #: src/addons/onedrive.php:1017
2373
  msgid "OneDrive"
2374
  msgstr ""
2375
 
2376
- #: src/addons/onedrive.php:640
2377
  msgid "Please re-authorize the connection to your %s account."
2378
  msgstr ""
2379
 
2380
- #: src/methods/email.php:75
2381
  msgid "configure it here"
2382
  msgstr ""
2383
 
2384
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657
2385
  msgid "To remove the block, please go here."
2386
  msgstr ""
2387
 
@@ -2526,7 +2554,7 @@ msgstr ""
2526
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2527
  msgstr ""
2528
 
2529
- #: src/methods/s3.php:879
2530
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2531
  msgstr ""
2532
 
@@ -2538,18 +2566,18 @@ msgstr ""
2538
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
2539
  msgstr ""
2540
 
2541
- #: src/addons/onedrive.php:609, src/addons/onedrive.php:633,
2542
- #: src/methods/updraftvault.php:657, src/udaddons/updraftplus-addons.php:873,
2543
  #: src/udaddons/updraftplus-addons.php:887
2544
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2545
  msgstr ""
2546
 
2547
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657,
2548
  #: src/udaddons/updraftplus-addons.php:887
2549
  msgid "It appears that your web server's IP Address (%s) is blocked."
2550
  msgstr ""
2551
 
2552
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657,
2553
  #: src/udaddons/updraftplus-addons.php:887
2554
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2555
  msgstr ""
@@ -2601,7 +2629,7 @@ msgstr ""
2601
  msgid "(at same time as files backup)"
2602
  msgstr ""
2603
 
2604
- #: src/admin.php:3263
2605
  msgid "No backup has been completed"
2606
  msgstr ""
2607
 
@@ -2648,21 +2676,21 @@ msgstr ""
2648
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2649
  msgstr ""
2650
 
2651
- #: src/addons/sftp.php:436
2652
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2653
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2654
  msgstr ""
2655
 
2656
- #: src/addons/sftp.php:399
2657
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
2658
  msgstr ""
2659
 
2660
- #: src/methods/openstack2.php:183
2661
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2662
  msgid "tenant"
2663
  msgstr ""
2664
 
2665
- #: src/methods/openstack2.php:132
2666
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2667
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2668
  msgstr ""
@@ -2675,7 +2703,7 @@ msgstr ""
2675
  msgid "Check this box to have a basic report sent to"
2676
  msgstr ""
2677
 
2678
- #: src/admin.php:3277
2679
  msgctxt "i.e. Non-automatic"
2680
  msgid "Manual"
2681
  msgstr ""
@@ -2693,7 +2721,7 @@ msgstr ""
2693
  msgid "Any other file/directory on your server that you wish to back up"
2694
  msgstr ""
2695
 
2696
- #: src/admin.php:2440
2697
  msgid "For even more features and personal support, check out "
2698
  msgstr ""
2699
 
@@ -2787,7 +2815,7 @@ msgstr ""
2787
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2788
  msgstr ""
2789
 
2790
- #: src/admin.php:2806, src/admin.php:3823
2791
  msgid "View Log"
2792
  msgstr ""
2793
 
@@ -2804,7 +2832,7 @@ msgstr ""
2804
  msgid "and retain this many scheduled backups"
2805
  msgstr ""
2806
 
2807
- #: src/admin.php:3233
2808
  msgid "incremental backup; base backup: %s"
2809
  msgstr ""
2810
 
@@ -2816,28 +2844,28 @@ msgstr ""
2816
  msgid "Upload files into UpdraftPlus."
2817
  msgstr ""
2818
 
2819
- #: src/admin.php:950, src/includes/class-commands.php:394,
2820
  #: src/templates/wp-admin/settings/tab-status.php:22
2821
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2822
  msgstr ""
2823
 
2824
- #: src/class-updraftplus.php:4511
2825
  msgid "Backup label:"
2826
  msgstr ""
2827
 
2828
- #: src/addons/backblaze.php:189, src/admin.php:1951
2829
  msgid "Error: unexpected file read fail"
2830
  msgstr ""
2831
 
2832
- #: src/backup.php:3332
2833
  msgid "check your log for more details."
2834
  msgstr ""
2835
 
2836
- #: src/backup.php:3330
2837
  msgid "your web hosting account appears to be full; please see: %s"
2838
  msgstr ""
2839
 
2840
- #: src/backup.php:3328
2841
  msgid "A zip error occurred"
2842
  msgstr ""
2843
 
@@ -2845,19 +2873,19 @@ msgstr ""
2845
  msgid "Your label for this backup (optional)"
2846
  msgstr ""
2847
 
2848
- #: src/addons/googlecloud.php:916, src/methods/googledrive.php:1107
2849
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
2850
  msgstr ""
2851
 
2852
- #: src/methods/updraftvault.php:695, src/udaddons/updraftplus-addons.php:926
2853
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2854
  msgstr ""
2855
 
2856
- #: src/methods/updraftvault.php:692, src/udaddons/updraftplus-addons.php:922
2857
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2858
  msgstr ""
2859
 
2860
- #: src/methods/updraftvault.php:633, src/udaddons/updraftplus-addons.php:790
2861
  msgid "You need to supply both an email address and a password"
2862
  msgstr ""
2863
 
@@ -2865,36 +2893,36 @@ msgstr ""
2865
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2866
  msgstr ""
2867
 
2868
- #: src/class-updraftplus.php:4530
2869
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2870
  msgstr ""
2871
 
2872
- #: src/class-updraftplus.php:4530
2873
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2874
  msgstr ""
2875
 
2876
- #: src/addons/migrator.php:1184
2877
  msgid "already done"
2878
  msgstr ""
2879
 
2880
- #: src/addons/migrator.php:1141
2881
  msgid "skipped (not in list)"
2882
  msgstr ""
2883
 
2884
- #: src/addons/migrator.php:1141, src/addons/migrator.php:1184,
2885
- #: src/addons/migrator.php:1318
2886
  msgid "Search and replacing table:"
2887
  msgstr ""
2888
 
2889
- #: src/addons/migrator.php:350
2890
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2891
  msgstr ""
2892
 
2893
- #: src/addons/migrator.php:350
2894
  msgid "These tables only"
2895
  msgstr ""
2896
 
2897
- #: src/addons/migrator.php:349
2898
  msgid "Rows per batch"
2899
  msgstr ""
2900
 
@@ -2906,19 +2934,19 @@ msgstr ""
2906
  msgid "You need to connect to receive future updates to UpdraftPlus."
2907
  msgstr ""
2908
 
2909
- #: src/class-updraftplus.php:4503
2910
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2911
  msgstr ""
2912
 
2913
- #: src/class-updraftplus.php:4503
2914
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2915
  msgstr ""
2916
 
2917
- #: src/class-updraftplus.php:4503
2918
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2919
  msgstr ""
2920
 
2921
- #: src/class-updraftplus.php:4503
2922
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2923
  msgstr ""
2924
 
@@ -2947,7 +2975,7 @@ msgstr ""
2947
  msgid "UpdraftPlus is on social media - check us out!"
2948
  msgstr ""
2949
 
2950
- #: src/admin.php:3890
2951
  msgid "Why am I seeing this?"
2952
  msgstr ""
2953
 
@@ -2959,15 +2987,15 @@ msgstr ""
2959
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2960
  msgstr ""
2961
 
2962
- #: src/admin.php:1890, src/admin.php:1902
2963
  msgid "Start backup"
2964
  msgstr ""
2965
 
2966
- #: src/class-updraftplus.php:4475, src/restorer.php:1045
2967
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2968
  msgstr ""
2969
 
2970
- #: src/admin.php:3131
2971
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2972
  msgstr ""
2973
 
@@ -2975,11 +3003,11 @@ msgstr ""
2975
  msgid "Unless you have a problem, you can completely ignore everything here."
2976
  msgstr ""
2977
 
2978
- #: src/admin.php:2126
2979
  msgid "This file could not be uploaded"
2980
  msgstr ""
2981
 
2982
- #: src/admin.php:2089
2983
  msgid "You will find more information about this in the Settings section."
2984
  msgstr ""
2985
 
@@ -2999,15 +3027,15 @@ msgstr ""
2999
  msgid "Memory limit"
3000
  msgstr ""
3001
 
3002
- #: src/class-updraftplus.php:4944, src/restorer.php:1529
3003
  msgid "restoration"
3004
  msgstr ""
3005
 
3006
- #: src/backup.php:960
3007
  msgid "Incremental"
3008
  msgstr ""
3009
 
3010
- #: src/backup.php:960
3011
  msgid "Full backup"
3012
  msgstr ""
3013
 
@@ -3023,42 +3051,42 @@ msgstr ""
3023
  msgid "Backup succeeded"
3024
  msgstr ""
3025
 
3026
- #: src/admin.php:3278, src/admin.php:3279, src/admin.php:3280,
3027
  #: src/updraftplus.php:99, src/updraftplus.php:100
3028
  msgid "Every %s hours"
3029
  msgstr ""
3030
 
3031
- #: src/addons/migrator.php:835, src/addons/migrator.php:837
3032
  msgid "search and replace"
3033
  msgstr ""
3034
 
3035
- #: src/addons/migrator.php:352
3036
  msgid "Go"
3037
  msgstr ""
3038
 
3039
- #: src/addons/migrator.php:341
3040
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
3041
  msgstr ""
3042
 
3043
- #: src/addons/migrator.php:340
3044
  msgid "This can easily destroy your site; so, use it with care!"
3045
  msgstr ""
3046
 
3047
- #: src/addons/migrator.php:296, src/addons/migrator.php:348
3048
  msgid "Replace with"
3049
  msgstr ""
3050
 
3051
- #: src/addons/migrator.php:295, src/addons/migrator.php:347
3052
  msgid "Search for"
3053
  msgstr ""
3054
 
3055
- #: src/addons/migrator.php:294, src/addons/migrator.php:339,
3056
  #: src/templates/wp-admin/advanced/search-replace.php:7,
3057
  #: src/templates/wp-admin/advanced/tools-menu.php:18
3058
  msgid "Search / replace database"
3059
  msgstr ""
3060
 
3061
- #: src/addons/migrator.php:300
3062
  msgid "search term"
3063
  msgstr ""
3064
 
@@ -3066,19 +3094,19 @@ msgstr ""
3066
  msgid "Too many database errors have occurred - aborting"
3067
  msgstr ""
3068
 
3069
- #: src/backup.php:1026
3070
  msgid "read more at %s"
3071
  msgstr ""
3072
 
3073
- #: src/backup.php:1026
3074
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3075
  msgstr ""
3076
 
3077
- #: src/methods/googledrive.php:1114
3078
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
3079
  msgstr ""
3080
 
3081
- #: src/admin.php:3634
3082
  msgid "You have not yet made any backups."
3083
  msgstr ""
3084
 
@@ -3098,11 +3126,11 @@ msgstr ""
3098
  msgid "Free disk space in account:"
3099
  msgstr ""
3100
 
3101
- #: src/admin.php:4475, src/templates/wp-admin/settings/tab-status.php:27
3102
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3103
  msgstr ""
3104
 
3105
- #: src/admin.php:534, src/admin.php:676, src/admin.php:1736,
3106
  #: src/includes/deprecated-actions.php:29,
3107
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3108
  #: src/templates/wp-admin/settings/tab-bar.php:6
@@ -3113,15 +3141,15 @@ msgstr ""
3113
  msgid "Current Status"
3114
  msgstr ""
3115
 
3116
- #: src/admin.php:955
3117
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
3118
  msgstr ""
3119
 
3120
- #: src/admin.php:955
3121
  msgid "To make a backup, just press the Backup Now button."
3122
  msgstr ""
3123
 
3124
- #: src/admin.php:955
3125
  msgid "Welcome to UpdraftPlus!"
3126
  msgstr ""
3127
 
@@ -3193,11 +3221,11 @@ msgstr ""
3193
  msgid "user"
3194
  msgstr ""
3195
 
3196
- #: src/class-updraftplus.php:1760
3197
  msgid "External database (%s)"
3198
  msgstr ""
3199
 
3200
- #: src/methods/googledrive.php:1114
3201
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
3202
  msgstr ""
3203
 
@@ -3205,12 +3233,12 @@ msgstr ""
3205
  msgid "failed to access parent folder"
3206
  msgstr ""
3207
 
3208
- #: src/addons/googlecloud.php:631, src/addons/onedrive.php:795,
3209
- #: src/addons/onedrive.php:806, src/methods/googledrive.php:420
3210
  msgid "However, subsequent access attempts failed:"
3211
  msgstr ""
3212
 
3213
- #: src/admin.php:3659
3214
  msgid "External database"
3215
  msgstr ""
3216
 
@@ -3242,7 +3270,7 @@ msgstr ""
3242
  msgid "use UpdraftPlus Premium"
3243
  msgstr ""
3244
 
3245
- #: src/class-updraftplus.php:4362
3246
  msgid "Decryption failed. The database file is encrypted."
3247
  msgstr ""
3248
 
@@ -3255,15 +3283,15 @@ msgstr ""
3255
  msgid "An error occurred on the first %s command - aborting run"
3256
  msgstr ""
3257
 
3258
- #: src/addons/moredatabase.php:105, src/backup.php:1526
3259
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3260
  msgstr ""
3261
 
3262
- #: src/backup.php:1526
3263
  msgid "database connection attempt failed."
3264
  msgstr ""
3265
 
3266
- #: src/addons/migrator.php:1072
3267
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3268
  msgstr ""
3269
 
@@ -3271,41 +3299,41 @@ msgstr ""
3271
  msgid "In %s, path names are case sensitive."
3272
  msgstr ""
3273
 
3274
- #: src/addons/azure.php:563, src/addons/google-enhanced.php:76,
3275
- #: src/addons/onedrive.php:1024
3276
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3277
  msgstr ""
3278
 
3279
- #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:951,
3280
- #: src/addons/onedrive.php:1024
3281
  msgid "e.g. %s"
3282
  msgstr ""
3283
 
3284
- #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1024
3285
  msgid "Enter the path of the %s folder you wish to use here."
3286
  msgstr ""
3287
 
3288
- #: src/methods/openstack2.php:163
3289
  msgid "Container"
3290
  msgstr ""
3291
 
3292
- #: src/methods/openstack2.php:146
3293
  msgid "Leave this blank, and a default will be chosen."
3294
  msgstr ""
3295
 
3296
- #: src/methods/openstack2.php:137
3297
  msgid "Tenant"
3298
  msgstr ""
3299
 
3300
- #: src/methods/openstack2.php:137
3301
  msgid "Follow this link for more information"
3302
  msgstr ""
3303
 
3304
- #: src/methods/openstack2.php:129, src/methods/openstack2.php:188
3305
  msgid "authentication URI"
3306
  msgstr ""
3307
 
3308
- #: src/methods/openstack2.php:124
3309
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
3310
  msgstr ""
3311
 
@@ -3325,24 +3353,24 @@ msgstr ""
3325
  msgid "Failed to upload %s"
3326
  msgstr ""
3327
 
3328
- #: src/methods/dropbox.php:664, src/methods/dropbox.php:666
3329
  msgid "Success:"
3330
  msgstr ""
3331
 
3332
- #: src/addons/onedrive.php:1045, src/methods/dropbox.php:517
3333
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
3334
  msgstr ""
3335
 
3336
- #: src/addons/onedrive.php:1037, src/methods/dropbox.php:501
3337
  msgid "(You appear to be already authenticated)."
3338
  msgstr ""
3339
 
3340
- #: src/methods/dropbox.php:497, src/methods/dropbox.php:505,
3341
- #: src/methods/dropbox.php:517
3342
  msgid "Dropbox"
3343
  msgstr ""
3344
 
3345
- #: src/addons/onedrive.php:1030, src/methods/dropbox.php:497
3346
  msgid "Authenticate with %s"
3347
  msgstr ""
3348
 
@@ -3373,34 +3401,34 @@ msgstr ""
3373
  msgid "%s error - failed to access the container"
3374
  msgstr ""
3375
 
3376
- #: src/addons/googlecloud.php:1016, src/addons/onedrive.php:1069,
3377
- #: src/methods/dropbox.php:560, src/methods/googledrive.php:1179
3378
  msgid "Account holder's name: %s."
3379
  msgstr ""
3380
 
3381
- #: src/methods/googledrive.php:1157
3382
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3383
  msgstr ""
3384
 
3385
- #: src/methods/googledrive.php:1144
3386
  msgid "It is an ID number internal to Google Drive"
3387
  msgstr ""
3388
 
3389
- #: src/methods/googledrive.php:1144
3390
  msgid "<strong>This is NOT a folder name</strong>."
3391
  msgstr ""
3392
 
3393
- #: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1022,
3394
- #: src/methods/googledrive.php:1139, src/methods/googledrive.php:1150
3395
  msgid "Folder"
3396
  msgstr ""
3397
 
3398
- #: src/addons/googlecloud.php:296, src/addons/onedrive.php:377,
3399
- #: src/methods/googledrive.php:1063
3400
  msgid "%s download: failed: file not found"
3401
  msgstr ""
3402
 
3403
- #: src/addons/googlecloud.php:651, src/methods/googledrive.php:440
3404
  msgid "Name: %s."
3405
  msgstr ""
3406
 
@@ -3429,7 +3457,7 @@ msgstr ""
3429
  msgid "Fetch"
3430
  msgstr ""
3431
 
3432
- #: src/addons/migrator.php:433,
3433
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3434
  #: src/templates/wp-admin/settings/form-contents.php:190
3435
  msgid "This feature requires %s version %s or later"
@@ -3439,7 +3467,7 @@ msgstr ""
3439
  msgid "Failed to unpack the archive"
3440
  msgstr ""
3441
 
3442
- #: src/class-updraftplus.php:1292
3443
  msgid "Error - failed to download the file"
3444
  msgstr ""
3445
 
@@ -3459,16 +3487,16 @@ msgstr ""
3459
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3460
  msgstr ""
3461
 
3462
- #: src/addons/sftp.php:497
3463
  msgid "password/key"
3464
  msgstr ""
3465
 
3466
- #: src/addons/migrator.php:2332, src/addons/sftp.php:433, src/admin.php:723,
3467
- #: src/admin.php:4696
3468
  msgid "Key"
3469
  msgstr ""
3470
 
3471
- #: src/addons/sftp.php:428
3472
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3473
  msgstr ""
3474
 
@@ -3480,24 +3508,24 @@ msgstr ""
3480
  msgid "SCP/SFTP password/key"
3481
  msgstr ""
3482
 
3483
- #: src/admin.php:3703
3484
  msgid "Files backup (created by %s)"
3485
  msgstr ""
3486
 
3487
- #: src/admin.php:3703
3488
  msgid "Files and database WordPress backup (created by %s)"
3489
  msgstr ""
3490
 
3491
- #: src/addons/importer.php:276, src/admin.php:3697,
3492
  #: src/includes/class-backup-history.php:279
3493
  msgid "Backup created by: %s."
3494
  msgstr ""
3495
 
3496
- #: src/admin.php:3657
3497
  msgid "Database (created by %s)"
3498
  msgstr ""
3499
 
3500
- #: src/admin.php:3651, src/admin.php:3699
3501
  msgid "unknown source"
3502
  msgstr ""
3503
 
@@ -3509,15 +3537,15 @@ msgstr ""
3509
  msgid "Upload backup files"
3510
  msgstr ""
3511
 
3512
- #: src/admin.php:2141
3513
  msgid "This backup was created by %s, and can be imported."
3514
  msgstr ""
3515
 
3516
- #: src/admin.php:984
3517
  msgid "Read this page for a guide to possible causes and how to fix it."
3518
  msgstr ""
3519
 
3520
- #: src/admin.php:984
3521
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3522
  msgstr ""
3523
 
@@ -3534,7 +3562,7 @@ msgstr ""
3534
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3535
  msgstr ""
3536
 
3537
- #: src/admin.php:3700, src/includes/class-wpadmin-commands.php:152,
3538
  #: src/restorer.php:1498
3539
  msgid "Backup created by unknown source (%s) - cannot be restored."
3540
  msgstr ""
@@ -3547,16 +3575,16 @@ msgstr ""
3547
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3548
  msgstr ""
3549
 
3550
- #: src/methods/dropbox.php:309
3551
  msgid "%s returned an unexpected HTTP response: %s"
3552
  msgstr ""
3553
 
3554
- #: src/addons/sftp.php:967
3555
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3556
  msgstr ""
3557
 
3558
- #: src/addons/backblaze.php:525, src/methods/cloudfiles.php:234,
3559
- #: src/methods/dropbox.php:290, src/methods/openstack-base.php:118
3560
  msgid "No settings were found"
3561
  msgstr ""
3562
 
@@ -3568,7 +3596,7 @@ msgstr ""
3568
  msgid "Rescanning remote and local storage for backup sets..."
3569
  msgstr ""
3570
 
3571
- #: src/addons/googlecloud.php:954, src/addons/googlecloud.php:967,
3572
  #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
3573
  msgid "(Read more)"
3574
  msgstr ""
@@ -3586,7 +3614,7 @@ msgstr ""
3586
  msgid "Remove"
3587
  msgstr ""
3588
 
3589
- #: src/methods/s3.php:867
3590
  msgid "Other %s FAQs."
3591
  msgstr ""
3592
 
@@ -3594,28 +3622,28 @@ msgstr ""
3594
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3595
  msgstr ""
3596
 
3597
- #: src/addons/morefiles.php:445, src/admin.php:3382
3598
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3599
  msgstr ""
3600
 
3601
- #: src/class-updraftplus.php:4944, src/methods/ftp.php:309,
3602
  #: src/restorer.php:1529
3603
  msgid "Your hosting company must enable these functions before %s can work."
3604
  msgstr ""
3605
 
3606
- #: src/class-updraftplus.php:4944, src/methods/ftp.php:309
3607
  msgid "Your web server's PHP installation has these functions disabled: %s."
3608
  msgstr ""
3609
 
3610
- #: src/methods/ftp.php:306
3611
  msgid "encrypted FTP (explicit encryption)"
3612
  msgstr ""
3613
 
3614
- #: src/methods/ftp.php:305
3615
  msgid "encrypted FTP (implicit encryption)"
3616
  msgstr ""
3617
 
3618
- #: src/methods/ftp.php:304
3619
  msgid "regular non-encrypted FTP"
3620
  msgstr ""
3621
 
@@ -3673,15 +3701,15 @@ msgstr ""
3673
  msgid "Dismiss from main dashboard (for %s weeks)"
3674
  msgstr ""
3675
 
3676
- #: src/class-updraftplus.php:4994
3677
  msgid "The attempt to undo the double-compression succeeded."
3678
  msgstr ""
3679
 
3680
- #: src/class-updraftplus.php:4971, src/class-updraftplus.php:4992
3681
  msgid "The attempt to undo the double-compression failed."
3682
  msgstr ""
3683
 
3684
- #: src/class-updraftplus.php:4964
3685
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3686
  msgstr ""
3687
 
@@ -3689,15 +3717,15 @@ msgstr ""
3689
  msgid "Constants"
3690
  msgstr ""
3691
 
3692
- #: src/backup.php:1763
3693
  msgid "Failed to open database file for reading:"
3694
  msgstr ""
3695
 
3696
- #: src/backup.php:1574
3697
  msgid "No database tables found"
3698
  msgstr ""
3699
 
3700
- #: src/backup.php:1572
3701
  msgid "please wait for the rescheduled attempt"
3702
  msgstr ""
3703
 
@@ -3705,7 +3733,7 @@ msgstr ""
3705
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
3706
  msgstr ""
3707
 
3708
- #: src/addons/onedrive.php:94, src/methods/dropbox.php:199
3709
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
3710
  msgstr ""
3711
 
@@ -3714,7 +3742,7 @@ msgstr ""
3714
  msgid "Errors occurred:"
3715
  msgstr ""
3716
 
3717
- #: src/admin.php:3909
3718
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3719
  msgstr ""
3720
 
@@ -3738,20 +3766,20 @@ msgstr ""
3738
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3739
  msgstr ""
3740
 
3741
- #: src/admin.php:959, src/class-updraftplus.php:810
3742
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3743
  msgstr ""
3744
 
3745
- #: src/addons/migrator.php:267
3746
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3747
  msgstr ""
3748
 
3749
- #: src/addons/sftp.php:722, src/addons/sftp.php:725,
3750
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
3751
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3752
  msgstr ""
3753
 
3754
- #: src/addons/moredatabase.php:137, src/admin.php:1480
3755
  msgid "Messages:"
3756
  msgstr ""
3757
 
@@ -3763,56 +3791,56 @@ msgstr ""
3763
  msgid "The directory does not exist"
3764
  msgstr ""
3765
 
3766
- #: src/addons/cloudfiles-enhanced.php:277
3767
  msgid "New User's Email Address"
3768
  msgstr ""
3769
 
3770
- #: src/addons/cloudfiles-enhanced.php:274
3771
  msgid "New User's Username"
3772
  msgstr ""
3773
 
3774
- #: src/addons/cloudfiles-enhanced.php:271
3775
  msgid "Admin API Key"
3776
  msgstr ""
3777
 
3778
- #: src/addons/cloudfiles-enhanced.php:268
3779
  msgid "Admin Username"
3780
  msgstr ""
3781
 
3782
- #: src/addons/cloudfiles-enhanced.php:263
3783
  msgid "US or UK Rackspace Account"
3784
  msgstr ""
3785
 
3786
- #: src/addons/cloudfiles-enhanced.php:255
3787
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
3788
  msgstr ""
3789
 
3790
- #: src/addons/cloudfiles-enhanced.php:252
3791
  msgid "Create new API user and container"
3792
  msgstr ""
3793
 
3794
- #: src/addons/cloudfiles-enhanced.php:190
3795
  msgid "API Key: %s"
3796
  msgstr ""
3797
 
3798
- #: src/addons/cloudfiles-enhanced.php:190
3799
  msgid "Password: %s"
3800
  msgstr ""
3801
 
3802
- #: src/addons/cloudfiles-enhanced.php:190, src/addons/s3-enhanced.php:318
3803
  msgid "Username: %s"
3804
  msgstr ""
3805
 
3806
- #: src/addons/cloudfiles-enhanced.php:149,
3807
- #: src/addons/cloudfiles-enhanced.php:152,
3808
- #: src/addons/cloudfiles-enhanced.php:156,
3809
- #: src/addons/cloudfiles-enhanced.php:168,
3810
- #: src/addons/cloudfiles-enhanced.php:175,
3811
- #: src/addons/cloudfiles-enhanced.php:179
3812
  msgid "Cloud Files operation failed (%s)"
3813
  msgstr ""
3814
 
3815
- #: src/addons/cloudfiles-enhanced.php:147
3816
  msgid "Conflict: that user or email address already exists"
3817
  msgstr ""
3818
 
@@ -3848,71 +3876,71 @@ msgstr ""
3848
  msgid "Rackspace Cloud Files, enhanced"
3849
  msgstr ""
3850
 
3851
- #: src/addons/cloudfiles-enhanced.php:284, src/methods/cloudfiles-new.php:139,
3852
- #: src/methods/cloudfiles.php:482
3853
  msgid "Cloud Files Container"
3854
  msgstr ""
3855
 
3856
- #: src/methods/cloudfiles-new.php:134, src/methods/cloudfiles.php:477
3857
  msgid "Cloud Files API Key"
3858
  msgstr ""
3859
 
3860
- #: src/methods/cloudfiles-new.php:129
3861
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3862
  msgstr ""
3863
 
3864
- #: src/methods/cloudfiles-new.php:126
3865
  msgid "Cloud Files Username"
3866
  msgstr ""
3867
 
3868
- #: src/addons/cloudfiles-enhanced.php:47, src/methods/cloudfiles-new.php:158
3869
  msgid "London (LON)"
3870
  msgstr ""
3871
 
3872
- #: src/addons/cloudfiles-enhanced.php:46, src/methods/cloudfiles-new.php:157
3873
  msgid "Hong Kong (HKG)"
3874
  msgstr ""
3875
 
3876
- #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:156
3877
  msgid "Northern Virginia (IAD)"
3878
  msgstr ""
3879
 
3880
- #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:155
3881
  msgid "Chicago (ORD)"
3882
  msgstr ""
3883
 
3884
- #: src/addons/cloudfiles-enhanced.php:43, src/methods/cloudfiles-new.php:154
3885
  msgid "Sydney (SYD)"
3886
  msgstr ""
3887
 
3888
- #: src/addons/cloudfiles-enhanced.php:42, src/methods/cloudfiles-new.php:153
3889
  msgid "Dallas (DFW) (default)"
3890
  msgstr ""
3891
 
3892
- #: src/addons/cloudfiles-enhanced.php:280, src/methods/cloudfiles-new.php:116
3893
  msgid "Cloud Files Storage Region"
3894
  msgstr ""
3895
 
3896
- #: src/methods/cloudfiles-new.php:109
3897
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3898
  msgstr ""
3899
 
3900
- #: src/methods/cloudfiles-new.php:107
3901
  msgid "US or UK-based Rackspace Account"
3902
  msgstr ""
3903
 
3904
- #: src/addons/cloudfiles-enhanced.php:264, src/methods/cloudfiles-new.php:107
3905
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3906
  msgstr ""
3907
 
3908
- #: src/addons/cloudfiles-enhanced.php:145, src/addons/s3-enhanced.php:221,
3909
  #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:484,
3910
  #: src/methods/openstack-base.php:486, src/methods/openstack-base.php:507,
3911
  #: src/methods/openstack2.php:33
3912
  msgid "Authorisation failed (check your credentials)"
3913
  msgstr ""
3914
 
3915
- #: src/methods/updraftvault.php:607, src/udaddons/options.php:270
3916
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3917
  msgstr ""
3918
 
@@ -3928,15 +3956,15 @@ msgstr ""
3928
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3929
  msgstr ""
3930
 
3931
- #: src/admin.php:673, src/admin.php:4188
3932
  msgid "Error data:"
3933
  msgstr ""
3934
 
3935
- #: src/admin.php:3861
3936
  msgid "Backup does not exist in the backup history"
3937
  msgstr ""
3938
 
3939
- #: src/admin.php:2741
3940
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3941
  msgstr ""
3942
 
@@ -3976,11 +4004,11 @@ msgstr ""
3976
  msgid "Email reports"
3977
  msgstr ""
3978
 
3979
- #: src/class-updraftplus.php:1768, src/class-updraftplus.php:1773
3980
  msgid "%s checksum: %s"
3981
  msgstr ""
3982
 
3983
- #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1743
3984
  msgid "files: %s"
3985
  msgstr ""
3986
 
@@ -3992,7 +4020,7 @@ msgstr ""
3992
  msgid "Debugging information"
3993
  msgstr ""
3994
 
3995
- #: src/addons/reporting.php:222, src/admin.php:3590
3996
  msgid "Uploaded to:"
3997
  msgstr ""
3998
 
@@ -4033,22 +4061,22 @@ msgstr ""
4033
  msgid "%d errors, %d warnings"
4034
  msgstr ""
4035
 
4036
- #: src/addons/onedrive.php:751, src/methods/dropbox.php:648
4037
  msgid "%s authentication"
4038
  msgstr ""
4039
 
4040
- #: src/addons/onedrive.php:751, src/class-updraftplus.php:492,
4041
- #: src/methods/dropbox.php:172, src/methods/dropbox.php:608,
4042
- #: src/methods/dropbox.php:648, src/methods/dropbox.php:661,
4043
- #: src/methods/dropbox.php:805
4044
  msgid "%s error: %s"
4045
  msgstr ""
4046
 
4047
- #: src/addons/googlecloud.php:909, src/methods/dropbox.php:474
4048
  msgid "%s logo"
4049
  msgstr ""
4050
 
4051
- #: src/methods/dropbox.php:218
4052
  msgid "%s did not return the expected response - check your log file for more details"
4053
  msgstr ""
4054
 
@@ -4056,16 +4084,16 @@ msgstr ""
4056
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
4057
  msgstr ""
4058
 
4059
- #: src/methods/email.php:76
4060
  msgid "For more options, use the \"%s\" add-on."
4061
  msgstr ""
4062
 
4063
- #: src/methods/email.php:75
4064
  msgid "Your site's admin email address (%s) will be used."
4065
  msgstr ""
4066
 
4067
- #: src/admin.php:710, src/methods/updraftvault.php:296,
4068
- #: src/methods/updraftvault.php:339, src/udaddons/options.php:249
4069
  msgid "Connect"
4070
  msgstr ""
4071
 
@@ -4073,7 +4101,7 @@ msgstr ""
4073
  msgid "For more reporting features, use the Reporting add-on."
4074
  msgstr ""
4075
 
4076
- #: src/class-updraftplus.php:4443
4077
  msgid "(version: %s)"
4078
  msgstr ""
4079
 
@@ -4086,63 +4114,63 @@ msgstr ""
4086
  msgid "When the Email storage method is enabled, also send the entire backup"
4087
  msgstr ""
4088
 
4089
- #: src/addons/reporting.php:181, src/backup.php:1061
4090
  msgid "Latest status:"
4091
  msgstr ""
4092
 
4093
- #: src/backup.php:1060
4094
  msgid "Backup contains:"
4095
  msgstr ""
4096
 
4097
- #: src/backup.php:1017
4098
  msgid "Backed up: %s"
4099
  msgstr ""
4100
 
4101
- #: src/addons/reporting.php:264, src/backup.php:1011
4102
  msgid "The log file has been attached to this email."
4103
  msgstr ""
4104
 
4105
- #: src/backup.php:975
4106
  msgid "Unknown/unexpected error - please raise a support request"
4107
  msgstr ""
4108
 
4109
- #: src/backup.php:972
4110
  msgid "Database only (files were not part of this particular schedule)"
4111
  msgstr ""
4112
 
4113
- #: src/backup.php:972
4114
  msgid "Database (files backup has not completed)"
4115
  msgstr ""
4116
 
4117
- #: src/backup.php:969
4118
  msgid "Files only (database was not part of this particular schedule)"
4119
  msgstr ""
4120
 
4121
- #: src/backup.php:969
4122
  msgid "Files (database backup has not completed)"
4123
  msgstr ""
4124
 
4125
- #: src/admin.php:305, src/backup.php:967
4126
  msgid "Files and database"
4127
  msgstr ""
4128
 
4129
- #: src/options.php:192
4130
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4131
  msgstr ""
4132
 
4133
- #: src/options.php:192
4134
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4135
  msgstr ""
4136
 
4137
- #: src/options.php:192
4138
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4139
  msgstr ""
4140
 
4141
- #: src/options.php:192
4142
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4143
  msgstr ""
4144
 
4145
- #: src/options.php:192
4146
  msgid "UpdraftPlus warning:"
4147
  msgstr ""
4148
 
@@ -4186,16 +4214,16 @@ msgstr ""
4186
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4187
  msgstr ""
4188
 
4189
- #: src/methods/updraftvault.php:686, src/methods/updraftvault.php:701,
4190
  #: src/udaddons/updraftplus-addons.php:933
4191
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4192
  msgstr ""
4193
 
4194
- #: src/methods/updraftvault.php:698, src/udaddons/updraftplus-addons.php:929
4195
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4196
  msgstr ""
4197
 
4198
- #: src/methods/updraftvault.php:659, src/udaddons/updraftplus-addons.php:892
4199
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4200
  msgstr ""
4201
 
@@ -4207,14 +4235,14 @@ msgstr ""
4207
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4208
  msgstr ""
4209
 
4210
- #: src/methods/email.php:76,
4211
  #: src/templates/wp-admin/settings/form-contents.php:251,
4212
  #: src/templates/wp-admin/settings/tab-addons.php:203,
4213
  #: src/templates/wp-admin/settings/tab-addons.php:204
4214
  msgid "Reporting"
4215
  msgstr ""
4216
 
4217
- #: src/admin.php:4693
4218
  msgid "Options (raw)"
4219
  msgstr ""
4220
 
@@ -4234,11 +4262,11 @@ msgstr ""
4234
  msgid "See also the \"More Files\" add-on from our shop."
4235
  msgstr ""
4236
 
4237
- #: src/backup.php:3319, src/class-updraftplus.php:823
4238
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4239
  msgstr ""
4240
 
4241
- #: src/class-updraftplus.php:807
4242
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4243
  msgstr ""
4244
 
@@ -4366,7 +4394,7 @@ msgstr ""
4366
  msgid "Your web-server does not have the %s module installed."
4367
  msgstr ""
4368
 
4369
- #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1169
4370
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4371
  msgstr ""
4372
 
@@ -4390,7 +4418,7 @@ msgstr ""
4390
  msgid "Site home:"
4391
  msgstr ""
4392
 
4393
- #: src/addons/morestorage.php:72
4394
  msgid "Remote Storage Options"
4395
  msgstr ""
4396
 
@@ -4402,7 +4430,7 @@ msgstr ""
4402
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4403
  msgstr ""
4404
 
4405
- #: src/addons/azure.php:371, src/methods/stream-base.php:141,
4406
  #: src/methods/stream-base.php:146
4407
  msgid "Upload failed"
4408
  msgstr ""
@@ -4411,11 +4439,11 @@ msgstr ""
4411
  msgid "You can send a backup to more than one destination with an add-on."
4412
  msgstr ""
4413
 
4414
- #: src/admin.php:2964
4415
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4416
  msgstr ""
4417
 
4418
- #: src/admin.php:2863
4419
  msgid "(%s%%, file %s of %s)"
4420
  msgstr ""
4421
 
@@ -4424,15 +4452,15 @@ msgstr ""
4424
  msgid "Read more about how this works..."
4425
  msgstr ""
4426
 
4427
- #: src/addons/sftp.php:559
4428
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4429
  msgstr ""
4430
 
4431
- #: src/addons/sftp.php:557
4432
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4433
  msgstr ""
4434
 
4435
- #: src/addons/sftp.php:459
4436
  msgid "Use SCP instead of SFTP"
4437
  msgstr ""
4438
 
@@ -4456,11 +4484,11 @@ msgstr ""
4456
  msgid "%s settings test result:"
4457
  msgstr ""
4458
 
4459
- #: src/admin.php:3765, src/admin.php:3767
4460
  msgid "(Not finished)"
4461
  msgstr ""
4462
 
4463
- #: src/admin.php:3767
4464
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4465
  msgstr ""
4466
 
@@ -4472,77 +4500,77 @@ msgstr ""
4472
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4473
  msgstr ""
4474
 
4475
- #: src/admin.php:2959
4476
  msgid "Job ID: %s"
4477
  msgstr ""
4478
 
4479
- #: src/admin.php:2944
4480
  msgid "last activity: %ss ago"
4481
  msgstr ""
4482
 
4483
- #: src/admin.php:2943
4484
  msgid "next resumption: %d (after %ss)"
4485
  msgstr ""
4486
 
4487
- #: src/admin.php:2926, src/central/bootstrap.php:428,
4488
- #: src/central/bootstrap.php:435, src/methods/updraftvault.php:387,
4489
- #: src/methods/updraftvault.php:421, src/methods/updraftvault.php:506
4490
  msgid "Unknown"
4491
  msgstr ""
4492
 
4493
- #: src/admin.php:2877
4494
  msgid "Backup finished"
4495
  msgstr ""
4496
 
4497
- #: src/admin.php:2872
4498
  msgid "Waiting until scheduled time to retry because of errors"
4499
  msgstr ""
4500
 
4501
- #: src/admin.php:2868
4502
  msgid "Pruning old backup sets"
4503
  msgstr ""
4504
 
4505
- #: src/admin.php:2856
4506
  msgid "Uploading files to remote storage"
4507
  msgstr ""
4508
 
4509
- #: src/admin.php:2924
4510
  msgid "Encrypted database"
4511
  msgstr ""
4512
 
4513
- #: src/admin.php:2916
4514
  msgid "Encrypting database"
4515
  msgstr ""
4516
 
4517
- #: src/admin.php:2890
4518
  msgid "Created database backup"
4519
  msgstr ""
4520
 
4521
- #: src/admin.php:2903
4522
  msgid "table: %s"
4523
  msgstr ""
4524
 
4525
- #: src/admin.php:2901
4526
  msgid "Creating database backup"
4527
  msgstr ""
4528
 
4529
- #: src/admin.php:2851
4530
  msgid "Created file backup zips"
4531
  msgstr ""
4532
 
4533
- #: src/admin.php:2838
4534
  msgid "Creating file backup zips"
4535
  msgstr ""
4536
 
4537
- #: src/admin.php:2833
4538
  msgid "Backup begun"
4539
  msgstr ""
4540
 
4541
- #: src/admin.php:2666
4542
  msgid "Backups in progress:"
4543
  msgstr ""
4544
 
4545
- #: src/admin.php:963
4546
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
4547
  msgstr ""
4548
 
@@ -4558,20 +4586,20 @@ msgstr ""
4558
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4559
  msgstr ""
4560
 
4561
- #: src/class-updraftplus.php:2861
4562
  msgid "The backup has not finished; a resumption is scheduled"
4563
  msgstr ""
4564
 
4565
- #: src/class-updraftplus.php:2045
4566
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4567
  msgstr ""
4568
 
4569
- #: src/addons/onedrive.php:895,
4570
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4571
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4572
  msgstr ""
4573
 
4574
- #: src/admin.php:2467
4575
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4576
  msgstr ""
4577
 
@@ -4651,32 +4679,32 @@ msgstr ""
4651
  msgid "Support"
4652
  msgstr ""
4653
 
4654
- #: src/class-updraftplus.php:4743
4655
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4656
  msgstr ""
4657
 
4658
- #: src/class-updraftplus.php:4735
4659
  msgid "This database backup is missing core WordPress tables: %s"
4660
  msgstr ""
4661
 
4662
- #: src/class-updraftplus.php:4496
4663
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4664
  msgstr ""
4665
 
4666
- #: src/class-updraftplus.php:4495, src/class-updraftplus.php:4502
4667
  msgid "%s version: %s"
4668
  msgstr ""
4669
 
4670
- #: src/class-updraftplus.php:4379
4671
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4672
  msgstr ""
4673
 
4674
- #: src/addons/autobackup.php:1053, src/admin.php:798,
4675
  #: src/includes/updraftplus-notices.php:171
4676
  msgid "Be safe with an automatic backup"
4677
  msgstr ""
4678
 
4679
- #: src/admin.php:2420
4680
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4681
  msgstr ""
4682
 
@@ -4724,11 +4752,11 @@ msgstr ""
4724
  msgid "Delete from your web server"
4725
  msgstr ""
4726
 
4727
- #: src/admin.php:3737
4728
  msgid "You appear to be missing one or more archives from this multi-archive set."
4729
  msgstr ""
4730
 
4731
- #: src/admin.php:3734
4732
  msgid "(%d archive(s) in set)."
4733
  msgstr ""
4734
 
@@ -4748,7 +4776,7 @@ msgstr ""
4748
  msgid "Error: the server sent an empty response."
4749
  msgstr ""
4750
 
4751
- #: src/admin.php:2155
4752
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4753
  msgstr ""
4754
 
@@ -4784,7 +4812,7 @@ msgstr ""
4784
  msgid "No such backup set exists"
4785
  msgstr ""
4786
 
4787
- #: src/admin.php:1353
4788
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4789
  msgstr ""
4790
 
@@ -4792,7 +4820,7 @@ msgstr ""
4792
  msgid "Moving unpacked backup into place..."
4793
  msgstr ""
4794
 
4795
- #: src/backup.php:3020, src/backup.php:3275
4796
  msgid "Failed to open the zip file (%s) - %s"
4797
  msgstr ""
4798
 
@@ -4800,27 +4828,28 @@ msgstr ""
4800
  msgid "WordPress root directory server path: %s"
4801
  msgstr ""
4802
 
4803
- #: src/methods/dreamobjects.php:77, src/methods/s3generic.php:93
4804
  msgid "%s end-point"
4805
  msgstr ""
4806
 
4807
- #: src/methods/s3.php:835
4808
  msgid "... and many more!"
4809
  msgstr ""
4810
 
4811
- #: src/methods/s3generic.php:59, src/methods/s3generic.php:72
 
4812
  msgid "S3 (Compatible)"
4813
  msgstr ""
4814
 
4815
- #: src/admin.php:1263
4816
  msgid "File is not locally present - needs retrieving from remote storage"
4817
  msgstr ""
4818
 
4819
- #: src/admin.php:4040
4820
  msgid "Looking for %s archive: file name: %s"
4821
  msgstr ""
4822
 
4823
- #: src/admin.php:4001
4824
  msgid "Final checks"
4825
  msgstr ""
4826
 
@@ -4832,7 +4861,7 @@ msgstr ""
4832
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4833
  msgstr ""
4834
 
4835
- #: src/admin.php:3371
4836
  msgid "Your wp-content directory server path: %s"
4837
  msgstr ""
4838
 
@@ -4848,7 +4877,7 @@ msgstr ""
4848
  msgid "Processing files - please wait..."
4849
  msgstr ""
4850
 
4851
- #: src/admin.php:4190,
4852
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4853
  msgid "Please consult this FAQ for help on what to do about it."
4854
  msgstr ""
@@ -4857,11 +4886,11 @@ msgstr ""
4857
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4858
  msgstr ""
4859
 
4860
- #: src/class-updraftplus.php:4387
4861
  msgid "Failed to open database file."
4862
  msgstr ""
4863
 
4864
- #: src/admin.php:4658
4865
  msgid "Known backups (raw)"
4866
  msgstr ""
4867
 
@@ -4873,14 +4902,14 @@ msgstr ""
4873
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4874
  msgstr ""
4875
 
4876
- #: src/admin.php:4060
4877
  msgid "file is size:"
4878
  msgstr ""
4879
 
4880
- #: src/addons/googlecloud.php:946, src/addons/migrator.php:421,
4881
- #: src/addons/migrator.php:424, src/addons/migrator.php:427, src/admin.php:963,
4882
- #: src/admin.php:2425, src/backup.php:3326, src/class-updraftplus.php:4616,
4883
- #: src/class-updraftplus.php:4616, src/updraftplus.php:156
4884
  msgid "Go here for more information."
4885
  msgstr ""
4886
 
@@ -4888,7 +4917,7 @@ msgstr ""
4888
  msgid "Some files are still downloading or being processed - please wait."
4889
  msgstr ""
4890
 
4891
- #: src/class-updraftplus.php:4465, src/class-updraftplus.php:4486
4892
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4893
  msgstr ""
4894
 
@@ -4900,27 +4929,27 @@ msgstr ""
4900
  msgid "Enter in format HH:MM (e.g. 14:22)."
4901
  msgstr ""
4902
 
4903
- #: src/methods/ftp.php:127
4904
  msgid "%s upload failed"
4905
  msgstr ""
4906
 
4907
- #: src/methods/ftp.php:100, src/methods/ftp.php:151, src/methods/ftp.php:255
4908
  msgid "%s login failure"
4909
  msgstr ""
4910
 
4911
- #: src/methods/dropbox.php:413
4912
  msgid "You do not appear to be authenticated with %s"
4913
  msgstr ""
4914
 
4915
- #: src/methods/dropbox.php:380
4916
  msgid "Failed to access %s when deleting (see log file for more)"
4917
  msgstr ""
4918
 
4919
- #: src/methods/dropbox.php:372
4920
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4921
  msgstr ""
4922
 
4923
- #: src/methods/dropbox.php:127
4924
  msgid "Dropbox error: %s (see log file for more)"
4925
  msgstr ""
4926
 
@@ -4932,11 +4961,11 @@ msgstr ""
4932
  msgid "Error - no such file exists at %s"
4933
  msgstr ""
4934
 
4935
- #: src/addons/azure.php:219, src/methods/addon-base-v2.php:219,
4936
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
4937
- #: src/methods/googledrive.php:1023, src/methods/openstack-base.php:455,
4938
- #: src/methods/stream-base.php:278, src/methods/stream-base.php:285,
4939
- #: src/methods/stream-base.php:317
4940
  msgid "%s Error"
4941
  msgstr ""
4942
 
@@ -4944,7 +4973,7 @@ msgstr ""
4944
  msgid "%s error - failed to upload file"
4945
  msgstr ""
4946
 
4947
- #: src/class-updraftplus.php:1184, src/methods/cloudfiles.php:211
4948
  msgid "%s error - failed to re-assemble chunks"
4949
  msgstr ""
4950
 
@@ -4958,25 +4987,25 @@ msgstr ""
4958
  msgid "%s authentication failed"
4959
  msgstr ""
4960
 
4961
- #: src/addons/googlecloud.php:436, src/addons/migrator.php:519,
4962
- #: src/admin.php:2126, src/admin.php:2147, src/admin.php:2155,
4963
- #: src/class-updraftplus.php:952, src/class-updraftplus.php:958,
4964
- #: src/class-updraftplus.php:4360, src/class-updraftplus.php:4362,
4965
- #: src/class-updraftplus.php:4519, src/class-updraftplus.php:4526,
4966
- #: src/class-updraftplus.php:4595, src/methods/googledrive.php:381,
4967
  #: src/methods/s3.php:320
4968
  msgid "Error: %s"
4969
  msgstr ""
4970
 
4971
- #: src/admin.php:3296
4972
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4973
  msgstr ""
4974
 
4975
- #: src/admin.php:3294
4976
  msgid "Backup directory specified does <b>not</b> exist."
4977
  msgstr ""
4978
 
4979
- #: src/admin.php:2971, src/admin.php:3245
4980
  msgid "Warning: %s"
4981
  msgstr ""
4982
 
@@ -4984,55 +5013,55 @@ msgstr ""
4984
  msgid "Last backup job run:"
4985
  msgstr ""
4986
 
4987
- #: src/backup.php:3046
4988
  msgid "A very large file was encountered: %s (size: %s Mb)"
4989
  msgstr ""
4990
 
4991
- #: src/backup.php:2346
4992
  msgid "%s: unreadable file - could not be backed up"
4993
  msgstr ""
4994
 
4995
- #: src/backup.php:1663
4996
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
4997
  msgstr ""
4998
 
4999
- #: src/backup.php:1784
5000
  msgid "An error occurred whilst closing the final database file"
5001
  msgstr ""
5002
 
5003
- #: src/backup.php:1002
5004
  msgid "Warnings encountered:"
5005
  msgstr ""
5006
 
5007
- #: src/class-updraftplus.php:2849
5008
  msgid "The backup apparently succeeded (with warnings) and is now complete"
5009
  msgstr ""
5010
 
5011
- #: src/class-updraftplus.php:836
5012
  msgid "Your free disk space is very low - only %s Mb remain"
5013
  msgstr ""
5014
 
5015
- #: src/addons/migrator.php:527
5016
  msgid "New site:"
5017
  msgstr ""
5018
 
5019
- #: src/addons/migrator.php:502
5020
  msgid "Migrated site (from UpdraftPlus)"
5021
  msgstr ""
5022
 
5023
- #: src/addons/migrator.php:442
5024
  msgid "Enter details for where this new site is to live within your multisite install:"
5025
  msgstr ""
5026
 
5027
- #: src/addons/migrator.php:441
5028
  msgid "Information needed to continue:"
5029
  msgstr ""
5030
 
5031
- #: src/addons/migrator.php:385
5032
  msgid "Network activating theme:"
5033
  msgstr ""
5034
 
5035
- #: src/addons/migrator.php:375
5036
  msgid "Processed plugin:"
5037
  msgstr ""
5038
 
@@ -5044,15 +5073,15 @@ msgstr ""
5044
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
5045
  msgstr ""
5046
 
5047
- #: src/methods/s3.php:849
5048
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5049
  msgstr ""
5050
 
5051
- #: src/methods/s3.php:1096
5052
  msgid "Please check your access credentials."
5053
  msgstr ""
5054
 
5055
- #: src/addons/s3-enhanced.php:196, src/methods/s3.php:1074
5056
  msgid "The error reported by %s was:"
5057
  msgstr ""
5058
 
@@ -5060,7 +5089,7 @@ msgstr ""
5060
  msgid "Please supply the requested information, and then continue."
5061
  msgstr ""
5062
 
5063
- #: src/class-updraftplus.php:4537, src/restorer.php:1746
5064
  msgid "Site information:"
5065
  msgstr ""
5066
 
@@ -5068,20 +5097,20 @@ msgstr ""
5068
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
5069
  msgstr ""
5070
 
5071
- #: src/admin.php:2420, src/class-updraftplus.php:4530, src/restorer.php:2117
5072
  msgid "Warning:"
5073
  msgstr ""
5074
 
5075
- #: src/class-updraftplus.php:4519, src/class-updraftplus.php:4522,
5076
  #: src/restorer.php:184
5077
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5078
  msgstr ""
5079
 
5080
- #: src/admin.php:4028
5081
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
5082
  msgstr ""
5083
 
5084
- #: src/admin.php:3443, src/methods/updraftvault.php:283
5085
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5086
  msgstr ""
5087
 
@@ -5120,7 +5149,7 @@ msgstr ""
5120
  msgid "Do you want to migrate or clone/duplicate a site?"
5121
  msgstr ""
5122
 
5123
- #: src/addons/migrator.php:177
5124
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
5125
  msgstr ""
5126
 
@@ -5136,7 +5165,7 @@ msgstr ""
5136
  msgid "Also delete from remote storage"
5137
  msgstr ""
5138
 
5139
- #: src/admin.php:2693
5140
  msgid "Latest UpdraftPlus.com news:"
5141
  msgstr ""
5142
 
@@ -5153,7 +5182,7 @@ msgstr ""
5153
  msgid "News"
5154
  msgstr ""
5155
 
5156
- #: src/admin.php:1532, src/includes/class-wpadmin-commands.php:472
5157
  msgid "Backup set not found"
5158
  msgstr ""
5159
 
@@ -5183,15 +5212,15 @@ msgstr ""
5183
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5184
  msgstr ""
5185
 
5186
- #: src/admin.php:979
5187
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
5188
  msgstr ""
5189
 
5190
- #: src/admin.php:979
5191
  msgid "Notice"
5192
  msgstr ""
5193
 
5194
- #: src/backup.php:984
5195
  msgid "Errors encountered:"
5196
  msgstr ""
5197
 
@@ -5207,85 +5236,85 @@ msgstr ""
5207
  msgid "Store at"
5208
  msgstr ""
5209
 
5210
- #: src/addons/migrator.php:1487
5211
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5212
  msgstr ""
5213
 
5214
- #: src/addons/migrator.php:1361
5215
  msgid "rows: %d"
5216
  msgstr ""
5217
 
5218
- #: src/addons/migrator.php:1235
5219
  msgid "Time taken (seconds):"
5220
  msgstr ""
5221
 
5222
- #: src/addons/migrator.php:1234, src/admin.php:671
5223
  msgid "Errors:"
5224
  msgstr ""
5225
 
5226
- #: src/addons/migrator.php:1233
5227
  msgid "SQL update commands run:"
5228
  msgstr ""
5229
 
5230
- #: src/addons/migrator.php:1232
5231
  msgid "Changes made:"
5232
  msgstr ""
5233
 
5234
- #: src/addons/migrator.php:1231
5235
  msgid "Rows examined:"
5236
  msgstr ""
5237
 
5238
- #: src/addons/migrator.php:1230
5239
  msgid "Tables examined:"
5240
  msgstr ""
5241
 
5242
- #: src/addons/migrator.php:1119
5243
  msgid "Could not get list of tables"
5244
  msgstr ""
5245
 
5246
- #: src/addons/migrator.php:1064
5247
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5248
  msgstr ""
5249
 
5250
- #: src/addons/migrator.php:1053
5251
  msgid "Nothing to do: the site URL is already: %s"
5252
  msgstr ""
5253
 
5254
- #: src/addons/migrator.php:1017, src/addons/migrator.php:1021,
5255
- #: src/addons/migrator.php:1025, src/addons/migrator.php:1030,
5256
- #: src/addons/migrator.php:1034, src/addons/migrator.php:1039
5257
  msgid "Error: unexpected empty parameter (%s, %s)"
5258
  msgstr ""
5259
 
5260
- #: src/addons/migrator.php:977
5261
  msgid "Database: search and replace site URL"
5262
  msgstr ""
5263
 
5264
- #: src/addons/migrator.php:837, src/addons/migrator.php:1216
5265
  msgid "Failed: we did not understand the result returned by the %s operation."
5266
  msgstr ""
5267
 
5268
- #: src/addons/migrator.php:835, src/addons/migrator.php:1214
5269
  msgid "Failed: the %s operation was not able to start."
5270
  msgstr ""
5271
 
5272
- #: src/addons/migrator.php:494
5273
  msgid "Search and replace site location in the database (migrate)"
5274
  msgstr ""
5275
 
5276
- #: src/addons/migrator.php:494
5277
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5278
  msgstr ""
5279
 
5280
- #: src/addons/multisite.php:659
5281
  msgid "Blog uploads"
5282
  msgstr ""
5283
 
5284
- #: src/addons/migrator.php:427, src/addons/multisite.php:652
5285
  msgid "Must-use plugins"
5286
  msgstr ""
5287
 
5288
- #: src/addons/multisite.php:174
5289
  msgid "Multisite Install"
5290
  msgstr ""
5291
 
@@ -5293,43 +5322,43 @@ msgstr ""
5293
  msgid "starting from next time it is"
5294
  msgstr ""
5295
 
5296
- #: src/addons/sftp.php:502
5297
  msgid "Failure: Port must be an integer."
5298
  msgstr ""
5299
 
5300
- #: src/methods/ftp.php:384, src/methods/openstack2.php:178
5301
  msgid "password"
5302
  msgstr ""
5303
 
5304
- #: src/addons/sftp.php:493, src/methods/openstack2.php:173
5305
  msgid "username"
5306
  msgstr ""
5307
 
5308
- #: src/addons/sftp.php:489
5309
  msgid "host name"
5310
  msgstr ""
5311
 
5312
- #: src/addons/sftp.php:452
5313
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5314
  msgstr ""
5315
 
5316
- #: src/addons/sftp.php:450
5317
  msgid "Directory path"
5318
  msgstr ""
5319
 
5320
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5321
- #: src/addons/sftp.php:425, src/addons/webdav.php:102,
5322
- #: src/methods/openstack2.php:157, src/methods/updraftvault.php:338,
5323
  #: src/udaddons/options.php:135
5324
  msgid "Password"
5325
  msgstr ""
5326
 
5327
- #: src/addons/sftp.php:411, src/addons/webdav.php:116
5328
  msgid "Port"
5329
  msgstr ""
5330
 
5331
- #: src/addons/moredatabase.php:244, src/addons/sftp.php:404,
5332
- #: src/addons/webdav.php:108
5333
  msgid "Host"
5334
  msgstr ""
5335
 
@@ -5337,7 +5366,7 @@ msgstr ""
5337
  msgid "%s Error: Failed to download"
5338
  msgstr ""
5339
 
5340
- #: src/addons/sftp.php:534
5341
  msgid "Check your file permissions: Could not successfully create and enter:"
5342
  msgstr ""
5343
 
@@ -5381,26 +5410,26 @@ msgstr ""
5381
  msgid "WordPress Core"
5382
  msgstr ""
5383
 
5384
- #: src/methods/addon-base-v2.php:316, src/methods/stream-base.php:347
5385
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5386
  msgstr ""
5387
 
5388
- #: src/addons/googlecloud.php:709, src/addons/googlecloud.php:743,
5389
- #: src/addons/googlecloud.php:749, src/addons/sftp.php:520, src/admin.php:3027,
5390
- #: src/admin.php:3062, src/admin.php:3071, src/methods/addon-base-v2.php:304,
5391
- #: src/methods/stream-base.php:333
5392
  msgid "Failed"
5393
  msgstr ""
5394
 
5395
- #: src/addons/webdav.php:78
5396
  msgid "WebDAV URL"
5397
  msgstr ""
5398
 
5399
- #: src/methods/stream-base.php:317
5400
  msgid "Local write failed: Failed to download"
5401
  msgstr ""
5402
 
5403
- #: src/methods/stream-base.php:285
5404
  msgid "Error opening remote file: Failed to download"
5405
  msgstr ""
5406
 
@@ -5411,136 +5440,136 @@ msgstr ""
5411
  #: src/addons/googlecloud.php:322, src/addons/sftp.php:45,
5412
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
5413
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5414
- #: src/methods/addon-base-v2.php:283, src/methods/ftp.php:42,
5415
  #: src/methods/googledrive.php:182, src/methods/googledrive.php:184,
5416
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:161,
5417
  #: src/methods/stream-base.php:167, src/methods/stream-base.php:201,
5418
- #: src/methods/stream-base.php:259
5419
  msgid "No %s settings were found"
5420
  msgstr ""
5421
 
5422
- #: src/methods/ftp.php:406
5423
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5424
  msgstr ""
5425
 
5426
- #: src/methods/ftp.php:403
5427
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5428
  msgstr ""
5429
 
5430
- #: src/methods/ftp.php:394
5431
  msgid "Failure: we did not successfully log in with those credentials."
5432
  msgstr ""
5433
 
5434
- #: src/methods/ftp.php:376
5435
  msgid "Failure: No server details were given."
5436
  msgstr ""
5437
 
5438
- #: src/methods/ftp.php:346
5439
  msgid "Needs to already exist"
5440
  msgstr ""
5441
 
5442
- #: src/methods/ftp.php:326
5443
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5444
  msgstr ""
5445
 
5446
- #: src/addons/onedrive.php:789, src/methods/dropbox.php:679
5447
  msgid "Your %s account name: %s"
5448
  msgstr ""
5449
 
5450
- #: src/methods/dropbox.php:669, src/methods/dropbox.php:691
5451
  msgid "though part of the returned information was not as expected - your mileage may vary"
5452
  msgstr ""
5453
 
5454
- #: src/methods/dropbox.php:664, src/methods/dropbox.php:666
5455
  msgid "you have authenticated your %s account"
5456
  msgstr ""
5457
 
5458
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5459
  msgid "there's an add-on for that."
5460
  msgstr ""
5461
 
5462
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5463
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5464
  msgstr ""
5465
 
5466
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5467
  msgid "Backups are saved in"
5468
  msgstr ""
5469
 
5470
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5471
  msgid "Need to use sub-folders?"
5472
  msgstr ""
5473
 
5474
- #: src/methods/dropbox.php:216, src/methods/dropbox.php:237,
5475
- #: src/methods/dropbox.php:253
5476
  msgid "error: failed to upload file to %s (see log file for more)"
5477
  msgstr ""
5478
 
5479
- #: src/methods/dropbox.php:105, src/methods/dropbox.php:122
5480
  msgid "You do not appear to be authenticated with Dropbox"
5481
  msgstr ""
5482
 
5483
- #: src/methods/s3.php:1091
5484
  msgid "The communication with %s was not encrypted."
5485
  msgstr ""
5486
 
5487
- #: src/methods/s3.php:1089
5488
  msgid "The communication with %s was encrypted."
5489
  msgstr ""
5490
 
5491
- #: src/addons/googlecloud.php:772, src/methods/s3.php:1086
5492
  msgid "We accessed the bucket, and were able to create files within it."
5493
  msgstr ""
5494
 
5495
- #: src/addons/googlecloud.php:766, src/addons/googlecloud.php:780,
5496
- #: src/methods/s3.php:1084, src/methods/s3.php:1096
5497
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5498
  msgstr ""
5499
 
5500
- #: src/addons/googlecloud.php:766, src/addons/googlecloud.php:780,
5501
- #: src/methods/s3.php:1084, src/methods/s3.php:1096
5502
  msgid "Failure"
5503
  msgstr ""
5504
 
5505
- #: src/methods/s3.php:1072
5506
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5507
  msgstr ""
5508
 
5509
- #: src/addons/s3-enhanced.php:169, src/methods/openstack2.php:143,
5510
- #: src/methods/s3.php:1066
5511
  msgid "Region"
5512
  msgstr ""
5513
 
5514
- #: src/addons/googlecloud.php:118, src/addons/googlecloud.php:726,
5515
- #: src/methods/s3.php:1048
5516
  msgid "Failure: No bucket details were given."
5517
  msgstr ""
5518
 
5519
- #: src/methods/s3.php:1026
5520
  msgid "API secret"
5521
  msgstr ""
5522
 
5523
- #: src/methods/s3.php:893
5524
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5525
  msgstr ""
5526
 
5527
- #: src/methods/s3.php:892
5528
  msgid "%s location"
5529
  msgstr ""
5530
 
5531
- #: src/methods/s3.php:888
5532
  msgid "%s secret key"
5533
  msgstr ""
5534
 
5535
- #: src/methods/s3.php:884
5536
  msgid "%s access key"
5537
  msgstr ""
5538
 
5539
- #: src/methods/s3.php:865
5540
  msgid "If you see errors about SSL certificates, then please go here for help."
5541
  msgstr ""
5542
 
5543
- #: src/methods/s3.php:863
5544
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5545
  msgstr ""
5546
 
@@ -5573,7 +5602,7 @@ msgstr ""
5573
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5574
  msgstr ""
5575
 
5576
- #: src/methods/email.php:71
5577
  msgid "Note:"
5578
  msgstr ""
5579
 
@@ -5581,81 +5610,81 @@ msgstr ""
5581
  msgid "WordPress Backup"
5582
  msgstr ""
5583
 
5584
- #: src/methods/cloudfiles.php:560, src/methods/openstack-base.php:530
5585
  msgid "We accessed the container, and were able to create files within it."
5586
  msgstr ""
5587
 
5588
- #: src/methods/cloudfiles.php:556
5589
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5590
  msgstr ""
5591
 
5592
- #: src/methods/cloudfiles.php:529, src/methods/openstack-base.php:472
5593
  msgid "Failure: No container details were given."
5594
  msgstr ""
5595
 
5596
- #: src/addons/moredatabase.php:245, src/addons/sftp.php:418,
5597
- #: src/addons/webdav.php:96, src/methods/cloudfiles-new.php:176,
5598
- #: src/methods/cloudfiles.php:509, src/methods/openstack2.php:151
5599
  msgid "Username"
5600
  msgstr ""
5601
 
5602
- #: src/methods/cloudfiles-new.php:171, src/methods/cloudfiles.php:504,
5603
- #: src/methods/s3.php:1022
5604
  msgid "API key"
5605
  msgstr ""
5606
 
5607
- #: src/addons/migrator.php:300, src/addons/migrator.php:2004,
5608
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5609
- #: src/addons/moredatabase.php:86, src/addons/sftp.php:489,
5610
- #: src/addons/sftp.php:493, src/addons/sftp.php:497, src/addons/webdav.php:162,
5611
- #: src/admin.php:724, src/methods/addon-base-v2.php:296,
5612
- #: src/methods/cloudfiles-new.php:171, src/methods/cloudfiles-new.php:176,
5613
- #: src/methods/cloudfiles.php:504, src/methods/cloudfiles.php:509,
5614
- #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5615
- #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5616
- #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5617
- #: src/methods/s3.php:1022, src/methods/s3.php:1026
5618
  msgid "Failure: No %s was given."
5619
  msgstr ""
5620
 
5621
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
5622
- #: src/methods/openstack-base.php:573, src/methods/s3.php:853
5623
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5624
  msgstr ""
5625
 
5626
- #: src/methods/cloudfiles.php:473
5627
  msgid "Cloud Files username"
5628
  msgstr ""
5629
 
5630
- #: src/addons/cloudfiles-enhanced.php:38, src/methods/cloudfiles-new.php:111,
5631
- #: src/methods/cloudfiles.php:456
5632
  msgid "UK"
5633
  msgstr ""
5634
 
5635
- #: src/addons/cloudfiles-enhanced.php:37, src/methods/cloudfiles-new.php:110,
5636
- #: src/methods/cloudfiles.php:455
5637
  msgid "US (default)"
5638
  msgstr ""
5639
 
5640
- #: src/methods/cloudfiles.php:452
5641
  msgid "US or UK Cloud"
5642
  msgstr ""
5643
 
5644
- #: src/methods/cloudfiles-new.php:103, src/methods/cloudfiles.php:448,
5645
- #: src/methods/openstack2.php:124
5646
  msgid "Also, you should read this important FAQ."
5647
  msgstr ""
5648
 
5649
- #: src/methods/cloudfiles-new.php:103, src/methods/cloudfiles.php:448
5650
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5651
  msgstr ""
5652
 
5653
- #: src/admin.php:747, src/methods/backup-module.php:285
5654
  msgid "Test %s Settings"
5655
  msgstr ""
5656
 
5657
- #: src/class-updraftplus.php:1224, src/class-updraftplus.php:1268,
5658
- #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:278
5659
  msgid "Error opening local file: Failed to download"
5660
  msgstr ""
5661
 
@@ -5671,8 +5700,8 @@ msgid "%s Error: Failed to upload"
5671
  msgstr ""
5672
 
5673
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
5674
- #: src/class-updraftplus.php:1082, src/methods/cloudfiles.php:130,
5675
- #: src/methods/googledrive.php:941, src/methods/googledrive.php:946
5676
  msgid "%s Error: Failed to open local file"
5677
  msgstr ""
5678
 
@@ -5681,56 +5710,49 @@ msgstr ""
5681
  msgid "Cloud Files error - failed to create and access the container"
5682
  msgstr ""
5683
 
5684
- #: src/addons/cloudfiles-enhanced.php:105,
5685
- #: src/addons/cloudfiles-enhanced.php:118,
5686
- #: src/addons/cloudfiles-enhanced.php:122, src/methods/cloudfiles.php:539,
5687
- #: src/methods/cloudfiles.php:542, src/methods/cloudfiles.php:545
5688
  msgid "Cloud Files authentication failed"
5689
  msgstr ""
5690
 
5691
- #: src/addons/googlecloud.php:992, src/methods/googledrive.php:1186
5692
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5693
  msgstr ""
5694
 
5695
- #: src/methods/googledrive.php:1164
5696
  msgid "Authenticate with Google"
5697
  msgstr ""
5698
 
5699
- #: src/addons/googlecloud.php:939, src/addons/onedrive.php:1017,
5700
- #: src/methods/googledrive.php:1128
5701
  msgid "Client Secret"
5702
  msgstr ""
5703
 
5704
- #: src/addons/googlecloud.php:934, src/methods/googledrive.php:1125
5705
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5706
  msgstr ""
5707
 
5708
- #: src/addons/googlecloud.php:931, src/addons/onedrive.php:1013,
5709
- #: src/methods/googledrive.php:1124
5710
  msgid "Client ID"
5711
  msgstr ""
5712
 
5713
- #: src/addons/googlecloud.php:922, src/methods/googledrive.php:1114
5714
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5715
  msgstr ""
5716
 
5717
- #: src/addons/googlecloud.php:922, src/methods/googledrive.php:1114
5718
  msgid "Select 'Web Application' as the application type."
5719
  msgstr ""
5720
 
5721
- #: src/addons/googlecloud.php:920, src/methods/googledrive.php:1112
5722
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5723
  msgstr ""
5724
 
5725
- #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:432,
5726
- #: src/methods/dropbox.php:475, src/methods/ftp.php:321,
5727
- #: src/methods/googledrive.php:1095, src/methods/openstack-base.php:564,
5728
- #: src/methods/s3.php:824, src/methods/stream-base.php:233
5729
- msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5730
- msgstr ""
5731
-
5732
  #: src/addons/googlecloud.php:505, src/addons/googlecloud.php:506,
5733
- #: src/addons/googlecloud.php:799, src/methods/googledrive.php:545,
5734
  #: src/methods/googledrive.php:546, src/methods/googledrive.php:556,
5735
  #: src/methods/googledrive.php:557
5736
  msgid "Account is not authorized."
@@ -5750,21 +5772,21 @@ msgstr ""
5750
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5751
  msgstr ""
5752
 
5753
- #: src/addons/googlecloud.php:651, src/addons/onedrive.php:827,
5754
  #: src/methods/googledrive.php:440
5755
  msgid "you have authenticated your %s account."
5756
  msgstr ""
5757
 
5758
- #: src/addons/googlecloud.php:651, src/addons/googlecloud.php:772,
5759
- #: src/addons/onedrive.php:827, src/addons/sftp.php:554,
5760
- #: src/methods/addon-base-v2.php:313, src/methods/cloudfiles.php:560,
5761
  #: src/methods/googledrive.php:440, src/methods/openstack-base.php:530,
5762
- #: src/methods/s3.php:1086, src/methods/stream-base.php:344
5763
  msgid "Success"
5764
  msgstr ""
5765
 
5766
- #: src/addons/onedrive.php:781, src/methods/dropbox.php:702,
5767
- #: src/methods/dropbox.php:711, src/methods/googledrive.php:414
5768
  msgid "Your %s quota usage: %s %% used, %s available"
5769
  msgstr ""
5770
 
@@ -5795,8 +5817,8 @@ msgstr ""
5795
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5796
  msgstr ""
5797
 
5798
- #: src/addons/migrator.php:1899, src/admin.php:1291, src/admin.php:3030,
5799
- #: src/admin.php:3064, src/admin.php:3068, src/admin.php:4058,
5800
  #: src/restorer.php:2358, src/restorer.php:2463
5801
  msgid "OK"
5802
  msgstr ""
@@ -5805,7 +5827,7 @@ msgstr ""
5805
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5806
  msgstr ""
5807
 
5808
- #: src/addons/migrator.php:1249, src/restorer.php:2254
5809
  msgid "the database query being run was:"
5810
  msgstr ""
5811
 
@@ -5813,13 +5835,13 @@ msgstr ""
5813
  msgid "will restore as:"
5814
  msgstr ""
5815
 
5816
- #: src/class-updraftplus.php:4508, src/restorer.php:1728,
5817
  #: src/restorer.php:1817, src/restorer.php:1843
5818
  msgid "Old table prefix:"
5819
  msgstr ""
5820
 
5821
  #: src/addons/reporting.php:70, src/addons/reporting.php:180,
5822
- #: src/backup.php:1058, src/class-updraftplus.php:4443
5823
  msgid "Backup of:"
5824
  msgstr ""
5825
 
@@ -5891,60 +5913,60 @@ msgstr ""
5891
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5892
  msgstr ""
5893
 
5894
- #: src/admin.php:4066, src/admin.php:4067
5895
  msgid "Could not find one of the files for restoration"
5896
  msgstr ""
5897
 
5898
- #: src/admin.php:4180
5899
  msgid "Error message"
5900
  msgstr ""
5901
 
5902
- #: src/admin.php:4063
5903
  msgid "The backup records do not contain information about the proper size of this file."
5904
  msgstr ""
5905
 
5906
- #: src/admin.php:4055
5907
  msgid "Archive is expected to be size:"
5908
  msgstr ""
5909
 
5910
- #: src/admin.php:3953
5911
  msgid "If making a request for support, please include this information:"
5912
  msgstr ""
5913
 
5914
- #: src/admin.php:3952
5915
  msgid "ABORT: Could not find the information on which entities to restore."
5916
  msgstr ""
5917
 
5918
- #: src/admin.php:3907
5919
  msgid "UpdraftPlus Restoration: Progress"
5920
  msgstr ""
5921
 
5922
- #: src/admin.php:3860
5923
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5924
  msgstr ""
5925
 
5926
- #: src/admin.php:3795
5927
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5928
  msgstr ""
5929
 
5930
- #: src/admin.php:3813
5931
  msgid "Delete this backup set"
5932
  msgstr ""
5933
 
5934
- #: src/admin.php:3455
5935
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5936
  msgstr ""
5937
 
5938
- #: src/admin.php:3452
5939
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5940
  msgstr ""
5941
 
5942
- #: src/admin.php:3450
5943
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5944
  msgstr ""
5945
 
5946
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
5947
- #: src/methods/openstack-base.php:573, src/methods/s3.php:853
5948
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5949
  msgstr ""
5950
 
@@ -5980,23 +6002,23 @@ msgstr ""
5980
  msgid "Use the server's SSL certificates"
5981
  msgstr ""
5982
 
5983
- #: src/admin.php:3298
5984
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
5985
  msgstr ""
5986
 
5987
- #: src/admin.php:3298
5988
  msgid "click here"
5989
  msgstr ""
5990
 
5991
- #: src/admin.php:3298
5992
  msgid "or, to reset this option"
5993
  msgstr ""
5994
 
5995
- #: src/admin.php:3298
5996
  msgid "Follow this link to attempt to create the directory and set the permissions"
5997
  msgstr ""
5998
 
5999
- #: src/admin.php:3290
6000
  msgid "Backup directory specified is writable, which is good."
6001
  msgstr ""
6002
 
@@ -6036,7 +6058,7 @@ msgstr ""
6036
  msgid "Cancel"
6037
  msgstr ""
6038
 
6039
- #: src/addons/reporting.php:244, src/admin.php:3602
6040
  msgid "None"
6041
  msgstr ""
6042
 
@@ -6061,11 +6083,11 @@ msgstr ""
6061
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6062
  msgstr ""
6063
 
6064
- #: src/addons/morefiles.php:443, src/admin.php:3380
6065
  msgid "Exclude these:"
6066
  msgstr ""
6067
 
6068
- #: src/admin.php:3371
6069
  msgid "Any other directories found inside wp-content"
6070
  msgstr ""
6071
 
@@ -6081,45 +6103,45 @@ msgstr ""
6081
  msgid "To fix the time at which a backup should take place,"
6082
  msgstr ""
6083
 
6084
- #: src/admin.php:3284
6085
  msgid "Monthly"
6086
  msgstr ""
6087
 
6088
- #: src/admin.php:3283
6089
  msgid "Fortnightly"
6090
  msgstr ""
6091
 
6092
- #: src/admin.php:3282
6093
  msgid "Weekly"
6094
  msgstr ""
6095
 
6096
- #: src/admin.php:3281
6097
  msgid "Daily"
6098
  msgstr ""
6099
 
6100
- #: src/admin.php:706, src/admin.php:3259
6101
  msgid "Download log file"
6102
  msgstr ""
6103
 
6104
- #: src/admin.php:3131
6105
  msgid "The folder exists, but your webserver does not have permission to write to it."
6106
  msgstr ""
6107
 
6108
- #: src/admin.php:3126
6109
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
6110
  msgstr ""
6111
 
6112
- #: src/admin.php:3112
6113
  msgid "The request to the filesystem to create the directory failed."
6114
  msgstr ""
6115
 
6116
- #: src/addons/migrator.php:2377, src/admin.php:700, src/admin.php:3024,
6117
- #: src/admin.php:3057, src/admin.php:3813,
6118
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6119
  msgid "Delete"
6120
  msgstr ""
6121
 
6122
- #: src/admin.php:2962
6123
  msgid "show log"
6124
  msgstr ""
6125
 
@@ -6232,7 +6254,7 @@ msgstr ""
6232
  msgid "Do read this helpful article of useful things to know before restoring."
6233
  msgstr ""
6234
 
6235
- #: src/class-updraftplus.php:4468
6236
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
6237
  msgstr ""
6238
 
@@ -6276,19 +6298,19 @@ msgstr ""
6276
  msgid "Download error: the server sent us a response which we did not understand."
6277
  msgstr ""
6278
 
6279
- #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:108,
6280
- #: src/addons/migrator.php:822, src/addons/migrator.php:1119,
6281
- #: src/addons/migrator.php:1200, src/addons/migrator.php:1249,
6282
- #: src/addons/migrator.php:1487, src/addons/migrator.php:1838,
6283
- #: src/addons/migrator.php:1865, src/addons/migrator.php:1871,
6284
- #: src/addons/migrator.php:1933, src/addons/migrator.php:1973,
6285
- #: src/addons/migrator.php:2012, src/addons/migrator.php:2022,
6286
- #: src/addons/migrator.php:2027, src/addons/s3-enhanced.php:144,
6287
  #: src/addons/s3-enhanced.php:149, src/addons/s3-enhanced.php:151,
6288
- #: src/addons/sftp.php:818, src/addons/webdav.php:112, src/admin.php:87,
6289
- #: src/admin.php:674, src/admin.php:4060, src/admin.php:4090,
6290
  #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6291
- #: src/methods/updraftvault.php:504, src/restorer.php:1444
6292
  msgid "Error:"
6293
  msgstr ""
6294
 
@@ -6318,10 +6340,10 @@ msgstr ""
6318
  #: src/methods/googledrive.php:467, src/methods/googledrive.php:496,
6319
  #: src/methods/googledrive.php:503, src/methods/googledrive.php:513,
6320
  #: src/methods/googledrive.php:519, src/methods/googledrive.php:521,
6321
- #: src/methods/googledrive.php:1094, src/methods/googledrive.php:1107,
6322
- #: src/methods/googledrive.php:1107, src/methods/googledrive.php:1124,
6323
- #: src/methods/googledrive.php:1128, src/methods/googledrive.php:1139,
6324
- #: src/methods/googledrive.php:1150, src/methods/googledrive.php:1170
6325
  msgid "Google Drive"
6326
  msgstr ""
6327
 
@@ -6337,20 +6359,20 @@ msgstr ""
6337
  msgid "More tasks:"
6338
  msgstr ""
6339
 
6340
- #: src/admin.php:2720
6341
  msgid "Download most recently modified log file"
6342
  msgstr ""
6343
 
6344
- #: src/admin.php:2676, src/admin.php:2682, src/central/bootstrap.php:173
6345
  msgid "(Nothing yet logged)"
6346
  msgstr ""
6347
 
6348
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6349
- #: src/admin.php:2675, src/admin.php:2680
6350
  msgid "Last log message"
6351
  msgstr ""
6352
 
6353
- #: src/addons/migrator.php:238, src/admin.php:705, src/admin.php:3795,
6354
  #: src/templates/wp-admin/settings/tab-status.php:30
6355
  msgid "Restore"
6356
  msgstr ""
@@ -6360,16 +6382,16 @@ msgstr ""
6360
  msgid "Backup Now"
6361
  msgstr ""
6362
 
6363
- #: src/addons/migrator.php:1903, src/addons/moredatabase.php:247,
6364
- #: src/addons/reporting.php:259, src/admin.php:309, src/admin.php:3577,
6365
- #: src/admin.php:3657, src/admin.php:4144,
6366
  #: src/includes/class-wpadmin-commands.php:147,
6367
  #: src/includes/class-wpadmin-commands.php:487,
6368
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
6369
  msgid "Database"
6370
  msgstr ""
6371
 
6372
- #: src/admin.php:305, src/admin.php:4665
6373
  msgid "Files"
6374
  msgstr ""
6375
 
@@ -6397,15 +6419,15 @@ msgstr ""
6397
  msgid "JavaScript warning"
6398
  msgstr ""
6399
 
6400
- #: src/admin.php:685, src/admin.php:2747
6401
  msgid "Delete Old Directories"
6402
  msgstr ""
6403
 
6404
- #: src/admin.php:2467
6405
  msgid "Current limit is:"
6406
  msgstr ""
6407
 
6408
- #: src/admin.php:2442
6409
  msgid "Your backup has been restored."
6410
  msgstr ""
6411
 
@@ -6421,68 +6443,68 @@ msgstr ""
6421
  msgid "UpdraftPlus.Com"
6422
  msgstr ""
6423
 
6424
- #: src/admin.php:4557
6425
  msgid "Your settings have been wiped."
6426
  msgstr ""
6427
 
6428
- #: src/admin.php:2402
6429
  msgid "Backup directory successfully created."
6430
  msgstr ""
6431
 
6432
- #: src/admin.php:2395
6433
  msgid "Backup directory could not be created"
6434
  msgstr ""
6435
 
6436
- #: src/admin.php:2994
6437
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6438
  msgstr ""
6439
 
6440
- #: src/admin.php:2992
6441
  msgid "Old directories successfully removed."
6442
  msgstr ""
6443
 
6444
- #: src/admin.php:2989, src/admin.php:2989
6445
  msgid "Remove old directories"
6446
  msgstr ""
6447
 
6448
- #: src/addons/migrator.php:303, src/addons/migrator.php:318,
6449
- #: src/admin.php:2344, src/admin.php:2353, src/admin.php:2362,
6450
- #: src/admin.php:2404, src/admin.php:2996
6451
  msgid "Return to UpdraftPlus Configuration"
6452
  msgstr ""
6453
 
6454
- #: src/admin.php:678, src/admin.php:2344, src/admin.php:2353,
6455
- #: src/admin.php:2362, src/admin.php:2404, src/admin.php:2996,
6456
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6457
  msgid "Actions"
6458
  msgstr ""
6459
 
6460
- #: src/admin.php:2247
6461
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6462
  msgstr ""
6463
 
6464
- #: src/admin.php:2147
6465
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6466
  msgstr ""
6467
 
6468
- #: src/admin.php:2043
6469
  msgid "No local copy present."
6470
  msgstr ""
6471
 
6472
- #: src/admin.php:2040
6473
  msgid "Download in progress"
6474
  msgstr ""
6475
 
6476
- #: src/admin.php:677, src/admin.php:2029
6477
  msgid "File ready."
6478
  msgstr ""
6479
 
6480
- #: src/admin.php:2010
6481
  msgid "Download failed"
6482
  msgstr ""
6483
 
6484
- #: src/admin.php:675, src/admin.php:1300, src/admin.php:1774,
6485
- #: src/class-updraftplus.php:1224, src/class-updraftplus.php:1268,
6486
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
6487
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6488
  #: src/methods/stream-base.php:217, src/restorer.php:2354,
@@ -6490,15 +6512,15 @@ msgstr ""
6490
  msgid "Error"
6491
  msgstr ""
6492
 
6493
- #: src/admin.php:1809
6494
  msgid "Could not find that job - perhaps it has already finished?"
6495
  msgstr ""
6496
 
6497
- #: src/admin.php:1801
6498
  msgid "Job deleted"
6499
  msgstr ""
6500
 
6501
- #: src/admin.php:1890
6502
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6503
  msgstr ""
6504
 
@@ -6506,39 +6528,39 @@ msgstr ""
6506
  msgid "Nothing yet logged"
6507
  msgstr ""
6508
 
6509
- #: src/admin.php:975
6510
  msgid "Please consult this FAQ if you have problems backing up."
6511
  msgstr ""
6512
 
6513
- #: src/admin.php:975
6514
  msgid "Your website is hosted using the %s web server."
6515
  msgstr ""
6516
 
6517
- #: src/admin.php:971
6518
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
6519
  msgstr ""
6520
 
6521
- #: src/admin.php:967
6522
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
6523
  msgstr ""
6524
 
6525
- #: src/addons/migrator.php:877, src/admin.php:959, src/admin.php:963,
6526
- #: src/admin.php:967, src/admin.php:971, src/admin.php:975, src/admin.php:984,
6527
- #: src/admin.php:3443, src/admin.php:3450, src/admin.php:3452,
6528
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
6529
- #: src/methods/ftp.php:309, src/methods/openstack-base.php:573,
6530
- #: src/methods/s3.php:849, src/methods/s3.php:853,
6531
- #: src/methods/updraftvault.php:283,
6532
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6533
  #: src/udaddons/updraftplus-addons.php:253
6534
  msgid "Warning"
6535
  msgstr ""
6536
 
6537
- #: src/admin.php:905
6538
  msgid "Add-Ons / Pro Support"
6539
  msgstr ""
6540
 
6541
- #: src/admin.php:542, src/admin.php:903,
6542
  #: src/templates/wp-admin/settings/tab-bar.php:7
6543
  msgid "Settings"
6544
  msgstr ""
@@ -6547,7 +6569,7 @@ msgstr ""
6547
  msgid "Could not create %s zip. Consult the log file for more information."
6548
  msgstr ""
6549
 
6550
- #: src/backup.php:2226
6551
  msgid "Infinite recursion: consult your log for more information"
6552
  msgstr ""
6553
 
@@ -6559,50 +6581,50 @@ msgstr ""
6559
  msgid "Like UpdraftPlus and can spare one minute?"
6560
  msgstr ""
6561
 
6562
- #: src/addons/azure.php:219, src/class-updraftplus.php:4157,
6563
- #: src/methods/googledrive.php:1023, src/methods/s3.php:320
6564
  msgid "File not found"
6565
  msgstr ""
6566
 
6567
- #: src/class-updraftplus.php:4064
6568
  msgid "The decryption key used:"
6569
  msgstr ""
6570
 
6571
- #: src/class-updraftplus.php:4064, src/class-updraftplus.php:4372,
6572
  #: src/restorer.php:419
6573
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6574
  msgstr ""
6575
 
6576
- #: src/class-updraftplus.php:4045, src/class-updraftplus.php:4360,
6577
  #: src/restorer.php:406
6578
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6579
  msgstr ""
6580
 
6581
- #: src/backup.php:2101
6582
  msgid "Could not open the backup file for writing"
6583
  msgstr ""
6584
 
6585
- #: src/class-updraftplus.php:3387
6586
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6587
  msgstr ""
6588
 
6589
- #: src/class-updraftplus.php:3348
6590
  msgid "Could not read the directory"
6591
  msgstr ""
6592
 
6593
- #: src/admin.php:2089, src/backup.php:1282
6594
  msgid "Backup directory (%s) is not writable, or does not exist."
6595
  msgstr ""
6596
 
6597
- #: src/backup.php:1059
6598
  msgid "WordPress backup is complete"
6599
  msgstr ""
6600
 
6601
- #: src/class-updraftplus.php:2858
6602
  msgid "The backup attempt has finished, apparently unsuccessfully"
6603
  msgstr ""
6604
 
6605
- #: src/class-updraftplus.php:2843
6606
  msgid "The backup apparently succeeded and is now complete"
6607
  msgstr ""
6608
 
@@ -6610,42 +6632,42 @@ msgstr ""
6610
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6611
  msgstr ""
6612
 
6613
- #: src/class-updraftplus.php:2546
6614
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6615
  msgstr ""
6616
 
6617
- #: src/class-updraftplus.php:1825
6618
  msgid "Others"
6619
  msgstr ""
6620
 
6621
- #: src/addons/multisite.php:467, src/class-updraftplus.php:1810
6622
  msgid "Uploads"
6623
  msgstr ""
6624
 
6625
- #: src/class-updraftplus.php:1809
6626
  msgid "Themes"
6627
  msgstr ""
6628
 
6629
- #: src/class-updraftplus.php:1808
6630
  msgid "Plugins"
6631
  msgstr ""
6632
 
6633
- #: src/class-updraftplus.php:584
6634
  msgid "No log files were found."
6635
  msgstr ""
6636
 
6637
- #: src/admin.php:1959, src/admin.php:1963, src/class-updraftplus.php:579
6638
  msgid "The log file could not be read."
6639
  msgstr ""
6640
 
6641
- #: src/admin.php:994, src/admin.php:1003, src/admin.php:1008,
6642
- #: src/admin.php:1016, src/admin.php:1025, src/class-updraftplus.php:544,
6643
- #: src/class-updraftplus.php:579, src/class-updraftplus.php:584,
6644
- #: src/class-updraftplus.php:589
6645
  msgid "UpdraftPlus notice:"
6646
  msgstr ""
6647
 
6648
- #: src/addons/multisite.php:65, src/addons/multisite.php:689,
6649
  #: src/options.php:50
6650
  msgid "UpdraftPlus Backups"
6651
  msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.3.1\n"
11
  "Language: bg\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/addons/migrator.php:406
15
+ msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
16
+ msgstr ""
17
+
18
+ #: src/addons/migrator.php:395
19
+ msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use below search and replace so that the non-https links are automatically replaced."
20
+ msgstr ""
21
+
22
+ #: src/addons/migrator.php:384
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use below search and replace to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/addons/morestorage.php:91
27
+ msgid "Add another %s account..."
28
+ msgstr ""
29
+
30
+ #: src/addons/morestorage.php:70
31
+ msgid "Delete these settings"
32
+ msgstr ""
33
+
34
+ #: src/addons/morestorage.php:68, src/admin.php:777
35
+ msgid "Currently disabled"
36
+ msgstr ""
37
+
38
+ #: src/addons/morestorage.php:68, src/admin.php:776
39
+ msgid "Currently enabled"
40
+ msgstr ""
41
+
42
  #: src/templates/wp-admin/settings/tab-addons.php:14
43
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
44
  msgstr ""
51
  msgid "get it here"
52
  msgstr ""
53
 
54
+ #: src/methods/stream-base.php:322
55
  msgid "Download chunk size successfully changed to %d"
56
  msgstr ""
57
 
58
+ #: src/methods/stream-base.php:319
59
  msgid "Download chunk size failed to change to %d"
60
  msgstr ""
61
 
71
  msgid "remote site"
72
  msgstr ""
73
 
74
+ #: src/addons/backblaze.php:461
75
  msgid "Invalid bucket name"
76
  msgstr ""
77
 
81
  msgstr[0] ""
82
  msgstr[1] ""
83
 
84
+ #: src/class-updraftplus.php:4364
85
  msgid "Your chosen replacement collation"
86
  msgstr ""
87
 
88
+ #: src/class-updraftplus.php:4341
89
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
90
  msgstr ""
91
 
92
+ #: src/class-updraftplus.php:4341
93
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
94
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
95
  msgstr[0] ""
96
  msgstr[1] ""
97
 
98
+ #: src/addons/migrator.php:529
99
  msgid "Database restoration options:"
100
  msgstr ""
101
 
102
+ #: src/addons/migrator.php:373
103
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
104
  msgstr ""
105
 
106
+ #: src/addons/azure.php:629
107
  msgid "%s Prefix"
108
  msgstr ""
109
 
110
+ #: src/addons/azure.php:624
111
  msgid "%s Container"
112
  msgstr ""
113
 
114
+ #: src/addons/azure.php:619
115
  msgid "%s Key"
116
  msgstr ""
117
 
118
+ #: src/addons/azure.php:615
119
  msgid "%s Account Name"
120
  msgstr ""
121
 
122
+ #: src/addons/googlecloud.php:684
123
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
124
  msgstr ""
125
 
126
+ #: src/addons/googlecloud.php:682
127
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
128
  msgstr ""
129
 
147
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
148
  msgstr ""
149
 
150
+ #: src/addons/migrator.php:913
151
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
152
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
153
  msgstr[0] ""
157
  msgid "Requested table character set (%s) is not present - changing to %s."
158
  msgstr ""
159
 
160
+ #: src/class-updraftplus.php:4317
161
  msgid "Your chosen character set to use instead:"
162
  msgstr ""
163
 
164
+ #: src/class-updraftplus.php:4307
165
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
166
  msgstr ""
167
 
168
+ #: src/class-updraftplus.php:4307
169
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
170
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
171
  msgstr[0] ""
219
  msgid "Please enter a valid URL e.g http://example.com"
220
  msgstr "Моля въведете валиден адрес - пример http://example.com"
221
 
222
+ #: src/addons/backblaze.php:619
223
  msgid "your Backblaze console"
224
  msgstr ""
225
 
226
+ #: src/addons/backblaze.php:619
227
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
228
  msgstr ""
229
 
230
+ #: src/addons/backblaze.php:619
231
  msgid "N.B. You need to create the bucket in %s first."
232
  msgstr ""
233
 
234
+ #: src/addons/backblaze.php:618
235
  msgid "some/path"
236
  msgstr ""
237
 
238
+ #: src/addons/backblaze.php:618
239
  msgid "Bucket name"
240
  msgstr ""
241
 
242
+ #: src/addons/backblaze.php:617
243
  msgid "Backup path"
244
  msgstr ""
245
 
246
+ #: src/addons/backblaze.php:612
247
  msgid "Application key"
248
  msgstr ""
249
 
250
+ #: src/addons/backblaze.php:607, src/addons/backblaze.php:607
251
  msgid "here"
252
  msgstr ""
253
 
254
+ #: src/addons/backblaze.php:607
255
  msgid "Get these settings from %s, or sign up %s."
256
  msgstr ""
257
 
258
+ #: src/addons/backblaze.php:458
259
  msgid "Bucket not found"
260
  msgstr ""
261
 
262
+ #: src/addons/backblaze.php:412
263
  msgid "Account Key"
264
  msgstr "Ключ за Акаунта"
265
 
266
+ #: src/addons/backblaze.php:411, src/addons/backblaze.php:605
267
  msgid "Account ID"
268
  msgstr "Акаунт ID"
269
 
270
+ #: src/class-updraftplus.php:4149
271
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
272
  msgstr ""
273
 
274
+ #: src/class-updraftplus.php:4147, src/class-updraftplus.php:4149
275
  msgid "the migrator add-on"
276
  msgstr ""
277
 
278
+ #: src/class-updraftplus.php:4147
279
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
280
  msgstr ""
281
 
282
+ #: src/class-updraftplus.php:4145
283
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
284
  msgstr ""
285
 
286
+ #: src/class-updraftplus.php:4140
287
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
288
  msgstr ""
289
 
290
+ #: src/methods/googledrive.php:1240
291
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
292
  msgstr ""
293
 
294
+ #: src/methods/googledrive.php:1237
295
  msgid "Follow this link to remove this site's settings for %s."
296
  msgstr ""
297
 
303
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
304
  msgstr ""
305
 
306
+ #: src/admin.php:1350, src/admin.php:4170, src/backup.php:2106,
307
+ #: src/class-updraftplus.php:2181, src/class-updraftplus.php:2246,
308
+ #: src/class-updraftplus.php:2380
309
  msgid "A PHP fatal error (%s) has occurred: %s"
310
  msgstr ""
311
 
312
+ #: src/admin.php:1341, src/admin.php:4156, src/backup.php:2097,
313
+ #: src/class-updraftplus.php:2172, src/class-updraftplus.php:2239,
314
+ #: src/class-updraftplus.php:2373
315
  msgid "A PHP exception (%s) has occurred: %s"
316
  msgstr ""
317
 
355
  msgid "Select Files"
356
  msgstr ""
357
 
358
+ #: src/methods/cloudfiles.php:476
359
  msgid "Rackspace Storage Region"
360
  msgstr ""
361
 
363
  msgid "Instant and secure logon with a wave of your phone."
364
  msgstr ""
365
 
366
+ #: src/backup.php:2110
367
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
368
  msgstr ""
369
 
370
+ #: src/admin.php:4698
371
  msgid "Value"
372
  msgstr ""
373
 
374
+ #: src/admin.php:1616
375
  msgid "Did not know how to delete from this cloud service."
376
  msgstr ""
377
 
378
+ #: src/addons/sftp.php:716
379
  msgid "Encrypted login failed; trying non-encrypted"
380
  msgstr ""
381
 
382
+ #: src/addons/azure.php:592
383
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
384
  msgstr ""
385
 
387
  msgid "Stored at: %s"
388
  msgstr ""
389
 
390
+ #: src/methods/cloudfiles.php:496
391
  msgid "Cloud Files"
392
  msgstr ""
393
 
394
+ #: src/admin.php:4511
395
  msgid "Your settings failed to save. Please refresh the settings page and try again"
396
  msgstr ""
397
 
398
+ #: src/admin.php:4470
399
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
400
  msgstr ""
401
 
412
  msgid "Extra database"
413
  msgstr ""
414
 
415
+ #: src/admin.php:3731
416
  msgid "Press here to download or browse"
417
  msgstr ""
418
 
419
+ #: src/admin.php:1124, src/admin.php:1134
420
  msgid "Error: invalid path"
421
  msgstr ""
422
 
423
+ #: src/admin.php:948
424
  msgid "An error occurred when fetching storage module options: "
425
  msgstr ""
426
 
456
  msgid "Skipped tables:"
457
  msgstr ""
458
 
459
+ #: src/class-updraftplus.php:4429
460
  msgid "This database backup has the following WordPress tables excluded: %s"
461
  msgstr ""
462
 
463
+ #: src/admin.php:2626
464
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
465
  msgstr ""
466
 
467
+ #: src/admin.php:2626
468
  msgid "All WordPress tables will be backed up."
469
  msgstr ""
470
 
964
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
965
  msgstr ""
966
 
967
+ #: src/methods/dropbox.php:686
968
  msgid "%s de-authentication"
969
  msgstr ""
970
 
971
+ #: src/methods/dropbox.php:606
972
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
973
  msgstr ""
974
 
975
+ #: src/methods/dropbox.php:583
976
  msgid "Follow this link to deauthenticate with %s."
977
  msgstr ""
978
 
980
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
981
  msgstr ""
982
 
983
+ #: src/backup.php:1704
984
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
985
  msgstr ""
986
 
988
  msgid "You have selected a remote storage option which has an authorization step to complete:"
989
  msgstr ""
990
 
991
+ #: src/admin.php:1692
992
  msgid "Remote files deleted:"
993
  msgstr ""
994
 
995
+ #: src/admin.php:1691
996
  msgid "Local files deleted:"
997
  msgstr ""
998
 
999
+ #: src/admin.php:996, src/admin.php:1005, src/admin.php:1018,
1000
+ #: src/admin.php:1027
1001
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
1002
  msgstr ""
1003
 
1041
  msgid "US East (Ohio)"
1042
  msgstr ""
1043
 
1044
+ #: src/addons/onedrive.php:1029
1045
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1046
  msgstr ""
1047
 
1048
+ #: src/addons/onedrive.php:698
1049
  msgid "Account is not authorized (%s)."
1050
  msgstr ""
1051
 
1052
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873
1053
  msgid "Your IP address:"
1054
  msgstr ""
1055
 
1056
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873,
1057
  #: src/udaddons/updraftplus-addons.php:887
1058
  msgid "To remove any block, please go here."
1059
  msgstr ""
1060
 
1061
+ #: src/addons/onedrive.php:643, src/udaddons/updraftplus-addons.php:858
1062
  msgid "An error response was received; HTTP code:"
1063
  msgstr ""
1064
 
1074
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1075
  msgstr ""
1076
 
1077
+ #: src/admin.php:2440
1078
  msgid "To fix this problem go here."
1079
  msgstr ""
1080
 
1081
+ #: src/admin.php:2440
1082
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1083
  msgstr ""
1084
 
1086
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1087
  msgstr ""
1088
 
1089
+ #: src/addons/webdav.php:204
1090
  msgid "Path"
1091
  msgstr ""
1092
 
1093
+ #: src/addons/webdav.php:199
1094
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1095
  msgstr ""
1096
 
1097
+ #: src/addons/webdav.php:191
1098
  msgid "Enter any path in the field below."
1099
  msgstr ""
1100
 
1101
+ #: src/addons/webdav.php:191
1102
  msgid "A host name cannot contain a slash."
1103
  msgstr ""
1104
 
1105
+ #: src/addons/webdav.php:166
1106
  msgid "Protocol (SSL or not)"
1107
  msgstr ""
1108
 
1109
+ #: src/addons/webdav.php:161
1110
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1111
  msgstr ""
1112
 
1114
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1115
  msgstr ""
1116
 
1117
+ #: src/methods/s3.php:1110
1118
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1119
  msgstr ""
1120
 
1154
  msgid "Public key was sent to:"
1155
  msgstr ""
1156
 
1157
+ #: src/backup.php:2322
1158
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1159
  msgstr ""
1160
 
1161
+ #: src/backup.php:2300
1162
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1163
  msgstr ""
1164
 
1165
+ #: src/addons/migrator.php:2378
1166
  msgid "Create key"
1167
  msgstr ""
1168
 
1169
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:526
1170
  msgid "slower, strongest"
1171
  msgstr ""
1172
 
1173
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1174
  msgid "recommended"
1175
  msgstr ""
1176
 
1177
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1178
  msgid "%s bytes"
1179
  msgstr ""
1180
 
1181
+ #: src/addons/migrator.php:2373, src/central/bootstrap.php:524
1182
  msgid "faster (possibility for slow PHP installs)"
1183
  msgstr ""
1184
 
1185
+ #: src/addons/migrator.php:2372, src/central/bootstrap.php:523
1186
  msgid "easy to break, fastest"
1187
  msgstr ""
1188
 
1189
+ #: src/addons/migrator.php:2372, src/addons/migrator.php:2373,
1190
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:523,
1191
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1192
  msgid "%s bits"
1193
  msgstr ""
1194
 
1195
+ #: src/addons/migrator.php:2370, src/central/bootstrap.php:521
1196
  msgid "Encryption key size:"
1197
  msgstr ""
1198
 
1199
+ #: src/addons/migrator.php:2368
1200
  msgid "Enter your chosen name"
1201
  msgstr ""
1202
 
1203
+ #: src/addons/migrator.php:2367
1204
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1205
  msgstr ""
1206
 
1208
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1209
  msgstr ""
1210
 
1211
+ #: src/methods/ftp.php:435
1212
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1213
  msgstr ""
1214
 
1215
+ #: src/methods/ftp.php:407
1216
  msgid "login"
1217
  msgstr ""
1218
 
1219
+ #: src/methods/email.php:91
1220
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1221
  msgstr ""
1222
 
1224
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1225
  msgstr ""
1226
 
1227
+ #: src/class-updraftplus.php:1788
1228
  msgid "Size: %s MB"
1229
  msgstr ""
1230
 
1236
  msgid "Now"
1237
  msgstr ""
1238
 
1239
+ #: src/class-updraftplus.php:4166, src/restorer.php:1045
1240
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1241
  msgstr ""
1242
 
1244
  msgid "(tap on an icon to select or unselect)"
1245
  msgstr ""
1246
 
1247
+ #: src/methods/updraftvault.php:319, src/methods/updraftvault.php:325,
1248
+ #: src/methods/updraftvault.php:331
1249
  msgid "%s per year"
1250
  msgstr ""
1251
 
1252
+ #: src/methods/updraftvault.php:318, src/methods/updraftvault.php:324,
1253
+ #: src/methods/updraftvault.php:330
1254
  msgid "or (annual discount)"
1255
  msgstr ""
1256
 
1258
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1259
  msgstr ""
1260
 
1261
+ #: src/class-updraftplus.php:556, src/class-updraftplus.php:601
1262
  msgid "The given file was not found, or could not be read."
1263
  msgstr ""
1264
 
1342
  msgid "UpdraftCentral Connection"
1343
  msgstr ""
1344
 
1345
+ #: src/backup.php:1006, src/class-updraftplus.php:2862
1346
  msgid "The backup was aborted by the user"
1347
  msgstr ""
1348
 
1349
+ #: src/admin.php:4506
1350
  msgid "Your settings have been saved."
1351
  msgstr ""
1352
 
1353
+ #: src/admin.php:3609
1354
  msgid "Total backup size:"
1355
  msgstr ""
1356
 
1357
+ #: src/admin.php:2966
1358
  msgid "stop"
1359
  msgstr ""
1360
 
1361
+ #: src/admin.php:2808
1362
  msgid "The backup has finished running"
1363
  msgstr ""
1364
 
1420
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1421
  msgstr ""
1422
 
1423
+ #: src/class-updraftplus.php:4217, src/restorer.php:1740
1424
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1425
  msgstr ""
1426
 
1427
+ #: src/class-updraftplus.php:4213
1428
  msgid "Please read this link for important information on this process."
1429
  msgstr ""
1430
 
1431
+ #: src/class-updraftplus.php:4213
1432
  msgid "It will be imported as a new site."
1433
  msgstr ""
1434
 
1435
+ #: src/admin.php:2599, src/templates/wp-admin/notices/horizontal-notice.php:16,
1436
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1437
  msgid "Dismiss"
1438
  msgstr ""
1441
  msgid "Please fill in the required information."
1442
  msgstr ""
1443
 
1444
+ #: src/addons/multisite.php:568
1445
  msgid "Read more..."
1446
  msgstr ""
1447
 
1448
+ #: src/addons/multisite.php:559
1449
  msgid "may include some site-wide data"
1450
  msgstr ""
1451
 
1452
+ #: src/addons/multisite.php:554
1453
  msgid "All sites"
1454
  msgstr ""
1455
 
1456
+ #: src/addons/multisite.php:550
1457
  msgid "Which site to restore"
1458
  msgstr ""
1459
 
1460
+ #: src/addons/migrator.php:599, src/addons/migrator.php:600
1461
  msgid "Error when creating new site at your chosen address:"
1462
  msgstr ""
1463
 
1464
+ #: src/addons/migrator.php:541
1465
  msgid "Required information for restoring this backup was not given (%s)"
1466
  msgstr ""
1467
 
1468
+ #: src/addons/migrator.php:493
1469
  msgid "Attribute imported content to user"
1470
  msgstr ""
1471
 
1472
+ #: src/addons/migrator.php:483, src/addons/migrator.php:485
1473
  msgid "You must use lower-case letters or numbers for the site path, only."
1474
  msgstr ""
1475
 
1476
+ #: src/addons/migrator.php:471
1477
  msgid "This feature is not compatible with %s"
1478
  msgstr ""
1479
 
1480
+ #: src/addons/migrator.php:469, src/addons/migrator.php:471
1481
  msgid "Importing a single site into a multisite install"
1482
  msgstr ""
1483
 
1484
+ #: src/addons/migrator.php:460
1485
  msgid "other content from wp-content"
1486
  msgstr ""
1487
 
1488
+ #: src/addons/migrator.php:457
1489
  msgid "WordPress core"
1490
  msgstr ""
1491
 
1492
+ #: src/addons/migrator.php:457, src/addons/migrator.php:460,
1493
+ #: src/addons/migrator.php:463
1494
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1495
  msgstr ""
1496
 
1498
  msgid "Call WordPress action:"
1499
  msgstr ""
1500
 
1501
+ #: src/admin.php:2634
1502
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1503
  msgstr ""
1504
 
1505
+ #: src/admin.php:4045
1506
  msgid "Skipping: this archive was already restored."
1507
  msgstr ""
1508
 
1534
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1535
  msgstr ""
1536
 
1537
+ #: src/admin.php:4380
1538
  msgid "Send this backup to remote storage"
1539
  msgstr ""
1540
 
1541
+ #: src/admin.php:4378
1542
  msgid "Check out UpdraftPlus Vault."
1543
  msgstr ""
1544
 
1545
+ #: src/admin.php:4378
1546
  msgid "Not got any remote storage?"
1547
  msgstr ""
1548
 
1549
+ #: src/admin.php:4378
1550
  msgid "settings"
1551
  msgstr ""
1552
 
1553
+ #: src/admin.php:4378
1554
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1555
  msgstr ""
1556
 
1557
+ #: src/admin.php:2632
1558
  msgid "Include any files in the backup"
1559
  msgstr ""
1560
 
1561
+ #: src/admin.php:2618
1562
  msgid "Include the database in the backup"
1563
  msgstr ""
1564
 
1565
+ #: src/admin.php:2598
1566
  msgid "Continue restoration"
1567
  msgstr ""
1568
 
1569
+ #: src/admin.php:2593
1570
  msgid "You have an unfinished restoration operation, begun %s ago."
1571
  msgstr ""
1572
 
1573
+ #: src/admin.php:2592
1574
  msgid "Unfinished restoration"
1575
  msgstr ""
1576
 
1577
+ #: src/admin.php:2590
1578
  msgid "%s minutes, %s seconds"
1579
  msgstr ""
1580
 
1581
+ #: src/admin.php:2537
1582
  msgid "Backup Contents And Schedule"
1583
  msgstr ""
1584
 
1586
  msgid "Premium / Extensions"
1587
  msgstr ""
1588
 
1589
+ #: src/admin.php:2306, src/admin.php:2315
1590
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1591
  msgstr ""
1592
 
1607
  msgid "Advanced Tools"
1608
  msgstr ""
1609
 
1610
+ #: src/addons/googlecloud.php:1041
1611
  msgid "Bucket location"
1612
  msgstr ""
1613
 
1614
+ #: src/addons/googlecloud.php:1036
1615
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1616
  msgstr ""
1617
 
1618
+ #: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049
1619
  msgid "This setting applies only when a new bucket is being created."
1620
  msgstr ""
1621
 
1622
+ #: src/addons/googlecloud.php:1025
1623
  msgid "You must use a bucket name that is unique, for all %s users."
1624
  msgstr ""
1625
 
1626
+ #: src/addons/googlecloud.php:971
1627
  msgid "Do not confuse %s with %s - they are separate things."
1628
  msgstr ""
1629
 
1685
  msgid "Standard"
1686
  msgstr ""
1687
 
1688
+ #: src/addons/azure.php:630
1689
  msgid "container"
1690
  msgstr ""
1691
 
1692
+ #: src/addons/azure.php:630
1693
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1694
  msgstr ""
1695
 
1696
+ #: src/addons/azure.php:629
1697
  msgid "optional"
1698
  msgstr ""
1699
 
1700
+ #: src/addons/azure.php:625
1701
  msgid "See Microsoft's guidelines on container naming by following this link."
1702
  msgstr ""
1703
 
1704
+ #: src/addons/azure.php:625
1705
  msgid "Enter the path of the %s you wish to use here."
1706
  msgstr ""
1707
 
1708
+ #: src/addons/azure.php:616
1709
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1710
  msgstr ""
1711
 
1712
+ #: src/addons/azure.php:615, src/addons/azure.php:619,
1713
+ #: src/addons/azure.php:624, src/addons/azure.php:629
1714
  msgid "Azure"
1715
  msgstr ""
1716
 
1717
+ #: src/addons/azure.php:596
1718
  msgid "Create Azure credentials in your Azure developer console."
1719
  msgstr ""
1720
 
1721
+ #: src/addons/azure.php:560
1722
  msgid "Could not create the container"
1723
  msgstr ""
1724
 
1725
+ #: src/addons/azure.php:411
1726
  msgid "Could not access container"
1727
  msgstr ""
1728
 
1729
+ #: src/class-updraftplus.php:2879
1730
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1731
  msgstr ""
1732
 
1733
+ #: src/backup.php:1756
1734
  msgid "the options table was not found"
1735
  msgstr ""
1736
 
1737
+ #: src/backup.php:1754
1738
  msgid "no options or sitemeta table was found"
1739
  msgstr ""
1740
 
1741
+ #: src/backup.php:1754, src/backup.php:1756
1742
  msgid "The database backup appears to have failed"
1743
  msgstr ""
1744
 
1745
+ #: src/backup.php:1626
1746
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1747
  msgstr ""
1748
 
1754
  msgid "Not installed"
1755
  msgstr ""
1756
 
1757
+ #: src/addons/googlecloud.php:1028, src/addons/s3-enhanced.php:63
1758
  msgid "Storage class"
1759
  msgstr ""
1760
 
1761
+ #: src/addons/googlecloud.php:1025
1762
  msgid "See Google's guidelines on bucket naming by following this link."
1763
  msgstr ""
1764
 
1765
+ #: src/addons/googlecloud.php:1025
1766
  msgid "Enter the name of the %s bucket you wish to use here."
1767
  msgstr ""
1768
 
1769
+ #: src/addons/googlecloud.php:1024
1770
  msgid "Bucket"
1771
  msgstr ""
1772
 
1773
+ #: src/addons/googlecloud.php:1020
1774
  msgid "Otherwise, you can leave it blank."
1775
  msgstr ""
1776
 
1777
+ #: src/addons/googlecloud.php:1020
1778
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1779
  msgstr ""
1780
 
1781
+ #: src/addons/googlecloud.php:1020
1782
  msgid "Enter the ID of the %s project you wish to use here."
1783
  msgstr ""
1784
 
1785
+ #: src/addons/googlecloud.php:983
1786
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1787
  msgstr ""
1788
 
1789
+ #: src/addons/googlecloud.php:894
1790
  msgid "You must enter a project ID in order to be able to create a new bucket."
1791
  msgstr ""
1792
 
1793
+ #: src/addons/googlecloud.php:1018
1794
  msgid "Project ID"
1795
  msgstr ""
1796
 
1797
+ #: src/addons/googlecloud.php:751
1798
  msgid "You must save and authenticate before you can test your settings."
1799
  msgstr ""
1800
 
1803
  msgstr ""
1804
 
1805
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1806
+ #: src/addons/googlecloud.php:886, src/addons/googlecloud.php:933
1807
  msgid "You do not have access to this bucket."
1808
  msgstr ""
1809
 
1810
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1811
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1812
+ #: src/addons/googlecloud.php:710, src/addons/googlecloud.php:886,
1813
+ #: src/addons/googlecloud.php:933, src/addons/googlecloud.php:977,
1814
+ #: src/addons/googlecloud.php:977, src/addons/googlecloud.php:1005,
1815
+ #: src/addons/googlecloud.php:1013, src/addons/googlecloud.php:1025
1816
  msgid "Google Cloud"
1817
  msgstr ""
1818
 
1819
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1820
+ #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:886,
1821
+ #: src/addons/googlecloud.php:933
1822
  msgid "%s Service Exception."
1823
  msgstr ""
1824
 
1855
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1856
  msgstr ""
1857
 
1858
+ #: src/admin.php:1690
1859
  msgid "Backup sets removed:"
1860
  msgstr ""
1861
 
1887
  msgid "day"
1888
  msgstr ""
1889
 
1890
+ #: src/addons/morestorage.php:29
1891
  msgid "(as many as you like)"
1892
  msgstr ""
1893
 
1903
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1904
  msgstr ""
1905
 
1906
+ #: src/methods/updraftvault.php:693
1907
  msgid "You do not currently have any UpdraftPlus Vault quota"
1908
  msgstr ""
1909
 
1910
+ #: src/class-updraftplus.php:4286
1911
  msgid "You must upgrade MySQL to be able to use this database."
1912
  msgstr ""
1913
 
1914
+ #: src/class-updraftplus.php:4286
1915
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1916
  msgstr ""
1917
 
1918
+ #: src/admin.php:2425
1919
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1920
  msgstr ""
1921
 
1922
+ #: src/methods/updraftvault.php:351
1923
  msgid "Don't know your email address, or forgotten your password?"
1924
  msgstr ""
1925
 
1926
+ #: src/methods/updraftvault.php:344
1927
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1928
  msgstr ""
1929
 
1930
+ #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:337
1931
  msgid "Read the FAQs here."
1932
  msgstr ""
1933
 
1939
  msgid "Server-side encryption"
1940
  msgstr ""
1941
 
1942
+ #: src/methods/updraftvault.php:701
1943
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1944
  msgstr ""
1945
 
1946
+ #: src/admin.php:1010
1947
  msgid "Go to the remote storage settings in order to connect."
1948
  msgstr ""
1949
 
1950
+ #: src/admin.php:1010
1951
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1952
  msgstr ""
1953
 
1954
+ #: src/methods/updraftvault.php:334
1955
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1956
  msgstr ""
1957
 
1971
  msgid "Connecting..."
1972
  msgstr ""
1973
 
1974
+ #: src/methods/updraftvault.php:454, src/methods/updraftvault.php:528
1975
  msgid "Refresh current status"
1976
  msgstr ""
1977
 
1978
+ #: src/methods/updraftvault.php:452, src/methods/updraftvault.php:468,
1979
+ #: src/methods/updraftvault.php:470, src/methods/updraftvault.php:528
1980
  msgid "Get more quota"
1981
  msgstr ""
1982
 
1983
+ #: src/methods/updraftvault.php:449, src/methods/updraftvault.php:465,
1984
+ #: src/methods/updraftvault.php:509
1985
  msgid "Current use:"
1986
  msgstr ""
1987
 
1988
+ #: src/methods/updraftvault.php:444
1989
  msgid "You can get more quota here"
1990
  msgstr ""
1991
 
1992
+ #: src/methods/updraftvault.php:444
1993
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1994
  msgstr ""
1995
 
1996
+ #: src/admin.php:712, src/methods/updraftvault.php:378,
1997
+ #: src/methods/updraftvault.php:436
1998
  msgid "Disconnect"
1999
  msgstr ""
2000
 
2001
+ #: src/methods/updraftvault.php:375, src/methods/updraftvault.php:428
2002
  msgid "Quota:"
2003
  msgstr ""
2004
 
2005
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2006
  msgid "Vault owner"
2007
  msgstr ""
2008
 
2009
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2010
  msgid "Well done - there's nothing more needed to set up."
2011
  msgstr ""
2012
 
2013
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2014
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
2015
  msgstr ""
2016
 
2017
+ #: src/methods/updraftvault.php:380, src/methods/updraftvault.php:422
2018
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
2019
  msgstr ""
2020
 
2021
+ #: src/methods/updraftvault.php:351
2022
  msgid "Go here for help"
2023
  msgstr ""
2024
 
2025
+ #: src/methods/updraftvault.php:346
2026
  msgid "E-mail"
2027
  msgstr ""
2028
 
2029
+ #: src/central/bootstrap.php:551, src/methods/updraftvault.php:340,
2030
+ #: src/methods/updraftvault.php:354
2031
  msgid "Back..."
2032
  msgstr ""
2033
 
2034
+ #: src/methods/updraftvault.php:334
2035
  msgid "Subscriptions can be cancelled at any time."
2036
  msgstr ""
2037
 
2039
  msgid "Buy it now"
2040
  msgstr ""
2041
 
2042
+ #: src/methods/updraftvault.php:317, src/methods/updraftvault.php:323,
2043
+ #: src/methods/updraftvault.php:329
2044
  msgid "%s per quarter"
2045
  msgstr ""
2046
 
2047
+ #: src/central/bootstrap.php:578, src/methods/updraftvault.php:308,
2048
+ #: src/methods/updraftvault.php:337
2049
  msgid "Read more about it here."
2050
  msgstr ""
2051
 
2052
+ #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:337
2053
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
2054
  msgstr ""
2055
 
2056
+ #: src/methods/updraftvault.php:304
2057
  msgid "Already purchased space?"
2058
  msgstr ""
2059
 
2060
+ #: src/methods/updraftvault.php:301
2061
  msgid "Show the options"
2062
  msgstr ""
2063
 
2064
+ #: src/methods/updraftvault.php:300
2065
  msgid "First time user?"
2066
  msgstr ""
2067
 
2068
+ #: src/methods/updraftvault.php:297, src/methods/updraftvault.php:314
2069
  msgid "Press a button to get started."
2070
  msgstr ""
2071
 
2072
+ #: src/methods/updraftvault.php:297, src/methods/updraftvault.php:314
2073
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
2074
  msgstr ""
2075
 
2089
  msgid "Updraft Vault"
2090
  msgstr ""
2091
 
2092
+ #: src/addons/azure.php:441, src/addons/backblaze.php:491,
2093
+ #: src/addons/googlecloud.php:835, src/methods/s3.php:1138
2094
  msgid "Delete failed:"
2095
  msgstr ""
2096
 
2097
+ #: src/backup.php:3367
2098
  msgid "The zip engine returned the message: %s."
2099
  msgstr ""
2100
 
2114
  msgid "Allow download"
2115
  msgstr ""
2116
 
2117
+ #: src/addons/migrator.php:1922
2118
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
2119
  msgstr ""
2120
 
2121
+ #: src/addons/migrator.php:1907, src/admin.php:721
2122
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
2123
  msgstr ""
2124
 
2125
+ #: src/addons/migrator.php:2410
2126
  msgid "Existing keys"
2127
  msgstr ""
2128
 
2129
+ #: src/addons/migrator.php:2401
2130
  msgid "No keys to allow remote sites to connect have yet been created."
2131
  msgstr ""
2132
 
2133
+ #: src/addons/migrator.php:2383
2134
  msgid "Your new key:"
2135
  msgstr ""
2136
 
2137
+ #: src/addons/migrator.php:2362
2138
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
2139
  msgstr ""
2140
 
2141
+ #: src/addons/migrator.php:2344
2142
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
2143
  msgstr ""
2144
 
2145
+ #: src/addons/migrator.php:2344
2146
  msgid "Keys for this site are created in the section below the one you just pressed in."
2147
  msgstr ""
2148
 
2149
+ #: src/addons/migrator.php:2024, src/central/bootstrap.php:387
2150
  msgid "You must copy and paste this key now - it cannot be shown again."
2151
  msgstr ""
2152
 
2153
+ #: src/addons/migrator.php:2024, src/central/bootstrap.php:387
2154
  msgid "Key created successfully."
2155
  msgstr ""
2156
 
2157
+ #: src/addons/migrator.php:2009
2158
  msgid "A key with this name already exists; you must use a unique name."
2159
  msgstr ""
2160
 
2161
+ #: src/addons/migrator.php:1953
2162
  msgid "Also send this backup to the active remote storage locations"
2163
  msgstr ""
2164
 
2165
+ #: src/addons/migrator.php:1918
2166
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
2167
  msgstr ""
2168
 
2169
+ #: src/addons/migrator.php:1874
2170
  msgid "site not found"
2171
  msgstr ""
2172
 
2173
+ #: src/addons/migrator.php:1859
2174
  msgid "Backup data will be sent to:"
2175
  msgstr ""
2176
 
2177
+ #: src/addons/migrator.php:213
2178
  msgid "Restore an existing backup set onto this site"
2179
  msgstr ""
2180
 
2181
+ #: src/addons/migrator.php:206
2182
  msgid "This site has no backups to restore from yet."
2183
  msgstr ""
2184
 
2190
  msgid "This storage method does not allow downloading"
2191
  msgstr ""
2192
 
2193
+ #: src/admin.php:3794
2194
  msgid "(backup set imported from remote location)"
2195
  msgstr ""
2196
 
2210
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
2211
  msgstr ""
2212
 
2213
+ #: src/addons/migrator.php:1935, src/admin.php:728
2214
  msgid "Testing connection..."
2215
  msgstr ""
2216
 
2230
  msgid "Creating..."
2231
  msgstr ""
2232
 
2233
+ #: src/addons/migrator.php:2361
2234
  msgid "Or, receive a backup from a remote site"
2235
  msgstr ""
2236
 
2237
+ #: src/addons/migrator.php:2350
2238
  msgid "Paste key here"
2239
  msgstr ""
2240
 
2241
+ #: src/addons/migrator.php:2344
2242
  msgid "How do I get a site's key?"
2243
  msgstr ""
2244
 
2245
+ #: src/addons/migrator.php:2344
2246
  msgid "To add a site as a destination for sending to, enter that site's key below."
2247
  msgstr ""
2248
 
2249
+ #: src/addons/migrator.php:2341
2250
  msgid "Or, send a backup to another site"
2251
  msgstr ""
2252
 
2253
+ #: src/addons/migrator.php:2106, src/admin.php:729
2254
  msgid "Send"
2255
  msgstr ""
2256
 
2257
+ #: src/addons/migrator.php:2100, src/admin.php:720
2258
  msgid "Send to site:"
2259
  msgstr ""
2260
 
2261
+ #: src/addons/migrator.php:2098
2262
  msgid "No receiving sites have yet been added."
2263
  msgstr ""
2264
 
2265
+ #: src/addons/migrator.php:2079
2266
  msgid "It is for sending backups to the following site: "
2267
  msgstr ""
2268
 
2269
+ #: src/addons/migrator.php:2079
2270
  msgid "The key was successfully added."
2271
  msgstr ""
2272
 
2273
+ #: src/addons/migrator.php:2063
2274
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2275
  msgstr ""
2276
 
2277
+ #: src/addons/migrator.php:2052, src/addons/migrator.php:2054,
2278
+ #: src/addons/migrator.php:2058
2279
  msgid "The entered key was corrupt - please try again."
2280
  msgstr ""
2281
 
2282
+ #: src/addons/migrator.php:2050
2283
  msgid "The entered key was the wrong length - please try again."
2284
  msgstr ""
2285
 
2286
+ #: src/addons/migrator.php:2040
2287
  msgid "key"
2288
  msgstr ""
2289
 
2290
+ #: src/methods/ftp.php:379
2291
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2292
  msgstr ""
2293
 
2294
+ #: src/methods/ftp.php:377
2295
  msgid "Passive mode"
2296
  msgstr ""
2297
 
2298
+ #: src/methods/ftp.php:372
2299
  msgid "Remote path"
2300
  msgstr ""
2301
 
2302
+ #: src/methods/ftp.php:367
2303
  msgid "FTP password"
2304
  msgstr ""
2305
 
2306
+ #: src/methods/ftp.php:362
2307
  msgid "FTP login"
2308
  msgstr ""
2309
 
2310
+ #: src/methods/ftp.php:357
2311
  msgid "FTP server"
2312
  msgstr ""
2313
 
2314
+ #: src/addons/migrator.php:178
2315
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
2316
  msgstr ""
2317
 
2318
+ #: src/addons/migrator.php:178
2319
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2320
  msgstr ""
2321
 
2323
  msgid "Resetting..."
2324
  msgstr ""
2325
 
2326
+ #: src/addons/migrator.php:2350, src/admin.php:717
2327
  msgid "Add site"
2328
  msgstr ""
2329
 
2351
  msgid "Go here to re-enter your password."
2352
  msgstr ""
2353
 
2354
+ #: src/addons/migrator.php:242
2355
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2356
  msgstr ""
2357
 
2358
+ #: src/addons/migrator.php:213
2359
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2360
  msgstr ""
2361
 
2362
+ #: src/addons/migrator.php:180
2363
  msgid "To restore using any of the backup sets below, press the button."
2364
  msgstr ""
2365
 
2367
  msgid "You have made changes to your settings, and not saved."
2368
  msgstr ""
2369
 
2370
+ #: src/addons/onedrive.php:1089
2371
  msgid "N.B. %s is not case-sensitive."
2372
  msgstr ""
2373
 
2374
+ #: src/addons/onedrive.php:1079
2375
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2376
  msgstr ""
2377
 
2378
+ #: src/addons/azure.php:597, src/addons/migrator.php:1922,
2379
+ #: src/addons/onedrive.php:1052
2380
  msgid "For longer help, including screenshots, follow this link."
2381
  msgstr ""
2382
 
2383
+ #: src/addons/onedrive.php:1045
2384
  msgid "Create OneDrive credentials in your OneDrive developer console."
2385
  msgstr ""
2386
 
2387
+ #: src/addons/onedrive.php:1037
2388
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2389
  msgstr ""
2390
 
2391
+ #: src/addons/azure.php:590
2392
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2393
  msgstr ""
2394
 
2395
+ #: src/addons/onedrive.php:1001, src/addons/onedrive.php:1003
2396
  msgid "%s authorisation failed:"
2397
  msgstr ""
2398
 
2399
+ #: src/addons/onedrive.php:876, src/addons/onedrive.php:1078,
2400
+ #: src/addons/onedrive.php:1082
2401
  msgid "OneDrive"
2402
  msgstr ""
2403
 
2404
+ #: src/addons/onedrive.php:689
2405
  msgid "Please re-authorize the connection to your %s account."
2406
  msgstr ""
2407
 
2408
+ #: src/methods/email.php:87
2409
  msgid "configure it here"
2410
  msgstr ""
2411
 
2412
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666
2413
  msgid "To remove the block, please go here."
2414
  msgstr ""
2415
 
2554
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2555
  msgstr ""
2556
 
2557
+ #: src/methods/s3.php:894
2558
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2559
  msgstr ""
2560
 
2566
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
2567
  msgstr ""
2568
 
2569
+ #: src/addons/onedrive.php:658, src/addons/onedrive.php:682,
2570
+ #: src/methods/updraftvault.php:666, src/udaddons/updraftplus-addons.php:873,
2571
  #: src/udaddons/updraftplus-addons.php:887
2572
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2573
  msgstr ""
2574
 
2575
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666,
2576
  #: src/udaddons/updraftplus-addons.php:887
2577
  msgid "It appears that your web server's IP Address (%s) is blocked."
2578
  msgstr ""
2579
 
2580
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666,
2581
  #: src/udaddons/updraftplus-addons.php:887
2582
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2583
  msgstr ""
2629
  msgid "(at same time as files backup)"
2630
  msgstr ""
2631
 
2632
+ #: src/admin.php:3265
2633
  msgid "No backup has been completed"
2634
  msgstr ""
2635
 
2676
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2677
  msgstr ""
2678
 
2679
+ #: src/addons/sftp.php:452
2680
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2681
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2682
  msgstr ""
2683
 
2684
+ #: src/addons/sftp.php:402
2685
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
2686
  msgstr ""
2687
 
2688
+ #: src/methods/openstack2.php:190
2689
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2690
  msgid "tenant"
2691
  msgstr ""
2692
 
2693
+ #: src/methods/openstack2.php:139
2694
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2695
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2696
  msgstr ""
2703
  msgid "Check this box to have a basic report sent to"
2704
  msgstr ""
2705
 
2706
+ #: src/admin.php:3279
2707
  msgctxt "i.e. Non-automatic"
2708
  msgid "Manual"
2709
  msgstr ""
2721
  msgid "Any other file/directory on your server that you wish to back up"
2722
  msgstr ""
2723
 
2724
+ #: src/admin.php:2442
2725
  msgid "For even more features and personal support, check out "
2726
  msgstr ""
2727
 
2815
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2816
  msgstr ""
2817
 
2818
+ #: src/admin.php:2808, src/admin.php:3825
2819
  msgid "View Log"
2820
  msgstr ""
2821
 
2832
  msgid "and retain this many scheduled backups"
2833
  msgstr ""
2834
 
2835
+ #: src/admin.php:3235
2836
  msgid "incremental backup; base backup: %s"
2837
  msgstr ""
2838
 
2844
  msgid "Upload files into UpdraftPlus."
2845
  msgstr ""
2846
 
2847
+ #: src/admin.php:952, src/includes/class-commands.php:394,
2848
  #: src/templates/wp-admin/settings/tab-status.php:22
2849
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2850
  msgstr ""
2851
 
2852
+ #: src/class-updraftplus.php:4202
2853
  msgid "Backup label:"
2854
  msgstr ""
2855
 
2856
+ #: src/addons/backblaze.php:189, src/admin.php:1953
2857
  msgid "Error: unexpected file read fail"
2858
  msgstr ""
2859
 
2860
+ #: src/backup.php:3373
2861
  msgid "check your log for more details."
2862
  msgstr ""
2863
 
2864
+ #: src/backup.php:3371
2865
  msgid "your web hosting account appears to be full; please see: %s"
2866
  msgstr ""
2867
 
2868
+ #: src/backup.php:3369
2869
  msgid "A zip error occurred"
2870
  msgstr ""
2871
 
2873
  msgid "Your label for this backup (optional)"
2874
  msgstr ""
2875
 
2876
+ #: src/addons/googlecloud.php:977, src/methods/googledrive.php:1161
2877
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
2878
  msgstr ""
2879
 
2880
+ #: src/methods/updraftvault.php:704, src/udaddons/updraftplus-addons.php:926
2881
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2882
  msgstr ""
2883
 
2884
+ #: src/methods/updraftvault.php:701, src/udaddons/updraftplus-addons.php:922
2885
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2886
  msgstr ""
2887
 
2888
+ #: src/methods/updraftvault.php:642, src/udaddons/updraftplus-addons.php:790
2889
  msgid "You need to supply both an email address and a password"
2890
  msgstr ""
2891
 
2893
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2894
  msgstr ""
2895
 
2896
+ #: src/class-updraftplus.php:4221
2897
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2898
  msgstr ""
2899
 
2900
+ #: src/class-updraftplus.php:4221
2901
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2902
  msgstr ""
2903
 
2904
+ #: src/addons/migrator.php:1220
2905
  msgid "already done"
2906
  msgstr ""
2907
 
2908
+ #: src/addons/migrator.php:1177
2909
  msgid "skipped (not in list)"
2910
  msgstr ""
2911
 
2912
+ #: src/addons/migrator.php:1177, src/addons/migrator.php:1220,
2913
+ #: src/addons/migrator.php:1354
2914
  msgid "Search and replacing table:"
2915
  msgstr ""
2916
 
2917
+ #: src/addons/migrator.php:354
2918
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2919
  msgstr ""
2920
 
2921
+ #: src/addons/migrator.php:354
2922
  msgid "These tables only"
2923
  msgstr ""
2924
 
2925
+ #: src/addons/migrator.php:353
2926
  msgid "Rows per batch"
2927
  msgstr ""
2928
 
2934
  msgid "You need to connect to receive future updates to UpdraftPlus."
2935
  msgstr ""
2936
 
2937
+ #: src/class-updraftplus.php:4194
2938
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2939
  msgstr ""
2940
 
2941
+ #: src/class-updraftplus.php:4194
2942
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2943
  msgstr ""
2944
 
2945
+ #: src/class-updraftplus.php:4194
2946
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2947
  msgstr ""
2948
 
2949
+ #: src/class-updraftplus.php:4194
2950
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2951
  msgstr ""
2952
 
2975
  msgid "UpdraftPlus is on social media - check us out!"
2976
  msgstr ""
2977
 
2978
+ #: src/admin.php:3892
2979
  msgid "Why am I seeing this?"
2980
  msgstr ""
2981
 
2987
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2988
  msgstr ""
2989
 
2990
+ #: src/admin.php:1892, src/admin.php:1904
2991
  msgid "Start backup"
2992
  msgstr ""
2993
 
2994
+ #: src/class-updraftplus.php:4166, src/restorer.php:1045
2995
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2996
  msgstr ""
2997
 
2998
+ #: src/admin.php:3133
2999
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
3000
  msgstr ""
3001
 
3003
  msgid "Unless you have a problem, you can completely ignore everything here."
3004
  msgstr ""
3005
 
3006
+ #: src/admin.php:2128
3007
  msgid "This file could not be uploaded"
3008
  msgstr ""
3009
 
3010
+ #: src/admin.php:2091
3011
  msgid "You will find more information about this in the Settings section."
3012
  msgstr ""
3013
 
3027
  msgid "Memory limit"
3028
  msgstr ""
3029
 
3030
+ #: src/class-updraftplus.php:4635, src/restorer.php:1529
3031
  msgid "restoration"
3032
  msgstr ""
3033
 
3034
+ #: src/backup.php:1001
3035
  msgid "Incremental"
3036
  msgstr ""
3037
 
3038
+ #: src/backup.php:1001
3039
  msgid "Full backup"
3040
  msgstr ""
3041
 
3051
  msgid "Backup succeeded"
3052
  msgstr ""
3053
 
3054
+ #: src/admin.php:3280, src/admin.php:3281, src/admin.php:3282,
3055
  #: src/updraftplus.php:99, src/updraftplus.php:100
3056
  msgid "Every %s hours"
3057
  msgstr ""
3058
 
3059
+ #: src/addons/migrator.php:871, src/addons/migrator.php:873
3060
  msgid "search and replace"
3061
  msgstr ""
3062
 
3063
+ #: src/addons/migrator.php:356
3064
  msgid "Go"
3065
  msgstr ""
3066
 
3067
+ #: src/addons/migrator.php:345
3068
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
3069
  msgstr ""
3070
 
3071
+ #: src/addons/migrator.php:344
3072
  msgid "This can easily destroy your site; so, use it with care!"
3073
  msgstr ""
3074
 
3075
+ #: src/addons/migrator.php:300, src/addons/migrator.php:352
3076
  msgid "Replace with"
3077
  msgstr ""
3078
 
3079
+ #: src/addons/migrator.php:299, src/addons/migrator.php:351
3080
  msgid "Search for"
3081
  msgstr ""
3082
 
3083
+ #: src/addons/migrator.php:298, src/addons/migrator.php:343,
3084
  #: src/templates/wp-admin/advanced/search-replace.php:7,
3085
  #: src/templates/wp-admin/advanced/tools-menu.php:18
3086
  msgid "Search / replace database"
3087
  msgstr ""
3088
 
3089
+ #: src/addons/migrator.php:304
3090
  msgid "search term"
3091
  msgstr ""
3092
 
3094
  msgid "Too many database errors have occurred - aborting"
3095
  msgstr ""
3096
 
3097
+ #: src/backup.php:1067
3098
  msgid "read more at %s"
3099
  msgstr ""
3100
 
3101
+ #: src/backup.php:1067
3102
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3103
  msgstr ""
3104
 
3105
+ #: src/methods/googledrive.php:1168
3106
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
3107
  msgstr ""
3108
 
3109
+ #: src/admin.php:3636
3110
  msgid "You have not yet made any backups."
3111
  msgstr ""
3112
 
3126
  msgid "Free disk space in account:"
3127
  msgstr ""
3128
 
3129
+ #: src/admin.php:4477, src/templates/wp-admin/settings/tab-status.php:27
3130
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3131
  msgstr ""
3132
 
3133
+ #: src/admin.php:534, src/admin.php:676, src/admin.php:1738,
3134
  #: src/includes/deprecated-actions.php:29,
3135
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3136
  #: src/templates/wp-admin/settings/tab-bar.php:6
3141
  msgid "Current Status"
3142
  msgstr ""
3143
 
3144
+ #: src/admin.php:957
3145
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
3146
  msgstr ""
3147
 
3148
+ #: src/admin.php:957
3149
  msgid "To make a backup, just press the Backup Now button."
3150
  msgstr ""
3151
 
3152
+ #: src/admin.php:957
3153
  msgid "Welcome to UpdraftPlus!"
3154
  msgstr ""
3155
 
3221
  msgid "user"
3222
  msgstr ""
3223
 
3224
+ #: src/class-updraftplus.php:1785
3225
  msgid "External database (%s)"
3226
  msgstr ""
3227
 
3228
+ #: src/methods/googledrive.php:1168
3229
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
3230
  msgstr ""
3231
 
3233
  msgid "failed to access parent folder"
3234
  msgstr ""
3235
 
3236
+ #: src/addons/googlecloud.php:690, src/addons/onedrive.php:844,
3237
+ #: src/addons/onedrive.php:855, src/methods/googledrive.php:420
3238
  msgid "However, subsequent access attempts failed:"
3239
  msgstr ""
3240
 
3241
+ #: src/admin.php:3661
3242
  msgid "External database"
3243
  msgstr ""
3244
 
3270
  msgid "use UpdraftPlus Premium"
3271
  msgstr ""
3272
 
3273
+ #: src/class-updraftplus.php:4048
3274
  msgid "Decryption failed. The database file is encrypted."
3275
  msgstr ""
3276
 
3283
  msgid "An error occurred on the first %s command - aborting run"
3284
  msgstr ""
3285
 
3286
+ #: src/addons/moredatabase.php:105, src/backup.php:1567
3287
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3288
  msgstr ""
3289
 
3290
+ #: src/backup.php:1567
3291
  msgid "database connection attempt failed."
3292
  msgstr ""
3293
 
3294
+ #: src/addons/migrator.php:1108
3295
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3296
  msgstr ""
3297
 
3299
  msgid "In %s, path names are case sensitive."
3300
  msgstr ""
3301
 
3302
+ #: src/addons/azure.php:630, src/addons/google-enhanced.php:76,
3303
+ #: src/addons/onedrive.php:1089
3304
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3305
  msgstr ""
3306
 
3307
+ #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1025,
3308
+ #: src/addons/onedrive.php:1089
3309
  msgid "e.g. %s"
3310
  msgstr ""
3311
 
3312
+ #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1089
3313
  msgid "Enter the path of the %s folder you wish to use here."
3314
  msgstr ""
3315
 
3316
+ #: src/methods/openstack2.php:170
3317
  msgid "Container"
3318
  msgstr ""
3319
 
3320
+ #: src/methods/openstack2.php:153
3321
  msgid "Leave this blank, and a default will be chosen."
3322
  msgstr ""
3323
 
3324
+ #: src/methods/openstack2.php:144
3325
  msgid "Tenant"
3326
  msgstr ""
3327
 
3328
+ #: src/methods/openstack2.php:144
3329
  msgid "Follow this link for more information"
3330
  msgstr ""
3331
 
3332
+ #: src/methods/openstack2.php:136, src/methods/openstack2.php:195
3333
  msgid "authentication URI"
3334
  msgstr ""
3335
 
3336
+ #: src/methods/openstack2.php:120
3337
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
3338
  msgstr ""
3339
 
3353
  msgid "Failed to upload %s"
3354
  msgstr ""
3355
 
3356
+ #: src/methods/dropbox.php:742, src/methods/dropbox.php:744
3357
  msgid "Success:"
3358
  msgstr ""
3359
 
3360
+ #: src/addons/onedrive.php:1110, src/methods/dropbox.php:595
3361
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
3362
  msgstr ""
3363
 
3364
+ #: src/addons/onedrive.php:1102, src/methods/dropbox.php:579
3365
  msgid "(You appear to be already authenticated)."
3366
  msgstr ""
3367
 
3368
+ #: src/methods/dropbox.php:575, src/methods/dropbox.php:583,
3369
+ #: src/methods/dropbox.php:595
3370
  msgid "Dropbox"
3371
  msgstr ""
3372
 
3373
+ #: src/addons/onedrive.php:1095, src/methods/dropbox.php:575
3374
  msgid "Authenticate with %s"
3375
  msgstr ""
3376
 
3401
  msgid "%s error - failed to access the container"
3402
  msgstr ""
3403
 
3404
+ #: src/addons/googlecloud.php:1090, src/addons/onedrive.php:1134,
3405
+ #: src/methods/dropbox.php:638, src/methods/googledrive.php:1246
3406
  msgid "Account holder's name: %s."
3407
  msgstr ""
3408
 
3409
+ #: src/methods/googledrive.php:1224
3410
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3411
  msgstr ""
3412
 
3413
+ #: src/methods/googledrive.php:1211
3414
  msgid "It is an ID number internal to Google Drive"
3415
  msgstr ""
3416
 
3417
+ #: src/methods/googledrive.php:1211
3418
  msgid "<strong>This is NOT a folder name</strong>."
3419
  msgstr ""
3420
 
3421
+ #: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1087,
3422
+ #: src/methods/googledrive.php:1206, src/methods/googledrive.php:1217
3423
  msgid "Folder"
3424
  msgstr ""
3425
 
3426
+ #: src/addons/googlecloud.php:296, src/addons/onedrive.php:426,
3427
+ #: src/methods/googledrive.php:1121
3428
  msgid "%s download: failed: file not found"
3429
  msgstr ""
3430
 
3431
+ #: src/addons/googlecloud.php:710, src/methods/googledrive.php:440
3432
  msgid "Name: %s."
3433
  msgstr ""
3434
 
3457
  msgid "Fetch"
3458
  msgstr ""
3459
 
3460
+ #: src/addons/migrator.php:469,
3461
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3462
  #: src/templates/wp-admin/settings/form-contents.php:190
3463
  msgid "This feature requires %s version %s or later"
3467
  msgid "Failed to unpack the archive"
3468
  msgstr ""
3469
 
3470
+ #: src/class-updraftplus.php:1317
3471
  msgid "Error - failed to download the file"
3472
  msgstr ""
3473
 
3487
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3488
  msgstr ""
3489
 
3490
+ #: src/addons/sftp.php:513
3491
  msgid "password/key"
3492
  msgstr ""
3493
 
3494
+ #: src/addons/migrator.php:2368, src/addons/sftp.php:449, src/admin.php:723,
3495
+ #: src/admin.php:4698
3496
  msgid "Key"
3497
  msgstr ""
3498
 
3499
+ #: src/addons/sftp.php:444
3500
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3501
  msgstr ""
3502
 
3508
  msgid "SCP/SFTP password/key"
3509
  msgstr ""
3510
 
3511
+ #: src/admin.php:3705
3512
  msgid "Files backup (created by %s)"
3513
  msgstr ""
3514
 
3515
+ #: src/admin.php:3705
3516
  msgid "Files and database WordPress backup (created by %s)"
3517
  msgstr ""
3518
 
3519
+ #: src/addons/importer.php:276, src/admin.php:3699,
3520
  #: src/includes/class-backup-history.php:279
3521
  msgid "Backup created by: %s."
3522
  msgstr ""
3523
 
3524
+ #: src/admin.php:3659
3525
  msgid "Database (created by %s)"
3526
  msgstr ""
3527
 
3528
+ #: src/admin.php:3653, src/admin.php:3701
3529
  msgid "unknown source"
3530
  msgstr ""
3531
 
3537
  msgid "Upload backup files"
3538
  msgstr ""
3539
 
3540
+ #: src/admin.php:2143
3541
  msgid "This backup was created by %s, and can be imported."
3542
  msgstr ""
3543
 
3544
+ #: src/admin.php:986
3545
  msgid "Read this page for a guide to possible causes and how to fix it."
3546
  msgstr ""
3547
 
3548
+ #: src/admin.php:986
3549
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3550
  msgstr ""
3551
 
3562
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3563
  msgstr ""
3564
 
3565
+ #: src/admin.php:3702, src/includes/class-wpadmin-commands.php:152,
3566
  #: src/restorer.php:1498
3567
  msgid "Backup created by unknown source (%s) - cannot be restored."
3568
  msgstr ""
3575
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3576
  msgstr ""
3577
 
3578
+ #: src/methods/dropbox.php:377
3579
  msgid "%s returned an unexpected HTTP response: %s"
3580
  msgstr ""
3581
 
3582
+ #: src/addons/sftp.php:983
3583
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3584
  msgstr ""
3585
 
3586
+ #: src/addons/backblaze.php:543, src/methods/cloudfiles.php:234,
3587
+ #: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
3588
  msgid "No settings were found"
3589
  msgstr ""
3590
 
3596
  msgid "Rescanning remote and local storage for backup sets..."
3597
  msgstr ""
3598
 
3599
+ #: src/addons/googlecloud.php:1028, src/addons/googlecloud.php:1041,
3600
  #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
3601
  msgid "(Read more)"
3602
  msgstr ""
3614
  msgid "Remove"
3615
  msgstr ""
3616
 
3617
+ #: src/methods/s3.php:845
3618
  msgid "Other %s FAQs."
3619
  msgstr ""
3620
 
3622
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3623
  msgstr ""
3624
 
3625
+ #: src/addons/morefiles.php:445, src/admin.php:3384
3626
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3627
  msgstr ""
3628
 
3629
+ #: src/class-updraftplus.php:4635, src/methods/ftp.php:330,
3630
  #: src/restorer.php:1529
3631
  msgid "Your hosting company must enable these functions before %s can work."
3632
  msgstr ""
3633
 
3634
+ #: src/class-updraftplus.php:4635, src/methods/ftp.php:330
3635
  msgid "Your web server's PHP installation has these functions disabled: %s."
3636
  msgstr ""
3637
 
3638
+ #: src/methods/ftp.php:327
3639
  msgid "encrypted FTP (explicit encryption)"
3640
  msgstr ""
3641
 
3642
+ #: src/methods/ftp.php:326
3643
  msgid "encrypted FTP (implicit encryption)"
3644
  msgstr ""
3645
 
3646
+ #: src/methods/ftp.php:325
3647
  msgid "regular non-encrypted FTP"
3648
  msgstr ""
3649
 
3701
  msgid "Dismiss from main dashboard (for %s weeks)"
3702
  msgstr ""
3703
 
3704
+ #: src/class-updraftplus.php:4685
3705
  msgid "The attempt to undo the double-compression succeeded."
3706
  msgstr ""
3707
 
3708
+ #: src/class-updraftplus.php:4662, src/class-updraftplus.php:4683
3709
  msgid "The attempt to undo the double-compression failed."
3710
  msgstr ""
3711
 
3712
+ #: src/class-updraftplus.php:4655
3713
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3714
  msgstr ""
3715
 
3717
  msgid "Constants"
3718
  msgstr ""
3719
 
3720
+ #: src/backup.php:1804
3721
  msgid "Failed to open database file for reading:"
3722
  msgstr ""
3723
 
3724
+ #: src/backup.php:1615
3725
  msgid "No database tables found"
3726
  msgstr ""
3727
 
3728
+ #: src/backup.php:1613
3729
  msgid "please wait for the rescheduled attempt"
3730
  msgstr ""
3731
 
3733
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
3734
  msgstr ""
3735
 
3736
+ #: src/addons/onedrive.php:94, src/methods/dropbox.php:267
3737
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
3738
  msgstr ""
3739
 
3742
  msgid "Errors occurred:"
3743
  msgstr ""
3744
 
3745
+ #: src/admin.php:3911
3746
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3747
  msgstr ""
3748
 
3766
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3767
  msgstr ""
3768
 
3769
+ #: src/admin.php:961, src/class-updraftplus.php:822
3770
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3771
  msgstr ""
3772
 
3773
+ #: src/addons/migrator.php:271
3774
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3775
  msgstr ""
3776
 
3777
+ #: src/addons/sftp.php:738, src/addons/sftp.php:741,
3778
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
3779
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3780
  msgstr ""
3781
 
3782
+ #: src/addons/moredatabase.php:137, src/admin.php:1482
3783
  msgid "Messages:"
3784
  msgstr ""
3785
 
3791
  msgid "The directory does not exist"
3792
  msgstr ""
3793
 
3794
+ #: src/addons/cloudfiles-enhanced.php:279
3795
  msgid "New User's Email Address"
3796
  msgstr ""
3797
 
3798
+ #: src/addons/cloudfiles-enhanced.php:276
3799
  msgid "New User's Username"
3800
  msgstr ""
3801
 
3802
+ #: src/addons/cloudfiles-enhanced.php:273
3803
  msgid "Admin API Key"
3804
  msgstr ""
3805
 
3806
+ #: src/addons/cloudfiles-enhanced.php:270
3807
  msgid "Admin Username"
3808
  msgstr ""
3809
 
3810
+ #: src/addons/cloudfiles-enhanced.php:265
3811
  msgid "US or UK Rackspace Account"
3812
  msgstr ""
3813
 
3814
+ #: src/addons/cloudfiles-enhanced.php:257
3815
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
3816
  msgstr ""
3817
 
3818
+ #: src/addons/cloudfiles-enhanced.php:254
3819
  msgid "Create new API user and container"
3820
  msgstr ""
3821
 
3822
+ #: src/addons/cloudfiles-enhanced.php:192
3823
  msgid "API Key: %s"
3824
  msgstr ""
3825
 
3826
+ #: src/addons/cloudfiles-enhanced.php:192
3827
  msgid "Password: %s"
3828
  msgstr ""
3829
 
3830
+ #: src/addons/cloudfiles-enhanced.php:192, src/addons/s3-enhanced.php:318
3831
  msgid "Username: %s"
3832
  msgstr ""
3833
 
3834
+ #: src/addons/cloudfiles-enhanced.php:151,
3835
+ #: src/addons/cloudfiles-enhanced.php:154,
3836
+ #: src/addons/cloudfiles-enhanced.php:158,
3837
+ #: src/addons/cloudfiles-enhanced.php:170,
3838
+ #: src/addons/cloudfiles-enhanced.php:177,
3839
+ #: src/addons/cloudfiles-enhanced.php:181
3840
  msgid "Cloud Files operation failed (%s)"
3841
  msgstr ""
3842
 
3843
+ #: src/addons/cloudfiles-enhanced.php:149
3844
  msgid "Conflict: that user or email address already exists"
3845
  msgstr ""
3846
 
3876
  msgid "Rackspace Cloud Files, enhanced"
3877
  msgstr ""
3878
 
3879
+ #: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
3880
+ #: src/methods/cloudfiles.php:493
3881
  msgid "Cloud Files Container"
3882
  msgstr ""
3883
 
3884
+ #: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:488
3885
  msgid "Cloud Files API Key"
3886
  msgstr ""
3887
 
3888
+ #: src/methods/cloudfiles-new.php:137
3889
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3890
  msgstr ""
3891
 
3892
+ #: src/methods/cloudfiles-new.php:134
3893
  msgid "Cloud Files Username"
3894
  msgstr ""
3895
 
3896
+ #: src/addons/cloudfiles-enhanced.php:47, src/methods/cloudfiles-new.php:166
3897
  msgid "London (LON)"
3898
  msgstr ""
3899
 
3900
+ #: src/addons/cloudfiles-enhanced.php:46, src/methods/cloudfiles-new.php:165
3901
  msgid "Hong Kong (HKG)"
3902
  msgstr ""
3903
 
3904
+ #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:164
3905
  msgid "Northern Virginia (IAD)"
3906
  msgstr ""
3907
 
3908
+ #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:163
3909
  msgid "Chicago (ORD)"
3910
  msgstr ""
3911
 
3912
+ #: src/addons/cloudfiles-enhanced.php:43, src/methods/cloudfiles-new.php:162
3913
  msgid "Sydney (SYD)"
3914
  msgstr ""
3915
 
3916
+ #: src/addons/cloudfiles-enhanced.php:42, src/methods/cloudfiles-new.php:161
3917
  msgid "Dallas (DFW) (default)"
3918
  msgstr ""
3919
 
3920
+ #: src/addons/cloudfiles-enhanced.php:282, src/methods/cloudfiles-new.php:124
3921
  msgid "Cloud Files Storage Region"
3922
  msgstr ""
3923
 
3924
+ #: src/methods/cloudfiles-new.php:117
3925
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3926
  msgstr ""
3927
 
3928
+ #: src/methods/cloudfiles-new.php:115
3929
  msgid "US or UK-based Rackspace Account"
3930
  msgstr ""
3931
 
3932
+ #: src/addons/cloudfiles-enhanced.php:266, src/methods/cloudfiles-new.php:115
3933
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3934
  msgstr ""
3935
 
3936
+ #: src/addons/cloudfiles-enhanced.php:147, src/addons/s3-enhanced.php:221,
3937
  #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:484,
3938
  #: src/methods/openstack-base.php:486, src/methods/openstack-base.php:507,
3939
  #: src/methods/openstack2.php:33
3940
  msgid "Authorisation failed (check your credentials)"
3941
  msgstr ""
3942
 
3943
+ #: src/methods/updraftvault.php:616, src/udaddons/options.php:270
3944
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3945
  msgstr ""
3946
 
3956
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3957
  msgstr ""
3958
 
3959
+ #: src/admin.php:673, src/admin.php:4190
3960
  msgid "Error data:"
3961
  msgstr ""
3962
 
3963
+ #: src/admin.php:3863
3964
  msgid "Backup does not exist in the backup history"
3965
  msgstr ""
3966
 
3967
+ #: src/admin.php:2743
3968
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3969
  msgstr ""
3970
 
4004
  msgid "Email reports"
4005
  msgstr ""
4006
 
4007
+ #: src/class-updraftplus.php:1793, src/class-updraftplus.php:1798
4008
  msgid "%s checksum: %s"
4009
  msgstr ""
4010
 
4011
+ #: src/class-updraftplus.php:1766, src/class-updraftplus.php:1768
4012
  msgid "files: %s"
4013
  msgstr ""
4014
 
4020
  msgid "Debugging information"
4021
  msgstr ""
4022
 
4023
+ #: src/addons/reporting.php:222, src/admin.php:3592
4024
  msgid "Uploaded to:"
4025
  msgstr ""
4026
 
4061
  msgid "%d errors, %d warnings"
4062
  msgstr ""
4063
 
4064
+ #: src/addons/onedrive.php:800, src/methods/dropbox.php:726
4065
  msgid "%s authentication"
4066
  msgstr ""
4067
 
4068
+ #: src/addons/onedrive.php:800, src/class-updraftplus.php:504,
4069
+ #: src/methods/dropbox.php:240, src/methods/dropbox.php:686,
4070
+ #: src/methods/dropbox.php:726, src/methods/dropbox.php:739,
4071
+ #: src/methods/dropbox.php:883
4072
  msgid "%s error: %s"
4073
  msgstr ""
4074
 
4075
+ #: src/addons/googlecloud.php:970, src/methods/dropbox.php:544
4076
  msgid "%s logo"
4077
  msgstr ""
4078
 
4079
+ #: src/methods/dropbox.php:286
4080
  msgid "%s did not return the expected response - check your log file for more details"
4081
  msgstr ""
4082
 
4084
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
4085
  msgstr ""
4086
 
4087
+ #: src/methods/email.php:88
4088
  msgid "For more options, use the \"%s\" add-on."
4089
  msgstr ""
4090
 
4091
+ #: src/methods/email.php:87
4092
  msgid "Your site's admin email address (%s) will be used."
4093
  msgstr ""
4094
 
4095
+ #: src/admin.php:710, src/methods/updraftvault.php:305,
4096
+ #: src/methods/updraftvault.php:348, src/udaddons/options.php:249
4097
  msgid "Connect"
4098
  msgstr ""
4099
 
4101
  msgid "For more reporting features, use the Reporting add-on."
4102
  msgstr ""
4103
 
4104
+ #: src/class-updraftplus.php:4129
4105
  msgid "(version: %s)"
4106
  msgstr ""
4107
 
4114
  msgid "When the Email storage method is enabled, also send the entire backup"
4115
  msgstr ""
4116
 
4117
+ #: src/addons/reporting.php:181, src/backup.php:1102
4118
  msgid "Latest status:"
4119
  msgstr ""
4120
 
4121
+ #: src/backup.php:1101
4122
  msgid "Backup contains:"
4123
  msgstr ""
4124
 
4125
+ #: src/backup.php:1058
4126
  msgid "Backed up: %s"
4127
  msgstr ""
4128
 
4129
+ #: src/addons/reporting.php:264, src/backup.php:1052
4130
  msgid "The log file has been attached to this email."
4131
  msgstr ""
4132
 
4133
+ #: src/backup.php:1016
4134
  msgid "Unknown/unexpected error - please raise a support request"
4135
  msgstr ""
4136
 
4137
+ #: src/backup.php:1013
4138
  msgid "Database only (files were not part of this particular schedule)"
4139
  msgstr ""
4140
 
4141
+ #: src/backup.php:1013
4142
  msgid "Database (files backup has not completed)"
4143
  msgstr ""
4144
 
4145
+ #: src/backup.php:1010
4146
  msgid "Files only (database was not part of this particular schedule)"
4147
  msgstr ""
4148
 
4149
+ #: src/backup.php:1010
4150
  msgid "Files (database backup has not completed)"
4151
  msgstr ""
4152
 
4153
+ #: src/admin.php:305, src/backup.php:1008
4154
  msgid "Files and database"
4155
  msgstr ""
4156
 
4157
+ #: src/options.php:185
4158
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4159
  msgstr ""
4160
 
4161
+ #: src/options.php:185
4162
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4163
  msgstr ""
4164
 
4165
+ #: src/options.php:185
4166
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4167
  msgstr ""
4168
 
4169
+ #: src/options.php:185
4170
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4171
  msgstr ""
4172
 
4173
+ #: src/options.php:185
4174
  msgid "UpdraftPlus warning:"
4175
  msgstr ""
4176
 
4214
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4215
  msgstr ""
4216
 
4217
+ #: src/methods/updraftvault.php:695, src/methods/updraftvault.php:710,
4218
  #: src/udaddons/updraftplus-addons.php:933
4219
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4220
  msgstr ""
4221
 
4222
+ #: src/methods/updraftvault.php:707, src/udaddons/updraftplus-addons.php:929
4223
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4224
  msgstr ""
4225
 
4226
+ #: src/methods/updraftvault.php:668, src/udaddons/updraftplus-addons.php:892
4227
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4228
  msgstr ""
4229
 
4235
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4236
  msgstr ""
4237
 
4238
+ #: src/methods/email.php:88,
4239
  #: src/templates/wp-admin/settings/form-contents.php:251,
4240
  #: src/templates/wp-admin/settings/tab-addons.php:203,
4241
  #: src/templates/wp-admin/settings/tab-addons.php:204
4242
  msgid "Reporting"
4243
  msgstr ""
4244
 
4245
+ #: src/admin.php:4695
4246
  msgid "Options (raw)"
4247
  msgstr ""
4248
 
4262
  msgid "See also the \"More Files\" add-on from our shop."
4263
  msgstr ""
4264
 
4265
+ #: src/backup.php:3360, src/class-updraftplus.php:835
4266
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4267
  msgstr ""
4268
 
4269
+ #: src/class-updraftplus.php:819
4270
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4271
  msgstr ""
4272
 
4394
  msgid "Your web-server does not have the %s module installed."
4395
  msgstr ""
4396
 
4397
+ #: src/addons/googlecloud.php:1057, src/methods/googledrive.php:1236
4398
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4399
  msgstr ""
4400
 
4418
  msgid "Site home:"
4419
  msgstr ""
4420
 
4421
+ #: src/addons/morestorage.php:112
4422
  msgid "Remote Storage Options"
4423
  msgstr ""
4424
 
4430
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4431
  msgstr ""
4432
 
4433
+ #: src/addons/azure.php:418, src/methods/stream-base.php:141,
4434
  #: src/methods/stream-base.php:146
4435
  msgid "Upload failed"
4436
  msgstr ""
4439
  msgid "You can send a backup to more than one destination with an add-on."
4440
  msgstr ""
4441
 
4442
+ #: src/admin.php:2966
4443
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4444
  msgstr ""
4445
 
4446
+ #: src/admin.php:2865
4447
  msgid "(%s%%, file %s of %s)"
4448
  msgstr ""
4449
 
4452
  msgid "Read more about how this works..."
4453
  msgstr ""
4454
 
4455
+ #: src/addons/sftp.php:575
4456
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4457
  msgstr ""
4458
 
4459
+ #: src/addons/sftp.php:573
4460
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4461
  msgstr ""
4462
 
4463
+ #: src/addons/sftp.php:475
4464
  msgid "Use SCP instead of SFTP"
4465
  msgstr ""
4466
 
4484
  msgid "%s settings test result:"
4485
  msgstr ""
4486
 
4487
+ #: src/admin.php:3767, src/admin.php:3769
4488
  msgid "(Not finished)"
4489
  msgstr ""
4490
 
4491
+ #: src/admin.php:3769
4492
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4493
  msgstr ""
4494
 
4500
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4501
  msgstr ""
4502
 
4503
+ #: src/admin.php:2961
4504
  msgid "Job ID: %s"
4505
  msgstr ""
4506
 
4507
+ #: src/admin.php:2946
4508
  msgid "last activity: %ss ago"
4509
  msgstr ""
4510
 
4511
+ #: src/admin.php:2945
4512
  msgid "next resumption: %d (after %ss)"
4513
  msgstr ""
4514
 
4515
+ #: src/admin.php:2928, src/central/bootstrap.php:428,
4516
+ #: src/central/bootstrap.php:435, src/methods/updraftvault.php:396,
4517
+ #: src/methods/updraftvault.php:430, src/methods/updraftvault.php:515
4518
  msgid "Unknown"
4519
  msgstr ""
4520
 
4521
+ #: src/admin.php:2879
4522
  msgid "Backup finished"
4523
  msgstr ""
4524
 
4525
+ #: src/admin.php:2874
4526
  msgid "Waiting until scheduled time to retry because of errors"
4527
  msgstr ""
4528
 
4529
+ #: src/admin.php:2870
4530
  msgid "Pruning old backup sets"
4531
  msgstr ""
4532
 
4533
+ #: src/admin.php:2858
4534
  msgid "Uploading files to remote storage"
4535
  msgstr ""
4536
 
4537
+ #: src/admin.php:2926
4538
  msgid "Encrypted database"
4539
  msgstr ""
4540
 
4541
+ #: src/admin.php:2918
4542
  msgid "Encrypting database"
4543
  msgstr ""
4544
 
4545
+ #: src/admin.php:2892
4546
  msgid "Created database backup"
4547
  msgstr ""
4548
 
4549
+ #: src/admin.php:2905
4550
  msgid "table: %s"
4551
  msgstr ""
4552
 
4553
+ #: src/admin.php:2903
4554
  msgid "Creating database backup"
4555
  msgstr ""
4556
 
4557
+ #: src/admin.php:2853
4558
  msgid "Created file backup zips"
4559
  msgstr ""
4560
 
4561
+ #: src/admin.php:2840
4562
  msgid "Creating file backup zips"
4563
  msgstr ""
4564
 
4565
+ #: src/admin.php:2835
4566
  msgid "Backup begun"
4567
  msgstr ""
4568
 
4569
+ #: src/admin.php:2668
4570
  msgid "Backups in progress:"
4571
  msgstr ""
4572
 
4573
+ #: src/admin.php:965
4574
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
4575
  msgstr ""
4576
 
4586
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4587
  msgstr ""
4588
 
4589
+ #: src/class-updraftplus.php:2886
4590
  msgid "The backup has not finished; a resumption is scheduled"
4591
  msgstr ""
4592
 
4593
+ #: src/class-updraftplus.php:2070
4594
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4595
  msgstr ""
4596
 
4597
+ #: src/addons/onedrive.php:944,
4598
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4599
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4600
  msgstr ""
4601
 
4602
+ #: src/admin.php:2469
4603
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4604
  msgstr ""
4605
 
4679
  msgid "Support"
4680
  msgstr ""
4681
 
4682
+ #: src/class-updraftplus.php:4434
4683
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4684
  msgstr ""
4685
 
4686
+ #: src/class-updraftplus.php:4426
4687
  msgid "This database backup is missing core WordPress tables: %s"
4688
  msgstr ""
4689
 
4690
+ #: src/class-updraftplus.php:4187
4691
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4692
  msgstr ""
4693
 
4694
+ #: src/class-updraftplus.php:4186, src/class-updraftplus.php:4193
4695
  msgid "%s version: %s"
4696
  msgstr ""
4697
 
4698
+ #: src/class-updraftplus.php:4065
4699
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4700
  msgstr ""
4701
 
4702
+ #: src/addons/autobackup.php:1053, src/admin.php:800,
4703
  #: src/includes/updraftplus-notices.php:171
4704
  msgid "Be safe with an automatic backup"
4705
  msgstr ""
4706
 
4707
+ #: src/admin.php:2422
4708
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4709
  msgstr ""
4710
 
4752
  msgid "Delete from your web server"
4753
  msgstr ""
4754
 
4755
+ #: src/admin.php:3739
4756
  msgid "You appear to be missing one or more archives from this multi-archive set."
4757
  msgstr ""
4758
 
4759
+ #: src/admin.php:3736
4760
  msgid "(%d archive(s) in set)."
4761
  msgstr ""
4762
 
4776
  msgid "Error: the server sent an empty response."
4777
  msgstr ""
4778
 
4779
+ #: src/admin.php:2157
4780
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4781
  msgstr ""
4782
 
4812
  msgid "No such backup set exists"
4813
  msgstr ""
4814
 
4815
+ #: src/admin.php:1355
4816
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4817
  msgstr ""
4818
 
4820
  msgid "Moving unpacked backup into place..."
4821
  msgstr ""
4822
 
4823
+ #: src/backup.php:3061, src/backup.php:3316
4824
  msgid "Failed to open the zip file (%s) - %s"
4825
  msgstr ""
4826
 
4828
  msgid "WordPress root directory server path: %s"
4829
  msgstr ""
4830
 
4831
+ #: src/methods/dreamobjects.php:86, src/methods/s3generic.php:102
4832
  msgid "%s end-point"
4833
  msgstr ""
4834
 
4835
+ #: src/methods/s3.php:822
4836
  msgid "... and many more!"
4837
  msgstr ""
4838
 
4839
+ #: src/methods/s3generic.php:59, src/methods/s3generic.php:70,
4840
+ #: src/methods/s3generic.php:81
4841
  msgid "S3 (Compatible)"
4842
  msgstr ""
4843
 
4844
+ #: src/admin.php:1265
4845
  msgid "File is not locally present - needs retrieving from remote storage"
4846
  msgstr ""
4847
 
4848
+ #: src/admin.php:4042
4849
  msgid "Looking for %s archive: file name: %s"
4850
  msgstr ""
4851
 
4852
+ #: src/admin.php:4003
4853
  msgid "Final checks"
4854
  msgstr ""
4855
 
4861
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4862
  msgstr ""
4863
 
4864
+ #: src/admin.php:3373
4865
  msgid "Your wp-content directory server path: %s"
4866
  msgstr ""
4867
 
4877
  msgid "Processing files - please wait..."
4878
  msgstr ""
4879
 
4880
+ #: src/admin.php:4192,
4881
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4882
  msgid "Please consult this FAQ for help on what to do about it."
4883
  msgstr ""
4886
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4887
  msgstr ""
4888
 
4889
+ #: src/class-updraftplus.php:4073
4890
  msgid "Failed to open database file."
4891
  msgstr ""
4892
 
4893
+ #: src/admin.php:4660
4894
  msgid "Known backups (raw)"
4895
  msgstr ""
4896
 
4902
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4903
  msgstr ""
4904
 
4905
+ #: src/admin.php:4062
4906
  msgid "file is size:"
4907
  msgstr ""
4908
 
4909
+ #: src/addons/googlecloud.php:1020, src/addons/migrator.php:457,
4910
+ #: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:965,
4911
+ #: src/admin.php:2427, src/backup.php:3367, src/class-updraftplus.php:4307,
4912
+ #: src/class-updraftplus.php:4307, src/updraftplus.php:156
4913
  msgid "Go here for more information."
4914
  msgstr ""
4915
 
4917
  msgid "Some files are still downloading or being processed - please wait."
4918
  msgstr ""
4919
 
4920
+ #: src/class-updraftplus.php:4156, src/class-updraftplus.php:4177
4921
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4922
  msgstr ""
4923
 
4929
  msgid "Enter in format HH:MM (e.g. 14:22)."
4930
  msgstr ""
4931
 
4932
+ #: src/methods/ftp.php:148
4933
  msgid "%s upload failed"
4934
  msgstr ""
4935
 
4936
+ #: src/methods/ftp.php:121, src/methods/ftp.php:172, src/methods/ftp.php:276
4937
  msgid "%s login failure"
4938
  msgstr ""
4939
 
4940
+ #: src/methods/dropbox.php:481
4941
  msgid "You do not appear to be authenticated with %s"
4942
  msgstr ""
4943
 
4944
+ #: src/methods/dropbox.php:448
4945
  msgid "Failed to access %s when deleting (see log file for more)"
4946
  msgstr ""
4947
 
4948
+ #: src/methods/dropbox.php:440
4949
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4950
  msgstr ""
4951
 
4952
+ #: src/methods/dropbox.php:195
4953
  msgid "Dropbox error: %s (see log file for more)"
4954
  msgstr ""
4955
 
4961
  msgid "Error - no such file exists at %s"
4962
  msgstr ""
4963
 
4964
+ #: src/addons/azure.php:266, src/methods/addon-base-v2.php:219,
4965
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
4966
+ #: src/methods/googledrive.php:1081, src/methods/openstack-base.php:455,
4967
+ #: src/methods/stream-base.php:295, src/methods/stream-base.php:302,
4968
+ #: src/methods/stream-base.php:334
4969
  msgid "%s Error"
4970
  msgstr ""
4971
 
4973
  msgid "%s error - failed to upload file"
4974
  msgstr ""
4975
 
4976
+ #: src/class-updraftplus.php:1209, src/methods/cloudfiles.php:211
4977
  msgid "%s error - failed to re-assemble chunks"
4978
  msgstr ""
4979
 
4987
  msgid "%s authentication failed"
4988
  msgstr ""
4989
 
4990
+ #: src/addons/googlecloud.php:436, src/addons/migrator.php:555,
4991
+ #: src/admin.php:2128, src/admin.php:2149, src/admin.php:2157,
4992
+ #: src/class-updraftplus.php:971, src/class-updraftplus.php:977,
4993
+ #: src/class-updraftplus.php:4046, src/class-updraftplus.php:4048,
4994
+ #: src/class-updraftplus.php:4210, src/class-updraftplus.php:4217,
4995
+ #: src/class-updraftplus.php:4286, src/methods/googledrive.php:381,
4996
  #: src/methods/s3.php:320
4997
  msgid "Error: %s"
4998
  msgstr ""
4999
 
5000
+ #: src/admin.php:3298
5001
  msgid "Backup directory specified exists, but is <b>not</b> writable."
5002
  msgstr ""
5003
 
5004
+ #: src/admin.php:3296
5005
  msgid "Backup directory specified does <b>not</b> exist."
5006
  msgstr ""
5007
 
5008
+ #: src/admin.php:2973, src/admin.php:3247
5009
  msgid "Warning: %s"
5010
  msgstr ""
5011
 
5013
  msgid "Last backup job run:"
5014
  msgstr ""
5015
 
5016
+ #: src/backup.php:3087
5017
  msgid "A very large file was encountered: %s (size: %s Mb)"
5018
  msgstr ""
5019
 
5020
+ #: src/backup.php:2387
5021
  msgid "%s: unreadable file - could not be backed up"
5022
  msgstr ""
5023
 
5024
+ #: src/backup.php:1704
5025
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
5026
  msgstr ""
5027
 
5028
+ #: src/backup.php:1825
5029
  msgid "An error occurred whilst closing the final database file"
5030
  msgstr ""
5031
 
5032
+ #: src/backup.php:1043
5033
  msgid "Warnings encountered:"
5034
  msgstr ""
5035
 
5036
+ #: src/class-updraftplus.php:2874
5037
  msgid "The backup apparently succeeded (with warnings) and is now complete"
5038
  msgstr ""
5039
 
5040
+ #: src/class-updraftplus.php:848
5041
  msgid "Your free disk space is very low - only %s Mb remain"
5042
  msgstr ""
5043
 
5044
+ #: src/addons/migrator.php:563
5045
  msgid "New site:"
5046
  msgstr ""
5047
 
5048
+ #: src/addons/migrator.php:538
5049
  msgid "Migrated site (from UpdraftPlus)"
5050
  msgstr ""
5051
 
5052
+ #: src/addons/migrator.php:478
5053
  msgid "Enter details for where this new site is to live within your multisite install:"
5054
  msgstr ""
5055
 
5056
+ #: src/addons/migrator.php:477
5057
  msgid "Information needed to continue:"
5058
  msgstr ""
5059
 
5060
+ #: src/addons/migrator.php:421
5061
  msgid "Network activating theme:"
5062
  msgstr ""
5063
 
5064
+ #: src/addons/migrator.php:411
5065
  msgid "Processed plugin:"
5066
  msgstr ""
5067
 
5073
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
5074
  msgstr ""
5075
 
5076
+ #: src/methods/s3.php:831
5077
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5078
  msgstr ""
5079
 
5080
+ #: src/methods/s3.php:1131
5081
  msgid "Please check your access credentials."
5082
  msgstr ""
5083
 
5084
+ #: src/addons/s3-enhanced.php:196, src/methods/s3.php:1109
5085
  msgid "The error reported by %s was:"
5086
  msgstr ""
5087
 
5089
  msgid "Please supply the requested information, and then continue."
5090
  msgstr ""
5091
 
5092
+ #: src/class-updraftplus.php:4228, src/restorer.php:1746
5093
  msgid "Site information:"
5094
  msgstr ""
5095
 
5097
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
5098
  msgstr ""
5099
 
5100
+ #: src/admin.php:2422, src/class-updraftplus.php:4221, src/restorer.php:2117
5101
  msgid "Warning:"
5102
  msgstr ""
5103
 
5104
+ #: src/class-updraftplus.php:4210, src/class-updraftplus.php:4213,
5105
  #: src/restorer.php:184
5106
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5107
  msgstr ""
5108
 
5109
+ #: src/admin.php:4030
5110
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
5111
  msgstr ""
5112
 
5113
+ #: src/admin.php:3445, src/methods/updraftvault.php:292
5114
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5115
  msgstr ""
5116
 
5149
  msgid "Do you want to migrate or clone/duplicate a site?"
5150
  msgstr ""
5151
 
5152
+ #: src/addons/migrator.php:181
5153
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
5154
  msgstr ""
5155
 
5165
  msgid "Also delete from remote storage"
5166
  msgstr ""
5167
 
5168
+ #: src/admin.php:2695
5169
  msgid "Latest UpdraftPlus.com news:"
5170
  msgstr ""
5171
 
5182
  msgid "News"
5183
  msgstr ""
5184
 
5185
+ #: src/admin.php:1534, src/includes/class-wpadmin-commands.php:472
5186
  msgid "Backup set not found"
5187
  msgstr ""
5188
 
5212
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5213
  msgstr ""
5214
 
5215
+ #: src/admin.php:981
5216
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
5217
  msgstr ""
5218
 
5219
+ #: src/admin.php:981
5220
  msgid "Notice"
5221
  msgstr ""
5222
 
5223
+ #: src/backup.php:1025
5224
  msgid "Errors encountered:"
5225
  msgstr ""
5226
 
5236
  msgid "Store at"
5237
  msgstr ""
5238
 
5239
+ #: src/addons/migrator.php:1523
5240
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5241
  msgstr ""
5242
 
5243
+ #: src/addons/migrator.php:1397
5244
  msgid "rows: %d"
5245
  msgstr ""
5246
 
5247
+ #: src/addons/migrator.php:1271
5248
  msgid "Time taken (seconds):"
5249
  msgstr ""
5250
 
5251
+ #: src/addons/migrator.php:1270, src/admin.php:671
5252
  msgid "Errors:"
5253
  msgstr ""
5254
 
5255
+ #: src/addons/migrator.php:1269
5256
  msgid "SQL update commands run:"
5257
  msgstr ""
5258
 
5259
+ #: src/addons/migrator.php:1268
5260
  msgid "Changes made:"
5261
  msgstr ""
5262
 
5263
+ #: src/addons/migrator.php:1267
5264
  msgid "Rows examined:"
5265
  msgstr ""
5266
 
5267
+ #: src/addons/migrator.php:1266
5268
  msgid "Tables examined:"
5269
  msgstr ""
5270
 
5271
+ #: src/addons/migrator.php:1155
5272
  msgid "Could not get list of tables"
5273
  msgstr ""
5274
 
5275
+ #: src/addons/migrator.php:1100
5276
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5277
  msgstr ""
5278
 
5279
+ #: src/addons/migrator.php:1089
5280
  msgid "Nothing to do: the site URL is already: %s"
5281
  msgstr ""
5282
 
5283
+ #: src/addons/migrator.php:1053, src/addons/migrator.php:1057,
5284
+ #: src/addons/migrator.php:1061, src/addons/migrator.php:1066,
5285
+ #: src/addons/migrator.php:1070, src/addons/migrator.php:1075
5286
  msgid "Error: unexpected empty parameter (%s, %s)"
5287
  msgstr ""
5288
 
5289
+ #: src/addons/migrator.php:1013
5290
  msgid "Database: search and replace site URL"
5291
  msgstr ""
5292
 
5293
+ #: src/addons/migrator.php:873, src/addons/migrator.php:1252
5294
  msgid "Failed: we did not understand the result returned by the %s operation."
5295
  msgstr ""
5296
 
5297
+ #: src/addons/migrator.php:871, src/addons/migrator.php:1250
5298
  msgid "Failed: the %s operation was not able to start."
5299
  msgstr ""
5300
 
5301
+ #: src/addons/migrator.php:530
5302
  msgid "Search and replace site location in the database (migrate)"
5303
  msgstr ""
5304
 
5305
+ #: src/addons/migrator.php:530
5306
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5307
  msgstr ""
5308
 
5309
+ #: src/addons/multisite.php:648
5310
  msgid "Blog uploads"
5311
  msgstr ""
5312
 
5313
+ #: src/addons/migrator.php:463, src/addons/multisite.php:641
5314
  msgid "Must-use plugins"
5315
  msgstr ""
5316
 
5317
+ #: src/addons/multisite.php:173
5318
  msgid "Multisite Install"
5319
  msgstr ""
5320
 
5322
  msgid "starting from next time it is"
5323
  msgstr ""
5324
 
5325
+ #: src/addons/sftp.php:518
5326
  msgid "Failure: Port must be an integer."
5327
  msgstr ""
5328
 
5329
+ #: src/methods/ftp.php:411, src/methods/openstack2.php:185
5330
  msgid "password"
5331
  msgstr ""
5332
 
5333
+ #: src/addons/sftp.php:509, src/methods/openstack2.php:180
5334
  msgid "username"
5335
  msgstr ""
5336
 
5337
+ #: src/addons/sftp.php:505
5338
  msgid "host name"
5339
  msgstr ""
5340
 
5341
+ #: src/addons/sftp.php:468
5342
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5343
  msgstr ""
5344
 
5345
+ #: src/addons/sftp.php:466
5346
  msgid "Directory path"
5347
  msgstr ""
5348
 
5349
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5350
+ #: src/addons/sftp.php:441, src/addons/webdav.php:181,
5351
+ #: src/methods/openstack2.php:164, src/methods/updraftvault.php:347,
5352
  #: src/udaddons/options.php:135
5353
  msgid "Password"
5354
  msgstr ""
5355
 
5356
+ #: src/addons/sftp.php:427, src/addons/webdav.php:195
5357
  msgid "Port"
5358
  msgstr ""
5359
 
5360
+ #: src/addons/moredatabase.php:244, src/addons/sftp.php:420,
5361
+ #: src/addons/webdav.php:187
5362
  msgid "Host"
5363
  msgstr ""
5364
 
5366
  msgid "%s Error: Failed to download"
5367
  msgstr ""
5368
 
5369
+ #: src/addons/sftp.php:550
5370
  msgid "Check your file permissions: Could not successfully create and enter:"
5371
  msgstr ""
5372
 
5410
  msgid "WordPress Core"
5411
  msgstr ""
5412
 
5413
+ #: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:364
5414
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5415
  msgstr ""
5416
 
5417
+ #: src/addons/googlecloud.php:768, src/addons/googlecloud.php:802,
5418
+ #: src/addons/googlecloud.php:808, src/addons/sftp.php:536, src/admin.php:3029,
5419
+ #: src/admin.php:3064, src/admin.php:3073, src/methods/addon-base-v2.php:299,
5420
+ #: src/methods/stream-base.php:350
5421
  msgid "Failed"
5422
  msgstr ""
5423
 
5424
+ #: src/addons/webdav.php:157
5425
  msgid "WebDAV URL"
5426
  msgstr ""
5427
 
5428
+ #: src/methods/stream-base.php:334
5429
  msgid "Local write failed: Failed to download"
5430
  msgstr ""
5431
 
5432
+ #: src/methods/stream-base.php:302
5433
  msgid "Error opening remote file: Failed to download"
5434
  msgstr ""
5435
 
5440
  #: src/addons/googlecloud.php:322, src/addons/sftp.php:45,
5441
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
5442
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5443
+ #: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
5444
  #: src/methods/googledrive.php:182, src/methods/googledrive.php:184,
5445
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:161,
5446
  #: src/methods/stream-base.php:167, src/methods/stream-base.php:201,
5447
+ #: src/methods/stream-base.php:276
5448
  msgid "No %s settings were found"
5449
  msgstr ""
5450
 
5451
+ #: src/methods/ftp.php:433
5452
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5453
  msgstr ""
5454
 
5455
+ #: src/methods/ftp.php:430
5456
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5457
  msgstr ""
5458
 
5459
+ #: src/methods/ftp.php:421
5460
  msgid "Failure: we did not successfully log in with those credentials."
5461
  msgstr ""
5462
 
5463
+ #: src/methods/ftp.php:403
5464
  msgid "Failure: No server details were given."
5465
  msgstr ""
5466
 
5467
+ #: src/methods/ftp.php:373
5468
  msgid "Needs to already exist"
5469
  msgstr ""
5470
 
5471
+ #: src/methods/ftp.php:336
5472
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5473
  msgstr ""
5474
 
5475
+ #: src/addons/onedrive.php:838, src/methods/dropbox.php:757
5476
  msgid "Your %s account name: %s"
5477
  msgstr ""
5478
 
5479
+ #: src/methods/dropbox.php:747, src/methods/dropbox.php:769
5480
  msgid "though part of the returned information was not as expected - your mileage may vary"
5481
  msgstr ""
5482
 
5483
+ #: src/methods/dropbox.php:742, src/methods/dropbox.php:744
5484
  msgid "you have authenticated your %s account"
5485
  msgstr ""
5486
 
5487
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5488
  msgid "there's an add-on for that."
5489
  msgstr ""
5490
 
5491
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5492
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5493
  msgstr ""
5494
 
5495
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5496
  msgid "Backups are saved in"
5497
  msgstr ""
5498
 
5499
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5500
  msgid "Need to use sub-folders?"
5501
  msgstr ""
5502
 
5503
+ #: src/methods/dropbox.php:284, src/methods/dropbox.php:305,
5504
+ #: src/methods/dropbox.php:321
5505
  msgid "error: failed to upload file to %s (see log file for more)"
5506
  msgstr ""
5507
 
5508
+ #: src/methods/dropbox.php:173, src/methods/dropbox.php:190
5509
  msgid "You do not appear to be authenticated with Dropbox"
5510
  msgstr ""
5511
 
5512
+ #: src/methods/s3.php:1126
5513
  msgid "The communication with %s was not encrypted."
5514
  msgstr ""
5515
 
5516
+ #: src/methods/s3.php:1124
5517
  msgid "The communication with %s was encrypted."
5518
  msgstr ""
5519
 
5520
+ #: src/addons/googlecloud.php:831, src/methods/s3.php:1121
5521
  msgid "We accessed the bucket, and were able to create files within it."
5522
  msgstr ""
5523
 
5524
+ #: src/addons/googlecloud.php:825, src/addons/googlecloud.php:839,
5525
+ #: src/methods/s3.php:1119, src/methods/s3.php:1131
5526
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5527
  msgstr ""
5528
 
5529
+ #: src/addons/googlecloud.php:825, src/addons/googlecloud.php:839,
5530
+ #: src/methods/s3.php:1119, src/methods/s3.php:1131
5531
  msgid "Failure"
5532
  msgstr ""
5533
 
5534
+ #: src/methods/s3.php:1107
5535
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5536
  msgstr ""
5537
 
5538
+ #: src/addons/s3-enhanced.php:169, src/methods/openstack2.php:150,
5539
+ #: src/methods/s3.php:1101
5540
  msgid "Region"
5541
  msgstr ""
5542
 
5543
+ #: src/addons/googlecloud.php:118, src/addons/googlecloud.php:785,
5544
+ #: src/methods/s3.php:1083
5545
  msgid "Failure: No bucket details were given."
5546
  msgstr ""
5547
 
5548
+ #: src/methods/s3.php:1061
5549
  msgid "API secret"
5550
  msgstr ""
5551
 
5552
+ #: src/methods/s3.php:909
5553
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5554
  msgstr ""
5555
 
5556
+ #: src/methods/s3.php:908
5557
  msgid "%s location"
5558
  msgstr ""
5559
 
5560
+ #: src/methods/s3.php:904
5561
  msgid "%s secret key"
5562
  msgstr ""
5563
 
5564
+ #: src/methods/s3.php:900
5565
  msgid "%s access key"
5566
  msgstr ""
5567
 
5568
+ #: src/methods/s3.php:843
5569
  msgid "If you see errors about SSL certificates, then please go here for help."
5570
  msgstr ""
5571
 
5572
+ #: src/methods/s3.php:841
5573
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5574
  msgstr ""
5575
 
5602
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5603
  msgstr ""
5604
 
5605
+ #: src/methods/email.php:83
5606
  msgid "Note:"
5607
  msgstr ""
5608
 
5610
  msgid "WordPress Backup"
5611
  msgstr ""
5612
 
5613
+ #: src/methods/cloudfiles.php:571, src/methods/openstack-base.php:530
5614
  msgid "We accessed the container, and were able to create files within it."
5615
  msgstr ""
5616
 
5617
+ #: src/methods/cloudfiles.php:567
5618
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5619
  msgstr ""
5620
 
5621
+ #: src/methods/cloudfiles.php:540, src/methods/openstack-base.php:472
5622
  msgid "Failure: No container details were given."
5623
  msgstr ""
5624
 
5625
+ #: src/addons/moredatabase.php:245, src/addons/sftp.php:434,
5626
+ #: src/addons/webdav.php:175, src/methods/cloudfiles-new.php:184,
5627
+ #: src/methods/cloudfiles.php:520, src/methods/openstack2.php:158
5628
  msgid "Username"
5629
  msgstr ""
5630
 
5631
+ #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles.php:515,
5632
+ #: src/methods/s3.php:1057
5633
  msgid "API key"
5634
  msgstr ""
5635
 
5636
+ #: src/addons/migrator.php:304, src/addons/migrator.php:2040,
5637
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5638
+ #: src/addons/moredatabase.php:86, src/addons/sftp.php:505,
5639
+ #: src/addons/sftp.php:509, src/addons/sftp.php:513, src/addons/webdav.php:241,
5640
+ #: src/admin.php:724, src/methods/addon-base-v2.php:291,
5641
+ #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles-new.php:184,
5642
+ #: src/methods/cloudfiles.php:515, src/methods/cloudfiles.php:520,
5643
+ #: src/methods/ftp.php:407, src/methods/ftp.php:411,
5644
+ #: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
5645
+ #: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
5646
+ #: src/methods/s3.php:1057, src/methods/s3.php:1061
5647
  msgid "Failure: No %s was given."
5648
  msgstr ""
5649
 
5650
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
5651
+ #: src/methods/openstack-base.php:571, src/methods/s3.php:835
5652
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5653
  msgstr ""
5654
 
5655
+ #: src/methods/cloudfiles.php:484
5656
  msgid "Cloud Files username"
5657
  msgstr ""
5658
 
5659
+ #: src/addons/cloudfiles-enhanced.php:38, src/methods/cloudfiles-new.php:119,
5660
+ #: src/methods/cloudfiles.php:467
5661
  msgid "UK"
5662
  msgstr ""
5663
 
5664
+ #: src/addons/cloudfiles-enhanced.php:37, src/methods/cloudfiles-new.php:118,
5665
+ #: src/methods/cloudfiles.php:466
5666
  msgid "US (default)"
5667
  msgstr ""
5668
 
5669
+ #: src/methods/cloudfiles.php:463
5670
  msgid "US or UK Cloud"
5671
  msgstr ""
5672
 
5673
+ #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446,
5674
+ #: src/methods/openstack2.php:120
5675
  msgid "Also, you should read this important FAQ."
5676
  msgstr ""
5677
 
5678
+ #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446
5679
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5680
  msgstr ""
5681
 
5682
+ #: src/admin.php:747, src/methods/backup-module.php:311
5683
  msgid "Test %s Settings"
5684
  msgstr ""
5685
 
5686
+ #: src/class-updraftplus.php:1249, src/class-updraftplus.php:1293,
5687
+ #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:295
5688
  msgid "Error opening local file: Failed to download"
5689
  msgstr ""
5690
 
5700
  msgstr ""
5701
 
5702
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
5703
+ #: src/class-updraftplus.php:1107, src/methods/cloudfiles.php:130,
5704
+ #: src/methods/googledrive.php:999, src/methods/googledrive.php:1004
5705
  msgid "%s Error: Failed to open local file"
5706
  msgstr ""
5707
 
5710
  msgid "Cloud Files error - failed to create and access the container"
5711
  msgstr ""
5712
 
5713
+ #: src/addons/cloudfiles-enhanced.php:107,
5714
+ #: src/addons/cloudfiles-enhanced.php:120,
5715
+ #: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:550,
5716
+ #: src/methods/cloudfiles.php:553, src/methods/cloudfiles.php:556
5717
  msgid "Cloud Files authentication failed"
5718
  msgstr ""
5719
 
5720
+ #: src/addons/googlecloud.php:1066, src/methods/googledrive.php:1253
5721
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5722
  msgstr ""
5723
 
5724
+ #: src/methods/googledrive.php:1231
5725
  msgid "Authenticate with Google"
5726
  msgstr ""
5727
 
5728
+ #: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1082,
5729
+ #: src/methods/googledrive.php:1195
5730
  msgid "Client Secret"
5731
  msgstr ""
5732
 
5733
+ #: src/addons/googlecloud.php:1008, src/methods/googledrive.php:1192
5734
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5735
  msgstr ""
5736
 
5737
+ #: src/addons/googlecloud.php:1005, src/addons/onedrive.php:1078,
5738
+ #: src/methods/googledrive.php:1191
5739
  msgid "Client ID"
5740
  msgstr ""
5741
 
5742
+ #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1168
5743
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5744
  msgstr ""
5745
 
5746
+ #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1168
5747
  msgid "Select 'Web Application' as the application type."
5748
  msgstr ""
5749
 
5750
+ #: src/addons/googlecloud.php:981, src/methods/googledrive.php:1166
5751
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5752
  msgstr ""
5753
 
 
 
 
 
 
 
 
5754
  #: src/addons/googlecloud.php:505, src/addons/googlecloud.php:506,
5755
+ #: src/addons/googlecloud.php:858, src/methods/googledrive.php:545,
5756
  #: src/methods/googledrive.php:546, src/methods/googledrive.php:556,
5757
  #: src/methods/googledrive.php:557
5758
  msgid "Account is not authorized."
5772
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5773
  msgstr ""
5774
 
5775
+ #: src/addons/googlecloud.php:710, src/addons/onedrive.php:876,
5776
  #: src/methods/googledrive.php:440
5777
  msgid "you have authenticated your %s account."
5778
  msgstr ""
5779
 
5780
+ #: src/addons/googlecloud.php:710, src/addons/googlecloud.php:831,
5781
+ #: src/addons/onedrive.php:876, src/addons/sftp.php:570,
5782
+ #: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:571,
5783
  #: src/methods/googledrive.php:440, src/methods/openstack-base.php:530,
5784
+ #: src/methods/s3.php:1121, src/methods/stream-base.php:361
5785
  msgid "Success"
5786
  msgstr ""
5787
 
5788
+ #: src/addons/onedrive.php:830, src/methods/dropbox.php:780,
5789
+ #: src/methods/dropbox.php:789, src/methods/googledrive.php:414
5790
  msgid "Your %s quota usage: %s %% used, %s available"
5791
  msgstr ""
5792
 
5817
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5818
  msgstr ""
5819
 
5820
+ #: src/addons/migrator.php:1935, src/admin.php:1293, src/admin.php:3032,
5821
+ #: src/admin.php:3066, src/admin.php:3070, src/admin.php:4060,
5822
  #: src/restorer.php:2358, src/restorer.php:2463
5823
  msgid "OK"
5824
  msgstr ""
5827
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5828
  msgstr ""
5829
 
5830
+ #: src/addons/migrator.php:1285, src/restorer.php:2254
5831
  msgid "the database query being run was:"
5832
  msgstr ""
5833
 
5835
  msgid "will restore as:"
5836
  msgstr ""
5837
 
5838
+ #: src/class-updraftplus.php:4199, src/restorer.php:1728,
5839
  #: src/restorer.php:1817, src/restorer.php:1843
5840
  msgid "Old table prefix:"
5841
  msgstr ""
5842
 
5843
  #: src/addons/reporting.php:70, src/addons/reporting.php:180,
5844
+ #: src/backup.php:1099, src/class-updraftplus.php:4129
5845
  msgid "Backup of:"
5846
  msgstr ""
5847
 
5913
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5914
  msgstr ""
5915
 
5916
+ #: src/admin.php:4068, src/admin.php:4069
5917
  msgid "Could not find one of the files for restoration"
5918
  msgstr ""
5919
 
5920
+ #: src/admin.php:4182
5921
  msgid "Error message"
5922
  msgstr ""
5923
 
5924
+ #: src/admin.php:4065
5925
  msgid "The backup records do not contain information about the proper size of this file."
5926
  msgstr ""
5927
 
5928
+ #: src/admin.php:4057
5929
  msgid "Archive is expected to be size:"
5930
  msgstr ""
5931
 
5932
+ #: src/admin.php:3955
5933
  msgid "If making a request for support, please include this information:"
5934
  msgstr ""
5935
 
5936
+ #: src/admin.php:3954
5937
  msgid "ABORT: Could not find the information on which entities to restore."
5938
  msgstr ""
5939
 
5940
+ #: src/admin.php:3909
5941
  msgid "UpdraftPlus Restoration: Progress"
5942
  msgstr ""
5943
 
5944
+ #: src/admin.php:3862
5945
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5946
  msgstr ""
5947
 
5948
+ #: src/admin.php:3797
5949
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5950
  msgstr ""
5951
 
5952
+ #: src/admin.php:3815
5953
  msgid "Delete this backup set"
5954
  msgstr ""
5955
 
5956
+ #: src/admin.php:3457
5957
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5958
  msgstr ""
5959
 
5960
+ #: src/admin.php:3454
5961
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5962
  msgstr ""
5963
 
5964
+ #: src/admin.php:3452
5965
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5966
  msgstr ""
5967
 
5968
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
5969
+ #: src/methods/openstack-base.php:571, src/methods/s3.php:835
5970
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5971
  msgstr ""
5972
 
6002
  msgid "Use the server's SSL certificates"
6003
  msgstr ""
6004
 
6005
+ #: src/admin.php:3300
6006
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
6007
  msgstr ""
6008
 
6009
+ #: src/admin.php:3300
6010
  msgid "click here"
6011
  msgstr ""
6012
 
6013
+ #: src/admin.php:3300
6014
  msgid "or, to reset this option"
6015
  msgstr ""
6016
 
6017
+ #: src/admin.php:3300
6018
  msgid "Follow this link to attempt to create the directory and set the permissions"
6019
  msgstr ""
6020
 
6021
+ #: src/admin.php:3292
6022
  msgid "Backup directory specified is writable, which is good."
6023
  msgstr ""
6024
 
6058
  msgid "Cancel"
6059
  msgstr ""
6060
 
6061
+ #: src/addons/reporting.php:244, src/admin.php:3604
6062
  msgid "None"
6063
  msgstr ""
6064
 
6083
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6084
  msgstr ""
6085
 
6086
+ #: src/addons/morefiles.php:443, src/admin.php:3382
6087
  msgid "Exclude these:"
6088
  msgstr ""
6089
 
6090
+ #: src/admin.php:3373
6091
  msgid "Any other directories found inside wp-content"
6092
  msgstr ""
6093
 
6103
  msgid "To fix the time at which a backup should take place,"
6104
  msgstr ""
6105
 
6106
+ #: src/admin.php:3286
6107
  msgid "Monthly"
6108
  msgstr ""
6109
 
6110
+ #: src/admin.php:3285
6111
  msgid "Fortnightly"
6112
  msgstr ""
6113
 
6114
+ #: src/admin.php:3284
6115
  msgid "Weekly"
6116
  msgstr ""
6117
 
6118
+ #: src/admin.php:3283
6119
  msgid "Daily"
6120
  msgstr ""
6121
 
6122
+ #: src/admin.php:706, src/admin.php:3261
6123
  msgid "Download log file"
6124
  msgstr ""
6125
 
6126
+ #: src/admin.php:3133
6127
  msgid "The folder exists, but your webserver does not have permission to write to it."
6128
  msgstr ""
6129
 
6130
+ #: src/admin.php:3128
6131
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
6132
  msgstr ""
6133
 
6134
+ #: src/admin.php:3114
6135
  msgid "The request to the filesystem to create the directory failed."
6136
  msgstr ""
6137
 
6138
+ #: src/addons/migrator.php:2413, src/admin.php:700, src/admin.php:3026,
6139
+ #: src/admin.php:3059, src/admin.php:3815,
6140
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6141
  msgid "Delete"
6142
  msgstr ""
6143
 
6144
+ #: src/admin.php:2964
6145
  msgid "show log"
6146
  msgstr ""
6147
 
6254
  msgid "Do read this helpful article of useful things to know before restoring."
6255
  msgstr ""
6256
 
6257
+ #: src/class-updraftplus.php:4159
6258
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
6259
  msgstr ""
6260
 
6298
  msgid "Download error: the server sent us a response which we did not understand."
6299
  msgstr ""
6300
 
6301
+ #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:110,
6302
+ #: src/addons/migrator.php:858, src/addons/migrator.php:1155,
6303
+ #: src/addons/migrator.php:1236, src/addons/migrator.php:1285,
6304
+ #: src/addons/migrator.php:1523, src/addons/migrator.php:1874,
6305
+ #: src/addons/migrator.php:1901, src/addons/migrator.php:1907,
6306
+ #: src/addons/migrator.php:1969, src/addons/migrator.php:2009,
6307
+ #: src/addons/migrator.php:2048, src/addons/migrator.php:2058,
6308
+ #: src/addons/migrator.php:2063, src/addons/s3-enhanced.php:144,
6309
  #: src/addons/s3-enhanced.php:149, src/addons/s3-enhanced.php:151,
6310
+ #: src/addons/sftp.php:834, src/addons/webdav.php:191, src/admin.php:87,
6311
+ #: src/admin.php:674, src/admin.php:4062, src/admin.php:4092,
6312
  #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6313
+ #: src/methods/updraftvault.php:513, src/restorer.php:1444
6314
  msgid "Error:"
6315
  msgstr ""
6316
 
6340
  #: src/methods/googledrive.php:467, src/methods/googledrive.php:496,
6341
  #: src/methods/googledrive.php:503, src/methods/googledrive.php:513,
6342
  #: src/methods/googledrive.php:519, src/methods/googledrive.php:521,
6343
+ #: src/methods/googledrive.php:1154, src/methods/googledrive.php:1161,
6344
+ #: src/methods/googledrive.php:1161, src/methods/googledrive.php:1191,
6345
+ #: src/methods/googledrive.php:1195, src/methods/googledrive.php:1206,
6346
+ #: src/methods/googledrive.php:1217, src/methods/googledrive.php:1237
6347
  msgid "Google Drive"
6348
  msgstr ""
6349
 
6359
  msgid "More tasks:"
6360
  msgstr ""
6361
 
6362
+ #: src/admin.php:2722
6363
  msgid "Download most recently modified log file"
6364
  msgstr ""
6365
 
6366
+ #: src/admin.php:2678, src/admin.php:2684, src/central/bootstrap.php:173
6367
  msgid "(Nothing yet logged)"
6368
  msgstr ""
6369
 
6370
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6371
+ #: src/admin.php:2677, src/admin.php:2682
6372
  msgid "Last log message"
6373
  msgstr ""
6374
 
6375
+ #: src/addons/migrator.php:242, src/admin.php:705, src/admin.php:3797,
6376
  #: src/templates/wp-admin/settings/tab-status.php:30
6377
  msgid "Restore"
6378
  msgstr ""
6382
  msgid "Backup Now"
6383
  msgstr ""
6384
 
6385
+ #: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
6386
+ #: src/addons/reporting.php:259, src/admin.php:309, src/admin.php:3579,
6387
+ #: src/admin.php:3659, src/admin.php:4146,
6388
  #: src/includes/class-wpadmin-commands.php:147,
6389
  #: src/includes/class-wpadmin-commands.php:487,
6390
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
6391
  msgid "Database"
6392
  msgstr ""
6393
 
6394
+ #: src/admin.php:305, src/admin.php:4667
6395
  msgid "Files"
6396
  msgstr ""
6397
 
6419
  msgid "JavaScript warning"
6420
  msgstr ""
6421
 
6422
+ #: src/admin.php:685, src/admin.php:2749
6423
  msgid "Delete Old Directories"
6424
  msgstr ""
6425
 
6426
+ #: src/admin.php:2469
6427
  msgid "Current limit is:"
6428
  msgstr ""
6429
 
6430
+ #: src/admin.php:2444
6431
  msgid "Your backup has been restored."
6432
  msgstr ""
6433
 
6443
  msgid "UpdraftPlus.Com"
6444
  msgstr ""
6445
 
6446
+ #: src/admin.php:4559
6447
  msgid "Your settings have been wiped."
6448
  msgstr ""
6449
 
6450
+ #: src/admin.php:2404
6451
  msgid "Backup directory successfully created."
6452
  msgstr ""
6453
 
6454
+ #: src/admin.php:2397
6455
  msgid "Backup directory could not be created"
6456
  msgstr ""
6457
 
6458
+ #: src/admin.php:2996
6459
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6460
  msgstr ""
6461
 
6462
+ #: src/admin.php:2994
6463
  msgid "Old directories successfully removed."
6464
  msgstr ""
6465
 
6466
+ #: src/admin.php:2991, src/admin.php:2991
6467
  msgid "Remove old directories"
6468
  msgstr ""
6469
 
6470
+ #: src/addons/migrator.php:307, src/addons/migrator.php:322,
6471
+ #: src/admin.php:2346, src/admin.php:2355, src/admin.php:2364,
6472
+ #: src/admin.php:2406, src/admin.php:2998
6473
  msgid "Return to UpdraftPlus Configuration"
6474
  msgstr ""
6475
 
6476
+ #: src/admin.php:678, src/admin.php:2346, src/admin.php:2355,
6477
+ #: src/admin.php:2364, src/admin.php:2406, src/admin.php:2998,
6478
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6479
  msgid "Actions"
6480
  msgstr ""
6481
 
6482
+ #: src/admin.php:2249
6483
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6484
  msgstr ""
6485
 
6486
+ #: src/admin.php:2149
6487
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6488
  msgstr ""
6489
 
6490
+ #: src/admin.php:2045
6491
  msgid "No local copy present."
6492
  msgstr ""
6493
 
6494
+ #: src/admin.php:2042
6495
  msgid "Download in progress"
6496
  msgstr ""
6497
 
6498
+ #: src/admin.php:677, src/admin.php:2031
6499
  msgid "File ready."
6500
  msgstr ""
6501
 
6502
+ #: src/admin.php:2012
6503
  msgid "Download failed"
6504
  msgstr ""
6505
 
6506
+ #: src/admin.php:675, src/admin.php:1302, src/admin.php:1776,
6507
+ #: src/class-updraftplus.php:1249, src/class-updraftplus.php:1293,
6508
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
6509
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6510
  #: src/methods/stream-base.php:217, src/restorer.php:2354,
6512
  msgid "Error"
6513
  msgstr ""
6514
 
6515
+ #: src/admin.php:1811
6516
  msgid "Could not find that job - perhaps it has already finished?"
6517
  msgstr ""
6518
 
6519
+ #: src/admin.php:1803
6520
  msgid "Job deleted"
6521
  msgstr ""
6522
 
6523
+ #: src/admin.php:1892
6524
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6525
  msgstr ""
6526
 
6528
  msgid "Nothing yet logged"
6529
  msgstr ""
6530
 
6531
+ #: src/admin.php:977
6532
  msgid "Please consult this FAQ if you have problems backing up."
6533
  msgstr ""
6534
 
6535
+ #: src/admin.php:977
6536
  msgid "Your website is hosted using the %s web server."
6537
  msgstr ""
6538
 
6539
+ #: src/admin.php:973
6540
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
6541
  msgstr ""
6542
 
6543
+ #: src/admin.php:969
6544
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
6545
  msgstr ""
6546
 
6547
+ #: src/addons/migrator.php:913, src/admin.php:961, src/admin.php:965,
6548
+ #: src/admin.php:969, src/admin.php:973, src/admin.php:977, src/admin.php:986,
6549
+ #: src/admin.php:3445, src/admin.php:3452, src/admin.php:3454,
6550
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
6551
+ #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
6552
+ #: src/methods/s3.php:831, src/methods/s3.php:835,
6553
+ #: src/methods/updraftvault.php:292,
6554
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6555
  #: src/udaddons/updraftplus-addons.php:253
6556
  msgid "Warning"
6557
  msgstr ""
6558
 
6559
+ #: src/admin.php:907
6560
  msgid "Add-Ons / Pro Support"
6561
  msgstr ""
6562
 
6563
+ #: src/admin.php:542, src/admin.php:905,
6564
  #: src/templates/wp-admin/settings/tab-bar.php:7
6565
  msgid "Settings"
6566
  msgstr ""
6569
  msgid "Could not create %s zip. Consult the log file for more information."
6570
  msgstr ""
6571
 
6572
+ #: src/backup.php:2267
6573
  msgid "Infinite recursion: consult your log for more information"
6574
  msgstr ""
6575
 
6581
  msgid "Like UpdraftPlus and can spare one minute?"
6582
  msgstr ""
6583
 
6584
+ #: src/addons/azure.php:266, src/class-updraftplus.php:3919,
6585
+ #: src/methods/googledrive.php:1081, src/methods/s3.php:320
6586
  msgid "File not found"
6587
  msgstr ""
6588
 
6589
+ #: src/class-updraftplus.php:3826
6590
  msgid "The decryption key used:"
6591
  msgstr ""
6592
 
6593
+ #: src/class-updraftplus.php:3826, src/class-updraftplus.php:4058,
6594
  #: src/restorer.php:419
6595
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6596
  msgstr ""
6597
 
6598
+ #: src/class-updraftplus.php:3807, src/class-updraftplus.php:4046,
6599
  #: src/restorer.php:406
6600
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6601
  msgstr ""
6602
 
6603
+ #: src/backup.php:2142
6604
  msgid "Could not open the backup file for writing"
6605
  msgstr ""
6606
 
6607
+ #: src/class-updraftplus.php:3412
6608
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6609
  msgstr ""
6610
 
6611
+ #: src/class-updraftplus.php:3373
6612
  msgid "Could not read the directory"
6613
  msgstr ""
6614
 
6615
+ #: src/admin.php:2091, src/backup.php:1323
6616
  msgid "Backup directory (%s) is not writable, or does not exist."
6617
  msgstr ""
6618
 
6619
+ #: src/backup.php:1100
6620
  msgid "WordPress backup is complete"
6621
  msgstr ""
6622
 
6623
+ #: src/class-updraftplus.php:2883
6624
  msgid "The backup attempt has finished, apparently unsuccessfully"
6625
  msgstr ""
6626
 
6627
+ #: src/class-updraftplus.php:2868
6628
  msgid "The backup apparently succeeded and is now complete"
6629
  msgstr ""
6630
 
6632
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6633
  msgstr ""
6634
 
6635
+ #: src/class-updraftplus.php:2571
6636
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6637
  msgstr ""
6638
 
6639
+ #: src/class-updraftplus.php:1850
6640
  msgid "Others"
6641
  msgstr ""
6642
 
6643
+ #: src/addons/multisite.php:456, src/class-updraftplus.php:1835
6644
  msgid "Uploads"
6645
  msgstr ""
6646
 
6647
+ #: src/class-updraftplus.php:1834
6648
  msgid "Themes"
6649
  msgstr ""
6650
 
6651
+ #: src/class-updraftplus.php:1833
6652
  msgid "Plugins"
6653
  msgstr ""
6654
 
6655
+ #: src/class-updraftplus.php:596
6656
  msgid "No log files were found."
6657
  msgstr ""
6658
 
6659
+ #: src/admin.php:1961, src/admin.php:1965, src/class-updraftplus.php:591
6660
  msgid "The log file could not be read."
6661
  msgstr ""
6662
 
6663
+ #: src/admin.php:996, src/admin.php:1005, src/admin.php:1010,
6664
+ #: src/admin.php:1018, src/admin.php:1027, src/class-updraftplus.php:556,
6665
+ #: src/class-updraftplus.php:591, src/class-updraftplus.php:596,
6666
+ #: src/class-updraftplus.php:601
6667
  msgid "UpdraftPlus notice:"
6668
  msgstr ""
6669
 
6670
+ #: src/addons/multisite.php:65, src/addons/multisite.php:678,
6671
  #: src/options.php:50
6672
  msgid "UpdraftPlus Backups"
6673
  msgstr ""
languages/updraftplus-bn_BD.mo CHANGED
Binary file
languages/updraftplus-bn_BD.po CHANGED
@@ -7,10 +7,38 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/2.2.2\n"
11
  "Language: bn\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/templates/wp-admin/settings/tab-addons.php:14
15
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
16
  msgstr ""
@@ -23,11 +51,11 @@ msgstr ""
23
  msgid "get it here"
24
  msgstr ""
25
 
26
- #: src/methods/stream-base.php:305
27
  msgid "Download chunk size successfully changed to %d"
28
  msgstr ""
29
 
30
- #: src/methods/stream-base.php:302
31
  msgid "Download chunk size failed to change to %d"
32
  msgstr ""
33
 
@@ -43,7 +71,7 @@ msgstr ""
43
  msgid "remote site"
44
  msgstr ""
45
 
46
- #: src/addons/backblaze.php:443
47
  msgid "Invalid bucket name"
48
  msgstr ""
49
 
@@ -53,49 +81,49 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
53
  msgstr[0] ""
54
  msgstr[1] ""
55
 
56
- #: src/class-updraftplus.php:4673
57
  msgid "Your chosen replacement collation"
58
  msgstr ""
59
 
60
- #: src/class-updraftplus.php:4650
61
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
62
  msgstr ""
63
 
64
- #: src/class-updraftplus.php:4650
65
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
66
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
67
  msgstr[0] ""
68
  msgstr[1] ""
69
 
70
- #: src/addons/migrator.php:493
71
  msgid "Database restoration options:"
72
  msgstr ""
73
 
74
- #: src/addons/migrator.php:370
75
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
76
  msgstr ""
77
 
78
- #: src/addons/azure.php:562
79
  msgid "%s Prefix"
80
  msgstr ""
81
 
82
- #: src/addons/azure.php:557
83
  msgid "%s Container"
84
  msgstr ""
85
 
86
- #: src/addons/azure.php:552
87
  msgid "%s Key"
88
  msgstr ""
89
 
90
- #: src/addons/azure.php:548
91
  msgid "%s Account Name"
92
  msgstr ""
93
 
94
- #: src/addons/googlecloud.php:625
95
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
96
  msgstr ""
97
 
98
- #: src/addons/googlecloud.php:623
99
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
100
  msgstr ""
101
 
@@ -119,7 +147,7 @@ msgstr ""
119
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
120
  msgstr ""
121
 
122
- #: src/addons/migrator.php:877
123
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
124
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
125
  msgstr[0] ""
@@ -129,15 +157,15 @@ msgstr[1] ""
129
  msgid "Requested table character set (%s) is not present - changing to %s."
130
  msgstr ""
131
 
132
- #: src/class-updraftplus.php:4626
133
  msgid "Your chosen character set to use instead:"
134
  msgstr ""
135
 
136
- #: src/class-updraftplus.php:4616
137
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
138
  msgstr ""
139
 
140
- #: src/class-updraftplus.php:4616
141
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
142
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
143
  msgstr[0] ""
@@ -191,79 +219,79 @@ msgstr ""
191
  msgid "Please enter a valid URL e.g http://example.com"
192
  msgstr ""
193
 
194
- #: src/addons/backblaze.php:588
195
  msgid "your Backblaze console"
196
  msgstr ""
197
 
198
- #: src/addons/backblaze.php:588
199
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
200
  msgstr ""
201
 
202
- #: src/addons/backblaze.php:588
203
  msgid "N.B. You need to create the bucket in %s first."
204
  msgstr ""
205
 
206
- #: src/addons/backblaze.php:587
207
  msgid "some/path"
208
  msgstr ""
209
 
210
- #: src/addons/backblaze.php:587
211
  msgid "Bucket name"
212
  msgstr ""
213
 
214
- #: src/addons/backblaze.php:586
215
  msgid "Backup path"
216
  msgstr ""
217
 
218
- #: src/addons/backblaze.php:581
219
  msgid "Application key"
220
  msgstr ""
221
 
222
- #: src/addons/backblaze.php:576, src/addons/backblaze.php:576
223
  msgid "here"
224
  msgstr ""
225
 
226
- #: src/addons/backblaze.php:576
227
  msgid "Get these settings from %s, or sign up %s."
228
  msgstr ""
229
 
230
- #: src/addons/backblaze.php:440
231
  msgid "Bucket not found"
232
  msgstr ""
233
 
234
- #: src/addons/backblaze.php:394
235
  msgid "Account Key"
236
  msgstr ""
237
 
238
- #: src/addons/backblaze.php:393, src/addons/backblaze.php:574
239
  msgid "Account ID"
240
  msgstr ""
241
 
242
- #: src/class-updraftplus.php:4460
243
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
244
  msgstr ""
245
 
246
- #: src/class-updraftplus.php:4458, src/class-updraftplus.php:4460
247
  msgid "the migrator add-on"
248
  msgstr ""
249
 
250
- #: src/class-updraftplus.php:4458
251
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
252
  msgstr ""
253
 
254
- #: src/class-updraftplus.php:4456
255
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
256
  msgstr ""
257
 
258
- #: src/class-updraftplus.php:4453
259
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
260
  msgstr ""
261
 
262
- #: src/methods/googledrive.php:1173
263
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
264
  msgstr ""
265
 
266
- #: src/methods/googledrive.php:1170
267
  msgid "Follow this link to remove this site's settings for %s."
268
  msgstr ""
269
 
@@ -275,15 +303,15 @@ msgstr ""
275
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
276
  msgstr ""
277
 
278
- #: src/admin.php:1348, src/admin.php:4168, src/backup.php:2065,
279
- #: src/class-updraftplus.php:2156, src/class-updraftplus.php:2221,
280
- #: src/class-updraftplus.php:2355
281
  msgid "A PHP fatal error (%s) has occurred: %s"
282
  msgstr ""
283
 
284
- #: src/admin.php:1339, src/admin.php:4154, src/backup.php:2056,
285
- #: src/class-updraftplus.php:2147, src/class-updraftplus.php:2214,
286
- #: src/class-updraftplus.php:2348
287
  msgid "A PHP exception (%s) has occurred: %s"
288
  msgstr ""
289
 
@@ -327,7 +355,7 @@ msgstr ""
327
  msgid "Select Files"
328
  msgstr ""
329
 
330
- #: src/methods/cloudfiles.php:465
331
  msgid "Rackspace Storage Region"
332
  msgstr ""
333
 
@@ -335,23 +363,23 @@ msgstr ""
335
  msgid "Instant and secure logon with a wave of your phone."
336
  msgstr ""
337
 
338
- #: src/backup.php:2069
339
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
340
  msgstr ""
341
 
342
- #: src/admin.php:4696
343
  msgid "Value"
344
  msgstr ""
345
 
346
- #: src/admin.php:1614
347
  msgid "Did not know how to delete from this cloud service."
348
  msgstr ""
349
 
350
- #: src/addons/sftp.php:700
351
  msgid "Encrypted login failed; trying non-encrypted"
352
  msgstr ""
353
 
354
- #: src/addons/azure.php:539
355
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
356
  msgstr ""
357
 
@@ -359,15 +387,15 @@ msgstr ""
359
  msgid "Stored at: %s"
360
  msgstr ""
361
 
362
- #: src/methods/cloudfiles.php:485
363
  msgid "Cloud Files"
364
  msgstr ""
365
 
366
- #: src/admin.php:4509
367
  msgid "Your settings failed to save. Please refresh the settings page and try again"
368
  msgstr ""
369
 
370
- #: src/admin.php:4468
371
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
372
  msgstr ""
373
 
@@ -384,15 +412,15 @@ msgstr ""
384
  msgid "Extra database"
385
  msgstr ""
386
 
387
- #: src/admin.php:3729
388
  msgid "Press here to download or browse"
389
  msgstr ""
390
 
391
- #: src/admin.php:1122, src/admin.php:1132
392
  msgid "Error: invalid path"
393
  msgstr ""
394
 
395
- #: src/admin.php:946
396
  msgid "An error occurred when fetching storage module options: "
397
  msgstr ""
398
 
@@ -428,15 +456,15 @@ msgstr ""
428
  msgid "Skipped tables:"
429
  msgstr ""
430
 
431
- #: src/class-updraftplus.php:4738
432
  msgid "This database backup has the following WordPress tables excluded: %s"
433
  msgstr ""
434
 
435
- #: src/admin.php:2624
436
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
437
  msgstr ""
438
 
439
- #: src/admin.php:2624
440
  msgid "All WordPress tables will be backed up."
441
  msgstr ""
442
 
@@ -936,15 +964,15 @@ msgstr ""
936
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
937
  msgstr ""
938
 
939
- #: src/methods/dropbox.php:608
940
  msgid "%s de-authentication"
941
  msgstr ""
942
 
943
- #: src/methods/dropbox.php:528
944
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
945
  msgstr ""
946
 
947
- #: src/methods/dropbox.php:505
948
  msgid "Follow this link to deauthenticate with %s."
949
  msgstr ""
950
 
@@ -952,7 +980,7 @@ msgstr ""
952
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
953
  msgstr ""
954
 
955
- #: src/backup.php:1663
956
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
957
  msgstr ""
958
 
@@ -960,16 +988,16 @@ msgstr ""
960
  msgid "You have selected a remote storage option which has an authorization step to complete:"
961
  msgstr ""
962
 
963
- #: src/admin.php:1690
964
  msgid "Remote files deleted:"
965
  msgstr ""
966
 
967
- #: src/admin.php:1689
968
  msgid "Local files deleted:"
969
  msgstr ""
970
 
971
- #: src/admin.php:994, src/admin.php:1003, src/admin.php:1016,
972
- #: src/admin.php:1025
973
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
974
  msgstr ""
975
 
@@ -1013,24 +1041,24 @@ msgstr ""
1013
  msgid "US East (Ohio)"
1014
  msgstr ""
1015
 
1016
- #: src/addons/onedrive.php:979
1017
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1018
  msgstr ""
1019
 
1020
- #: src/addons/onedrive.php:649
1021
  msgid "Account is not authorized (%s)."
1022
  msgstr ""
1023
 
1024
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873
1025
  msgid "Your IP address:"
1026
  msgstr "আপনার আইপি অ্যাড্রেসঃ"
1027
 
1028
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873,
1029
  #: src/udaddons/updraftplus-addons.php:887
1030
  msgid "To remove any block, please go here."
1031
  msgstr "কোন ব্লক সরাতে এখানে যান।"
1032
 
1033
- #: src/addons/onedrive.php:594, src/udaddons/updraftplus-addons.php:858
1034
  msgid "An error response was received; HTTP code:"
1035
  msgstr ""
1036
 
@@ -1046,11 +1074,11 @@ msgstr "অথবা ম্যানুয়ালি পুনরুদ্ধা
1046
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1047
  msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
1048
 
1049
- #: src/admin.php:2438
1050
  msgid "To fix this problem go here."
1051
  msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
1052
 
1053
- #: src/admin.php:2438
1054
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1055
  msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
1056
 
@@ -1058,27 +1086,27 @@ msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টে
1058
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1059
  msgstr "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
1060
 
1061
- #: src/addons/webdav.php:125
1062
  msgid "Path"
1063
  msgstr "রাস্তা (Path)"
1064
 
1065
- #: src/addons/webdav.php:120
1066
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1067
  msgstr "ডিফল্ট ভ্যালু ব্যাবহার করতে এটা ফাকা রাখুন (webdav এর জন্য 80, webdavs এর জন্য 443)"
1068
 
1069
- #: src/addons/webdav.php:112
1070
  msgid "Enter any path in the field below."
1071
  msgstr "এই স্থানে যেকোন রাস্তা (Path) প্রবেশ করান।"
1072
 
1073
- #: src/addons/webdav.php:112
1074
  msgid "A host name cannot contain a slash."
1075
  msgstr "\"host name\" এর ক্ষত্রে স্ল্যাশ ব্যাবহার করা যাবে না।"
1076
 
1077
- #: src/addons/webdav.php:87
1078
  msgid "Protocol (SSL or not)"
1079
  msgstr "প্রোটোকল (SSL অথবা SSL না)"
1080
 
1081
- #: src/addons/webdav.php:82
1082
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1083
  msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ করার মাধ্যমে সৃষ্ট। আপনি যদি বিস্তারিত না জানেন, তাহলে আপনার WebDAV প্রোভাইডারকে জিজ্ঞেস করুন।"
1084
 
@@ -1086,7 +1114,7 @@ msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ
1086
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1087
  msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
1088
 
1089
- #: src/methods/s3.php:1075
1090
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1091
  msgstr "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
1092
 
@@ -1126,53 +1154,53 @@ msgstr "কি সাইজ: %d বিটস"
1126
  msgid "Public key was sent to:"
1127
  msgstr "পাবলিক কি টি পাঠানো হয়েছিল:"
1128
 
1129
- #: src/backup.php:2281
1130
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1131
  msgstr "ডিরেক্টরি খুলতে ব্যর্থ (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন): %s"
1132
 
1133
- #: src/backup.php:2259
1134
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1135
  msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
1136
 
1137
- #: src/addons/migrator.php:2342
1138
  msgid "Create key"
1139
  msgstr "পিন তৈরি করুন"
1140
 
1141
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:526
1142
  msgid "slower, strongest"
1143
  msgstr "ধীরতর, সবচেয়ে বেশি শক্তিশালী"
1144
 
1145
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1146
  msgid "recommended"
1147
  msgstr "নির্দেশিত"
1148
 
1149
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1150
  msgid "%s bytes"
1151
  msgstr "%s বাইটস"
1152
 
1153
- #: src/addons/migrator.php:2337, src/central/bootstrap.php:524
1154
  msgid "faster (possibility for slow PHP installs)"
1155
  msgstr "দ্রুততর (ধীর পি এইচ পি ইন্সটল এর ক্ষেত্রে)"
1156
 
1157
- #: src/addons/migrator.php:2336, src/central/bootstrap.php:523
1158
  msgid "easy to break, fastest"
1159
  msgstr "ভাঙতে সহজ, দ্রুততম সময়ে"
1160
 
1161
- #: src/addons/migrator.php:2336, src/addons/migrator.php:2337,
1162
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:523,
1163
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1164
  msgid "%s bits"
1165
  msgstr "%s বিটস"
1166
 
1167
- #: src/addons/migrator.php:2334, src/central/bootstrap.php:521
1168
  msgid "Encryption key size:"
1169
  msgstr "এনক্রিপশন পিনের সাইজঃ"
1170
 
1171
- #: src/addons/migrator.php:2332
1172
  msgid "Enter your chosen name"
1173
  msgstr "পূর্বেই ঠিক করা নামটি লিখুন"
1174
 
1175
- #: src/addons/migrator.php:2331
1176
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1177
  msgstr "একটি পিন তৈরি করুনঃ এই পিনটির একটি অনন্য নাম দিন (উদাহরণস্বরূপ, এই সাইট টি কিসের জন্য তা উল্লেখ করতে পারেন), তারপর \"পিন তৈরি করুন\" এ ক্লিক করুনঃ"
1178
 
@@ -1180,15 +1208,15 @@ msgstr "একটি পিন তৈরি করুনঃ এই পিনট
1180
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1181
  msgstr "আপলোড সফল হবে নাঃ যেকোন একটি ফাইলের %s লিমিট হচ্ছে %s, যেখনে এই ফাইলের সাইজ হচ্ছে %s GB (%d bytes)"
1182
 
1183
- #: src/methods/ftp.php:408
1184
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1185
  msgstr "এটা কোন কোন সময় ফায়ারওয়ালের কারনে ঘটে থাকে - expert সেটিং থেকে SSL বন্ধ করে আবার চেস্টা করে দেখুন।"
1186
 
1187
- #: src/methods/ftp.php:380
1188
  msgid "login"
1189
  msgstr "লগিন"
1190
 
1191
- #: src/methods/email.php:79
1192
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1193
  msgstr ""
1194
 
@@ -1196,7 +1224,7 @@ msgstr ""
1196
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1197
  msgstr ""
1198
 
1199
- #: src/class-updraftplus.php:1763
1200
  msgid "Size: %s MB"
1201
  msgstr "সাইজঃ %s MB"
1202
 
@@ -1208,7 +1236,7 @@ msgstr ""
1208
  msgid "Now"
1209
  msgstr "এখন"
1210
 
1211
- #: src/class-updraftplus.php:4475, src/restorer.php:1045
1212
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1213
  msgstr ""
1214
 
@@ -1216,13 +1244,13 @@ msgstr ""
1216
  msgid "(tap on an icon to select or unselect)"
1217
  msgstr "(সিলেক্ট অথবা আনসিলেক্ট করার জন্য আইকনের উপর টিপ দিন)"
1218
 
1219
- #: src/methods/updraftvault.php:310, src/methods/updraftvault.php:316,
1220
- #: src/methods/updraftvault.php:322
1221
  msgid "%s per year"
1222
  msgstr "প্রতি বৎসর %s"
1223
 
1224
- #: src/methods/updraftvault.php:309, src/methods/updraftvault.php:315,
1225
- #: src/methods/updraftvault.php:321
1226
  msgid "or (annual discount)"
1227
  msgstr "অথবা (বাৎসরিক মূল্যছাড়)"
1228
 
@@ -1230,7 +1258,7 @@ msgstr "অথবা (বাৎসরিক মূল্যছাড়)"
1230
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1231
  msgstr "এই সাইটের জন্য কোন ভল্ট কানেকশন পাওয়া যায়নি (এটা কি স্থানান্তর করা হয়েছে?), দয়া করে ডিসকানেক্ট করে আবার কানেক্ট করুন।"
1232
 
1233
- #: src/class-updraftplus.php:544, src/class-updraftplus.php:589
1234
  msgid "The given file was not found, or could not be read."
1235
  msgstr "প্রদত্ত ফাইল পাওয়া যায়নি অথবা পড়া সম্ভব হয়নি।"
1236
 
@@ -1314,23 +1342,23 @@ msgstr ""
1314
  msgid "UpdraftCentral Connection"
1315
  msgstr ""
1316
 
1317
- #: src/backup.php:965, src/class-updraftplus.php:2837
1318
  msgid "The backup was aborted by the user"
1319
  msgstr ""
1320
 
1321
- #: src/admin.php:4504
1322
  msgid "Your settings have been saved."
1323
  msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
1324
 
1325
- #: src/admin.php:3607
1326
  msgid "Total backup size:"
1327
  msgstr ""
1328
 
1329
- #: src/admin.php:2964
1330
  msgid "stop"
1331
  msgstr ""
1332
 
1333
- #: src/admin.php:2806
1334
  msgid "The backup has finished running"
1335
  msgstr ""
1336
 
@@ -1392,19 +1420,19 @@ msgstr ""
1392
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1393
  msgstr ""
1394
 
1395
- #: src/class-updraftplus.php:4526, src/restorer.php:1740
1396
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1397
  msgstr ""
1398
 
1399
- #: src/class-updraftplus.php:4522
1400
  msgid "Please read this link for important information on this process."
1401
  msgstr ""
1402
 
1403
- #: src/class-updraftplus.php:4522
1404
  msgid "It will be imported as a new site."
1405
  msgstr ""
1406
 
1407
- #: src/admin.php:2597, src/templates/wp-admin/notices/horizontal-notice.php:16,
1408
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1409
  msgid "Dismiss"
1410
  msgstr "খারিজ"
@@ -1413,56 +1441,56 @@ msgstr "খারিজ"
1413
  msgid "Please fill in the required information."
1414
  msgstr ""
1415
 
1416
- #: src/addons/multisite.php:579
1417
  msgid "Read more..."
1418
  msgstr "আরও পড়ুন..."
1419
 
1420
- #: src/addons/multisite.php:570
1421
  msgid "may include some site-wide data"
1422
  msgstr ""
1423
 
1424
- #: src/addons/multisite.php:565
1425
  msgid "All sites"
1426
  msgstr ""
1427
 
1428
- #: src/addons/multisite.php:561
1429
  msgid "Which site to restore"
1430
  msgstr ""
1431
 
1432
- #: src/addons/migrator.php:563, src/addons/migrator.php:564
1433
  msgid "Error when creating new site at your chosen address:"
1434
  msgstr ""
1435
 
1436
- #: src/addons/migrator.php:505
1437
  msgid "Required information for restoring this backup was not given (%s)"
1438
  msgstr ""
1439
 
1440
- #: src/addons/migrator.php:457
1441
  msgid "Attribute imported content to user"
1442
  msgstr ""
1443
 
1444
- #: src/addons/migrator.php:447, src/addons/migrator.php:449
1445
  msgid "You must use lower-case letters or numbers for the site path, only."
1446
  msgstr ""
1447
 
1448
- #: src/addons/migrator.php:435
1449
  msgid "This feature is not compatible with %s"
1450
  msgstr ""
1451
 
1452
- #: src/addons/migrator.php:433, src/addons/migrator.php:435
1453
  msgid "Importing a single site into a multisite install"
1454
  msgstr ""
1455
 
1456
- #: src/addons/migrator.php:424
1457
  msgid "other content from wp-content"
1458
  msgstr ""
1459
 
1460
- #: src/addons/migrator.php:421
1461
  msgid "WordPress core"
1462
  msgstr ""
1463
 
1464
- #: src/addons/migrator.php:421, src/addons/migrator.php:424,
1465
- #: src/addons/migrator.php:427
1466
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1467
  msgstr ""
1468
 
@@ -1470,11 +1498,11 @@ msgstr ""
1470
  msgid "Call WordPress action:"
1471
  msgstr ""
1472
 
1473
- #: src/admin.php:2632
1474
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1475
  msgstr ""
1476
 
1477
- #: src/admin.php:4043
1478
  msgid "Skipping: this archive was already restored."
1479
  msgstr ""
1480
 
@@ -1506,51 +1534,51 @@ msgstr ""
1506
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1507
  msgstr ""
1508
 
1509
- #: src/admin.php:4378
1510
  msgid "Send this backup to remote storage"
1511
  msgstr ""
1512
 
1513
- #: src/admin.php:4376
1514
  msgid "Check out UpdraftPlus Vault."
1515
  msgstr ""
1516
 
1517
- #: src/admin.php:4376
1518
  msgid "Not got any remote storage?"
1519
  msgstr ""
1520
 
1521
- #: src/admin.php:4376
1522
  msgid "settings"
1523
  msgstr "সেটিংস"
1524
 
1525
- #: src/admin.php:4376
1526
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1527
  msgstr ""
1528
 
1529
- #: src/admin.php:2630
1530
  msgid "Include any files in the backup"
1531
  msgstr ""
1532
 
1533
- #: src/admin.php:2616
1534
  msgid "Include the database in the backup"
1535
  msgstr ""
1536
 
1537
- #: src/admin.php:2596
1538
  msgid "Continue restoration"
1539
  msgstr ""
1540
 
1541
- #: src/admin.php:2591
1542
  msgid "You have an unfinished restoration operation, begun %s ago."
1543
  msgstr ""
1544
 
1545
- #: src/admin.php:2590
1546
  msgid "Unfinished restoration"
1547
  msgstr ""
1548
 
1549
- #: src/admin.php:2588
1550
  msgid "%s minutes, %s seconds"
1551
  msgstr ""
1552
 
1553
- #: src/admin.php:2535
1554
  msgid "Backup Contents And Schedule"
1555
  msgstr ""
1556
 
@@ -1558,7 +1586,7 @@ msgstr ""
1558
  msgid "Premium / Extensions"
1559
  msgstr ""
1560
 
1561
- #: src/admin.php:2304, src/admin.php:2313
1562
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1563
  msgstr ""
1564
 
@@ -1579,23 +1607,23 @@ msgstr ""
1579
  msgid "Advanced Tools"
1580
  msgstr ""
1581
 
1582
- #: src/addons/googlecloud.php:967
1583
  msgid "Bucket location"
1584
  msgstr ""
1585
 
1586
- #: src/addons/googlecloud.php:962
1587
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1588
  msgstr ""
1589
 
1590
- #: src/addons/googlecloud.php:962, src/addons/googlecloud.php:975
1591
  msgid "This setting applies only when a new bucket is being created."
1592
  msgstr ""
1593
 
1594
- #: src/addons/googlecloud.php:951
1595
  msgid "You must use a bucket name that is unique, for all %s users."
1596
  msgstr ""
1597
 
1598
- #: src/addons/googlecloud.php:910
1599
  msgid "Do not confuse %s with %s - they are separate things."
1600
  msgstr ""
1601
 
@@ -1657,64 +1685,64 @@ msgstr ""
1657
  msgid "Standard"
1658
  msgstr ""
1659
 
1660
- #: src/addons/azure.php:563
1661
  msgid "container"
1662
  msgstr ""
1663
 
1664
- #: src/addons/azure.php:563
1665
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1666
  msgstr ""
1667
 
1668
- #: src/addons/azure.php:562
1669
  msgid "optional"
1670
  msgstr ""
1671
 
1672
- #: src/addons/azure.php:558
1673
  msgid "See Microsoft's guidelines on container naming by following this link."
1674
  msgstr ""
1675
 
1676
- #: src/addons/azure.php:558
1677
  msgid "Enter the path of the %s you wish to use here."
1678
  msgstr ""
1679
 
1680
- #: src/addons/azure.php:549
1681
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1682
  msgstr ""
1683
 
1684
- #: src/addons/azure.php:548, src/addons/azure.php:552,
1685
- #: src/addons/azure.php:557, src/addons/azure.php:562
1686
  msgid "Azure"
1687
  msgstr ""
1688
 
1689
- #: src/addons/azure.php:544
1690
  msgid "Create Azure credentials in your Azure developer console."
1691
  msgstr ""
1692
 
1693
- #: src/addons/azure.php:513
1694
  msgid "Could not create the container"
1695
  msgstr ""
1696
 
1697
- #: src/addons/azure.php:364
1698
  msgid "Could not access container"
1699
  msgstr ""
1700
 
1701
- #: src/class-updraftplus.php:2854
1702
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1703
  msgstr ""
1704
 
1705
- #: src/backup.php:1715
1706
  msgid "the options table was not found"
1707
  msgstr ""
1708
 
1709
- #: src/backup.php:1713
1710
  msgid "no options or sitemeta table was found"
1711
  msgstr ""
1712
 
1713
- #: src/backup.php:1713, src/backup.php:1715
1714
  msgid "The database backup appears to have failed"
1715
  msgstr ""
1716
 
1717
- #: src/backup.php:1585
1718
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1719
  msgstr ""
1720
 
@@ -1726,47 +1754,47 @@ msgstr ""
1726
  msgid "Not installed"
1727
  msgstr ""
1728
 
1729
- #: src/addons/googlecloud.php:954, src/addons/s3-enhanced.php:63
1730
  msgid "Storage class"
1731
  msgstr ""
1732
 
1733
- #: src/addons/googlecloud.php:951
1734
  msgid "See Google's guidelines on bucket naming by following this link."
1735
  msgstr ""
1736
 
1737
- #: src/addons/googlecloud.php:951
1738
  msgid "Enter the name of the %s bucket you wish to use here."
1739
  msgstr ""
1740
 
1741
- #: src/addons/googlecloud.php:950
1742
  msgid "Bucket"
1743
  msgstr ""
1744
 
1745
- #: src/addons/googlecloud.php:946
1746
  msgid "Otherwise, you can leave it blank."
1747
  msgstr ""
1748
 
1749
- #: src/addons/googlecloud.php:946
1750
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1751
  msgstr ""
1752
 
1753
- #: src/addons/googlecloud.php:946
1754
  msgid "Enter the ID of the %s project you wish to use here."
1755
  msgstr ""
1756
 
1757
- #: src/addons/googlecloud.php:922
1758
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1759
  msgstr ""
1760
 
1761
- #: src/addons/googlecloud.php:835
1762
  msgid "You must enter a project ID in order to be able to create a new bucket."
1763
  msgstr ""
1764
 
1765
- #: src/addons/googlecloud.php:944
1766
  msgid "Project ID"
1767
  msgstr ""
1768
 
1769
- #: src/addons/googlecloud.php:692
1770
  msgid "You must save and authenticate before you can test your settings."
1771
  msgstr ""
1772
 
@@ -1775,22 +1803,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
1775
  msgstr ""
1776
 
1777
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1778
- #: src/addons/googlecloud.php:827, src/addons/googlecloud.php:874
1779
  msgid "You do not have access to this bucket."
1780
  msgstr ""
1781
 
1782
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1783
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1784
- #: src/addons/googlecloud.php:651, src/addons/googlecloud.php:827,
1785
- #: src/addons/googlecloud.php:874, src/addons/googlecloud.php:916,
1786
- #: src/addons/googlecloud.php:916, src/addons/googlecloud.php:931,
1787
- #: src/addons/googlecloud.php:939, src/addons/googlecloud.php:951
1788
  msgid "Google Cloud"
1789
  msgstr ""
1790
 
1791
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1792
- #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:827,
1793
- #: src/addons/googlecloud.php:874
1794
  msgid "%s Service Exception."
1795
  msgstr ""
1796
 
@@ -1827,7 +1855,7 @@ msgstr ""
1827
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1828
  msgstr ""
1829
 
1830
- #: src/admin.php:1688
1831
  msgid "Backup sets removed:"
1832
  msgstr ""
1833
 
@@ -1859,7 +1887,7 @@ msgstr ""
1859
  msgid "day"
1860
  msgstr ""
1861
 
1862
- #: src/addons/morestorage.php:28
1863
  msgid "(as many as you like)"
1864
  msgstr ""
1865
 
@@ -1875,31 +1903,31 @@ msgstr ""
1875
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1876
  msgstr ""
1877
 
1878
- #: src/methods/updraftvault.php:684
1879
  msgid "You do not currently have any UpdraftPlus Vault quota"
1880
  msgstr ""
1881
 
1882
- #: src/class-updraftplus.php:4595
1883
  msgid "You must upgrade MySQL to be able to use this database."
1884
  msgstr ""
1885
 
1886
- #: src/class-updraftplus.php:4595
1887
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1888
  msgstr ""
1889
 
1890
- #: src/admin.php:2423
1891
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1892
  msgstr ""
1893
 
1894
- #: src/methods/updraftvault.php:342
1895
  msgid "Don't know your email address, or forgotten your password?"
1896
  msgstr "আপনার ইমেল ঠিকানা জানা নেই, নাকি আপনার পাসওয়ার্ড ভুলে গিয়েছেন?"
1897
 
1898
- #: src/methods/updraftvault.php:335
1899
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1900
  msgstr ""
1901
 
1902
- #: src/methods/updraftvault.php:299, src/methods/updraftvault.php:328
1903
  msgid "Read the FAQs here."
1904
  msgstr "এখানে প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী পড়ুন।"
1905
 
@@ -1911,19 +1939,19 @@ msgstr "আমাজনের সার্ভার সাইড এনক্র
1911
  msgid "Server-side encryption"
1912
  msgstr "সার্ভার সাইড এনক্রিপশন"
1913
 
1914
- #: src/methods/updraftvault.php:692
1915
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1916
  msgstr ""
1917
 
1918
- #: src/admin.php:1008
1919
  msgid "Go to the remote storage settings in order to connect."
1920
  msgstr ""
1921
 
1922
- #: src/admin.php:1008
1923
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1924
  msgstr ""
1925
 
1926
- #: src/methods/updraftvault.php:325
1927
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1928
  msgstr "পেমেন্ট ইউএস ডলার, ইউরো বা GB pounds sterling এর মাধ্যমে কার্ড বা পেপ্যাল এর দ্বারা করতে হবে।"
1929
 
@@ -1943,67 +1971,67 @@ msgstr "সংযোগ বিচ্ছিন্ন করা হচ্ছে...
1943
  msgid "Connecting..."
1944
  msgstr "সংযোগ করা হচ্ছে..."
1945
 
1946
- #: src/methods/updraftvault.php:445, src/methods/updraftvault.php:519
1947
  msgid "Refresh current status"
1948
  msgstr "বর্তমান অবস্থা পুনঃবিবেচনা করুন"
1949
 
1950
- #: src/methods/updraftvault.php:443, src/methods/updraftvault.php:459,
1951
- #: src/methods/updraftvault.php:461, src/methods/updraftvault.php:519
1952
  msgid "Get more quota"
1953
  msgstr "আরও প্রাপ্য নিন"
1954
 
1955
- #: src/methods/updraftvault.php:440, src/methods/updraftvault.php:456,
1956
- #: src/methods/updraftvault.php:500
1957
  msgid "Current use:"
1958
  msgstr "বর্তমান ব্যাবহার:"
1959
 
1960
- #: src/methods/updraftvault.php:435
1961
  msgid "You can get more quota here"
1962
  msgstr "আপনি এখান থেকে আরও প্রাপ্য পেতে পারেন"
1963
 
1964
- #: src/methods/updraftvault.php:435
1965
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1966
  msgstr "%s ইরোর: আপনার যথেষ্ট প্রাপ্য(%s) নেই আর্কাইভটি(%s) আপলোড করার জন্য।"
1967
 
1968
- #: src/admin.php:712, src/methods/updraftvault.php:369,
1969
- #: src/methods/updraftvault.php:427
1970
  msgid "Disconnect"
1971
  msgstr "সংযোগ বিচ্ছিন্ন করুন"
1972
 
1973
- #: src/methods/updraftvault.php:366, src/methods/updraftvault.php:419
1974
  msgid "Quota:"
1975
  msgstr "প্রাপ্য:"
1976
 
1977
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1978
  msgid "Vault owner"
1979
  msgstr "ভল্টের মালিক"
1980
 
1981
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1982
  msgid "Well done - there's nothing more needed to set up."
1983
  msgstr "চমৎকার - এখন আর আপনাকে কিছুই করতে হবে না।"
1984
 
1985
- #: src/methods/updraftvault.php:365, src/methods/updraftvault.php:417
1986
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1987
  msgstr "এই সাইটটি UpdraftPlus Vault এ <strong>সংযুক্ত</strong>।"
1988
 
1989
- #: src/methods/updraftvault.php:371, src/methods/updraftvault.php:413
1990
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1991
  msgstr "আপনি UpdraftPlus Vault এ<strong>সংযুক্ত নন</strong>।"
1992
 
1993
- #: src/methods/updraftvault.php:342
1994
  msgid "Go here for help"
1995
  msgstr "সাহায্যের জন্য এখানে যান"
1996
 
1997
- #: src/methods/updraftvault.php:337
1998
  msgid "E-mail"
1999
  msgstr "ই-মেইল"
2000
 
2001
- #: src/central/bootstrap.php:551, src/methods/updraftvault.php:331,
2002
- #: src/methods/updraftvault.php:345
2003
  msgid "Back..."
2004
  msgstr "ফিরে চলুন..."
2005
 
2006
- #: src/methods/updraftvault.php:325
2007
  msgid "Subscriptions can be cancelled at any time."
2008
  msgstr "সাবস্ক্রিপশন যেকোনো সময় বাতিল করা সম্ভব"
2009
 
@@ -2011,37 +2039,37 @@ msgstr "সাবস্ক্রিপশন যেকোনো সময় বা
2011
  msgid "Buy it now"
2012
  msgstr ""
2013
 
2014
- #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:314,
2015
- #: src/methods/updraftvault.php:320
2016
  msgid "%s per quarter"
2017
  msgstr "%s প্রতি তিন মাসে"
2018
 
2019
- #: src/central/bootstrap.php:578, src/methods/updraftvault.php:299,
2020
- #: src/methods/updraftvault.php:328
2021
  msgid "Read more about it here."
2022
  msgstr "এইটি সম্পর্কে আরও পড়ুন এখানে।"
2023
 
2024
- #: src/methods/updraftvault.php:299, src/methods/updraftvault.php:328
2025
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
2026
  msgstr "UpdraftPlus Vault অ্যামাজনের বিশ্বসেরা ডাটা সেন্টারে তৈরী। এছাড়া অতিরিক্ত ডাটার স্টোরেজের মাধ্যমে আছে ৯৯.৯৯৯৯৯৯৯৯৯% বিশ্বাসযোগ্যতা"
2027
 
2028
- #: src/methods/updraftvault.php:295
2029
  msgid "Already purchased space?"
2030
  msgstr "জায়গা আগে থেকে কিনেছেন?"
2031
 
2032
- #: src/methods/updraftvault.php:292
2033
  msgid "Show the options"
2034
  msgstr "অপশন দেখান"
2035
 
2036
- #: src/methods/updraftvault.php:291
2037
  msgid "First time user?"
2038
  msgstr "প্রথম বার ব্যাবহারকারি?"
2039
 
2040
- #: src/methods/updraftvault.php:288, src/methods/updraftvault.php:305
2041
  msgid "Press a button to get started."
2042
  msgstr "কাজ শুরু করতে যেকোনো একটি বোতাম চাপুন।"
2043
 
2044
- #: src/methods/updraftvault.php:288, src/methods/updraftvault.php:305
2045
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
2046
  msgstr "UpdraftPlus Vault আপনাকে স্টোরেজের সুবিধা দেয় যেটি <strong>বিশ্বাসযোগ্য, সহজে ব্যাবহারযোগ্য এবং চমৎকার দামে</strong>।"
2047
 
@@ -2061,12 +2089,12 @@ msgstr "আপনার UpdraftPlus Premium কেনার এক বছর অ
2061
  msgid "Updraft Vault"
2062
  msgstr "ভল্ট আপডেট করুন"
2063
 
2064
- #: src/addons/azure.php:394, src/addons/backblaze.php:473,
2065
- #: src/addons/googlecloud.php:776, src/methods/s3.php:1103
2066
  msgid "Delete failed:"
2067
  msgstr "ডিলিট ব্যর্থ:"
2068
 
2069
- #: src/backup.php:3326
2070
  msgid "The zip engine returned the message: %s."
2071
  msgstr "Zip engine টি এই বার্তা নিয়ে এসেছে: %s।"
2072
 
@@ -2086,71 +2114,71 @@ msgstr "এই অনুমতি ছাড়া আপনি সরাসরি U
2086
  msgid "Allow download"
2087
  msgstr "ডাউনলোড এর অনুমতি দিন"
2088
 
2089
- #: src/addons/migrator.php:1886
2090
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
2091
  msgstr ""
2092
 
2093
- #: src/addons/migrator.php:1871, src/admin.php:721
2094
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
2095
  msgstr ""
2096
 
2097
- #: src/addons/migrator.php:2374
2098
  msgid "Existing keys"
2099
  msgstr ""
2100
 
2101
- #: src/addons/migrator.php:2365
2102
  msgid "No keys to allow remote sites to connect have yet been created."
2103
  msgstr ""
2104
 
2105
- #: src/addons/migrator.php:2347
2106
  msgid "Your new key:"
2107
  msgstr "আপনার নতুন চাবি:"
2108
 
2109
- #: src/addons/migrator.php:2326
2110
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
2111
  msgstr ""
2112
 
2113
- #: src/addons/migrator.php:2308
2114
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
2115
  msgstr ""
2116
 
2117
- #: src/addons/migrator.php:2308
2118
  msgid "Keys for this site are created in the section below the one you just pressed in."
2119
  msgstr ""
2120
 
2121
- #: src/addons/migrator.php:1988, src/central/bootstrap.php:387
2122
  msgid "You must copy and paste this key now - it cannot be shown again."
2123
  msgstr ""
2124
 
2125
- #: src/addons/migrator.php:1988, src/central/bootstrap.php:387
2126
  msgid "Key created successfully."
2127
  msgstr "চাবি সফলভাবে তৈরি করা হয়েছে।"
2128
 
2129
- #: src/addons/migrator.php:1973
2130
  msgid "A key with this name already exists; you must use a unique name."
2131
  msgstr ""
2132
 
2133
- #: src/addons/migrator.php:1917
2134
  msgid "Also send this backup to the active remote storage locations"
2135
  msgstr ""
2136
 
2137
- #: src/addons/migrator.php:1882
2138
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
2139
  msgstr ""
2140
 
2141
- #: src/addons/migrator.php:1838
2142
  msgid "site not found"
2143
  msgstr "সাইট খুঁজে পাওয়া যায় নি"
2144
 
2145
- #: src/addons/migrator.php:1823
2146
  msgid "Backup data will be sent to:"
2147
  msgstr "ব্যাক তথ্য পাঠানো হবে:"
2148
 
2149
- #: src/addons/migrator.php:209
2150
  msgid "Restore an existing backup set onto this site"
2151
  msgstr ""
2152
 
2153
- #: src/addons/migrator.php:202
2154
  msgid "This site has no backups to restore from yet."
2155
  msgstr ""
2156
 
@@ -2162,7 +2190,7 @@ msgstr "ব্যাকআপ তৈরি করেছেন %s"
2162
  msgid "This storage method does not allow downloading"
2163
  msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
2164
 
2165
- #: src/admin.php:3792
2166
  msgid "(backup set imported from remote location)"
2167
  msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
2168
 
@@ -2182,7 +2210,7 @@ msgstr ""
2182
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
2183
  msgstr ""
2184
 
2185
- #: src/addons/migrator.php:1899, src/admin.php:728
2186
  msgid "Testing connection..."
2187
  msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
2188
 
@@ -2202,92 +2230,92 @@ msgstr "এই চাবিকাঠির একটি নাম দিন (e.g
2202
  msgid "Creating..."
2203
  msgstr "তৈরি করা হচ্ছে..."
2204
 
2205
- #: src/addons/migrator.php:2325
2206
  msgid "Or, receive a backup from a remote site"
2207
  msgstr "অথবা, অন্য একটি সাইট থেকে ব্যাকআপ গ্রহণ করুন"
2208
 
2209
- #: src/addons/migrator.php:2314
2210
  msgid "Paste key here"
2211
  msgstr "চাবি এখানে পেস্ট করুন"
2212
 
2213
- #: src/addons/migrator.php:2308
2214
  msgid "How do I get a site's key?"
2215
  msgstr ""
2216
 
2217
- #: src/addons/migrator.php:2308
2218
  msgid "To add a site as a destination for sending to, enter that site's key below."
2219
  msgstr ""
2220
 
2221
- #: src/addons/migrator.php:2305
2222
  msgid "Or, send a backup to another site"
2223
  msgstr "অথবা, ব্যাকআপ অন্য একটি সাইটে পাঠান"
2224
 
2225
- #: src/addons/migrator.php:2070, src/admin.php:729
2226
  msgid "Send"
2227
  msgstr "পাঠান"
2228
 
2229
- #: src/addons/migrator.php:2064, src/admin.php:720
2230
  msgid "Send to site:"
2231
  msgstr ""
2232
 
2233
- #: src/addons/migrator.php:2062
2234
  msgid "No receiving sites have yet been added."
2235
  msgstr "কোন প্রাপ্তির সাইট এখনো যোগ হয়নি"
2236
 
2237
- #: src/addons/migrator.php:2043
2238
  msgid "It is for sending backups to the following site: "
2239
  msgstr ""
2240
 
2241
- #: src/addons/migrator.php:2043
2242
  msgid "The key was successfully added."
2243
  msgstr ""
2244
 
2245
- #: src/addons/migrator.php:2027
2246
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2247
  msgstr ""
2248
 
2249
- #: src/addons/migrator.php:2016, src/addons/migrator.php:2018,
2250
- #: src/addons/migrator.php:2022
2251
  msgid "The entered key was corrupt - please try again."
2252
  msgstr ""
2253
 
2254
- #: src/addons/migrator.php:2014
2255
  msgid "The entered key was the wrong length - please try again."
2256
  msgstr ""
2257
 
2258
- #: src/addons/migrator.php:2004
2259
  msgid "key"
2260
  msgstr "চাবি"
2261
 
2262
- #: src/methods/ftp.php:352
2263
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2264
  msgstr ""
2265
 
2266
- #: src/methods/ftp.php:350
2267
  msgid "Passive mode"
2268
  msgstr ""
2269
 
2270
- #: src/methods/ftp.php:345
2271
  msgid "Remote path"
2272
  msgstr ""
2273
 
2274
- #: src/methods/ftp.php:340
2275
  msgid "FTP password"
2276
  msgstr "FTP পাসওয়ার্ড"
2277
 
2278
- #: src/methods/ftp.php:335
2279
  msgid "FTP login"
2280
  msgstr "FTP লগইন"
2281
 
2282
- #: src/methods/ftp.php:330
2283
  msgid "FTP server"
2284
  msgstr "FTP সার্ভার"
2285
 
2286
- #: src/addons/migrator.php:174
2287
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
2288
  msgstr ""
2289
 
2290
- #: src/addons/migrator.php:174
2291
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2292
  msgstr ""
2293
 
@@ -2295,7 +2323,7 @@ msgstr ""
2295
  msgid "Resetting..."
2296
  msgstr ""
2297
 
2298
- #: src/addons/migrator.php:2314, src/admin.php:717
2299
  msgid "Add site"
2300
  msgstr "সাইট যুক্ত করুন"
2301
 
@@ -2323,15 +2351,15 @@ msgstr "আপনি যদি আপনার পাসওয়ার্ডটি
2323
  msgid "Go here to re-enter your password."
2324
  msgstr "এখানে যান আপনার পাসওয়ার্ডটি পুনরাই দিতে।"
2325
 
2326
- #: src/addons/migrator.php:238
2327
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2328
  msgstr ""
2329
 
2330
- #: src/addons/migrator.php:209
2331
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2332
  msgstr ""
2333
 
2334
- #: src/addons/migrator.php:176
2335
  msgid "To restore using any of the backup sets below, press the button."
2336
  msgstr ""
2337
 
@@ -2339,49 +2367,49 @@ msgstr ""
2339
  msgid "You have made changes to your settings, and not saved."
2340
  msgstr ""
2341
 
2342
- #: src/addons/onedrive.php:1024
2343
  msgid "N.B. %s is not case-sensitive."
2344
  msgstr ""
2345
 
2346
- #: src/addons/onedrive.php:1014
2347
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2348
  msgstr ""
2349
 
2350
- #: src/addons/azure.php:544, src/addons/migrator.php:1886,
2351
- #: src/addons/onedrive.php:1000
2352
  msgid "For longer help, including screenshots, follow this link."
2353
  msgstr ""
2354
 
2355
- #: src/addons/onedrive.php:993
2356
  msgid "Create OneDrive credentials in your OneDrive developer console."
2357
  msgstr ""
2358
 
2359
- #: src/addons/onedrive.php:986
2360
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2361
  msgstr ""
2362
 
2363
- #: src/addons/azure.php:537
2364
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2365
  msgstr ""
2366
 
2367
- #: src/addons/onedrive.php:952, src/addons/onedrive.php:954
2368
  msgid "%s authorisation failed:"
2369
  msgstr ""
2370
 
2371
- #: src/addons/onedrive.php:827, src/addons/onedrive.php:1013,
2372
- #: src/addons/onedrive.php:1017
2373
  msgid "OneDrive"
2374
  msgstr "OneDrive"
2375
 
2376
- #: src/addons/onedrive.php:640
2377
  msgid "Please re-authorize the connection to your %s account."
2378
  msgstr ""
2379
 
2380
- #: src/methods/email.php:75
2381
  msgid "configure it here"
2382
  msgstr "এটিকে এইখানে কনফিগার করুন"
2383
 
2384
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657
2385
  msgid "To remove the block, please go here."
2386
  msgstr "ব্লক সরাতে, এখানে যান।"
2387
 
@@ -2526,7 +2554,7 @@ msgstr ""
2526
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2527
  msgstr ""
2528
 
2529
- #: src/methods/s3.php:879
2530
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2531
  msgstr ""
2532
 
@@ -2538,18 +2566,18 @@ msgstr ""
2538
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
2539
  msgstr ""
2540
 
2541
- #: src/addons/onedrive.php:609, src/addons/onedrive.php:633,
2542
- #: src/methods/updraftvault.php:657, src/udaddons/updraftplus-addons.php:873,
2543
  #: src/udaddons/updraftplus-addons.php:887
2544
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2545
  msgstr ""
2546
 
2547
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657,
2548
  #: src/udaddons/updraftplus-addons.php:887
2549
  msgid "It appears that your web server's IP Address (%s) is blocked."
2550
  msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
2551
 
2552
- #: src/addons/onedrive.php:633, src/methods/updraftvault.php:657,
2553
  #: src/udaddons/updraftplus-addons.php:887
2554
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2555
  msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
@@ -2601,7 +2629,7 @@ msgstr ""
2601
  msgid "(at same time as files backup)"
2602
  msgstr ""
2603
 
2604
- #: src/admin.php:3263
2605
  msgid "No backup has been completed"
2606
  msgstr ""
2607
 
@@ -2648,21 +2676,21 @@ msgstr "অথবা"
2648
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2649
  msgstr ""
2650
 
2651
- #: src/addons/sftp.php:436
2652
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2653
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2654
  msgstr ""
2655
 
2656
- #: src/addons/sftp.php:399
2657
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
2658
  msgstr ""
2659
 
2660
- #: src/methods/openstack2.php:183
2661
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2662
  msgid "tenant"
2663
  msgstr ""
2664
 
2665
- #: src/methods/openstack2.php:132
2666
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2667
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2668
  msgstr ""
@@ -2675,7 +2703,7 @@ msgstr ""
2675
  msgid "Check this box to have a basic report sent to"
2676
  msgstr ""
2677
 
2678
- #: src/admin.php:3277
2679
  msgctxt "i.e. Non-automatic"
2680
  msgid "Manual"
2681
  msgstr ""
@@ -2693,7 +2721,7 @@ msgstr "লক সেটিং পরিবর্তন করুন"
2693
  msgid "Any other file/directory on your server that you wish to back up"
2694
  msgstr ""
2695
 
2696
- #: src/admin.php:2440
2697
  msgid "For even more features and personal support, check out "
2698
  msgstr ""
2699
 
@@ -2787,7 +2815,7 @@ msgstr ""
2787
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2788
  msgstr ""
2789
 
2790
- #: src/admin.php:2806, src/admin.php:3823
2791
  msgid "View Log"
2792
  msgstr ""
2793
 
@@ -2804,7 +2832,7 @@ msgstr ""
2804
  msgid "and retain this many scheduled backups"
2805
  msgstr ""
2806
 
2807
- #: src/admin.php:3233
2808
  msgid "incremental backup; base backup: %s"
2809
  msgstr ""
2810
 
@@ -2816,28 +2844,28 @@ msgstr ""
2816
  msgid "Upload files into UpdraftPlus."
2817
  msgstr ""
2818
 
2819
- #: src/admin.php:950, src/includes/class-commands.php:394,
2820
  #: src/templates/wp-admin/settings/tab-status.php:22
2821
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2822
  msgstr ""
2823
 
2824
- #: src/class-updraftplus.php:4511
2825
  msgid "Backup label:"
2826
  msgstr ""
2827
 
2828
- #: src/addons/backblaze.php:189, src/admin.php:1951
2829
  msgid "Error: unexpected file read fail"
2830
  msgstr ""
2831
 
2832
- #: src/backup.php:3332
2833
  msgid "check your log for more details."
2834
  msgstr ""
2835
 
2836
- #: src/backup.php:3330
2837
  msgid "your web hosting account appears to be full; please see: %s"
2838
  msgstr ""
2839
 
2840
- #: src/backup.php:3328
2841
  msgid "A zip error occurred"
2842
  msgstr ""
2843
 
@@ -2845,19 +2873,19 @@ msgstr ""
2845
  msgid "Your label for this backup (optional)"
2846
  msgstr ""
2847
 
2848
- #: src/addons/googlecloud.php:916, src/methods/googledrive.php:1107
2849
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
2850
  msgstr ""
2851
 
2852
- #: src/methods/updraftvault.php:695, src/udaddons/updraftplus-addons.php:926
2853
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2854
  msgstr ""
2855
 
2856
- #: src/methods/updraftvault.php:692, src/udaddons/updraftplus-addons.php:922
2857
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2858
  msgstr ""
2859
 
2860
- #: src/methods/updraftvault.php:633, src/udaddons/updraftplus-addons.php:790
2861
  msgid "You need to supply both an email address and a password"
2862
  msgstr ""
2863
 
@@ -2865,36 +2893,36 @@ msgstr ""
2865
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2866
  msgstr ""
2867
 
2868
- #: src/class-updraftplus.php:4530
2869
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2870
  msgstr ""
2871
 
2872
- #: src/class-updraftplus.php:4530
2873
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2874
  msgstr ""
2875
 
2876
- #: src/addons/migrator.php:1184
2877
  msgid "already done"
2878
  msgstr ""
2879
 
2880
- #: src/addons/migrator.php:1141
2881
  msgid "skipped (not in list)"
2882
  msgstr ""
2883
 
2884
- #: src/addons/migrator.php:1141, src/addons/migrator.php:1184,
2885
- #: src/addons/migrator.php:1318
2886
  msgid "Search and replacing table:"
2887
  msgstr ""
2888
 
2889
- #: src/addons/migrator.php:350
2890
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2891
  msgstr ""
2892
 
2893
- #: src/addons/migrator.php:350
2894
  msgid "These tables only"
2895
  msgstr ""
2896
 
2897
- #: src/addons/migrator.php:349
2898
  msgid "Rows per batch"
2899
  msgstr ""
2900
 
@@ -2906,19 +2934,19 @@ msgstr ""
2906
  msgid "You need to connect to receive future updates to UpdraftPlus."
2907
  msgstr ""
2908
 
2909
- #: src/class-updraftplus.php:4503
2910
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2911
  msgstr ""
2912
 
2913
- #: src/class-updraftplus.php:4503
2914
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2915
  msgstr ""
2916
 
2917
- #: src/class-updraftplus.php:4503
2918
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2919
  msgstr ""
2920
 
2921
- #: src/class-updraftplus.php:4503
2922
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2923
  msgstr ""
2924
 
@@ -2947,7 +2975,7 @@ msgstr ""
2947
  msgid "UpdraftPlus is on social media - check us out!"
2948
  msgstr ""
2949
 
2950
- #: src/admin.php:3890
2951
  msgid "Why am I seeing this?"
2952
  msgstr "আমি কেন এটি দেখছি?"
2953
 
@@ -2959,15 +2987,15 @@ msgstr ""
2959
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2960
  msgstr ""
2961
 
2962
- #: src/admin.php:1890, src/admin.php:1902
2963
  msgid "Start backup"
2964
  msgstr "ব্যাকআপ শুরু করুন"
2965
 
2966
- #: src/class-updraftplus.php:4475, src/restorer.php:1045
2967
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2968
  msgstr ""
2969
 
2970
- #: src/admin.php:3131
2971
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
2972
  msgstr ""
2973
 
@@ -2975,11 +3003,11 @@ msgstr ""
2975
  msgid "Unless you have a problem, you can completely ignore everything here."
2976
  msgstr ""
2977
 
2978
- #: src/admin.php:2126
2979
  msgid "This file could not be uploaded"
2980
  msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
2981
 
2982
- #: src/admin.php:2089
2983
  msgid "You will find more information about this in the Settings section."
2984
  msgstr ""
2985
 
@@ -2999,15 +3027,15 @@ msgstr ""
2999
  msgid "Memory limit"
3000
  msgstr ""
3001
 
3002
- #: src/class-updraftplus.php:4944, src/restorer.php:1529
3003
  msgid "restoration"
3004
  msgstr ""
3005
 
3006
- #: src/backup.php:960
3007
  msgid "Incremental"
3008
  msgstr ""
3009
 
3010
- #: src/backup.php:960
3011
  msgid "Full backup"
3012
  msgstr ""
3013
 
@@ -3023,42 +3051,42 @@ msgstr ""
3023
  msgid "Backup succeeded"
3024
  msgstr ""
3025
 
3026
- #: src/admin.php:3278, src/admin.php:3279, src/admin.php:3280,
3027
  #: src/updraftplus.php:99, src/updraftplus.php:100
3028
  msgid "Every %s hours"
3029
  msgstr ""
3030
 
3031
- #: src/addons/migrator.php:835, src/addons/migrator.php:837
3032
  msgid "search and replace"
3033
  msgstr ""
3034
 
3035
- #: src/addons/migrator.php:352
3036
  msgid "Go"
3037
  msgstr ""
3038
 
3039
- #: src/addons/migrator.php:341
3040
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
3041
  msgstr ""
3042
 
3043
- #: src/addons/migrator.php:340
3044
  msgid "This can easily destroy your site; so, use it with care!"
3045
  msgstr ""
3046
 
3047
- #: src/addons/migrator.php:296, src/addons/migrator.php:348
3048
  msgid "Replace with"
3049
  msgstr ""
3050
 
3051
- #: src/addons/migrator.php:295, src/addons/migrator.php:347
3052
  msgid "Search for"
3053
  msgstr ""
3054
 
3055
- #: src/addons/migrator.php:294, src/addons/migrator.php:339,
3056
  #: src/templates/wp-admin/advanced/search-replace.php:7,
3057
  #: src/templates/wp-admin/advanced/tools-menu.php:18
3058
  msgid "Search / replace database"
3059
  msgstr ""
3060
 
3061
- #: src/addons/migrator.php:300
3062
  msgid "search term"
3063
  msgstr ""
3064
 
@@ -3066,19 +3094,19 @@ msgstr ""
3066
  msgid "Too many database errors have occurred - aborting"
3067
  msgstr ""
3068
 
3069
- #: src/backup.php:1026
3070
  msgid "read more at %s"
3071
  msgstr ""
3072
 
3073
- #: src/backup.php:1026
3074
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3075
  msgstr ""
3076
 
3077
- #: src/methods/googledrive.php:1114
3078
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
3079
  msgstr ""
3080
 
3081
- #: src/admin.php:3634
3082
  msgid "You have not yet made any backups."
3083
  msgstr ""
3084
 
@@ -3098,11 +3126,11 @@ msgstr ""
3098
  msgid "Free disk space in account:"
3099
  msgstr ""
3100
 
3101
- #: src/admin.php:4475, src/templates/wp-admin/settings/tab-status.php:27
3102
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3103
  msgstr ""
3104
 
3105
- #: src/admin.php:534, src/admin.php:676, src/admin.php:1736,
3106
  #: src/includes/deprecated-actions.php:29,
3107
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3108
  #: src/templates/wp-admin/settings/tab-bar.php:6
@@ -3113,15 +3141,15 @@ msgstr ""
3113
  msgid "Current Status"
3114
  msgstr ""
3115
 
3116
- #: src/admin.php:955
3117
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
3118
  msgstr ""
3119
 
3120
- #: src/admin.php:955
3121
  msgid "To make a backup, just press the Backup Now button."
3122
  msgstr ""
3123
 
3124
- #: src/admin.php:955
3125
  msgid "Welcome to UpdraftPlus!"
3126
  msgstr ""
3127
 
@@ -3193,11 +3221,11 @@ msgstr ""
3193
  msgid "user"
3194
  msgstr ""
3195
 
3196
- #: src/class-updraftplus.php:1760
3197
  msgid "External database (%s)"
3198
  msgstr ""
3199
 
3200
- #: src/methods/googledrive.php:1114
3201
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
3202
  msgstr ""
3203
 
@@ -3205,12 +3233,12 @@ msgstr ""
3205
  msgid "failed to access parent folder"
3206
  msgstr ""
3207
 
3208
- #: src/addons/googlecloud.php:631, src/addons/onedrive.php:795,
3209
- #: src/addons/onedrive.php:806, src/methods/googledrive.php:420
3210
  msgid "However, subsequent access attempts failed:"
3211
  msgstr ""
3212
 
3213
- #: src/admin.php:3659
3214
  msgid "External database"
3215
  msgstr ""
3216
 
@@ -3242,7 +3270,7 @@ msgstr ""
3242
  msgid "use UpdraftPlus Premium"
3243
  msgstr ""
3244
 
3245
- #: src/class-updraftplus.php:4362
3246
  msgid "Decryption failed. The database file is encrypted."
3247
  msgstr ""
3248
 
@@ -3255,15 +3283,15 @@ msgstr ""
3255
  msgid "An error occurred on the first %s command - aborting run"
3256
  msgstr ""
3257
 
3258
- #: src/addons/moredatabase.php:105, src/backup.php:1526
3259
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3260
  msgstr ""
3261
 
3262
- #: src/backup.php:1526
3263
  msgid "database connection attempt failed."
3264
  msgstr ""
3265
 
3266
- #: src/addons/migrator.php:1072
3267
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3268
  msgstr ""
3269
 
@@ -3271,41 +3299,41 @@ msgstr ""
3271
  msgid "In %s, path names are case sensitive."
3272
  msgstr ""
3273
 
3274
- #: src/addons/azure.php:563, src/addons/google-enhanced.php:76,
3275
- #: src/addons/onedrive.php:1024
3276
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3277
  msgstr ""
3278
 
3279
- #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:951,
3280
- #: src/addons/onedrive.php:1024
3281
  msgid "e.g. %s"
3282
  msgstr ""
3283
 
3284
- #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1024
3285
  msgid "Enter the path of the %s folder you wish to use here."
3286
  msgstr ""
3287
 
3288
- #: src/methods/openstack2.php:163
3289
  msgid "Container"
3290
  msgstr ""
3291
 
3292
- #: src/methods/openstack2.php:146
3293
  msgid "Leave this blank, and a default will be chosen."
3294
  msgstr ""
3295
 
3296
- #: src/methods/openstack2.php:137
3297
  msgid "Tenant"
3298
  msgstr ""
3299
 
3300
- #: src/methods/openstack2.php:137
3301
  msgid "Follow this link for more information"
3302
  msgstr ""
3303
 
3304
- #: src/methods/openstack2.php:129, src/methods/openstack2.php:188
3305
  msgid "authentication URI"
3306
  msgstr ""
3307
 
3308
- #: src/methods/openstack2.php:124
3309
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
3310
  msgstr ""
3311
 
@@ -3325,24 +3353,24 @@ msgstr ""
3325
  msgid "Failed to upload %s"
3326
  msgstr ""
3327
 
3328
- #: src/methods/dropbox.php:664, src/methods/dropbox.php:666
3329
  msgid "Success:"
3330
  msgstr ""
3331
 
3332
- #: src/addons/onedrive.php:1045, src/methods/dropbox.php:517
3333
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
3334
  msgstr ""
3335
 
3336
- #: src/addons/onedrive.php:1037, src/methods/dropbox.php:501
3337
  msgid "(You appear to be already authenticated)."
3338
  msgstr ""
3339
 
3340
- #: src/methods/dropbox.php:497, src/methods/dropbox.php:505,
3341
- #: src/methods/dropbox.php:517
3342
  msgid "Dropbox"
3343
  msgstr ""
3344
 
3345
- #: src/addons/onedrive.php:1030, src/methods/dropbox.php:497
3346
  msgid "Authenticate with %s"
3347
  msgstr ""
3348
 
@@ -3373,34 +3401,34 @@ msgstr ""
3373
  msgid "%s error - failed to access the container"
3374
  msgstr ""
3375
 
3376
- #: src/addons/googlecloud.php:1016, src/addons/onedrive.php:1069,
3377
- #: src/methods/dropbox.php:560, src/methods/googledrive.php:1179
3378
  msgid "Account holder's name: %s."
3379
  msgstr ""
3380
 
3381
- #: src/methods/googledrive.php:1157
3382
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3383
  msgstr ""
3384
 
3385
- #: src/methods/googledrive.php:1144
3386
  msgid "It is an ID number internal to Google Drive"
3387
  msgstr ""
3388
 
3389
- #: src/methods/googledrive.php:1144
3390
  msgid "<strong>This is NOT a folder name</strong>."
3391
  msgstr ""
3392
 
3393
- #: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1022,
3394
- #: src/methods/googledrive.php:1139, src/methods/googledrive.php:1150
3395
  msgid "Folder"
3396
  msgstr ""
3397
 
3398
- #: src/addons/googlecloud.php:296, src/addons/onedrive.php:377,
3399
- #: src/methods/googledrive.php:1063
3400
  msgid "%s download: failed: file not found"
3401
  msgstr ""
3402
 
3403
- #: src/addons/googlecloud.php:651, src/methods/googledrive.php:440
3404
  msgid "Name: %s."
3405
  msgstr ""
3406
 
@@ -3429,7 +3457,7 @@ msgstr ""
3429
  msgid "Fetch"
3430
  msgstr ""
3431
 
3432
- #: src/addons/migrator.php:433,
3433
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3434
  #: src/templates/wp-admin/settings/form-contents.php:190
3435
  msgid "This feature requires %s version %s or later"
@@ -3439,7 +3467,7 @@ msgstr ""
3439
  msgid "Failed to unpack the archive"
3440
  msgstr ""
3441
 
3442
- #: src/class-updraftplus.php:1292
3443
  msgid "Error - failed to download the file"
3444
  msgstr ""
3445
 
@@ -3459,16 +3487,16 @@ msgstr ""
3459
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3460
  msgstr ""
3461
 
3462
- #: src/addons/sftp.php:497
3463
  msgid "password/key"
3464
  msgstr ""
3465
 
3466
- #: src/addons/migrator.php:2332, src/addons/sftp.php:433, src/admin.php:723,
3467
- #: src/admin.php:4696
3468
  msgid "Key"
3469
  msgstr ""
3470
 
3471
- #: src/addons/sftp.php:428
3472
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3473
  msgstr ""
3474
 
@@ -3480,24 +3508,24 @@ msgstr ""
3480
  msgid "SCP/SFTP password/key"
3481
  msgstr ""
3482
 
3483
- #: src/admin.php:3703
3484
  msgid "Files backup (created by %s)"
3485
  msgstr ""
3486
 
3487
- #: src/admin.php:3703
3488
  msgid "Files and database WordPress backup (created by %s)"
3489
  msgstr ""
3490
 
3491
- #: src/addons/importer.php:276, src/admin.php:3697,
3492
  #: src/includes/class-backup-history.php:279
3493
  msgid "Backup created by: %s."
3494
  msgstr ""
3495
 
3496
- #: src/admin.php:3657
3497
  msgid "Database (created by %s)"
3498
  msgstr ""
3499
 
3500
- #: src/admin.php:3651, src/admin.php:3699
3501
  msgid "unknown source"
3502
  msgstr ""
3503
 
@@ -3509,15 +3537,15 @@ msgstr ""
3509
  msgid "Upload backup files"
3510
  msgstr ""
3511
 
3512
- #: src/admin.php:2141
3513
  msgid "This backup was created by %s, and can be imported."
3514
  msgstr ""
3515
 
3516
- #: src/admin.php:984
3517
  msgid "Read this page for a guide to possible causes and how to fix it."
3518
  msgstr ""
3519
 
3520
- #: src/admin.php:984
3521
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3522
  msgstr ""
3523
 
@@ -3534,7 +3562,7 @@ msgstr ""
3534
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3535
  msgstr ""
3536
 
3537
- #: src/admin.php:3700, src/includes/class-wpadmin-commands.php:152,
3538
  #: src/restorer.php:1498
3539
  msgid "Backup created by unknown source (%s) - cannot be restored."
3540
  msgstr ""
@@ -3547,16 +3575,16 @@ msgstr ""
3547
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3548
  msgstr ""
3549
 
3550
- #: src/methods/dropbox.php:309
3551
  msgid "%s returned an unexpected HTTP response: %s"
3552
  msgstr ""
3553
 
3554
- #: src/addons/sftp.php:967
3555
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3556
  msgstr ""
3557
 
3558
- #: src/addons/backblaze.php:525, src/methods/cloudfiles.php:234,
3559
- #: src/methods/dropbox.php:290, src/methods/openstack-base.php:118
3560
  msgid "No settings were found"
3561
  msgstr ""
3562
 
@@ -3568,7 +3596,7 @@ msgstr ""
3568
  msgid "Rescanning remote and local storage for backup sets..."
3569
  msgstr ""
3570
 
3571
- #: src/addons/googlecloud.php:954, src/addons/googlecloud.php:967,
3572
  #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
3573
  msgid "(Read more)"
3574
  msgstr ""
@@ -3586,7 +3614,7 @@ msgstr ""
3586
  msgid "Remove"
3587
  msgstr ""
3588
 
3589
- #: src/methods/s3.php:867
3590
  msgid "Other %s FAQs."
3591
  msgstr ""
3592
 
@@ -3594,28 +3622,28 @@ msgstr ""
3594
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3595
  msgstr ""
3596
 
3597
- #: src/addons/morefiles.php:445, src/admin.php:3382
3598
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3599
  msgstr ""
3600
 
3601
- #: src/class-updraftplus.php:4944, src/methods/ftp.php:309,
3602
  #: src/restorer.php:1529
3603
  msgid "Your hosting company must enable these functions before %s can work."
3604
  msgstr ""
3605
 
3606
- #: src/class-updraftplus.php:4944, src/methods/ftp.php:309
3607
  msgid "Your web server's PHP installation has these functions disabled: %s."
3608
  msgstr ""
3609
 
3610
- #: src/methods/ftp.php:306
3611
  msgid "encrypted FTP (explicit encryption)"
3612
  msgstr ""
3613
 
3614
- #: src/methods/ftp.php:305
3615
  msgid "encrypted FTP (implicit encryption)"
3616
  msgstr ""
3617
 
3618
- #: src/methods/ftp.php:304
3619
  msgid "regular non-encrypted FTP"
3620
  msgstr ""
3621
 
@@ -3673,15 +3701,15 @@ msgstr ""
3673
  msgid "Dismiss from main dashboard (for %s weeks)"
3674
  msgstr ""
3675
 
3676
- #: src/class-updraftplus.php:4994
3677
  msgid "The attempt to undo the double-compression succeeded."
3678
  msgstr ""
3679
 
3680
- #: src/class-updraftplus.php:4971, src/class-updraftplus.php:4992
3681
  msgid "The attempt to undo the double-compression failed."
3682
  msgstr ""
3683
 
3684
- #: src/class-updraftplus.php:4964
3685
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3686
  msgstr ""
3687
 
@@ -3689,15 +3717,15 @@ msgstr ""
3689
  msgid "Constants"
3690
  msgstr ""
3691
 
3692
- #: src/backup.php:1763
3693
  msgid "Failed to open database file for reading:"
3694
  msgstr ""
3695
 
3696
- #: src/backup.php:1574
3697
  msgid "No database tables found"
3698
  msgstr ""
3699
 
3700
- #: src/backup.php:1572
3701
  msgid "please wait for the rescheduled attempt"
3702
  msgstr ""
3703
 
@@ -3705,7 +3733,7 @@ msgstr ""
3705
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
3706
  msgstr ""
3707
 
3708
- #: src/addons/onedrive.php:94, src/methods/dropbox.php:199
3709
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
3710
  msgstr ""
3711
 
@@ -3714,7 +3742,7 @@ msgstr ""
3714
  msgid "Errors occurred:"
3715
  msgstr ""
3716
 
3717
- #: src/admin.php:3909
3718
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3719
  msgstr ""
3720
 
@@ -3738,20 +3766,20 @@ msgstr ""
3738
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3739
  msgstr ""
3740
 
3741
- #: src/admin.php:959, src/class-updraftplus.php:810
3742
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3743
  msgstr ""
3744
 
3745
- #: src/addons/migrator.php:267
3746
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3747
  msgstr ""
3748
 
3749
- #: src/addons/sftp.php:722, src/addons/sftp.php:725,
3750
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
3751
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3752
  msgstr ""
3753
 
3754
- #: src/addons/moredatabase.php:137, src/admin.php:1480
3755
  msgid "Messages:"
3756
  msgstr ""
3757
 
@@ -3763,56 +3791,56 @@ msgstr ""
3763
  msgid "The directory does not exist"
3764
  msgstr ""
3765
 
3766
- #: src/addons/cloudfiles-enhanced.php:277
3767
  msgid "New User's Email Address"
3768
  msgstr ""
3769
 
3770
- #: src/addons/cloudfiles-enhanced.php:274
3771
  msgid "New User's Username"
3772
  msgstr ""
3773
 
3774
- #: src/addons/cloudfiles-enhanced.php:271
3775
  msgid "Admin API Key"
3776
  msgstr ""
3777
 
3778
- #: src/addons/cloudfiles-enhanced.php:268
3779
  msgid "Admin Username"
3780
  msgstr ""
3781
 
3782
- #: src/addons/cloudfiles-enhanced.php:263
3783
  msgid "US or UK Rackspace Account"
3784
  msgstr ""
3785
 
3786
- #: src/addons/cloudfiles-enhanced.php:255
3787
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
3788
  msgstr ""
3789
 
3790
- #: src/addons/cloudfiles-enhanced.php:252
3791
  msgid "Create new API user and container"
3792
  msgstr ""
3793
 
3794
- #: src/addons/cloudfiles-enhanced.php:190
3795
  msgid "API Key: %s"
3796
  msgstr ""
3797
 
3798
- #: src/addons/cloudfiles-enhanced.php:190
3799
  msgid "Password: %s"
3800
  msgstr ""
3801
 
3802
- #: src/addons/cloudfiles-enhanced.php:190, src/addons/s3-enhanced.php:318
3803
  msgid "Username: %s"
3804
  msgstr ""
3805
 
3806
- #: src/addons/cloudfiles-enhanced.php:149,
3807
- #: src/addons/cloudfiles-enhanced.php:152,
3808
- #: src/addons/cloudfiles-enhanced.php:156,
3809
- #: src/addons/cloudfiles-enhanced.php:168,
3810
- #: src/addons/cloudfiles-enhanced.php:175,
3811
- #: src/addons/cloudfiles-enhanced.php:179
3812
  msgid "Cloud Files operation failed (%s)"
3813
  msgstr ""
3814
 
3815
- #: src/addons/cloudfiles-enhanced.php:147
3816
  msgid "Conflict: that user or email address already exists"
3817
  msgstr ""
3818
 
@@ -3848,71 +3876,71 @@ msgstr ""
3848
  msgid "Rackspace Cloud Files, enhanced"
3849
  msgstr ""
3850
 
3851
- #: src/addons/cloudfiles-enhanced.php:284, src/methods/cloudfiles-new.php:139,
3852
- #: src/methods/cloudfiles.php:482
3853
  msgid "Cloud Files Container"
3854
  msgstr ""
3855
 
3856
- #: src/methods/cloudfiles-new.php:134, src/methods/cloudfiles.php:477
3857
  msgid "Cloud Files API Key"
3858
  msgstr ""
3859
 
3860
- #: src/methods/cloudfiles-new.php:129
3861
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3862
  msgstr ""
3863
 
3864
- #: src/methods/cloudfiles-new.php:126
3865
  msgid "Cloud Files Username"
3866
  msgstr ""
3867
 
3868
- #: src/addons/cloudfiles-enhanced.php:47, src/methods/cloudfiles-new.php:158
3869
  msgid "London (LON)"
3870
  msgstr ""
3871
 
3872
- #: src/addons/cloudfiles-enhanced.php:46, src/methods/cloudfiles-new.php:157
3873
  msgid "Hong Kong (HKG)"
3874
  msgstr ""
3875
 
3876
- #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:156
3877
  msgid "Northern Virginia (IAD)"
3878
  msgstr ""
3879
 
3880
- #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:155
3881
  msgid "Chicago (ORD)"
3882
  msgstr ""
3883
 
3884
- #: src/addons/cloudfiles-enhanced.php:43, src/methods/cloudfiles-new.php:154
3885
  msgid "Sydney (SYD)"
3886
  msgstr ""
3887
 
3888
- #: src/addons/cloudfiles-enhanced.php:42, src/methods/cloudfiles-new.php:153
3889
  msgid "Dallas (DFW) (default)"
3890
  msgstr ""
3891
 
3892
- #: src/addons/cloudfiles-enhanced.php:280, src/methods/cloudfiles-new.php:116
3893
  msgid "Cloud Files Storage Region"
3894
  msgstr ""
3895
 
3896
- #: src/methods/cloudfiles-new.php:109
3897
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3898
  msgstr ""
3899
 
3900
- #: src/methods/cloudfiles-new.php:107
3901
  msgid "US or UK-based Rackspace Account"
3902
  msgstr ""
3903
 
3904
- #: src/addons/cloudfiles-enhanced.php:264, src/methods/cloudfiles-new.php:107
3905
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3906
  msgstr ""
3907
 
3908
- #: src/addons/cloudfiles-enhanced.php:145, src/addons/s3-enhanced.php:221,
3909
  #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:484,
3910
  #: src/methods/openstack-base.php:486, src/methods/openstack-base.php:507,
3911
  #: src/methods/openstack2.php:33
3912
  msgid "Authorisation failed (check your credentials)"
3913
  msgstr ""
3914
 
3915
- #: src/methods/updraftvault.php:607, src/udaddons/options.php:270
3916
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3917
  msgstr ""
3918
 
@@ -3928,15 +3956,15 @@ msgstr ""
3928
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3929
  msgstr ""
3930
 
3931
- #: src/admin.php:673, src/admin.php:4188
3932
  msgid "Error data:"
3933
  msgstr ""
3934
 
3935
- #: src/admin.php:3861
3936
  msgid "Backup does not exist in the backup history"
3937
  msgstr ""
3938
 
3939
- #: src/admin.php:2741
3940
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3941
  msgstr ""
3942
 
@@ -3976,11 +4004,11 @@ msgstr ""
3976
  msgid "Email reports"
3977
  msgstr ""
3978
 
3979
- #: src/class-updraftplus.php:1768, src/class-updraftplus.php:1773
3980
  msgid "%s checksum: %s"
3981
  msgstr ""
3982
 
3983
- #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1743
3984
  msgid "files: %s"
3985
  msgstr ""
3986
 
@@ -3992,7 +4020,7 @@ msgstr ""
3992
  msgid "Debugging information"
3993
  msgstr ""
3994
 
3995
- #: src/addons/reporting.php:222, src/admin.php:3590
3996
  msgid "Uploaded to:"
3997
  msgstr ""
3998
 
@@ -4033,22 +4061,22 @@ msgstr ""
4033
  msgid "%d errors, %d warnings"
4034
  msgstr ""
4035
 
4036
- #: src/addons/onedrive.php:751, src/methods/dropbox.php:648
4037
  msgid "%s authentication"
4038
  msgstr ""
4039
 
4040
- #: src/addons/onedrive.php:751, src/class-updraftplus.php:492,
4041
- #: src/methods/dropbox.php:172, src/methods/dropbox.php:608,
4042
- #: src/methods/dropbox.php:648, src/methods/dropbox.php:661,
4043
- #: src/methods/dropbox.php:805
4044
  msgid "%s error: %s"
4045
  msgstr ""
4046
 
4047
- #: src/addons/googlecloud.php:909, src/methods/dropbox.php:474
4048
  msgid "%s logo"
4049
  msgstr ""
4050
 
4051
- #: src/methods/dropbox.php:218
4052
  msgid "%s did not return the expected response - check your log file for more details"
4053
  msgstr ""
4054
 
@@ -4056,16 +4084,16 @@ msgstr ""
4056
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
4057
  msgstr ""
4058
 
4059
- #: src/methods/email.php:76
4060
  msgid "For more options, use the \"%s\" add-on."
4061
  msgstr ""
4062
 
4063
- #: src/methods/email.php:75
4064
  msgid "Your site's admin email address (%s) will be used."
4065
  msgstr ""
4066
 
4067
- #: src/admin.php:710, src/methods/updraftvault.php:296,
4068
- #: src/methods/updraftvault.php:339, src/udaddons/options.php:249
4069
  msgid "Connect"
4070
  msgstr ""
4071
 
@@ -4073,7 +4101,7 @@ msgstr ""
4073
  msgid "For more reporting features, use the Reporting add-on."
4074
  msgstr ""
4075
 
4076
- #: src/class-updraftplus.php:4443
4077
  msgid "(version: %s)"
4078
  msgstr ""
4079
 
@@ -4086,63 +4114,63 @@ msgstr ""
4086
  msgid "When the Email storage method is enabled, also send the entire backup"
4087
  msgstr ""
4088
 
4089
- #: src/addons/reporting.php:181, src/backup.php:1061
4090
  msgid "Latest status:"
4091
  msgstr ""
4092
 
4093
- #: src/backup.php:1060
4094
  msgid "Backup contains:"
4095
  msgstr ""
4096
 
4097
- #: src/backup.php:1017
4098
  msgid "Backed up: %s"
4099
  msgstr ""
4100
 
4101
- #: src/addons/reporting.php:264, src/backup.php:1011
4102
  msgid "The log file has been attached to this email."
4103
  msgstr ""
4104
 
4105
- #: src/backup.php:975
4106
  msgid "Unknown/unexpected error - please raise a support request"
4107
  msgstr ""
4108
 
4109
- #: src/backup.php:972
4110
  msgid "Database only (files were not part of this particular schedule)"
4111
  msgstr ""
4112
 
4113
- #: src/backup.php:972
4114
  msgid "Database (files backup has not completed)"
4115
  msgstr ""
4116
 
4117
- #: src/backup.php:969
4118
  msgid "Files only (database was not part of this particular schedule)"
4119
  msgstr ""
4120
 
4121
- #: src/backup.php:969
4122
  msgid "Files (database backup has not completed)"
4123
  msgstr ""
4124
 
4125
- #: src/admin.php:305, src/backup.php:967
4126
  msgid "Files and database"
4127
  msgstr ""
4128
 
4129
- #: src/options.php:192
4130
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4131
  msgstr ""
4132
 
4133
- #: src/options.php:192
4134
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4135
  msgstr ""
4136
 
4137
- #: src/options.php:192
4138
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4139
  msgstr ""
4140
 
4141
- #: src/options.php:192
4142
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4143
  msgstr ""
4144
 
4145
- #: src/options.php:192
4146
  msgid "UpdraftPlus warning:"
4147
  msgstr ""
4148
 
@@ -4186,16 +4214,16 @@ msgstr ""
4186
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4187
  msgstr ""
4188
 
4189
- #: src/methods/updraftvault.php:686, src/methods/updraftvault.php:701,
4190
  #: src/udaddons/updraftplus-addons.php:933
4191
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4192
  msgstr ""
4193
 
4194
- #: src/methods/updraftvault.php:698, src/udaddons/updraftplus-addons.php:929
4195
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4196
  msgstr ""
4197
 
4198
- #: src/methods/updraftvault.php:659, src/udaddons/updraftplus-addons.php:892
4199
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4200
  msgstr ""
4201
 
@@ -4207,14 +4235,14 @@ msgstr ""
4207
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4208
  msgstr ""
4209
 
4210
- #: src/methods/email.php:76,
4211
  #: src/templates/wp-admin/settings/form-contents.php:251,
4212
  #: src/templates/wp-admin/settings/tab-addons.php:203,
4213
  #: src/templates/wp-admin/settings/tab-addons.php:204
4214
  msgid "Reporting"
4215
  msgstr ""
4216
 
4217
- #: src/admin.php:4693
4218
  msgid "Options (raw)"
4219
  msgstr ""
4220
 
@@ -4234,11 +4262,11 @@ msgstr ""
4234
  msgid "See also the \"More Files\" add-on from our shop."
4235
  msgstr ""
4236
 
4237
- #: src/backup.php:3319, src/class-updraftplus.php:823
4238
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4239
  msgstr ""
4240
 
4241
- #: src/class-updraftplus.php:807
4242
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4243
  msgstr ""
4244
 
@@ -4366,7 +4394,7 @@ msgstr ""
4366
  msgid "Your web-server does not have the %s module installed."
4367
  msgstr ""
4368
 
4369
- #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1169
4370
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4371
  msgstr ""
4372
 
@@ -4390,7 +4418,7 @@ msgstr ""
4390
  msgid "Site home:"
4391
  msgstr ""
4392
 
4393
- #: src/addons/morestorage.php:72
4394
  msgid "Remote Storage Options"
4395
  msgstr ""
4396
 
@@ -4402,7 +4430,7 @@ msgstr ""
4402
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4403
  msgstr ""
4404
 
4405
- #: src/addons/azure.php:371, src/methods/stream-base.php:141,
4406
  #: src/methods/stream-base.php:146
4407
  msgid "Upload failed"
4408
  msgstr ""
@@ -4411,11 +4439,11 @@ msgstr ""
4411
  msgid "You can send a backup to more than one destination with an add-on."
4412
  msgstr ""
4413
 
4414
- #: src/admin.php:2964
4415
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4416
  msgstr ""
4417
 
4418
- #: src/admin.php:2863
4419
  msgid "(%s%%, file %s of %s)"
4420
  msgstr ""
4421
 
@@ -4424,15 +4452,15 @@ msgstr ""
4424
  msgid "Read more about how this works..."
4425
  msgstr ""
4426
 
4427
- #: src/addons/sftp.php:559
4428
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4429
  msgstr ""
4430
 
4431
- #: src/addons/sftp.php:557
4432
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4433
  msgstr ""
4434
 
4435
- #: src/addons/sftp.php:459
4436
  msgid "Use SCP instead of SFTP"
4437
  msgstr ""
4438
 
@@ -4456,11 +4484,11 @@ msgstr ""
4456
  msgid "%s settings test result:"
4457
  msgstr ""
4458
 
4459
- #: src/admin.php:3765, src/admin.php:3767
4460
  msgid "(Not finished)"
4461
  msgstr ""
4462
 
4463
- #: src/admin.php:3767
4464
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4465
  msgstr ""
4466
 
@@ -4472,77 +4500,77 @@ msgstr ""
4472
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4473
  msgstr ""
4474
 
4475
- #: src/admin.php:2959
4476
  msgid "Job ID: %s"
4477
  msgstr ""
4478
 
4479
- #: src/admin.php:2944
4480
  msgid "last activity: %ss ago"
4481
  msgstr ""
4482
 
4483
- #: src/admin.php:2943
4484
  msgid "next resumption: %d (after %ss)"
4485
  msgstr ""
4486
 
4487
- #: src/admin.php:2926, src/central/bootstrap.php:428,
4488
- #: src/central/bootstrap.php:435, src/methods/updraftvault.php:387,
4489
- #: src/methods/updraftvault.php:421, src/methods/updraftvault.php:506
4490
  msgid "Unknown"
4491
  msgstr ""
4492
 
4493
- #: src/admin.php:2877
4494
  msgid "Backup finished"
4495
  msgstr ""
4496
 
4497
- #: src/admin.php:2872
4498
  msgid "Waiting until scheduled time to retry because of errors"
4499
  msgstr ""
4500
 
4501
- #: src/admin.php:2868
4502
  msgid "Pruning old backup sets"
4503
  msgstr ""
4504
 
4505
- #: src/admin.php:2856
4506
  msgid "Uploading files to remote storage"
4507
  msgstr ""
4508
 
4509
- #: src/admin.php:2924
4510
  msgid "Encrypted database"
4511
  msgstr ""
4512
 
4513
- #: src/admin.php:2916
4514
  msgid "Encrypting database"
4515
  msgstr ""
4516
 
4517
- #: src/admin.php:2890
4518
  msgid "Created database backup"
4519
  msgstr ""
4520
 
4521
- #: src/admin.php:2903
4522
  msgid "table: %s"
4523
  msgstr ""
4524
 
4525
- #: src/admin.php:2901
4526
  msgid "Creating database backup"
4527
  msgstr ""
4528
 
4529
- #: src/admin.php:2851
4530
  msgid "Created file backup zips"
4531
  msgstr ""
4532
 
4533
- #: src/admin.php:2838
4534
  msgid "Creating file backup zips"
4535
  msgstr ""
4536
 
4537
- #: src/admin.php:2833
4538
  msgid "Backup begun"
4539
  msgstr ""
4540
 
4541
- #: src/admin.php:2666
4542
  msgid "Backups in progress:"
4543
  msgstr ""
4544
 
4545
- #: src/admin.php:963
4546
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
4547
  msgstr ""
4548
 
@@ -4558,20 +4586,20 @@ msgstr ""
4558
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4559
  msgstr ""
4560
 
4561
- #: src/class-updraftplus.php:2861
4562
  msgid "The backup has not finished; a resumption is scheduled"
4563
  msgstr ""
4564
 
4565
- #: src/class-updraftplus.php:2045
4566
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4567
  msgstr ""
4568
 
4569
- #: src/addons/onedrive.php:895,
4570
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4571
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4572
  msgstr ""
4573
 
4574
- #: src/admin.php:2467
4575
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4576
  msgstr ""
4577
 
@@ -4651,32 +4679,32 @@ msgstr ""
4651
  msgid "Support"
4652
  msgstr "সহায়তা"
4653
 
4654
- #: src/class-updraftplus.php:4743
4655
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4656
  msgstr ""
4657
 
4658
- #: src/class-updraftplus.php:4735
4659
  msgid "This database backup is missing core WordPress tables: %s"
4660
  msgstr ""
4661
 
4662
- #: src/class-updraftplus.php:4496
4663
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4664
  msgstr ""
4665
 
4666
- #: src/class-updraftplus.php:4495, src/class-updraftplus.php:4502
4667
  msgid "%s version: %s"
4668
  msgstr ""
4669
 
4670
- #: src/class-updraftplus.php:4379
4671
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4672
  msgstr ""
4673
 
4674
- #: src/addons/autobackup.php:1053, src/admin.php:798,
4675
  #: src/includes/updraftplus-notices.php:171
4676
  msgid "Be safe with an automatic backup"
4677
  msgstr ""
4678
 
4679
- #: src/admin.php:2420
4680
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4681
  msgstr ""
4682
 
@@ -4724,11 +4752,11 @@ msgstr ""
4724
  msgid "Delete from your web server"
4725
  msgstr ""
4726
 
4727
- #: src/admin.php:3737
4728
  msgid "You appear to be missing one or more archives from this multi-archive set."
4729
  msgstr ""
4730
 
4731
- #: src/admin.php:3734
4732
  msgid "(%d archive(s) in set)."
4733
  msgstr ""
4734
 
@@ -4748,7 +4776,7 @@ msgstr ""
4748
  msgid "Error: the server sent an empty response."
4749
  msgstr ""
4750
 
4751
- #: src/admin.php:2155
4752
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4753
  msgstr ""
4754
 
@@ -4784,7 +4812,7 @@ msgstr ""
4784
  msgid "No such backup set exists"
4785
  msgstr ""
4786
 
4787
- #: src/admin.php:1353
4788
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4789
  msgstr ""
4790
 
@@ -4792,7 +4820,7 @@ msgstr ""
4792
  msgid "Moving unpacked backup into place..."
4793
  msgstr ""
4794
 
4795
- #: src/backup.php:3020, src/backup.php:3275
4796
  msgid "Failed to open the zip file (%s) - %s"
4797
  msgstr ""
4798
 
@@ -4800,27 +4828,28 @@ msgstr ""
4800
  msgid "WordPress root directory server path: %s"
4801
  msgstr ""
4802
 
4803
- #: src/methods/dreamobjects.php:77, src/methods/s3generic.php:93
4804
  msgid "%s end-point"
4805
  msgstr ""
4806
 
4807
- #: src/methods/s3.php:835
4808
  msgid "... and many more!"
4809
  msgstr ""
4810
 
4811
- #: src/methods/s3generic.php:59, src/methods/s3generic.php:72
 
4812
  msgid "S3 (Compatible)"
4813
  msgstr ""
4814
 
4815
- #: src/admin.php:1263
4816
  msgid "File is not locally present - needs retrieving from remote storage"
4817
  msgstr ""
4818
 
4819
- #: src/admin.php:4040
4820
  msgid "Looking for %s archive: file name: %s"
4821
  msgstr ""
4822
 
4823
- #: src/admin.php:4001
4824
  msgid "Final checks"
4825
  msgstr ""
4826
 
@@ -4832,7 +4861,7 @@ msgstr ""
4832
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4833
  msgstr ""
4834
 
4835
- #: src/admin.php:3371
4836
  msgid "Your wp-content directory server path: %s"
4837
  msgstr ""
4838
 
@@ -4848,7 +4877,7 @@ msgstr ""
4848
  msgid "Processing files - please wait..."
4849
  msgstr ""
4850
 
4851
- #: src/admin.php:4190,
4852
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4853
  msgid "Please consult this FAQ for help on what to do about it."
4854
  msgstr ""
@@ -4857,11 +4886,11 @@ msgstr ""
4857
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4858
  msgstr ""
4859
 
4860
- #: src/class-updraftplus.php:4387
4861
  msgid "Failed to open database file."
4862
  msgstr ""
4863
 
4864
- #: src/admin.php:4658
4865
  msgid "Known backups (raw)"
4866
  msgstr ""
4867
 
@@ -4873,14 +4902,14 @@ msgstr ""
4873
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4874
  msgstr ""
4875
 
4876
- #: src/admin.php:4060
4877
  msgid "file is size:"
4878
  msgstr ""
4879
 
4880
- #: src/addons/googlecloud.php:946, src/addons/migrator.php:421,
4881
- #: src/addons/migrator.php:424, src/addons/migrator.php:427, src/admin.php:963,
4882
- #: src/admin.php:2425, src/backup.php:3326, src/class-updraftplus.php:4616,
4883
- #: src/class-updraftplus.php:4616, src/updraftplus.php:156
4884
  msgid "Go here for more information."
4885
  msgstr ""
4886
 
@@ -4888,7 +4917,7 @@ msgstr ""
4888
  msgid "Some files are still downloading or being processed - please wait."
4889
  msgstr ""
4890
 
4891
- #: src/class-updraftplus.php:4465, src/class-updraftplus.php:4486
4892
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4893
  msgstr ""
4894
 
@@ -4900,27 +4929,27 @@ msgstr ""
4900
  msgid "Enter in format HH:MM (e.g. 14:22)."
4901
  msgstr ""
4902
 
4903
- #: src/methods/ftp.php:127
4904
  msgid "%s upload failed"
4905
  msgstr ""
4906
 
4907
- #: src/methods/ftp.php:100, src/methods/ftp.php:151, src/methods/ftp.php:255
4908
  msgid "%s login failure"
4909
  msgstr ""
4910
 
4911
- #: src/methods/dropbox.php:413
4912
  msgid "You do not appear to be authenticated with %s"
4913
  msgstr ""
4914
 
4915
- #: src/methods/dropbox.php:380
4916
  msgid "Failed to access %s when deleting (see log file for more)"
4917
  msgstr ""
4918
 
4919
- #: src/methods/dropbox.php:372
4920
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4921
  msgstr ""
4922
 
4923
- #: src/methods/dropbox.php:127
4924
  msgid "Dropbox error: %s (see log file for more)"
4925
  msgstr ""
4926
 
@@ -4932,11 +4961,11 @@ msgstr ""
4932
  msgid "Error - no such file exists at %s"
4933
  msgstr ""
4934
 
4935
- #: src/addons/azure.php:219, src/methods/addon-base-v2.php:219,
4936
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
4937
- #: src/methods/googledrive.php:1023, src/methods/openstack-base.php:455,
4938
- #: src/methods/stream-base.php:278, src/methods/stream-base.php:285,
4939
- #: src/methods/stream-base.php:317
4940
  msgid "%s Error"
4941
  msgstr ""
4942
 
@@ -4944,7 +4973,7 @@ msgstr ""
4944
  msgid "%s error - failed to upload file"
4945
  msgstr ""
4946
 
4947
- #: src/class-updraftplus.php:1184, src/methods/cloudfiles.php:211
4948
  msgid "%s error - failed to re-assemble chunks"
4949
  msgstr ""
4950
 
@@ -4958,25 +4987,25 @@ msgstr ""
4958
  msgid "%s authentication failed"
4959
  msgstr ""
4960
 
4961
- #: src/addons/googlecloud.php:436, src/addons/migrator.php:519,
4962
- #: src/admin.php:2126, src/admin.php:2147, src/admin.php:2155,
4963
- #: src/class-updraftplus.php:952, src/class-updraftplus.php:958,
4964
- #: src/class-updraftplus.php:4360, src/class-updraftplus.php:4362,
4965
- #: src/class-updraftplus.php:4519, src/class-updraftplus.php:4526,
4966
- #: src/class-updraftplus.php:4595, src/methods/googledrive.php:381,
4967
  #: src/methods/s3.php:320
4968
  msgid "Error: %s"
4969
  msgstr ""
4970
 
4971
- #: src/admin.php:3296
4972
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4973
  msgstr ""
4974
 
4975
- #: src/admin.php:3294
4976
  msgid "Backup directory specified does <b>not</b> exist."
4977
  msgstr ""
4978
 
4979
- #: src/admin.php:2971, src/admin.php:3245
4980
  msgid "Warning: %s"
4981
  msgstr ""
4982
 
@@ -4984,55 +5013,55 @@ msgstr ""
4984
  msgid "Last backup job run:"
4985
  msgstr ""
4986
 
4987
- #: src/backup.php:3046
4988
  msgid "A very large file was encountered: %s (size: %s Mb)"
4989
  msgstr ""
4990
 
4991
- #: src/backup.php:2346
4992
  msgid "%s: unreadable file - could not be backed up"
4993
  msgstr ""
4994
 
4995
- #: src/backup.php:1663
4996
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
4997
  msgstr ""
4998
 
4999
- #: src/backup.php:1784
5000
  msgid "An error occurred whilst closing the final database file"
5001
  msgstr ""
5002
 
5003
- #: src/backup.php:1002
5004
  msgid "Warnings encountered:"
5005
  msgstr ""
5006
 
5007
- #: src/class-updraftplus.php:2849
5008
  msgid "The backup apparently succeeded (with warnings) and is now complete"
5009
  msgstr ""
5010
 
5011
- #: src/class-updraftplus.php:836
5012
  msgid "Your free disk space is very low - only %s Mb remain"
5013
  msgstr ""
5014
 
5015
- #: src/addons/migrator.php:527
5016
  msgid "New site:"
5017
  msgstr ""
5018
 
5019
- #: src/addons/migrator.php:502
5020
  msgid "Migrated site (from UpdraftPlus)"
5021
  msgstr ""
5022
 
5023
- #: src/addons/migrator.php:442
5024
  msgid "Enter details for where this new site is to live within your multisite install:"
5025
  msgstr ""
5026
 
5027
- #: src/addons/migrator.php:441
5028
  msgid "Information needed to continue:"
5029
  msgstr ""
5030
 
5031
- #: src/addons/migrator.php:385
5032
  msgid "Network activating theme:"
5033
  msgstr ""
5034
 
5035
- #: src/addons/migrator.php:375
5036
  msgid "Processed plugin:"
5037
  msgstr ""
5038
 
@@ -5044,15 +5073,15 @@ msgstr ""
5044
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
5045
  msgstr ""
5046
 
5047
- #: src/methods/s3.php:849
5048
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5049
  msgstr ""
5050
 
5051
- #: src/methods/s3.php:1096
5052
  msgid "Please check your access credentials."
5053
  msgstr ""
5054
 
5055
- #: src/addons/s3-enhanced.php:196, src/methods/s3.php:1074
5056
  msgid "The error reported by %s was:"
5057
  msgstr ""
5058
 
@@ -5060,7 +5089,7 @@ msgstr ""
5060
  msgid "Please supply the requested information, and then continue."
5061
  msgstr ""
5062
 
5063
- #: src/class-updraftplus.php:4537, src/restorer.php:1746
5064
  msgid "Site information:"
5065
  msgstr ""
5066
 
@@ -5068,20 +5097,20 @@ msgstr ""
5068
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
5069
  msgstr ""
5070
 
5071
- #: src/admin.php:2420, src/class-updraftplus.php:4530, src/restorer.php:2117
5072
  msgid "Warning:"
5073
  msgstr ""
5074
 
5075
- #: src/class-updraftplus.php:4519, src/class-updraftplus.php:4522,
5076
  #: src/restorer.php:184
5077
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5078
  msgstr ""
5079
 
5080
- #: src/admin.php:4028
5081
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
5082
  msgstr ""
5083
 
5084
- #: src/admin.php:3443, src/methods/updraftvault.php:283
5085
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5086
  msgstr ""
5087
 
@@ -5120,7 +5149,7 @@ msgstr ""
5120
  msgid "Do you want to migrate or clone/duplicate a site?"
5121
  msgstr ""
5122
 
5123
- #: src/addons/migrator.php:177
5124
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
5125
  msgstr ""
5126
 
@@ -5136,7 +5165,7 @@ msgstr ""
5136
  msgid "Also delete from remote storage"
5137
  msgstr ""
5138
 
5139
- #: src/admin.php:2693
5140
  msgid "Latest UpdraftPlus.com news:"
5141
  msgstr ""
5142
 
@@ -5153,7 +5182,7 @@ msgstr ""
5153
  msgid "News"
5154
  msgstr ""
5155
 
5156
- #: src/admin.php:1532, src/includes/class-wpadmin-commands.php:472
5157
  msgid "Backup set not found"
5158
  msgstr ""
5159
 
@@ -5183,15 +5212,15 @@ msgstr ""
5183
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5184
  msgstr ""
5185
 
5186
- #: src/admin.php:979
5187
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
5188
  msgstr ""
5189
 
5190
- #: src/admin.php:979
5191
  msgid "Notice"
5192
  msgstr ""
5193
 
5194
- #: src/backup.php:984
5195
  msgid "Errors encountered:"
5196
  msgstr ""
5197
 
@@ -5207,85 +5236,85 @@ msgstr ""
5207
  msgid "Store at"
5208
  msgstr ""
5209
 
5210
- #: src/addons/migrator.php:1487
5211
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5212
  msgstr ""
5213
 
5214
- #: src/addons/migrator.php:1361
5215
  msgid "rows: %d"
5216
  msgstr ""
5217
 
5218
- #: src/addons/migrator.php:1235
5219
  msgid "Time taken (seconds):"
5220
  msgstr ""
5221
 
5222
- #: src/addons/migrator.php:1234, src/admin.php:671
5223
  msgid "Errors:"
5224
  msgstr ""
5225
 
5226
- #: src/addons/migrator.php:1233
5227
  msgid "SQL update commands run:"
5228
  msgstr ""
5229
 
5230
- #: src/addons/migrator.php:1232
5231
  msgid "Changes made:"
5232
  msgstr ""
5233
 
5234
- #: src/addons/migrator.php:1231
5235
  msgid "Rows examined:"
5236
  msgstr ""
5237
 
5238
- #: src/addons/migrator.php:1230
5239
  msgid "Tables examined:"
5240
  msgstr ""
5241
 
5242
- #: src/addons/migrator.php:1119
5243
  msgid "Could not get list of tables"
5244
  msgstr ""
5245
 
5246
- #: src/addons/migrator.php:1064
5247
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5248
  msgstr ""
5249
 
5250
- #: src/addons/migrator.php:1053
5251
  msgid "Nothing to do: the site URL is already: %s"
5252
  msgstr ""
5253
 
5254
- #: src/addons/migrator.php:1017, src/addons/migrator.php:1021,
5255
- #: src/addons/migrator.php:1025, src/addons/migrator.php:1030,
5256
- #: src/addons/migrator.php:1034, src/addons/migrator.php:1039
5257
  msgid "Error: unexpected empty parameter (%s, %s)"
5258
  msgstr ""
5259
 
5260
- #: src/addons/migrator.php:977
5261
  msgid "Database: search and replace site URL"
5262
  msgstr ""
5263
 
5264
- #: src/addons/migrator.php:837, src/addons/migrator.php:1216
5265
  msgid "Failed: we did not understand the result returned by the %s operation."
5266
  msgstr ""
5267
 
5268
- #: src/addons/migrator.php:835, src/addons/migrator.php:1214
5269
  msgid "Failed: the %s operation was not able to start."
5270
  msgstr ""
5271
 
5272
- #: src/addons/migrator.php:494
5273
  msgid "Search and replace site location in the database (migrate)"
5274
  msgstr ""
5275
 
5276
- #: src/addons/migrator.php:494
5277
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5278
  msgstr ""
5279
 
5280
- #: src/addons/multisite.php:659
5281
  msgid "Blog uploads"
5282
  msgstr ""
5283
 
5284
- #: src/addons/migrator.php:427, src/addons/multisite.php:652
5285
  msgid "Must-use plugins"
5286
  msgstr ""
5287
 
5288
- #: src/addons/multisite.php:174
5289
  msgid "Multisite Install"
5290
  msgstr ""
5291
 
@@ -5293,43 +5322,43 @@ msgstr ""
5293
  msgid "starting from next time it is"
5294
  msgstr ""
5295
 
5296
- #: src/addons/sftp.php:502
5297
  msgid "Failure: Port must be an integer."
5298
  msgstr ""
5299
 
5300
- #: src/methods/ftp.php:384, src/methods/openstack2.php:178
5301
  msgid "password"
5302
  msgstr ""
5303
 
5304
- #: src/addons/sftp.php:493, src/methods/openstack2.php:173
5305
  msgid "username"
5306
  msgstr ""
5307
 
5308
- #: src/addons/sftp.php:489
5309
  msgid "host name"
5310
  msgstr ""
5311
 
5312
- #: src/addons/sftp.php:452
5313
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5314
  msgstr ""
5315
 
5316
- #: src/addons/sftp.php:450
5317
  msgid "Directory path"
5318
  msgstr ""
5319
 
5320
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5321
- #: src/addons/sftp.php:425, src/addons/webdav.php:102,
5322
- #: src/methods/openstack2.php:157, src/methods/updraftvault.php:338,
5323
  #: src/udaddons/options.php:135
5324
  msgid "Password"
5325
  msgstr ""
5326
 
5327
- #: src/addons/sftp.php:411, src/addons/webdav.php:116
5328
  msgid "Port"
5329
  msgstr ""
5330
 
5331
- #: src/addons/moredatabase.php:244, src/addons/sftp.php:404,
5332
- #: src/addons/webdav.php:108
5333
  msgid "Host"
5334
  msgstr ""
5335
 
@@ -5337,7 +5366,7 @@ msgstr ""
5337
  msgid "%s Error: Failed to download"
5338
  msgstr ""
5339
 
5340
- #: src/addons/sftp.php:534
5341
  msgid "Check your file permissions: Could not successfully create and enter:"
5342
  msgstr ""
5343
 
@@ -5381,26 +5410,26 @@ msgstr ""
5381
  msgid "WordPress Core"
5382
  msgstr ""
5383
 
5384
- #: src/methods/addon-base-v2.php:316, src/methods/stream-base.php:347
5385
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5386
  msgstr ""
5387
 
5388
- #: src/addons/googlecloud.php:709, src/addons/googlecloud.php:743,
5389
- #: src/addons/googlecloud.php:749, src/addons/sftp.php:520, src/admin.php:3027,
5390
- #: src/admin.php:3062, src/admin.php:3071, src/methods/addon-base-v2.php:304,
5391
- #: src/methods/stream-base.php:333
5392
  msgid "Failed"
5393
  msgstr ""
5394
 
5395
- #: src/addons/webdav.php:78
5396
  msgid "WebDAV URL"
5397
  msgstr ""
5398
 
5399
- #: src/methods/stream-base.php:317
5400
  msgid "Local write failed: Failed to download"
5401
  msgstr ""
5402
 
5403
- #: src/methods/stream-base.php:285
5404
  msgid "Error opening remote file: Failed to download"
5405
  msgstr ""
5406
 
@@ -5411,136 +5440,136 @@ msgstr ""
5411
  #: src/addons/googlecloud.php:322, src/addons/sftp.php:45,
5412
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
5413
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5414
- #: src/methods/addon-base-v2.php:283, src/methods/ftp.php:42,
5415
  #: src/methods/googledrive.php:182, src/methods/googledrive.php:184,
5416
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:161,
5417
  #: src/methods/stream-base.php:167, src/methods/stream-base.php:201,
5418
- #: src/methods/stream-base.php:259
5419
  msgid "No %s settings were found"
5420
  msgstr ""
5421
 
5422
- #: src/methods/ftp.php:406
5423
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5424
  msgstr ""
5425
 
5426
- #: src/methods/ftp.php:403
5427
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5428
  msgstr ""
5429
 
5430
- #: src/methods/ftp.php:394
5431
  msgid "Failure: we did not successfully log in with those credentials."
5432
  msgstr ""
5433
 
5434
- #: src/methods/ftp.php:376
5435
  msgid "Failure: No server details were given."
5436
  msgstr ""
5437
 
5438
- #: src/methods/ftp.php:346
5439
  msgid "Needs to already exist"
5440
  msgstr ""
5441
 
5442
- #: src/methods/ftp.php:326
5443
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5444
  msgstr ""
5445
 
5446
- #: src/addons/onedrive.php:789, src/methods/dropbox.php:679
5447
  msgid "Your %s account name: %s"
5448
  msgstr ""
5449
 
5450
- #: src/methods/dropbox.php:669, src/methods/dropbox.php:691
5451
  msgid "though part of the returned information was not as expected - your mileage may vary"
5452
  msgstr ""
5453
 
5454
- #: src/methods/dropbox.php:664, src/methods/dropbox.php:666
5455
  msgid "you have authenticated your %s account"
5456
  msgstr ""
5457
 
5458
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5459
  msgid "there's an add-on for that."
5460
  msgstr ""
5461
 
5462
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5463
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5464
  msgstr ""
5465
 
5466
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5467
  msgid "Backups are saved in"
5468
  msgstr ""
5469
 
5470
- #: src/methods/dropbox.php:489, src/methods/dropbox.php:491
5471
  msgid "Need to use sub-folders?"
5472
  msgstr ""
5473
 
5474
- #: src/methods/dropbox.php:216, src/methods/dropbox.php:237,
5475
- #: src/methods/dropbox.php:253
5476
  msgid "error: failed to upload file to %s (see log file for more)"
5477
  msgstr ""
5478
 
5479
- #: src/methods/dropbox.php:105, src/methods/dropbox.php:122
5480
  msgid "You do not appear to be authenticated with Dropbox"
5481
  msgstr ""
5482
 
5483
- #: src/methods/s3.php:1091
5484
  msgid "The communication with %s was not encrypted."
5485
  msgstr ""
5486
 
5487
- #: src/methods/s3.php:1089
5488
  msgid "The communication with %s was encrypted."
5489
  msgstr ""
5490
 
5491
- #: src/addons/googlecloud.php:772, src/methods/s3.php:1086
5492
  msgid "We accessed the bucket, and were able to create files within it."
5493
  msgstr ""
5494
 
5495
- #: src/addons/googlecloud.php:766, src/addons/googlecloud.php:780,
5496
- #: src/methods/s3.php:1084, src/methods/s3.php:1096
5497
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5498
  msgstr ""
5499
 
5500
- #: src/addons/googlecloud.php:766, src/addons/googlecloud.php:780,
5501
- #: src/methods/s3.php:1084, src/methods/s3.php:1096
5502
  msgid "Failure"
5503
  msgstr ""
5504
 
5505
- #: src/methods/s3.php:1072
5506
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5507
  msgstr ""
5508
 
5509
- #: src/addons/s3-enhanced.php:169, src/methods/openstack2.php:143,
5510
- #: src/methods/s3.php:1066
5511
  msgid "Region"
5512
  msgstr ""
5513
 
5514
- #: src/addons/googlecloud.php:118, src/addons/googlecloud.php:726,
5515
- #: src/methods/s3.php:1048
5516
  msgid "Failure: No bucket details were given."
5517
  msgstr ""
5518
 
5519
- #: src/methods/s3.php:1026
5520
  msgid "API secret"
5521
  msgstr ""
5522
 
5523
- #: src/methods/s3.php:893
5524
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5525
  msgstr ""
5526
 
5527
- #: src/methods/s3.php:892
5528
  msgid "%s location"
5529
  msgstr ""
5530
 
5531
- #: src/methods/s3.php:888
5532
  msgid "%s secret key"
5533
  msgstr ""
5534
 
5535
- #: src/methods/s3.php:884
5536
  msgid "%s access key"
5537
  msgstr ""
5538
 
5539
- #: src/methods/s3.php:865
5540
  msgid "If you see errors about SSL certificates, then please go here for help."
5541
  msgstr ""
5542
 
5543
- #: src/methods/s3.php:863
5544
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5545
  msgstr ""
5546
 
@@ -5573,7 +5602,7 @@ msgstr ""
5573
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5574
  msgstr ""
5575
 
5576
- #: src/methods/email.php:71
5577
  msgid "Note:"
5578
  msgstr ""
5579
 
@@ -5581,81 +5610,81 @@ msgstr ""
5581
  msgid "WordPress Backup"
5582
  msgstr ""
5583
 
5584
- #: src/methods/cloudfiles.php:560, src/methods/openstack-base.php:530
5585
  msgid "We accessed the container, and were able to create files within it."
5586
  msgstr ""
5587
 
5588
- #: src/methods/cloudfiles.php:556
5589
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5590
  msgstr ""
5591
 
5592
- #: src/methods/cloudfiles.php:529, src/methods/openstack-base.php:472
5593
  msgid "Failure: No container details were given."
5594
  msgstr ""
5595
 
5596
- #: src/addons/moredatabase.php:245, src/addons/sftp.php:418,
5597
- #: src/addons/webdav.php:96, src/methods/cloudfiles-new.php:176,
5598
- #: src/methods/cloudfiles.php:509, src/methods/openstack2.php:151
5599
  msgid "Username"
5600
  msgstr "ব্যবহারকারী নাম"
5601
 
5602
- #: src/methods/cloudfiles-new.php:171, src/methods/cloudfiles.php:504,
5603
- #: src/methods/s3.php:1022
5604
  msgid "API key"
5605
  msgstr ""
5606
 
5607
- #: src/addons/migrator.php:300, src/addons/migrator.php:2004,
5608
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5609
- #: src/addons/moredatabase.php:86, src/addons/sftp.php:489,
5610
- #: src/addons/sftp.php:493, src/addons/sftp.php:497, src/addons/webdav.php:162,
5611
- #: src/admin.php:724, src/methods/addon-base-v2.php:296,
5612
- #: src/methods/cloudfiles-new.php:171, src/methods/cloudfiles-new.php:176,
5613
- #: src/methods/cloudfiles.php:504, src/methods/cloudfiles.php:509,
5614
- #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5615
- #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5616
- #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5617
- #: src/methods/s3.php:1022, src/methods/s3.php:1026
5618
  msgid "Failure: No %s was given."
5619
  msgstr ""
5620
 
5621
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
5622
- #: src/methods/openstack-base.php:573, src/methods/s3.php:853
5623
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5624
  msgstr ""
5625
 
5626
- #: src/methods/cloudfiles.php:473
5627
  msgid "Cloud Files username"
5628
  msgstr ""
5629
 
5630
- #: src/addons/cloudfiles-enhanced.php:38, src/methods/cloudfiles-new.php:111,
5631
- #: src/methods/cloudfiles.php:456
5632
  msgid "UK"
5633
  msgstr ""
5634
 
5635
- #: src/addons/cloudfiles-enhanced.php:37, src/methods/cloudfiles-new.php:110,
5636
- #: src/methods/cloudfiles.php:455
5637
  msgid "US (default)"
5638
  msgstr ""
5639
 
5640
- #: src/methods/cloudfiles.php:452
5641
  msgid "US or UK Cloud"
5642
  msgstr ""
5643
 
5644
- #: src/methods/cloudfiles-new.php:103, src/methods/cloudfiles.php:448,
5645
- #: src/methods/openstack2.php:124
5646
  msgid "Also, you should read this important FAQ."
5647
  msgstr ""
5648
 
5649
- #: src/methods/cloudfiles-new.php:103, src/methods/cloudfiles.php:448
5650
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5651
  msgstr ""
5652
 
5653
- #: src/admin.php:747, src/methods/backup-module.php:285
5654
  msgid "Test %s Settings"
5655
  msgstr ""
5656
 
5657
- #: src/class-updraftplus.php:1224, src/class-updraftplus.php:1268,
5658
- #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:278
5659
  msgid "Error opening local file: Failed to download"
5660
  msgstr ""
5661
 
@@ -5671,8 +5700,8 @@ msgid "%s Error: Failed to upload"
5671
  msgstr ""
5672
 
5673
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
5674
- #: src/class-updraftplus.php:1082, src/methods/cloudfiles.php:130,
5675
- #: src/methods/googledrive.php:941, src/methods/googledrive.php:946
5676
  msgid "%s Error: Failed to open local file"
5677
  msgstr ""
5678
 
@@ -5681,56 +5710,49 @@ msgstr ""
5681
  msgid "Cloud Files error - failed to create and access the container"
5682
  msgstr ""
5683
 
5684
- #: src/addons/cloudfiles-enhanced.php:105,
5685
- #: src/addons/cloudfiles-enhanced.php:118,
5686
- #: src/addons/cloudfiles-enhanced.php:122, src/methods/cloudfiles.php:539,
5687
- #: src/methods/cloudfiles.php:542, src/methods/cloudfiles.php:545
5688
  msgid "Cloud Files authentication failed"
5689
  msgstr ""
5690
 
5691
- #: src/addons/googlecloud.php:992, src/methods/googledrive.php:1186
5692
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5693
  msgstr ""
5694
 
5695
- #: src/methods/googledrive.php:1164
5696
  msgid "Authenticate with Google"
5697
  msgstr ""
5698
 
5699
- #: src/addons/googlecloud.php:939, src/addons/onedrive.php:1017,
5700
- #: src/methods/googledrive.php:1128
5701
  msgid "Client Secret"
5702
  msgstr ""
5703
 
5704
- #: src/addons/googlecloud.php:934, src/methods/googledrive.php:1125
5705
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5706
  msgstr ""
5707
 
5708
- #: src/addons/googlecloud.php:931, src/addons/onedrive.php:1013,
5709
- #: src/methods/googledrive.php:1124
5710
  msgid "Client ID"
5711
  msgstr ""
5712
 
5713
- #: src/addons/googlecloud.php:922, src/methods/googledrive.php:1114
5714
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5715
  msgstr ""
5716
 
5717
- #: src/addons/googlecloud.php:922, src/methods/googledrive.php:1114
5718
  msgid "Select 'Web Application' as the application type."
5719
  msgstr ""
5720
 
5721
- #: src/addons/googlecloud.php:920, src/methods/googledrive.php:1112
5722
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5723
  msgstr ""
5724
 
5725
- #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:432,
5726
- #: src/methods/dropbox.php:475, src/methods/ftp.php:321,
5727
- #: src/methods/googledrive.php:1095, src/methods/openstack-base.php:564,
5728
- #: src/methods/s3.php:824, src/methods/stream-base.php:233
5729
- msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5730
- msgstr ""
5731
-
5732
  #: src/addons/googlecloud.php:505, src/addons/googlecloud.php:506,
5733
- #: src/addons/googlecloud.php:799, src/methods/googledrive.php:545,
5734
  #: src/methods/googledrive.php:546, src/methods/googledrive.php:556,
5735
  #: src/methods/googledrive.php:557
5736
  msgid "Account is not authorized."
@@ -5750,21 +5772,21 @@ msgstr ""
5750
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5751
  msgstr ""
5752
 
5753
- #: src/addons/googlecloud.php:651, src/addons/onedrive.php:827,
5754
  #: src/methods/googledrive.php:440
5755
  msgid "you have authenticated your %s account."
5756
  msgstr ""
5757
 
5758
- #: src/addons/googlecloud.php:651, src/addons/googlecloud.php:772,
5759
- #: src/addons/onedrive.php:827, src/addons/sftp.php:554,
5760
- #: src/methods/addon-base-v2.php:313, src/methods/cloudfiles.php:560,
5761
  #: src/methods/googledrive.php:440, src/methods/openstack-base.php:530,
5762
- #: src/methods/s3.php:1086, src/methods/stream-base.php:344
5763
  msgid "Success"
5764
  msgstr ""
5765
 
5766
- #: src/addons/onedrive.php:781, src/methods/dropbox.php:702,
5767
- #: src/methods/dropbox.php:711, src/methods/googledrive.php:414
5768
  msgid "Your %s quota usage: %s %% used, %s available"
5769
  msgstr ""
5770
 
@@ -5795,8 +5817,8 @@ msgstr ""
5795
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5796
  msgstr ""
5797
 
5798
- #: src/addons/migrator.php:1899, src/admin.php:1291, src/admin.php:3030,
5799
- #: src/admin.php:3064, src/admin.php:3068, src/admin.php:4058,
5800
  #: src/restorer.php:2358, src/restorer.php:2463
5801
  msgid "OK"
5802
  msgstr "ঠিক আছে"
@@ -5805,7 +5827,7 @@ msgstr "ঠিক আছে"
5805
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5806
  msgstr ""
5807
 
5808
- #: src/addons/migrator.php:1249, src/restorer.php:2254
5809
  msgid "the database query being run was:"
5810
  msgstr ""
5811
 
@@ -5813,13 +5835,13 @@ msgstr ""
5813
  msgid "will restore as:"
5814
  msgstr ""
5815
 
5816
- #: src/class-updraftplus.php:4508, src/restorer.php:1728,
5817
  #: src/restorer.php:1817, src/restorer.php:1843
5818
  msgid "Old table prefix:"
5819
  msgstr ""
5820
 
5821
  #: src/addons/reporting.php:70, src/addons/reporting.php:180,
5822
- #: src/backup.php:1058, src/class-updraftplus.php:4443
5823
  msgid "Backup of:"
5824
  msgstr ""
5825
 
@@ -5891,60 +5913,60 @@ msgstr ""
5891
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5892
  msgstr ""
5893
 
5894
- #: src/admin.php:4066, src/admin.php:4067
5895
  msgid "Could not find one of the files for restoration"
5896
  msgstr ""
5897
 
5898
- #: src/admin.php:4180
5899
  msgid "Error message"
5900
  msgstr ""
5901
 
5902
- #: src/admin.php:4063
5903
  msgid "The backup records do not contain information about the proper size of this file."
5904
  msgstr ""
5905
 
5906
- #: src/admin.php:4055
5907
  msgid "Archive is expected to be size:"
5908
  msgstr ""
5909
 
5910
- #: src/admin.php:3953
5911
  msgid "If making a request for support, please include this information:"
5912
  msgstr ""
5913
 
5914
- #: src/admin.php:3952
5915
  msgid "ABORT: Could not find the information on which entities to restore."
5916
  msgstr ""
5917
 
5918
- #: src/admin.php:3907
5919
  msgid "UpdraftPlus Restoration: Progress"
5920
  msgstr ""
5921
 
5922
- #: src/admin.php:3860
5923
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5924
  msgstr ""
5925
 
5926
- #: src/admin.php:3795
5927
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5928
  msgstr ""
5929
 
5930
- #: src/admin.php:3813
5931
  msgid "Delete this backup set"
5932
  msgstr ""
5933
 
5934
- #: src/admin.php:3455
5935
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5936
  msgstr ""
5937
 
5938
- #: src/admin.php:3452
5939
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5940
  msgstr ""
5941
 
5942
- #: src/admin.php:3450
5943
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5944
  msgstr ""
5945
 
5946
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
5947
- #: src/methods/openstack-base.php:573, src/methods/s3.php:853
5948
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5949
  msgstr ""
5950
 
@@ -5980,23 +6002,23 @@ msgstr ""
5980
  msgid "Use the server's SSL certificates"
5981
  msgstr ""
5982
 
5983
- #: src/admin.php:3298
5984
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
5985
  msgstr ""
5986
 
5987
- #: src/admin.php:3298
5988
  msgid "click here"
5989
  msgstr "এখানে ক্লিক করুন"
5990
 
5991
- #: src/admin.php:3298
5992
  msgid "or, to reset this option"
5993
  msgstr ""
5994
 
5995
- #: src/admin.php:3298
5996
  msgid "Follow this link to attempt to create the directory and set the permissions"
5997
  msgstr ""
5998
 
5999
- #: src/admin.php:3290
6000
  msgid "Backup directory specified is writable, which is good."
6001
  msgstr ""
6002
 
@@ -6036,7 +6058,7 @@ msgstr ""
6036
  msgid "Cancel"
6037
  msgstr "বাতিল"
6038
 
6039
- #: src/addons/reporting.php:244, src/admin.php:3602
6040
  msgid "None"
6041
  msgstr "কোনটিই না"
6042
 
@@ -6061,11 +6083,11 @@ msgstr ""
6061
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6062
  msgstr ""
6063
 
6064
- #: src/addons/morefiles.php:443, src/admin.php:3380
6065
  msgid "Exclude these:"
6066
  msgstr ""
6067
 
6068
- #: src/admin.php:3371
6069
  msgid "Any other directories found inside wp-content"
6070
  msgstr ""
6071
 
@@ -6081,45 +6103,45 @@ msgstr ""
6081
  msgid "To fix the time at which a backup should take place,"
6082
  msgstr ""
6083
 
6084
- #: src/admin.php:3284
6085
  msgid "Monthly"
6086
  msgstr "মাসিক"
6087
 
6088
- #: src/admin.php:3283
6089
  msgid "Fortnightly"
6090
  msgstr "পাক্ষিক"
6091
 
6092
- #: src/admin.php:3282
6093
  msgid "Weekly"
6094
  msgstr "সাপ্তাহিক"
6095
 
6096
- #: src/admin.php:3281
6097
  msgid "Daily"
6098
  msgstr ""
6099
 
6100
- #: src/admin.php:706, src/admin.php:3259
6101
  msgid "Download log file"
6102
  msgstr "লগ ফাইল ডাউনলোড করুন"
6103
 
6104
- #: src/admin.php:3131
6105
  msgid "The folder exists, but your webserver does not have permission to write to it."
6106
  msgstr ""
6107
 
6108
- #: src/admin.php:3126
6109
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
6110
  msgstr ""
6111
 
6112
- #: src/admin.php:3112
6113
  msgid "The request to the filesystem to create the directory failed."
6114
  msgstr ""
6115
 
6116
- #: src/addons/migrator.php:2377, src/admin.php:700, src/admin.php:3024,
6117
- #: src/admin.php:3057, src/admin.php:3813,
6118
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6119
  msgid "Delete"
6120
  msgstr "মুছুন"
6121
 
6122
- #: src/admin.php:2962
6123
  msgid "show log"
6124
  msgstr "লগ দেখান"
6125
 
@@ -6232,7 +6254,7 @@ msgstr ""
6232
  msgid "Do read this helpful article of useful things to know before restoring."
6233
  msgstr ""
6234
 
6235
- #: src/class-updraftplus.php:4468
6236
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
6237
  msgstr ""
6238
 
@@ -6276,19 +6298,19 @@ msgstr ""
6276
  msgid "Download error: the server sent us a response which we did not understand."
6277
  msgstr ""
6278
 
6279
- #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:108,
6280
- #: src/addons/migrator.php:822, src/addons/migrator.php:1119,
6281
- #: src/addons/migrator.php:1200, src/addons/migrator.php:1249,
6282
- #: src/addons/migrator.php:1487, src/addons/migrator.php:1838,
6283
- #: src/addons/migrator.php:1865, src/addons/migrator.php:1871,
6284
- #: src/addons/migrator.php:1933, src/addons/migrator.php:1973,
6285
- #: src/addons/migrator.php:2012, src/addons/migrator.php:2022,
6286
- #: src/addons/migrator.php:2027, src/addons/s3-enhanced.php:144,
6287
  #: src/addons/s3-enhanced.php:149, src/addons/s3-enhanced.php:151,
6288
- #: src/addons/sftp.php:818, src/addons/webdav.php:112, src/admin.php:87,
6289
- #: src/admin.php:674, src/admin.php:4060, src/admin.php:4090,
6290
  #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6291
- #: src/methods/updraftvault.php:504, src/restorer.php:1444
6292
  msgid "Error:"
6293
  msgstr ""
6294
 
@@ -6318,10 +6340,10 @@ msgstr ""
6318
  #: src/methods/googledrive.php:467, src/methods/googledrive.php:496,
6319
  #: src/methods/googledrive.php:503, src/methods/googledrive.php:513,
6320
  #: src/methods/googledrive.php:519, src/methods/googledrive.php:521,
6321
- #: src/methods/googledrive.php:1094, src/methods/googledrive.php:1107,
6322
- #: src/methods/googledrive.php:1107, src/methods/googledrive.php:1124,
6323
- #: src/methods/googledrive.php:1128, src/methods/googledrive.php:1139,
6324
- #: src/methods/googledrive.php:1150, src/methods/googledrive.php:1170
6325
  msgid "Google Drive"
6326
  msgstr "গুগোল ড্রাইভ"
6327
 
@@ -6337,20 +6359,20 @@ msgstr "অপেরা ওযেব ব্রাউজার"
6337
  msgid "More tasks:"
6338
  msgstr "আরও টাস্ক:"
6339
 
6340
- #: src/admin.php:2720
6341
  msgid "Download most recently modified log file"
6342
  msgstr ""
6343
 
6344
- #: src/admin.php:2676, src/admin.php:2682, src/central/bootstrap.php:173
6345
  msgid "(Nothing yet logged)"
6346
  msgstr ""
6347
 
6348
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6349
- #: src/admin.php:2675, src/admin.php:2680
6350
  msgid "Last log message"
6351
  msgstr ""
6352
 
6353
- #: src/addons/migrator.php:238, src/admin.php:705, src/admin.php:3795,
6354
  #: src/templates/wp-admin/settings/tab-status.php:30
6355
  msgid "Restore"
6356
  msgstr "পুনঃস্থাপন"
@@ -6360,16 +6382,16 @@ msgstr "পুনঃস্থাপন"
6360
  msgid "Backup Now"
6361
  msgstr ""
6362
 
6363
- #: src/addons/migrator.php:1903, src/addons/moredatabase.php:247,
6364
- #: src/addons/reporting.php:259, src/admin.php:309, src/admin.php:3577,
6365
- #: src/admin.php:3657, src/admin.php:4144,
6366
  #: src/includes/class-wpadmin-commands.php:147,
6367
  #: src/includes/class-wpadmin-commands.php:487,
6368
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
6369
  msgid "Database"
6370
  msgstr ""
6371
 
6372
- #: src/admin.php:305, src/admin.php:4665
6373
  msgid "Files"
6374
  msgstr ""
6375
 
@@ -6397,15 +6419,15 @@ msgstr ""
6397
  msgid "JavaScript warning"
6398
  msgstr ""
6399
 
6400
- #: src/admin.php:685, src/admin.php:2747
6401
  msgid "Delete Old Directories"
6402
  msgstr ""
6403
 
6404
- #: src/admin.php:2467
6405
  msgid "Current limit is:"
6406
  msgstr ""
6407
 
6408
- #: src/admin.php:2442
6409
  msgid "Your backup has been restored."
6410
  msgstr ""
6411
 
@@ -6421,68 +6443,68 @@ msgstr "প্রধান ডেভেলপার এর হোমপেজে
6421
  msgid "UpdraftPlus.Com"
6422
  msgstr ""
6423
 
6424
- #: src/admin.php:4557
6425
  msgid "Your settings have been wiped."
6426
  msgstr ""
6427
 
6428
- #: src/admin.php:2402
6429
  msgid "Backup directory successfully created."
6430
  msgstr ""
6431
 
6432
- #: src/admin.php:2395
6433
  msgid "Backup directory could not be created"
6434
  msgstr ""
6435
 
6436
- #: src/admin.php:2994
6437
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6438
  msgstr ""
6439
 
6440
- #: src/admin.php:2992
6441
  msgid "Old directories successfully removed."
6442
  msgstr ""
6443
 
6444
- #: src/admin.php:2989, src/admin.php:2989
6445
  msgid "Remove old directories"
6446
  msgstr ""
6447
 
6448
- #: src/addons/migrator.php:303, src/addons/migrator.php:318,
6449
- #: src/admin.php:2344, src/admin.php:2353, src/admin.php:2362,
6450
- #: src/admin.php:2404, src/admin.php:2996
6451
  msgid "Return to UpdraftPlus Configuration"
6452
  msgstr ""
6453
 
6454
- #: src/admin.php:678, src/admin.php:2344, src/admin.php:2353,
6455
- #: src/admin.php:2362, src/admin.php:2404, src/admin.php:2996,
6456
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6457
  msgid "Actions"
6458
  msgstr ""
6459
 
6460
- #: src/admin.php:2247
6461
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6462
  msgstr ""
6463
 
6464
- #: src/admin.php:2147
6465
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6466
  msgstr ""
6467
 
6468
- #: src/admin.php:2043
6469
  msgid "No local copy present."
6470
  msgstr ""
6471
 
6472
- #: src/admin.php:2040
6473
  msgid "Download in progress"
6474
  msgstr "ডাউনলোড হচ্ছে"
6475
 
6476
- #: src/admin.php:677, src/admin.php:2029
6477
  msgid "File ready."
6478
  msgstr "ফাইল তৈরি।"
6479
 
6480
- #: src/admin.php:2010
6481
  msgid "Download failed"
6482
  msgstr ""
6483
 
6484
- #: src/admin.php:675, src/admin.php:1300, src/admin.php:1774,
6485
- #: src/class-updraftplus.php:1224, src/class-updraftplus.php:1268,
6486
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
6487
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6488
  #: src/methods/stream-base.php:217, src/restorer.php:2354,
@@ -6490,15 +6512,15 @@ msgstr ""
6490
  msgid "Error"
6491
  msgstr ""
6492
 
6493
- #: src/admin.php:1809
6494
  msgid "Could not find that job - perhaps it has already finished?"
6495
  msgstr ""
6496
 
6497
- #: src/admin.php:1801
6498
  msgid "Job deleted"
6499
  msgstr ""
6500
 
6501
- #: src/admin.php:1890
6502
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6503
  msgstr ""
6504
 
@@ -6506,39 +6528,39 @@ msgstr ""
6506
  msgid "Nothing yet logged"
6507
  msgstr ""
6508
 
6509
- #: src/admin.php:975
6510
  msgid "Please consult this FAQ if you have problems backing up."
6511
  msgstr ""
6512
 
6513
- #: src/admin.php:975
6514
  msgid "Your website is hosted using the %s web server."
6515
  msgstr ""
6516
 
6517
- #: src/admin.php:971
6518
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
6519
  msgstr ""
6520
 
6521
- #: src/admin.php:967
6522
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
6523
  msgstr ""
6524
 
6525
- #: src/addons/migrator.php:877, src/admin.php:959, src/admin.php:963,
6526
- #: src/admin.php:967, src/admin.php:971, src/admin.php:975, src/admin.php:984,
6527
- #: src/admin.php:3443, src/admin.php:3450, src/admin.php:3452,
6528
- #: src/methods/cloudfiles-new.php:101, src/methods/cloudfiles.php:440,
6529
- #: src/methods/ftp.php:309, src/methods/openstack-base.php:573,
6530
- #: src/methods/s3.php:849, src/methods/s3.php:853,
6531
- #: src/methods/updraftvault.php:283,
6532
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6533
  #: src/udaddons/updraftplus-addons.php:253
6534
  msgid "Warning"
6535
  msgstr "সতর্কতা"
6536
 
6537
- #: src/admin.php:905
6538
  msgid "Add-Ons / Pro Support"
6539
  msgstr "অ্যাড অন / প্রো সাপোর্ট"
6540
 
6541
- #: src/admin.php:542, src/admin.php:903,
6542
  #: src/templates/wp-admin/settings/tab-bar.php:7
6543
  msgid "Settings"
6544
  msgstr "সেটিংস"
@@ -6547,7 +6569,7 @@ msgstr "সেটিংস"
6547
  msgid "Could not create %s zip. Consult the log file for more information."
6548
  msgstr ""
6549
 
6550
- #: src/backup.php:2226
6551
  msgid "Infinite recursion: consult your log for more information"
6552
  msgstr ""
6553
 
@@ -6559,50 +6581,50 @@ msgstr ""
6559
  msgid "Like UpdraftPlus and can spare one minute?"
6560
  msgstr ""
6561
 
6562
- #: src/addons/azure.php:219, src/class-updraftplus.php:4157,
6563
- #: src/methods/googledrive.php:1023, src/methods/s3.php:320
6564
  msgid "File not found"
6565
  msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
6566
 
6567
- #: src/class-updraftplus.php:4064
6568
  msgid "The decryption key used:"
6569
  msgstr ""
6570
 
6571
- #: src/class-updraftplus.php:4064, src/class-updraftplus.php:4372,
6572
  #: src/restorer.php:419
6573
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6574
  msgstr ""
6575
 
6576
- #: src/class-updraftplus.php:4045, src/class-updraftplus.php:4360,
6577
  #: src/restorer.php:406
6578
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6579
  msgstr ""
6580
 
6581
- #: src/backup.php:2101
6582
  msgid "Could not open the backup file for writing"
6583
  msgstr ""
6584
 
6585
- #: src/class-updraftplus.php:3387
6586
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6587
  msgstr ""
6588
 
6589
- #: src/class-updraftplus.php:3348
6590
  msgid "Could not read the directory"
6591
  msgstr "ডিরেক্টরিটি পড়া যায়নি"
6592
 
6593
- #: src/admin.php:2089, src/backup.php:1282
6594
  msgid "Backup directory (%s) is not writable, or does not exist."
6595
  msgstr ""
6596
 
6597
- #: src/backup.php:1059
6598
  msgid "WordPress backup is complete"
6599
  msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
6600
 
6601
- #: src/class-updraftplus.php:2858
6602
  msgid "The backup attempt has finished, apparently unsuccessfully"
6603
  msgstr ""
6604
 
6605
- #: src/class-updraftplus.php:2843
6606
  msgid "The backup apparently succeeded and is now complete"
6607
  msgstr ""
6608
 
@@ -6610,42 +6632,42 @@ msgstr ""
6610
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6611
  msgstr ""
6612
 
6613
- #: src/class-updraftplus.php:2546
6614
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6615
  msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
6616
 
6617
- #: src/class-updraftplus.php:1825
6618
  msgid "Others"
6619
  msgstr "অন্যান্য"
6620
 
6621
- #: src/addons/multisite.php:467, src/class-updraftplus.php:1810
6622
  msgid "Uploads"
6623
  msgstr "আপলোডসমূহ"
6624
 
6625
- #: src/class-updraftplus.php:1809
6626
  msgid "Themes"
6627
  msgstr "থিমসমূহ"
6628
 
6629
- #: src/class-updraftplus.php:1808
6630
  msgid "Plugins"
6631
  msgstr "প্লাগইন"
6632
 
6633
- #: src/class-updraftplus.php:584
6634
  msgid "No log files were found."
6635
  msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
6636
 
6637
- #: src/admin.php:1959, src/admin.php:1963, src/class-updraftplus.php:579
6638
  msgid "The log file could not be read."
6639
  msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
6640
 
6641
- #: src/admin.php:994, src/admin.php:1003, src/admin.php:1008,
6642
- #: src/admin.php:1016, src/admin.php:1025, src/class-updraftplus.php:544,
6643
- #: src/class-updraftplus.php:579, src/class-updraftplus.php:584,
6644
- #: src/class-updraftplus.php:589
6645
  msgid "UpdraftPlus notice:"
6646
  msgstr "UpdraftPlus নোটিশ:"
6647
 
6648
- #: src/addons/multisite.php:65, src/addons/multisite.php:689,
6649
  #: src/options.php:50
6650
  msgid "UpdraftPlus Backups"
6651
  msgstr "UpdraftPlus ব্যাকআপসমূহ"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.3.1\n"
11
  "Language: bn\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/addons/migrator.php:406
15
+ msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
16
+ msgstr ""
17
+
18
+ #: src/addons/migrator.php:395
19
+ msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use below search and replace so that the non-https links are automatically replaced."
20
+ msgstr ""
21
+
22
+ #: src/addons/migrator.php:384
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use below search and replace to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/addons/morestorage.php:91
27
+ msgid "Add another %s account..."
28
+ msgstr ""
29
+
30
+ #: src/addons/morestorage.php:70
31
+ msgid "Delete these settings"
32
+ msgstr ""
33
+
34
+ #: src/addons/morestorage.php:68, src/admin.php:777
35
+ msgid "Currently disabled"
36
+ msgstr ""
37
+
38
+ #: src/addons/morestorage.php:68, src/admin.php:776
39
+ msgid "Currently enabled"
40
+ msgstr ""
41
+
42
  #: src/templates/wp-admin/settings/tab-addons.php:14
43
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
44
  msgstr ""
51
  msgid "get it here"
52
  msgstr ""
53
 
54
+ #: src/methods/stream-base.php:322
55
  msgid "Download chunk size successfully changed to %d"
56
  msgstr ""
57
 
58
+ #: src/methods/stream-base.php:319
59
  msgid "Download chunk size failed to change to %d"
60
  msgstr ""
61
 
71
  msgid "remote site"
72
  msgstr ""
73
 
74
+ #: src/addons/backblaze.php:461
75
  msgid "Invalid bucket name"
76
  msgstr ""
77
 
81
  msgstr[0] ""
82
  msgstr[1] ""
83
 
84
+ #: src/class-updraftplus.php:4364
85
  msgid "Your chosen replacement collation"
86
  msgstr ""
87
 
88
+ #: src/class-updraftplus.php:4341
89
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
90
  msgstr ""
91
 
92
+ #: src/class-updraftplus.php:4341
93
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
94
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
95
  msgstr[0] ""
96
  msgstr[1] ""
97
 
98
+ #: src/addons/migrator.php:529
99
  msgid "Database restoration options:"
100
  msgstr ""
101
 
102
+ #: src/addons/migrator.php:373
103
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
104
  msgstr ""
105
 
106
+ #: src/addons/azure.php:629
107
  msgid "%s Prefix"
108
  msgstr ""
109
 
110
+ #: src/addons/azure.php:624
111
  msgid "%s Container"
112
  msgstr ""
113
 
114
+ #: src/addons/azure.php:619
115
  msgid "%s Key"
116
  msgstr ""
117
 
118
+ #: src/addons/azure.php:615
119
  msgid "%s Account Name"
120
  msgstr ""
121
 
122
+ #: src/addons/googlecloud.php:684
123
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
124
  msgstr ""
125
 
126
+ #: src/addons/googlecloud.php:682
127
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
128
  msgstr ""
129
 
147
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
148
  msgstr ""
149
 
150
+ #: src/addons/migrator.php:913
151
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
152
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
153
  msgstr[0] ""
157
  msgid "Requested table character set (%s) is not present - changing to %s."
158
  msgstr ""
159
 
160
+ #: src/class-updraftplus.php:4317
161
  msgid "Your chosen character set to use instead:"
162
  msgstr ""
163
 
164
+ #: src/class-updraftplus.php:4307
165
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
166
  msgstr ""
167
 
168
+ #: src/class-updraftplus.php:4307
169
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
170
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
171
  msgstr[0] ""
219
  msgid "Please enter a valid URL e.g http://example.com"
220
  msgstr ""
221
 
222
+ #: src/addons/backblaze.php:619
223
  msgid "your Backblaze console"
224
  msgstr ""
225
 
226
+ #: src/addons/backblaze.php:619
227
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
228
  msgstr ""
229
 
230
+ #: src/addons/backblaze.php:619
231
  msgid "N.B. You need to create the bucket in %s first."
232
  msgstr ""
233
 
234
+ #: src/addons/backblaze.php:618
235
  msgid "some/path"
236
  msgstr ""
237
 
238
+ #: src/addons/backblaze.php:618
239
  msgid "Bucket name"
240
  msgstr ""
241
 
242
+ #: src/addons/backblaze.php:617
243
  msgid "Backup path"
244
  msgstr ""
245
 
246
+ #: src/addons/backblaze.php:612
247
  msgid "Application key"
248
  msgstr ""
249
 
250
+ #: src/addons/backblaze.php:607, src/addons/backblaze.php:607
251
  msgid "here"
252
  msgstr ""
253
 
254
+ #: src/addons/backblaze.php:607
255
  msgid "Get these settings from %s, or sign up %s."
256
  msgstr ""
257
 
258
+ #: src/addons/backblaze.php:458
259
  msgid "Bucket not found"
260
  msgstr ""
261
 
262
+ #: src/addons/backblaze.php:412
263
  msgid "Account Key"
264
  msgstr ""
265
 
266
+ #: src/addons/backblaze.php:411, src/addons/backblaze.php:605
267
  msgid "Account ID"
268
  msgstr ""
269
 
270
+ #: src/class-updraftplus.php:4149
271
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
272
  msgstr ""
273
 
274
+ #: src/class-updraftplus.php:4147, src/class-updraftplus.php:4149
275
  msgid "the migrator add-on"
276
  msgstr ""
277
 
278
+ #: src/class-updraftplus.php:4147
279
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
280
  msgstr ""
281
 
282
+ #: src/class-updraftplus.php:4145
283
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
284
  msgstr ""
285
 
286
+ #: src/class-updraftplus.php:4140
287
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
288
  msgstr ""
289
 
290
+ #: src/methods/googledrive.php:1240
291
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
292
  msgstr ""
293
 
294
+ #: src/methods/googledrive.php:1237
295
  msgid "Follow this link to remove this site's settings for %s."
296
  msgstr ""
297
 
303
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
304
  msgstr ""
305
 
306
+ #: src/admin.php:1350, src/admin.php:4170, src/backup.php:2106,
307
+ #: src/class-updraftplus.php:2181, src/class-updraftplus.php:2246,
308
+ #: src/class-updraftplus.php:2380
309
  msgid "A PHP fatal error (%s) has occurred: %s"
310
  msgstr ""
311
 
312
+ #: src/admin.php:1341, src/admin.php:4156, src/backup.php:2097,
313
+ #: src/class-updraftplus.php:2172, src/class-updraftplus.php:2239,
314
+ #: src/class-updraftplus.php:2373
315
  msgid "A PHP exception (%s) has occurred: %s"
316
  msgstr ""
317
 
355
  msgid "Select Files"
356
  msgstr ""
357
 
358
+ #: src/methods/cloudfiles.php:476
359
  msgid "Rackspace Storage Region"
360
  msgstr ""
361
 
363
  msgid "Instant and secure logon with a wave of your phone."
364
  msgstr ""
365
 
366
+ #: src/backup.php:2110
367
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
368
  msgstr ""
369
 
370
+ #: src/admin.php:4698
371
  msgid "Value"
372
  msgstr ""
373
 
374
+ #: src/admin.php:1616
375
  msgid "Did not know how to delete from this cloud service."
376
  msgstr ""
377
 
378
+ #: src/addons/sftp.php:716
379
  msgid "Encrypted login failed; trying non-encrypted"
380
  msgstr ""
381
 
382
+ #: src/addons/azure.php:592
383
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
384
  msgstr ""
385
 
387
  msgid "Stored at: %s"
388
  msgstr ""
389
 
390
+ #: src/methods/cloudfiles.php:496
391
  msgid "Cloud Files"
392
  msgstr ""
393
 
394
+ #: src/admin.php:4511
395
  msgid "Your settings failed to save. Please refresh the settings page and try again"
396
  msgstr ""
397
 
398
+ #: src/admin.php:4470
399
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
400
  msgstr ""
401
 
412
  msgid "Extra database"
413
  msgstr ""
414
 
415
+ #: src/admin.php:3731
416
  msgid "Press here to download or browse"
417
  msgstr ""
418
 
419
+ #: src/admin.php:1124, src/admin.php:1134
420
  msgid "Error: invalid path"
421
  msgstr ""
422
 
423
+ #: src/admin.php:948
424
  msgid "An error occurred when fetching storage module options: "
425
  msgstr ""
426
 
456
  msgid "Skipped tables:"
457
  msgstr ""
458
 
459
+ #: src/class-updraftplus.php:4429
460
  msgid "This database backup has the following WordPress tables excluded: %s"
461
  msgstr ""
462
 
463
+ #: src/admin.php:2626
464
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
465
  msgstr ""
466
 
467
+ #: src/admin.php:2626
468
  msgid "All WordPress tables will be backed up."
469
  msgstr ""
470
 
964
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
965
  msgstr ""
966
 
967
+ #: src/methods/dropbox.php:686
968
  msgid "%s de-authentication"
969
  msgstr ""
970
 
971
+ #: src/methods/dropbox.php:606
972
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
973
  msgstr ""
974
 
975
+ #: src/methods/dropbox.php:583
976
  msgid "Follow this link to deauthenticate with %s."
977
  msgstr ""
978
 
980
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
981
  msgstr ""
982
 
983
+ #: src/backup.php:1704
984
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
985
  msgstr ""
986
 
988
  msgid "You have selected a remote storage option which has an authorization step to complete:"
989
  msgstr ""
990
 
991
+ #: src/admin.php:1692
992
  msgid "Remote files deleted:"
993
  msgstr ""
994
 
995
+ #: src/admin.php:1691
996
  msgid "Local files deleted:"
997
  msgstr ""
998
 
999
+ #: src/admin.php:996, src/admin.php:1005, src/admin.php:1018,
1000
+ #: src/admin.php:1027
1001
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
1002
  msgstr ""
1003
 
1041
  msgid "US East (Ohio)"
1042
  msgstr ""
1043
 
1044
+ #: src/addons/onedrive.php:1029
1045
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1046
  msgstr ""
1047
 
1048
+ #: src/addons/onedrive.php:698
1049
  msgid "Account is not authorized (%s)."
1050
  msgstr ""
1051
 
1052
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873
1053
  msgid "Your IP address:"
1054
  msgstr "আপনার আইপি অ্যাড্রেসঃ"
1055
 
1056
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873,
1057
  #: src/udaddons/updraftplus-addons.php:887
1058
  msgid "To remove any block, please go here."
1059
  msgstr "কোন ব্লক সরাতে এখানে যান।"
1060
 
1061
+ #: src/addons/onedrive.php:643, src/udaddons/updraftplus-addons.php:858
1062
  msgid "An error response was received; HTTP code:"
1063
  msgstr ""
1064
 
1074
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1075
  msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
1076
 
1077
+ #: src/admin.php:2440
1078
  msgid "To fix this problem go here."
1079
  msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
1080
 
1081
+ #: src/admin.php:2440
1082
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1083
  msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
1084
 
1086
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1087
  msgstr "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
1088
 
1089
+ #: src/addons/webdav.php:204
1090
  msgid "Path"
1091
  msgstr "রাস্তা (Path)"
1092
 
1093
+ #: src/addons/webdav.php:199
1094
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1095
  msgstr "ডিফল্ট ভ্যালু ব্যাবহার করতে এটা ফাকা রাখুন (webdav এর জন্য 80, webdavs এর জন্য 443)"
1096
 
1097
+ #: src/addons/webdav.php:191
1098
  msgid "Enter any path in the field below."
1099
  msgstr "এই স্থানে যেকোন রাস্তা (Path) প্রবেশ করান।"
1100
 
1101
+ #: src/addons/webdav.php:191
1102
  msgid "A host name cannot contain a slash."
1103
  msgstr "\"host name\" এর ক্ষত্রে স্ল্যাশ ব্যাবহার করা যাবে না।"
1104
 
1105
+ #: src/addons/webdav.php:166
1106
  msgid "Protocol (SSL or not)"
1107
  msgstr "প্রোটোকল (SSL অথবা SSL না)"
1108
 
1109
+ #: src/addons/webdav.php:161
1110
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1111
  msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ করার মাধ্যমে সৃষ্ট। আপনি যদি বিস্তারিত না জানেন, তাহলে আপনার WebDAV প্রোভাইডারকে জিজ্ঞেস করুন।"
1112
 
1114
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1115
  msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
1116
 
1117
+ #: src/methods/s3.php:1110
1118
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1119
  msgstr "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
1120
 
1154
  msgid "Public key was sent to:"
1155
  msgstr "পাবলিক কি টি পাঠানো হয়েছিল:"
1156
 
1157
+ #: src/backup.php:2322
1158
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1159
  msgstr "ডিরেক্টরি খুলতে ব্যর্থ (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন): %s"
1160
 
1161
+ #: src/backup.php:2300
1162
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1163
  msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
1164
 
1165
+ #: src/addons/migrator.php:2378
1166
  msgid "Create key"
1167
  msgstr "পিন তৈরি করুন"
1168
 
1169
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:526
1170
  msgid "slower, strongest"
1171
  msgstr "ধীরতর, সবচেয়ে বেশি শক্তিশালী"
1172
 
1173
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1174
  msgid "recommended"
1175
  msgstr "নির্দেশিত"
1176
 
1177
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1178
  msgid "%s bytes"
1179
  msgstr "%s বাইটস"
1180
 
1181
+ #: src/addons/migrator.php:2373, src/central/bootstrap.php:524
1182
  msgid "faster (possibility for slow PHP installs)"
1183
  msgstr "দ্রুততর (ধীর পি এইচ পি ইন্সটল এর ক্ষেত্রে)"
1184
 
1185
+ #: src/addons/migrator.php:2372, src/central/bootstrap.php:523
1186
  msgid "easy to break, fastest"
1187
  msgstr "ভাঙতে সহজ, দ্রুততম সময়ে"
1188
 
1189
+ #: src/addons/migrator.php:2372, src/addons/migrator.php:2373,
1190
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:523,
1191
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1192
  msgid "%s bits"
1193
  msgstr "%s বিটস"
1194
 
1195
+ #: src/addons/migrator.php:2370, src/central/bootstrap.php:521
1196
  msgid "Encryption key size:"
1197
  msgstr "এনক্রিপশন পিনের সাইজঃ"
1198
 
1199
+ #: src/addons/migrator.php:2368
1200
  msgid "Enter your chosen name"
1201
  msgstr "পূর্বেই ঠিক করা নামটি লিখুন"
1202
 
1203
+ #: src/addons/migrator.php:2367
1204
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1205
  msgstr "একটি পিন তৈরি করুনঃ এই পিনটির একটি অনন্য নাম দিন (উদাহরণস্বরূপ, এই সাইট টি কিসের জন্য তা উল্লেখ করতে পারেন), তারপর \"পিন তৈরি করুন\" এ ক্লিক করুনঃ"
1206
 
1208
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1209
  msgstr "আপলোড সফল হবে নাঃ যেকোন একটি ফাইলের %s লিমিট হচ্ছে %s, যেখনে এই ফাইলের সাইজ হচ্ছে %s GB (%d bytes)"
1210
 
1211
+ #: src/methods/ftp.php:435
1212
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1213
  msgstr "এটা কোন কোন সময় ফায়ারওয়ালের কারনে ঘটে থাকে - expert সেটিং থেকে SSL বন্ধ করে আবার চেস্টা করে দেখুন।"
1214
 
1215
+ #: src/methods/ftp.php:407
1216
  msgid "login"
1217
  msgstr "লগিন"
1218
 
1219
+ #: src/methods/email.php:91
1220
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1221
  msgstr ""
1222
 
1224
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1225
  msgstr ""
1226
 
1227
+ #: src/class-updraftplus.php:1788
1228
  msgid "Size: %s MB"
1229
  msgstr "সাইজঃ %s MB"
1230
 
1236
  msgid "Now"
1237
  msgstr "এখন"
1238
 
1239
+ #: src/class-updraftplus.php:4166, src/restorer.php:1045
1240
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1241
  msgstr ""
1242
 
1244
  msgid "(tap on an icon to select or unselect)"
1245
  msgstr "(সিলেক্ট অথবা আনসিলেক্ট করার জন্য আইকনের উপর টিপ দিন)"
1246
 
1247
+ #: src/methods/updraftvault.php:319, src/methods/updraftvault.php:325,
1248
+ #: src/methods/updraftvault.php:331
1249
  msgid "%s per year"
1250
  msgstr "প্রতি বৎসর %s"
1251
 
1252
+ #: src/methods/updraftvault.php:318, src/methods/updraftvault.php:324,
1253
+ #: src/methods/updraftvault.php:330
1254
  msgid "or (annual discount)"
1255
  msgstr "অথবা (বাৎসরিক মূল্যছাড়)"
1256
 
1258
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1259
  msgstr "এই সাইটের জন্য কোন ভল্ট কানেকশন পাওয়া যায়নি (এটা কি স্থানান্তর করা হয়েছে?), দয়া করে ডিসকানেক্ট করে আবার কানেক্ট করুন।"
1260
 
1261
+ #: src/class-updraftplus.php:556, src/class-updraftplus.php:601
1262
  msgid "The given file was not found, or could not be read."
1263
  msgstr "প্রদত্ত ফাইল পাওয়া যায়নি অথবা পড়া সম্ভব হয়নি।"
1264
 
1342
  msgid "UpdraftCentral Connection"
1343
  msgstr ""
1344
 
1345
+ #: src/backup.php:1006, src/class-updraftplus.php:2862
1346
  msgid "The backup was aborted by the user"
1347
  msgstr ""
1348
 
1349
+ #: src/admin.php:4506
1350
  msgid "Your settings have been saved."
1351
  msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
1352
 
1353
+ #: src/admin.php:3609
1354
  msgid "Total backup size:"
1355
  msgstr ""
1356
 
1357
+ #: src/admin.php:2966
1358
  msgid "stop"
1359
  msgstr ""
1360
 
1361
+ #: src/admin.php:2808
1362
  msgid "The backup has finished running"
1363
  msgstr ""
1364
 
1420
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1421
  msgstr ""
1422
 
1423
+ #: src/class-updraftplus.php:4217, src/restorer.php:1740
1424
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1425
  msgstr ""
1426
 
1427
+ #: src/class-updraftplus.php:4213
1428
  msgid "Please read this link for important information on this process."
1429
  msgstr ""
1430
 
1431
+ #: src/class-updraftplus.php:4213
1432
  msgid "It will be imported as a new site."
1433
  msgstr ""
1434
 
1435
+ #: src/admin.php:2599, src/templates/wp-admin/notices/horizontal-notice.php:16,
1436
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1437
  msgid "Dismiss"
1438
  msgstr "খারিজ"
1441
  msgid "Please fill in the required information."
1442
  msgstr ""
1443
 
1444
+ #: src/addons/multisite.php:568
1445
  msgid "Read more..."
1446
  msgstr "আরও পড়ুন..."
1447
 
1448
+ #: src/addons/multisite.php:559
1449
  msgid "may include some site-wide data"
1450
  msgstr ""
1451
 
1452
+ #: src/addons/multisite.php:554
1453
  msgid "All sites"
1454
  msgstr ""
1455
 
1456
+ #: src/addons/multisite.php:550
1457
  msgid "Which site to restore"
1458
  msgstr ""
1459
 
1460
+ #: src/addons/migrator.php:599, src/addons/migrator.php:600
1461
  msgid "Error when creating new site at your chosen address:"
1462
  msgstr ""
1463
 
1464
+ #: src/addons/migrator.php:541
1465
  msgid "Required information for restoring this backup was not given (%s)"
1466
  msgstr ""
1467
 
1468
+ #: src/addons/migrator.php:493
1469
  msgid "Attribute imported content to user"
1470
  msgstr ""
1471
 
1472
+ #: src/addons/migrator.php:483, src/addons/migrator.php:485
1473
  msgid "You must use lower-case letters or numbers for the site path, only."
1474
  msgstr ""
1475
 
1476
+ #: src/addons/migrator.php:471
1477
  msgid "This feature is not compatible with %s"
1478
  msgstr ""
1479
 
1480
+ #: src/addons/migrator.php:469, src/addons/migrator.php:471
1481
  msgid "Importing a single site into a multisite install"
1482
  msgstr ""
1483
 
1484
+ #: src/addons/migrator.php:460
1485
  msgid "other content from wp-content"
1486
  msgstr ""
1487
 
1488
+ #: src/addons/migrator.php:457
1489
  msgid "WordPress core"
1490
  msgstr ""
1491
 
1492
+ #: src/addons/migrator.php:457, src/addons/migrator.php:460,
1493
+ #: src/addons/migrator.php:463
1494
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1495
  msgstr ""
1496
 
1498
  msgid "Call WordPress action:"
1499
  msgstr ""
1500
 
1501
+ #: src/admin.php:2634
1502
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1503
  msgstr ""
1504
 
1505
+ #: src/admin.php:4045
1506
  msgid "Skipping: this archive was already restored."
1507
  msgstr ""
1508
 
1534
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1535
  msgstr ""
1536
 
1537
+ #: src/admin.php:4380
1538
  msgid "Send this backup to remote storage"
1539
  msgstr ""
1540
 
1541
+ #: src/admin.php:4378
1542
  msgid "Check out UpdraftPlus Vault."
1543
  msgstr ""
1544
 
1545
+ #: src/admin.php:4378
1546
  msgid "Not got any remote storage?"
1547
  msgstr ""
1548
 
1549
+ #: src/admin.php:4378
1550
  msgid "settings"
1551
  msgstr "সেটিংস"
1552
 
1553
+ #: src/admin.php:4378
1554
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1555
  msgstr ""
1556
 
1557
+ #: src/admin.php:2632
1558
  msgid "Include any files in the backup"
1559
  msgstr ""
1560
 
1561
+ #: src/admin.php:2618
1562
  msgid "Include the database in the backup"
1563
  msgstr ""
1564
 
1565
+ #: src/admin.php:2598
1566
  msgid "Continue restoration"
1567
  msgstr ""
1568
 
1569
+ #: src/admin.php:2593
1570
  msgid "You have an unfinished restoration operation, begun %s ago."
1571
  msgstr ""
1572
 
1573
+ #: src/admin.php:2592
1574
  msgid "Unfinished restoration"
1575
  msgstr ""
1576
 
1577
+ #: src/admin.php:2590
1578
  msgid "%s minutes, %s seconds"
1579
  msgstr ""
1580
 
1581
+ #: src/admin.php:2537
1582
  msgid "Backup Contents And Schedule"
1583
  msgstr ""
1584
 
1586
  msgid "Premium / Extensions"
1587
  msgstr ""
1588
 
1589
+ #: src/admin.php:2306, src/admin.php:2315
1590
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1591
  msgstr ""
1592
 
1607
  msgid "Advanced Tools"
1608
  msgstr ""
1609
 
1610
+ #: src/addons/googlecloud.php:1041
1611
  msgid "Bucket location"
1612
  msgstr ""
1613
 
1614
+ #: src/addons/googlecloud.php:1036
1615
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1616
  msgstr ""
1617
 
1618
+ #: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049
1619
  msgid "This setting applies only when a new bucket is being created."
1620
  msgstr ""
1621
 
1622
+ #: src/addons/googlecloud.php:1025
1623
  msgid "You must use a bucket name that is unique, for all %s users."
1624
  msgstr ""
1625
 
1626
+ #: src/addons/googlecloud.php:971
1627
  msgid "Do not confuse %s with %s - they are separate things."
1628
  msgstr ""
1629
 
1685
  msgid "Standard"
1686
  msgstr ""
1687
 
1688
+ #: src/addons/azure.php:630
1689
  msgid "container"
1690
  msgstr ""
1691
 
1692
+ #: src/addons/azure.php:630
1693
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1694
  msgstr ""
1695
 
1696
+ #: src/addons/azure.php:629
1697
  msgid "optional"
1698
  msgstr ""
1699
 
1700
+ #: src/addons/azure.php:625
1701
  msgid "See Microsoft's guidelines on container naming by following this link."
1702
  msgstr ""
1703
 
1704
+ #: src/addons/azure.php:625
1705
  msgid "Enter the path of the %s you wish to use here."
1706
  msgstr ""
1707
 
1708
+ #: src/addons/azure.php:616
1709
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1710
  msgstr ""
1711
 
1712
+ #: src/addons/azure.php:615, src/addons/azure.php:619,
1713
+ #: src/addons/azure.php:624, src/addons/azure.php:629
1714
  msgid "Azure"
1715
  msgstr ""
1716
 
1717
+ #: src/addons/azure.php:596
1718
  msgid "Create Azure credentials in your Azure developer console."
1719
  msgstr ""
1720
 
1721
+ #: src/addons/azure.php:560
1722
  msgid "Could not create the container"
1723
  msgstr ""
1724
 
1725
+ #: src/addons/azure.php:411
1726
  msgid "Could not access container"
1727
  msgstr ""
1728
 
1729
+ #: src/class-updraftplus.php:2879
1730
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1731
  msgstr ""
1732
 
1733
+ #: src/backup.php:1756
1734
  msgid "the options table was not found"
1735
  msgstr ""
1736
 
1737
+ #: src/backup.php:1754
1738
  msgid "no options or sitemeta table was found"
1739
  msgstr ""
1740
 
1741
+ #: src/backup.php:1754, src/backup.php:1756
1742
  msgid "The database backup appears to have failed"
1743
  msgstr ""
1744
 
1745
+ #: src/backup.php:1626
1746
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1747
  msgstr ""
1748
 
1754
  msgid "Not installed"
1755
  msgstr ""
1756
 
1757
+ #: src/addons/googlecloud.php:1028, src/addons/s3-enhanced.php:63
1758
  msgid "Storage class"
1759
  msgstr ""
1760
 
1761
+ #: src/addons/googlecloud.php:1025
1762
  msgid "See Google's guidelines on bucket naming by following this link."
1763
  msgstr ""
1764
 
1765
+ #: src/addons/googlecloud.php:1025
1766
  msgid "Enter the name of the %s bucket you wish to use here."
1767
  msgstr ""
1768
 
1769
+ #: src/addons/googlecloud.php:1024
1770
  msgid "Bucket"
1771
  msgstr ""
1772
 
1773
+ #: src/addons/googlecloud.php:1020
1774
  msgid "Otherwise, you can leave it blank."
1775
  msgstr ""
1776
 
1777
+ #: src/addons/googlecloud.php:1020
1778
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1779
  msgstr ""
1780
 
1781
+ #: src/addons/googlecloud.php:1020
1782
  msgid "Enter the ID of the %s project you wish to use here."
1783
  msgstr ""
1784
 
1785
+ #: src/addons/googlecloud.php:983
1786
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1787
  msgstr ""
1788
 
1789
+ #: src/addons/googlecloud.php:894
1790
  msgid "You must enter a project ID in order to be able to create a new bucket."
1791
  msgstr ""
1792
 
1793
+ #: src/addons/googlecloud.php:1018
1794
  msgid "Project ID"
1795
  msgstr ""
1796
 
1797
+ #: src/addons/googlecloud.php:751
1798
  msgid "You must save and authenticate before you can test your settings."
1799
  msgstr ""
1800
 
1803
  msgstr ""
1804
 
1805
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1806
+ #: src/addons/googlecloud.php:886, src/addons/googlecloud.php:933
1807
  msgid "You do not have access to this bucket."
1808
  msgstr ""
1809
 
1810
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1811
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1812
+ #: src/addons/googlecloud.php:710, src/addons/googlecloud.php:886,
1813
+ #: src/addons/googlecloud.php:933, src/addons/googlecloud.php:977,
1814
+ #: src/addons/googlecloud.php:977, src/addons/googlecloud.php:1005,
1815
+ #: src/addons/googlecloud.php:1013, src/addons/googlecloud.php:1025
1816
  msgid "Google Cloud"
1817
  msgstr ""
1818
 
1819
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1820
+ #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:886,
1821
+ #: src/addons/googlecloud.php:933
1822
  msgid "%s Service Exception."
1823
  msgstr ""
1824
 
1855
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
1856
  msgstr ""
1857
 
1858
+ #: src/admin.php:1690
1859
  msgid "Backup sets removed:"
1860
  msgstr ""
1861
 
1887
  msgid "day"
1888
  msgstr ""
1889
 
1890
+ #: src/addons/morestorage.php:29
1891
  msgid "(as many as you like)"
1892
  msgstr ""
1893
 
1903
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
1904
  msgstr ""
1905
 
1906
+ #: src/methods/updraftvault.php:693
1907
  msgid "You do not currently have any UpdraftPlus Vault quota"
1908
  msgstr ""
1909
 
1910
+ #: src/class-updraftplus.php:4286
1911
  msgid "You must upgrade MySQL to be able to use this database."
1912
  msgstr ""
1913
 
1914
+ #: src/class-updraftplus.php:4286
1915
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1916
  msgstr ""
1917
 
1918
+ #: src/admin.php:2425
1919
  msgid "The UpdraftPlus directory in wp-content/plugins has white-space in it; WordPress does not like this. You should rename the directory to wp-content/plugins/updraftplus to fix this problem."
1920
  msgstr ""
1921
 
1922
+ #: src/methods/updraftvault.php:351
1923
  msgid "Don't know your email address, or forgotten your password?"
1924
  msgstr "আপনার ইমেল ঠিকানা জানা নেই, নাকি আপনার পাসওয়ার্ড ভুলে গিয়েছেন?"
1925
 
1926
+ #: src/methods/updraftvault.php:344
1927
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
1928
  msgstr ""
1929
 
1930
+ #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:337
1931
  msgid "Read the FAQs here."
1932
  msgstr "এখানে প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী পড়ুন।"
1933
 
1939
  msgid "Server-side encryption"
1940
  msgstr "সার্ভার সাইড এনক্রিপশন"
1941
 
1942
+ #: src/methods/updraftvault.php:701
1943
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
1944
  msgstr ""
1945
 
1946
+ #: src/admin.php:1010
1947
  msgid "Go to the remote storage settings in order to connect."
1948
  msgstr ""
1949
 
1950
+ #: src/admin.php:1010
1951
  msgid "%s has been chosen for remote storage, but you are not currently connected."
1952
  msgstr ""
1953
 
1954
+ #: src/methods/updraftvault.php:334
1955
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
1956
  msgstr "পেমেন্ট ইউএস ডলার, ইউরো বা GB pounds sterling এর মাধ্যমে কার্ড বা পেপ্যাল এর দ্বারা করতে হবে।"
1957
 
1971
  msgid "Connecting..."
1972
  msgstr "সংযোগ করা হচ্ছে..."
1973
 
1974
+ #: src/methods/updraftvault.php:454, src/methods/updraftvault.php:528
1975
  msgid "Refresh current status"
1976
  msgstr "বর্তমান অবস্থা পুনঃবিবেচনা করুন"
1977
 
1978
+ #: src/methods/updraftvault.php:452, src/methods/updraftvault.php:468,
1979
+ #: src/methods/updraftvault.php:470, src/methods/updraftvault.php:528
1980
  msgid "Get more quota"
1981
  msgstr "আরও প্রাপ্য নিন"
1982
 
1983
+ #: src/methods/updraftvault.php:449, src/methods/updraftvault.php:465,
1984
+ #: src/methods/updraftvault.php:509
1985
  msgid "Current use:"
1986
  msgstr "বর্তমান ব্যাবহার:"
1987
 
1988
+ #: src/methods/updraftvault.php:444
1989
  msgid "You can get more quota here"
1990
  msgstr "আপনি এখান থেকে আরও প্রাপ্য পেতে পারেন"
1991
 
1992
+ #: src/methods/updraftvault.php:444
1993
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1994
  msgstr "%s ইরোর: আপনার যথেষ্ট প্রাপ্য(%s) নেই আর্কাইভটি(%s) আপলোড করার জন্য।"
1995
 
1996
+ #: src/admin.php:712, src/methods/updraftvault.php:378,
1997
+ #: src/methods/updraftvault.php:436
1998
  msgid "Disconnect"
1999
  msgstr "সংযোগ বিচ্ছিন্ন করুন"
2000
 
2001
+ #: src/methods/updraftvault.php:375, src/methods/updraftvault.php:428
2002
  msgid "Quota:"
2003
  msgstr "প্রাপ্য:"
2004
 
2005
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2006
  msgid "Vault owner"
2007
  msgstr "ভল্টের মালিক"
2008
 
2009
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2010
  msgid "Well done - there's nothing more needed to set up."
2011
  msgstr "চমৎকার - এখন আর আপনাকে কিছুই করতে হবে না।"
2012
 
2013
+ #: src/methods/updraftvault.php:374, src/methods/updraftvault.php:426
2014
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
2015
  msgstr "এই সাইটটি UpdraftPlus Vault এ <strong>সংযুক্ত</strong>।"
2016
 
2017
+ #: src/methods/updraftvault.php:380, src/methods/updraftvault.php:422
2018
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
2019
  msgstr "আপনি UpdraftPlus Vault এ<strong>সংযুক্ত নন</strong>।"
2020
 
2021
+ #: src/methods/updraftvault.php:351
2022
  msgid "Go here for help"
2023
  msgstr "সাহায্যের জন্য এখানে যান"
2024
 
2025
+ #: src/methods/updraftvault.php:346
2026
  msgid "E-mail"
2027
  msgstr "ই-মেইল"
2028
 
2029
+ #: src/central/bootstrap.php:551, src/methods/updraftvault.php:340,
2030
+ #: src/methods/updraftvault.php:354
2031
  msgid "Back..."
2032
  msgstr "ফিরে চলুন..."
2033
 
2034
+ #: src/methods/updraftvault.php:334
2035
  msgid "Subscriptions can be cancelled at any time."
2036
  msgstr "সাবস্ক্রিপশন যেকোনো সময় বাতিল করা সম্ভব"
2037
 
2039
  msgid "Buy it now"
2040
  msgstr ""
2041
 
2042
+ #: src/methods/updraftvault.php:317, src/methods/updraftvault.php:323,
2043
+ #: src/methods/updraftvault.php:329
2044
  msgid "%s per quarter"
2045
  msgstr "%s প্রতি তিন মাসে"
2046
 
2047
+ #: src/central/bootstrap.php:578, src/methods/updraftvault.php:308,
2048
+ #: src/methods/updraftvault.php:337
2049
  msgid "Read more about it here."
2050
  msgstr "এইটি সম্পর্কে আরও পড়ুন এখানে।"
2051
 
2052
+ #: src/methods/updraftvault.php:308, src/methods/updraftvault.php:337
2053
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
2054
  msgstr "UpdraftPlus Vault অ্যামাজনের বিশ্বসেরা ডাটা সেন্টারে তৈরী। এছাড়া অতিরিক্ত ডাটার স্টোরেজের মাধ্যমে আছে ৯৯.৯৯৯৯৯৯৯৯৯% বিশ্বাসযোগ্যতা"
2055
 
2056
+ #: src/methods/updraftvault.php:304
2057
  msgid "Already purchased space?"
2058
  msgstr "জায়গা আগে থেকে কিনেছেন?"
2059
 
2060
+ #: src/methods/updraftvault.php:301
2061
  msgid "Show the options"
2062
  msgstr "অপশন দেখান"
2063
 
2064
+ #: src/methods/updraftvault.php:300
2065
  msgid "First time user?"
2066
  msgstr "প্রথম বার ব্যাবহারকারি?"
2067
 
2068
+ #: src/methods/updraftvault.php:297, src/methods/updraftvault.php:314
2069
  msgid "Press a button to get started."
2070
  msgstr "কাজ শুরু করতে যেকোনো একটি বোতাম চাপুন।"
2071
 
2072
+ #: src/methods/updraftvault.php:297, src/methods/updraftvault.php:314
2073
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
2074
  msgstr "UpdraftPlus Vault আপনাকে স্টোরেজের সুবিধা দেয় যেটি <strong>বিশ্বাসযোগ্য, সহজে ব্যাবহারযোগ্য এবং চমৎকার দামে</strong>।"
2075
 
2089
  msgid "Updraft Vault"
2090
  msgstr "ভল্ট আপডেট করুন"
2091
 
2092
+ #: src/addons/azure.php:441, src/addons/backblaze.php:491,
2093
+ #: src/addons/googlecloud.php:835, src/methods/s3.php:1138
2094
  msgid "Delete failed:"
2095
  msgstr "ডিলিট ব্যর্থ:"
2096
 
2097
+ #: src/backup.php:3367
2098
  msgid "The zip engine returned the message: %s."
2099
  msgstr "Zip engine টি এই বার্তা নিয়ে এসেছে: %s।"
2100
 
2114
  msgid "Allow download"
2115
  msgstr "ডাউনলোড এর অনুমতি দিন"
2116
 
2117
+ #: src/addons/migrator.php:1922
2118
  msgid "If sending directly from site to site does not work for you, then there are three other methods - please try one of these instead."
2119
  msgstr ""
2120
 
2121
+ #: src/addons/migrator.php:1907, src/admin.php:721
2122
  msgid "You should check that the remote site is online, not firewalled, does not have security modules that may be blocking access, has UpdraftPlus version %s or later active and that the keys have been entered correctly."
2123
  msgstr ""
2124
 
2125
+ #: src/addons/migrator.php:2410
2126
  msgid "Existing keys"
2127
  msgstr ""
2128
 
2129
+ #: src/addons/migrator.php:2401
2130
  msgid "No keys to allow remote sites to connect have yet been created."
2131
  msgstr ""
2132
 
2133
+ #: src/addons/migrator.php:2383
2134
  msgid "Your new key:"
2135
  msgstr "আপনার নতুন চাবি:"
2136
 
2137
+ #: src/addons/migrator.php:2362
2138
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
2139
  msgstr ""
2140
 
2141
+ #: src/addons/migrator.php:2344
2142
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
2143
  msgstr ""
2144
 
2145
+ #: src/addons/migrator.php:2344
2146
  msgid "Keys for this site are created in the section below the one you just pressed in."
2147
  msgstr ""
2148
 
2149
+ #: src/addons/migrator.php:2024, src/central/bootstrap.php:387
2150
  msgid "You must copy and paste this key now - it cannot be shown again."
2151
  msgstr ""
2152
 
2153
+ #: src/addons/migrator.php:2024, src/central/bootstrap.php:387
2154
  msgid "Key created successfully."
2155
  msgstr "চাবি সফলভাবে তৈরি করা হয়েছে।"
2156
 
2157
+ #: src/addons/migrator.php:2009
2158
  msgid "A key with this name already exists; you must use a unique name."
2159
  msgstr ""
2160
 
2161
+ #: src/addons/migrator.php:1953
2162
  msgid "Also send this backup to the active remote storage locations"
2163
  msgstr ""
2164
 
2165
+ #: src/addons/migrator.php:1918
2166
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
2167
  msgstr ""
2168
 
2169
+ #: src/addons/migrator.php:1874
2170
  msgid "site not found"
2171
  msgstr "সাইট খুঁজে পাওয়া যায় নি"
2172
 
2173
+ #: src/addons/migrator.php:1859
2174
  msgid "Backup data will be sent to:"
2175
  msgstr "ব্যাক তথ্য পাঠানো হবে:"
2176
 
2177
+ #: src/addons/migrator.php:213
2178
  msgid "Restore an existing backup set onto this site"
2179
  msgstr ""
2180
 
2181
+ #: src/addons/migrator.php:206
2182
  msgid "This site has no backups to restore from yet."
2183
  msgstr ""
2184
 
2190
  msgid "This storage method does not allow downloading"
2191
  msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
2192
 
2193
+ #: src/admin.php:3794
2194
  msgid "(backup set imported from remote location)"
2195
  msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
2196
 
2210
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
2211
  msgstr ""
2212
 
2213
+ #: src/addons/migrator.php:1935, src/admin.php:728
2214
  msgid "Testing connection..."
2215
  msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
2216
 
2230
  msgid "Creating..."
2231
  msgstr "তৈরি করা হচ্ছে..."
2232
 
2233
+ #: src/addons/migrator.php:2361
2234
  msgid "Or, receive a backup from a remote site"
2235
  msgstr "অথবা, অন্য একটি সাইট থেকে ব্যাকআপ গ্রহণ করুন"
2236
 
2237
+ #: src/addons/migrator.php:2350
2238
  msgid "Paste key here"
2239
  msgstr "চাবি এখানে পেস্ট করুন"
2240
 
2241
+ #: src/addons/migrator.php:2344
2242
  msgid "How do I get a site's key?"
2243
  msgstr ""
2244
 
2245
+ #: src/addons/migrator.php:2344
2246
  msgid "To add a site as a destination for sending to, enter that site's key below."
2247
  msgstr ""
2248
 
2249
+ #: src/addons/migrator.php:2341
2250
  msgid "Or, send a backup to another site"
2251
  msgstr "অথবা, ব্যাকআপ অন্য একটি সাইটে পাঠান"
2252
 
2253
+ #: src/addons/migrator.php:2106, src/admin.php:729
2254
  msgid "Send"
2255
  msgstr "পাঠান"
2256
 
2257
+ #: src/addons/migrator.php:2100, src/admin.php:720
2258
  msgid "Send to site:"
2259
  msgstr ""
2260
 
2261
+ #: src/addons/migrator.php:2098
2262
  msgid "No receiving sites have yet been added."
2263
  msgstr "কোন প্রাপ্তির সাইট এখনো যোগ হয়নি"
2264
 
2265
+ #: src/addons/migrator.php:2079
2266
  msgid "It is for sending backups to the following site: "
2267
  msgstr ""
2268
 
2269
+ #: src/addons/migrator.php:2079
2270
  msgid "The key was successfully added."
2271
  msgstr ""
2272
 
2273
+ #: src/addons/migrator.php:2063
2274
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2275
  msgstr ""
2276
 
2277
+ #: src/addons/migrator.php:2052, src/addons/migrator.php:2054,
2278
+ #: src/addons/migrator.php:2058
2279
  msgid "The entered key was corrupt - please try again."
2280
  msgstr ""
2281
 
2282
+ #: src/addons/migrator.php:2050
2283
  msgid "The entered key was the wrong length - please try again."
2284
  msgstr ""
2285
 
2286
+ #: src/addons/migrator.php:2040
2287
  msgid "key"
2288
  msgstr "চাবি"
2289
 
2290
+ #: src/methods/ftp.php:379
2291
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
2292
  msgstr ""
2293
 
2294
+ #: src/methods/ftp.php:377
2295
  msgid "Passive mode"
2296
  msgstr ""
2297
 
2298
+ #: src/methods/ftp.php:372
2299
  msgid "Remote path"
2300
  msgstr ""
2301
 
2302
+ #: src/methods/ftp.php:367
2303
  msgid "FTP password"
2304
  msgstr "FTP পাসওয়ার্ড"
2305
 
2306
+ #: src/methods/ftp.php:362
2307
  msgid "FTP login"
2308
  msgstr "FTP লগইন"
2309
 
2310
+ #: src/methods/ftp.php:357
2311
  msgid "FTP server"
2312
  msgstr "FTP সার্ভার"
2313
 
2314
+ #: src/addons/migrator.php:178
2315
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
2316
  msgstr ""
2317
 
2318
+ #: src/addons/migrator.php:178
2319
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
2320
  msgstr ""
2321
 
2323
  msgid "Resetting..."
2324
  msgstr ""
2325
 
2326
+ #: src/addons/migrator.php:2350, src/admin.php:717
2327
  msgid "Add site"
2328
  msgstr "সাইট যুক্ত করুন"
2329
 
2351
  msgid "Go here to re-enter your password."
2352
  msgstr "এখানে যান আপনার পাসওয়ার্ডটি পুনরাই দিতে।"
2353
 
2354
+ #: src/addons/migrator.php:242
2355
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2356
  msgstr ""
2357
 
2358
+ #: src/addons/migrator.php:213
2359
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2360
  msgstr ""
2361
 
2362
+ #: src/addons/migrator.php:180
2363
  msgid "To restore using any of the backup sets below, press the button."
2364
  msgstr ""
2365
 
2367
  msgid "You have made changes to your settings, and not saved."
2368
  msgstr ""
2369
 
2370
+ #: src/addons/onedrive.php:1089
2371
  msgid "N.B. %s is not case-sensitive."
2372
  msgstr ""
2373
 
2374
+ #: src/addons/onedrive.php:1079
2375
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2376
  msgstr ""
2377
 
2378
+ #: src/addons/azure.php:597, src/addons/migrator.php:1922,
2379
+ #: src/addons/onedrive.php:1052
2380
  msgid "For longer help, including screenshots, follow this link."
2381
  msgstr ""
2382
 
2383
+ #: src/addons/onedrive.php:1045
2384
  msgid "Create OneDrive credentials in your OneDrive developer console."
2385
  msgstr ""
2386
 
2387
+ #: src/addons/onedrive.php:1037
2388
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
2389
  msgstr ""
2390
 
2391
+ #: src/addons/azure.php:590
2392
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2393
  msgstr ""
2394
 
2395
+ #: src/addons/onedrive.php:1001, src/addons/onedrive.php:1003
2396
  msgid "%s authorisation failed:"
2397
  msgstr ""
2398
 
2399
+ #: src/addons/onedrive.php:876, src/addons/onedrive.php:1078,
2400
+ #: src/addons/onedrive.php:1082
2401
  msgid "OneDrive"
2402
  msgstr "OneDrive"
2403
 
2404
+ #: src/addons/onedrive.php:689
2405
  msgid "Please re-authorize the connection to your %s account."
2406
  msgstr ""
2407
 
2408
+ #: src/methods/email.php:87
2409
  msgid "configure it here"
2410
  msgstr "এটিকে এইখানে কনফিগার করুন"
2411
 
2412
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666
2413
  msgid "To remove the block, please go here."
2414
  msgstr "ব্লক সরাতে, এখানে যান।"
2415
 
2554
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
2555
  msgstr ""
2556
 
2557
+ #: src/methods/s3.php:894
2558
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2559
  msgstr ""
2560
 
2566
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
2567
  msgstr ""
2568
 
2569
+ #: src/addons/onedrive.php:658, src/addons/onedrive.php:682,
2570
+ #: src/methods/updraftvault.php:666, src/udaddons/updraftplus-addons.php:873,
2571
  #: src/udaddons/updraftplus-addons.php:887
2572
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
2573
  msgstr ""
2574
 
2575
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666,
2576
  #: src/udaddons/updraftplus-addons.php:887
2577
  msgid "It appears that your web server's IP Address (%s) is blocked."
2578
  msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
2579
 
2580
+ #: src/addons/onedrive.php:682, src/methods/updraftvault.php:666,
2581
  #: src/udaddons/updraftplus-addons.php:887
2582
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
2583
  msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
2629
  msgid "(at same time as files backup)"
2630
  msgstr ""
2631
 
2632
+ #: src/admin.php:3265
2633
  msgid "No backup has been completed"
2634
  msgstr ""
2635
 
2676
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2677
  msgstr ""
2678
 
2679
+ #: src/addons/sftp.php:452
2680
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
2681
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
2682
  msgstr ""
2683
 
2684
+ #: src/addons/sftp.php:402
2685
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
2686
  msgstr ""
2687
 
2688
+ #: src/methods/openstack2.php:190
2689
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
2690
  msgid "tenant"
2691
  msgstr ""
2692
 
2693
+ #: src/methods/openstack2.php:139
2694
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
2695
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
2696
  msgstr ""
2703
  msgid "Check this box to have a basic report sent to"
2704
  msgstr ""
2705
 
2706
+ #: src/admin.php:3279
2707
  msgctxt "i.e. Non-automatic"
2708
  msgid "Manual"
2709
  msgstr ""
2721
  msgid "Any other file/directory on your server that you wish to back up"
2722
  msgstr ""
2723
 
2724
+ #: src/admin.php:2442
2725
  msgid "For even more features and personal support, check out "
2726
  msgstr ""
2727
 
2815
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
2816
  msgstr ""
2817
 
2818
+ #: src/admin.php:2808, src/admin.php:3825
2819
  msgid "View Log"
2820
  msgstr ""
2821
 
2832
  msgid "and retain this many scheduled backups"
2833
  msgstr ""
2834
 
2835
+ #: src/admin.php:3235
2836
  msgid "incremental backup; base backup: %s"
2837
  msgstr ""
2838
 
2844
  msgid "Upload files into UpdraftPlus."
2845
  msgstr ""
2846
 
2847
+ #: src/admin.php:952, src/includes/class-commands.php:394,
2848
  #: src/templates/wp-admin/settings/tab-status.php:22
2849
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2850
  msgstr ""
2851
 
2852
+ #: src/class-updraftplus.php:4202
2853
  msgid "Backup label:"
2854
  msgstr ""
2855
 
2856
+ #: src/addons/backblaze.php:189, src/admin.php:1953
2857
  msgid "Error: unexpected file read fail"
2858
  msgstr ""
2859
 
2860
+ #: src/backup.php:3373
2861
  msgid "check your log for more details."
2862
  msgstr ""
2863
 
2864
+ #: src/backup.php:3371
2865
  msgid "your web hosting account appears to be full; please see: %s"
2866
  msgstr ""
2867
 
2868
+ #: src/backup.php:3369
2869
  msgid "A zip error occurred"
2870
  msgstr ""
2871
 
2873
  msgid "Your label for this backup (optional)"
2874
  msgstr ""
2875
 
2876
+ #: src/addons/googlecloud.php:977, src/methods/googledrive.php:1161
2877
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
2878
  msgstr ""
2879
 
2880
+ #: src/methods/updraftvault.php:704, src/udaddons/updraftplus-addons.php:926
2881
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
2882
  msgstr ""
2883
 
2884
+ #: src/methods/updraftvault.php:701, src/udaddons/updraftplus-addons.php:922
2885
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
2886
  msgstr ""
2887
 
2888
+ #: src/methods/updraftvault.php:642, src/udaddons/updraftplus-addons.php:790
2889
  msgid "You need to supply both an email address and a password"
2890
  msgstr ""
2891
 
2893
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2894
  msgstr ""
2895
 
2896
+ #: src/class-updraftplus.php:4221
2897
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2898
  msgstr ""
2899
 
2900
+ #: src/class-updraftplus.php:4221
2901
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2902
  msgstr ""
2903
 
2904
+ #: src/addons/migrator.php:1220
2905
  msgid "already done"
2906
  msgstr ""
2907
 
2908
+ #: src/addons/migrator.php:1177
2909
  msgid "skipped (not in list)"
2910
  msgstr ""
2911
 
2912
+ #: src/addons/migrator.php:1177, src/addons/migrator.php:1220,
2913
+ #: src/addons/migrator.php:1354
2914
  msgid "Search and replacing table:"
2915
  msgstr ""
2916
 
2917
+ #: src/addons/migrator.php:354
2918
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2919
  msgstr ""
2920
 
2921
+ #: src/addons/migrator.php:354
2922
  msgid "These tables only"
2923
  msgstr ""
2924
 
2925
+ #: src/addons/migrator.php:353
2926
  msgid "Rows per batch"
2927
  msgstr ""
2928
 
2934
  msgid "You need to connect to receive future updates to UpdraftPlus."
2935
  msgstr ""
2936
 
2937
+ #: src/class-updraftplus.php:4194
2938
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2939
  msgstr ""
2940
 
2941
+ #: src/class-updraftplus.php:4194
2942
  msgid "You should only proceed if you cannot update the current server and are confident (or willing to risk) that your plugins/themes/etc. are compatible with the older %s version."
2943
  msgstr ""
2944
 
2945
+ #: src/class-updraftplus.php:4194
2946
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2947
  msgstr ""
2948
 
2949
+ #: src/class-updraftplus.php:4194
2950
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2951
  msgstr ""
2952
 
2975
  msgid "UpdraftPlus is on social media - check us out!"
2976
  msgstr ""
2977
 
2978
+ #: src/admin.php:3892
2979
  msgid "Why am I seeing this?"
2980
  msgstr "আমি কেন এটি দেখছি?"
2981
 
2987
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2988
  msgstr ""
2989
 
2990
+ #: src/admin.php:1892, src/admin.php:1904
2991
  msgid "Start backup"
2992
  msgstr "ব্যাকআপ শুরু করুন"
2993
 
2994
+ #: src/class-updraftplus.php:4166, src/restorer.php:1045
2995
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2996
  msgstr ""
2997
 
2998
+ #: src/admin.php:3133
2999
  msgid "You will need to consult with your web hosting provider to find out how to set permissions for a WordPress plugin to write to the directory."
3000
  msgstr ""
3001
 
3003
  msgid "Unless you have a problem, you can completely ignore everything here."
3004
  msgstr ""
3005
 
3006
+ #: src/admin.php:2128
3007
  msgid "This file could not be uploaded"
3008
  msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
3009
 
3010
+ #: src/admin.php:2091
3011
  msgid "You will find more information about this in the Settings section."
3012
  msgstr ""
3013
 
3027
  msgid "Memory limit"
3028
  msgstr ""
3029
 
3030
+ #: src/class-updraftplus.php:4635, src/restorer.php:1529
3031
  msgid "restoration"
3032
  msgstr ""
3033
 
3034
+ #: src/backup.php:1001
3035
  msgid "Incremental"
3036
  msgstr ""
3037
 
3038
+ #: src/backup.php:1001
3039
  msgid "Full backup"
3040
  msgstr ""
3041
 
3051
  msgid "Backup succeeded"
3052
  msgstr ""
3053
 
3054
+ #: src/admin.php:3280, src/admin.php:3281, src/admin.php:3282,
3055
  #: src/updraftplus.php:99, src/updraftplus.php:100
3056
  msgid "Every %s hours"
3057
  msgstr ""
3058
 
3059
+ #: src/addons/migrator.php:871, src/addons/migrator.php:873
3060
  msgid "search and replace"
3061
  msgstr ""
3062
 
3063
+ #: src/addons/migrator.php:356
3064
  msgid "Go"
3065
  msgstr ""
3066
 
3067
+ #: src/addons/migrator.php:345
3068
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
3069
  msgstr ""
3070
 
3071
+ #: src/addons/migrator.php:344
3072
  msgid "This can easily destroy your site; so, use it with care!"
3073
  msgstr ""
3074
 
3075
+ #: src/addons/migrator.php:300, src/addons/migrator.php:352
3076
  msgid "Replace with"
3077
  msgstr ""
3078
 
3079
+ #: src/addons/migrator.php:299, src/addons/migrator.php:351
3080
  msgid "Search for"
3081
  msgstr ""
3082
 
3083
+ #: src/addons/migrator.php:298, src/addons/migrator.php:343,
3084
  #: src/templates/wp-admin/advanced/search-replace.php:7,
3085
  #: src/templates/wp-admin/advanced/tools-menu.php:18
3086
  msgid "Search / replace database"
3087
  msgstr ""
3088
 
3089
+ #: src/addons/migrator.php:304
3090
  msgid "search term"
3091
  msgstr ""
3092
 
3094
  msgid "Too many database errors have occurred - aborting"
3095
  msgstr ""
3096
 
3097
+ #: src/backup.php:1067
3098
  msgid "read more at %s"
3099
  msgstr ""
3100
 
3101
+ #: src/backup.php:1067
3102
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
3103
  msgstr ""
3104
 
3105
+ #: src/methods/googledrive.php:1168
3106
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
3107
  msgstr ""
3108
 
3109
+ #: src/admin.php:3636
3110
  msgid "You have not yet made any backups."
3111
  msgstr ""
3112
 
3126
  msgid "Free disk space in account:"
3127
  msgstr ""
3128
 
3129
+ #: src/admin.php:4477, src/templates/wp-admin/settings/tab-status.php:27
3130
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3131
  msgstr ""
3132
 
3133
+ #: src/admin.php:534, src/admin.php:676, src/admin.php:1738,
3134
  #: src/includes/deprecated-actions.php:29,
3135
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
3136
  #: src/templates/wp-admin/settings/tab-bar.php:6
3141
  msgid "Current Status"
3142
  msgstr ""
3143
 
3144
+ #: src/admin.php:957
3145
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
3146
  msgstr ""
3147
 
3148
+ #: src/admin.php:957
3149
  msgid "To make a backup, just press the Backup Now button."
3150
  msgstr ""
3151
 
3152
+ #: src/admin.php:957
3153
  msgid "Welcome to UpdraftPlus!"
3154
  msgstr ""
3155
 
3221
  msgid "user"
3222
  msgstr ""
3223
 
3224
+ #: src/class-updraftplus.php:1785
3225
  msgid "External database (%s)"
3226
  msgstr ""
3227
 
3228
+ #: src/methods/googledrive.php:1168
3229
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
3230
  msgstr ""
3231
 
3233
  msgid "failed to access parent folder"
3234
  msgstr ""
3235
 
3236
+ #: src/addons/googlecloud.php:690, src/addons/onedrive.php:844,
3237
+ #: src/addons/onedrive.php:855, src/methods/googledrive.php:420
3238
  msgid "However, subsequent access attempts failed:"
3239
  msgstr ""
3240
 
3241
+ #: src/admin.php:3661
3242
  msgid "External database"
3243
  msgstr ""
3244
 
3270
  msgid "use UpdraftPlus Premium"
3271
  msgstr ""
3272
 
3273
+ #: src/class-updraftplus.php:4048
3274
  msgid "Decryption failed. The database file is encrypted."
3275
  msgstr ""
3276
 
3283
  msgid "An error occurred on the first %s command - aborting run"
3284
  msgstr ""
3285
 
3286
+ #: src/addons/moredatabase.php:105, src/backup.php:1567
3287
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
3288
  msgstr ""
3289
 
3290
+ #: src/backup.php:1567
3291
  msgid "database connection attempt failed."
3292
  msgstr ""
3293
 
3294
+ #: src/addons/migrator.php:1108
3295
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3296
  msgstr ""
3297
 
3299
  msgid "In %s, path names are case sensitive."
3300
  msgstr ""
3301
 
3302
+ #: src/addons/azure.php:630, src/addons/google-enhanced.php:76,
3303
+ #: src/addons/onedrive.php:1089
3304
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
3305
  msgstr ""
3306
 
3307
+ #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1025,
3308
+ #: src/addons/onedrive.php:1089
3309
  msgid "e.g. %s"
3310
  msgstr ""
3311
 
3312
+ #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1089
3313
  msgid "Enter the path of the %s folder you wish to use here."
3314
  msgstr ""
3315
 
3316
+ #: src/methods/openstack2.php:170
3317
  msgid "Container"
3318
  msgstr ""
3319
 
3320
+ #: src/methods/openstack2.php:153
3321
  msgid "Leave this blank, and a default will be chosen."
3322
  msgstr ""
3323
 
3324
+ #: src/methods/openstack2.php:144
3325
  msgid "Tenant"
3326
  msgstr ""
3327
 
3328
+ #: src/methods/openstack2.php:144
3329
  msgid "Follow this link for more information"
3330
  msgstr ""
3331
 
3332
+ #: src/methods/openstack2.php:136, src/methods/openstack2.php:195
3333
  msgid "authentication URI"
3334
  msgstr ""
3335
 
3336
+ #: src/methods/openstack2.php:120
3337
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
3338
  msgstr ""
3339
 
3353
  msgid "Failed to upload %s"
3354
  msgstr ""
3355
 
3356
+ #: src/methods/dropbox.php:742, src/methods/dropbox.php:744
3357
  msgid "Success:"
3358
  msgstr ""
3359
 
3360
+ #: src/addons/onedrive.php:1110, src/methods/dropbox.php:595
3361
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
3362
  msgstr ""
3363
 
3364
+ #: src/addons/onedrive.php:1102, src/methods/dropbox.php:579
3365
  msgid "(You appear to be already authenticated)."
3366
  msgstr ""
3367
 
3368
+ #: src/methods/dropbox.php:575, src/methods/dropbox.php:583,
3369
+ #: src/methods/dropbox.php:595
3370
  msgid "Dropbox"
3371
  msgstr ""
3372
 
3373
+ #: src/addons/onedrive.php:1095, src/methods/dropbox.php:575
3374
  msgid "Authenticate with %s"
3375
  msgstr ""
3376
 
3401
  msgid "%s error - failed to access the container"
3402
  msgstr ""
3403
 
3404
+ #: src/addons/googlecloud.php:1090, src/addons/onedrive.php:1134,
3405
+ #: src/methods/dropbox.php:638, src/methods/googledrive.php:1246
3406
  msgid "Account holder's name: %s."
3407
  msgstr ""
3408
 
3409
+ #: src/methods/googledrive.php:1224
3410
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3411
  msgstr ""
3412
 
3413
+ #: src/methods/googledrive.php:1211
3414
  msgid "It is an ID number internal to Google Drive"
3415
  msgstr ""
3416
 
3417
+ #: src/methods/googledrive.php:1211
3418
  msgid "<strong>This is NOT a folder name</strong>."
3419
  msgstr ""
3420
 
3421
+ #: src/addons/google-enhanced.php:74, src/addons/onedrive.php:1087,
3422
+ #: src/methods/googledrive.php:1206, src/methods/googledrive.php:1217
3423
  msgid "Folder"
3424
  msgstr ""
3425
 
3426
+ #: src/addons/googlecloud.php:296, src/addons/onedrive.php:426,
3427
+ #: src/methods/googledrive.php:1121
3428
  msgid "%s download: failed: file not found"
3429
  msgstr ""
3430
 
3431
+ #: src/addons/googlecloud.php:710, src/methods/googledrive.php:440
3432
  msgid "Name: %s."
3433
  msgstr ""
3434
 
3457
  msgid "Fetch"
3458
  msgstr ""
3459
 
3460
+ #: src/addons/migrator.php:469,
3461
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3462
  #: src/templates/wp-admin/settings/form-contents.php:190
3463
  msgid "This feature requires %s version %s or later"
3467
  msgid "Failed to unpack the archive"
3468
  msgstr ""
3469
 
3470
+ #: src/class-updraftplus.php:1317
3471
  msgid "Error - failed to download the file"
3472
  msgstr ""
3473
 
3487
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
3488
  msgstr ""
3489
 
3490
+ #: src/addons/sftp.php:513
3491
  msgid "password/key"
3492
  msgstr ""
3493
 
3494
+ #: src/addons/migrator.php:2368, src/addons/sftp.php:449, src/admin.php:723,
3495
+ #: src/admin.php:4698
3496
  msgid "Key"
3497
  msgstr ""
3498
 
3499
+ #: src/addons/sftp.php:444
3500
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
3501
  msgstr ""
3502
 
3508
  msgid "SCP/SFTP password/key"
3509
  msgstr ""
3510
 
3511
+ #: src/admin.php:3705
3512
  msgid "Files backup (created by %s)"
3513
  msgstr ""
3514
 
3515
+ #: src/admin.php:3705
3516
  msgid "Files and database WordPress backup (created by %s)"
3517
  msgstr ""
3518
 
3519
+ #: src/addons/importer.php:276, src/admin.php:3699,
3520
  #: src/includes/class-backup-history.php:279
3521
  msgid "Backup created by: %s."
3522
  msgstr ""
3523
 
3524
+ #: src/admin.php:3659
3525
  msgid "Database (created by %s)"
3526
  msgstr ""
3527
 
3528
+ #: src/admin.php:3653, src/admin.php:3701
3529
  msgid "unknown source"
3530
  msgstr ""
3531
 
3537
  msgid "Upload backup files"
3538
  msgstr ""
3539
 
3540
+ #: src/admin.php:2143
3541
  msgid "This backup was created by %s, and can be imported."
3542
  msgstr ""
3543
 
3544
+ #: src/admin.php:986
3545
  msgid "Read this page for a guide to possible causes and how to fix it."
3546
  msgstr ""
3547
 
3548
+ #: src/admin.php:986
3549
  msgid "WordPress has a number (%d) of scheduled tasks which are overdue. Unless this is a development site, this probably means that the scheduler in your WordPress install is not working."
3550
  msgstr ""
3551
 
3562
  msgid "This file does not appear to be an UpdraftPlus backup archive (such files are .zip or .gz files which have a name like: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3563
  msgstr ""
3564
 
3565
+ #: src/admin.php:3702, src/includes/class-wpadmin-commands.php:152,
3566
  #: src/restorer.php:1498
3567
  msgid "Backup created by unknown source (%s) - cannot be restored."
3568
  msgstr ""
3575
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
3576
  msgstr ""
3577
 
3578
+ #: src/methods/dropbox.php:377
3579
  msgid "%s returned an unexpected HTTP response: %s"
3580
  msgstr ""
3581
 
3582
+ #: src/addons/sftp.php:983
3583
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
3584
  msgstr ""
3585
 
3586
+ #: src/addons/backblaze.php:543, src/methods/cloudfiles.php:234,
3587
+ #: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
3588
  msgid "No settings were found"
3589
  msgstr ""
3590
 
3596
  msgid "Rescanning remote and local storage for backup sets..."
3597
  msgstr ""
3598
 
3599
+ #: src/addons/googlecloud.php:1028, src/addons/googlecloud.php:1041,
3600
  #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
3601
  msgid "(Read more)"
3602
  msgstr ""
3614
  msgid "Remove"
3615
  msgstr ""
3616
 
3617
+ #: src/methods/s3.php:845
3618
  msgid "Other %s FAQs."
3619
  msgstr ""
3620
 
3622
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3623
  msgstr ""
3624
 
3625
+ #: src/addons/morefiles.php:445, src/admin.php:3384
3626
  msgid "If entering multiple files/directories, then separate them with commas. For entities at the top level, you can use a * at the start or end of the entry as a wildcard."
3627
  msgstr ""
3628
 
3629
+ #: src/class-updraftplus.php:4635, src/methods/ftp.php:330,
3630
  #: src/restorer.php:1529
3631
  msgid "Your hosting company must enable these functions before %s can work."
3632
  msgstr ""
3633
 
3634
+ #: src/class-updraftplus.php:4635, src/methods/ftp.php:330
3635
  msgid "Your web server's PHP installation has these functions disabled: %s."
3636
  msgstr ""
3637
 
3638
+ #: src/methods/ftp.php:327
3639
  msgid "encrypted FTP (explicit encryption)"
3640
  msgstr ""
3641
 
3642
+ #: src/methods/ftp.php:326
3643
  msgid "encrypted FTP (implicit encryption)"
3644
  msgstr ""
3645
 
3646
+ #: src/methods/ftp.php:325
3647
  msgid "regular non-encrypted FTP"
3648
  msgstr ""
3649
 
3701
  msgid "Dismiss from main dashboard (for %s weeks)"
3702
  msgstr ""
3703
 
3704
+ #: src/class-updraftplus.php:4685
3705
  msgid "The attempt to undo the double-compression succeeded."
3706
  msgstr ""
3707
 
3708
+ #: src/class-updraftplus.php:4662, src/class-updraftplus.php:4683
3709
  msgid "The attempt to undo the double-compression failed."
3710
  msgstr ""
3711
 
3712
+ #: src/class-updraftplus.php:4655
3713
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3714
  msgstr ""
3715
 
3717
  msgid "Constants"
3718
  msgstr ""
3719
 
3720
+ #: src/backup.php:1804
3721
  msgid "Failed to open database file for reading:"
3722
  msgstr ""
3723
 
3724
+ #: src/backup.php:1615
3725
  msgid "No database tables found"
3726
  msgstr ""
3727
 
3728
+ #: src/backup.php:1613
3729
  msgid "please wait for the rescheduled attempt"
3730
  msgstr ""
3731
 
3733
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
3734
  msgstr ""
3735
 
3736
+ #: src/addons/onedrive.php:94, src/methods/dropbox.php:267
3737
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
3738
  msgstr ""
3739
 
3742
  msgid "Errors occurred:"
3743
  msgstr ""
3744
 
3745
+ #: src/admin.php:3911
3746
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3747
  msgstr ""
3748
 
3766
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
3767
  msgstr ""
3768
 
3769
+ #: src/admin.php:961, src/class-updraftplus.php:822
3770
  msgid "The amount of time allowed for WordPress plugins to run is very low (%s seconds) - you should increase it to avoid backup failures due to time-outs (consult your web hosting company for more help - it is the max_execution_time PHP setting; the recommended value is %s seconds or more)"
3771
  msgstr ""
3772
 
3773
+ #: src/addons/migrator.php:271
3774
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3775
  msgstr ""
3776
 
3777
+ #: src/addons/sftp.php:738, src/addons/sftp.php:741,
3778
  #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
3779
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
3780
  msgstr ""
3781
 
3782
+ #: src/addons/moredatabase.php:137, src/admin.php:1482
3783
  msgid "Messages:"
3784
  msgstr ""
3785
 
3791
  msgid "The directory does not exist"
3792
  msgstr ""
3793
 
3794
+ #: src/addons/cloudfiles-enhanced.php:279
3795
  msgid "New User's Email Address"
3796
  msgstr ""
3797
 
3798
+ #: src/addons/cloudfiles-enhanced.php:276
3799
  msgid "New User's Username"
3800
  msgstr ""
3801
 
3802
+ #: src/addons/cloudfiles-enhanced.php:273
3803
  msgid "Admin API Key"
3804
  msgstr ""
3805
 
3806
+ #: src/addons/cloudfiles-enhanced.php:270
3807
  msgid "Admin Username"
3808
  msgstr ""
3809
 
3810
+ #: src/addons/cloudfiles-enhanced.php:265
3811
  msgid "US or UK Rackspace Account"
3812
  msgstr ""
3813
 
3814
+ #: src/addons/cloudfiles-enhanced.php:257
3815
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
3816
  msgstr ""
3817
 
3818
+ #: src/addons/cloudfiles-enhanced.php:254
3819
  msgid "Create new API user and container"
3820
  msgstr ""
3821
 
3822
+ #: src/addons/cloudfiles-enhanced.php:192
3823
  msgid "API Key: %s"
3824
  msgstr ""
3825
 
3826
+ #: src/addons/cloudfiles-enhanced.php:192
3827
  msgid "Password: %s"
3828
  msgstr ""
3829
 
3830
+ #: src/addons/cloudfiles-enhanced.php:192, src/addons/s3-enhanced.php:318
3831
  msgid "Username: %s"
3832
  msgstr ""
3833
 
3834
+ #: src/addons/cloudfiles-enhanced.php:151,
3835
+ #: src/addons/cloudfiles-enhanced.php:154,
3836
+ #: src/addons/cloudfiles-enhanced.php:158,
3837
+ #: src/addons/cloudfiles-enhanced.php:170,
3838
+ #: src/addons/cloudfiles-enhanced.php:177,
3839
+ #: src/addons/cloudfiles-enhanced.php:181
3840
  msgid "Cloud Files operation failed (%s)"
3841
  msgstr ""
3842
 
3843
+ #: src/addons/cloudfiles-enhanced.php:149
3844
  msgid "Conflict: that user or email address already exists"
3845
  msgstr ""
3846
 
3876
  msgid "Rackspace Cloud Files, enhanced"
3877
  msgstr ""
3878
 
3879
+ #: src/addons/cloudfiles-enhanced.php:286, src/methods/cloudfiles-new.php:147,
3880
+ #: src/methods/cloudfiles.php:493
3881
  msgid "Cloud Files Container"
3882
  msgstr ""
3883
 
3884
+ #: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:488
3885
  msgid "Cloud Files API Key"
3886
  msgstr ""
3887
 
3888
+ #: src/methods/cloudfiles-new.php:137
3889
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3890
  msgstr ""
3891
 
3892
+ #: src/methods/cloudfiles-new.php:134
3893
  msgid "Cloud Files Username"
3894
  msgstr ""
3895
 
3896
+ #: src/addons/cloudfiles-enhanced.php:47, src/methods/cloudfiles-new.php:166
3897
  msgid "London (LON)"
3898
  msgstr ""
3899
 
3900
+ #: src/addons/cloudfiles-enhanced.php:46, src/methods/cloudfiles-new.php:165
3901
  msgid "Hong Kong (HKG)"
3902
  msgstr ""
3903
 
3904
+ #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:164
3905
  msgid "Northern Virginia (IAD)"
3906
  msgstr ""
3907
 
3908
+ #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:163
3909
  msgid "Chicago (ORD)"
3910
  msgstr ""
3911
 
3912
+ #: src/addons/cloudfiles-enhanced.php:43, src/methods/cloudfiles-new.php:162
3913
  msgid "Sydney (SYD)"
3914
  msgstr ""
3915
 
3916
+ #: src/addons/cloudfiles-enhanced.php:42, src/methods/cloudfiles-new.php:161
3917
  msgid "Dallas (DFW) (default)"
3918
  msgstr ""
3919
 
3920
+ #: src/addons/cloudfiles-enhanced.php:282, src/methods/cloudfiles-new.php:124
3921
  msgid "Cloud Files Storage Region"
3922
  msgstr ""
3923
 
3924
+ #: src/methods/cloudfiles-new.php:117
3925
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3926
  msgstr ""
3927
 
3928
+ #: src/methods/cloudfiles-new.php:115
3929
  msgid "US or UK-based Rackspace Account"
3930
  msgstr ""
3931
 
3932
+ #: src/addons/cloudfiles-enhanced.php:266, src/methods/cloudfiles-new.php:115
3933
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3934
  msgstr ""
3935
 
3936
+ #: src/addons/cloudfiles-enhanced.php:147, src/addons/s3-enhanced.php:221,
3937
  #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:484,
3938
  #: src/methods/openstack-base.php:486, src/methods/openstack-base.php:507,
3939
  #: src/methods/openstack2.php:33
3940
  msgid "Authorisation failed (check your credentials)"
3941
  msgstr ""
3942
 
3943
+ #: src/methods/updraftvault.php:616, src/udaddons/options.php:270
3944
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3945
  msgstr ""
3946
 
3956
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3957
  msgstr ""
3958
 
3959
+ #: src/admin.php:673, src/admin.php:4190
3960
  msgid "Error data:"
3961
  msgstr ""
3962
 
3963
+ #: src/admin.php:3863
3964
  msgid "Backup does not exist in the backup history"
3965
  msgstr ""
3966
 
3967
+ #: src/admin.php:2743
3968
  msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old). You should press this button to delete them as soon as you have verified that the restoration worked."
3969
  msgstr ""
3970
 
4004
  msgid "Email reports"
4005
  msgstr ""
4006
 
4007
+ #: src/class-updraftplus.php:1793, src/class-updraftplus.php:1798
4008
  msgid "%s checksum: %s"
4009
  msgstr ""
4010
 
4011
+ #: src/class-updraftplus.php:1766, src/class-updraftplus.php:1768
4012
  msgid "files: %s"
4013
  msgstr ""
4014
 
4020
  msgid "Debugging information"
4021
  msgstr ""
4022
 
4023
+ #: src/addons/reporting.php:222, src/admin.php:3592
4024
  msgid "Uploaded to:"
4025
  msgstr ""
4026
 
4061
  msgid "%d errors, %d warnings"
4062
  msgstr ""
4063
 
4064
+ #: src/addons/onedrive.php:800, src/methods/dropbox.php:726
4065
  msgid "%s authentication"
4066
  msgstr ""
4067
 
4068
+ #: src/addons/onedrive.php:800, src/class-updraftplus.php:504,
4069
+ #: src/methods/dropbox.php:240, src/methods/dropbox.php:686,
4070
+ #: src/methods/dropbox.php:726, src/methods/dropbox.php:739,
4071
+ #: src/methods/dropbox.php:883
4072
  msgid "%s error: %s"
4073
  msgstr ""
4074
 
4075
+ #: src/addons/googlecloud.php:970, src/methods/dropbox.php:544
4076
  msgid "%s logo"
4077
  msgstr ""
4078
 
4079
+ #: src/methods/dropbox.php:286
4080
  msgid "%s did not return the expected response - check your log file for more details"
4081
  msgstr ""
4082
 
4084
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
4085
  msgstr ""
4086
 
4087
+ #: src/methods/email.php:88
4088
  msgid "For more options, use the \"%s\" add-on."
4089
  msgstr ""
4090
 
4091
+ #: src/methods/email.php:87
4092
  msgid "Your site's admin email address (%s) will be used."
4093
  msgstr ""
4094
 
4095
+ #: src/admin.php:710, src/methods/updraftvault.php:305,
4096
+ #: src/methods/updraftvault.php:348, src/udaddons/options.php:249
4097
  msgid "Connect"
4098
  msgstr ""
4099
 
4101
  msgid "For more reporting features, use the Reporting add-on."
4102
  msgstr ""
4103
 
4104
+ #: src/class-updraftplus.php:4129
4105
  msgid "(version: %s)"
4106
  msgstr ""
4107
 
4114
  msgid "When the Email storage method is enabled, also send the entire backup"
4115
  msgstr ""
4116
 
4117
+ #: src/addons/reporting.php:181, src/backup.php:1102
4118
  msgid "Latest status:"
4119
  msgstr ""
4120
 
4121
+ #: src/backup.php:1101
4122
  msgid "Backup contains:"
4123
  msgstr ""
4124
 
4125
+ #: src/backup.php:1058
4126
  msgid "Backed up: %s"
4127
  msgstr ""
4128
 
4129
+ #: src/addons/reporting.php:264, src/backup.php:1052
4130
  msgid "The log file has been attached to this email."
4131
  msgstr ""
4132
 
4133
+ #: src/backup.php:1016
4134
  msgid "Unknown/unexpected error - please raise a support request"
4135
  msgstr ""
4136
 
4137
+ #: src/backup.php:1013
4138
  msgid "Database only (files were not part of this particular schedule)"
4139
  msgstr ""
4140
 
4141
+ #: src/backup.php:1013
4142
  msgid "Database (files backup has not completed)"
4143
  msgstr ""
4144
 
4145
+ #: src/backup.php:1010
4146
  msgid "Files only (database was not part of this particular schedule)"
4147
  msgstr ""
4148
 
4149
+ #: src/backup.php:1010
4150
  msgid "Files (database backup has not completed)"
4151
  msgstr ""
4152
 
4153
+ #: src/admin.php:305, src/backup.php:1008
4154
  msgid "Files and database"
4155
  msgstr ""
4156
 
4157
+ #: src/options.php:185
4158
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4159
  msgstr ""
4160
 
4161
+ #: src/options.php:185
4162
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4163
  msgstr ""
4164
 
4165
+ #: src/options.php:185
4166
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4167
  msgstr ""
4168
 
4169
+ #: src/options.php:185
4170
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4171
  msgstr ""
4172
 
4173
+ #: src/options.php:185
4174
  msgid "UpdraftPlus warning:"
4175
  msgstr ""
4176
 
4214
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
4215
  msgstr ""
4216
 
4217
+ #: src/methods/updraftvault.php:695, src/methods/updraftvault.php:710,
4218
  #: src/udaddons/updraftplus-addons.php:933
4219
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
4220
  msgstr ""
4221
 
4222
+ #: src/methods/updraftvault.php:707, src/udaddons/updraftplus-addons.php:929
4223
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4224
  msgstr ""
4225
 
4226
+ #: src/methods/updraftvault.php:668, src/udaddons/updraftplus-addons.php:892
4227
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
4228
  msgstr ""
4229
 
4235
  msgid "We failed to successfully connect to UpdraftPlus.Com"
4236
  msgstr ""
4237
 
4238
+ #: src/methods/email.php:88,
4239
  #: src/templates/wp-admin/settings/form-contents.php:251,
4240
  #: src/templates/wp-admin/settings/tab-addons.php:203,
4241
  #: src/templates/wp-admin/settings/tab-addons.php:204
4242
  msgid "Reporting"
4243
  msgstr ""
4244
 
4245
+ #: src/admin.php:4695
4246
  msgid "Options (raw)"
4247
  msgstr ""
4248
 
4262
  msgid "See also the \"More Files\" add-on from our shop."
4263
  msgstr ""
4264
 
4265
+ #: src/backup.php:3360, src/class-updraftplus.php:835
4266
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
4267
  msgstr ""
4268
 
4269
+ #: src/class-updraftplus.php:819
4270
  msgid "The amount of memory (RAM) allowed for PHP is very low (%s Mb) - you should increase it to avoid failures due to insufficient memory (consult your web hosting company for more help)"
4271
  msgstr ""
4272
 
4394
  msgid "Your web-server does not have the %s module installed."
4395
  msgstr ""
4396
 
4397
+ #: src/addons/googlecloud.php:1057, src/methods/googledrive.php:1236
4398
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4399
  msgstr ""
4400
 
4418
  msgid "Site home:"
4419
  msgstr ""
4420
 
4421
+ #: src/addons/morestorage.php:112
4422
  msgid "Remote Storage Options"
4423
  msgstr ""
4424
 
4430
  msgid "Remember this choice for next time (you will still have the chance to change it)"
4431
  msgstr ""
4432
 
4433
+ #: src/addons/azure.php:418, src/methods/stream-base.php:141,
4434
  #: src/methods/stream-base.php:146
4435
  msgid "Upload failed"
4436
  msgstr ""
4439
  msgid "You can send a backup to more than one destination with an add-on."
4440
  msgstr ""
4441
 
4442
+ #: src/admin.php:2966
4443
  msgid "Note: the progress bar below is based on stages, NOT time. Do not stop the backup simply because it seems to have remained in the same place for a while - that is normal."
4444
  msgstr ""
4445
 
4446
+ #: src/admin.php:2865
4447
  msgid "(%s%%, file %s of %s)"
4448
  msgstr ""
4449
 
4452
  msgid "Read more about how this works..."
4453
  msgstr ""
4454
 
4455
+ #: src/addons/sftp.php:575
4456
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
4457
  msgstr ""
4458
 
4459
+ #: src/addons/sftp.php:573
4460
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
4461
  msgstr ""
4462
 
4463
+ #: src/addons/sftp.php:475
4464
  msgid "Use SCP instead of SFTP"
4465
  msgstr ""
4466
 
4484
  msgid "%s settings test result:"
4485
  msgstr ""
4486
 
4487
+ #: src/admin.php:3767, src/admin.php:3769
4488
  msgid "(Not finished)"
4489
  msgstr ""
4490
 
4491
+ #: src/admin.php:3769
4492
  msgid "If you are seeing more backups than you expect, then it is probably because the deletion of old backup sets does not happen until a fresh backup completes."
4493
  msgstr ""
4494
 
4500
  msgid "This is where UpdraftPlus will write the zip files it creates initially. This directory must be writable by your web server. It is relative to your content directory (which by default is called wp-content)."
4501
  msgstr ""
4502
 
4503
+ #: src/admin.php:2961
4504
  msgid "Job ID: %s"
4505
  msgstr ""
4506
 
4507
+ #: src/admin.php:2946
4508
  msgid "last activity: %ss ago"
4509
  msgstr ""
4510
 
4511
+ #: src/admin.php:2945
4512
  msgid "next resumption: %d (after %ss)"
4513
  msgstr ""
4514
 
4515
+ #: src/admin.php:2928, src/central/bootstrap.php:428,
4516
+ #: src/central/bootstrap.php:435, src/methods/updraftvault.php:396,
4517
+ #: src/methods/updraftvault.php:430, src/methods/updraftvault.php:515
4518
  msgid "Unknown"
4519
  msgstr ""
4520
 
4521
+ #: src/admin.php:2879
4522
  msgid "Backup finished"
4523
  msgstr ""
4524
 
4525
+ #: src/admin.php:2874
4526
  msgid "Waiting until scheduled time to retry because of errors"
4527
  msgstr ""
4528
 
4529
+ #: src/admin.php:2870
4530
  msgid "Pruning old backup sets"
4531
  msgstr ""
4532
 
4533
+ #: src/admin.php:2858
4534
  msgid "Uploading files to remote storage"
4535
  msgstr ""
4536
 
4537
+ #: src/admin.php:2926
4538
  msgid "Encrypted database"
4539
  msgstr ""
4540
 
4541
+ #: src/admin.php:2918
4542
  msgid "Encrypting database"
4543
  msgstr ""
4544
 
4545
+ #: src/admin.php:2892
4546
  msgid "Created database backup"
4547
  msgstr ""
4548
 
4549
+ #: src/admin.php:2905
4550
  msgid "table: %s"
4551
  msgstr ""
4552
 
4553
+ #: src/admin.php:2903
4554
  msgid "Creating database backup"
4555
  msgstr ""
4556
 
4557
+ #: src/admin.php:2853
4558
  msgid "Created file backup zips"
4559
  msgstr ""
4560
 
4561
+ #: src/admin.php:2840
4562
  msgid "Creating file backup zips"
4563
  msgstr ""
4564
 
4565
+ #: src/admin.php:2835
4566
  msgid "Backup begun"
4567
  msgstr ""
4568
 
4569
+ #: src/admin.php:2668
4570
  msgid "Backups in progress:"
4571
  msgstr ""
4572
 
4573
+ #: src/admin.php:965
4574
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
4575
  msgstr ""
4576
 
4586
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4587
  msgstr ""
4588
 
4589
+ #: src/class-updraftplus.php:2886
4590
  msgid "The backup has not finished; a resumption is scheduled"
4591
  msgstr ""
4592
 
4593
+ #: src/class-updraftplus.php:2070
4594
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
4595
  msgstr ""
4596
 
4597
+ #: src/addons/onedrive.php:944,
4598
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
4599
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
4600
  msgstr ""
4601
 
4602
+ #: src/admin.php:2469
4603
  msgid "Your PHP memory limit (set by your web hosting company) is very low. UpdraftPlus attempted to raise it but was unsuccessful. This plugin may struggle with a memory limit of less than 64 Mb - especially if you have very large files uploaded (though on the other hand, many sites will be successful with a 32Mb limit - your experience may vary)."
4604
  msgstr ""
4605
 
4679
  msgid "Support"
4680
  msgstr "সহায়তা"
4681
 
4682
+ #: src/class-updraftplus.php:4434
4683
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4684
  msgstr ""
4685
 
4686
+ #: src/class-updraftplus.php:4426
4687
  msgid "This database backup is missing core WordPress tables: %s"
4688
  msgstr ""
4689
 
4690
+ #: src/class-updraftplus.php:4187
4691
  msgid "You are importing from a newer version of WordPress (%s) into an older one (%s). There are no guarantees that WordPress can handle this."
4692
  msgstr ""
4693
 
4694
+ #: src/class-updraftplus.php:4186, src/class-updraftplus.php:4193
4695
  msgid "%s version: %s"
4696
  msgstr ""
4697
 
4698
+ #: src/class-updraftplus.php:4065
4699
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4700
  msgstr ""
4701
 
4702
+ #: src/addons/autobackup.php:1053, src/admin.php:800,
4703
  #: src/includes/updraftplus-notices.php:171
4704
  msgid "Be safe with an automatic backup"
4705
  msgstr ""
4706
 
4707
+ #: src/admin.php:2422
4708
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4709
  msgstr ""
4710
 
4752
  msgid "Delete from your web server"
4753
  msgstr ""
4754
 
4755
+ #: src/admin.php:3739
4756
  msgid "You appear to be missing one or more archives from this multi-archive set."
4757
  msgstr ""
4758
 
4759
+ #: src/admin.php:3736
4760
  msgid "(%d archive(s) in set)."
4761
  msgstr ""
4762
 
4776
  msgid "Error: the server sent an empty response."
4777
  msgstr ""
4778
 
4779
+ #: src/admin.php:2157
4780
  msgid "This looks like a file created by UpdraftPlus, but this install does not know about this type of object: %s. Perhaps you need to install an add-on?"
4781
  msgstr ""
4782
 
4812
  msgid "No such backup set exists"
4813
  msgstr ""
4814
 
4815
+ #: src/admin.php:1355
4816
  msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
4817
  msgstr ""
4818
 
4820
  msgid "Moving unpacked backup into place..."
4821
  msgstr ""
4822
 
4823
+ #: src/backup.php:3061, src/backup.php:3316
4824
  msgid "Failed to open the zip file (%s) - %s"
4825
  msgstr ""
4826
 
4828
  msgid "WordPress root directory server path: %s"
4829
  msgstr ""
4830
 
4831
+ #: src/methods/dreamobjects.php:86, src/methods/s3generic.php:102
4832
  msgid "%s end-point"
4833
  msgstr ""
4834
 
4835
+ #: src/methods/s3.php:822
4836
  msgid "... and many more!"
4837
  msgstr ""
4838
 
4839
+ #: src/methods/s3generic.php:59, src/methods/s3generic.php:70,
4840
+ #: src/methods/s3generic.php:81
4841
  msgid "S3 (Compatible)"
4842
  msgstr ""
4843
 
4844
+ #: src/admin.php:1265
4845
  msgid "File is not locally present - needs retrieving from remote storage"
4846
  msgstr ""
4847
 
4848
+ #: src/admin.php:4042
4849
  msgid "Looking for %s archive: file name: %s"
4850
  msgstr ""
4851
 
4852
+ #: src/admin.php:4003
4853
  msgid "Final checks"
4854
  msgstr ""
4855
 
4861
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4862
  msgstr ""
4863
 
4864
+ #: src/admin.php:3373
4865
  msgid "Your wp-content directory server path: %s"
4866
  msgstr ""
4867
 
4877
  msgid "Processing files - please wait..."
4878
  msgstr ""
4879
 
4880
+ #: src/admin.php:4192,
4881
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4882
  msgid "Please consult this FAQ for help on what to do about it."
4883
  msgstr ""
4886
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4887
  msgstr ""
4888
 
4889
+ #: src/class-updraftplus.php:4073
4890
  msgid "Failed to open database file."
4891
  msgstr ""
4892
 
4893
+ #: src/admin.php:4660
4894
  msgid "Known backups (raw)"
4895
  msgstr ""
4896
 
4902
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4903
  msgstr ""
4904
 
4905
+ #: src/admin.php:4062
4906
  msgid "file is size:"
4907
  msgstr ""
4908
 
4909
+ #: src/addons/googlecloud.php:1020, src/addons/migrator.php:457,
4910
+ #: src/addons/migrator.php:460, src/addons/migrator.php:463, src/admin.php:965,
4911
+ #: src/admin.php:2427, src/backup.php:3367, src/class-updraftplus.php:4307,
4912
+ #: src/class-updraftplus.php:4307, src/updraftplus.php:156
4913
  msgid "Go here for more information."
4914
  msgstr ""
4915
 
4917
  msgid "Some files are still downloading or being processed - please wait."
4918
  msgstr ""
4919
 
4920
+ #: src/class-updraftplus.php:4156, src/class-updraftplus.php:4177
4921
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4922
  msgstr ""
4923
 
4929
  msgid "Enter in format HH:MM (e.g. 14:22)."
4930
  msgstr ""
4931
 
4932
+ #: src/methods/ftp.php:148
4933
  msgid "%s upload failed"
4934
  msgstr ""
4935
 
4936
+ #: src/methods/ftp.php:121, src/methods/ftp.php:172, src/methods/ftp.php:276
4937
  msgid "%s login failure"
4938
  msgstr ""
4939
 
4940
+ #: src/methods/dropbox.php:481
4941
  msgid "You do not appear to be authenticated with %s"
4942
  msgstr ""
4943
 
4944
+ #: src/methods/dropbox.php:448
4945
  msgid "Failed to access %s when deleting (see log file for more)"
4946
  msgstr ""
4947
 
4948
+ #: src/methods/dropbox.php:440
4949
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4950
  msgstr ""
4951
 
4952
+ #: src/methods/dropbox.php:195
4953
  msgid "Dropbox error: %s (see log file for more)"
4954
  msgstr ""
4955
 
4961
  msgid "Error - no such file exists at %s"
4962
  msgstr ""
4963
 
4964
+ #: src/addons/azure.php:266, src/methods/addon-base-v2.php:219,
4965
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
4966
+ #: src/methods/googledrive.php:1081, src/methods/openstack-base.php:455,
4967
+ #: src/methods/stream-base.php:295, src/methods/stream-base.php:302,
4968
+ #: src/methods/stream-base.php:334
4969
  msgid "%s Error"
4970
  msgstr ""
4971
 
4973
  msgid "%s error - failed to upload file"
4974
  msgstr ""
4975
 
4976
+ #: src/class-updraftplus.php:1209, src/methods/cloudfiles.php:211
4977
  msgid "%s error - failed to re-assemble chunks"
4978
  msgstr ""
4979
 
4987
  msgid "%s authentication failed"
4988
  msgstr ""
4989
 
4990
+ #: src/addons/googlecloud.php:436, src/addons/migrator.php:555,
4991
+ #: src/admin.php:2128, src/admin.php:2149, src/admin.php:2157,
4992
+ #: src/class-updraftplus.php:971, src/class-updraftplus.php:977,
4993
+ #: src/class-updraftplus.php:4046, src/class-updraftplus.php:4048,
4994
+ #: src/class-updraftplus.php:4210, src/class-updraftplus.php:4217,
4995
+ #: src/class-updraftplus.php:4286, src/methods/googledrive.php:381,
4996
  #: src/methods/s3.php:320
4997
  msgid "Error: %s"
4998
  msgstr ""
4999
 
5000
+ #: src/admin.php:3298
5001
  msgid "Backup directory specified exists, but is <b>not</b> writable."
5002
  msgstr ""
5003
 
5004
+ #: src/admin.php:3296
5005
  msgid "Backup directory specified does <b>not</b> exist."
5006
  msgstr ""
5007
 
5008
+ #: src/admin.php:2973, src/admin.php:3247
5009
  msgid "Warning: %s"
5010
  msgstr ""
5011
 
5013
  msgid "Last backup job run:"
5014
  msgstr ""
5015
 
5016
+ #: src/backup.php:3087
5017
  msgid "A very large file was encountered: %s (size: %s Mb)"
5018
  msgstr ""
5019
 
5020
+ #: src/backup.php:2387
5021
  msgid "%s: unreadable file - could not be backed up"
5022
  msgstr ""
5023
 
5024
+ #: src/backup.php:1704
5025
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
5026
  msgstr ""
5027
 
5028
+ #: src/backup.php:1825
5029
  msgid "An error occurred whilst closing the final database file"
5030
  msgstr ""
5031
 
5032
+ #: src/backup.php:1043
5033
  msgid "Warnings encountered:"
5034
  msgstr ""
5035
 
5036
+ #: src/class-updraftplus.php:2874
5037
  msgid "The backup apparently succeeded (with warnings) and is now complete"
5038
  msgstr ""
5039
 
5040
+ #: src/class-updraftplus.php:848
5041
  msgid "Your free disk space is very low - only %s Mb remain"
5042
  msgstr ""
5043
 
5044
+ #: src/addons/migrator.php:563
5045
  msgid "New site:"
5046
  msgstr ""
5047
 
5048
+ #: src/addons/migrator.php:538
5049
  msgid "Migrated site (from UpdraftPlus)"
5050
  msgstr ""
5051
 
5052
+ #: src/addons/migrator.php:478
5053
  msgid "Enter details for where this new site is to live within your multisite install:"
5054
  msgstr ""
5055
 
5056
+ #: src/addons/migrator.php:477
5057
  msgid "Information needed to continue:"
5058
  msgstr ""
5059
 
5060
+ #: src/addons/migrator.php:421
5061
  msgid "Network activating theme:"
5062
  msgstr ""
5063
 
5064
+ #: src/addons/migrator.php:411
5065
  msgid "Processed plugin:"
5066
  msgstr ""
5067
 
5073
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
5074
  msgstr ""
5075
 
5076
+ #: src/methods/s3.php:831
5077
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5078
  msgstr ""
5079
 
5080
+ #: src/methods/s3.php:1131
5081
  msgid "Please check your access credentials."
5082
  msgstr ""
5083
 
5084
+ #: src/addons/s3-enhanced.php:196, src/methods/s3.php:1109
5085
  msgid "The error reported by %s was:"
5086
  msgstr ""
5087
 
5089
  msgid "Please supply the requested information, and then continue."
5090
  msgstr ""
5091
 
5092
+ #: src/class-updraftplus.php:4228, src/restorer.php:1746
5093
  msgid "Site information:"
5094
  msgstr ""
5095
 
5097
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
5098
  msgstr ""
5099
 
5100
+ #: src/admin.php:2422, src/class-updraftplus.php:4221, src/restorer.php:2117
5101
  msgid "Warning:"
5102
  msgstr ""
5103
 
5104
+ #: src/class-updraftplus.php:4210, src/class-updraftplus.php:4213,
5105
  #: src/restorer.php:184
5106
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
5107
  msgstr ""
5108
 
5109
+ #: src/admin.php:4030
5110
  msgid "Skipping restoration of WordPress core when importing a single site into a multisite installation. If you had anything necessary in your WordPress directory then you will need to re-add it manually from the zip file."
5111
  msgstr ""
5112
 
5113
+ #: src/admin.php:3445, src/methods/updraftvault.php:292
5114
  msgid "Your web server's PHP installation does not included a <strong>required</strong> (for %s) module (%s). Please contact your web hosting provider's support and ask for them to enable it."
5115
  msgstr ""
5116
 
5149
  msgid "Do you want to migrate or clone/duplicate a site?"
5150
  msgstr ""
5151
 
5152
+ #: src/addons/migrator.php:181
5153
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
5154
  msgstr ""
5155
 
5165
  msgid "Also delete from remote storage"
5166
  msgstr ""
5167
 
5168
+ #: src/admin.php:2695
5169
  msgid "Latest UpdraftPlus.com news:"
5170
  msgstr ""
5171
 
5182
  msgid "News"
5183
  msgstr ""
5184
 
5185
+ #: src/admin.php:1534, src/includes/class-wpadmin-commands.php:472
5186
  msgid "Backup set not found"
5187
  msgstr ""
5188
 
5212
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
5213
  msgstr ""
5214
 
5215
+ #: src/admin.php:981
5216
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
5217
  msgstr ""
5218
 
5219
+ #: src/admin.php:981
5220
  msgid "Notice"
5221
  msgstr ""
5222
 
5223
+ #: src/backup.php:1025
5224
  msgid "Errors encountered:"
5225
  msgstr ""
5226
 
5236
  msgid "Store at"
5237
  msgstr ""
5238
 
5239
+ #: src/addons/migrator.php:1523
5240
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5241
  msgstr ""
5242
 
5243
+ #: src/addons/migrator.php:1397
5244
  msgid "rows: %d"
5245
  msgstr ""
5246
 
5247
+ #: src/addons/migrator.php:1271
5248
  msgid "Time taken (seconds):"
5249
  msgstr ""
5250
 
5251
+ #: src/addons/migrator.php:1270, src/admin.php:671
5252
  msgid "Errors:"
5253
  msgstr ""
5254
 
5255
+ #: src/addons/migrator.php:1269
5256
  msgid "SQL update commands run:"
5257
  msgstr ""
5258
 
5259
+ #: src/addons/migrator.php:1268
5260
  msgid "Changes made:"
5261
  msgstr ""
5262
 
5263
+ #: src/addons/migrator.php:1267
5264
  msgid "Rows examined:"
5265
  msgstr ""
5266
 
5267
+ #: src/addons/migrator.php:1266
5268
  msgid "Tables examined:"
5269
  msgstr ""
5270
 
5271
+ #: src/addons/migrator.php:1155
5272
  msgid "Could not get list of tables"
5273
  msgstr ""
5274
 
5275
+ #: src/addons/migrator.php:1100
5276
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5277
  msgstr ""
5278
 
5279
+ #: src/addons/migrator.php:1089
5280
  msgid "Nothing to do: the site URL is already: %s"
5281
  msgstr ""
5282
 
5283
+ #: src/addons/migrator.php:1053, src/addons/migrator.php:1057,
5284
+ #: src/addons/migrator.php:1061, src/addons/migrator.php:1066,
5285
+ #: src/addons/migrator.php:1070, src/addons/migrator.php:1075
5286
  msgid "Error: unexpected empty parameter (%s, %s)"
5287
  msgstr ""
5288
 
5289
+ #: src/addons/migrator.php:1013
5290
  msgid "Database: search and replace site URL"
5291
  msgstr ""
5292
 
5293
+ #: src/addons/migrator.php:873, src/addons/migrator.php:1252
5294
  msgid "Failed: we did not understand the result returned by the %s operation."
5295
  msgstr ""
5296
 
5297
+ #: src/addons/migrator.php:871, src/addons/migrator.php:1250
5298
  msgid "Failed: the %s operation was not able to start."
5299
  msgstr ""
5300
 
5301
+ #: src/addons/migrator.php:530
5302
  msgid "Search and replace site location in the database (migrate)"
5303
  msgstr ""
5304
 
5305
+ #: src/addons/migrator.php:530
5306
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5307
  msgstr ""
5308
 
5309
+ #: src/addons/multisite.php:648
5310
  msgid "Blog uploads"
5311
  msgstr ""
5312
 
5313
+ #: src/addons/migrator.php:463, src/addons/multisite.php:641
5314
  msgid "Must-use plugins"
5315
  msgstr ""
5316
 
5317
+ #: src/addons/multisite.php:173
5318
  msgid "Multisite Install"
5319
  msgstr ""
5320
 
5322
  msgid "starting from next time it is"
5323
  msgstr ""
5324
 
5325
+ #: src/addons/sftp.php:518
5326
  msgid "Failure: Port must be an integer."
5327
  msgstr ""
5328
 
5329
+ #: src/methods/ftp.php:411, src/methods/openstack2.php:185
5330
  msgid "password"
5331
  msgstr ""
5332
 
5333
+ #: src/addons/sftp.php:509, src/methods/openstack2.php:180
5334
  msgid "username"
5335
  msgstr ""
5336
 
5337
+ #: src/addons/sftp.php:505
5338
  msgid "host name"
5339
  msgstr ""
5340
 
5341
+ #: src/addons/sftp.php:468
5342
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
5343
  msgstr ""
5344
 
5345
+ #: src/addons/sftp.php:466
5346
  msgid "Directory path"
5347
  msgstr ""
5348
 
5349
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5350
+ #: src/addons/sftp.php:441, src/addons/webdav.php:181,
5351
+ #: src/methods/openstack2.php:164, src/methods/updraftvault.php:347,
5352
  #: src/udaddons/options.php:135
5353
  msgid "Password"
5354
  msgstr ""
5355
 
5356
+ #: src/addons/sftp.php:427, src/addons/webdav.php:195
5357
  msgid "Port"
5358
  msgstr ""
5359
 
5360
+ #: src/addons/moredatabase.php:244, src/addons/sftp.php:420,
5361
+ #: src/addons/webdav.php:187
5362
  msgid "Host"
5363
  msgstr ""
5364
 
5366
  msgid "%s Error: Failed to download"
5367
  msgstr ""
5368
 
5369
+ #: src/addons/sftp.php:550
5370
  msgid "Check your file permissions: Could not successfully create and enter:"
5371
  msgstr ""
5372
 
5410
  msgid "WordPress Core"
5411
  msgstr ""
5412
 
5413
+ #: src/methods/addon-base-v2.php:311, src/methods/stream-base.php:364
5414
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
5415
  msgstr ""
5416
 
5417
+ #: src/addons/googlecloud.php:768, src/addons/googlecloud.php:802,
5418
+ #: src/addons/googlecloud.php:808, src/addons/sftp.php:536, src/admin.php:3029,
5419
+ #: src/admin.php:3064, src/admin.php:3073, src/methods/addon-base-v2.php:299,
5420
+ #: src/methods/stream-base.php:350
5421
  msgid "Failed"
5422
  msgstr ""
5423
 
5424
+ #: src/addons/webdav.php:157
5425
  msgid "WebDAV URL"
5426
  msgstr ""
5427
 
5428
+ #: src/methods/stream-base.php:334
5429
  msgid "Local write failed: Failed to download"
5430
  msgstr ""
5431
 
5432
+ #: src/methods/stream-base.php:302
5433
  msgid "Error opening remote file: Failed to download"
5434
  msgstr ""
5435
 
5440
  #: src/addons/googlecloud.php:322, src/addons/sftp.php:45,
5441
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
5442
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5443
+ #: src/methods/addon-base-v2.php:278, src/methods/ftp.php:42,
5444
  #: src/methods/googledrive.php:182, src/methods/googledrive.php:184,
5445
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:161,
5446
  #: src/methods/stream-base.php:167, src/methods/stream-base.php:201,
5447
+ #: src/methods/stream-base.php:276
5448
  msgid "No %s settings were found"
5449
  msgstr ""
5450
 
5451
+ #: src/methods/ftp.php:433
5452
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
5453
  msgstr ""
5454
 
5455
+ #: src/methods/ftp.php:430
5456
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
5457
  msgstr ""
5458
 
5459
+ #: src/methods/ftp.php:421
5460
  msgid "Failure: we did not successfully log in with those credentials."
5461
  msgstr ""
5462
 
5463
+ #: src/methods/ftp.php:403
5464
  msgid "Failure: No server details were given."
5465
  msgstr ""
5466
 
5467
+ #: src/methods/ftp.php:373
5468
  msgid "Needs to already exist"
5469
  msgstr ""
5470
 
5471
+ #: src/methods/ftp.php:336
5472
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
5473
  msgstr ""
5474
 
5475
+ #: src/addons/onedrive.php:838, src/methods/dropbox.php:757
5476
  msgid "Your %s account name: %s"
5477
  msgstr ""
5478
 
5479
+ #: src/methods/dropbox.php:747, src/methods/dropbox.php:769
5480
  msgid "though part of the returned information was not as expected - your mileage may vary"
5481
  msgstr ""
5482
 
5483
+ #: src/methods/dropbox.php:742, src/methods/dropbox.php:744
5484
  msgid "you have authenticated your %s account"
5485
  msgstr ""
5486
 
5487
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5488
  msgid "there's an add-on for that."
5489
  msgstr ""
5490
 
5491
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5492
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
5493
  msgstr ""
5494
 
5495
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5496
  msgid "Backups are saved in"
5497
  msgstr ""
5498
 
5499
+ #: src/methods/dropbox.php:567, src/methods/dropbox.php:569
5500
  msgid "Need to use sub-folders?"
5501
  msgstr ""
5502
 
5503
+ #: src/methods/dropbox.php:284, src/methods/dropbox.php:305,
5504
+ #: src/methods/dropbox.php:321
5505
  msgid "error: failed to upload file to %s (see log file for more)"
5506
  msgstr ""
5507
 
5508
+ #: src/methods/dropbox.php:173, src/methods/dropbox.php:190
5509
  msgid "You do not appear to be authenticated with Dropbox"
5510
  msgstr ""
5511
 
5512
+ #: src/methods/s3.php:1126
5513
  msgid "The communication with %s was not encrypted."
5514
  msgstr ""
5515
 
5516
+ #: src/methods/s3.php:1124
5517
  msgid "The communication with %s was encrypted."
5518
  msgstr ""
5519
 
5520
+ #: src/addons/googlecloud.php:831, src/methods/s3.php:1121
5521
  msgid "We accessed the bucket, and were able to create files within it."
5522
  msgstr ""
5523
 
5524
+ #: src/addons/googlecloud.php:825, src/addons/googlecloud.php:839,
5525
+ #: src/methods/s3.php:1119, src/methods/s3.php:1131
5526
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5527
  msgstr ""
5528
 
5529
+ #: src/addons/googlecloud.php:825, src/addons/googlecloud.php:839,
5530
+ #: src/methods/s3.php:1119, src/methods/s3.php:1131
5531
  msgid "Failure"
5532
  msgstr ""
5533
 
5534
+ #: src/methods/s3.php:1107
5535
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
5536
  msgstr ""
5537
 
5538
+ #: src/addons/s3-enhanced.php:169, src/methods/openstack2.php:150,
5539
+ #: src/methods/s3.php:1101
5540
  msgid "Region"
5541
  msgstr ""
5542
 
5543
+ #: src/addons/googlecloud.php:118, src/addons/googlecloud.php:785,
5544
+ #: src/methods/s3.php:1083
5545
  msgid "Failure: No bucket details were given."
5546
  msgstr ""
5547
 
5548
+ #: src/methods/s3.php:1061
5549
  msgid "API secret"
5550
  msgstr ""
5551
 
5552
+ #: src/methods/s3.php:909
5553
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5554
  msgstr ""
5555
 
5556
+ #: src/methods/s3.php:908
5557
  msgid "%s location"
5558
  msgstr ""
5559
 
5560
+ #: src/methods/s3.php:904
5561
  msgid "%s secret key"
5562
  msgstr ""
5563
 
5564
+ #: src/methods/s3.php:900
5565
  msgid "%s access key"
5566
  msgstr ""
5567
 
5568
+ #: src/methods/s3.php:843
5569
  msgid "If you see errors about SSL certificates, then please go here for help."
5570
  msgstr ""
5571
 
5572
+ #: src/methods/s3.php:841
5573
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
5574
  msgstr ""
5575
 
5602
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5603
  msgstr ""
5604
 
5605
+ #: src/methods/email.php:83
5606
  msgid "Note:"
5607
  msgstr ""
5608
 
5610
  msgid "WordPress Backup"
5611
  msgstr ""
5612
 
5613
+ #: src/methods/cloudfiles.php:571, src/methods/openstack-base.php:530
5614
  msgid "We accessed the container, and were able to create files within it."
5615
  msgstr ""
5616
 
5617
+ #: src/methods/cloudfiles.php:567
5618
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
5619
  msgstr ""
5620
 
5621
+ #: src/methods/cloudfiles.php:540, src/methods/openstack-base.php:472
5622
  msgid "Failure: No container details were given."
5623
  msgstr ""
5624
 
5625
+ #: src/addons/moredatabase.php:245, src/addons/sftp.php:434,
5626
+ #: src/addons/webdav.php:175, src/methods/cloudfiles-new.php:184,
5627
+ #: src/methods/cloudfiles.php:520, src/methods/openstack2.php:158
5628
  msgid "Username"
5629
  msgstr "ব্যবহারকারী নাম"
5630
 
5631
+ #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles.php:515,
5632
+ #: src/methods/s3.php:1057
5633
  msgid "API key"
5634
  msgstr ""
5635
 
5636
+ #: src/addons/migrator.php:304, src/addons/migrator.php:2040,
5637
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5638
+ #: src/addons/moredatabase.php:86, src/addons/sftp.php:505,
5639
+ #: src/addons/sftp.php:509, src/addons/sftp.php:513, src/addons/webdav.php:241,
5640
+ #: src/admin.php:724, src/methods/addon-base-v2.php:291,
5641
+ #: src/methods/cloudfiles-new.php:179, src/methods/cloudfiles-new.php:184,
5642
+ #: src/methods/cloudfiles.php:515, src/methods/cloudfiles.php:520,
5643
+ #: src/methods/ftp.php:407, src/methods/ftp.php:411,
5644
+ #: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
5645
+ #: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
5646
+ #: src/methods/s3.php:1057, src/methods/s3.php:1061
5647
  msgid "Failure: No %s was given."
5648
  msgstr ""
5649
 
5650
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
5651
+ #: src/methods/openstack-base.php:571, src/methods/s3.php:835
5652
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5653
  msgstr ""
5654
 
5655
+ #: src/methods/cloudfiles.php:484
5656
  msgid "Cloud Files username"
5657
  msgstr ""
5658
 
5659
+ #: src/addons/cloudfiles-enhanced.php:38, src/methods/cloudfiles-new.php:119,
5660
+ #: src/methods/cloudfiles.php:467
5661
  msgid "UK"
5662
  msgstr ""
5663
 
5664
+ #: src/addons/cloudfiles-enhanced.php:37, src/methods/cloudfiles-new.php:118,
5665
+ #: src/methods/cloudfiles.php:466
5666
  msgid "US (default)"
5667
  msgstr ""
5668
 
5669
+ #: src/methods/cloudfiles.php:463
5670
  msgid "US or UK Cloud"
5671
  msgstr ""
5672
 
5673
+ #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446,
5674
+ #: src/methods/openstack2.php:120
5675
  msgid "Also, you should read this important FAQ."
5676
  msgstr ""
5677
 
5678
+ #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446
5679
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5680
  msgstr ""
5681
 
5682
+ #: src/admin.php:747, src/methods/backup-module.php:311
5683
  msgid "Test %s Settings"
5684
  msgstr ""
5685
 
5686
+ #: src/class-updraftplus.php:1249, src/class-updraftplus.php:1293,
5687
+ #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:295
5688
  msgid "Error opening local file: Failed to download"
5689
  msgstr ""
5690
 
5700
  msgstr ""
5701
 
5702
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
5703
+ #: src/class-updraftplus.php:1107, src/methods/cloudfiles.php:130,
5704
+ #: src/methods/googledrive.php:999, src/methods/googledrive.php:1004
5705
  msgid "%s Error: Failed to open local file"
5706
  msgstr ""
5707
 
5710
  msgid "Cloud Files error - failed to create and access the container"
5711
  msgstr ""
5712
 
5713
+ #: src/addons/cloudfiles-enhanced.php:107,
5714
+ #: src/addons/cloudfiles-enhanced.php:120,
5715
+ #: src/addons/cloudfiles-enhanced.php:124, src/methods/cloudfiles.php:550,
5716
+ #: src/methods/cloudfiles.php:553, src/methods/cloudfiles.php:556
5717
  msgid "Cloud Files authentication failed"
5718
  msgstr ""
5719
 
5720
+ #: src/addons/googlecloud.php:1066, src/methods/googledrive.php:1253
5721
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5722
  msgstr ""
5723
 
5724
+ #: src/methods/googledrive.php:1231
5725
  msgid "Authenticate with Google"
5726
  msgstr ""
5727
 
5728
+ #: src/addons/googlecloud.php:1013, src/addons/onedrive.php:1082,
5729
+ #: src/methods/googledrive.php:1195
5730
  msgid "Client Secret"
5731
  msgstr ""
5732
 
5733
+ #: src/addons/googlecloud.php:1008, src/methods/googledrive.php:1192
5734
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5735
  msgstr ""
5736
 
5737
+ #: src/addons/googlecloud.php:1005, src/addons/onedrive.php:1078,
5738
+ #: src/methods/googledrive.php:1191
5739
  msgid "Client ID"
5740
  msgstr ""
5741
 
5742
+ #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1168
5743
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5744
  msgstr ""
5745
 
5746
+ #: src/addons/googlecloud.php:983, src/methods/googledrive.php:1168
5747
  msgid "Select 'Web Application' as the application type."
5748
  msgstr ""
5749
 
5750
+ #: src/addons/googlecloud.php:981, src/methods/googledrive.php:1166
5751
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5752
  msgstr ""
5753
 
 
 
 
 
 
 
 
5754
  #: src/addons/googlecloud.php:505, src/addons/googlecloud.php:506,
5755
+ #: src/addons/googlecloud.php:858, src/methods/googledrive.php:545,
5756
  #: src/methods/googledrive.php:546, src/methods/googledrive.php:556,
5757
  #: src/methods/googledrive.php:557
5758
  msgid "Account is not authorized."
5772
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5773
  msgstr ""
5774
 
5775
+ #: src/addons/googlecloud.php:710, src/addons/onedrive.php:876,
5776
  #: src/methods/googledrive.php:440
5777
  msgid "you have authenticated your %s account."
5778
  msgstr ""
5779
 
5780
+ #: src/addons/googlecloud.php:710, src/addons/googlecloud.php:831,
5781
+ #: src/addons/onedrive.php:876, src/addons/sftp.php:570,
5782
+ #: src/methods/addon-base-v2.php:308, src/methods/cloudfiles.php:571,
5783
  #: src/methods/googledrive.php:440, src/methods/openstack-base.php:530,
5784
+ #: src/methods/s3.php:1121, src/methods/stream-base.php:361
5785
  msgid "Success"
5786
  msgstr ""
5787
 
5788
+ #: src/addons/onedrive.php:830, src/methods/dropbox.php:780,
5789
+ #: src/methods/dropbox.php:789, src/methods/googledrive.php:414
5790
  msgid "Your %s quota usage: %s %% used, %s available"
5791
  msgstr ""
5792
 
5817
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5818
  msgstr ""
5819
 
5820
+ #: src/addons/migrator.php:1935, src/admin.php:1293, src/admin.php:3032,
5821
+ #: src/admin.php:3066, src/admin.php:3070, src/admin.php:4060,
5822
  #: src/restorer.php:2358, src/restorer.php:2463
5823
  msgid "OK"
5824
  msgstr "ঠিক আছে"
5827
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5828
  msgstr ""
5829
 
5830
+ #: src/addons/migrator.php:1285, src/restorer.php:2254
5831
  msgid "the database query being run was:"
5832
  msgstr ""
5833
 
5835
  msgid "will restore as:"
5836
  msgstr ""
5837
 
5838
+ #: src/class-updraftplus.php:4199, src/restorer.php:1728,
5839
  #: src/restorer.php:1817, src/restorer.php:1843
5840
  msgid "Old table prefix:"
5841
  msgstr ""
5842
 
5843
  #: src/addons/reporting.php:70, src/addons/reporting.php:180,
5844
+ #: src/backup.php:1099, src/class-updraftplus.php:4129
5845
  msgid "Backup of:"
5846
  msgstr ""
5847
 
5913
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5914
  msgstr ""
5915
 
5916
+ #: src/admin.php:4068, src/admin.php:4069
5917
  msgid "Could not find one of the files for restoration"
5918
  msgstr ""
5919
 
5920
+ #: src/admin.php:4182
5921
  msgid "Error message"
5922
  msgstr ""
5923
 
5924
+ #: src/admin.php:4065
5925
  msgid "The backup records do not contain information about the proper size of this file."
5926
  msgstr ""
5927
 
5928
+ #: src/admin.php:4057
5929
  msgid "Archive is expected to be size:"
5930
  msgstr ""
5931
 
5932
+ #: src/admin.php:3955
5933
  msgid "If making a request for support, please include this information:"
5934
  msgstr ""
5935
 
5936
+ #: src/admin.php:3954
5937
  msgid "ABORT: Could not find the information on which entities to restore."
5938
  msgstr ""
5939
 
5940
+ #: src/admin.php:3909
5941
  msgid "UpdraftPlus Restoration: Progress"
5942
  msgstr ""
5943
 
5944
+ #: src/admin.php:3862
5945
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5946
  msgstr ""
5947
 
5948
+ #: src/admin.php:3797
5949
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5950
  msgstr ""
5951
 
5952
+ #: src/admin.php:3815
5953
  msgid "Delete this backup set"
5954
  msgstr ""
5955
 
5956
+ #: src/admin.php:3457
5957
  msgid "Good news: Your site's communications with %s can be encrypted. If you see any errors to do with encryption, then look in the 'Expert Settings' for more help."
5958
  msgstr ""
5959
 
5960
+ #: src/admin.php:3454
5961
  msgid "Your web server's PHP/Curl installation does not support https access. We cannot access %s without this support. Please contact your web hosting provider's support. %s <strong>requires</strong> Curl+https. Please do not file any support requests; there is no alternative."
5962
  msgstr ""
5963
 
5964
+ #: src/admin.php:3452
5965
  msgid "Your web server's PHP/Curl installation does not support https access. Communications with %s will be unencrypted. Ask your web host to install Curl/SSL in order to gain the ability for encryption (via an add-on)."
5966
  msgstr ""
5967
 
5968
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
5969
+ #: src/methods/openstack-base.php:571, src/methods/s3.php:835
5970
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5971
  msgstr ""
5972
 
6002
  msgid "Use the server's SSL certificates"
6003
  msgstr ""
6004
 
6005
+ #: src/admin.php:3300
6006
  msgid "If that is unsuccessful check the permissions on your server or change it to another directory that is writable by your web server process."
6007
  msgstr ""
6008
 
6009
+ #: src/admin.php:3300
6010
  msgid "click here"
6011
  msgstr "এখানে ক্লিক করুন"
6012
 
6013
+ #: src/admin.php:3300
6014
  msgid "or, to reset this option"
6015
  msgstr ""
6016
 
6017
+ #: src/admin.php:3300
6018
  msgid "Follow this link to attempt to create the directory and set the permissions"
6019
  msgstr ""
6020
 
6021
+ #: src/admin.php:3292
6022
  msgid "Backup directory specified is writable, which is good."
6023
  msgstr ""
6024
 
6058
  msgid "Cancel"
6059
  msgstr "বাতিল"
6060
 
6061
+ #: src/addons/reporting.php:244, src/admin.php:3604
6062
  msgid "None"
6063
  msgstr "কোনটিই না"
6064
 
6083
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
6084
  msgstr ""
6085
 
6086
+ #: src/addons/morefiles.php:443, src/admin.php:3382
6087
  msgid "Exclude these:"
6088
  msgstr ""
6089
 
6090
+ #: src/admin.php:3373
6091
  msgid "Any other directories found inside wp-content"
6092
  msgstr ""
6093
 
6103
  msgid "To fix the time at which a backup should take place,"
6104
  msgstr ""
6105
 
6106
+ #: src/admin.php:3286
6107
  msgid "Monthly"
6108
  msgstr "মাসিক"
6109
 
6110
+ #: src/admin.php:3285
6111
  msgid "Fortnightly"
6112
  msgstr "পাক্ষিক"
6113
 
6114
+ #: src/admin.php:3284
6115
  msgid "Weekly"
6116
  msgstr "সাপ্তাহিক"
6117
 
6118
+ #: src/admin.php:3283
6119
  msgid "Daily"
6120
  msgstr ""
6121
 
6122
+ #: src/admin.php:706, src/admin.php:3261
6123
  msgid "Download log file"
6124
  msgstr "লগ ফাইল ডাউনলোড করুন"
6125
 
6126
+ #: src/admin.php:3133
6127
  msgid "The folder exists, but your webserver does not have permission to write to it."
6128
  msgstr ""
6129
 
6130
+ #: src/admin.php:3128
6131
  msgid "The folder was created, but we had to change its file permissions to 777 (world-writable) to be able to write to it. You should check with your hosting provider that this will not cause any problems"
6132
  msgstr ""
6133
 
6134
+ #: src/admin.php:3114
6135
  msgid "The request to the filesystem to create the directory failed."
6136
  msgstr ""
6137
 
6138
+ #: src/addons/migrator.php:2413, src/admin.php:700, src/admin.php:3026,
6139
+ #: src/admin.php:3059, src/admin.php:3815,
6140
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
6141
  msgid "Delete"
6142
  msgstr "মুছুন"
6143
 
6144
+ #: src/admin.php:2964
6145
  msgid "show log"
6146
  msgstr "লগ দেখান"
6147
 
6254
  msgid "Do read this helpful article of useful things to know before restoring."
6255
  msgstr ""
6256
 
6257
+ #: src/class-updraftplus.php:4159
6258
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
6259
  msgstr ""
6260
 
6298
  msgid "Download error: the server sent us a response which we did not understand."
6299
  msgstr ""
6300
 
6301
+ #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:110,
6302
+ #: src/addons/migrator.php:858, src/addons/migrator.php:1155,
6303
+ #: src/addons/migrator.php:1236, src/addons/migrator.php:1285,
6304
+ #: src/addons/migrator.php:1523, src/addons/migrator.php:1874,
6305
+ #: src/addons/migrator.php:1901, src/addons/migrator.php:1907,
6306
+ #: src/addons/migrator.php:1969, src/addons/migrator.php:2009,
6307
+ #: src/addons/migrator.php:2048, src/addons/migrator.php:2058,
6308
+ #: src/addons/migrator.php:2063, src/addons/s3-enhanced.php:144,
6309
  #: src/addons/s3-enhanced.php:149, src/addons/s3-enhanced.php:151,
6310
+ #: src/addons/sftp.php:834, src/addons/webdav.php:191, src/admin.php:87,
6311
+ #: src/admin.php:674, src/admin.php:4062, src/admin.php:4092,
6312
  #: src/methods/remotesend.php:71, src/methods/remotesend.php:239,
6313
+ #: src/methods/updraftvault.php:513, src/restorer.php:1444
6314
  msgid "Error:"
6315
  msgstr ""
6316
 
6340
  #: src/methods/googledrive.php:467, src/methods/googledrive.php:496,
6341
  #: src/methods/googledrive.php:503, src/methods/googledrive.php:513,
6342
  #: src/methods/googledrive.php:519, src/methods/googledrive.php:521,
6343
+ #: src/methods/googledrive.php:1154, src/methods/googledrive.php:1161,
6344
+ #: src/methods/googledrive.php:1161, src/methods/googledrive.php:1191,
6345
+ #: src/methods/googledrive.php:1195, src/methods/googledrive.php:1206,
6346
+ #: src/methods/googledrive.php:1217, src/methods/googledrive.php:1237
6347
  msgid "Google Drive"
6348
  msgstr "গুগোল ড্রাইভ"
6349
 
6359
  msgid "More tasks:"
6360
  msgstr "আরও টাস্ক:"
6361
 
6362
+ #: src/admin.php:2722
6363
  msgid "Download most recently modified log file"
6364
  msgstr ""
6365
 
6366
+ #: src/admin.php:2678, src/admin.php:2684, src/central/bootstrap.php:173
6367
  msgid "(Nothing yet logged)"
6368
  msgstr ""
6369
 
6370
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6371
+ #: src/admin.php:2677, src/admin.php:2682
6372
  msgid "Last log message"
6373
  msgstr ""
6374
 
6375
+ #: src/addons/migrator.php:242, src/admin.php:705, src/admin.php:3797,
6376
  #: src/templates/wp-admin/settings/tab-status.php:30
6377
  msgid "Restore"
6378
  msgstr "পুনঃস্থাপন"
6382
  msgid "Backup Now"
6383
  msgstr ""
6384
 
6385
+ #: src/addons/migrator.php:1939, src/addons/moredatabase.php:247,
6386
+ #: src/addons/reporting.php:259, src/admin.php:309, src/admin.php:3579,
6387
+ #: src/admin.php:3659, src/admin.php:4146,
6388
  #: src/includes/class-wpadmin-commands.php:147,
6389
  #: src/includes/class-wpadmin-commands.php:487,
6390
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:82
6391
  msgid "Database"
6392
  msgstr ""
6393
 
6394
+ #: src/admin.php:305, src/admin.php:4667
6395
  msgid "Files"
6396
  msgstr ""
6397
 
6419
  msgid "JavaScript warning"
6420
  msgstr ""
6421
 
6422
+ #: src/admin.php:685, src/admin.php:2749
6423
  msgid "Delete Old Directories"
6424
  msgstr ""
6425
 
6426
+ #: src/admin.php:2469
6427
  msgid "Current limit is:"
6428
  msgstr ""
6429
 
6430
+ #: src/admin.php:2444
6431
  msgid "Your backup has been restored."
6432
  msgstr ""
6433
 
6443
  msgid "UpdraftPlus.Com"
6444
  msgstr ""
6445
 
6446
+ #: src/admin.php:4559
6447
  msgid "Your settings have been wiped."
6448
  msgstr ""
6449
 
6450
+ #: src/admin.php:2404
6451
  msgid "Backup directory successfully created."
6452
  msgstr ""
6453
 
6454
+ #: src/admin.php:2397
6455
  msgid "Backup directory could not be created"
6456
  msgstr ""
6457
 
6458
+ #: src/admin.php:2996
6459
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6460
  msgstr ""
6461
 
6462
+ #: src/admin.php:2994
6463
  msgid "Old directories successfully removed."
6464
  msgstr ""
6465
 
6466
+ #: src/admin.php:2991, src/admin.php:2991
6467
  msgid "Remove old directories"
6468
  msgstr ""
6469
 
6470
+ #: src/addons/migrator.php:307, src/addons/migrator.php:322,
6471
+ #: src/admin.php:2346, src/admin.php:2355, src/admin.php:2364,
6472
+ #: src/admin.php:2406, src/admin.php:2998
6473
  msgid "Return to UpdraftPlus Configuration"
6474
  msgstr ""
6475
 
6476
+ #: src/admin.php:678, src/admin.php:2346, src/admin.php:2355,
6477
+ #: src/admin.php:2364, src/admin.php:2406, src/admin.php:2998,
6478
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6479
  msgid "Actions"
6480
  msgstr ""
6481
 
6482
+ #: src/admin.php:2249
6483
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6484
  msgstr ""
6485
 
6486
+ #: src/admin.php:2149
6487
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6488
  msgstr ""
6489
 
6490
+ #: src/admin.php:2045
6491
  msgid "No local copy present."
6492
  msgstr ""
6493
 
6494
+ #: src/admin.php:2042
6495
  msgid "Download in progress"
6496
  msgstr "ডাউনলোড হচ্ছে"
6497
 
6498
+ #: src/admin.php:677, src/admin.php:2031
6499
  msgid "File ready."
6500
  msgstr "ফাইল তৈরি।"
6501
 
6502
+ #: src/admin.php:2012
6503
  msgid "Download failed"
6504
  msgstr ""
6505
 
6506
+ #: src/admin.php:675, src/admin.php:1302, src/admin.php:1776,
6507
+ #: src/class-updraftplus.php:1249, src/class-updraftplus.php:1293,
6508
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
6509
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6510
  #: src/methods/stream-base.php:217, src/restorer.php:2354,
6512
  msgid "Error"
6513
  msgstr ""
6514
 
6515
+ #: src/admin.php:1811
6516
  msgid "Could not find that job - perhaps it has already finished?"
6517
  msgstr ""
6518
 
6519
+ #: src/admin.php:1803
6520
  msgid "Job deleted"
6521
  msgstr ""
6522
 
6523
+ #: src/admin.php:1892
6524
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6525
  msgstr ""
6526
 
6528
  msgid "Nothing yet logged"
6529
  msgstr ""
6530
 
6531
+ #: src/admin.php:977
6532
  msgid "Please consult this FAQ if you have problems backing up."
6533
  msgstr ""
6534
 
6535
+ #: src/admin.php:977
6536
  msgid "Your website is hosted using the %s web server."
6537
  msgstr ""
6538
 
6539
+ #: src/admin.php:973
6540
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
6541
  msgstr ""
6542
 
6543
+ #: src/admin.php:969
6544
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
6545
  msgstr ""
6546
 
6547
+ #: src/addons/migrator.php:913, src/admin.php:961, src/admin.php:965,
6548
+ #: src/admin.php:969, src/admin.php:973, src/admin.php:977, src/admin.php:986,
6549
+ #: src/admin.php:3445, src/admin.php:3452, src/admin.php:3454,
6550
+ #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
6551
+ #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
6552
+ #: src/methods/s3.php:831, src/methods/s3.php:835,
6553
+ #: src/methods/updraftvault.php:292,
6554
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6555
  #: src/udaddons/updraftplus-addons.php:253
6556
  msgid "Warning"
6557
  msgstr "সতর্কতা"
6558
 
6559
+ #: src/admin.php:907
6560
  msgid "Add-Ons / Pro Support"
6561
  msgstr "অ্যাড অন / প্রো সাপোর্ট"
6562
 
6563
+ #: src/admin.php:542, src/admin.php:905,
6564
  #: src/templates/wp-admin/settings/tab-bar.php:7
6565
  msgid "Settings"
6566
  msgstr "সেটিংস"
6569
  msgid "Could not create %s zip. Consult the log file for more information."
6570
  msgstr ""
6571
 
6572
+ #: src/backup.php:2267
6573
  msgid "Infinite recursion: consult your log for more information"
6574
  msgstr ""
6575
 
6581
  msgid "Like UpdraftPlus and can spare one minute?"
6582
  msgstr ""
6583
 
6584
+ #: src/addons/azure.php:266, src/class-updraftplus.php:3919,
6585
+ #: src/methods/googledrive.php:1081, src/methods/s3.php:320
6586
  msgid "File not found"
6587
  msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
6588
 
6589
+ #: src/class-updraftplus.php:3826
6590
  msgid "The decryption key used:"
6591
  msgstr ""
6592
 
6593
+ #: src/class-updraftplus.php:3826, src/class-updraftplus.php:4058,
6594
  #: src/restorer.php:419
6595
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6596
  msgstr ""
6597
 
6598
+ #: src/class-updraftplus.php:3807, src/class-updraftplus.php:4046,
6599
  #: src/restorer.php:406
6600
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6601
  msgstr ""
6602
 
6603
+ #: src/backup.php:2142
6604
  msgid "Could not open the backup file for writing"
6605
  msgstr ""
6606
 
6607
+ #: src/class-updraftplus.php:3412
6608
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6609
  msgstr ""
6610
 
6611
+ #: src/class-updraftplus.php:3373
6612
  msgid "Could not read the directory"
6613
  msgstr "ডিরেক্টরিটি পড়া যায়নি"
6614
 
6615
+ #: src/admin.php:2091, src/backup.php:1323
6616
  msgid "Backup directory (%s) is not writable, or does not exist."
6617
  msgstr ""
6618
 
6619
+ #: src/backup.php:1100
6620
  msgid "WordPress backup is complete"
6621
  msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
6622
 
6623
+ #: src/class-updraftplus.php:2883
6624
  msgid "The backup attempt has finished, apparently unsuccessfully"
6625
  msgstr ""
6626
 
6627
+ #: src/class-updraftplus.php:2868
6628
  msgid "The backup apparently succeeded and is now complete"
6629
  msgstr ""
6630
 
6632
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
6633
  msgstr ""
6634
 
6635
+ #: src/class-updraftplus.php:2571
6636
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
6637
  msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
6638
 
6639
+ #: src/class-updraftplus.php:1850
6640
  msgid "Others"
6641
  msgstr "অন্যান্য"
6642
 
6643
+ #: src/addons/multisite.php:456, src/class-updraftplus.php:1835
6644
  msgid "Uploads"
6645
  msgstr "আপলোডসমূহ"
6646
 
6647
+ #: src/class-updraftplus.php:1834
6648
  msgid "Themes"
6649
  msgstr "থিমসমূহ"
6650
 
6651
+ #: src/class-updraftplus.php:1833
6652
  msgid "Plugins"
6653
  msgstr "প্লাগইন"
6654
 
6655
+ #: src/class-updraftplus.php:596
6656
  msgid "No log files were found."
6657
  msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
6658
 
6659
+ #: src/admin.php:1961, src/admin.php:1965, src/class-updraftplus.php:591
6660
  msgid "The log file could not be read."
6661
  msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
6662
 
6663
+ #: src/admin.php:996, src/admin.php:1005, src/admin.php:1010,
6664
+ #: src/admin.php:1018, src/admin.php:1027, src/class-updraftplus.php:556,
6665
+ #: src/class-updraftplus.php:591, src/class-updraftplus.php:596,
6666
+ #: src/class-updraftplus.php:601
6667
  msgid "UpdraftPlus notice:"
6668
  msgstr "UpdraftPlus নোটিশ:"
6669
 
6670
+ #: src/addons/multisite.php:65, src/addons/multisite.php:678,
6671
  #: src/options.php:50
6672
  msgid "UpdraftPlus Backups"
6673
  msgstr "UpdraftPlus ব্যাকআপসমূহ"
languages/updraftplus-bs_BA.mo CHANGED
Binary file
languages/updraftplus-bs_BA.po CHANGED
@@ -7,10 +7,38 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/2.2.2\n"
11
  "Language: bs_BA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/templates/wp-admin/settings/tab-addons.php:14
15
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
16
  msgstr ""
@@ -23,11 +51,11 @@ msgstr ""
23
  msgid "get it here"
24
  msgstr ""
25
 
26
- #: src/methods/stream-base.php:305
27
  msgid "Download chunk size successfully changed to %d"
28
  msgstr ""
29
 
30
- #: src/methods/stream-base.php:302
31
  msgid "Download chunk size failed to change to %d"
32
  msgstr ""
33
 
@@ -43,7 +71,7 @@ msgstr ""
43
  msgid "remote site"
44
  msgstr ""
45
 
46
- #: src/addons/backblaze.php:443
47
  msgid "Invalid bucket name"
48
  msgstr ""
49
 
@@ -54,50 +82,50 @@ msgstr[0] ""
54
  msgstr[1] ""
55
  msgstr[2] ""
56
 
57
- #: src/class-updraftplus.php:4673
58
  msgid "Your chosen replacement collation"
59
  msgstr ""
60
 
61
- #: src/class-updraftplus.php:4650
62
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
63
  msgstr ""
64
 
65
- #: src/class-updraftplus.php:4650
66
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
67
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
68
  msgstr[0] ""
69
  msgstr[1] ""
70
  msgstr[2] ""
71
 
72
- #: src/addons/migrator.php:493
73
  msgid "Database restoration options:"
74
  msgstr ""
75
 
76
- #: src/addons/migrator.php:370
77
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
78
  msgstr ""
79
 
80
- #: src/addons/azure.php:562
81
  msgid "%s Prefix"
82
  msgstr ""
83
 
84
- #: src/addons/azure.php:557
85
  msgid "%s Container"
86
  msgstr ""
87
 
88
- #: src/addons/azure.php:552
89
  msgid "%s Key"
90
  msgstr ""
91
 
92
- #: src/addons/azure.php:548
93
  msgid "%s Account Name"
94
  msgstr ""
95
 
96
- #: src/addons/googlecloud.php:625
97
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
98
  msgstr ""
99
 
100
- #: src/addons/googlecloud.php:623
101
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
102
  msgstr ""
103
 
@@ -121,7 +149,7 @@ msgstr ""
121
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
122
  msgstr ""
123
 
124
- #: src/addons/migrator.php:877
125
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
126
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
127
  msgstr[0] ""
@@ -132,15 +160,15 @@ msgstr[2] ""
132
  msgid "Requested table character set (%s) is not present - changing to %s."
133
  msgstr ""
134
 
135
- #: src/class-updraftplus.php:4626
136
  msgid "Your chosen character set to use instead:"
137
  msgstr ""
138
 
139
- #: src/class-updraftplus.php:4616
140
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
141
  msgstr ""
142
 
143
- #: src/class-updraftplus.php:4616
144
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
145
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
146
  msgstr[0] ""
@@ -195,79 +223,79 @@ msgstr ""
195
  msgid "Please enter a valid URL e.g http://example.com"
196
  msgstr ""
197
 
198
- #: src/addons/backblaze.php:588
199
  msgid "your Backblaze console"
200
  msgstr ""
201
 
202
- #: src/addons/backblaze.php:588
203
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
204
  msgstr ""
205
 
206
- #: src/addons/backblaze.php:588
207
  msgid "N.B. You need to create the bucket in %s first."
208
  msgstr ""
209
 
210
- #: src/addons/backblaze.php:587
211
  msgid "some/path"
212
  msgstr ""
213
 
214
- #: src/addons/backblaze.php:587
215
  msgid "Bucket name"
216
  msgstr ""
217
 
218
- #: src/addons/backblaze.php:586
219
  msgid "Backup path"
220
  msgstr ""
221
 
222
- #: src/addons/backblaze.php:581
223
  msgid "Application key"
224
  msgstr ""
225
 
226
- #: src/addons/backblaze.php:576, src/addons/backblaze.php:576
227
  msgid "here"
228
  msgstr ""
229
 
230
- #: src/addons/backblaze.php:576
231
  msgid "Get these settings from %s, or sign up %s."
232
  msgstr ""
233
 
234
- #: src/addons/backblaze.php:440
235
  msgid "Bucket not found"
236
  msgstr ""
237
 
238
- #: src/addons/backblaze.php:394
239
  msgid "Account Key"
240
  msgstr ""
241
 
242
- #: src/addons/backblaze.php:393, src/addons/backblaze.php:574
243
  msgid "Account ID"
244
  msgstr ""
245
 
246
- #: src/class-updraftplus.php:4460
247
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
248
  msgstr ""
249
 
250
- #: src/class-updraftplus.php:4458, src/class-updraftplus.php:4460
251
  msgid "the migrator add-on"
252
  msgstr ""
253
 
254
- #: src/class-updraftplus.php:4458
255
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
256
  msgstr ""
257
 
258
- #: src/class-updraftplus.php:4456
259
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
260
  msgstr ""
261
 
262
- #: src/class-updraftplus.php:4453
263
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
264
  msgstr ""
265
 
266
- #: src/methods/googledrive.php:1173
267
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
268
  msgstr ""
269
 
270
- #: src/methods/googledrive.php:1170
271
  msgid "Follow this link to remove this site's settings for %s."
272
  msgstr ""
273
 
@@ -279,15 +307,15 @@ msgstr ""
279
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
280
  msgstr ""
281
 
282
- #: src/admin.php:1348, src/admin.php:4168, src/backup.php:2065,
283
- #: src/class-updraftplus.php:2156, src/class-updraftplus.php:2221,
284
- #: src/class-updraftplus.php:2355
285
  msgid "A PHP fatal error (%s) has occurred: %s"
286
  msgstr ""
287
 
288
- #: src/admin.php:1339, src/admin.php:4154, src/backup.php:2056,
289
- #: src/class-updraftplus.php:2147, src/class-updraftplus.php:2214,
290
- #: src/class-updraftplus.php:2348
291
  msgid "A PHP exception (%s) has occurred: %s"
292
  msgstr ""
293
 
@@ -331,7 +359,7 @@ msgstr ""
331
  msgid "Select Files"
332
  msgstr ""
333
 
334
- #: src/methods/cloudfiles.php:465
335
  msgid "Rackspace Storage Region"
336
  msgstr ""
337
 
@@ -339,23 +367,23 @@ msgstr ""
339
  msgid "Instant and secure logon with a wave of your phone."
340
  msgstr ""
341
 
342
- #: src/backup.php:2069
343
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
344
  msgstr ""
345
 
346
- #: src/admin.php:4696
347
  msgid "Value"
348
  msgstr ""
349
 
350
- #: src/admin.php:1614
351
  msgid "Did not know how to delete from this cloud service."
352
  msgstr ""
353
 
354
- #: src/addons/sftp.php:700
355
  msgid "Encrypted login failed; trying non-encrypted"
356
  msgstr ""
357
 
358
- #: src/addons/azure.php:539
359
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
360
  msgstr ""
361
 
@@ -363,15 +391,15 @@ msgstr ""
363
  msgid "Stored at: %s"
364
  msgstr ""
365
 
366
- #: src/methods/cloudfiles.php:485
367
  msgid "Cloud Files"
368
  msgstr ""
369
 
370
- #: src/admin.php:4509
371
  msgid "Your settings failed to save. Please refresh the settings page and try again"
372
  msgstr ""
373
 
374
- #: src/admin.php:4468
375
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
376
  msgstr ""
377
 
@@ -388,15 +416,15 @@ msgstr ""
388
  msgid "Extra database"
389
  msgstr ""
390
 
391
- #: src/admin.php:3729
392
  msgid "Press here to download or browse"
393
  msgstr ""
394
 
395
- #: src/admin.php:1122, src/admin.php:1132
396
  msgid "Error: invalid path"
397
  msgstr ""
398
 
399
- #: src/admin.php:946
400
  msgid "An error occurred when fetching storage module options: "
401
  msgstr ""
402
 
@@ -432,15 +460,15 @@ msgstr ""
432
  msgid "Skipped tables:"
433
  msgstr ""
434
 
435
- #: src/class-updraftplus.php:4738
436
  msgid "This database backup has the following WordPress tables excluded: %s"
437
  msgstr ""
438
 
439
- #: src/admin.php:2624
440
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
441
  msgstr ""
442
 
443
- #: src/admin.php:2624
444
  msgid "All WordPress tables will be backed up."
445
  msgstr ""
446
 
@@ -940,15 +968,15 @@ msgstr ""
940
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
941
  msgstr ""
942
 
943
- #: src/methods/dropbox.php:608
944
  msgid "%s de-authentication"
945
  msgstr ""
946
 
947
- #: src/methods/dropbox.php:528
948
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
949
  msgstr ""
950
 
951
- #: src/methods/dropbox.php:505
952
  msgid "Follow this link to deauthenticate with %s."
953
  msgstr ""
954
 
@@ -956,7 +984,7 @@ msgstr ""
956
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
957
  msgstr ""
958
 
959
- #: src/backup.php:1663
960
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
961
  msgstr ""
962
 
@@ -964,16 +992,16 @@ msgstr ""
964
  msgid "You have selected a remote storage option which has an authorization step to complete:"
965
  msgstr ""
966
 
967
- #: src/admin.php:1690
968
  msgid "Remote files deleted:"
969
  msgstr ""
970
 
971
- #: src/admin.php:1689
972
  msgid "Local files deleted:"
973
  msgstr ""
974
 
975
- #: src/admin.php:994, src/admin.php:1003, src/admin.php:1016,
976
- #: src/admin.php:1025
977
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
978
  msgstr ""
979
 
@@ -1017,24 +1045,24 @@ msgstr ""
1017
  msgid "US East (Ohio)"
1018
  msgstr ""
1019
 
1020
- #: src/addons/onedrive.php:979
1021
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1022
  msgstr ""
1023
 
1024
- #: src/addons/onedrive.php:649
1025
  msgid "Account is not authorized (%s)."
1026
  msgstr ""
1027
 
1028
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873
1029
  msgid "Your IP address:"
1030
  msgstr ""
1031
 
1032
- #: src/addons/onedrive.php:609, src/udaddons/updraftplus-addons.php:873,
1033
  #: src/udaddons/updraftplus-addons.php:887
1034
  msgid "To remove any block, please go here."
1035
  msgstr ""
1036
 
1037
- #: src/addons/onedrive.php:594, src/udaddons/updraftplus-addons.php:858
1038
  msgid "An error response was received; HTTP code:"
1039
  msgstr ""
1040
 
@@ -1050,11 +1078,11 @@ msgstr ""
1050
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1051
  msgstr ""
1052
 
1053
- #: src/admin.php:2438
1054
  msgid "To fix this problem go here."
1055
  msgstr ""
1056
 
1057
- #: src/admin.php:2438
1058
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1059
  msgstr ""
1060
 
@@ -1062,27 +1090,27 @@ msgstr ""
1062
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1063
  msgstr ""
1064
 
1065
- #: src/addons/webdav.php:125
1066
  msgid "Path"
1067
  msgstr ""
1068
 
1069
- #: src/addons/webdav.php:120
1070
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1071
  msgstr ""
1072
 
1073
- #: src/addons/webdav.php:112
1074
  msgid "Enter any path in the field below."
1075
  msgstr ""
1076
 
1077
- #: src/addons/webdav.php:112
1078
  msgid "A host name cannot contain a slash."
1079
  msgstr ""
1080
 
1081
- #: src/addons/webdav.php:87
1082
  msgid "Protocol (SSL or not)"
1083
  msgstr ""
1084
 
1085
- #: src/addons/webdav.php:82
1086
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1087
  msgstr ""
1088
 
@@ -1090,7 +1118,7 @@ msgstr ""
1090
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1091
  msgstr ""
1092
 
1093
- #: src/methods/s3.php:1075
1094
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1095
  msgstr ""
1096
 
@@ -1130,53 +1158,53 @@ msgstr ""
1130
  msgid "Public key was sent to:"
1131
  msgstr ""
1132
 
1133
- #: src/backup.php:2281
1134
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1135
  msgstr ""
1136
 
1137
- #: src/backup.php:2259
1138
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1139
  msgstr ""
1140
 
1141
- #: src/addons/migrator.php:2342
1142
  msgid "Create key"
1143
  msgstr ""
1144
 
1145
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:526
1146
  msgid "slower, strongest"
1147
  msgstr ""
1148
 
1149
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1150
  msgid "recommended"
1151
  msgstr ""
1152
 
1153
- #: src/addons/migrator.php:2338, src/central/bootstrap.php:525
1154
  msgid "%s bytes"
1155
  msgstr ""
1156
 
1157
- #: src/addons/migrator.php:2337, src/central/bootstrap.php:524
1158
  msgid "faster (possibility for slow PHP installs)"
1159
  msgstr ""
1160
 
1161
- #: src/addons/migrator.php:2336, src/central/bootstrap.php:523
1162
  msgid "easy to break, fastest"
1163
  msgstr ""
1164
 
1165
- #: src/addons/migrator.php:2336, src/addons/migrator.php:2337,
1166
- #: src/addons/migrator.php:2339, src/central/bootstrap.php:523,
1167
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1168
  msgid "%s bits"
1169
  msgstr ""
1170
 
1171
- #: src/addons/migrator.php:2334, src/central/bootstrap.php:521
1172
  msgid "Encryption key size:"
1173
  msgstr ""
1174
 
1175
- #: src/addons/migrator.php:2332
1176
  msgid "Enter your chosen name"
1177
  msgstr ""
1178
 
1179
- #: src/addons/migrator.php:2331
1180
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1181
  msgstr ""
1182
 
@@ -1184,15 +1212,15 @@ msgstr ""
1184
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1185
  msgstr ""
1186
 
1187
- #: src/methods/ftp.php:408
1188
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1189
  msgstr ""
1190
 
1191
- #: src/methods/ftp.php:380
1192
  msgid "login"
1193
  msgstr ""
1194
 
1195
- #: src/methods/email.php:79
1196
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1197
  msgstr ""
1198
 
@@ -1200,7 +1228,7 @@ msgstr ""
1200
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1201
  msgstr ""
1202
 
1203
- #: src/class-updraftplus.php:1763
1204
  msgid "Size: %s MB"
1205
  msgstr ""
1206
 
@@ -1212,7 +1240,7 @@ msgstr ""
1212
  msgid "Now"
1213
  msgstr ""
1214
 
1215
- #: src/class-updraftplus.php:4475, src/restorer.php:1045
1216
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1217
  msgstr ""
1218
 
@@ -1220,13 +1248,13 @@ msgstr ""
1220
  msgid "(tap on an icon to select or unselect)"
1221
  msgstr ""
1222
 
1223
- #: src/methods/updraftvault.php:310, src/methods/updraftvault.php:316,
1224
- #: src/methods/updraftvault.php:322
1225
  msgid "%s per year"
1226
  msgstr ""
1227
 
1228
- #: src/methods/updraftvault.php:309, src/methods/updraftvault.php:315,
1229
- #: src/methods/updraftvault.php:321
1230
  msgid "or (annual discount)"
1231
  msgstr ""
1232
 
@@ -1234,7 +1262,7 @@ msgstr ""
1234
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1235
  msgstr ""
1236
 
1237
- #: src/class-updraftplus.php:544, src/class-updraftplus.php:589
1238
  msgid "The given file was not found, or could not be read."
1239
  msgstr ""
1240
 
@@ -1318,23 +1346,23 @@ msgstr ""
1318
  msgid "UpdraftCentral Connection"
1319
  msgstr ""
1320
 
1321
- #: src/backup.php:965, src/class-updraftplus.php:2837
1322
  msgid "The backup was aborted by the user"
1323
  msgstr ""
1324
 
1325
- #: src/admin.php:4504
1326
  msgid "Your settings have been saved."
1327
  msgstr ""
1328
 
1329
- #: src/admin.php:3607
1330
  msgid "Total backup size:"
1331
  msgstr ""
1332
 
1333
- #: src/admin.php:2964
1334
  msgid "stop"
1335
  msgstr ""
1336
 
1337
- #: src/admin.php:2806
1338
  msgid "The backup has finished running"
1339
  msgstr ""
1340
 
@@ -1396,19 +1424,19 @@ msgstr ""
1396
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1397
  msgstr ""
1398
 
1399
- #: src/class-updraftplus.php:4526, src/restorer.php:1740
1400
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1401
  msgstr ""
1402
 
1403
- #: src/class-updraftplus.php:4522
1404
  msgid "Please read this link for important information on this process."
1405
  msgstr ""
1406
 
1407
- #: src/class-updraftplus.php:4522
1408
  msgid "It will be imported as a new site."
1409
  msgstr ""
1410
 
1411
- #: src/admin.php:2597, src/templates/wp-admin/notices/horizontal-notice.php:16,
1412
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1413
  msgid "Dismiss"
1414
  msgstr ""
@@ -1417,56 +1445,56 @@ msgstr ""
1417
  msgid "Please fill in the required information."
1418
  msgstr ""
1419
 
1420
- #: src/addons/multisite.php:579
1421
  msgid "Read more..."
1422
  msgstr ""
1423
 
1424
- #: src/addons/multisite.php:570
1425
  msgid "may include some site-wide data"
1426
  msgstr ""
1427
 
1428
- #: src/addons/multisite.php:565
1429
  msgid "All sites"
1430
  msgstr ""
1431
 
1432
- #: src/addons/multisite.php:561
1433
  msgid "Which site to restore"
1434
  msgstr ""
1435
 
1436
- #: src/addons/migrator.php:563, src/addons/migrator.php:564
1437
  msgid "Error when creating new site at your chosen address:"
1438
  msgstr ""
1439
 
1440
- #: src/addons/migrator.php:505
1441
  msgid "Required information for restoring this backup was not given (%s)"
1442
  msgstr ""
1443
 
1444
- #: src/addons/migrator.php:457
1445
  msgid "Attribute imported content to user"
1446
  msgstr ""
1447
 
1448
- #: src/addons/migrator.php:447, src/addons/migrator.php:449
1449
  msgid "You must use lower-case letters or numbers for the site path, only."
1450
  msgstr ""
1451
 
1452
- #: src/addons/migrator.php:435
1453
  msgid "This feature is not compatible with %s"
1454
  msgstr ""
1455
 
1456
- #: src/addons/migrator.php:433, src/addons/migrator.php:435
1457
  msgid "Importing a single site into a multisite install"
1458
  msgstr ""
1459
 
1460
- #: src/addons/migrator.php:424
1461
  msgid "other content from wp-content"
1462
  msgstr ""
1463
 
1464
- #: src/addons/migrator.php:421
1465
  msgid "WordPress core"
1466
  msgstr ""
1467
 
1468
- #: src/addons/migrator.php:421, src/addons/migrator.php:424,
1469
- #: src/addons/migrator.php:427
1470
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1471
  msgstr ""
1472
 
@@ -1474,11 +1502,11 @@ msgstr ""
1474
  msgid "Call WordPress action:"
1475
  msgstr ""
1476
 
1477
- #: src/admin.php:2632
1478
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1479
  msgstr ""
1480
 
1481
- #: src/admin.php:4043
1482
  msgid "Skipping: this archive was already restored."
1483
  msgstr ""
1484
 
@@ -1510,51 +1538,51 @@ msgstr ""
1510
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1511
  msgstr ""
1512
 
1513
- #: src/admin.php:4378
1514
  msgid "Send this backup to remote storage"
1515
  msgstr ""
1516
 
1517
- #: src/admin.php:4376
1518
  msgid "Check out UpdraftPlus Vault."
1519
  msgstr ""
1520
 
1521
- #: src/admin.php:4376
1522
  msgid "Not got any remote storage?"
1523
  msgstr ""
1524
 
1525
- #: src/admin.php:4376
1526
  msgid "settings"
1527
  msgstr ""
1528
 
1529
- #: src/admin.php:4376
1530
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1531
  msgstr ""
1532
 
1533
- #: src/admin.php:2630
1534
  msgid "Include any files in the backup"
1535
  msgstr ""
1536
 
1537
- #: src/admin.php:2616
1538
  msgid "Include the database in the backup"
1539
  msgstr ""
1540
 
1541
- #: src/admin.php:2596
1542
  msgid "Continue restoration"
1543
  msgstr ""
1544
 
1545
- #: src/admin.php:2591
1546
  msgid "You have an unfinished restoration operation, begun %s ago."
1547
  msgstr ""
1548
 
1549
- #: src/admin.php:2590
1550
  msgid "Unfinished restoration"
1551
  msgstr ""
1552
 
1553
- #: src/admin.php:2588
1554
  msgid "%s minutes, %s seconds"
1555
  msgstr ""
1556
 
1557
- #: src/admin.php:2535
1558
  msgid "Backup Contents And Schedule"
1559
  msgstr ""
1560
 
@@ -1562,7 +1590,7 @@ msgstr ""
1562
  msgid "Premium / Extensions"
1563
  msgstr ""
1564
 
1565
- #: src/admin.php:2304, src/admin.php:2313
1566
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1567
  msgstr ""
1568
 
@@ -1583,23 +1611,23 @@ msgstr ""
1583
  msgid "Advanced Tools"
1584
  msgstr ""
1585
 
1586
- #: src/addons/googlecloud.php:967
1587
  msgid "Bucket location"
1588
  msgstr ""
1589
 
1590
- #: src/addons/googlecloud.php:962
1591
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1592
  msgstr ""
1593
 
1594
- #: src/addons/googlecloud.php:962, src/addons/googlecloud.php:975
1595
  msgid "This setting applies only when a new bucket is being created."
1596
  msgstr ""
1597
 
1598
- #: src/addons/googlecloud.php:951
1599
  msgid "You must use a bucket name that is unique, for all %s users."
1600
  msgstr ""
1601
 
1602
- #: src/addons/googlecloud.php:910
1603
  msgid "Do not confuse %s with %s - they are separate things."
1604
  msgstr ""
1605
 
@@ -1661,64 +1689,64 @@ msgstr ""
1661
  msgid "Standard"
1662
  msgstr ""
1663
 
1664
- #: src/addons/azure.php:563
1665
  msgid "container"
1666
  msgstr ""
1667
 
1668
- #: src/addons/azure.php:563
1669
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1670
  msgstr ""
1671
 
1672
- #: src/addons/azure.php:562
1673
  msgid "optional"
1674
  msgstr ""
1675
 
1676
- #: src/addons/azure.php:558
1677
  msgid "See Microsoft's guidelines on container naming by following this link."
1678
  msgstr ""
1679
 
1680
- #: src/addons/azure.php:558
1681
  msgid "Enter the path of the %s you wish to use here."
1682
  msgstr ""
1683
 
1684
- #: src/addons/azure.php:549
1685
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1686
  msgstr ""
1687
 
1688
- #: src/addons/azure.php:548, src/addons/azure.php:552,
1689
- #: src/addons/azure.php:557, src/addons/azure.php:562
1690
  msgid "Azure"
1691
  msgstr ""
1692
 
1693
- #: src/addons/azure.php:544
1694
  msgid "Create Azure credentials in your Azure developer console."
1695
  msgstr ""
1696
 
1697
- #: src/addons/azure.php:513
1698
  msgid "Could not create the container"
1699
  msgstr ""
1700
 
1701
- #: src/addons/azure.php:364
1702
  msgid "Could not access container"
1703
  msgstr ""
1704
 
1705
- #: src/class-updraftplus.php:2854
1706
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1707
  msgstr ""
1708
 
1709
- #: src/backup.php:1715
1710
  msgid "the options table was not found"
1711
  msgstr ""
1712
 
1713
- #: src/backup.php:1713
1714
  msgid "no options or sitemeta table was found"
1715
  msgstr ""
1716
 
1717
- #: src/backup.php:1713, src/backup.php:1715
1718
  msgid "The database backup appears to have failed"
1719
  msgstr ""
1720
 
1721
- #: src/backup.php:1585
1722
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1723
  msgstr ""
1724
 
@@ -1730,47 +1758,47 @@ msgstr ""
1730
  msgid "Not installed"
1731
  msgstr ""
1732
 
1733
- #: src/addons/googlecloud.php:954, src/addons/s3-enhanced.php:63
1734
  msgid "Storage class"
1735
  msgstr ""
1736
 
1737
- #: src/addons/googlecloud.php:951
1738
  msgid "See Google's guidelines on bucket naming by following this link."
1739
  msgstr ""
1740
 
1741
- #: src/addons/googlecloud.php:951
1742
  msgid "Enter the name of the %s bucket you wish to use here."
1743
  msgstr ""
1744
 
1745
- #: src/addons/googlecloud.php:950
1746
  msgid "Bucket"
1747
  msgstr ""
1748
 
1749
- #: src/addons/googlecloud.php:946
1750
  msgid "Otherwise, you can leave it blank."
1751
  msgstr ""
1752
 
1753
- #: src/addons/googlecloud.php:946
1754
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1755
  msgstr ""
1756
 
1757
- #: src/addons/googlecloud.php:946
1758
  msgid "Enter the ID of the %s project you wish to use here."
1759
  msgstr ""
1760
 
1761
- #: src/addons/googlecloud.php:922
1762
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1763
  msgstr ""
1764
 
1765
- #: src/addons/googlecloud.php:835
1766
  msgid "You must enter a project ID in order to be able to create a new bucket."
1767
  msgstr ""
1768
 
1769
- #: src/addons/googlecloud.php:944
1770
  msgid "Project ID"
1771
  msgstr ""
1772
 
1773
- #: src/addons/googlecloud.php:692
1774
  msgid "You must save and authenticate before you can test your settings."
1775
  msgstr ""
1776
 
@@ -1779,22 +1807,22 @@ msgid "Have not yet obtained an access token from Google - you need to authorise
1779
  msgstr ""
1780
 
1781
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1782
- #: src/addons/googlecloud.php:827, src/addons/googlecloud.php:874
1783
  msgid "You do not have access to this bucket."
1784
  msgstr ""
1785
 
1786
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1787
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1788
- #: src/addons/googlecloud.php:651, src/addons/googlecloud.php:827,
1789
- #: src/addons/googlecloud.php:874, src/addons/googlecloud.php:916,
1790
- #: src/addons/googlecloud.php:916, src/addons/googlecloud.php:931,
1791
- #: src/addons/googlecloud.php:939, src/addons/googlecloud.php:951
1792
  msgid "Google Cloud"
1793
  msgstr ""
1794
 
1795
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1796
- #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:827,
1797
- #: src/addons/googlecloud.php:874
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/2.3.1\n"
11
  "Language: bs_BA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/addons/migrator.php:406
15
+ msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
16
+ msgstr ""
17
+
18
+ #: src/addons/migrator.php:395
19
+ msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use below search and replace so that the non-https links are automatically replaced."
20
+ msgstr ""
21
+
22
+ #: src/addons/migrator.php:384
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use below search and replace to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/addons/morestorage.php:91
27
+ msgid "Add another %s account..."
28
+ msgstr ""
29
+
30
+ #: src/addons/morestorage.php:70
31
+ msgid "Delete these settings"
32
+ msgstr ""
33
+
34
+ #: src/addons/morestorage.php:68, src/admin.php:777
35
+ msgid "Currently disabled"
36
+ msgstr ""
37
+
38
+ #: src/addons/morestorage.php:68, src/admin.php:776
39
+ msgid "Currently enabled"
40
+ msgstr ""
41
+
42
  #: src/templates/wp-admin/settings/tab-addons.php:14
43
  msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
44
  msgstr ""
51
  msgid "get it here"
52
  msgstr ""
53
 
54
+ #: src/methods/stream-base.php:322
55
  msgid "Download chunk size successfully changed to %d"
56
  msgstr ""
57
 
58
+ #: src/methods/stream-base.php:319
59
  msgid "Download chunk size failed to change to %d"
60
  msgstr ""
61
 
71
  msgid "remote site"
72
  msgstr ""
73
 
74
+ #: src/addons/backblaze.php:461
75
  msgid "Invalid bucket name"
76
  msgstr ""
77
 
82
  msgstr[1] ""
83
  msgstr[2] ""
84
 
85
+ #: src/class-updraftplus.php:4364
86
  msgid "Your chosen replacement collation"
87
  msgstr ""
88
 
89
+ #: src/class-updraftplus.php:4341
90
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
91
  msgstr ""
92
 
93
+ #: src/class-updraftplus.php:4341
94
  msgid "The database server that this WordPress site is running on doesn't support the collation (%s) used in the database which you are trying to import."
95
  msgid_plural "The database server that this WordPress site is running on doesn't support multiple collations (%s) used in the database which you are trying to import."
96
  msgstr[0] ""
97
  msgstr[1] ""
98
  msgstr[2] ""
99
 
100
+ #: src/addons/migrator.php:529
101
  msgid "Database restoration options:"
102
  msgstr ""
103
 
104
+ #: src/addons/migrator.php:373
105
  msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
106
  msgstr ""
107
 
108
+ #: src/addons/azure.php:629
109
  msgid "%s Prefix"
110
  msgstr ""
111
 
112
+ #: src/addons/azure.php:624
113
  msgid "%s Container"
114
  msgstr ""
115
 
116
+ #: src/addons/azure.php:619
117
  msgid "%s Key"
118
  msgstr ""
119
 
120
+ #: src/addons/azure.php:615
121
  msgid "%s Account Name"
122
  msgstr ""
123
 
124
+ #: src/addons/googlecloud.php:684
125
  msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
126
  msgstr ""
127
 
128
+ #: src/addons/googlecloud.php:682
129
  msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
130
  msgstr ""
131
 
149
  msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
150
  msgstr ""
151
 
152
+ #: src/addons/migrator.php:913
153
  msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
154
  msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
155
  msgstr[0] ""
160
  msgid "Requested table character set (%s) is not present - changing to %s."
161
  msgstr ""
162
 
163
+ #: src/class-updraftplus.php:4317
164
  msgid "Your chosen character set to use instead:"
165
  msgstr ""
166
 
167
+ #: src/class-updraftplus.php:4307
168
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
169
  msgstr ""
170
 
171
+ #: src/class-updraftplus.php:4307
172
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
173
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
174
  msgstr[0] ""
223
  msgid "Please enter a valid URL e.g http://example.com"
224
  msgstr ""
225
 
226
+ #: src/addons/backblaze.php:619
227
  msgid "your Backblaze console"
228
  msgstr ""
229
 
230
+ #: src/addons/backblaze.php:619
231
  msgid "There are limits upon which path-names are valid. Spaces are not allowed."
232
  msgstr ""
233
 
234
+ #: src/addons/backblaze.php:619
235
  msgid "N.B. You need to create the bucket in %s first."
236
  msgstr ""
237
 
238
+ #: src/addons/backblaze.php:618
239
  msgid "some/path"
240
  msgstr ""
241
 
242
+ #: src/addons/backblaze.php:618
243
  msgid "Bucket name"
244
  msgstr ""
245
 
246
+ #: src/addons/backblaze.php:617
247
  msgid "Backup path"
248
  msgstr ""
249
 
250
+ #: src/addons/backblaze.php:612
251
  msgid "Application key"
252
  msgstr ""
253
 
254
+ #: src/addons/backblaze.php:607, src/addons/backblaze.php:607
255
  msgid "here"
256
  msgstr ""
257
 
258
+ #: src/addons/backblaze.php:607
259
  msgid "Get these settings from %s, or sign up %s."
260
  msgstr ""
261
 
262
+ #: src/addons/backblaze.php:458
263
  msgid "Bucket not found"
264
  msgstr ""
265
 
266
+ #: src/addons/backblaze.php:412
267
  msgid "Account Key"
268
  msgstr ""
269
 
270
+ #: src/addons/backblaze.php:411, src/addons/backblaze.php:605
271
  msgid "Account ID"
272
  msgstr ""
273
 
274
+ #: src/class-updraftplus.php:4149
275
  msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced."
276
  msgstr ""
277
 
278
+ #: src/class-updraftplus.php:4147, src/class-updraftplus.php:4149
279
  msgid "the migrator add-on"
280
  msgstr ""
281
 
282
+ #: src/class-updraftplus.php:4147
283
  msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
284
  msgstr ""
285
 
286
+ #: src/class-updraftplus.php:4145
287
  msgid "This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s."
288
  msgstr ""
289
 
290
+ #: src/class-updraftplus.php:4140
291
  msgid "The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site."
292
  msgstr ""
293
 
294
+ #: src/methods/googledrive.php:1240
295
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
296
  msgstr ""
297
 
298
+ #: src/methods/googledrive.php:1237
299
  msgid "Follow this link to remove this site's settings for %s."
300
  msgstr ""
301
 
307
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
308
  msgstr ""
309
 
310
+ #: src/admin.php:1350, src/admin.php:4170, src/backup.php:2106,
311
+ #: src/class-updraftplus.php:2181, src/class-updraftplus.php:2246,
312
+ #: src/class-updraftplus.php:2380
313
  msgid "A PHP fatal error (%s) has occurred: %s"
314
  msgstr ""
315
 
316
+ #: src/admin.php:1341, src/admin.php:4156, src/backup.php:2097,
317
+ #: src/class-updraftplus.php:2172, src/class-updraftplus.php:2239,
318
+ #: src/class-updraftplus.php:2373
319
  msgid "A PHP exception (%s) has occurred: %s"
320
  msgstr ""
321
 
359
  msgid "Select Files"
360
  msgstr ""
361
 
362
+ #: src/methods/cloudfiles.php:476
363
  msgid "Rackspace Storage Region"
364
  msgstr ""
365
 
367
  msgid "Instant and secure logon with a wave of your phone."
368
  msgstr ""
369
 
370
+ #: src/backup.php:2110
371
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
372
  msgstr ""
373
 
374
+ #: src/admin.php:4698
375
  msgid "Value"
376
  msgstr ""
377
 
378
+ #: src/admin.php:1616
379
  msgid "Did not know how to delete from this cloud service."
380
  msgstr ""
381
 
382
+ #: src/addons/sftp.php:716
383
  msgid "Encrypted login failed; trying non-encrypted"
384
  msgstr ""
385
 
386
+ #: src/addons/azure.php:592
387
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
388
  msgstr ""
389
 
391
  msgid "Stored at: %s"
392
  msgstr ""
393
 
394
+ #: src/methods/cloudfiles.php:496
395
  msgid "Cloud Files"
396
  msgstr ""
397
 
398
+ #: src/admin.php:4511
399
  msgid "Your settings failed to save. Please refresh the settings page and try again"
400
  msgstr ""
401
 
402
+ #: src/admin.php:4470
403
  msgid "UpdraftPlus seems to have been updated to version (%s), which is different to the version running when this settings page was loaded. Please reload the settings page before trying to save settings."
404
  msgstr ""
405
 
416
  msgid "Extra database"
417
  msgstr ""
418
 
419
+ #: src/admin.php:3731
420
  msgid "Press here to download or browse"
421
  msgstr ""
422
 
423
+ #: src/admin.php:1124, src/admin.php:1134
424
  msgid "Error: invalid path"
425
  msgstr ""
426
 
427
+ #: src/admin.php:948
428
  msgid "An error occurred when fetching storage module options: "
429
  msgstr ""
430
 
460
  msgid "Skipped tables:"
461
  msgstr ""
462
 
463
+ #: src/class-updraftplus.php:4429
464
  msgid "This database backup has the following WordPress tables excluded: %s"
465
  msgstr ""
466
 
467
+ #: src/admin.php:2626
468
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
469
  msgstr ""
470
 
471
+ #: src/admin.php:2626
472
  msgid "All WordPress tables will be backed up."
473
  msgstr ""
474
 
968
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
969
  msgstr ""
970
 
971
+ #: src/methods/dropbox.php:686
972
  msgid "%s de-authentication"
973
  msgstr ""
974
 
975
+ #: src/methods/dropbox.php:606
976
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
977
  msgstr ""
978
 
979
+ #: src/methods/dropbox.php:583
980
  msgid "Follow this link to deauthenticate with %s."
981
  msgstr ""
982
 
984
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
985
  msgstr ""
986
 
987
+ #: src/backup.php:1704
988
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
989
  msgstr ""
990
 
992
  msgid "You have selected a remote storage option which has an authorization step to complete:"
993
  msgstr ""
994
 
995
+ #: src/admin.php:1692
996
  msgid "Remote files deleted:"
997
  msgstr ""
998
 
999
+ #: src/admin.php:1691
1000
  msgid "Local files deleted:"
1001
  msgstr ""
1002
 
1003
+ #: src/admin.php:996, src/admin.php:1005, src/admin.php:1018,
1004
+ #: src/admin.php:1027
1005
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
1006
  msgstr ""
1007
 
1045
  msgid "US East (Ohio)"
1046
  msgstr ""
1047
 
1048
+ #: src/addons/onedrive.php:1029
1049
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
1050
  msgstr ""
1051
 
1052
+ #: src/addons/onedrive.php:698
1053
  msgid "Account is not authorized (%s)."
1054
  msgstr ""
1055
 
1056
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873
1057
  msgid "Your IP address:"
1058
  msgstr ""
1059
 
1060
+ #: src/addons/onedrive.php:658, src/udaddons/updraftplus-addons.php:873,
1061
  #: src/udaddons/updraftplus-addons.php:887
1062
  msgid "To remove any block, please go here."
1063
  msgstr ""
1064
 
1065
+ #: src/addons/onedrive.php:643, src/udaddons/updraftplus-addons.php:858
1066
  msgid "An error response was received; HTTP code:"
1067
  msgstr ""
1068
 
1078
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time"
1079
  msgstr ""
1080
 
1081
+ #: src/admin.php:2440
1082
  msgid "To fix this problem go here."
1083
  msgstr ""
1084
 
1085
+ #: src/admin.php:2440
1086
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
1087
  msgstr ""
1088
 
1090
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
1091
  msgstr ""
1092
 
1093
+ #: src/addons/webdav.php:204
1094
  msgid "Path"
1095
  msgstr ""
1096
 
1097
+ #: src/addons/webdav.php:199
1098
  msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
1099
  msgstr ""
1100
 
1101
+ #: src/addons/webdav.php:191
1102
  msgid "Enter any path in the field below."
1103
  msgstr ""
1104
 
1105
+ #: src/addons/webdav.php:191
1106
  msgid "A host name cannot contain a slash."
1107
  msgstr ""
1108
 
1109
+ #: src/addons/webdav.php:166
1110
  msgid "Protocol (SSL or not)"
1111
  msgstr ""
1112
 
1113
+ #: src/addons/webdav.php:161
1114
  msgid "This WebDAV URL is generated by filling in the options below. If you do not know the details, then you will need to ask your WebDAV provider."
1115
  msgstr ""
1116
 
1118
  msgid "No response data was received. This usually indicates a network connectivity issue (e.g. an outgoing firewall or overloaded network) between this site and UpdraftPlus.com."
1119
  msgstr ""
1120
 
1121
+ #: src/methods/s3.php:1110
1122
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
1123
  msgstr ""
1124
 
1158
  msgid "Public key was sent to:"
1159
  msgstr ""
1160
 
1161
+ #: src/backup.php:2322
1162
  msgid "Failed to open directory (check the file permissions and ownership): %s"
1163
  msgstr ""
1164
 
1165
+ #: src/backup.php:2300
1166
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
1167
  msgstr ""
1168
 
1169
+ #: src/addons/migrator.php:2378
1170
  msgid "Create key"
1171
  msgstr ""
1172
 
1173
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:526
1174
  msgid "slower, strongest"
1175
  msgstr ""
1176
 
1177
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1178
  msgid "recommended"
1179
  msgstr ""
1180
 
1181
+ #: src/addons/migrator.php:2374, src/central/bootstrap.php:525
1182
  msgid "%s bytes"
1183
  msgstr ""
1184
 
1185
+ #: src/addons/migrator.php:2373, src/central/bootstrap.php:524
1186
  msgid "faster (possibility for slow PHP installs)"
1187
  msgstr ""
1188
 
1189
+ #: src/addons/migrator.php:2372, src/central/bootstrap.php:523
1190
  msgid "easy to break, fastest"
1191
  msgstr ""
1192
 
1193
+ #: src/addons/migrator.php:2372, src/addons/migrator.php:2373,
1194
+ #: src/addons/migrator.php:2375, src/central/bootstrap.php:523,
1195
  #: src/central/bootstrap.php:524, src/central/bootstrap.php:526
1196
  msgid "%s bits"
1197
  msgstr ""
1198
 
1199
+ #: src/addons/migrator.php:2370, src/central/bootstrap.php:521
1200
  msgid "Encryption key size:"
1201
  msgstr ""
1202
 
1203
+ #: src/addons/migrator.php:2368
1204
  msgid "Enter your chosen name"
1205
  msgstr ""
1206
 
1207
+ #: src/addons/migrator.php:2367
1208
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
1209
  msgstr ""
1210
 
1212
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
1213
  msgstr ""
1214
 
1215
+ #: src/methods/ftp.php:435
1216
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
1217
  msgstr ""
1218
 
1219
+ #: src/methods/ftp.php:407
1220
  msgid "login"
1221
  msgstr ""
1222
 
1223
+ #: src/methods/email.php:91
1224
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
1225
  msgstr ""
1226
 
1228
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
1229
  msgstr ""
1230
 
1231
+ #: src/class-updraftplus.php:1788
1232
  msgid "Size: %s MB"
1233
  msgstr ""
1234
 
1240
  msgid "Now"
1241
  msgstr ""
1242
 
1243
+ #: src/class-updraftplus.php:4166, src/restorer.php:1045
1244
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1245
  msgstr ""
1246
 
1248
  msgid "(tap on an icon to select or unselect)"
1249
  msgstr ""
1250
 
1251
+ #: src/methods/updraftvault.php:319, src/methods/updraftvault.php:325,
1252
+ #: src/methods/updraftvault.php:331
1253
  msgid "%s per year"
1254
  msgstr ""
1255
 
1256
+ #: src/methods/updraftvault.php:318, src/methods/updraftvault.php:324,
1257
+ #: src/methods/updraftvault.php:330
1258
  msgid "or (annual discount)"
1259
  msgstr ""
1260
 
1262
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
1263
  msgstr ""
1264
 
1265
+ #: src/class-updraftplus.php:556, src/class-updraftplus.php:601
1266
  msgid "The given file was not found, or could not be read."
1267
  msgstr ""
1268
 
1346
  msgid "UpdraftCentral Connection"
1347
  msgstr ""
1348
 
1349
+ #: src/backup.php:1006, src/class-updraftplus.php:2862
1350
  msgid "The backup was aborted by the user"
1351
  msgstr ""
1352
 
1353
+ #: src/admin.php:4506
1354
  msgid "Your settings have been saved."
1355
  msgstr ""
1356
 
1357
+ #: src/admin.php:3609
1358
  msgid "Total backup size:"
1359
  msgstr ""
1360
 
1361
+ #: src/admin.php:2966
1362
  msgid "stop"
1363
  msgstr ""
1364
 
1365
+ #: src/admin.php:2808
1366
  msgid "The backup has finished running"
1367
  msgstr ""
1368
 
1424
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1425
  msgstr ""
1426
 
1427
+ #: src/class-updraftplus.php:4217, src/restorer.php:1740
1428
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1429
  msgstr ""
1430
 
1431
+ #: src/class-updraftplus.php:4213
1432
  msgid "Please read this link for important information on this process."
1433
  msgstr ""
1434
 
1435
+ #: src/class-updraftplus.php:4213
1436
  msgid "It will be imported as a new site."
1437
  msgstr ""
1438
 
1439
+ #: src/admin.php:2599, src/templates/wp-admin/notices/horizontal-notice.php:16,
1440
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1441
  msgid "Dismiss"
1442
  msgstr ""
1445
  msgid "Please fill in the required information."
1446
  msgstr ""
1447
 
1448
+ #: src/addons/multisite.php:568
1449
  msgid "Read more..."
1450
  msgstr ""
1451
 
1452
+ #: src/addons/multisite.php:559
1453
  msgid "may include some site-wide data"
1454
  msgstr ""
1455
 
1456
+ #: src/addons/multisite.php:554
1457
  msgid "All sites"
1458
  msgstr ""
1459
 
1460
+ #: src/addons/multisite.php:550
1461
  msgid "Which site to restore"
1462
  msgstr ""
1463
 
1464
+ #: src/addons/migrator.php:599, src/addons/migrator.php:600
1465
  msgid "Error when creating new site at your chosen address:"
1466
  msgstr ""
1467
 
1468
+ #: src/addons/migrator.php:541
1469
  msgid "Required information for restoring this backup was not given (%s)"
1470
  msgstr ""
1471
 
1472
+ #: src/addons/migrator.php:493
1473
  msgid "Attribute imported content to user"
1474
  msgstr ""
1475
 
1476
+ #: src/addons/migrator.php:483, src/addons/migrator.php:485
1477
  msgid "You must use lower-case letters or numbers for the site path, only."
1478
  msgstr ""
1479
 
1480
+ #: src/addons/migrator.php:471
1481
  msgid "This feature is not compatible with %s"
1482
  msgstr ""
1483
 
1484
+ #: src/addons/migrator.php:469, src/addons/migrator.php:471
1485
  msgid "Importing a single site into a multisite install"
1486
  msgstr ""
1487
 
1488
+ #: src/addons/migrator.php:460
1489
  msgid "other content from wp-content"
1490
  msgstr ""
1491
 
1492
+ #: src/addons/migrator.php:457
1493
  msgid "WordPress core"
1494
  msgstr ""
1495
 
1496
+ #: src/addons/migrator.php:457, src/addons/migrator.php:460,
1497
+ #: src/addons/migrator.php:463
1498
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1499
  msgstr ""
1500
 
1502
  msgid "Call WordPress action:"
1503
  msgstr ""
1504
 
1505
+ #: src/admin.php:2634
1506
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1507
  msgstr ""
1508
 
1509
+ #: src/admin.php:4045
1510
  msgid "Skipping: this archive was already restored."
1511
  msgstr ""
1512
 
1538
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
1539
  msgstr ""
1540
 
1541
+ #: src/admin.php:4380
1542
  msgid "Send this backup to remote storage"
1543
  msgstr ""
1544
 
1545
+ #: src/admin.php:4378
1546
  msgid "Check out UpdraftPlus Vault."
1547
  msgstr ""
1548
 
1549
+ #: src/admin.php:4378
1550
  msgid "Not got any remote storage?"
1551
  msgstr ""
1552
 
1553
+ #: src/admin.php:4378
1554
  msgid "settings"
1555
  msgstr ""
1556
 
1557
+ #: src/admin.php:4378
1558
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1559
  msgstr ""
1560
 
1561
+ #: src/admin.php:2632
1562
  msgid "Include any files in the backup"
1563
  msgstr ""
1564
 
1565
+ #: src/admin.php:2618
1566
  msgid "Include the database in the backup"
1567
  msgstr ""
1568
 
1569
+ #: src/admin.php:2598
1570
  msgid "Continue restoration"
1571
  msgstr ""
1572
 
1573
+ #: src/admin.php:2593
1574
  msgid "You have an unfinished restoration operation, begun %s ago."
1575
  msgstr ""
1576
 
1577
+ #: src/admin.php:2592
1578
  msgid "Unfinished restoration"
1579
  msgstr ""
1580
 
1581
+ #: src/admin.php:2590
1582
  msgid "%s minutes, %s seconds"
1583
  msgstr ""
1584
 
1585
+ #: src/admin.php:2537
1586
  msgid "Backup Contents And Schedule"
1587
  msgstr ""
1588
 
1590
  msgid "Premium / Extensions"
1591
  msgstr ""
1592
 
1593
+ #: src/admin.php:2306, src/admin.php:2315
1594
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1595
  msgstr ""
1596
 
1611
  msgid "Advanced Tools"
1612
  msgstr ""
1613
 
1614
+ #: src/addons/googlecloud.php:1041
1615
  msgid "Bucket location"
1616
  msgstr ""
1617
 
1618
+ #: src/addons/googlecloud.php:1036
1619
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
1620
  msgstr ""
1621
 
1622
+ #: src/addons/googlecloud.php:1036, src/addons/googlecloud.php:1049
1623
  msgid "This setting applies only when a new bucket is being created."
1624
  msgstr ""
1625
 
1626
+ #: src/addons/googlecloud.php:1025
1627
  msgid "You must use a bucket name that is unique, for all %s users."
1628
  msgstr ""
1629
 
1630
+ #: src/addons/googlecloud.php:971
1631
  msgid "Do not confuse %s with %s - they are separate things."
1632
  msgstr ""
1633
 
1689
  msgid "Standard"
1690
  msgstr ""
1691
 
1692
+ #: src/addons/azure.php:630
1693
  msgid "container"
1694
  msgstr ""
1695
 
1696
+ #: src/addons/azure.php:630
1697
  msgid "You can enter the path of any %s virtual folder you wish to use here."
1698
  msgstr ""
1699
 
1700
+ #: src/addons/azure.php:629
1701
  msgid "optional"
1702
  msgstr ""
1703
 
1704
+ #: src/addons/azure.php:625
1705
  msgid "See Microsoft's guidelines on container naming by following this link."
1706
  msgstr ""
1707
 
1708
+ #: src/addons/azure.php:625
1709
  msgid "Enter the path of the %s you wish to use here."
1710
  msgstr ""
1711
 
1712
+ #: src/addons/azure.php:616
1713
  msgid "This is not your Azure login - see the instructions if needing more guidance."
1714
  msgstr ""
1715
 
1716
+ #: src/addons/azure.php:615, src/addons/azure.php:619,
1717
+ #: src/addons/azure.php:624, src/addons/azure.php:629
1718
  msgid "Azure"
1719
  msgstr ""
1720
 
1721
+ #: src/addons/azure.php:596
1722
  msgid "Create Azure credentials in your Azure developer console."
1723
  msgstr ""
1724
 
1725
+ #: src/addons/azure.php:560
1726
  msgid "Could not create the container"
1727
  msgstr ""
1728
 
1729
+ #: src/addons/azure.php:411
1730
  msgid "Could not access container"
1731
  msgstr ""
1732
 
1733
+ #: src/class-updraftplus.php:2879
1734
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1735
  msgstr ""
1736
 
1737
+ #: src/backup.php:1756
1738
  msgid "the options table was not found"
1739
  msgstr ""
1740
 
1741
+ #: src/backup.php:1754
1742
  msgid "no options or sitemeta table was found"
1743
  msgstr ""
1744
 
1745
+ #: src/backup.php:1754, src/backup.php:1756
1746
  msgid "The database backup appears to have failed"
1747
  msgstr ""
1748
 
1749
+ #: src/backup.php:1626
1750
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
1751
  msgstr ""
1752
 
1758
  msgid "Not installed"
1759
  msgstr ""
1760
 
1761
+ #: src/addons/googlecloud.php:1028, src/addons/s3-enhanced.php:63
1762
  msgid "Storage class"
1763
  msgstr ""
1764
 
1765
+ #: src/addons/googlecloud.php:1025
1766
  msgid "See Google's guidelines on bucket naming by following this link."
1767
  msgstr ""
1768
 
1769
+ #: src/addons/googlecloud.php:1025
1770
  msgid "Enter the name of the %s bucket you wish to use here."
1771
  msgstr ""
1772
 
1773
+ #: src/addons/googlecloud.php:1024
1774
  msgid "Bucket"
1775
  msgstr ""
1776
 
1777
+ #: src/addons/googlecloud.php:1020
1778
  msgid "Otherwise, you can leave it blank."
1779
  msgstr ""
1780
 
1781
+ #: src/addons/googlecloud.php:1020
1782
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
1783
  msgstr ""
1784
 
1785
+ #: src/addons/googlecloud.php:1020
1786
  msgid "Enter the ID of the %s project you wish to use here."
1787
  msgstr ""
1788
 
1789
+ #: src/addons/googlecloud.php:983
1790
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
1791
  msgstr ""
1792
 
1793
+ #: src/addons/googlecloud.php:894
1794
  msgid "You must enter a project ID in order to be able to create a new bucket."
1795
  msgstr ""
1796
 
1797
+ #: src/addons/googlecloud.php:1018
1798
  msgid "Project ID"
1799
  msgstr ""
1800
 
1801
+ #: src/addons/googlecloud.php:751
1802
  msgid "You must save and authenticate before you can test your settings."
1803
  msgstr ""
1804
 
1807
  msgstr ""
1808
 
1809
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
1810
+ #: src/addons/googlecloud.php:886, src/addons/googlecloud.php:933
1811
  msgid "You do not have access to this bucket."
1812
  msgstr ""
1813
 
1814
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1815
  #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
1816
+ #: src/addons/googlecloud.php:710, src/addons/googlecloud.php:886,
1817
+ #: src/addons/googlecloud.php:933, src/addons/googlecloud.php:977,
1818
+ #: src/addons/googlecloud.php:977, src/addons/googlecloud.php:1005,
1819
+ #: src/addons/googlecloud.php:1013, src/addons/googlecloud.php:1025
1820
  msgid "Google Cloud"
1821
  msgstr ""
1822
 
1823
  #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
1824
+ #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:886,
1825
+ #: src/addons/googlecloud.php:933