UpdraftPlus WordPress Backup Plugin - Version 1.15.7

Version Description

  • 06/Dec/2018 =

  • FIX: a method call on an incorrect class which caused a fatal error

Download this release

Release Info

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

Code changes from version 1.15.5 to 1.15.7

admin.php CHANGED
@@ -19,7 +19,9 @@ class UpdraftPlus_Admin {
19
 
20
  private $php_versions = array('5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3');
21
 
22
- private $wp_versions = array('3.2', '3.3', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '4.0', '4.1', '4.2', '4.3', '4.4', '4.5', '4.6', '4.7', '4.8', '4.9');
 
 
23
 
24
  /**
25
  * Constructor
@@ -5368,6 +5370,10 @@ ENDHERE;
5368
  $output .= ' <span class="updraftplus-option-label">'.sprintf(__('%s version:', 'updraftplus'), 'WordPress').'</span> ';
5369
  $output .= $this->output_select_data($this->get_wordpress_versions(), 'wp');
5370
  $output .= '</p>';
 
 
 
 
5371
  $output .= '<p class="updraftplus-option limit-to-admins">';
5372
  $output .= '<input type="checkbox" class="updraftplus_clone_admin_login_options" id="" name="updraftplus_clone_admin_login_options" value="1" checked="checked">';
5373
  $output .= '<label for="updraftplus_clone_admin_login_options" class="updraftplus_clone_admin_login_options_label">'.__('Forbid non-administrators to login to WordPress on your clone', 'updraftplus').'</label>';
19
 
20
  private $php_versions = array('5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3');
21
 
22
+ private $wp_versions = array('3.2', '3.3', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '4.0', '4.1', '4.2', '4.3', '4.4', '4.5', '4.6', '4.7', '4.8', '4.9', '5.0');
23
+
24
+ private $regions = array('London', 'New York', 'San Francisco', 'Amsterdam', 'Singapore', 'Frankfurt', 'Toronto', 'Bangalore');
25
 
26
  /**
27
  * Constructor
5370
  $output .= ' <span class="updraftplus-option-label">'.sprintf(__('%s version:', 'updraftplus'), 'WordPress').'</span> ';
5371
  $output .= $this->output_select_data($this->get_wordpress_versions(), 'wp');
5372
  $output .= '</p>';
5373
+ $output .= '<p class="updraftplus-option updraftplus-option-inline region">';
5374
+ $output .= ' <span class="updraftplus-option-label">'.__('Clone region:', 'updraftplus').'</span> ';
5375
+ $output .= $this->output_select_data($this->regions, 'region');
5376
+ $output .= '</p>';
5377
  $output .= '<p class="updraftplus-option limit-to-admins">';
5378
  $output .= '<input type="checkbox" class="updraftplus_clone_admin_login_options" id="" name="updraftplus_clone_admin_login_options" value="1" checked="checked">';
5379
  $output .= '<label for="updraftplus_clone_admin_login_options" class="updraftplus_clone_admin_login_options_label">'.__('Forbid non-administrators to login to WordPress on your clone', 'updraftplus').'</label>';
backup.php CHANGED
@@ -204,7 +204,7 @@ class UpdraftPlus_Backup {
204
  $time_mod = (int) @filemtime($full_path);
205
  $updraftplus->log($base_path.": this file has already been created (age: ".round($time_now-$time_mod, 1)." s)");
206
  if ($time_mod>100 && ($time_now-$time_mod)<30) {
207
- $updraftplus->terminate_due_to_activity($base_path, $time_now, $time_mod);
208
  }
209
  $index++;
210
  // This is compatible with filenames which indicate increments, as it is looking only for the current increment
@@ -222,7 +222,7 @@ class UpdraftPlus_Backup {
222
  $zip_name = $full_path.'.tmp';
223
  $time_mod = (int) @filemtime($zip_name);
224
  if (file_exists($zip_name) && $time_mod>100 && ($time_now-$time_mod)<30) {
225
- $updraftplus->terminate_due_to_activity($zip_name, $time_now, $time_mod);
226
  }
227
  if (file_exists($zip_name)) {
228
  $updraftplus->log("File exists ($zip_name), but was apparently not modified within the last 30 seconds, so we assume that any previous run has now terminated (time_mod=$time_mod, time_now=$time_now, diff=".($time_now-$time_mod).")");
@@ -238,7 +238,7 @@ class UpdraftPlus_Backup {
238
  $binzip_match = preg_match("/^zi([A-Za-z0-9]){6}$/", $e);
239
  $pclzip_match = preg_match("/^pclzip-[a-z0-9]+.tmp$/", $e);
240
  if ($time_now-filemtime($this->updraft_dir.'/'.$e) < 30 && ($ziparchive_match || (0 != $updraftplus->current_resumption && ($binzip_match || $pclzip_match)))) {
241
- $updraftplus->terminate_due_to_activity($this->updraft_dir.'/'.$e, $time_now, filemtime($this->updraft_dir.'/'.$e));
242
  }
243
  }
244
  @$d->close();
@@ -556,9 +556,9 @@ class UpdraftPlus_Backup {
556
 
557
  if (method_exists($wpdb, 'check_connection') && (!defined('UPDRAFTPLUS_SUPPRESS_CONNECTION_CHECKS') || !UPDRAFTPLUS_SUPPRESS_CONNECTION_CHECKS)) {
558
  if (!$wpdb->check_connection(false)) {
559
- $updraftplus->reschedule(60);
560
- $updraftplus->log("It seems the database went away; scheduling a resumption and terminating for now");
561
- $updraftplus->record_still_alive();
562
  die;
563
  }
564
  }
@@ -736,7 +736,7 @@ class UpdraftPlus_Backup {
736
  }
737
  }
738
  unset($backup_to_examine[$key]);
739
- $updraftplus->record_still_alive();
740
  } elseif (!$is_autobackup) {
741
  $database_backups_found[$key]++;
742
  }
@@ -890,7 +890,7 @@ class UpdraftPlus_Backup {
890
  } else {
891
  $this->prune_file($service, $files_to_prune, $sd[0], $sd[1], array($size));
892
  }
893
- $updraftplus->record_still_alive();
894
  }
895
  }
896
  }
@@ -932,7 +932,7 @@ class UpdraftPlus_Backup {
932
  global $updraftplus;
933
  $updraftplus->log("Retain: saving new backup history, because at least 10 seconds have passed since the last save (sets now: ".count($backup_history).")");
934
  UpdraftPlus_Backup_History::save_history($backup_history, false);
935
- $updraftplus->something_useful_happened();
936
  $last_saved_at = time();
937
  }
938
  }
@@ -1627,9 +1627,9 @@ class UpdraftPlus_Backup {
1627
  // WP 3.9 onwards - https://core.trac.wordpress.org/browser/trunk/src/wp-includes/wp-db.php?rev=27925 - check_connection() allows us to get the database connection back if it had dropped
1628
  if ('wp' == $whichdb && method_exists($this->wpdb_obj, 'check_connection') && (!defined('UPDRAFTPLUS_SUPPRESS_CONNECTION_CHECKS') || !UPDRAFTPLUS_SUPPRESS_CONNECTION_CHECKS)) {
1629
  if (!$this->wpdb_obj->check_connection(false)) {
1630
- $updraftplus->reschedule(60);
1631
  $updraftplus->log("It seems the database went away; scheduling a resumption and terminating for now");
1632
- $updraftplus->record_still_alive();
1633
  die;
1634
  }
1635
  }
@@ -1773,7 +1773,7 @@ class UpdraftPlus_Backup {
1773
  $updraftplus->log("Table $table: finishing file (${table_file_prefix}.gz - ".round(filesize($this->updraft_dir.'/'.$table_file_prefix.'.tmp.gz')/1024, 1)." KB)", 'notice', false, false);
1774
 
1775
  rename($db_temp_file, $this->updraft_dir.'/'.$table_file_prefix.'.gz');
1776
- $updraftplus->something_useful_happened();
1777
  $stitch_files[] = $table_file_prefix;
1778
  }
1779
  } else {
@@ -1795,9 +1795,9 @@ class UpdraftPlus_Backup {
1795
  if ($time_this_run > 2000) {
1796
  // Have seen this happen; not sure how, but it was apparently deterministic; if the current process had been running for a long time, then apparently all database commands silently failed.
1797
  // If we have been running that long, then the resumption may be far off; bring it closer
1798
- $updraftplus->reschedule(60);
1799
  $updraftplus->log("Have been running very long, and it seems the database went away; scheduling a resumption and terminating for now");
1800
- $updraftplus->record_still_alive();
1801
  die;
1802
  }
1803
  } else {
@@ -1810,7 +1810,7 @@ class UpdraftPlus_Backup {
1810
  $time_now = time();
1811
  $time_mod = (int) @filemtime($backup_final_file_name);
1812
  if (file_exists($backup_final_file_name) && $time_mod>100 && ($time_now-$time_mod)<30) {
1813
- $updraftplus->terminate_due_to_activity($backup_final_file_name, $time_now, $time_mod);
1814
  }
1815
  if (file_exists($backup_final_file_name)) {
1816
  $updraftplus->log("The final database file ($backup_final_file_name) exists, but was apparently not modified within the last 30 seconds (time_mod=$time_mod, time_now=$time_now, diff=".($time_now-$time_mod)."). Thus we assume that another UpdraftPlus terminated; thus we will continue.");
@@ -1848,7 +1848,7 @@ class UpdraftPlus_Backup {
1848
  }
1849
  $sind++;
1850
  // Came across a database with 7600 tables... adding them all took over 500 seconds; and so when the resumption started up, no activity was detected
1851
- if (0 == $sind % 100) $updraftplus->something_useful_happened();
1852
  }
1853
 
1854
  $this->stow("/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;\n/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;\n/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;\n");
@@ -3071,7 +3071,7 @@ class UpdraftPlus_Backup {
3071
  // $updraftplus->log("PclZip Error: ".$zip->errorInfo(true), 'warning');
3072
  // return $zip->errorCode();
3073
  // } else {
3074
- // $updraftplus->something_useful_happened();
3075
  // return true;
3076
  // }
3077
  }
@@ -3227,11 +3227,11 @@ class UpdraftPlus_Backup {
3227
 
3228
  // How long since the current run began? If it's taken long (and we're in danger of not making it at all), or if that is forseeable in future because of general slowness, then we should reduce the parameters.
3229
  if (!$something_useful_sizetest) {
3230
- $updraftplus->something_useful_happened();
3231
  } else {
3232
 
3233
  // Do this as early as possible
3234
- $updraftplus->something_useful_happened();
3235
 
3236
  $time_since_began = max(microtime(true)- $this->zipfiles_lastwritetime, 0.000001);
3237
  $normalised_time_since_began = $time_since_began*($maxzipbatch/$data_added_since_reopen);
@@ -3316,7 +3316,7 @@ class UpdraftPlus_Backup {
3316
 
3317
  if (!$updraftplus->something_useful_happened && $updraftplus->current_resumption >= 7) {
3318
 
3319
- $updraftplus->something_useful_happened();
3320
 
3321
  if ($run_times_known >= 5 && ($time_since_began > 0.8 * $max_time || $time_since_began + 7 > $max_time)) {
3322
 
@@ -3331,13 +3331,13 @@ class UpdraftPlus_Backup {
3331
  }
3332
 
3333
  } else {
3334
- $updraftplus->something_useful_happened();
3335
  }
3336
  }
3337
  $data_added_since_reopen = 0;
3338
  } else {
3339
  // ZipArchive::close() can take a very long time, which we want to know about
3340
- $updraftplus->record_still_alive();
3341
  }
3342
 
3343
  clearstatcache();
@@ -3396,7 +3396,7 @@ class UpdraftPlus_Backup {
3396
 
3397
  $this->zipfiles_lastwritetime = time();
3398
  // May not exist if the last thing we did was bump
3399
- if (file_exists($zipfile) && filesize($zipfile) > $original_size) $updraftplus->something_useful_happened();
3400
 
3401
  // Move on to next archive?
3402
  if (file_exists($zipfile) && filesize($zipfile) > $this->zip_split_every) {
@@ -3476,7 +3476,7 @@ class UpdraftPlus_Backup {
3476
  if (!rename($full_path.'.tmp', $full_path)) {
3477
  $updraftplus->log("Rename failed for $full_path.tmp");
3478
  } else {
3479
- $updraftplus->something_useful_happened();
3480
  }
3481
  }
3482
 
204
  $time_mod = (int) @filemtime($full_path);
205
  $updraftplus->log($base_path.": this file has already been created (age: ".round($time_now-$time_mod, 1)." s)");
206
  if ($time_mod>100 && ($time_now-$time_mod)<30) {
207
+ UpdraftPlus_Job_Scheduler::terminate_due_to_activity($base_path, $time_now, $time_mod);
208
  }
209
  $index++;
210
  // This is compatible with filenames which indicate increments, as it is looking only for the current increment
222
  $zip_name = $full_path.'.tmp';
223
  $time_mod = (int) @filemtime($zip_name);
224
  if (file_exists($zip_name) && $time_mod>100 && ($time_now-$time_mod)<30) {
225
+ UpdraftPlus_Job_Scheduler::terminate_due_to_activity($zip_name, $time_now, $time_mod);
226
  }
227
  if (file_exists($zip_name)) {
228
  $updraftplus->log("File exists ($zip_name), but was apparently not modified within the last 30 seconds, so we assume that any previous run has now terminated (time_mod=$time_mod, time_now=$time_now, diff=".($time_now-$time_mod).")");
238
  $binzip_match = preg_match("/^zi([A-Za-z0-9]){6}$/", $e);
239
  $pclzip_match = preg_match("/^pclzip-[a-z0-9]+.tmp$/", $e);
240
  if ($time_now-filemtime($this->updraft_dir.'/'.$e) < 30 && ($ziparchive_match || (0 != $updraftplus->current_resumption && ($binzip_match || $pclzip_match)))) {
241
+ UpdraftPlus_Job_Scheduler::terminate_due_to_activity($this->updraft_dir.'/'.$e, $time_now, filemtime($this->updraft_dir.'/'.$e));
242
  }
243
  }
244
  @$d->close();
556
 
557
  if (method_exists($wpdb, 'check_connection') && (!defined('UPDRAFTPLUS_SUPPRESS_CONNECTION_CHECKS') || !UPDRAFTPLUS_SUPPRESS_CONNECTION_CHECKS)) {
558
  if (!$wpdb->check_connection(false)) {
559
+ UpdraftPlus_Job_Scheduler::reschedule(60);
560
+ $updraftplus->log('It seems the database went away; scheduling a resumption and terminating for now');
561
+ UpdraftPlus_Job_Scheduler::record_still_alive();
562
  die;
563
  }
564
  }
736
  }
737
  }
738
  unset($backup_to_examine[$key]);
739
+ UpdraftPlus_Job_Scheduler::record_still_alive();
740
  } elseif (!$is_autobackup) {
741
  $database_backups_found[$key]++;
742
  }
890
  } else {
891
  $this->prune_file($service, $files_to_prune, $sd[0], $sd[1], array($size));
892
  }
893
+ UpdraftPlus_Job_Scheduler::record_still_alive();
894
  }
895
  }
896
  }
932
  global $updraftplus;
933
  $updraftplus->log("Retain: saving new backup history, because at least 10 seconds have passed since the last save (sets now: ".count($backup_history).")");
934
  UpdraftPlus_Backup_History::save_history($backup_history, false);
935
+ UpdraftPlus_Job_Scheduler::something_useful_happened();
936
  $last_saved_at = time();
937
  }
938
  }
1627
  // WP 3.9 onwards - https://core.trac.wordpress.org/browser/trunk/src/wp-includes/wp-db.php?rev=27925 - check_connection() allows us to get the database connection back if it had dropped
1628
  if ('wp' == $whichdb && method_exists($this->wpdb_obj, 'check_connection') && (!defined('UPDRAFTPLUS_SUPPRESS_CONNECTION_CHECKS') || !UPDRAFTPLUS_SUPPRESS_CONNECTION_CHECKS)) {
1629
  if (!$this->wpdb_obj->check_connection(false)) {
1630
+ UpdraftPlus_Job_Scheduler::reschedule(60);
1631
  $updraftplus->log("It seems the database went away; scheduling a resumption and terminating for now");
1632
+ UpdraftPlus_Job_Scheduler::record_still_alive();
1633
  die;
1634
  }
1635
  }
1773
  $updraftplus->log("Table $table: finishing file (${table_file_prefix}.gz - ".round(filesize($this->updraft_dir.'/'.$table_file_prefix.'.tmp.gz')/1024, 1)." KB)", 'notice', false, false);
1774
 
1775
  rename($db_temp_file, $this->updraft_dir.'/'.$table_file_prefix.'.gz');
1776
+ UpdraftPlus_Job_Scheduler::something_useful_happened();
1777
  $stitch_files[] = $table_file_prefix;
1778
  }
1779
  } else {
1795
  if ($time_this_run > 2000) {
1796
  // Have seen this happen; not sure how, but it was apparently deterministic; if the current process had been running for a long time, then apparently all database commands silently failed.
1797
  // If we have been running that long, then the resumption may be far off; bring it closer
1798
+ UpdraftPlus_Job_Scheduler::reschedule(60);
1799
  $updraftplus->log("Have been running very long, and it seems the database went away; scheduling a resumption and terminating for now");
1800
+ UpdraftPlus_Job_Scheduler::record_still_alive();
1801
  die;
1802
  }
1803
  } else {
1810
  $time_now = time();
1811
  $time_mod = (int) @filemtime($backup_final_file_name);
1812
  if (file_exists($backup_final_file_name) && $time_mod>100 && ($time_now-$time_mod)<30) {
1813
+ UpdraftPlus_Job_Scheduler::terminate_due_to_activity($backup_final_file_name, $time_now, $time_mod);
1814
  }
1815
  if (file_exists($backup_final_file_name)) {
1816
  $updraftplus->log("The final database file ($backup_final_file_name) exists, but was apparently not modified within the last 30 seconds (time_mod=$time_mod, time_now=$time_now, diff=".($time_now-$time_mod)."). Thus we assume that another UpdraftPlus terminated; thus we will continue.");
1848
  }
1849
  $sind++;
1850
  // Came across a database with 7600 tables... adding them all took over 500 seconds; and so when the resumption started up, no activity was detected
1851
+ if (0 == $sind % 100) UpdraftPlus_Job_Scheduler::something_useful_happened();
1852
  }
1853
 
1854
  $this->stow("/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;\n/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;\n/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;\n");
3071
  // $updraftplus->log("PclZip Error: ".$zip->errorInfo(true), 'warning');
3072
  // return $zip->errorCode();
3073
  // } else {
3074
+ // UpdraftPlus_Job_Scheduler::something_useful_happened();
3075
  // return true;
3076
  // }
3077
  }
3227
 
3228
  // How long since the current run began? If it's taken long (and we're in danger of not making it at all), or if that is forseeable in future because of general slowness, then we should reduce the parameters.
3229
  if (!$something_useful_sizetest) {
3230
+ UpdraftPlus_Job_Scheduler::something_useful_happened();
3231
  } else {
3232
 
3233
  // Do this as early as possible
3234
+ UpdraftPlus_Job_Scheduler::something_useful_happened();
3235
 
3236
  $time_since_began = max(microtime(true)- $this->zipfiles_lastwritetime, 0.000001);
3237
  $normalised_time_since_began = $time_since_began*($maxzipbatch/$data_added_since_reopen);
3316
 
3317
  if (!$updraftplus->something_useful_happened && $updraftplus->current_resumption >= 7) {
3318
 
3319
+ UpdraftPlus_Job_Scheduler::something_useful_happened();
3320
 
3321
  if ($run_times_known >= 5 && ($time_since_began > 0.8 * $max_time || $time_since_began + 7 > $max_time)) {
3322
 
3331
  }
3332
 
3333
  } else {
3334
+ UpdraftPlus_Job_Scheduler::something_useful_happened();
3335
  }
3336
  }
3337
  $data_added_since_reopen = 0;
3338
  } else {
3339
  // ZipArchive::close() can take a very long time, which we want to know about
3340
+ UpdraftPlus_Job_Scheduler::record_still_alive();
3341
  }
3342
 
3343
  clearstatcache();
3396
 
3397
  $this->zipfiles_lastwritetime = time();
3398
  // May not exist if the last thing we did was bump
3399
+ if (file_exists($zipfile) && filesize($zipfile) > $original_size) UpdraftPlus_Job_Scheduler::something_useful_happened();
3400
 
3401
  // Move on to next archive?
3402
  if (file_exists($zipfile) && filesize($zipfile) > $this->zip_split_every) {
3476
  if (!rename($full_path.'.tmp', $full_path)) {
3477
  $updraftplus->log("Rename failed for $full_path.tmp");
3478
  } else {
3479
+ UpdraftPlus_Job_Scheduler::something_useful_happened();
3480
  }
3481
  }
3482
 
class-updraftplus.php CHANGED
@@ -83,7 +83,8 @@ class UpdraftPlus {
83
  'UpdraftPlus_Encryption' => 'includes/class-updraftplus-encryption.php',
84
  'UpdraftPlus_Manipulation_Functions' => 'includes/class-manipulation-functions.php',
85
  'UpdraftPlus_Filesystem_Functions' => 'includes/class-filesystem-functions.php',
86
- 'UpdraftPlus_Storage_Methods_Interface' => 'includes/class-storage-methods-interface.php'
 
87
  );
88
 
89
  foreach ($load_classes as $class => $relative_path) {
@@ -1081,7 +1082,7 @@ class UpdraftPlus {
1081
  if ($file_path) touch($file_path);
1082
 
1083
  // What this means in effect is that at least one of the files touched during the run must reach this percentage (so lapping round from 100 is OK)
1084
- if ($percent > 0.7 * ($this->current_resumption - max($this->jobdata_get('uploaded_lastreset'), 9))) $this->something_useful_happened();
1085
 
1086
  // Log it
1087
  global $updraftplus_backup;
@@ -1641,61 +1642,6 @@ class UpdraftPlus {
1641
  @rmdir($updraft_dir.'/binziptest');
1642
  }
1643
 
1644
- /**
1645
- * This function is purely for timing - we just want to know the maximum run-time; not whether we have achieved anything during it
1646
- */
1647
- public function record_still_alive() {
1648
- // Update the record of maximum detected runtime on each run
1649
- $time_passed = $this->jobdata_get('run_times');
1650
- if (!is_array($time_passed)) $time_passed = array();
1651
-
1652
- $time_this_run = microtime(true)-$this->opened_log_time;
1653
- $time_passed[$this->current_resumption] = $time_this_run;
1654
- $this->jobdata_set('run_times', $time_passed);
1655
-
1656
- $resume_interval = $this->jobdata_get('resume_interval');
1657
- if ($time_this_run + 30 > $resume_interval) {
1658
- $new_interval = ceil($time_this_run + 30);
1659
- set_site_transient('updraft_initial_resume_interval', (int) $new_interval, 8*86400);
1660
- $this->log("The time we have been running (".round($time_this_run, 1).") is approaching the resumption interval ($resume_interval) - increasing resumption interval to $new_interval");
1661
- $this->jobdata_set('resume_interval', $new_interval);
1662
- }
1663
-
1664
- }
1665
-
1666
- public function something_useful_happened() {
1667
-
1668
- $this->record_still_alive();
1669
-
1670
- if (!$this->something_useful_happened) {
1671
- $useful_checkin = $this->jobdata_get('useful_checkin');
1672
- if (empty($useful_checkin) || $this->current_resumption > $useful_checkin) $this->jobdata_set('useful_checkin', $this->current_resumption);
1673
- }
1674
-
1675
- $this->something_useful_happened = true;
1676
-
1677
- $updraft_dir = $this->backups_dir_location();
1678
- if (file_exists($updraft_dir.'/deleteflag-'.$this->nonce.'.txt')) {
1679
- $this->log("User request for abort: backup job will be immediately halted");
1680
- @unlink($updraft_dir.'/deleteflag-'.$this->nonce.'.txt');
1681
- $this->backup_finish($this->current_resumption + 1, true, true, $this->current_resumption, true);
1682
- die;
1683
- }
1684
-
1685
- if ($this->current_resumption >= 9 && false == $this->newresumption_scheduled) {
1686
- $this->log("This is resumption ".$this->current_resumption.", but meaningful activity is still taking place; so a new one will be scheduled");
1687
- // We just use max here to make sure we get a number at all
1688
- $resume_interval = max($this->jobdata_get('resume_interval'), 75);
1689
- // Don't consult the minimum here
1690
- // if (!is_numeric($resume_interval) || $resume_interval<300) { $resume_interval = 300; }
1691
- $schedule_for = time()+$resume_interval;
1692
- $this->newresumption_scheduled = $schedule_for;
1693
- wp_schedule_single_event($schedule_for, 'updraft_backup_resume', array($this->current_resumption + 1, $this->nonce));
1694
- } else {
1695
- $this->reschedule_if_needed();
1696
- }
1697
- }
1698
-
1699
  public function option_filter_get($which) {
1700
  global $wpdb;
1701
  $row = $wpdb->get_row($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", $which));
@@ -1996,7 +1942,7 @@ class UpdraftPlus {
1996
  } else {
1997
  $increase_resumption = true;
1998
  }
1999
- $this->terminate_due_to_activity('check-in', round($time_now, 1), round($runs_started[$run] + $time_passed[$run], 1), $increase_resumption);
2000
  }
2001
  }
2002
 
@@ -2021,7 +1967,7 @@ class UpdraftPlus {
2021
  // The value of 1000 seconds here is somewhat arbitrary; but allows for the problem to occur in ~ the first 15 minutes. In practice, the problem is extremely rare; if this does not catch it, we can tweak the algorithm.
2022
  if (time() - $first_opened < 1000) {
2023
  $this->log("This backup task (".$this->nonce.") failed to load its job data (possible database server malfunction), but appears to be only recently started: scheduling a fresh resumption in order to try again, and then ending this resumption ($time_now, ".$this->backup_time.") (existing jobdata keys: ".implode(', ', array_keys($this->jobdata)).")");
2024
- $this->reschedule(120);
2025
  die;
2026
  }
2027
  }
@@ -2368,8 +2314,8 @@ class UpdraftPlus {
2368
  // This is intended for one-shot backups, where we do want a resumption if it's only for uploading
2369
  if (empty($this->newresumption_scheduled) && 0 == $resumption_no && 0 == $this->error_count_before_cloud_backup && true === $this->jobdata_get('reschedule_before_upload')) {
2370
  $this->log("Cloud backup stage reached on one-shot backup: scheduling resumption for the cloud upload");
2371
- $this->reschedule(60);
2372
- $this->record_still_alive();
2373
  }
2374
 
2375
  $this->log("Requesting upload of the files that have not yet been successfully uploaded (".count($undone_files).")");
@@ -2995,7 +2941,7 @@ class UpdraftPlus {
2995
  // If there were no errors before moving to the upload stage, on the first run, then bring the resumption back very close. Since this is only attempted on the first run, it is really only an efficiency thing for a quicker finish if there was an unexpected networking event. We don't want to do it straight away every time, as it may be that the cloud service is down - and might be up in 5 minutes time. This was added after seeing a case where resumption 0 got to run for 10 hours... and the resumption 7 that should have picked up the uploading of 1 archive that failed never occurred.
2996
  if (isset($this->error_count_before_cloud_backup) && 0 === $this->error_count_before_cloud_backup) {
2997
  if (0 == $resumption_no) {
2998
- $this->reschedule(60);
2999
  } else {
3000
  // Added 27/Feb/2016 - though the cloud service seems to be down, we still don't want to wait too long
3001
  $resume_interval = $this->jobdata_get('resume_interval');
@@ -3003,7 +2949,7 @@ class UpdraftPlus {
3003
  // 15 minutes + 2 for each resumption (a modest back-off)
3004
  $max_interval = 900 + $resumption_no * 120;
3005
  if ($resume_interval > $max_interval) {
3006
- $this->reschedule($max_interval);
3007
  }
3008
  }
3009
  }
@@ -3191,7 +3137,7 @@ class UpdraftPlus {
3191
  if (!$handle->check_connection(false)) {
3192
  if ($logit) $this->log("The database went away, and could not be reconnected to");
3193
  // Almost certainly a no-op
3194
- if ($reschedule) $this->reschedule(60);
3195
  $db_connected = false;
3196
  } else {
3197
  $db_connected = true;
@@ -3239,7 +3185,7 @@ class UpdraftPlus {
3239
 
3240
  // Really, we could do this immediately when we realise the DB has gone away. This is just for the probably-impossible case that a DB write really can still succeed. But, we must abort before calling delete_local(), as the removal of the local file can cause it to be recreated if the DB is out of sync with the fact that it really is already uploaded
3241
  if (false === $db_connected) {
3242
- $this->record_still_alive();
3243
  die;
3244
  }
3245
 
@@ -3301,87 +3247,17 @@ class UpdraftPlus {
3301
  return true;
3302
  }
3303
 
3304
- /**
3305
- * This function is not needed for backup success, according to the design, but it helps with efficient scheduling
3306
- *
3307
- * @return null
3308
- */
3309
- private function reschedule_if_needed() {
3310
- // If nothing is scheduled, then return
3311
- if (empty($this->newresumption_scheduled)) return;
3312
- $time_now = time();
3313
- $time_away = $this->newresumption_scheduled - $time_now;
3314
- // 45 is chosen because it is 15 seconds more than what is used to detect recent activity on files (file mod times). (If we use exactly the same, then it's more possible to slightly miss each other)
3315
- if ($time_away >1 && $time_away <= 45) {
3316
- $this->log('The scheduled resumption is within 45 seconds - will reschedule');
3317
- // Push 45 seconds into the future
3318
- // $this->reschedule(60);
3319
- // Increase interval generally by 45 seconds, on the assumption that our prior estimates were innaccurate (i.e. not just 45 seconds *this* time)
3320
- $this->increase_resume_and_reschedule(45);
3321
- }
3322
- }
3323
-
3324
- /**
3325
- * Reschedule the next resumption for the specified amount of time in the future
3326
- *
3327
- * @param Integer $how_far_ahead - a number of seconds
3328
- */
3329
- public function reschedule($how_far_ahead) {
3330
- // Reschedule - remove presently scheduled event
3331
- $next_resumption = $this->current_resumption + 1;
3332
- wp_clear_scheduled_hook('updraft_backup_resume', array($next_resumption, $this->nonce));
3333
- // Add new event
3334
- // This next line may be too cautious; but until 14-Aug-2014, it was 300.
3335
- // Update 20-Mar-2015 - lowered from 180 to 120
3336
- // Update 03-Aug-2018 - lowered from 120 to 100
3337
- if ($how_far_ahead < 100) $how_far_ahead = 100;
3338
- $schedule_for = time() + $how_far_ahead;
3339
- $this->log("Rescheduling resumption $next_resumption: moving to $how_far_ahead seconds from now ($schedule_for)");
3340
- wp_schedule_single_event($schedule_for, 'updraft_backup_resume', array($next_resumption, $this->nonce));
3341
- $this->newresumption_scheduled = $schedule_for;
3342
- }
3343
-
3344
- private function increase_resume_and_reschedule($howmuch = 120, $force_schedule = false) {
3345
-
3346
- $resume_interval = max(intval($this->jobdata_get('resume_interval')), (0 === $howmuch) ? 120 : 300);
3347
-
3348
- if (empty($this->newresumption_scheduled) && $force_schedule) {
3349
- $this->log("A new resumption will be scheduled to prevent the job ending");
3350
- }
3351
-
3352
- $new_resume = $resume_interval + $howmuch;
3353
- // It may be that we're increasing for the second (or more) time during a run, and that we already know that the new value will be insufficient, and can be increased
3354
- if ($this->opened_log_time > 100 && microtime(true)-$this->opened_log_time > $new_resume) {
3355
- $new_resume = ceil(microtime(true)-$this->opened_log_time)+45;
3356
- $howmuch = $new_resume-$resume_interval;
3357
- }
3358
-
3359
- // This used to be always $new_resume, until 14-Aug-2014. However, people who have very long-running processes can end up with very long times between resumptions as a result.
3360
- // Actually, let's not try this yet. I think it is safe, but think there is a more conservative solution available.
3361
- // $how_far_ahead = min($new_resume, 600);
3362
- $how_far_ahead = $new_resume;
3363
- // If it is very long-running, then that would normally be known soon.
3364
- // If the interval is already 12 minutes or more, then try the next resumption 10 minutes from now (i.e. sooner than it would have been). Thus, we are guaranteed to get at least 24 minutes of processing in the first 34.
3365
- if ($this->current_resumption <= 1 && $new_resume > 720) $how_far_ahead = 600;
3366
-
3367
- if (!empty($this->newresumption_scheduled) || $force_schedule) $this->reschedule($how_far_ahead);
3368
- $this->jobdata_set('resume_interval', $new_resume);
3369
-
3370
- $this->log("To decrease the likelihood of overlaps, increasing resumption interval to: $resume_interval + $howmuch = $new_resume");
3371
- }
3372
-
3373
  /**
3374
  * For detecting another run, and aborting if one was found
3375
  *
3376
- * @param String $file - full file path
3377
- * @return Void
3378
  */
3379
  public function check_recent_modification($file) {
3380
  if (file_exists($file)) {
3381
  $time_mod = (int) @filemtime($file);
3382
  $time_now = time();
3383
- if ($time_mod>100 && ($time_now-$time_mod)<30) {
3384
- $this->terminate_due_to_activity($file, $time_now, $time_mod);
3385
  }
3386
  }
3387
  }
@@ -3561,16 +3437,6 @@ class UpdraftPlus {
3561
  UpdraftPlus_Backup_History::save_backup(apply_filters('updraftplus_backup_timestamp', $this->backup_time), $backup_array);
3562
  }
3563
 
3564
- public function terminate_due_to_activity($file, $time_now, $time_mod, $increase_resumption = true) {
3565
- // We check-in, to avoid 'no check in last time!' detectors firing
3566
- $this->record_still_alive();
3567
- $file_size = file_exists($file) ? round(filesize($file)/1024, 1). 'KB' : 'n/a';
3568
- $this->log("Terminate: ".basename($file)." exists with activity within the last 30 seconds (time_mod=$time_mod, time_now=$time_now, diff=".(floor($time_now-$time_mod)).", size=$file_size). This likely means that another UpdraftPlus run is at work; so we will exit.");
3569
- $increase_by = ($increase_resumption) ? 120 : 0;
3570
- $this->increase_resume_and_reschedule($increase_by, true);
3571
- if (!defined('UPDRAFTPLUS_ALLOW_RECENT_ACTIVITY') || !UPDRAFTPLUS_ALLOW_RECENT_ACTIVITY) die;
3572
- }
3573
-
3574
  /**
3575
  * If files + db are on different schedules but are scheduled for the same time,
3576
  * then combine them $event = (object) array('hook' => $hook, 'timestamp' => $timestamp, 'schedule' => $recurrence, 'args' => $args, 'interval' => $schedules[$recurrence]['interval']);
@@ -3767,7 +3633,7 @@ class UpdraftPlus {
3767
  @set_time_limit(900);
3768
 
3769
  if (!file_exists($fullpath) || filesize($fullpath) < 1) {
3770
- echo __('File not found', 'updraftplus');
3771
  return;
3772
  }
3773
 
83
  'UpdraftPlus_Encryption' => 'includes/class-updraftplus-encryption.php',
84
  'UpdraftPlus_Manipulation_Functions' => 'includes/class-manipulation-functions.php',
85
  'UpdraftPlus_Filesystem_Functions' => 'includes/class-filesystem-functions.php',
86
+ 'UpdraftPlus_Storage_Methods_Interface' => 'includes/class-storage-methods-interface.php',
87
+ 'UpdraftPlus_Job_Scheduler' => 'includes/class-job-scheduler.php'
88
  );
89
 
90
  foreach ($load_classes as $class => $relative_path) {
1082
  if ($file_path) touch($file_path);
1083
 
1084
  // What this means in effect is that at least one of the files touched during the run must reach this percentage (so lapping round from 100 is OK)
1085
+ if ($percent > 0.7 * ($this->current_resumption - max($this->jobdata_get('uploaded_lastreset'), 9))) UpdraftPlus_Job_Scheduler::something_useful_happened();
1086
 
1087
  // Log it
1088
  global $updraftplus_backup;
1642
  @rmdir($updraft_dir.'/binziptest');
1643
  }
1644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1645
  public function option_filter_get($which) {
1646
  global $wpdb;
1647
  $row = $wpdb->get_row($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", $which));
1942
  } else {
1943
  $increase_resumption = true;
1944
  }
1945
+ UpdraftPlus_Job_Scheduler::terminate_due_to_activity('check-in', round($time_now, 1), round($runs_started[$run] + $time_passed[$run], 1), $increase_resumption);
1946
  }
1947
  }
1948
 
1967
  // The value of 1000 seconds here is somewhat arbitrary; but allows for the problem to occur in ~ the first 15 minutes. In practice, the problem is extremely rare; if this does not catch it, we can tweak the algorithm.
1968
  if (time() - $first_opened < 1000) {
1969
  $this->log("This backup task (".$this->nonce.") failed to load its job data (possible database server malfunction), but appears to be only recently started: scheduling a fresh resumption in order to try again, and then ending this resumption ($time_now, ".$this->backup_time.") (existing jobdata keys: ".implode(', ', array_keys($this->jobdata)).")");
1970
+ UpdraftPlus_Job_Scheduler::reschedule(120);
1971
  die;
1972
  }
1973
  }
2314
  // This is intended for one-shot backups, where we do want a resumption if it's only for uploading
2315
  if (empty($this->newresumption_scheduled) && 0 == $resumption_no && 0 == $this->error_count_before_cloud_backup && true === $this->jobdata_get('reschedule_before_upload')) {
2316
  $this->log("Cloud backup stage reached on one-shot backup: scheduling resumption for the cloud upload");
2317
+ UpdraftPlus_Job_Scheduler::reschedule(60);
2318
+ UpdraftPlus_Job_Scheduler::record_still_alive();
2319
  }
2320
 
2321
  $this->log("Requesting upload of the files that have not yet been successfully uploaded (".count($undone_files).")");
2941
  // If there were no errors before moving to the upload stage, on the first run, then bring the resumption back very close. Since this is only attempted on the first run, it is really only an efficiency thing for a quicker finish if there was an unexpected networking event. We don't want to do it straight away every time, as it may be that the cloud service is down - and might be up in 5 minutes time. This was added after seeing a case where resumption 0 got to run for 10 hours... and the resumption 7 that should have picked up the uploading of 1 archive that failed never occurred.
2942
  if (isset($this->error_count_before_cloud_backup) && 0 === $this->error_count_before_cloud_backup) {
2943
  if (0 == $resumption_no) {
2944
+ UpdraftPlus_Job_Scheduler::reschedule(60);
2945
  } else {
2946
  // Added 27/Feb/2016 - though the cloud service seems to be down, we still don't want to wait too long
2947
  $resume_interval = $this->jobdata_get('resume_interval');
2949
  // 15 minutes + 2 for each resumption (a modest back-off)
2950
  $max_interval = 900 + $resumption_no * 120;
2951
  if ($resume_interval > $max_interval) {
2952
+ UpdraftPlus_Job_Scheduler::reschedule($max_interval);
2953
  }
2954
  }
2955
  }
3137
  if (!$handle->check_connection(false)) {
3138
  if ($logit) $this->log("The database went away, and could not be reconnected to");
3139
  // Almost certainly a no-op
3140
+ if ($reschedule) UpdraftPlus_Job_Scheduler::reschedule(60);
3141
  $db_connected = false;
3142
  } else {
3143
  $db_connected = true;
3185
 
3186
  // Really, we could do this immediately when we realise the DB has gone away. This is just for the probably-impossible case that a DB write really can still succeed. But, we must abort before calling delete_local(), as the removal of the local file can cause it to be recreated if the DB is out of sync with the fact that it really is already uploaded
3187
  if (false === $db_connected) {
3188
+ UpdraftPlus_Job_Scheduler::record_still_alive();
3189
  die;
3190
  }
3191
 
3247
  return true;
3248
  }
3249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3250
  /**
3251
  * For detecting another run, and aborting if one was found
3252
  *
3253
+ * @param String $file - full file path of the file to check
 
3254
  */
3255
  public function check_recent_modification($file) {
3256
  if (file_exists($file)) {
3257
  $time_mod = (int) @filemtime($file);
3258
  $time_now = time();
3259
+ if ($time_mod > 100 && ($time_now - $time_mod) < 30) {
3260
+ UpdraftPlus_Job_Scheduler::terminate_due_to_activity($file, $time_now, $time_mod);
3261
  }
3262
  }
3263
  }
3437
  UpdraftPlus_Backup_History::save_backup(apply_filters('updraftplus_backup_timestamp', $this->backup_time), $backup_array);
3438
  }
3439
 
 
 
 
 
 
 
 
 
 
 
3440
  /**
3441
  * If files + db are on different schedules but are scheduled for the same time,
3442
  * then combine them $event = (object) array('hook' => $hook, 'timestamp' => $timestamp, 'schedule' => $recurrence, 'args' => $args, 'interval' => $schedules[$recurrence]['interval']);
3633
  @set_time_limit(900);
3634
 
3635
  if (!file_exists($fullpath) || filesize($fullpath) < 1) {
3636
+ _e('File not found', 'updraftplus');
3637
  return;
3638
  }
3639
 
css/updraftplus-admin.css CHANGED
@@ -247,13 +247,13 @@ span.tokens-number {
247
 
248
  .updraft_migrate_widget_temporary_clone_stage0_box {
249
  margin-right: 20px;
250
- height: 100%;
251
  width: 100%;
252
  -ms-flex-preferred-size: 100%;
253
  flex-basis: 100%;
254
  }
255
 
256
- .updraft_migrate_widget_temporary_clone_stage0_box iframe {
 
257
  float: none;
258
  }
259
 
@@ -271,7 +271,8 @@ span.tokens-number {
271
  flex-basis: 45%;
272
  }
273
 
274
- .updraft_migrate_widget_temporary_clone_stage0_box iframe {
 
275
  float: right;
276
  }
277
 
247
 
248
  .updraft_migrate_widget_temporary_clone_stage0_box {
249
  margin-right: 20px;
 
250
  width: 100%;
251
  -ms-flex-preferred-size: 100%;
252
  flex-basis: 100%;
253
  }
254
 
255
+ .updraft_migrate_widget_temporary_clone_stage0_box iframe,
256
+ .updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {
257
  float: none;
258
  }
259
 
271
  flex-basis: 45%;
272
  }
273
 
274
+ .updraft_migrate_widget_temporary_clone_stage0_box iframe,
275
+ .updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {
276
  float: right;
277
  }
278
 
css/updraftplus-admin.min.css CHANGED
@@ -1,2 +1,2 @@
1
- @keyframes udp_blink{from{opacity:1;transform:scale(1)}to{opacity:.4;transform:scale(0.85)}}.max-width-600{max-width:600px}.width-900{max-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}.udpdraft__lifted{box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#updraft-wrap a .dashicons{text-decoration:none}.updraft-field-description,table.form-table td p.updraft-field-description{font-size:90%;line-height:1.2;font-style:italic;margin-bottom:5px}label.updraft_checkbox{display:block;margin-bottom:4px;margin-left:26px}label.updraft_checkbox>input[type=checkbox]{margin-left:-25px}div[id*="updraft_include_"]{margin-bottom:9px}.settings_page_updraftplus input[type="file"]{border:0}.settings_page_updraftplus .wipe_settings{padding-bottom:10px}.settings_page_updraftplus input[type="text"]{font-size:14px}.settings_page_updraftplus select{border-radius:4px;max-width:100%}input.updraft_input--wide,textarea.updraft_input--wide{max-width:442px;width:100%}#updraft-wrap .button-large{font-size:1.3em}.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}p.updraftplus-option{margin-top:0;margin-bottom:5px}p.updraftplus-option-inline{display:inline-block;padding-right:20px}span.updraftplus-option-label{display:block}#updraft-navtab-migrate-content .postbox{padding:18px}.updraftclone-main-row{display:-ms-flexbox;display:flex}.updraftclone-tokens{background:#f5f5f5;padding:20px;border-radius:10px;margin-right:20px;max-width:300px}.updraftclone-tokens p{margin:0}.updraftclone_action_box{background:#f5f5f5;padding:20px;border-radius:10px;-ms-flex:1;flex:1}.updraftclone_action_box p:first-child{margin-top:0}.updraftclone_action_box p:last-child{margin-bottom:0}span.tokens-number{font-size:46px;display:block}.button.updraft_migrate_widget_temporary_clone_show_stage0{display:none;position:absolute;right:0;top:0;height:100%;border-left:1px solid #CCC;padding-left:10px;padding-right:10px}.updraft_migrate_widget_temporary_clone_stage0_container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.updraft_migrate_widget_temporary_clone_stage0_box{margin-right:20px;height:100%;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.updraft_migrate_widget_temporary_clone_stage0_box iframe{float:none}@media(min-width:1024px){.updraft_migrate_widget_temporary_clone_stage0_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_migrate_widget_temporary_clone_stage0_box{-ms-flex-preferred-size:45%;flex-basis:45%}.updraft_migrate_widget_temporary_clone_stage0_box iframe{float:right}}.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons{text-decoration:none;font-size:20px;line-height:inherit}.opened .button.updraft_migrate_widget_temporary_clone_show_stage0{display:inline-block}.opened .updraft_migrate_widget_temporary_clone_stage0{background:#f5f5f5;padding:20px;border-radius:8px;margin-bottom:21px}.clone-list{clear:both;width:100%;margin-top:40px}.clone-list table{width:100%;text-align:left}.clone-list table tr th{background:#e4e4e4}.clone-list table tr td{background:#f5f5f5;word-break:break-word}.clone-list table tr:nth-child(odd) td{background:#fafafa}.clone-list table td,.clone-list table th{padding:6px}.updraftplus-clone .updraft_row{padding-left:0;padding-right:0}button#updraft_migrate_createclone+.updraftplus_spinner{margin-top:13px}.button.button-hero.updraftclone_show_step_1{white-space:normal;height:auto;line-height:14px;padding-top:10px;padding-bottom:10px}.button.button-hero.updraftclone_show_step_1 span.dashicons{height:auto}.updraftplus_clone_status{color:red}a.updraft_migrate_add_site--trigger span.dashicons{text-decoration:none}.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}#updraft_migrate_tab_main{padding:8px}.updraft_migrate_widget_module_content{background:#FFF;border-radius:0;position:relative}body.js #updraft_migrate .updraft_migrate_widget_module_content{display:none}.updraft_migrate_widget_module_content>h3,div[class*="updraft_migrate_widget_temporary_clone_stage"]>h3{margin-top:0}.updraft_migrate_widget_module_content header{position:relative;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-grid-column-align:center;justify-items:center;margin-top:-18px;margin-left:-18px;margin-right:-18px;margin-bottom:15px;border-bottom:1px solid #CCC}.updraft_migrate_widget_module_content header h3,.updraft_migrate_widget_module_content header button.button.close{padding:10px;line-height:20px;height:auto;margin:0}.updraft_migrate_widget_module_content button.button.close{text-decoration:none;padding-left:5px;border-right:1px solid #CCC}.updraft_migrate_widget_module_content button.button.close .dashicons{margin-top:1px}.updraft_migrate_widget_module_content header h3{margin:0}.updraft_migrate_intro button.button.button-primary.button-hero{max-width:235px;word-wrap:normal;white-space:normal;line-height:1;height:auto;padding-top:13px;padding-bottom:13px;text-align:left;position:relative;margin-right:10px;margin-bottom:10px}.updraft_migrate_intro button.button.button-primary.button-hero .dashicons{position:absolute;left:10px;top:calc(50% - 8px)}#updraft_migrate .ui-widget-content a{color:#1c94c4}#updraft-wrap .ui-accordion .ui-accordion-header{background:#f6f6f6;margin:0;border-radius:0;padding-left:.5em;padding-right:.7em}#updraft-wrap .ui-widget{font-family:inherit}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w{background-position:-96px 0}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s{background-position:-64px 0}#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon{left:auto;right:5px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px rgba(91,157,217,0.22),0 0 2px 1px rgba(30,140,190,0.3);background:#FFF}#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons{color:#0572aa;opacity:1}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active{background:#f6f6f6;border-bottom:2px solid #0572aa;box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3)}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus{box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child){border-top:0}#updraft-wrap .ui-accordion .ui-accordion-header .dashicons{opacity:.4;margin-right:10px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:1}.updraft_next_scheduled_backups_wrapper{display:-ms-flexbox;display:flex;background:#FFF;-ms-grid-column-align:center;justify-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_next_scheduled_backups_wrapper>div{width:50%;background:#FFF;height:auto;padding:33px;box-sizing:border-box}.updraft_backup_btn_wrapper{text-align:center;border-left:1px solid #f1f1f1;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}#updraft-delete-waitwarning span.spinner{visibility:visible;float:none;margin:0;margin-right:10px}button#updraft-backupnow-button .spinner,button#updraft-backupnow-button .dashicons-yes{display:none}button#updraft-backupnow-button.loading .spinner{display:inline-block;visibility:visible;margin-top:13px;margin-right:0}button#updraft-backupnow-button.loading{background-color:#efefef;border-color:#CCC;text-shadow:0 -1px 1px #bbc3c7,1px 0 1px #bbc3c7,0 1px 1px #bbc3c7,-1px 0 1px #bbc3c7;box-shadow:none}button#updraft-backupnow-button.finished .dashicons-yes{display:inline-block;visibility:visible;font-size:42px;margin-right:0;margin-top:2px}.updraft_next_scheduled_entity{width:50%;display:inline-block;float:left}.updraft_next_scheduled_entity .dashicons{color:#CCC;font-size:20px}.updraft_next_scheduled_entity strong{font-size:20px}.updraft_next_scheduled_heading{margin-bottom:10px}.updraft_next_scheduled_date_time{color:#46a84b}.updraft_time_now_wrapper{margin-top:68px;width:100%}.updraft_time_now_label,.updraft_time_now{display:inline-block;padding:7px}.updraft_time_now_label{background:#b7b7b7;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#FFF;margin-right:0;text-shadow:0 1px 2px rgba(0,0,0,0.4)}.updraft_time_now{background:#f1f1f1;border-top-right-radius:4px;border-bottom-right-radius:4px;margin-left:-3px}#updraft_lastlogmessagerow{margin:6px 0}#updraft_lastlogmessagerow{clear:both;padding:.25px 0}#updraft_lastlogmessagerow .updraft-log-link{float:right;margin-top:-2.5em;margin-right:2px}#updraft_lastlogmessagerow>div{clear:both;background:#FFF;padding:18px}#updraft_activejobs_table{overflow:hidden;width:100%;background:#fafafa;padding:0}.updraft_requeststart{padding:15px 33px;text-align:center}.updraft_requeststart .spinner{visibility:visible;float:none;vertical-align:middle;margin-top:-2px}a.updraft_jobinfo_delete.disabled{opacity:.4;color:inherit;text-decoration:none}.updraft_row{clear:both;transition:.3s all;padding:15px 33px}.updraft_row.deleting{opacity:.4}.updraft_existing_backups_count{padding:2px 8px;font-size:12px;background:#ca4a1e;color:#FFF;font-weight:bold;border-radius:10px}.form-table .existing-backups-table input[type="checkbox"]{border-radius:0}.form-table .existing-backups-table .check-column{width:40px;padding:0;padding-top:8px}.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,#updraft-delete-waitwarning>.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%}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label>*{vertical-align:middle}.backup_date_label .dashicons{font-size:18px}.backup_date_label .clear-right{clear:right}.existing-backups-table .backup_date_label>div{font-weight:bold}.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_exclude_container,.updraft_include_container{margin-left:24px;margin-top:5px;margin-bottom:10px;padding:15px;border:1px solid #DDD}label.updraft-exclude-label{font-weight:500;margin-bottom:5px;display:block}.updraft_add_exclude_item,#updraft_include_more_paths_another{display:inline-block;margin-top:10px}input.updraft_exclude_entity_field,.form-table td input.updraft_exclude_entity_field,.updraftplus-morefiles-row input[type=text]{width:calc(100% - 70px);max-width:400px}@media screen and (max-width:782px){.form-table td input.updraft_exclude_entity_field,.form-table td .updraftplus-morefiles-row input[type=text]{display:inline-block}}.updraft_exclude_entity_delete.dashicons,.updraft_exclude_entity_edit.dashicons,.updraft_exclude_entity_update.dashicons,.updraftplus-morefiles-row a.dashicons{margin-top:2px;font-size:20px;box-shadow:none;line-height:1;padding:3px;margin-right:4px}.updraft_exclude_entity_delete,.updraft_exclude_entity_delete:hover,.updraftplus-morefiles-row-delete{color:#ff6347}.updraft_exclude_entity_update.dashicons,.updraft_exclude_entity_update.dashicons:hover{color:#008000;font-weight:bold;font-size:22px;margin-left:4px}.updraft_exclude_entity_edit{margin-left:4px}.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete{display:none}.updraft-exclude-panel-heading{margin-bottom:8px}.updraft-exclude-panel-heading h3{margin:.5em 0 .5em 0}.updraft-exclude-submit.button-primary{margin-top:5px}.updraft_exclude_actions_list{font-weight:bold}.updraft-exclude-link{cursor:pointer}#updraft_include_more_options{padding-left:25px}#updraft_report_cell .updraft_reportbox,.updraft_small_box{padding:12px;margin:8px 0;border:1px solid #CCC;position:relative}#updraft_report_cell button.updraft_reportbox_delete,.updraft_box_delete_button,.updraft_small_box .updraft_box_delete_button{padding:4px;padding-top:6px;border:0;background:transparent;position:absolute;top:4px;right:4px;cursor:pointer}#updraft_report_cell button.updraft_reportbox_delete:hover{color:#de3c3c}a.updraft_report_another .dashicons{text-decoration:none;margin-top:2px}.updraft_report_dbbackup.updraft_report_disabled{color:#CCC}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_email{display:block;width:calc(100% - 50px);margin-bottom:9px}#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,#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td{background-color:#efefef}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td{background-color:#e8e8e8}.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,.onedrive_folder_error{color:red}.updraft_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}.updraft_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}.updraft_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}.updraft_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_jstree_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}.updraft_jstree_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_exclude_files_folders_jstree{max-height:200px;overflow-y:scroll}.updraft_jstree{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;width:100%;border:1px solid #CCC;background:#fafafa;margin-bottom:5px;margin-top:4px;box-shadow:0 5px 8px rgba(0,0,0,0.1)}div#updraft_more_files_container::before{content:' ';width:11px;height:11px;display:block;background:#fafafa;position:absolute;top:0;left:20px;border-top:1px solid #CCC;border-left:1px solid #CCC;transform:translatey(-7px) rotate(45deg)}input.updraft_more_path_editing{border-color:#0285ba}input.updraft_more_path_editing ~ a.dashicons{display:none}#updraft_jstree_buttons{padding:10px;background:#e6e6e6}#updraft_jstree_container{height:300px;width:100%;overflow:auto}#updraft_more_files_container button{line-height:20px}#updraft_parent_directory{margin:10px 10px 4px 10px;padding-left:3px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete,.updraftplus-morefiles-row-edit{cursor:pointer}#updraft-wrap .form-table th{width:230px}#updraft-wrap .form-table .existing-backups-table th{width:auto}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{display:inline-block}.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 input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.button.button-remove{color:white;background-color:#de3c3c;border-color:#c00000;box-shadow:0 1px 0 #c10100}.button.button-remove:hover,.button.button-remove:focus{border-color:#C00;color:#FFF;background:#C00}body.admin-color-midnight .button.button-remove{color:#de3c3c;background-color:#f7f7f7;border-color:#CCC;box-shadow:0 1px 0 #CCC}body.admin-color-midnight .button.button-remove:hover,body.admin-color-midnight .button.button-remove:focus{border-color:#ba281f}body.admin-color-midnight .button.button-remove:focus{box-shadow:inherit;box-shadow:0 0 3px rgba(0,115,170,0.8)}.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:1px;background:#ececec;border:solid 1px #CCC;margin:4px 0}.updraft_premium section{margin-bottom:20px}.updraft_premium_cta{background:#FFF;margin-top:30px;padding:0;border-left:4px solid #db6a03}.updraft_premium_cta a{font-weight:normal}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase}.updraft_premium_cta__top{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:18px 30px}.updraft_premium_cta__bottom{background:#f9f9f9;padding:5px 30px}.updraft_premium_cta__summary{margin-right:60px}.updraft_premium_cta h2{font-size:28px;font-weight:200;line-height:1;margin:0;margin-bottom:5px;letter-spacing:.05rem;color:#db6a03}.updraft_premium_cta ul li::after{color:#CCC}@media only screen and (max-width:768px){.updraft_premium_cta__top{-ms-flex-direction:column;flex-direction:column;text-align:center;-ms-flex-align:center;align-items:center}.updraft_premium_cta__summary{margin-right:0;margin-bottom:30px}}.udp-box{background:#FFF;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,0.1);text-align:center}.udp-box h3{margin:0}.udp-box__heading{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;background:0;box-shadow:none}.updraft-more-plugins{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;flex-wrap:wrap}.updraft-more-plugins img{max-width:200px;width:100%;display:inline-block}.updraft-more-plugins .udp-box{box-sizing:border-box;width:24%}.updraft-more-plugins .udp-box p:last-child{margin-bottom:0;padding-bottom:0}.updraft_premium_description_list{text-align:left;margin:0;font-size:12px}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-child::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraftplus_com_login_status,.updraftplus_com_key_status{display:none;border-left-color:#dc3232 !important;background:#FFF;border-left:4px solid #FFF;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraft_feat_table{border:0;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_th,.updraft_feat_table td{border:1px solid #f1f1f1;border-collapse:collapse;font-size:120%;background-color:white;text-align:center;padding:15px}.updraft_feat_table td{border-bottom-width:4px}.updraft_feat_table td:first-child{border-left:0}.updraft_feat_table td:last-child{border-right:0}.updraft_feat_table tr:last-child td{border-bottom:0}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){background-color:rgba(241,241,241,0.38);width:190px}.updraft_feat_table__header td img{display:block;margin:0 auto}.updraft_feat_table__header td{text-align:center}.updraft_feat_table .installed{font-size:14px}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.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}.ud_downloadstatus__close{border:0;background:transparent;width:auto;font-size:20px;padding:0;cursor:pointer}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#0572aa;height:8px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}div[class^="updraftplus_downloader_container_"]{padding:10px}tr.updraftplusmethod h3{margin:0}tr.updraftplusmethod img{max-width:100%}#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;text-decoration:none;display:inline-block}#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}.blockUI.blockOverlay.ui-widget-overlay{background:#000}.updraft_success_popup{text-align:center;padding-bottom:30px}.updraft_success_popup>.dashicons{font-size:100px;width:100px;height:100px;line-height:100px;padding:0;border-radius:50%;margin-top:30px;display:block;margin-left:auto;margin-right:auto;background:#e2e6e5}.updraft_success_popup>.dashicons.dashicons-yes{text-indent:-5px}.updraft_success_popup.success>.dashicons{color:green}.updraft_success_popup.warning>.dashicons{color:#888}.updraft_success_popup--message{padding:20px}.button.updraft-close-overlay .dashicons{text-decoration:none;font-size:20px;margin-left:-5px;padding:0}.updraft_saving_popup img{animation-name:udp_blink;animation-duration:610ms;animation-iteration-count:infinite;animation-direction:alternate;animation-timing-function:ease-out}.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}.updraft_all-files{color:blue}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.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_activejobsrow th{max-width:112px;margin:0;padding:13px 0 0 0}#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}.download-backups .ud-whitespace-warning,.download-backups .ud-bom-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{margin:16px 0}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:100%}.ud_downloadstatus{padding:10px 0}#ud_massactions,#updraft-delete-waitwarning{padding:14px;background:#f1f1f1;position:absolute;left:0;top:100%}#ud_massactions>*,#updraft-delete-waitwarning>*{vertical-align:middle}#ud_massactions .updraftplus-remove{display:inline-block;margin-right:0}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative}small.ud_massactions-tip{display:inline-block;opacity:.5;font-style:italic;margin-left:20px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:35px;position:relative}#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;max-width:140px}.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{width:100%;text-align:center;padding:33px}.job-id{margin-top:0;margin-bottom:8px}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#1d8ec2;transition:width .3s}.curstage{z-index:1;border-radius:2px;margin-top:8px;width:100%;height:26px;line-height:26px;position:relative;text-align:center;font-style:italic;color:#FFF;background-color:#b7b7b7;text-shadow:0 1px 2px rgba(0,0,0,0.3)}.curstage-info{display:inline-block;z-index:2}.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}.updraft_existing_backups_wrapper{margin-top:20px;border-top:1px solid #DDD}.updraft-no-backups-msg{text-align:center}.tr-bottom-4{margin-bottom:4px}.existing-backups-table th{padding:8px 10px}.form-table .backup-date{width:172px}.form-table .backup-data{width:426px}.form-table .updraft_backup_actions{width:272px}.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}.updraftplus-upload{margin-right:6px;float:left;clear:none}.before-restore-button{padding:1px;margin:0}.before-restore-button div{float:none;display:inline-block}.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_delete_old_dirs_pagediv{padding-bottom:10px}.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:first-child{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}.updraftcentral_cloud_connect{border-radius:4px;border:1px solid #000;padding:0 20px;margin-top:30px;background-color:#FFF}.updraftcentral_cloud_error{border:1px solid #000;padding:3px 10px;border-left:3px solid #F00;background-color:#FFF;margin-bottom:10px}.updraftcentral_cloud_info{border:1px solid #000;padding:3px 10px;border-left:3px solid #ef8f31;background-color:#FFF;margin-bottom:10px}.updraftplus_spinner.spinner{padding-left:25px;float:none}.updraftplus_spinner.spinner.visible{visibility:visible}.updraftcentral_cloud_notices .updraftplus_spinner{margin-top:-5px}.updraftcentral-subheading{font-size:14px;margin-top:-10px;margin-bottom:20px}#updraftcentral_cloud_form input#email,#updraftcentral_cloud_form input#password{min-width:250px}.updraftcentral-data-consent{font-size:13px;margin-bottom:10px}.updraftcentral_cloud_wizard_image{float:left;min-width:100px;margin-right:25px}.updraftcentral_cloud_wizard{float:left}.updraftcentral_cloud_clear{clear:both}.updraftplus-settings-footer{margin-top:30px}.updraftplus-top-menu{padding:.5em}#updraft_inpage_backup #updraft_activejobs_table{background:transparent}#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link{float:none}#updraft_inpage_backup #updraft_activejobsrow .updraft_row{-ms-flex-direction:column;flex-direction:column;padding-left:20px;padding-right:20px}#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container{width:100%}#updraft_inpage_backup #updraft_activejobs_table{overflow:inherit}#updraft_inpage_backup span#updraft_lastlogcontainer{padding:18px;background:#fafafa;display:block;font-size:90%;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup div#updraft_activejobsrow{background:#fafafa;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup #updraft_lastlogmessagerow>div{background:transparent;padding:0}#updraft_inpage_backup .last-message>strong{display:block;margin-top:13px}@media only screen and (min-width:1024px){#updraft_activejobsrow .updraft_row{display:-ms-flexbox;display:flex;-ms-flex-align:baseline;align-items:baseline}#updraft_activejobsrow .updraft_row .updraft_col{-ms-flex:auto;flex:auto}#updraft_activejobsrow .updraft_progress_container{width:calc(100% - 230px)}}@media only screen and (min-width:782px){.settings_page_updraftplus input[type=text],.settings_page_updraftplus input[type=password],.settings_page_updraftplus input[type=number]{line-height:1.42;height:27px;padding:2px 6px;color:#555}.settings_page_updraftplus input[type="number"]{height:31px}#ud_massactions.active,#updraft-delete-waitwarning.active{position:fixed;bottom:0;left:160px;right:0;top:auto;background:#FFF;z-index:3;box-shadow:0 0 10px rgba(0,0,0,0.2)}body.folded #ud_massactions.active,body.folded #updraft-delete-waitwarning.active{left:36px}.updraft-after-form-table{margin-left:250px}}@media only screen and (min-width:782px) and (max-width:960px){body.auto-fold #ud_massactions.active,body.auto-fold #updraft-delete-waitwarning.active{left:36px}}@media only screen and (max-width:782px){#updraft-wrap{margin-right:0}#updraft-wrap .form-table td{padding-right:0}label.updraft_checkbox{margin-bottom:8px;margin-top:8px;margin-left:36px}.updraft_retain_rules{position:relative;margin-right:0;border:1px solid #CCC;padding:5px;margin-bottom:-1px}.updraft_retain_rules_delete{position:absolute;right:0;top:5px}a[id*=updraft_retain_]{display:block;padding:15px 15px 15px 0}label.updraft_checkbox>input[type=checkbox]{margin-left:-33px}#updraft-backupnow-button{margin:0;display:block;width:100%}.updraft_next_scheduled_backups_wrapper>.updraft_backup_btn_wrapper{padding-top:0}#ud_massactions,#updraft-delete-waitwarning{width:100%;box-sizing:border-box;text-align:center}#ud_massactions.active{position:fixed;top:auto;bottom:0;width:100%;box-sizing:border-box;text-align:center;box-shadow:0 -3px 15px rgba(0,0,0,0.08);background:#FFF;z-index:3}#ud_massactions strong{display:block;margin-bottom:5px}small.ud_massactions-tip{display:block}.existing-backups-table .backup_date_label>div{font-weight:normal}.existing-backups-table .backup_date_label .clear-right{display:inline-block}table.widefat.existing-backups-table{border:0;box-shadow:none;background:transparent}.existing-backups-table thead{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;padding:0;margin:0}.existing-backups-table tr{display:block;margin-bottom:.625em;padding-bottom:16.625px;width:100%;padding:0;margin:0;margin-bottom:10px;background:#FFF;box-shadow:0 2px 3px rgba(0,0,0,0.1)}.existing-backups-table td{border-bottom:1px solid #DDD;display:block;font-size:.9em;text-align:left;width:100%;padding:10px;margin:0}.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before{content:attr(data-label);font-weight:bold;display:block;position:relative;left:auto;padding-bottom:10px;width:auto;text-align:left}.existing-backups-table td:last-child{border-bottom:0}.form-table td.updraft_existingbackup_date{width:inherit;max-width:100%}.existing-backups-table td.before-restore-button{min-height:36px}.updraft_next_scheduled_backups_wrapper{-ms-flex-direction:column;flex-direction:column}.updraft_next_scheduled_backups_wrapper>div{width:100%}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row{position:relative}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#FFF;border-left:4px solid #0572aa}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select){margin-left:50px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select{width:50px !important;position:absolute;left:0;top:0;box-sizing:border-box;height:100%;z-index:1;border:0;border-right:1px solid rgba(0,0,0,0.05)}#updraft-navtab-backups-content .updraft_existing_backups input[type="checkbox"]{height:25px}.updraft_migrate_intro button.button.button-primary.button-hero{display:block;margin-right:0;width:100%;max-width:100%}.updraftclone-main-row{-ms-flex-direction:column;flex-direction:column}.updraftclone-main-row>div{width:auto;max-width:none;margin-right:0;margin-bottom:10px}.form-table th{padding-bottom:10px}}@media screen and (max-width:600px){.updraft_next_scheduled_entity{float:none;width:100%;margin-bottom:2em}.updraft_time_now_wrapper{margin-top:0}#updraft_lastlogmessagerow h3{margin-bottom:5px}#updraft_lastlogmessagerow .updraft-log-link{display:block;float:none;margin:0;margin-bottom:10px}}@media only screen and (min-width:768px){.addon-activation-notice{left:20em}.existing-backups-table tbody tr:hover{background:#f1f1f1}.existing-backups-table tbody tr td.before-restore-button{position:relative}.form-table .existing-backups-table thead th.check-column{padding-left:6px}.existing-backups-table tr td:first-child{border-left:4px solid transparent}.existing-backups-table tr.backuprowselected td:first-child{border-left-color:#0572aa}}@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}}@media only screen and (max-width:1068px){.updraft-more-plugins .udp-box{width:calc(50% - 10px);margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:100px}}@media only screen and (max-width:600px){.updraft-more-plugins .udp-box{width:100%;margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:auto}table.updraft_feat_table{display:block}table.updraft_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.updraft_feat_table td{display:block}table.updraft_feat_table td:first-child{width:100%;border-bottom:0}table.updraft_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.updraft_feat_table td:first-child:empty{display:none}td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}
2
  /*# sourceMappingURL=updraftplus-admin.min.css.map */
1
+ @keyframes udp_blink{from{opacity:1;transform:scale(1)}to{opacity:.4;transform:scale(0.85)}}.max-width-600{max-width:600px}.width-900{max-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}.udpdraft__lifted{box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#updraft-wrap a .dashicons{text-decoration:none}.updraft-field-description,table.form-table td p.updraft-field-description{font-size:90%;line-height:1.2;font-style:italic;margin-bottom:5px}label.updraft_checkbox{display:block;margin-bottom:4px;margin-left:26px}label.updraft_checkbox>input[type=checkbox]{margin-left:-25px}div[id*="updraft_include_"]{margin-bottom:9px}.settings_page_updraftplus input[type="file"]{border:0}.settings_page_updraftplus .wipe_settings{padding-bottom:10px}.settings_page_updraftplus input[type="text"]{font-size:14px}.settings_page_updraftplus select{border-radius:4px;max-width:100%}input.updraft_input--wide,textarea.updraft_input--wide{max-width:442px;width:100%}#updraft-wrap .button-large{font-size:1.3em}.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}p.updraftplus-option{margin-top:0;margin-bottom:5px}p.updraftplus-option-inline{display:inline-block;padding-right:20px}span.updraftplus-option-label{display:block}#updraft-navtab-migrate-content .postbox{padding:18px}.updraftclone-main-row{display:-ms-flexbox;display:flex}.updraftclone-tokens{background:#f5f5f5;padding:20px;border-radius:10px;margin-right:20px;max-width:300px}.updraftclone-tokens p{margin:0}.updraftclone_action_box{background:#f5f5f5;padding:20px;border-radius:10px;-ms-flex:1;flex:1}.updraftclone_action_box p:first-child{margin-top:0}.updraftclone_action_box p:last-child{margin-bottom:0}span.tokens-number{font-size:46px;display:block}.button.updraft_migrate_widget_temporary_clone_show_stage0{display:none;position:absolute;right:0;top:0;height:100%;border-left:1px solid #CCC;padding-left:10px;padding-right:10px}.updraft_migrate_widget_temporary_clone_stage0_container{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.updraft_migrate_widget_temporary_clone_stage0_box{margin-right:20px;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.updraft_migrate_widget_temporary_clone_stage0_box iframe,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:none}@media(min-width:1024px){.updraft_migrate_widget_temporary_clone_stage0_container{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_migrate_widget_temporary_clone_stage0_box{-ms-flex-preferred-size:45%;flex-basis:45%}.updraft_migrate_widget_temporary_clone_stage0_box iframe,.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js{float:right}}.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons{text-decoration:none;font-size:20px;line-height:inherit}.opened .button.updraft_migrate_widget_temporary_clone_show_stage0{display:inline-block}.opened .updraft_migrate_widget_temporary_clone_stage0{background:#f5f5f5;padding:20px;border-radius:8px;margin-bottom:21px}.clone-list{clear:both;width:100%;margin-top:40px}.clone-list table{width:100%;text-align:left}.clone-list table tr th{background:#e4e4e4}.clone-list table tr td{background:#f5f5f5;word-break:break-word}.clone-list table tr:nth-child(odd) td{background:#fafafa}.clone-list table td,.clone-list table th{padding:6px}.updraftplus-clone .updraft_row{padding-left:0;padding-right:0}button#updraft_migrate_createclone+.updraftplus_spinner{margin-top:13px}.button.button-hero.updraftclone_show_step_1{white-space:normal;height:auto;line-height:14px;padding-top:10px;padding-bottom:10px}.button.button-hero.updraftclone_show_step_1 span.dashicons{height:auto}.updraftplus_clone_status{color:red}a.updraft_migrate_add_site--trigger span.dashicons{text-decoration:none}.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}#updraft_migrate_tab_main{padding:8px}.updraft_migrate_widget_module_content{background:#FFF;border-radius:0;position:relative}body.js #updraft_migrate .updraft_migrate_widget_module_content{display:none}.updraft_migrate_widget_module_content>h3,div[class*="updraft_migrate_widget_temporary_clone_stage"]>h3{margin-top:0}.updraft_migrate_widget_module_content header{position:relative;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-ms-grid-column-align:center;justify-items:center;margin-top:-18px;margin-left:-18px;margin-right:-18px;margin-bottom:15px;border-bottom:1px solid #CCC}.updraft_migrate_widget_module_content header h3,.updraft_migrate_widget_module_content header button.button.close{padding:10px;line-height:20px;height:auto;margin:0}.updraft_migrate_widget_module_content button.button.close{text-decoration:none;padding-left:5px;border-right:1px solid #CCC}.updraft_migrate_widget_module_content button.button.close .dashicons{margin-top:1px}.updraft_migrate_widget_module_content header h3{margin:0}.updraft_migrate_intro button.button.button-primary.button-hero{max-width:235px;word-wrap:normal;white-space:normal;line-height:1;height:auto;padding-top:13px;padding-bottom:13px;text-align:left;position:relative;margin-right:10px;margin-bottom:10px}.updraft_migrate_intro button.button.button-primary.button-hero .dashicons{position:absolute;left:10px;top:calc(50% - 8px)}#updraft_migrate .ui-widget-content a{color:#1c94c4}#updraft-wrap .ui-accordion .ui-accordion-header{background:#f6f6f6;margin:0;border-radius:0;padding-left:.5em;padding-right:.7em}#updraft-wrap .ui-widget{font-family:inherit}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w{background-position:-96px 0}.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s{background-position:-64px 0}#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon{left:auto;right:5px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px rgba(91,157,217,0.22),0 0 2px 1px rgba(30,140,190,0.3);background:#FFF}#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons{color:#0572aa;opacity:1}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active{background:#f6f6f6;border-bottom:2px solid #0572aa;box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3)}#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus{box-shadow:1px 6px 12px -5px rgba(0,0,0,0.3),0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child){border-top:0}#updraft-wrap .ui-accordion .ui-accordion-header .dashicons{opacity:.4;margin-right:10px}#updraft-wrap .ui-accordion .ui-accordion-header:focus{outline:0;box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:1}.updraft_next_scheduled_backups_wrapper{display:-ms-flexbox;display:flex;background:#FFF;-ms-grid-column-align:center;justify-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.updraft_next_scheduled_backups_wrapper>div{width:50%;background:#FFF;height:auto;padding:33px;box-sizing:border-box}.updraft_backup_btn_wrapper{text-align:center;border-left:1px solid #f1f1f1;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}#updraft-delete-waitwarning span.spinner{visibility:visible;float:none;margin:0;margin-right:10px}button#updraft-backupnow-button .spinner,button#updraft-backupnow-button .dashicons-yes{display:none}button#updraft-backupnow-button.loading .spinner{display:inline-block;visibility:visible;margin-top:13px;margin-right:0}button#updraft-backupnow-button.loading{background-color:#efefef;border-color:#CCC;text-shadow:0 -1px 1px #bbc3c7,1px 0 1px #bbc3c7,0 1px 1px #bbc3c7,-1px 0 1px #bbc3c7;box-shadow:none}button#updraft-backupnow-button.finished .dashicons-yes{display:inline-block;visibility:visible;font-size:42px;margin-right:0;margin-top:2px}.updraft_next_scheduled_entity{width:50%;display:inline-block;float:left}.updraft_next_scheduled_entity .dashicons{color:#CCC;font-size:20px}.updraft_next_scheduled_entity strong{font-size:20px}.updraft_next_scheduled_heading{margin-bottom:10px}.updraft_next_scheduled_date_time{color:#46a84b}.updraft_time_now_wrapper{margin-top:68px;width:100%}.updraft_time_now_label,.updraft_time_now{display:inline-block;padding:7px}.updraft_time_now_label{background:#b7b7b7;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#FFF;margin-right:0;text-shadow:0 1px 2px rgba(0,0,0,0.4)}.updraft_time_now{background:#f1f1f1;border-top-right-radius:4px;border-bottom-right-radius:4px;margin-left:-3px}#updraft_lastlogmessagerow{margin:6px 0}#updraft_lastlogmessagerow{clear:both;padding:.25px 0}#updraft_lastlogmessagerow .updraft-log-link{float:right;margin-top:-2.5em;margin-right:2px}#updraft_lastlogmessagerow>div{clear:both;background:#FFF;padding:18px}#updraft_activejobs_table{overflow:hidden;width:100%;background:#fafafa;padding:0}.updraft_requeststart{padding:15px 33px;text-align:center}.updraft_requeststart .spinner{visibility:visible;float:none;vertical-align:middle;margin-top:-2px}a.updraft_jobinfo_delete.disabled{opacity:.4;color:inherit;text-decoration:none}.updraft_row{clear:both;transition:.3s all;padding:15px 33px}.updraft_row.deleting{opacity:.4}.updraft_existing_backups_count{padding:2px 8px;font-size:12px;background:#ca4a1e;color:#FFF;font-weight:bold;border-radius:10px}.form-table .existing-backups-table input[type="checkbox"]{border-radius:0}.form-table .existing-backups-table .check-column{width:40px;padding:0;padding-top:8px}.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,#updraft-delete-waitwarning>.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%}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label>*{vertical-align:middle}.backup_date_label .dashicons{font-size:18px}.backup_date_label .clear-right{clear:right}.existing-backups-table .backup_date_label>div{font-weight:bold}.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_exclude_container,.updraft_include_container{margin-left:24px;margin-top:5px;margin-bottom:10px;padding:15px;border:1px solid #DDD}label.updraft-exclude-label{font-weight:500;margin-bottom:5px;display:block}.updraft_add_exclude_item,#updraft_include_more_paths_another{display:inline-block;margin-top:10px}input.updraft_exclude_entity_field,.form-table td input.updraft_exclude_entity_field,.updraftplus-morefiles-row input[type=text]{width:calc(100% - 70px);max-width:400px}@media screen and (max-width:782px){.form-table td input.updraft_exclude_entity_field,.form-table td .updraftplus-morefiles-row input[type=text]{display:inline-block}}.updraft_exclude_entity_delete.dashicons,.updraft_exclude_entity_edit.dashicons,.updraft_exclude_entity_update.dashicons,.updraftplus-morefiles-row a.dashicons{margin-top:2px;font-size:20px;box-shadow:none;line-height:1;padding:3px;margin-right:4px}.updraft_exclude_entity_delete,.updraft_exclude_entity_delete:hover,.updraftplus-morefiles-row-delete{color:#ff6347}.updraft_exclude_entity_update.dashicons,.updraft_exclude_entity_update.dashicons:hover{color:#008000;font-weight:bold;font-size:22px;margin-left:4px}.updraft_exclude_entity_edit{margin-left:4px}.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete{display:none}.updraft-exclude-panel-heading{margin-bottom:8px}.updraft-exclude-panel-heading h3{margin:.5em 0 .5em 0}.updraft-exclude-submit.button-primary{margin-top:5px}.updraft_exclude_actions_list{font-weight:bold}.updraft-exclude-link{cursor:pointer}#updraft_include_more_options{padding-left:25px}#updraft_report_cell .updraft_reportbox,.updraft_small_box{padding:12px;margin:8px 0;border:1px solid #CCC;position:relative}#updraft_report_cell button.updraft_reportbox_delete,.updraft_box_delete_button,.updraft_small_box .updraft_box_delete_button{padding:4px;padding-top:6px;border:0;background:transparent;position:absolute;top:4px;right:4px;cursor:pointer}#updraft_report_cell button.updraft_reportbox_delete:hover{color:#de3c3c}a.updraft_report_another .dashicons{text-decoration:none;margin-top:2px}.updraft_report_dbbackup.updraft_report_disabled{color:#CCC}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_email{display:block;width:calc(100% - 50px);margin-bottom:9px}#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,#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td{background-color:#efefef}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td{background-color:#e8e8e8}.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,.onedrive_folder_error{color:red}.updraft_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}.updraft_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}.updraft_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}.updraft_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_jstree_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}.updraft_jstree_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_exclude_files_folders_jstree{max-height:200px;overflow-y:scroll}.updraft_jstree{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;width:100%;border:1px solid #CCC;background:#fafafa;margin-bottom:5px;margin-top:4px;box-shadow:0 5px 8px rgba(0,0,0,0.1)}div#updraft_more_files_container::before{content:' ';width:11px;height:11px;display:block;background:#fafafa;position:absolute;top:0;left:20px;border-top:1px solid #CCC;border-left:1px solid #CCC;transform:translatey(-7px) rotate(45deg)}input.updraft_more_path_editing{border-color:#0285ba}input.updraft_more_path_editing ~ a.dashicons{display:none}#updraft_jstree_buttons{padding:10px;background:#e6e6e6}#updraft_jstree_container{height:300px;width:100%;overflow:auto}#updraft_more_files_container button{line-height:20px}#updraft_parent_directory{margin:10px 10px 4px 10px;padding-left:3px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete,.updraftplus-morefiles-row-edit{cursor:pointer}#updraft-wrap .form-table th{width:230px}#updraft-wrap .form-table .existing-backups-table th{width:auto}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{display:inline-block}.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 input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.button.button-remove{color:white;background-color:#de3c3c;border-color:#c00000;box-shadow:0 1px 0 #c10100}.button.button-remove:hover,.button.button-remove:focus{border-color:#C00;color:#FFF;background:#C00}body.admin-color-midnight .button.button-remove{color:#de3c3c;background-color:#f7f7f7;border-color:#CCC;box-shadow:0 1px 0 #CCC}body.admin-color-midnight .button.button-remove:hover,body.admin-color-midnight .button.button-remove:focus{border-color:#ba281f}body.admin-color-midnight .button.button-remove:focus{box-shadow:inherit;box-shadow:0 0 3px rgba(0,115,170,0.8)}.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:1px;background:#ececec;border:solid 1px #CCC;margin:4px 0}.updraft_premium section{margin-bottom:20px}.updraft_premium_cta{background:#FFF;margin-top:30px;padding:0;border-left:4px solid #db6a03}.updraft_premium_cta a{font-weight:normal}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase}.updraft_premium_cta__top{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:18px 30px}.updraft_premium_cta__bottom{background:#f9f9f9;padding:5px 30px}.updraft_premium_cta__summary{margin-right:60px}.updraft_premium_cta h2{font-size:28px;font-weight:200;line-height:1;margin:0;margin-bottom:5px;letter-spacing:.05rem;color:#db6a03}.updraft_premium_cta ul li::after{color:#CCC}@media only screen and (max-width:768px){.updraft_premium_cta__top{-ms-flex-direction:column;flex-direction:column;text-align:center;-ms-flex-align:center;align-items:center}.updraft_premium_cta__summary{margin-right:0;margin-bottom:30px}}.udp-box{background:#FFF;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,0.1);text-align:center}.udp-box h3{margin:0}.udp-box__heading{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;background:0;box-shadow:none}.updraft-more-plugins{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;flex-wrap:wrap}.updraft-more-plugins img{max-width:200px;width:100%;display:inline-block}.updraft-more-plugins .udp-box{box-sizing:border-box;width:24%}.updraft-more-plugins .udp-box p:last-child{margin-bottom:0;padding-bottom:0}.updraft_premium_description_list{text-align:left;margin:0;font-size:12px}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-child::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraftplus_com_login_status,.updraftplus_com_key_status{display:none;border-left-color:#dc3232 !important;background:#FFF;border-left:4px solid #FFF;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraft_feat_table{border:0;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_th,.updraft_feat_table td{border:1px solid #f1f1f1;border-collapse:collapse;font-size:120%;background-color:white;text-align:center;padding:15px}.updraft_feat_table td{border-bottom-width:4px}.updraft_feat_table td:first-child{border-left:0}.updraft_feat_table td:last-child{border-right:0}.updraft_feat_table tr:last-child td{border-bottom:0}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){background-color:rgba(241,241,241,0.38);width:190px}.updraft_feat_table__header td img{display:block;margin:0 auto}.updraft_feat_table__header td{text-align:center}.updraft_feat_table .installed{font-size:14px}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:13px}.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}.ud_downloadstatus__close{border:0;background:transparent;width:auto;font-size:20px;padding:0;cursor:pointer}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#0572aa;height:8px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}div[class^="updraftplus_downloader_container_"]{padding:10px}tr.updraftplusmethod h3{margin:0}tr.updraftplusmethod img{max-width:100%}#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;text-decoration:none;display:inline-block}#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}.blockUI.blockOverlay.ui-widget-overlay{background:#000}.updraft_success_popup{text-align:center;padding-bottom:30px}.updraft_success_popup>.dashicons{font-size:100px;width:100px;height:100px;line-height:100px;padding:0;border-radius:50%;margin-top:30px;display:block;margin-left:auto;margin-right:auto;background:#e2e6e5}.updraft_success_popup>.dashicons.dashicons-yes{text-indent:-5px}.updraft_success_popup.success>.dashicons{color:green}.updraft_success_popup.warning>.dashicons{color:#888}.updraft_success_popup--message{padding:20px}.button.updraft-close-overlay .dashicons{text-decoration:none;font-size:20px;margin-left:-5px;padding:0}.updraft_saving_popup img{animation-name:udp_blink;animation-duration:610ms;animation-iteration-count:infinite;animation-direction:alternate;animation-timing-function:ease-out}.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}.updraft_all-files{color:blue}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.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_activejobsrow th{max-width:112px;margin:0;padding:13px 0 0 0}#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}.download-backups .ud-whitespace-warning,.download-backups .ud-bom-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{margin:16px 0}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:100%}.ud_downloadstatus{padding:10px 0}#ud_massactions,#updraft-delete-waitwarning{padding:14px;background:#f1f1f1;position:absolute;left:0;top:100%}#ud_massactions>*,#updraft-delete-waitwarning>*{vertical-align:middle}#ud_massactions .updraftplus-remove{display:inline-block;margin-right:0}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative}small.ud_massactions-tip{display:inline-block;opacity:.5;font-style:italic;margin-left:20px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:35px;position:relative}#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;max-width:140px}.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{width:100%;text-align:center;padding:33px}.job-id{margin-top:0;margin-bottom:8px}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#1d8ec2;transition:width .3s}.curstage{z-index:1;border-radius:2px;margin-top:8px;width:100%;height:26px;line-height:26px;position:relative;text-align:center;font-style:italic;color:#FFF;background-color:#b7b7b7;text-shadow:0 1px 2px rgba(0,0,0,0.3)}.curstage-info{display:inline-block;z-index:2}.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}.updraft_existing_backups_wrapper{margin-top:20px;border-top:1px solid #DDD}.updraft-no-backups-msg{text-align:center}.tr-bottom-4{margin-bottom:4px}.existing-backups-table th{padding:8px 10px}.form-table .backup-date{width:172px}.form-table .backup-data{width:426px}.form-table .updraft_backup_actions{width:272px}.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}.updraftplus-upload{margin-right:6px;float:left;clear:none}.before-restore-button{padding:1px;margin:0}.before-restore-button div{float:none;display:inline-block}.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_delete_old_dirs_pagediv{padding-bottom:10px}.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:first-child{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}.updraftcentral_cloud_connect{border-radius:4px;border:1px solid #000;padding:0 20px;margin-top:30px;background-color:#FFF}.updraftcentral_cloud_error{border:1px solid #000;padding:3px 10px;border-left:3px solid #F00;background-color:#FFF;margin-bottom:10px}.updraftcentral_cloud_info{border:1px solid #000;padding:3px 10px;border-left:3px solid #ef8f31;background-color:#FFF;margin-bottom:10px}.updraftplus_spinner.spinner{padding-left:25px;float:none}.updraftplus_spinner.spinner.visible{visibility:visible}.updraftcentral_cloud_notices .updraftplus_spinner{margin-top:-5px}.updraftcentral-subheading{font-size:14px;margin-top:-10px;margin-bottom:20px}#updraftcentral_cloud_form input#email,#updraftcentral_cloud_form input#password{min-width:250px}.updraftcentral-data-consent{font-size:13px;margin-bottom:10px}.updraftcentral_cloud_wizard_image{float:left;min-width:100px;margin-right:25px}.updraftcentral_cloud_wizard{float:left}.updraftcentral_cloud_clear{clear:both}.updraftplus-settings-footer{margin-top:30px}.updraftplus-top-menu{padding:.5em}#updraft_inpage_backup #updraft_activejobs_table{background:transparent}#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link{float:none}#updraft_inpage_backup #updraft_activejobsrow .updraft_row{-ms-flex-direction:column;flex-direction:column;padding-left:20px;padding-right:20px}#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container{width:100%}#updraft_inpage_backup #updraft_activejobs_table{overflow:inherit}#updraft_inpage_backup span#updraft_lastlogcontainer{padding:18px;background:#fafafa;display:block;font-size:90%;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup div#updraft_activejobsrow{background:#fafafa;box-shadow:0 1px 2px rgba(0,0,0,0.1)}#updraft_inpage_backup #updraft_lastlogmessagerow>div{background:transparent;padding:0}#updraft_inpage_backup .last-message>strong{display:block;margin-top:13px}@media only screen and (min-width:1024px){#updraft_activejobsrow .updraft_row{display:-ms-flexbox;display:flex;-ms-flex-align:baseline;align-items:baseline}#updraft_activejobsrow .updraft_row .updraft_col{-ms-flex:auto;flex:auto}#updraft_activejobsrow .updraft_progress_container{width:calc(100% - 230px)}}@media only screen and (min-width:782px){.settings_page_updraftplus input[type=text],.settings_page_updraftplus input[type=password],.settings_page_updraftplus input[type=number]{line-height:1.42;height:27px;padding:2px 6px;color:#555}.settings_page_updraftplus input[type="number"]{height:31px}#ud_massactions.active,#updraft-delete-waitwarning.active{position:fixed;bottom:0;left:160px;right:0;top:auto;background:#FFF;z-index:3;box-shadow:0 0 10px rgba(0,0,0,0.2)}body.folded #ud_massactions.active,body.folded #updraft-delete-waitwarning.active{left:36px}.updraft-after-form-table{margin-left:250px}}@media only screen and (min-width:782px) and (max-width:960px){body.auto-fold #ud_massactions.active,body.auto-fold #updraft-delete-waitwarning.active{left:36px}}@media only screen and (max-width:782px){#updraft-wrap{margin-right:0}#updraft-wrap .form-table td{padding-right:0}label.updraft_checkbox{margin-bottom:8px;margin-top:8px;margin-left:36px}.updraft_retain_rules{position:relative;margin-right:0;border:1px solid #CCC;padding:5px;margin-bottom:-1px}.updraft_retain_rules_delete{position:absolute;right:0;top:5px}a[id*=updraft_retain_]{display:block;padding:15px 15px 15px 0}label.updraft_checkbox>input[type=checkbox]{margin-left:-33px}#updraft-backupnow-button{margin:0;display:block;width:100%}.updraft_next_scheduled_backups_wrapper>.updraft_backup_btn_wrapper{padding-top:0}#ud_massactions,#updraft-delete-waitwarning{width:100%;box-sizing:border-box;text-align:center}#ud_massactions.active{position:fixed;top:auto;bottom:0;width:100%;box-sizing:border-box;text-align:center;box-shadow:0 -3px 15px rgba(0,0,0,0.08);background:#FFF;z-index:3}#ud_massactions strong{display:block;margin-bottom:5px}small.ud_massactions-tip{display:block}.existing-backups-table .backup_date_label>div{font-weight:normal}.existing-backups-table .backup_date_label .clear-right{display:inline-block}table.widefat.existing-backups-table{border:0;box-shadow:none;background:transparent}.existing-backups-table thead{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;padding:0;margin:0}.existing-backups-table tr{display:block;margin-bottom:.625em;padding-bottom:16.625px;width:100%;padding:0;margin:0;margin-bottom:10px;background:#FFF;box-shadow:0 2px 3px rgba(0,0,0,0.1)}.existing-backups-table td{border-bottom:1px solid #DDD;display:block;font-size:.9em;text-align:left;width:100%;padding:10px;margin:0}.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before{content:attr(data-label);font-weight:bold;display:block;position:relative;left:auto;padding-bottom:10px;width:auto;text-align:left}.existing-backups-table td:last-child{border-bottom:0}.form-table td.updraft_existingbackup_date{width:inherit;max-width:100%}.existing-backups-table td.before-restore-button{min-height:36px}.updraft_next_scheduled_backups_wrapper{-ms-flex-direction:column;flex-direction:column}.updraft_next_scheduled_backups_wrapper>div{width:100%}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row{position:relative}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#FFF;border-left:4px solid #0572aa}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select){margin-left:50px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select{width:50px !important;position:absolute;left:0;top:0;box-sizing:border-box;height:100%;z-index:1;border:0;border-right:1px solid rgba(0,0,0,0.05)}#updraft-navtab-backups-content .updraft_existing_backups input[type="checkbox"]{height:25px}.updraft_migrate_intro button.button.button-primary.button-hero{display:block;margin-right:0;width:100%;max-width:100%}.updraftclone-main-row{-ms-flex-direction:column;flex-direction:column}.updraftclone-main-row>div{width:auto;max-width:none;margin-right:0;margin-bottom:10px}.form-table th{padding-bottom:10px}}@media screen and (max-width:600px){.updraft_next_scheduled_entity{float:none;width:100%;margin-bottom:2em}.updraft_time_now_wrapper{margin-top:0}#updraft_lastlogmessagerow h3{margin-bottom:5px}#updraft_lastlogmessagerow .updraft-log-link{display:block;float:none;margin:0;margin-bottom:10px}}@media only screen and (min-width:768px){.addon-activation-notice{left:20em}.existing-backups-table tbody tr:hover{background:#f1f1f1}.existing-backups-table tbody tr td.before-restore-button{position:relative}.form-table .existing-backups-table thead th.check-column{padding-left:6px}.existing-backups-table tr td:first-child{border-left:4px solid transparent}.existing-backups-table tr.backuprowselected td:first-child{border-left-color:#0572aa}}@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}}@media only screen and (max-width:1068px){.updraft-more-plugins .udp-box{width:calc(50% - 10px);margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:100px}}@media only screen and (max-width:600px){.updraft-more-plugins .udp-box{width:100%;margin-bottom:20px}.updraft_feat_table td:nth-child(2),.updraft_feat_table td:nth-child(3){width:auto}table.updraft_feat_table{display:block}table.updraft_feat_table tr{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}table.updraft_feat_table td{display:block}table.updraft_feat_table td:first-child{width:100%;border-bottom:0}table.updraft_feat_table td:not(:first-child){width:50%;box-sizing:border-box}table.updraft_feat_table td:first-child:empty{display:none}td[data-colname]::before{content:attr(data-colname);font-size:.8rem;color:#CCC;line-height:1}}
2
  /*# sourceMappingURL=updraftplus-admin.min.css.map */
css/updraftplus-admin.min.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/updraftplus-admin.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,WAAW;EACX,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb,uBAAuB;EACvB;;CAED;;AAED,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;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;CACC,uCAAuC;CACvC;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,eAAe;CACf,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,aAAa;CACb;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;;CAEC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;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;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;;EAEE;;AAEF;CACC,cAAc;CACd;;AAED,gBAAgB;;AAEhB;CACC,qBAAc;CAAd,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,YAAQ;KAAR,QAAQ;CACR;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED,yBAAyB;AACzB;CACC,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT,OAAO;CACP,aAAa;CACb,4BAA4B;CAC5B,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,2BAAuB;KAAvB,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,8BAAiB;KAAjB,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EACpB,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,6BAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,aAAa;EACb;;CAED;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,qBAAqB;CACrB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,sBAAsB;AACtB;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,uBAAuB;CACvB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,aAAa;CACb;;AAED,oBAAoB;AACpB;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,qCAAqC;AACrC;CACC,oBAAoB;CACpB,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,aAAa;;AAEb;CACC,sBAAsB;CACtB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,6BAA6B;AAC7B;CACC,mBAAmB;CACnB,qBAAc;CAAd,cAAc;CACd,2BAAsB;KAAtB,sBAAsB;CACtB,8BAAsB;KAAtB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,oBAAoB;CACpB,8BAA8B;CAC9B;;AAED;;CAEC,cAAc;CACd,kBAAkB;CAClB,aAAa;CACb,UAAU;CACV;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,oBAAoB;CACpB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB,qBAAqB;CACrB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB;;AAED;;EAEE;AACF;CACC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB,UAAU;CACV,iBAAiB;CACjB,oBAAoB;CACpB,qBAAqB;CACrB;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,cAAc;CACd,oFAAoF;CACpF,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB,iCAAiC;CACjC,iDAAiD;CACjD;;AAED;CACC,wGAAwG;CACxG;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,kEAAkE;CAClE,WAAW;CACX;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,iBAAiB;CACjB,8BAAsB;KAAtB,sBAAsB;CACtB,oBAAgB;KAAhB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB,aAAa;CACb,yBAAyB;CACzB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,+BAA+B;CAC/B,qBAAc;CAAd,cAAc;CACd,sBAAwB;KAAxB,wBAAwB;CACxB,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,UAAU;CACV,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,0FAA0F;CAC1F,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,gBAAgB;CAChB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,sBAAsB;CACtB,YAAY;CACZ;;GAEE;CACF;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,4BAA4B;CAC5B,+BAA+B;CAC/B,YAAY;CACZ,gBAAgB;CAChB,0CAA0C;CAC1C;;AAED;CACC,oBAAoB;CACpB,6BAA6B;CAC7B,gCAAgC;CAChC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,oBAAoB;CACpB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB,YAAY;CACZ,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,iBAAiB;CACjB;;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,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;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;;CAEC,kBAAkB;CAClB,gBAAgB;CAChB,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB,iBAAiB;CACjB;;AAED;;;CAGC,yBAAyB;CACzB,iBAAiB;CACjB;;AAED;;CAEC;;EAEC,sBAAsB;EACtB;;CAED;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB;;AAED;;;CAGC,eAAe;CACf;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;;;CAGC,aAAa;CACb,iBAAiB;CACjB,aAAa;CACb,wBAAwB;CACxB,mBAAmB;CACnB,SAAS;CACT,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;;CAEC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B;;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,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,YAAY;CACZ,uBAAuB;CACvB,oBAAoB;CACpB,mBAAmB;CACnB,gBAAgB;CAChB,yCAAyC;CACzC;;AAED;CACC,aAAa;CACb,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,2BAA2B;CAC3B,4BAA4B;CAC5B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,YAAY;CACZ,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,sBAAsB;CACtB,4BAA4B;CAC5B;;AAED;;CAEC,mBAAmB;CACnB,YAAY;CACZ,iBAAiB;CACjB;;AAED,mDAAmD;AACnD;CACC,eAAe;CACf,0BAA0B;CAC1B,mBAAmB;CACnB,yBAAyB;CACzB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;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,oBAAoB;CACpB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,iBAAiB;CACjB,WAAW;CACX,+BAA+B;CAC/B;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,uBAA+B;KAA/B,+BAA+B;CAC/B,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,UAAU;CACV,mBAAmB;CACnB,wBAAwB;CACxB,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,2BAAuB;MAAvB,uBAAuB;EACvB,mBAAmB;EACnB,uBAAoB;MAApB,oBAAoB;EACpB;;CAED;EACC,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,cAAc;CACd,yCAAyC;CACzC,mBAAmB;CACnB;;AAED;CACC,UAAU;CACV;;AAED;CACC,4BAAmB;KAAnB,2BAAmB;KAAnB,mBAAmB;CACnB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;EAEE;AACF;CACC,qBAAc;CAAd,cAAc;CACd,wBAAoB;KAApB,oBAAoB;CACpB,oBAAgB;KAAhB,gBAAgB;CAChB,uBAA+B;KAA/B,+BAA+B;CAC/B,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,uBAAuB;CACvB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,UAAU;CACV,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,sCAAsC;CACtC,iBAAiB;CACjB,4BAA4B;CAC5B,uCAAuC;CACvC,qBAAqB;CACrB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,4CAA4C;CAC5C,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB;;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,aAAa;CACb,wBAAwB;CACxB,YAAY;CACZ,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd,sBAAsB;CACtB,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED,qBAAqB;AACrB;CACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,oCAAoC;CACpC,+BAA+B;CAC/B,oCAAoC;CACpC;;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;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;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,iBAAiB;CACjB,UAAU;CACV,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,+BAA+B;CAC/B,mBAAmB;CACnB,QAAQ;CACR,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,oBAAoB;CACpB,mBAAmB;CACnB;;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,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,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,0BAA0B;CAC1B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB,WAAW;CACX;;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,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;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,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,sBAAsB;CACtB;;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,qBAAqB;CACrB;;AAED;;GAEG;;AAEH,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,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;CACC,mBAAmB;CACnB,uBAAuB;CACvB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,4BAA4B;CAC5B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,+BAA+B;CAC/B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAAuB;KAAvB,uBAAuB;CACvB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,eAAe;CACf,eAAe;CACf,2CAA2C;CAC3C;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,WAAW;CACX;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,qBAAc;EAAd,cAAc;EACd,yBAAsB;MAAtB,sBAAsB;EACtB;;CAED;EACC,eAAW;MAAX,WAAW;EACX;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;;;EAGC,yBAAyB;EACzB,kBAAkB;EAClB,6BAA6B;EAC7B,aAAa;EACb,iBAAiB;EACjB,YAAY;EACZ;;CAED;EACC,aAAa;EACb;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,YAAY;EACZ,SAAS;EACT,UAAU;EACV,iBAAiB;EACjB,WAAW;EACX,wCAAwC;EACxC;;CAED;EACC,WAAW;EACX;;CAED;EACC,mBAAmB;EACnB;;CAED;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,kBAAkB;EAClB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,uBAAuB;EACvB,aAAa;EACb,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,SAAS;EACT,SAAS;EACT;;CAED;EACC,eAAe;EACf,0BAA0B;EAC1B;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,UAAU;EACV,eAAe;EACf,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,UAAU;EACV,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB,4CAA4C;EAC5C,iBAAiB;EACjB,WAAW;EACX;;CAED;EACC,eAAe;EACf,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf;;AAEF;;;;;;;;;IASI;;CAEH;EACC,oBAAoB;EACpB;;CAED;EACC,sBAAsB;EACtB;;CAED;EACC,UAAU;EACV,iBAAiB;EACjB,wBAAwB;EACxB;;CAED;EACC,aAAa;EACb,oBAAoB;EACpB,YAAY;EACZ,aAAa;EACb,iBAAiB;EACjB,WAAW;EACX,mBAAmB;EACnB,WAAW;EACX,WAAW;EACX,UAAU;EACV;;CAED;EACC,eAAe;EACf,sBAAsB;EACtB,yBAAyB;EACzB,YAAY;EACZ,WAAW;EACX,UAAU;EACV,oBAAoB;EACpB,iBAAiB;EACjB,yCAAyC;EACzC;;CAED;EACC,8BAA8B;EAC9B,eAAe;EACf,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,cAAc;EACd,UAAU;EACV;;CAED;EACC;;;IAGE;EACF,0BAA0B;EAC1B,kBAAkB;EAClB,eAAe;EACf,mBAAmB;EACnB,WAAW;EACX,qBAAqB;EACrB,YAAY;EACZ,iBAAiB;EACjB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,uBAAuB;EACvB,+BAA+B;EAC/B;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,uBAAuB;EACvB,mBAAmB;EACnB,QAAQ;EACR,OAAO;EACP,uBAAuB;EACvB,aAAa;EACb,WAAW;EACX,aAAa;EACb,4CAA4C;EAC5C;;CAED;EACC,aAAa;EACb;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB,YAAY;EACZ,gBAAgB;EAChB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ,gBAAgB;EAChB,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;EACC,qBAAqB;EACrB;;CAED;;AAED;;CAEC;EACC;;CAED;EACC,YAAY;EACZ,YAAY;EACZ,mBAAmB;EACnB;;CAED;EACC,cAAc;EACd;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf,YAAY;EACZ,UAAU;EACV,oBAAoB;EACpB;;CAED;;AAED;CACC;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,mCAAmC;EACnC;;CAED;EACC,2BAA2B;EAC3B;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED;;AAED;;CAEC;EACC,wBAAwB;EACxB,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,qBAAc;EAAd,cAAc;EACd,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,WAAW;EACX,uBAAuB;EACvB;;CAED;EACC,cAAc;EACd;;CAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAED","file":"updraftplus-admin.min.css","sourcesContent":["@keyframes udp_blink {\n\n\tfrom {\n\t\topacity: 1;\n\t\ttransform: scale(1);\n\t}\n\n\tto {\n\t\topacity: 0.4;\n\t\ttransform: scale(0.85);\n\t}\n\n}\n\n/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.width-900 {\n\tmax-width: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n/* End widths and sizing */\n\n/* Font styling */\n.no-decoration {\n\ttext-decoration: none;\n}\n\n.bold {\n\tfont-weight: bold;\n}\n\n/* End font styling */\n/* Alignment */\n.center-align-td {\n\ttext-align: center;\n}\n\n/* End of Alignment */\n/* Padding */\n.remove-padding {\n\tpadding: 0 !important;\n}\n\n/* End of padding */\n\n.updraft-text-center {\n\ttext-align: center;\n}\n\n.autobackup {\n\tpadding: 6px;\n\tmargin: 8px 0px;\n}\n\nul .disc {\n\tlist-style: disc inside;\n}\n\n.dashicons-log-fix {\n\tdisplay: inherit;\n}\n\n.udpdraft__lifted {\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n}\n\n#updraft-wrap a .dashicons {\n\ttext-decoration: none;\n}\n\n.updraft-field-description,\ntable.form-table td p.updraft-field-description {\n\tfont-size: 90%;\n\tline-height: 1.2;\n\tfont-style: italic;\n\tmargin-bottom: 5px;\n}\n\n/* Input boxes */\nlabel.updraft_checkbox {\n\tdisplay: block;\n\tmargin-bottom: 4px;\n\tmargin-left: 26px;\n}\n\nlabel.updraft_checkbox > input[type=checkbox] {\n\tmargin-left: -25px;\n}\n\ndiv[id*=\"updraft_include_\"] {\n\tmargin-bottom: 9px;\n}\n\n/* Input boxes */\n.settings_page_updraftplus input[type=\"file\"] {\n\tborder: none;\n}\n\n.settings_page_updraftplus .wipe_settings {\n\tpadding-bottom: 10px;\n}\n\n.settings_page_updraftplus input[type=\"text\"] {\n\tfont-size: 14px;\n}\n\n.settings_page_updraftplus select {\n\tborder-radius: 4px;\n\tmax-width: 100%;\n}\n\ninput.updraft_input--wide,\ntextarea.updraft_input--wide {\n\tmax-width: 442px;\n\twidth: 100%;\n}\n\n#updraft-wrap .button-large {\n\tfont-size: 1.3em;\n}\n\n/* End input boxes */\n\n/* Main Buttons */\n.main-dashboard-buttons {\n\tborder-width: 4px;\n\tborder-radius: 12px;\n\tletter-spacing: 0px;\n\tfont-size: 17px;\n\tfont-weight: bold;\n\tpadding-left: 0.7em;\n\tpadding-right: 2em;\n\tpadding: 0.3em 1em;\n\tline-height: 1.7em;\n\tbackground: transparent;\n\tposition: relative;\n\tborder: 2px solid;\n\ttransition: all 0.2s;\n\tvertical-align: baseline;\n\tbox-sizing: border-box;\n\ttext-align: center;\n\tline-height: 1.3em;\n\tmargin-left: .3em;\n\ttext-transform: none;\n\tline-height: 1;\n\ttext-decoration: none;\n}\n\n.button-restore {\n\tborder-color: rgb(98, 158, 192);\n\tcolor: rgb(98, 158, 192);\n}\n\n.dashboard-main-sizing {\n\tborder-width: 4px;\n\twidth: 190px;\n\tline-height: 1.7em;\n}\n\np.updraftplus-option {\n\tmargin-top: 0;\n\tmargin-bottom: 5px;\n}\n\np.updraftplus-option-inline {\n\tdisplay: inline-block;\n\tpadding-right: 20px;\n}\n\nspan.updraftplus-option-label {\n\tdisplay: block;\n}\n\n/*\n* MIGRATE - CLONE\n*/\n\n#updraft-navtab-migrate-content .postbox {\n\tpadding: 18px;\n}\n\n/* Clone Rows */\n\n.updraftclone-main-row {\n\tdisplay: flex;\n}\n\n.updraftclone-tokens {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tmargin-right: 20px;\n\tmax-width: 300px;\n}\n\n.updraftclone-tokens p {\n\tmargin: 0;\n}\n\n.updraftclone_action_box {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tflex: 1;\n}\n\n.updraftclone_action_box p:first-child {\n\tmargin-top: 0;\n}\n\n.updraftclone_action_box p:last-child {\n\tmargin-bottom: 0;\n}\n\nspan.tokens-number {\n\tfont-size: 46px;\n\tdisplay: block;\n}\n\n/* Clone header button */\n.button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: none;\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\theight: 100%;\n\tborder-left: 1px solid #CCC;\n\tpadding-left: 10px;\n\tpadding-right: 10px;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_container {\n\tdisplay: flex;\n\tflex-direction: column;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box {\n\tmargin-right: 20px;\n\theight: 100%;\n\twidth: 100%;\n\tflex-basis: 100%;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box iframe {\n\tfloat: none;\n}\n\n@media (min-width: 1024px) {\n\n\t.updraft_migrate_widget_temporary_clone_stage0_container {\n\t\tflex-direction: row;\n\t\tflex-wrap: wrap;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box {\n\t\tflex-basis: 45%;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box iframe {\n\t\tfloat: right;\n\t}\n\n}\n\n.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tline-height: inherit;\n}\n\n.opened .button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: inline-block;\n}\n\n.opened .updraft_migrate_widget_temporary_clone_stage0 {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 8px;\n\tmargin-bottom: 21px;\n}\n\n/* Clone list table */\n.clone-list {\n\tclear: both;\n\twidth: 100%;\n\tmargin-top: 40px;\n}\n\n.clone-list table {\n\twidth: 100%;\n\ttext-align: left;\n}\n\n.clone-list table tr th {\n\tbackground: #E4E4E4;\n}\n\n.clone-list table tr td {\n\tbackground: #F5F5F5;\n\tword-break: break-word;\n}\n\n.clone-list table tr:nth-child(odd) td {\n\tbackground: #FAFAFA;\n}\n\n.clone-list table td,\n.clone-list table th {\n\tpadding: 6px;\n}\n\n/* Clone Progress */\n.updraftplus-clone .updraft_row {\n\tpadding-left: 0;\n\tpadding-right: 0;\n}\n\nbutton#updraft_migrate_createclone + .updraftplus_spinner {\n\tmargin-top: 13px;\n}\n\n/* Clone - Show step 1 info button */\n.button.button-hero.updraftclone_show_step_1 {\n\twhite-space: normal;\n\theight: auto;\n\tline-height: 14px;\n\tpadding-top: 10px;\n\tpadding-bottom: 10px;\n}\n\n.button.button-hero.updraftclone_show_step_1 span.dashicons {\n\theight: auto;\n}\n\n.updraftplus_clone_status {\n\tcolor: red;\n}\n\n/* MIGRATE */\n\na.updraft_migrate_add_site--trigger span.dashicons {\n\ttext-decoration: none;\n}\n\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\n.button-view-log:hover, .button-mass-selectors:hover,\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\n\tborder-color: #DF6926;\n\tcolor: #DF6926;\n}\n\n.button-migrate {\n\tcolor: rgb(238, 169, 32);\n\tborder-color: rgb(238, 169, 32);\n}\n\n#updraft_migrate_tab_main {\n\tpadding: 8px;\n}\n\n.updraft_migrate_widget_module_content {\n\tbackground: #FFF;\n\tborder-radius: 0;\n\tposition: relative;\n}\n\nbody.js #updraft_migrate .updraft_migrate_widget_module_content {\n\tdisplay: none;\n}\n\n.updraft_migrate_widget_module_content > h3,\ndiv[class*=\"updraft_migrate_widget_temporary_clone_stage\"] > h3 {\n\tmargin-top: 0;\n}\n\n/* Migrate / Clone headers */\n.updraft_migrate_widget_module_content header {\n\tposition: relative;\n\tdisplay: flex;\n\talign-content: center;\n\tjustify-items: center;\n\tmargin-top: -18px;\n\tmargin-left: -18px;\n\tmargin-right: -18px;\n\tmargin-bottom: 15px;\n\tborder-bottom: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content header h3,\n.updraft_migrate_widget_module_content header button.button.close {\n\tpadding: 10px;\n\tline-height: 20px;\n\theight: auto;\n\tmargin: 0;\n}\n\n.updraft_migrate_widget_module_content button.button.close {\n\ttext-decoration: none;\n\tpadding-left: 5px;\n\tborder-right: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content button.button.close .dashicons {\n\tmargin-top: 1px;\n}\n\n.updraft_migrate_widget_module_content header h3 {\n\tmargin: 0;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero {\n\tmax-width: 235px;\n\tword-wrap: normal;\n\twhite-space: normal;\n\tline-height: 1;\n\theight: auto;\n\tpadding-top: 13px;\n\tpadding-bottom: 13px;\n\ttext-align: left;\n\tposition: relative;\n\tmargin-right: 10px;\n\tmargin-bottom: 10px;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero .dashicons {\n\tposition: absolute;\n\tleft: 10px;\n\ttop: calc(50% - 8px);\n}\n\n/*\njquery UI Accordion module\n*/\n#updraft_migrate .ui-widget-content a {\n\tcolor: #1C94C4;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header {\n\tbackground: #F6F6F6;\n\tmargin: 0;\n\tborder-radius: 0;\n\tpadding-left: 0.5em;\n\tpadding-right: 0.7em;\n}\n\n#updraft-wrap .ui-widget {\n\tfont-family: inherit;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w {\n\tbackground-position: -96px 0px;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s {\n\tbackground-position: -64px 0;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tleft: auto;\n\tright: 5px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px rgba(91, 157, 217, 0.22), 0 0 2px 1px rgba(30, 140, 190, 0.3);\n\tbackground: #FFF;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons {\n\tcolor: #0572AA;\n\topacity: 1;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active {\n\tbackground: #F6F6F6;\n\tborder-bottom: 2px solid #0572AA;\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus {\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3), 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child) {\n\tborder-top: none;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .dashicons {\n\topacity: 0.4;\n\tmargin-right: 10px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n\tz-index: 1;\n}\n\n.updraft_next_scheduled_backups_wrapper {\n\tdisplay: flex;\n\tbackground: #FFF;\n\tjustify-items: center;\n\tflex-wrap: wrap;\n}\n\n.updraft_next_scheduled_backups_wrapper > div {\n\twidth: 50%;\n\tbackground: #FFF;\n\theight: auto;\n\t/* padding: 18px 33px; */\n\tpadding: 33px;\n\tbox-sizing: border-box;\n}\n\n.updraft_backup_btn_wrapper {\n\ttext-align: center;\n\tborder-left: 1px solid #F1F1F1;\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n}\n\n#updraft-delete-waitwarning span.spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tmargin: 0;\n\tmargin-right: 10px;\n}\n\nbutton#updraft-backupnow-button .spinner,\nbutton#updraft-backupnow-button .dashicons-yes {\n\tdisplay: none;\n}\n\nbutton#updraft-backupnow-button.loading .spinner {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tmargin-top: 13px;\n\tmargin-right: 0;\n}\n\nbutton#updraft-backupnow-button.loading {\n\tbackground-color: #EFEFEF;\n\tborder-color: #CCC;\n\ttext-shadow: 0 -1px 1px #BBC3C7, 1px 0 1px #BBC3C7, 0 1px 1px #BBC3C7, -1px 0 1px #BBC3C7;\n\tbox-shadow: none;\n}\n\nbutton#updraft-backupnow-button.finished .dashicons-yes {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tfont-size: 42px;\n\tmargin-right: 0;\n\tmargin-top: 2px;\n}\n\n.updraft_next_scheduled_entity {\n\twidth: 50%;\n\tdisplay: inline-block;\n\tfloat: left;\n\t/*\n\tpadding: 20px 20px 10px 20px;\n\t*/\n}\n\n.updraft_next_scheduled_entity .dashicons {\n\tcolor: #CCC;\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_entity strong {\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_heading {\n\tmargin-bottom: 10px;\n}\n\n.updraft_next_scheduled_date_time {\n\tcolor: #46A84B;\n}\n\n.updraft_time_now_wrapper {\n\tmargin-top: 68px;\n\twidth: 100%;\n}\n\n.updraft_time_now_label, .updraft_time_now {\n\tdisplay: inline-block;\n\tpadding: 7px;\n}\n\n.updraft_time_now_label {\n\tbackground: #B7B7B7;\n\tborder-top-left-radius: 4px;\n\tborder-bottom-left-radius: 4px;\n\tcolor: #FFF;\n\tmargin-right: 0;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);\n}\n\n.updraft_time_now {\n\tbackground: #F1F1F1;\n\tborder-top-right-radius: 4px;\n\tborder-bottom-right-radius: 4px;\n\tmargin-left: -3px;\n}\n\n#updraft_lastlogmessagerow {\n\tmargin: 6px 0;\n}\n\n#updraft_lastlogmessagerow {\n\tclear: both;\n\tpadding: 0.25px 0;\n}\n\n#updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: right;\n\tmargin-top: -2.5em;\n\tmargin-right: 2px;\n}\n\n#updraft_lastlogmessagerow > div {\n\tclear: both;\n\tbackground: #FFF;\n\tpadding: 18px;\n}\n\n#updraft_activejobs_table {\n\toverflow: hidden;\n\twidth: 100%;\n\tbackground: #FAFAFA;\n\tpadding: 0;\n}\n\n.updraft_requeststart {\n\tpadding: 15px 33px;\n\ttext-align: center;\n}\n\n.updraft_requeststart .spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tvertical-align: middle;\n\tmargin-top: -2px;\n}\n\na.updraft_jobinfo_delete.disabled {\n\topacity: 0.4;\n\tcolor: inherit;\n\ttext-decoration: none;\n}\n\n.updraft_row {\n\tclear: both;\n\ttransition: 0.3s all;\n\tpadding: 15px 33px;\n}\n\n.updraft_row.deleting {\n\topacity: 0.4;\n}\n\n.updraft_progress_container {\n\t/* width: 83%; */\n}\n\n.updraft_existing_backups_count {\n\tpadding: 2px 8px;\n\tfont-size: 12px;\n\tbackground: #CA4A1E;\n\tcolor: #FFF;\n\tfont-weight: bold;\n\tborder-radius: 10px;\n}\n\n.form-table .existing-backups-table input[type=\"checkbox\"] {\n\tborder-radius: 0;\n}\n\n.form-table .existing-backups-table .check-column {\n\twidth: 40px;\n\tpadding: 0;\n\tpadding-top: 8px;\n}\n\n.existing-backups-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.existing-backups-restore-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.button-delete {\n\tcolor: #E23900;\n\tborder-color: #E23900;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 10px;\n}\n\n.button-view-log, .button-mass-selectors {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-top: -1px;\n}\n\n.button-view-log {\n\twidth: 120px;\n}\n\n.button-existing-restore {\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\twidth: 110px;\n}\n\n.main-restore {\n\tmargin-right: 3%;\n\tmargin-left: 3%;\n}\n\n.button-entity-backup {\n\tcolor: #555;\n\tborder-color: #555;\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 5px;\n}\n\n.button-select-all {\n\twidth: 122px;\n}\n\n.button-deselect {\n\twidth: 92px;\n}\n\n#ud_massactions > .display-flex > .mass-selectors-margins, #updraft-delete-waitwarning > .display-flex > .mass-selectors-margins {\n\tmargin-right: -4px;\n}\n\n.udp-button-primary {\n\tborder-width: 4px;\n\tcolor: #0073AA;\n\tborder-color: #0073AA;\n\tfont-size: 14px;\n\theight: 40px;\n}\n\n#ud_massactions .button-delete {\n\tmargin-right: 0px;\n}\n\n.stored_local {\n\tborder-radius: 5px;\n\tbackground-color: #007FE7;\n\tpadding: 3px 5px 5px 5px;\n\tcolor: #FFF;\n\tfont-size: 75%;\n}\n\nspan#updraft_lastlogcontainer {\n\tword-break: break-all;\n}\n\n.stored_icon {\n\theight: 1.3em;\n\tposition: relative;\n\ttop: 0.2em;\n}\n\n.backup_date_label > * {\n\tvertical-align: middle;\n}\n\n.backup_date_label .dashicons {\n\tfont-size: 18px;\n}\n\n.backup_date_label .clear-right {\n\tclear: right;\n}\n\n.existing-backups-table .backup_date_label > div {\n\tfont-weight: bold;\n}\n\n/* End Main Buttons */\n\n/* End of common elements */\n\n.udp-logo-70 {\n\twidth: 70px;\n\theight: 70px;\n\tfloat: left;\n\tpadding-right: 25px;\n}\n\nh3 .thank-you {\n\tmargin-top: 0px;\n}\n\n.ws_advert {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n.dismiss-dash-notice {\n\tfloat: right;\n\tposition: relative;\n\ttop: -20px;\n}\n\n.updraft_exclude_container,\n.updraft_include_container {\n\tmargin-left: 24px;\n\tmargin-top: 5px;\n\tmargin-bottom: 10px;\n\tpadding: 15px;\n\tborder: 1px solid #DDD;\n}\n\nlabel.updraft-exclude-label {\n\tfont-weight: 500;\n\tmargin-bottom: 5px;\n\tdisplay: block;\n}\n\n.updraft_add_exclude_item,\n#updraft_include_more_paths_another {\n\tdisplay: inline-block;\n\tmargin-top: 10px;\n}\n\ninput.updraft_exclude_entity_field,\n.form-table td input.updraft_exclude_entity_field,\n.updraftplus-morefiles-row input[type=text] {\n\twidth: calc(100% - 70px);\n\tmax-width: 400px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.form-table td input.updraft_exclude_entity_field,\n\t.form-table td .updraftplus-morefiles-row input[type=text] {\n\t\tdisplay: inline-block;\n\t}\n\n}\n\n.updraft_exclude_entity_delete.dashicons, .updraft_exclude_entity_edit.dashicons, .updraft_exclude_entity_update.dashicons, .updraftplus-morefiles-row a.dashicons {\n\tmargin-top: 2px;\n\tfont-size: 20px;\n\tbox-shadow: none;\n\tline-height: 1;\n\tpadding: 3px;\n\tmargin-right: 4px;\n}\n\n.updraft_exclude_entity_delete,\n.updraft_exclude_entity_delete:hover,\n.updraftplus-morefiles-row-delete {\n\tcolor: #FF6347;\n}\n\n.updraft_exclude_entity_update.dashicons, .updraft_exclude_entity_update.dashicons:hover {\n\tcolor: #008000;\n\tfont-weight: bold;\n\tfont-size: 22px;\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_edit {\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete {\n\tdisplay: none;\n}\n\n.updraft-exclude-panel-heading {\n\tmargin-bottom: 8px;\n}\n\n.updraft-exclude-panel-heading h3 {\n\tmargin: 0.5em 0 0.5em 0;\n}\n\n.updraft-exclude-submit.button-primary {\n\tmargin-top: 5px;\n}\n\n.updraft_exclude_actions_list {\n\tfont-weight: bold;\n}\n\n.updraft-exclude-link {\n\tcursor: pointer;\n}\n\n#updraft_include_more_options {\n\tpadding-left: 25px;\n}\n\n#updraft_report_cell .updraft_reportbox,\n.updraft_small_box {\n\tpadding: 12px;\n\tmargin: 8px 0;\n\tborder: 1px solid #CCC;\n\tposition: relative;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete,\n.updraft_box_delete_button,\n.updraft_small_box .updraft_box_delete_button {\n\tpadding: 4px;\n\tpadding-top: 6px;\n\tborder: none;\n\tbackground: transparent;\n\tposition: absolute;\n\ttop: 4px;\n\tright: 4px;\n\tcursor: pointer;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete:hover {\n\tcolor: #DE3C3C;\n}\n\na.updraft_report_another .dashicons {\n\ttext-decoration: none;\n\tmargin-top: 2px;\n}\n\n.updraft_report_dbbackup.updraft_report_disabled {\n\tcolor: #CCC;\n}\n\n#updraft-navtab-settings-content .updraft-test-button {\n\tfont-size: 18px !important;\n}\n\n#updraft_report_cell .updraft_report_email {\n\tdisplay: block;\n\twidth: calc(100% - 50px);\n\tmargin-bottom: 9px;\n}\n\n#updraft_report_cell .updraft_report_another_p {\n\tclear: left;\n}\n\n/* Taken straight from admin.php */\n\n#updraft-navtab-settings-content table.form-table p {\n\tmax-width: 700px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td {\n\tbackground-color: #EFEFEF;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td {\n\tbackground-color: #E8E8E8;\n}\n\n.updraft_settings_sectionheading {\n\tdisplay: none;\n}\n\n.updraft-backupentitybutton-disabled {\n\tbackground-color: transparent;\n\tborder: none;\n\tcolor: #0074A2;\n\ttext-decoration: underline;\n\tcursor: pointer;\n\tclear: none;\n\tfloat: left;\n}\n\n.updraft-backupentitybutton {\n\tmargin-left: 8px;\n}\n\n.updraft-bigbutton {\n\tpadding: 2px 0px !important;\n\tmargin-right: 14px !important;\n\tfont-size: 22px !important;\n\tmin-height: 32px;\n\tmin-width: 180px;\n}\n\ntr[class*=\"_updraft_remote_storage_border\"] {\n\tborder-top: 1px solid #CCC;\n}\n\n.updraft_multi_storage_options {\n\tfloat: right;\n\tclear: right;\n\tmargin-bottom: 5px !important;\n}\n\n.updraft_toggle_instance_label {\n\tvertical-align: top !important;\n}\n\n.updraft_debugrow th {\n\tfloat: right;\n\ttext-align: right;\n\tfont-weight: bold;\n\tpadding-right: 8px;\n\tmin-width: 140px;\n}\n\n.updraft_debugrow td {\n\tmin-width: 300px;\n\tvertical-align: bottom;\n}\n\n#updraft_webdav_host_error, .onedrive_folder_error {\n\tcolor: red;\n}\n\n/* jstree styles */\n\n/* these styles hide the dots from the parent but keep the arrows */\n.updraft_jstree .jstree-container-ul > .jstree-node,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\n\tbackground-position: -36px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\n\tbackground-position: -4px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\n\tbackground: transparent;\n}\n\n/* zip browser jstree styles */\n#updraft_zip_files_container {\n\tposition: relative;\n\theight: 450px;\n\toverflow: none;\n}\n\n.updraft_jstree_info_container {\n\tposition: relative;\n\theight: auto;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n.updraft_jstree_info_container p {\n\tmargin: 1px;\n\tpadding-left: 10px;\n\tfont-size: 14px;\n}\n\n#updraft_zip_download_item {\n\tdisplay: none;\n\tcolor: #0073AA;\n\tpadding-left: 10px;\n}\n\n#updraft_zip_download_notice {\n\tpadding-left: 10px;\n}\n\n#updraft_exclude_files_folders_jstree {\n\tmax-height: 200px;\n\toverflow-y: scroll;\n}\n\n.updraft_jstree {\n\tposition: relative;\n\tborder: 1px dotted;\n\theight: 80%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n/* More files jstree styles */\n#updraft_more_files_container {\n\tposition: relative;\n\tdisplay: none;\n\twidth: 100%;\n\tborder: 1px solid #CCC;\n\tbackground: #FAFAFA;\n\tmargin-bottom: 5px;\n\tmargin-top: 4px;\n\tbox-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);\n}\n\ndiv#updraft_more_files_container::before {\n\tcontent: ' ';\n\twidth: 11px;\n\theight: 11px;\n\tdisplay: block;\n\tbackground: #FAFAFA;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 20px;\n\tborder-top: 1px solid #CCC;\n\tborder-left: 1px solid #CCC;\n\ttransform: translatey(-7px) rotate(45deg);\n}\n\ninput.updraft_more_path_editing {\n\tborder-color: #0285BA;\n}\n\ninput.updraft_more_path_editing ~ a.dashicons {\n\tdisplay: none;\n}\n\n#updraft_jstree_buttons {\n\tpadding: 10px;\n\tbackground: #E6E6E6;\n}\n\n#updraft_jstree_container {\n\theight: 300px;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n#updraft_more_files_container button {\n\tline-height: 20px;\n}\n\n#updraft_parent_directory {\n\tmargin: 10px 10px 4px 10px;\n\tpadding-left: 3px;\n}\n\n#updraft_jstree_confirm, #updraft_jstree_cancel {\n\tdisplay: none;\n}\n\n.updraftplus-morefiles-row-delete,\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n}\n\n#updraft-wrap .form-table th {\n\twidth: 230px;\n}\n\n#updraft-wrap .form-table .existing-backups-table th {\n\twidth: auto;\n}\n\n.updraft-viewlogdiv form {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-viewlogdiv {\n\tdisplay: inline-block;\n}\n\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\n\tborder: none;\n\tbackground-color: transparent;\n\tcolor: #000;\n\tmargin: 0px;\n\tpadding: 3px 4px;\n\tfont-size: 16px;\n\tline-height: 26px;\n}\n\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\n\tcolor: #FFF;\n\tcursor: pointer;\n}\n\n.button.button-remove {\n\tcolor: white;\n\tbackground-color: #DE3C3C;\n\tborder-color: #C00000;\n\tbox-shadow: 0 1px 0 #C10100;\n}\n\n.button.button-remove:hover,\n.button.button-remove:focus {\n\tborder-color: #C00;\n\tcolor: #FFF;\n\tbackground: #C00;\n}\n\n/* button-remove colors for midnight admin theme */\nbody.admin-color-midnight .button.button-remove {\n\tcolor: #DE3C3C;\n\tbackground-color: #F7F7F7;\n\tborder-color: #CCC;\n\tbox-shadow: 0 1px 0 #CCC;\n}\n\nbody.admin-color-midnight .button.button-remove:hover, body.admin-color-midnight .button.button-remove:focus {\n\tborder-color: #BA281F;\n}\n\nbody.admin-color-midnight .button.button-remove:focus {\n\tbox-shadow: inherit;\n\tbox-shadow: 0 0 3px rgba(0, 115, 170, 0.8);\n}\n\n.drag-drop #drag-drop-area2 {\n\tborder: 4px dashed #DDD;\n\theight: 200px;\n}\n\n#drag-drop-area2 .drag-drop-inside {\n\tmargin: 36px auto 0;\n\twidth: 350px;\n}\n\n#filelist, #filelist2 {\n\twidth: 100%;\n}\n\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tpadding: 1px;\n\tbackground: #ECECEC;\n\tborder: solid 1px #CCC;\n\tmargin: 4px 0;\n}\n\n.updraft_premium section {\n\tmargin-bottom: 20px;\n}\n\n/*\n\tCall to action Premium\n*/\n.updraft_premium_cta {\n\tbackground: #FFF;\n\tmargin-top: 30px;\n\tpadding: 0;\n\tborder-left: 4px solid #DB6A03;\n}\n\n.updraft_premium_cta a {\n\tfont-weight: normal;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero {\n\tfont-size: 1.3em;\n\tletter-spacing: 0.03rem;\n\ttext-transform: uppercase;\n}\n\n.updraft_premium_cta__top {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tpadding: 18px 30px;\n}\n\n.updraft_premium_cta__bottom {\n\tbackground: #F9F9F9;\n\tpadding: 5px 30px;\n}\n\n.updraft_premium_cta__summary {\n\tmargin-right: 60px;\n}\n\n.updraft_premium_cta h2 {\n\tfont-size: 28px;\n\tfont-weight: 200;\n\tline-height: 1;\n\tmargin: 0;\n\tmargin-bottom: 5px;\n\tletter-spacing: 0.05rem;\n\tcolor: #DB6A03;\n}\n\n.updraft_premium_cta ul li::after {\n\tcolor: #CCC;\n}\n\n@media only screen and (max-width: 768px) {\n\n\t.updraft_premium_cta__top {\n\t\tflex-direction: column;\n\t\ttext-align: center;\n\t\talign-items: center;\n\t}\n\n\t.updraft_premium_cta__summary {\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 30px;\n\t}\n\n}\n\n/*\n\tBox\n*/\n.udp-box {\n\tbackground: #FFF;\n\tpadding: 20px;\n\tbox-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);\n\ttext-align: center;\n}\n\n.udp-box h3 {\n\tmargin: 0;\n}\n\n.udp-box__heading {\n\talign-self: center;\n\tbackground: none;\n\tbox-shadow: none;\n}\n\n/*\n\tOther Plugins\n*/\n.updraft-more-plugins {\n\tdisplay: flex;\n\tflex-direction: row;\n\tflex-wrap: wrap;\n\tjustify-content: space-between;\n\tflex-wrap: wrap;\n}\n\n.updraft-more-plugins img {\n\tmax-width: 200px;\n\twidth: 100%;\n\tdisplay: inline-block;\n}\n\n.updraft-more-plugins .udp-box {\n\tbox-sizing: border-box;\n\twidth: 24%;\n}\n\n.updraft-more-plugins .udp-box p:last-child {\n\tmargin-bottom: 0;\n\tpadding-bottom: 0;\n}\n\n/*\n\tlinks list\n*/\n.updraft_premium_description_list {\n\ttext-align: left;\n\tmargin: 0;\n\tfont-size: 12px;\n}\n\nul.updraft_premium_description_list, ul#updraft_restore_warnings {\n\tlist-style: disc inside;\n}\n\nul.updraft_premium_description_list li {\n\tdisplay: inline;\n}\n\nul.updraft_premium_description_list li::after {\n\tcontent: \" | \";\n}\n\nul.updraft_premium_description_list li:last-child::after {\n\tcontent: \"\";\n}\n\n.updraft_feature_cell {\n\tbackground-color: #F7D9C9 !important;\n\tpadding: 5px 10px;\n}\n\n.updraftplus_com_login_status, .updraftplus_com_key_status {\n\tdisplay: none;\n\tborder-left-color: #DC3232 !important;\n\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n\tmargin: 5px 0 15px 0;\n\tpadding: 5px 12px;\n}\n\n.updraft_feat_table {\n\tborder: none;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n}\n\n.updraft_feat_th, .updraft_feat_table td {\n\tborder: 1px solid #F1F1F1;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n\tpadding: 15px;\n}\n\n.updraft_feat_table td {\n\tborder-bottom-width: 4px;\n}\n\n.updraft_feat_table td:first-child {\n\tborder-left: none;\n}\n\n.updraft_feat_table td:last-child {\n\tborder-right: none;\n}\n\n.updraft_feat_table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.updraft_feat_table td:nth-child(2),\n.updraft_feat_table td:nth-child(3) {\n\tbackground-color: rgba(241, 241, 241, 0.38);\n\twidth: 190px;\n}\n\n.updraft_feat_table__header td img {\n\tdisplay: block;\n\tmargin: 0 auto;\n}\n\n.updraft_feat_table__header td {\n\ttext-align: center;\n}\n\n.updraft_feat_table .installed {\n\tfont-size: 14px;\n}\n\n.updraft_feat_table p {\n\tpadding: 0px 10px;\n\tmargin: 5px 0px;\n\tfont-size: 13px;\n}\n\n.updraft_feat_table h4 {\n\tmargin: 5px 0px;\n}\n\n.updraft_feat_table .dashicons {\n\twidth: 25px;\n\theight: 25px;\n\tfont-size: 25px;\n\tline-height: 1;\n}\n\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\n\tcolor: green;\n}\n\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\n\tcolor: red;\n}\n\n.updraft_tick_cell {\n\ttext-align: center;\n}\n\n.updraft_tick_cell img {\n\tmargin: 4px 0;\n\theight: 24px;\n}\n\n.ud_downloadstatus__close {\n\tborder: none;\n\tbackground: transparent;\n\twidth: auto;\n\tfont-size: 20px;\n\tpadding: 0;\n\tcursor: pointer;\n}\n\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #0572AA;\n\theight: 8px;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tmargin-top: 8px;\n}\n\ndiv[class^=\"updraftplus_downloader_container_\"] {\n\tpadding: 10px;\n}\n\ntr.updraftplusmethod h3 {\n\tmargin: 0px;\n}\n\ntr.updraftplusmethod img {\n\tmax-width: 100%;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\n\tcursor: pointer;\n\tcolor: red;\n\tfont-size: 120%;\n\tfont-weight: bold;\n\tborder: 0px;\n\tborder-radius: 3px;\n\tpadding: 2px;\n\tmargin: 0 6px;\n\ttext-decoration: none;\n\tdisplay: inline-block;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\n\tcursor: pointer;\n\tcolor: white;\n\tbackground: red;\n}\n\n#updraft_backup_started {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n/* backup finished */\n.blockUI.blockOverlay.ui-widget-overlay {\n\tbackground: #000;\n}\n\n.updraft_success_popup {\n\ttext-align: center;\n\tpadding-bottom: 30px;\n}\n\n.updraft_success_popup > .dashicons {\n\tfont-size: 100px;\n\twidth: 100px;\n\theight: 100px;\n\tline-height: 100px;\n\tpadding: 0px;\n\tborder-radius: 50%;\n\tmargin-top: 30px;\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tbackground: #E2E6E5;\n}\n\n.updraft_success_popup > .dashicons.dashicons-yes {\n\ttext-indent: -5px;\n}\n\n.updraft_success_popup.success > .dashicons {\n\tcolor: green;\n}\n\n.updraft_success_popup.warning > .dashicons {\n\tcolor: #888;\n}\n\n.updraft_success_popup--message {\n\tpadding: 20px;\n}\n\n.button.updraft-close-overlay .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tmargin-left: -5px;\n\tpadding: 0;\n}\n\n.updraft_saving_popup img {\n\tanimation-name: udp_blink;\n\tanimation-duration: 610ms;\n\tanimation-iteration-count: infinite;\n\tanimation-direction: alternate;\n\tanimation-timing-function: ease-out;\n}\n\n.udp-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t.udp-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding-right: 5px;\n\t}\n\n}\n\n/* End stuff already in admin.php */\n#plupload-upload-ui2 {\n\twidth: 80%;\n}\n\n.backup-restored {\n\tpadding: 8px;\n}\n\n.backup-restored span {\n\tfont-size: 120%;\n}\n\n.memory-limit {\n\tpadding: 8px;\n}\n\n.updraft_list_errors {\n\tpadding: 8px;\n}\n\n/*.nav-tab {\n\tborder-radius: 20px 20px 0 0;\n\tborder-color: grey;\n\tborder-width: 2px;\n\tmargin-top: 34px;\n}\n\n.nav-tab:hover {\n\tborder-bottom: 0;\n}\n\n.nav-tab-active, .nav-tab-active:active {\n\tcolor: #df6926;\n\tborder-color: #D3D3D3;\n\tborder-width: 1px;\n\tborder-bottom: 0;\n}\n\n.nav-tab-active:focus {\n\tcolor: #df6926;\n}*/\n\n.nav-tab-wrapper {\n\tmargin: 14px 0px;\n}\n\n#updraft-poplog-content {\n\twhite-space: pre-wrap;\n}\n\n.next-backup {\n\tborder: 0px;\n\tpadding: 0px;\n\tmargin: 0 10px 0 0;\n}\n\n.not-scheduled {\n\tvertical-align: top !important;\n\tmargin: 0px !important;\n\tpadding: 0px !important;\n}\n\n.next-backup .updraft_scheduled {\n\t/* width: 124px;*/\n\tmargin: 0px;\n\tpadding: 2px 4px 2px 0px;\n}\n\n#next-backup-table-inner td {\n\tvertical-align: top;\n}\n\n.updraft_all-files {\n\tcolor: blue;\n}\n\n.multisite-advert-width {\n\twidth: 800px;\n}\n\n.updraft_settings_sectionheading {\n\tmargin-top: 6px;\n}\n\n.premium-upgrade-prompt {\n\t/* font-size: 115%; */\n}\n\n.show_admin_restore_in_progress_notice {\n\tpadding: 8px;\n}\n\n.show_admin_restore_in_progress_notice .unfinished-restoration {\n\tfont-size: 120%;\n}\n\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\n\tmargin: 4px 16px 6px 16px;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n}\n\n#backupnow_database_moreoptions {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.form-table #updraft_activejobsrow .minimum-height {\n\tmin-height: 100px;\n}\n\n#updraft_activejobsrow th {\n\tmax-width: 112px;\n\tmargin: 0;\n\tpadding: 13px 0 0 0;\n}\n\n#updraft_lastlogmessagerow .last-message {\n\tpadding-top: 20px;\n\tdisplay: block;\n}\n\n.updraft_simplepie {\n\tvertical-align: top;\n}\n\n.download-backups {\n\tmargin-top: 8px;\n}\n\n.download-backups .updraft_download_button {\n\tmargin-right: 6px;\n}\n\n.download-backups .ud-whitespace-warning, .download-backups .ud-bom-warning {\n\tbackground-color: pink;\n\tpadding: 8px;\n\tmargin: 4px;\n\tborder: 1px dotted;\n}\n\n.download-backups .ul {\n\tlist-style: none inside;\n\tmax-width: 800px;\n\tmargin-top: 6px;\n\tmargin-bottom: 12px;\n}\n\n#updraft-plupload-modal {\n\tmargin: 16px 0;\n}\n\n.download-backups .upload {\n\tmax-width: 610px;\n}\n\n.download-backups #plupload-upload-ui {\n\twidth: 100%;\n}\n\n.ud_downloadstatus {\n\tpadding: 10px 0;\n}\n\n#ud_massactions, #updraft-delete-waitwarning {\n\tpadding: 14px;\n\tbackground: rgb(241, 241, 241);\n\tposition: absolute;\n\tleft: 0;\n\ttop: 100%;\n}\n\n#ud_massactions > *, #updraft-delete-waitwarning > * {\n\tvertical-align: middle;\n}\n\n#ud_massactions .updraftplus-remove {\n\tdisplay: inline-block;\n\tmargin-right: 0;\n}\n\n#ud_massactions .updraftplus-remove a {\n\ttext-decoration: none;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n}\n\nsmall.ud_massactions-tip {\n\tdisplay: inline-block;\n\topacity: 0.5;\n\tfont-style: italic;\n\tmargin-left: 20px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups {\n\tmargin-bottom: 35px;\n\tposition: relative;\n}\n\n#updraft-message-modal-innards {\n\tpadding: 4px;\n}\n\n#updraft-authenticate-modal {\n\ttext-align: center;\n\tfont-size: 16px !important;\n}\n\n#updraft-authenticate-modal p {\n\tfont-size: 16px;\n}\n\n#updraft_delete_form p {\n\tmargin-top: 3px;\n\tpadding-top: 0;\n}\n\n#updraft_restore_form .cannot-restore {\n\tmargin: 8px 0;\n}\n\n#updraft_restorer_dboptions {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder: dashed 1px;\n}\n\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraft_debugrow th {\n\tvertical-align: top;\n\tpadding-top: 6px;\n\tmax-width: 140px;\n}\n\n.expertmode p {\n\tfont-size: 125%;\n}\n\n.expertmode .call-wp-action {\n\twidth: 300px;\n\theight: 22px;\n}\n\n.updraftplus-lock-advert {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.uncompressed-data {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.delete-old-directories {\n\tpadding: 8px;\n\tpadding-bottom: 12px;\n}\n\n.active-jobs {\n\twidth: 100%;\n\ttext-align: center;\n\tpadding: 33px;\n}\n\n.job-id {\n\tmargin-top: 0;\n\tmargin-bottom: 8px;\n}\n\n.next-resumption {\n\tfont-weight: bold;\n}\n\n.updraft_percentage {\n\tz-index: -1;\n\tposition: absolute;\n\tleft: 0px;\n\ttop: 0px;\n\ttext-align: center;\n\tbackground-color: #1D8EC2;\n\ttransition: width 0.3s;\n}\n\n.curstage {\n\tz-index: 1;\n\tborder-radius: 2px;\n\tmargin-top: 8px;\n\twidth: 100%;\n\theight: 26px;\n\tline-height: 26px;\n\tposition: relative;\n\ttext-align: center;\n\tfont-style: italic;\n\tcolor: #FFF;\n\tbackground-color: #B7B7B7;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n}\n\n.curstage-info {\n\tdisplay: inline-block;\n\tz-index: 2;\n}\n\n.retain-files {\n\twidth: 48px;\n}\n\n.backup-interval-description tr td div {\n\tmax-width: 670px;\n}\n\n#updraft-manualdecrypt-modal {\n\twidth: 85%;\n\tmargin: 6px;\n\tmargin-left: 100px;\n}\n\n.directory-permissions {\n\tfont-size: 110%;\n\tfont-weight: bold;\n}\n\n.double-warning {\n\tborder: 1px solid;\n\tpadding: 6px;\n}\n\n.raw-backup-info {\n\tfont-style: italic;\n\tfont-weight: bold;\n\tfont-size: 120%;\n}\n\n.updraft_existingbackup_date {\n\twidth: 22%;\n\tmax-width: 140px;\n}\n\n.updraft_existing_backups_wrapper {\n\tmargin-top: 20px;\n\tborder-top: 1px solid #DDD;\n}\n\n.updraft-no-backups-msg {\n\ttext-align: center;\n}\n\n.tr-bottom-4 {\n\tmargin-bottom: 4px;\n}\n\n.existing-backups-table th {\n\tpadding: 8px 10px;\n}\n\n.form-table .backup-date {\n\twidth: 172px;\n}\n\n.form-table .backup-data {\n\twidth: 426px;\n}\n\n.form-table .updraft_backup_actions {\n\twidth: 272px;\n}\n\n.existing-date {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n\tmax-width: 140px;\n\twidth: 25%;\n}\n\n.line-break-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.line-break-td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.td-line-color {\n\theight: 2px;\n\tbackground-color: #888;\n}\n\n.raw-backup {\n\tmax-width: 140px;\n}\n\n.existing-backups-actions {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border > td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.existing-backups-border > div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.updraft_existing_backup_date {\n\tmax-width: 140px;\n}\n\n.updraftplus-upload {\n\tmargin-right: 6px;\n\tfloat: left;\n\tclear: none;\n}\n\n.before-restore-button {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.before-restore-button div {\n\tfloat: none;\n\tdisplay: inline-block;\n}\n\n.table-separator-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.table-separator-td {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n.end-of-table-div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.last-backup-job {\n\tpadding-top: 3% !important;\n}\n\n.line-height-03 {\n\tline-height: 0.3 !important;\n}\n\n.line-height-13 {\n\tline-height: 1.3 !important;\n}\n\n.line-height-23 {\n\tline-height: 2.3 !important;\n}\n\n#updraft_diskspaceused {\n\tcolor: #DF6926;\n}\n\n#updraft_delete_old_dirs_pagediv {\n\tpadding-bottom: 10px;\n}\n\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\n\tpadding: 0;\n}*/\n\n/* Time + scheduling add-on*/\n.fix-time {\n\twidth: 70px;\n}\n\n.retain-files {\n\twidth: 70px;\n}\n\n.number-input {\n\tmin-width: 50px;\n\tmax-width: 70px;\n}\n\n.additional-rule-width {\n\tmin-width: 60px;\n\tmax-width: 70px;\n}\n\n/* Add-ons */\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\n\n.dashicons {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n.addon-logo-150 {\n\tmargin-left: 30px;\n\tmargin-top: 33px;\n\theight: 125px;\n\twidth: 150px;\n}\n\n.margin-bottom-50 {\n\tmargin-bottom: 50px;\n}\n\n.premium-container {\n\twidth: 80%;\n}\n\n/* Main Header */\n\n.main-header {\n\tbackground-color: #DF6926;\n\theight: 200px;\n\twidth: 100%;\n}\n\n.button-add-to-cart {\n\tcolor: white;\n\tborder-color: white;\n\tfloat: none;\n\tmargin-right: 17px;\n}\n\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\n\tborder-color: #A0A5AA;\n\tcolor: #A0A5AA;\n}\n\n.addon-title {\n\tmargin-top: 25px;\n}\n\n.addon-text {\n\tmargin-top: 75px;\n}\n\n.image-main-div {\n\twidth: 25%;\n\tfloat: left;\n}\n\n.text-main-div {\n\twidth: 60%;\n\tfloat: left;\n\ttext-align: center;\n\tcolor: white;\n\tmargin-top: 16px;\n}\n\n.text-main-div-title {\n\tfont-weight: bold !important;\n\tcolor: white;\n\ttext-align: center;\n}\n\n.text-main-div-paragraph {\n\tcolor: white;\n}\n\n/* End main header */\n\n/* Vault icons */\n\n.updraftplus-vault-cta {\n\twidth: 100%;\n\ttext-align: center;\n\tmargin-bottom: 50px;\n}\n\n.updraftplus-vault-cta h1 {\n\tfont-weight: bold;\n}\n\n.updraftvault-buy {\n\twidth: 225px;\n\theight: 225px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 50px;\n\tposition: relative;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault {\n\twidth: 275px;\n\theight: 275px;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\n\tright: 21%;\n\tfont-size: 16px;\n\tborder-width: 4px !important;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\n\tfont-size: 16px;\n}\n\n.updraftvault-buy .button-purchase {\n\tright: 24%;\n\tmargin-left: 0;\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.right {\n\tmargin-right: 0px;\n}\n\n.updraftvault-buy .addon-logo-100 {\n\theight: 100px;\n\twidth: 125px;\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .addon-logo-large {\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .button-buy-vault {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 29%;\n\tbottom: 2%;\n}\n\n.premium-addon-div .button-purchase {\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy .button-buy-vault:hover {\n\tborder-color: darkgrey;\n\tcolor: darkgrey;\n}\n\n/* End Vault icons */\n\n/* Premium addons */\n\n.premium-addons {\n\tmargin-top: 80px;\n\twidth: 100%;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.addon-list {\n\t/* margin-left: 32px; */\n\tdisplay: table;\n\ttext-align: center;\n}\n\n.premium-addons h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-addons p {\n\ttext-align: center;\n}\n\n.premium-addons .premium-addon-div {\n\twidth: 200px;\n\theight: 250px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 25px;\n\tmargin-top: 25px;\n\ttext-align: center;\n\tposition: relative;\n}\n\n.premium-addons .premium-addon-div p {\n\tmargin-left: 2px;\n\tmargin-right: 2px;\n}\n\n.premium-addons .premium-addon-div img {\n\twidth: auto;\n\theight: 50px;\n\tmargin-top: 7px;\n}\n\n.premium-addons .premium-addon-div .hr-alignment {\n\tmargin-top: 44px;\n}\n\n.premium-addons .premium-addon-div .dropbox-logo {\n\theight: 39px;\n\twidth: 150px;\n}\n\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\n\twidth: 75%;\n\theight: 24px;\n}\n\n.button-purchase {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 25%;\n\tbottom: 2%;\n}\n\n.button-purchase:hover {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n}\n\n.premium-addons .premium-addon-div hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.premium-addon-div p {\n\tfont-style: italic;\n}\n\n.addon-list > .premium-addon-div > .onedrive-fix,\n.addon-list > .premium-addon-div > .azure-logo {\n\tmargin-top: 33px;\n}\n\n.addon-list > .premium-addon-div > .dropbox-fix {\n\tmargin-top: 18px;\n}\n\n/* End premium addons */\n\n\n/* Forgotton something (that is the name of the div rather than a mental note!) */\n\n.premium-forgotton-something {\n\tmargin-top: 5%;\n}\n\n.premium-forgotton-something h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-forgotton-something p {\n\ttext-align: center;\n\tfont-weight: normal;\n}\n\n.premium-forgotton-something .button-faq {\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.premium-forgotton-something .button-faq:hover {\n\tcolor: #777;\n\tborder-color: #777;\n}\n\n/* End of forgotton something */\n\n.updraftplusmethod.updraftvault #vaultlogo {\n\tpadding-left: 40px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option {\n\tfloat: left;\n\twidth: 50%;\n\ttext-align: center;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option div {\n\tclear: right;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .clear-left {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .padding-top-20px {\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .padding-top-14px {\n\tpadding-top: 14px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\n\tfont-size: 18px !important;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\n\tmargin-top: 8px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\n\tmargin-right: 10px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_email {\n\twidth: 280px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_pass {\n\twidth: 200px;\n}\n\n.updraftplusmethod.updraftvault #vault-is-connected {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\tfloat: left;\n\twidth: 33%;\n\ttext-align: center;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\n\tfont-size: 200%;\n\tfont-weight: bold;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\n\tclear: both;\n\tfont-size: 150%;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\n\tclear: both;\n\tfont-size: 115%;\n\tfont-style: italic;\n}\n\n/* Automation Backup Advert by B */\n.autobackup-image {\n/* \tdisplay: inline-block; */\n/*\tmin-width: 10%;\n\tmax-width:25%;*/\n/*\tfloat: left;*/\n\tclear: left;\n\tfloat: left;\n\twidth: 110px;\n\theight: 110px;\n}\n\n.autobackup-description {\n\twidth: 100%;\n}\n\n.advert-description {\n\tfloat: left;\n\tclear: right;\n\tpadding: 4px 10px 8px 10px;\n\twidth: 70%;\n\tclear: right;\n\tvertical-align: top;\n}\n\n.advert-btn {\n\tdisplay: inline-block;\n\tmin-width: 10%;\n\tvertical-align: top;\n\tmargin-bottom: 8px;\n}\n\n.advert-btn:first-of-type {\n\tmargin-top: 25px;\n}\n\n.advert-btn a {\n\tdisplay: block;\n\tcursor: pointer;\n}\n\na.btn-get-started {\n\tbackground: #FFF;\n\tborder: 2px solid #DF6926;\n\tborder-radius: 4px;\n\tcolor: #DF6926;\n\tdisplay: inline-block;\n\tmargin-left: 10px !important;\n\tmargin-bottom: 7px !important;\n\tfont-size: 18px !important;\n\tline-height: 20px;\n\tmin-height: 28px;\n\tpadding: 11px 10px 5px 10px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n}\n\n.circle-dblarrow {\n\tborder: 1px solid #DF6926;\n\tborder-radius: 100%;\n\tdisplay: inline-block;\n\tfont-size: 17px;\n\tline-height: 17px;\n\tmargin-left: 5px;\n\twidth: 20px;\n\theight: 20px;\n\ttext-align: center;\n}\n\n/* End Automation Backup Advert by B */\n/* New Responsive Pretty Advanced Settings */\n.expertmode .advanced_settings_container {\n\theight: auto;\n\toverflow: hidden;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu {\n\tfloat: none;\n\tborder-bottom: 1px solid rgb(204, 204, 204);\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content {\n\tpadding-top: 5px;\n\tfloat: none;\n\twidth: auto;\n\toverflow: auto;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content h3:first-child {\n\tmargin-top: 5px !important;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\n\tdisplay: none;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\n\tdisplay: block;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tpadding: 5px;\n\tcolor: #000;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\n\tfont-size: 16px;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\n\tbackground-color: #EAEAEA;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\n\tbackground-color: #3498DB;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\n\tbackground-color: #72C5FD;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\n\theight: auto !important;\n}\n\ndiv#updraft-wrap a {\n\tcursor: pointer !important;\n}\n\n.updraftcentral_wizard_option {\n\twidth: 45%;\n\tfloat: left;\n\ttext-align: center;\n}\n\n.updraftcentral_wizard_option label {\n\tmargin-bottom: 8px;\n}\n\n#updraftcentral_keys_table {\n\tdisplay: none;\n}\n\n.create_key_container {\n\tborder: 1px solid;\n\tborder-radius: 4px;\n\tpadding: 0 0 6px 6px;\n\tmargin-bottom: 8px;\n}\n\n.updraftcentral_cloud_connect {\n\tborder-radius: 4px;\n\tborder: 1px solid #000;\n\tpadding: 0 20px;\n\tmargin-top: 30px;\n\tbackground-color: #FFF;\n}\n\n.updraftcentral_cloud_error {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #F00;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_info {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #EF8F31;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftplus_spinner.spinner {\n\tpadding-left: 25px;\n\tfloat: none;\n}\n\n.updraftplus_spinner.spinner.visible {\n\tvisibility: visible;\n}\n\n.updraftcentral_cloud_notices .updraftplus_spinner {\n\tmargin-top: -5px;\n}\n\n.updraftcentral-subheading {\n\tfont-size: 14px;\n\tmargin-top: -10px;\n\tmargin-bottom: 20px;\n}\n\n#updraftcentral_cloud_form input#email,\n#updraftcentral_cloud_form input#password {\n\tmin-width: 250px;\n}\n\n.updraftcentral-data-consent {\n\tfont-size: 13px;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_wizard_image {\n\tfloat: left;\n\tmin-width: 100px;\n\tmargin-right: 25px;\n}\n\n.updraftcentral_cloud_wizard {\n\tfloat: left;\n}\n\n.updraftcentral_cloud_clear {\n\tclear: both;\n}\n\n.updraftplus-settings-footer {\n\tmargin-top: 30px;\n}\n\n.updraftplus-top-menu {\n\tpadding: 0.5em;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\tbackground: transparent;\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: none;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_row {\n\tflex-direction: column;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container {\n\twidth: 100%;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\toverflow: inherit;\n}\n\n#updraft_inpage_backup span#updraft_lastlogcontainer {\n\tpadding: 18px;\n\tbackground: #FAFAFA;\n\tdisplay: block;\n\tfont-size: 90%;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup div#updraft_activejobsrow {\n\tbackground: #FAFAFA;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow > div {\n\tbackground: transparent;\n\tpadding: 0;\n}\n\n#updraft_inpage_backup .last-message > strong {\n\tdisplay: block;\n\tmargin-top: 13px;\n}\n\n@media only screen and (min-width: 1024px) {\n\n\t#updraft_activejobsrow .updraft_row {\n\t\tdisplay: flex;\n\t\talign-items: baseline;\n\t}\n\n\t#updraft_activejobsrow .updraft_row .updraft_col {\n\t\tflex: auto;\n\t}\n\n\t#updraft_activejobsrow .updraft_progress_container {\n\t\twidth: calc(100% - 230px);\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\n\t.settings_page_updraftplus input[type=text],\n\t.settings_page_updraftplus input[type=password],\n\t.settings_page_updraftplus input[type=number] {\n\t\t/* border-radius: 4px; */\n\t\tline-height: 1.42;\n\t\t/* border: 1px solid #CCC; */\n\t\theight: 27px;\n\t\tpadding: 2px 6px;\n\t\tcolor: #555;\n\t}\n\n\t.settings_page_updraftplus input[type=\"number\"] {\n\t\theight: 31px;\n\t}\n\n\t#ud_massactions.active, #updraft-delete-waitwarning.active {\n\t\tposition: fixed;\n\t\tbottom: 0;\n\t\tleft: 160px;\n\t\tright: 0;\n\t\ttop: auto;\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n\t}\n\n\tbody.folded #ud_massactions.active, body.folded #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n\t.updraft-after-form-table {\n\t\tmargin-left: 250px;\n\t}\n\n}\n\n@media only screen and (min-width: 782px) and (max-width: 960px) {\n\n\tbody.auto-fold #ud_massactions.active, body.auto-fold #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n}\n\n@media only screen and (max-width: 782px) {\n\n\t#updraft-wrap {\n\t\tmargin-right: 0;\n\t}\n\n\t#updraft-wrap .form-table td {\n\t\tpadding-right: 0;\n\t}\n\n\tlabel.updraft_checkbox {\n\t\tmargin-bottom: 8px;\n\t\tmargin-top: 8px;\n\t\tmargin-left: 36px;\n\t}\n\n\t.updraft_retain_rules {\n\t\tposition: relative;\n\t\tmargin-right: 0;\n\t\tborder: 1px solid #CCC;\n\t\tpadding: 5px;\n\t\tmargin-bottom: -1px;\n\t}\n\n\t.updraft_retain_rules_delete {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttop: 5px;\n\t}\n\n\ta[id*=updraft_retain_] {\n\t\tdisplay: block;\n\t\tpadding: 15px 15px 15px 0;\n\t}\n\n\tlabel.updraft_checkbox > input[type=checkbox] {\n\t\tmargin-left: -33px;\n\t}\n\n\t#updraft-backupnow-button {\n\t\tmargin: 0;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > .updraft_backup_btn_wrapper {\n\t\tpadding-top: 0;\n\t}\n\n\t#ud_massactions, #updraft-delete-waitwarning {\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t}\n\n\t#ud_massactions.active {\n\t\tposition: fixed;\n\t\ttop: auto;\n\t\tbottom: 0;\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t\tbox-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t}\n\n\t#ud_massactions strong {\n\t\tdisplay: block;\n\t\tmargin-bottom: 5px;\n\t}\n\n\tsmall.ud_massactions-tip {\n\t\tdisplay: block;\n\t}\n\n/*\t.advert-description {\n\t\tmin-width: 75%;\n\t\tmargin-bottom: 5px;\n\t}\n\n\t.advert-btn {\n\t\tmargin-top: 15px;\n\t\tmargin-left:86px;\n\t\tmin-width: 100%;\n\t}*/\n\n\t.existing-backups-table .backup_date_label > div {\n\t\tfont-weight: normal;\n\t}\n\n\t.existing-backups-table .backup_date_label .clear-right {\n\t\tdisplay: inline-block;\n\t}\n\n\ttable.widefat.existing-backups-table {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t\tbackground: transparent;\n\t}\n\n\t.existing-backups-table thead {\n\t\tborder: none;\n\t\tclip: rect(0 0 0 0);\n\t\theight: 1px;\n\t\tmargin: -1px;\n\t\toverflow: hidden;\n\t\tpadding: 0;\n\t\tposition: absolute;\n\t\twidth: 1px;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.existing-backups-table tr {\n\t\tdisplay: block;\n\t\tmargin-bottom: .625em;\n\t\tpadding-bottom: 16.625px;\n\t\twidth: 100%;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);\n\t}\n\n\t.existing-backups-table td {\n\t\tborder-bottom: 1px solid #DDD;\n\t\tdisplay: block;\n\t\tfont-size: .9em;\n\t\ttext-align: left;\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: 0;\n\t}\n\n\t.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {\n\t\t/*\n\t\t* aria-label has no advantage, it won't be read inside a table\n\t\tcontent: attr(aria-label);\n\t\t*/\n\t\tcontent: attr(data-label);\n\t\tfont-weight: bold;\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tleft: auto;\n\t\tpadding-bottom: 10px;\n\t\twidth: auto;\n\t\ttext-align: left;\n\t}\n\n\t.existing-backups-table td:last-child {\n\t\tborder-bottom: 0;\n\t}\n\n\t.form-table td.updraft_existingbackup_date {\n\t\twidth: inherit;\n\t\tmax-width: 100%;\n\t}\n\n\t.existing-backups-table td.before-restore-button {\n\t\tmin-height: 36px;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t\twidth: 100%;\n\t}\n\n\t.updraft_progress_container {\n\t\t/* width: 77%; */\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row {\n\t\tposition: relative;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\n\t\tbackground-color: #FFF;\n\t\tborder-left: 4px solid #0572AA;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select) {\n\t\tmargin-left: 50px;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select {\n\t\twidth: 50px !important;\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbox-sizing: border-box;\n\t\theight: 100%;\n\t\tz-index: 1;\n\t\tborder: none;\n\t\tborder-right: 1px solid rgba(0, 0, 0, 0.05);\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups input[type=\"checkbox\"] {\n\t\theight: 25px;\n\t}\n\n\t.updraft_migrate_intro button.button.button-primary.button-hero {\n\t\tdisplay: block;\n\t\tmargin-right: 0;\n\t\twidth: 100%;\n\t\tmax-width: 100%;\n\t}\n\n\t.updraftclone-main-row {\n\t\tflex-direction: column;\n\t}\n\n\t.updraftclone-main-row > div {\n\t\twidth: auto;\n\t\tmax-width: none;\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.form-table th {\n\t\tpadding-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 600px) {\n\t\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t}\n\n\t.updraft_next_scheduled_entity {\n\t\tfloat: none;\n\t\twidth: 100%;\n\t\tmargin-bottom: 2em;\n\t}\n\n\t.updraft_time_now_wrapper {\n\t\tmargin-top: 0;\n\t}\n\n\t#updraft_lastlogmessagerow h3 {\n\t\tmargin-bottom: 5px;\n\t}\n\n\t#updraft_lastlogmessagerow .updraft-log-link {\n\t\tdisplay: block;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 520px) {\n}\n\n@media only screen and (min-width: 768px) {\n\n\t.addon-activation-notice {\n\t\tleft: 20em;\n\t}\n\n\t.existing-backups-table tbody tr:hover {\n\t\tbackground: #F1F1F1;\n\t}\n\n\t.existing-backups-table tbody tr td.before-restore-button {\n\t\tposition: relative;\n\t}\n\n\t.form-table .existing-backups-table thead th.check-column {\n\t\tpadding-left: 6px;\n\t}\n\n\t.existing-backups-table tr td:first-child {\n\t\tborder-left: 4px solid transparent;\n\t}\n\n\t.existing-backups-table tr.backuprowselected td:first-child {\n\t\tborder-left-color: #0572AA;\n\t}\n\n}\n\n@media screen and (min-width: 670px) {\n\t\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\n\t\tfloat: left;\n\t\twidth: 215px;\n\t\tborder-right: 1px solid rgb(204, 204, 204);\n\t\tborder-bottom: none;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_content {\n\t\tpadding-left: 10px;\n\t\tpadding-top: 0px;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\t\tdisplay: block;\n\t}\n\n}\n\n@media only screen and (max-width: 1068px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: calc(50% - 10px);\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: 100px;\n\t}\n\n}\n\n@media only screen and (max-width: 600px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: 100%;\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: auto;\n\t}\n\n\ttable.updraft_feat_table {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table tr {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t}\n\n\ttable.updraft_feat_table td {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table td:first-child {\n\t\twidth: 100%;\n\t\tborder-bottom: none;\n\t}\n\n\ttable.updraft_feat_table td:not(:first-child) {\n\t\twidth: 50%;\n\t\tbox-sizing: border-box;\n\t}\n\n\ttable.updraft_feat_table td:first-child:empty {\n\t\tdisplay: none;\n\t}\n\n\ttd[data-colname]::before {\n\t\tcontent: attr(data-colname);\n\t\tfont-size: 0.8rem;\n\t\tcolor: #CCC;\n\t\tline-height: 1;\n\t}\n\n}\n"]}
1
+ {"version":3,"sources":["css/updraftplus-admin.css"],"names":[],"mappings":"AAAA;;CAEC;EACC,WAAW;EACX,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb,uBAAuB;EACvB;;CAED;;AAED,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;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;CACC,uCAAuC;CACvC;;AAED;CACC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,eAAe;CACf,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED,iBAAiB;AACjB;CACC,aAAa;CACb;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;;CAEC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;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;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;;EAEE;;AAEF;CACC,cAAc;CACd;;AAED,gBAAgB;;AAEhB;CACC,qBAAc;CAAd,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,UAAU;CACV;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,oBAAoB;CACpB,YAAQ;KAAR,QAAQ;CACR;;AAED;CACC,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED,yBAAyB;AACzB;CACC,cAAc;CACd,mBAAmB;CACnB,SAAS;CACT,OAAO;CACP,aAAa;CACb,4BAA4B;CAC5B,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,2BAAuB;KAAvB,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ,8BAAiB;KAAjB,iBAAiB;CACjB;;AAED;;CAEC,YAAY;CACZ;;AAED;;CAEC;EACC,wBAAoB;MAApB,oBAAoB;EACpB,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,6BAAgB;MAAhB,gBAAgB;EAChB;;CAED;;EAEC,aAAa;EACb;;CAED;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,qBAAqB;CACrB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,cAAc;CACd,mBAAmB;CACnB,oBAAoB;CACpB;;AAED,sBAAsB;AACtB;CACC,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,uBAAuB;CACvB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,aAAa;CACb;;AAED,oBAAoB;AACpB;CACC,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,qCAAqC;AACrC;CACC,oBAAoB;CACpB,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,aAAa;;AAEb;CACC,sBAAsB;CACtB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,6BAA6B;AAC7B;CACC,mBAAmB;CACnB,qBAAc;CAAd,cAAc;CACd,2BAAsB;KAAtB,sBAAsB;CACtB,8BAAsB;KAAtB,sBAAsB;CACtB,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB,oBAAoB;CACpB,8BAA8B;CAC9B;;AAED;;CAEC,cAAc;CACd,kBAAkB;CAClB,aAAa;CACb,UAAU;CACV;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,oBAAoB;CACpB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB,qBAAqB;CACrB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,WAAW;CACX,qBAAqB;CACrB;;AAED;;EAEE;AACF;CACC,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB,UAAU;CACV,iBAAiB;CACjB,oBAAoB;CACpB,qBAAqB;CACrB;;AAED;CACC,qBAAqB;CACrB;;AAED;CACC,+BAA+B;CAC/B;;AAED;CACC,6BAA6B;CAC7B;;AAED;CACC,WAAW;CACX,WAAW;CACX;;AAED;CACC,cAAc;CACd,oFAAoF;CACpF,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,oBAAoB;CACpB,iCAAiC;CACjC,iDAAiD;CACjD;;AAED;CACC,wGAAwG;CACxG;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,kEAAkE;CAClE,WAAW;CACX;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,iBAAiB;CACjB,8BAAsB;KAAtB,sBAAsB;CACtB,oBAAgB;KAAhB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB,aAAa;CACb,yBAAyB;CACzB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,mBAAmB;CACnB,+BAA+B;CAC/B,qBAAc;CAAd,cAAc;CACd,sBAAwB;KAAxB,wBAAwB;CACxB,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,UAAU;CACV,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,0FAA0F;CAC1F,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB,oBAAoB;CACpB,gBAAgB;CAChB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,sBAAsB;CACtB,YAAY;CACZ;;GAEE;CACF;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,4BAA4B;CAC5B,+BAA+B;CAC/B,YAAY;CACZ,gBAAgB;CAChB,0CAA0C;CAC1C;;AAED;CACC,oBAAoB;CACpB,6BAA6B;CAC7B,gCAAgC;CAChC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,cAAc;CACd;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,oBAAoB;CACpB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB,YAAY;CACZ,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,iBAAiB;CACjB;;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,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;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;;CAEC,kBAAkB;CAClB,gBAAgB;CAChB,oBAAoB;CACpB,cAAc;CACd,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB,mBAAmB;CACnB,eAAe;CACf;;AAED;;CAEC,sBAAsB;CACtB,iBAAiB;CACjB;;AAED;;;CAGC,yBAAyB;CACzB,iBAAiB;CACjB;;AAED;;CAEC;;EAEC,sBAAsB;EACtB;;CAED;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,aAAa;CACb,kBAAkB;CAClB;;AAED;;;CAGC,eAAe;CACf;;AAED;CACC,eAAe;CACf,kBAAkB;CAClB,gBAAgB;CAChB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,cAAc;CACd;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,cAAc;CACd,cAAc;CACd,uBAAuB;CACvB,mBAAmB;CACnB;;AAED;;;CAGC,aAAa;CACb,iBAAiB;CACjB,aAAa;CACb,wBAAwB;CACxB,mBAAmB;CACnB,SAAS;CACT,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,eAAe;CACf,yBAAyB;CACzB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;;CAEC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B;;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,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,YAAY;CACZ,uBAAuB;CACvB,oBAAoB;CACpB,mBAAmB;CACnB,gBAAgB;CAChB,yCAAyC;CACzC;;AAED;CACC,aAAa;CACb,YAAY;CACZ,aAAa;CACb,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB,OAAO;CACP,WAAW;CACX,2BAA2B;CAC3B,4BAA4B;CAC5B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,YAAY;CACZ,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;;CAEC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,sBAAsB;CACtB,4BAA4B;CAC5B;;AAED;;CAEC,mBAAmB;CACnB,YAAY;CACZ,iBAAiB;CACjB;;AAED,mDAAmD;AACnD;CACC,eAAe;CACf,0BAA0B;CAC1B,mBAAmB;CACnB,yBAAyB;CACzB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;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,oBAAoB;CACpB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,iBAAiB;CACjB,WAAW;CACX,+BAA+B;CAC/B;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,qBAAc;CAAd,cAAc;CACd,uBAAoB;KAApB,oBAAoB;CACpB,uBAA+B;KAA/B,+BAA+B;CAC/B,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,iBAAiB;CACjB,eAAe;CACf,UAAU;CACV,mBAAmB;CACnB,wBAAwB;CACxB,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;;CAEC;EACC,2BAAuB;MAAvB,uBAAuB;EACvB,mBAAmB;EACnB,uBAAoB;MAApB,oBAAoB;EACpB;;CAED;EACC,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,cAAc;CACd,yCAAyC;CACzC,mBAAmB;CACnB;;AAED;CACC,UAAU;CACV;;AAED;CACC,4BAAmB;KAAnB,2BAAmB;KAAnB,mBAAmB;CACnB,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;;EAEE;AACF;CACC,qBAAc;CAAd,cAAc;CACd,wBAAoB;KAApB,oBAAoB;CACpB,oBAAgB;KAAhB,gBAAgB;CAChB,uBAA+B;KAA/B,+BAA+B;CAC/B,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,sBAAsB;CACtB;;AAED;CACC,uBAAuB;CACvB,WAAW;CACX;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;;EAEE;AACF;CACC,iBAAiB;CACjB,UAAU;CACV,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,sCAAsC;CACtC,iBAAiB;CACjB,4BAA4B;CAC5B,uCAAuC;CACvC,qBAAqB;CACrB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,oBAAoB;CACpB;;AAED;;CAEC,4CAA4C;CAC5C,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB;;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,aAAa;CACb,wBAAwB;CACxB,YAAY;CACZ,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd,sBAAsB;CACtB,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED,qBAAqB;AACrB;CACC,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,aAAa;CACb,mBAAmB;CACnB,iBAAiB;CACjB,eAAe;CACf,kBAAkB;CAClB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,oCAAoC;CACpC,+BAA+B;CAC/B,oCAAoC;CACpC;;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;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;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,iBAAiB;CACjB,UAAU;CACV,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,+BAA+B;CAC/B,mBAAmB;CACnB,QAAQ;CACR,UAAU;CACV;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,oBAAoB;CACpB,mBAAmB;CACnB;;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,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,YAAY;CACZ,mBAAmB;CACnB,cAAc;CACd;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX,mBAAmB;CACnB,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,0BAA0B;CAC1B,0CAA0C;CAC1C;;AAED;CACC,sBAAsB;CACtB,WAAW;CACX;;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,2BAA2B;CAC3B;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;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,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,sBAAsB;CACtB;;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,qBAAqB;CACrB;;AAED;;GAEG;;AAEH,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,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;CACC,mBAAmB;CACnB,uBAAuB;CACvB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,4BAA4B;CAC5B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,uBAAuB;CACvB,kBAAkB;CAClB,+BAA+B;CAC/B,uBAAuB;CACvB,oBAAoB;CACpB;;AAED;CACC,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,2BAAuB;KAAvB,uBAAuB;CACvB,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,eAAe;CACf,eAAe;CACf,2CAA2C;CAC3C;;AAED;CACC,oBAAoB;CACpB,2CAA2C;CAC3C;;AAED;CACC,wBAAwB;CACxB,WAAW;CACX;;AAED;CACC,eAAe;CACf,iBAAiB;CACjB;;AAED;;CAEC;EACC,qBAAc;EAAd,cAAc;EACd,yBAAsB;MAAtB,sBAAsB;EACtB;;CAED;EACC,eAAW;MAAX,WAAW;EACX;;CAED;EACC,0BAA0B;EAC1B;;CAED;;AAED;;CAEC;;;EAGC,yBAAyB;EACzB,kBAAkB;EAClB,6BAA6B;EAC7B,aAAa;EACb,iBAAiB;EACjB,YAAY;EACZ;;CAED;EACC,aAAa;EACb;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,YAAY;EACZ,SAAS;EACT,UAAU;EACV,iBAAiB;EACjB,WAAW;EACX,wCAAwC;EACxC;;CAED;EACC,WAAW;EACX;;CAED;EACC,mBAAmB;EACnB;;CAED;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;;AAED;;CAEC;EACC,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,kBAAkB;EAClB;;CAED;EACC,mBAAmB;EACnB,gBAAgB;EAChB,uBAAuB;EACvB,aAAa;EACb,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,SAAS;EACT,SAAS;EACT;;CAED;EACC,eAAe;EACf,0BAA0B;EAC1B;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,UAAU;EACV,eAAe;EACf,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB;;CAED;EACC,gBAAgB;EAChB,UAAU;EACV,UAAU;EACV,YAAY;EACZ,uBAAuB;EACvB,mBAAmB;EACnB,4CAA4C;EAC5C,iBAAiB;EACjB,WAAW;EACX;;CAED;EACC,eAAe;EACf,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf;;AAEF;;;;;;;;;IASI;;CAEH;EACC,oBAAoB;EACpB;;CAED;EACC,sBAAsB;EACtB;;CAED;EACC,UAAU;EACV,iBAAiB;EACjB,wBAAwB;EACxB;;CAED;EACC,aAAa;EACb,oBAAoB;EACpB,YAAY;EACZ,aAAa;EACb,iBAAiB;EACjB,WAAW;EACX,mBAAmB;EACnB,WAAW;EACX,WAAW;EACX,UAAU;EACV;;CAED;EACC,eAAe;EACf,sBAAsB;EACtB,yBAAyB;EACzB,YAAY;EACZ,WAAW;EACX,UAAU;EACV,oBAAoB;EACpB,iBAAiB;EACjB,yCAAyC;EACzC;;CAED;EACC,8BAA8B;EAC9B,eAAe;EACf,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;EACZ,cAAc;EACd,UAAU;EACV;;CAED;EACC;;;IAGE;EACF,0BAA0B;EAC1B,kBAAkB;EAClB,eAAe;EACf,mBAAmB;EACnB,WAAW;EACX,qBAAqB;EACrB,YAAY;EACZ,iBAAiB;EACjB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,iBAAiB;EACjB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,uBAAuB;EACvB,+BAA+B;EAC/B;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,uBAAuB;EACvB,mBAAmB;EACnB,QAAQ;EACR,OAAO;EACP,uBAAuB;EACvB,aAAa;EACb,WAAW;EACX,aAAa;EACb,4CAA4C;EAC5C;;CAED;EACC,aAAa;EACb;;CAED;EACC,eAAe;EACf,gBAAgB;EAChB,YAAY;EACZ,gBAAgB;EAChB;;CAED;EACC,2BAAuB;MAAvB,uBAAuB;EACvB;;CAED;EACC,YAAY;EACZ,gBAAgB;EAChB,gBAAgB;EAChB,oBAAoB;EACpB;;CAED;EACC,qBAAqB;EACrB;;CAED;;AAED;;CAEC;EACC;;CAED;EACC,YAAY;EACZ,YAAY;EACZ,mBAAmB;EACnB;;CAED;EACC,cAAc;EACd;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,eAAe;EACf,YAAY;EACZ,UAAU;EACV,oBAAoB;EACpB;;CAED;;AAED;CACC;;AAED;;CAEC;EACC,WAAW;EACX;;CAED;EACC,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB;;CAED;EACC,kBAAkB;EAClB;;CAED;EACC,mCAAmC;EACnC;;CAED;EACC,2BAA2B;EAC3B;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED;;AAED;;CAEC;EACC,wBAAwB;EACxB,oBAAoB;EACpB;;CAED;EACC,aAAa;EACb;;CAED;;AAED;;CAEC;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,YAAY;EACZ;;CAED;EACC,eAAe;EACf;;CAED;EACC,qBAAc;EAAd,cAAc;EACd,oBAAgB;MAAhB,gBAAgB;EAChB;;CAED;EACC,eAAe;EACf;;CAED;EACC,YAAY;EACZ,oBAAoB;EACpB;;CAED;EACC,WAAW;EACX,uBAAuB;EACvB;;CAED;EACC,cAAc;EACd;;CAED;EACC,4BAA4B;EAC5B,kBAAkB;EAClB,YAAY;EACZ,eAAe;EACf;;CAED","file":"updraftplus-admin.min.css","sourcesContent":["@keyframes udp_blink {\n\n\tfrom {\n\t\topacity: 1;\n\t\ttransform: scale(1);\n\t}\n\n\tto {\n\t\topacity: 0.4;\n\t\ttransform: scale(0.85);\n\t}\n\n}\n\n/* Widths and sizing */\n.max-width-600 {\n\tmax-width: 600px;\n}\n\n.width-900 {\n\tmax-width: 900px;\n}\n\n.width-80 {\n\twidth: 80%;\n}\n\n/* End widths and sizing */\n\n/* Font styling */\n.no-decoration {\n\ttext-decoration: none;\n}\n\n.bold {\n\tfont-weight: bold;\n}\n\n/* End font styling */\n/* Alignment */\n.center-align-td {\n\ttext-align: center;\n}\n\n/* End of Alignment */\n/* Padding */\n.remove-padding {\n\tpadding: 0 !important;\n}\n\n/* End of padding */\n\n.updraft-text-center {\n\ttext-align: center;\n}\n\n.autobackup {\n\tpadding: 6px;\n\tmargin: 8px 0px;\n}\n\nul .disc {\n\tlist-style: disc inside;\n}\n\n.dashicons-log-fix {\n\tdisplay: inherit;\n}\n\n.udpdraft__lifted {\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n}\n\n#updraft-wrap a .dashicons {\n\ttext-decoration: none;\n}\n\n.updraft-field-description,\ntable.form-table td p.updraft-field-description {\n\tfont-size: 90%;\n\tline-height: 1.2;\n\tfont-style: italic;\n\tmargin-bottom: 5px;\n}\n\n/* Input boxes */\nlabel.updraft_checkbox {\n\tdisplay: block;\n\tmargin-bottom: 4px;\n\tmargin-left: 26px;\n}\n\nlabel.updraft_checkbox > input[type=checkbox] {\n\tmargin-left: -25px;\n}\n\ndiv[id*=\"updraft_include_\"] {\n\tmargin-bottom: 9px;\n}\n\n/* Input boxes */\n.settings_page_updraftplus input[type=\"file\"] {\n\tborder: none;\n}\n\n.settings_page_updraftplus .wipe_settings {\n\tpadding-bottom: 10px;\n}\n\n.settings_page_updraftplus input[type=\"text\"] {\n\tfont-size: 14px;\n}\n\n.settings_page_updraftplus select {\n\tborder-radius: 4px;\n\tmax-width: 100%;\n}\n\ninput.updraft_input--wide,\ntextarea.updraft_input--wide {\n\tmax-width: 442px;\n\twidth: 100%;\n}\n\n#updraft-wrap .button-large {\n\tfont-size: 1.3em;\n}\n\n/* End input boxes */\n\n/* Main Buttons */\n.main-dashboard-buttons {\n\tborder-width: 4px;\n\tborder-radius: 12px;\n\tletter-spacing: 0px;\n\tfont-size: 17px;\n\tfont-weight: bold;\n\tpadding-left: 0.7em;\n\tpadding-right: 2em;\n\tpadding: 0.3em 1em;\n\tline-height: 1.7em;\n\tbackground: transparent;\n\tposition: relative;\n\tborder: 2px solid;\n\ttransition: all 0.2s;\n\tvertical-align: baseline;\n\tbox-sizing: border-box;\n\ttext-align: center;\n\tline-height: 1.3em;\n\tmargin-left: .3em;\n\ttext-transform: none;\n\tline-height: 1;\n\ttext-decoration: none;\n}\n\n.button-restore {\n\tborder-color: rgb(98, 158, 192);\n\tcolor: rgb(98, 158, 192);\n}\n\n.dashboard-main-sizing {\n\tborder-width: 4px;\n\twidth: 190px;\n\tline-height: 1.7em;\n}\n\np.updraftplus-option {\n\tmargin-top: 0;\n\tmargin-bottom: 5px;\n}\n\np.updraftplus-option-inline {\n\tdisplay: inline-block;\n\tpadding-right: 20px;\n}\n\nspan.updraftplus-option-label {\n\tdisplay: block;\n}\n\n/*\n* MIGRATE - CLONE\n*/\n\n#updraft-navtab-migrate-content .postbox {\n\tpadding: 18px;\n}\n\n/* Clone Rows */\n\n.updraftclone-main-row {\n\tdisplay: flex;\n}\n\n.updraftclone-tokens {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tmargin-right: 20px;\n\tmax-width: 300px;\n}\n\n.updraftclone-tokens p {\n\tmargin: 0;\n}\n\n.updraftclone_action_box {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 10px;\n\tflex: 1;\n}\n\n.updraftclone_action_box p:first-child {\n\tmargin-top: 0;\n}\n\n.updraftclone_action_box p:last-child {\n\tmargin-bottom: 0;\n}\n\nspan.tokens-number {\n\tfont-size: 46px;\n\tdisplay: block;\n}\n\n/* Clone header button */\n.button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: none;\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\theight: 100%;\n\tborder-left: 1px solid #CCC;\n\tpadding-left: 10px;\n\tpadding-right: 10px;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_container {\n\tdisplay: flex;\n\tflex-direction: column;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box {\n\tmargin-right: 20px;\n\twidth: 100%;\n\tflex-basis: 100%;\n}\n\n.updraft_migrate_widget_temporary_clone_stage0_box iframe,\n.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\n\tfloat: none;\n}\n\n@media (min-width: 1024px) {\n\n\t.updraft_migrate_widget_temporary_clone_stage0_container {\n\t\tflex-direction: row;\n\t\tflex-wrap: wrap;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box {\n\t\tflex-basis: 45%;\n\t}\n\n\t.updraft_migrate_widget_temporary_clone_stage0_box iframe,\n\t.updraft_migrate_widget_temporary_clone_stage0_box a.udp-replace-with-iframe--js {\n\t\tfloat: right;\n\t}\n\n}\n\n.updraft_migrate_widget_temporary_clone_show_stage0 .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tline-height: inherit;\n}\n\n.opened .button.updraft_migrate_widget_temporary_clone_show_stage0 {\n\tdisplay: inline-block;\n}\n\n.opened .updraft_migrate_widget_temporary_clone_stage0 {\n\tbackground: #F5F5F5;\n\tpadding: 20px;\n\tborder-radius: 8px;\n\tmargin-bottom: 21px;\n}\n\n/* Clone list table */\n.clone-list {\n\tclear: both;\n\twidth: 100%;\n\tmargin-top: 40px;\n}\n\n.clone-list table {\n\twidth: 100%;\n\ttext-align: left;\n}\n\n.clone-list table tr th {\n\tbackground: #E4E4E4;\n}\n\n.clone-list table tr td {\n\tbackground: #F5F5F5;\n\tword-break: break-word;\n}\n\n.clone-list table tr:nth-child(odd) td {\n\tbackground: #FAFAFA;\n}\n\n.clone-list table td,\n.clone-list table th {\n\tpadding: 6px;\n}\n\n/* Clone Progress */\n.updraftplus-clone .updraft_row {\n\tpadding-left: 0;\n\tpadding-right: 0;\n}\n\nbutton#updraft_migrate_createclone + .updraftplus_spinner {\n\tmargin-top: 13px;\n}\n\n/* Clone - Show step 1 info button */\n.button.button-hero.updraftclone_show_step_1 {\n\twhite-space: normal;\n\theight: auto;\n\tline-height: 14px;\n\tpadding-top: 10px;\n\tpadding-bottom: 10px;\n}\n\n.button.button-hero.updraftclone_show_step_1 span.dashicons {\n\theight: auto;\n}\n\n.updraftplus_clone_status {\n\tcolor: red;\n}\n\n/* MIGRATE */\n\na.updraft_migrate_add_site--trigger span.dashicons {\n\ttext-decoration: none;\n}\n\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\n.button-view-log:hover, .button-mass-selectors:hover,\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\n\tborder-color: #DF6926;\n\tcolor: #DF6926;\n}\n\n.button-migrate {\n\tcolor: rgb(238, 169, 32);\n\tborder-color: rgb(238, 169, 32);\n}\n\n#updraft_migrate_tab_main {\n\tpadding: 8px;\n}\n\n.updraft_migrate_widget_module_content {\n\tbackground: #FFF;\n\tborder-radius: 0;\n\tposition: relative;\n}\n\nbody.js #updraft_migrate .updraft_migrate_widget_module_content {\n\tdisplay: none;\n}\n\n.updraft_migrate_widget_module_content > h3,\ndiv[class*=\"updraft_migrate_widget_temporary_clone_stage\"] > h3 {\n\tmargin-top: 0;\n}\n\n/* Migrate / Clone headers */\n.updraft_migrate_widget_module_content header {\n\tposition: relative;\n\tdisplay: flex;\n\talign-content: center;\n\tjustify-items: center;\n\tmargin-top: -18px;\n\tmargin-left: -18px;\n\tmargin-right: -18px;\n\tmargin-bottom: 15px;\n\tborder-bottom: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content header h3,\n.updraft_migrate_widget_module_content header button.button.close {\n\tpadding: 10px;\n\tline-height: 20px;\n\theight: auto;\n\tmargin: 0;\n}\n\n.updraft_migrate_widget_module_content button.button.close {\n\ttext-decoration: none;\n\tpadding-left: 5px;\n\tborder-right: 1px solid #CCC;\n}\n\n.updraft_migrate_widget_module_content button.button.close .dashicons {\n\tmargin-top: 1px;\n}\n\n.updraft_migrate_widget_module_content header h3 {\n\tmargin: 0;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero {\n\tmax-width: 235px;\n\tword-wrap: normal;\n\twhite-space: normal;\n\tline-height: 1;\n\theight: auto;\n\tpadding-top: 13px;\n\tpadding-bottom: 13px;\n\ttext-align: left;\n\tposition: relative;\n\tmargin-right: 10px;\n\tmargin-bottom: 10px;\n}\n\n.updraft_migrate_intro button.button.button-primary.button-hero .dashicons {\n\tposition: absolute;\n\tleft: 10px;\n\ttop: calc(50% - 8px);\n}\n\n/*\njquery UI Accordion module\n*/\n#updraft_migrate .ui-widget-content a {\n\tcolor: #1C94C4;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header {\n\tbackground: #F6F6F6;\n\tmargin: 0;\n\tborder-radius: 0;\n\tpadding-left: 0.5em;\n\tpadding-right: 0.7em;\n}\n\n#updraft-wrap .ui-widget {\n\tfont-family: inherit;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-w {\n\tbackground-position: -96px 0px;\n}\n\n.ui-accordion-header .ui-accordion-header-icon.ui-icon-caret-1-s {\n\tbackground-position: -64px 0;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tleft: auto;\n\tright: 5px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px rgba(91, 157, 217, 0.22), 0 0 2px 1px rgba(30, 140, 190, 0.3);\n\tbackground: #FFF;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus .dashicons {\n\tcolor: #0572AA;\n\topacity: 1;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active {\n\tbackground: #F6F6F6;\n\tborder-bottom: 2px solid #0572AA;\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header.ui-state-active:focus {\n\tbox-shadow: 1px 6px 12px -5px rgba(0, 0, 0, 0.3), 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:not(:first-child) {\n\tborder-top: none;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header .dashicons {\n\topacity: 0.4;\n\tmargin-right: 10px;\n}\n\n#updraft-wrap .ui-accordion .ui-accordion-header:focus {\n\toutline: none;\n\tbox-shadow: 0 0 0 1px #5B9DD9, 0 0 2px 1px rgba(30, 140, 190, .8);\n\tz-index: 1;\n}\n\n.updraft_next_scheduled_backups_wrapper {\n\tdisplay: flex;\n\tbackground: #FFF;\n\tjustify-items: center;\n\tflex-wrap: wrap;\n}\n\n.updraft_next_scheduled_backups_wrapper > div {\n\twidth: 50%;\n\tbackground: #FFF;\n\theight: auto;\n\t/* padding: 18px 33px; */\n\tpadding: 33px;\n\tbox-sizing: border-box;\n}\n\n.updraft_backup_btn_wrapper {\n\ttext-align: center;\n\tborder-left: 1px solid #F1F1F1;\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n}\n\n#updraft-delete-waitwarning span.spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tmargin: 0;\n\tmargin-right: 10px;\n}\n\nbutton#updraft-backupnow-button .spinner,\nbutton#updraft-backupnow-button .dashicons-yes {\n\tdisplay: none;\n}\n\nbutton#updraft-backupnow-button.loading .spinner {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tmargin-top: 13px;\n\tmargin-right: 0;\n}\n\nbutton#updraft-backupnow-button.loading {\n\tbackground-color: #EFEFEF;\n\tborder-color: #CCC;\n\ttext-shadow: 0 -1px 1px #BBC3C7, 1px 0 1px #BBC3C7, 0 1px 1px #BBC3C7, -1px 0 1px #BBC3C7;\n\tbox-shadow: none;\n}\n\nbutton#updraft-backupnow-button.finished .dashicons-yes {\n\tdisplay: inline-block;\n\tvisibility: visible;\n\tfont-size: 42px;\n\tmargin-right: 0;\n\tmargin-top: 2px;\n}\n\n.updraft_next_scheduled_entity {\n\twidth: 50%;\n\tdisplay: inline-block;\n\tfloat: left;\n\t/*\n\tpadding: 20px 20px 10px 20px;\n\t*/\n}\n\n.updraft_next_scheduled_entity .dashicons {\n\tcolor: #CCC;\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_entity strong {\n\tfont-size: 20px;\n}\n\n.updraft_next_scheduled_heading {\n\tmargin-bottom: 10px;\n}\n\n.updraft_next_scheduled_date_time {\n\tcolor: #46A84B;\n}\n\n.updraft_time_now_wrapper {\n\tmargin-top: 68px;\n\twidth: 100%;\n}\n\n.updraft_time_now_label, .updraft_time_now {\n\tdisplay: inline-block;\n\tpadding: 7px;\n}\n\n.updraft_time_now_label {\n\tbackground: #B7B7B7;\n\tborder-top-left-radius: 4px;\n\tborder-bottom-left-radius: 4px;\n\tcolor: #FFF;\n\tmargin-right: 0;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);\n}\n\n.updraft_time_now {\n\tbackground: #F1F1F1;\n\tborder-top-right-radius: 4px;\n\tborder-bottom-right-radius: 4px;\n\tmargin-left: -3px;\n}\n\n#updraft_lastlogmessagerow {\n\tmargin: 6px 0;\n}\n\n#updraft_lastlogmessagerow {\n\tclear: both;\n\tpadding: 0.25px 0;\n}\n\n#updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: right;\n\tmargin-top: -2.5em;\n\tmargin-right: 2px;\n}\n\n#updraft_lastlogmessagerow > div {\n\tclear: both;\n\tbackground: #FFF;\n\tpadding: 18px;\n}\n\n#updraft_activejobs_table {\n\toverflow: hidden;\n\twidth: 100%;\n\tbackground: #FAFAFA;\n\tpadding: 0;\n}\n\n.updraft_requeststart {\n\tpadding: 15px 33px;\n\ttext-align: center;\n}\n\n.updraft_requeststart .spinner {\n\tvisibility: visible;\n\tfloat: none;\n\tvertical-align: middle;\n\tmargin-top: -2px;\n}\n\na.updraft_jobinfo_delete.disabled {\n\topacity: 0.4;\n\tcolor: inherit;\n\ttext-decoration: none;\n}\n\n.updraft_row {\n\tclear: both;\n\ttransition: 0.3s all;\n\tpadding: 15px 33px;\n}\n\n.updraft_row.deleting {\n\topacity: 0.4;\n}\n\n.updraft_progress_container {\n\t/* width: 83%; */\n}\n\n.updraft_existing_backups_count {\n\tpadding: 2px 8px;\n\tfont-size: 12px;\n\tbackground: #CA4A1E;\n\tcolor: #FFF;\n\tfont-weight: bold;\n\tborder-radius: 10px;\n}\n\n.form-table .existing-backups-table input[type=\"checkbox\"] {\n\tborder-radius: 0;\n}\n\n.form-table .existing-backups-table .check-column {\n\twidth: 40px;\n\tpadding: 0;\n\tpadding-top: 8px;\n}\n\n.existing-backups-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.existing-backups-restore-buttons {\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 3px;\n}\n\n.button-delete {\n\tcolor: #E23900;\n\tborder-color: #E23900;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 10px;\n}\n\n.button-view-log, .button-mass-selectors {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-top: -1px;\n}\n\n.button-view-log {\n\twidth: 120px;\n}\n\n.button-existing-restore {\n\tfont-size: 14px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\twidth: 110px;\n}\n\n.main-restore {\n\tmargin-right: 3%;\n\tmargin-left: 3%;\n}\n\n.button-entity-backup {\n\tcolor: #555;\n\tborder-color: #555;\n\tfont-size: 11px;\n\tline-height: 1.4em;\n\tborder-width: 2px;\n\tmargin-right: 5px;\n}\n\n.button-select-all {\n\twidth: 122px;\n}\n\n.button-deselect {\n\twidth: 92px;\n}\n\n#ud_massactions > .display-flex > .mass-selectors-margins, #updraft-delete-waitwarning > .display-flex > .mass-selectors-margins {\n\tmargin-right: -4px;\n}\n\n.udp-button-primary {\n\tborder-width: 4px;\n\tcolor: #0073AA;\n\tborder-color: #0073AA;\n\tfont-size: 14px;\n\theight: 40px;\n}\n\n#ud_massactions .button-delete {\n\tmargin-right: 0px;\n}\n\n.stored_local {\n\tborder-radius: 5px;\n\tbackground-color: #007FE7;\n\tpadding: 3px 5px 5px 5px;\n\tcolor: #FFF;\n\tfont-size: 75%;\n}\n\nspan#updraft_lastlogcontainer {\n\tword-break: break-all;\n}\n\n.stored_icon {\n\theight: 1.3em;\n\tposition: relative;\n\ttop: 0.2em;\n}\n\n.backup_date_label > * {\n\tvertical-align: middle;\n}\n\n.backup_date_label .dashicons {\n\tfont-size: 18px;\n}\n\n.backup_date_label .clear-right {\n\tclear: right;\n}\n\n.existing-backups-table .backup_date_label > div {\n\tfont-weight: bold;\n}\n\n/* End Main Buttons */\n\n/* End of common elements */\n\n.udp-logo-70 {\n\twidth: 70px;\n\theight: 70px;\n\tfloat: left;\n\tpadding-right: 25px;\n}\n\nh3 .thank-you {\n\tmargin-top: 0px;\n}\n\n.ws_advert {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n.dismiss-dash-notice {\n\tfloat: right;\n\tposition: relative;\n\ttop: -20px;\n}\n\n.updraft_exclude_container,\n.updraft_include_container {\n\tmargin-left: 24px;\n\tmargin-top: 5px;\n\tmargin-bottom: 10px;\n\tpadding: 15px;\n\tborder: 1px solid #DDD;\n}\n\nlabel.updraft-exclude-label {\n\tfont-weight: 500;\n\tmargin-bottom: 5px;\n\tdisplay: block;\n}\n\n.updraft_add_exclude_item,\n#updraft_include_more_paths_another {\n\tdisplay: inline-block;\n\tmargin-top: 10px;\n}\n\ninput.updraft_exclude_entity_field,\n.form-table td input.updraft_exclude_entity_field,\n.updraftplus-morefiles-row input[type=text] {\n\twidth: calc(100% - 70px);\n\tmax-width: 400px;\n}\n\n@media screen and (max-width: 782px) {\n\n\t.form-table td input.updraft_exclude_entity_field,\n\t.form-table td .updraftplus-morefiles-row input[type=text] {\n\t\tdisplay: inline-block;\n\t}\n\n}\n\n.updraft_exclude_entity_delete.dashicons, .updraft_exclude_entity_edit.dashicons, .updraft_exclude_entity_update.dashicons, .updraftplus-morefiles-row a.dashicons {\n\tmargin-top: 2px;\n\tfont-size: 20px;\n\tbox-shadow: none;\n\tline-height: 1;\n\tpadding: 3px;\n\tmargin-right: 4px;\n}\n\n.updraft_exclude_entity_delete,\n.updraft_exclude_entity_delete:hover,\n.updraftplus-morefiles-row-delete {\n\tcolor: #FF6347;\n}\n\n.updraft_exclude_entity_update.dashicons, .updraft_exclude_entity_update.dashicons:hover {\n\tcolor: #008000;\n\tfont-weight: bold;\n\tfont-size: 22px;\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_edit {\n\tmargin-left: 4px;\n}\n\n.updraft_exclude_entity_update.is-active ~ .updraft_exclude_entity_delete {\n\tdisplay: none;\n}\n\n.updraft-exclude-panel-heading {\n\tmargin-bottom: 8px;\n}\n\n.updraft-exclude-panel-heading h3 {\n\tmargin: 0.5em 0 0.5em 0;\n}\n\n.updraft-exclude-submit.button-primary {\n\tmargin-top: 5px;\n}\n\n.updraft_exclude_actions_list {\n\tfont-weight: bold;\n}\n\n.updraft-exclude-link {\n\tcursor: pointer;\n}\n\n#updraft_include_more_options {\n\tpadding-left: 25px;\n}\n\n#updraft_report_cell .updraft_reportbox,\n.updraft_small_box {\n\tpadding: 12px;\n\tmargin: 8px 0;\n\tborder: 1px solid #CCC;\n\tposition: relative;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete,\n.updraft_box_delete_button,\n.updraft_small_box .updraft_box_delete_button {\n\tpadding: 4px;\n\tpadding-top: 6px;\n\tborder: none;\n\tbackground: transparent;\n\tposition: absolute;\n\ttop: 4px;\n\tright: 4px;\n\tcursor: pointer;\n}\n\n#updraft_report_cell button.updraft_reportbox_delete:hover {\n\tcolor: #DE3C3C;\n}\n\na.updraft_report_another .dashicons {\n\ttext-decoration: none;\n\tmargin-top: 2px;\n}\n\n.updraft_report_dbbackup.updraft_report_disabled {\n\tcolor: #CCC;\n}\n\n#updraft-navtab-settings-content .updraft-test-button {\n\tfont-size: 18px !important;\n}\n\n#updraft_report_cell .updraft_report_email {\n\tdisplay: block;\n\twidth: calc(100% - 50px);\n\tmargin-bottom: 9px;\n}\n\n#updraft_report_cell .updraft_report_another_p {\n\tclear: left;\n}\n\n/* Taken straight from admin.php */\n\n#updraft-navtab-settings-content table.form-table p {\n\tmax-width: 700px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected,\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected td {\n\tbackground-color: #EFEFEF;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected:nth-child(even) td {\n\tbackground-color: #E8E8E8;\n}\n\n.updraft_settings_sectionheading {\n\tdisplay: none;\n}\n\n.updraft-backupentitybutton-disabled {\n\tbackground-color: transparent;\n\tborder: none;\n\tcolor: #0074A2;\n\ttext-decoration: underline;\n\tcursor: pointer;\n\tclear: none;\n\tfloat: left;\n}\n\n.updraft-backupentitybutton {\n\tmargin-left: 8px;\n}\n\n.updraft-bigbutton {\n\tpadding: 2px 0px !important;\n\tmargin-right: 14px !important;\n\tfont-size: 22px !important;\n\tmin-height: 32px;\n\tmin-width: 180px;\n}\n\ntr[class*=\"_updraft_remote_storage_border\"] {\n\tborder-top: 1px solid #CCC;\n}\n\n.updraft_multi_storage_options {\n\tfloat: right;\n\tclear: right;\n\tmargin-bottom: 5px !important;\n}\n\n.updraft_toggle_instance_label {\n\tvertical-align: top !important;\n}\n\n.updraft_debugrow th {\n\tfloat: right;\n\ttext-align: right;\n\tfont-weight: bold;\n\tpadding-right: 8px;\n\tmin-width: 140px;\n}\n\n.updraft_debugrow td {\n\tmin-width: 300px;\n\tvertical-align: bottom;\n}\n\n#updraft_webdav_host_error, .onedrive_folder_error {\n\tcolor: red;\n}\n\n/* jstree styles */\n\n/* these styles hide the dots from the parent but keep the arrows */\n.updraft_jstree .jstree-container-ul > .jstree-node,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\n\tbackground: transparent;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\n\tbackground-position: -36px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\n\tbackground-position: -4px -4px;\n}\n\n.updraft_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\n\tbackground: transparent;\n}\n\n/* zip browser jstree styles */\n#updraft_zip_files_container {\n\tposition: relative;\n\theight: 450px;\n\toverflow: none;\n}\n\n.updraft_jstree_info_container {\n\tposition: relative;\n\theight: auto;\n\twidth: 100%;\n\tborder: 1px dotted;\n\tmargin-bottom: 5px;\n}\n\n.updraft_jstree_info_container p {\n\tmargin: 1px;\n\tpadding-left: 10px;\n\tfont-size: 14px;\n}\n\n#updraft_zip_download_item {\n\tdisplay: none;\n\tcolor: #0073AA;\n\tpadding-left: 10px;\n}\n\n#updraft_zip_download_notice {\n\tpadding-left: 10px;\n}\n\n#updraft_exclude_files_folders_jstree {\n\tmax-height: 200px;\n\toverflow-y: scroll;\n}\n\n.updraft_jstree {\n\tposition: relative;\n\tborder: 1px dotted;\n\theight: 80%;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n/* More files jstree styles */\n#updraft_more_files_container {\n\tposition: relative;\n\tdisplay: none;\n\twidth: 100%;\n\tborder: 1px solid #CCC;\n\tbackground: #FAFAFA;\n\tmargin-bottom: 5px;\n\tmargin-top: 4px;\n\tbox-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);\n}\n\ndiv#updraft_more_files_container::before {\n\tcontent: ' ';\n\twidth: 11px;\n\theight: 11px;\n\tdisplay: block;\n\tbackground: #FAFAFA;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 20px;\n\tborder-top: 1px solid #CCC;\n\tborder-left: 1px solid #CCC;\n\ttransform: translatey(-7px) rotate(45deg);\n}\n\ninput.updraft_more_path_editing {\n\tborder-color: #0285BA;\n}\n\ninput.updraft_more_path_editing ~ a.dashicons {\n\tdisplay: none;\n}\n\n#updraft_jstree_buttons {\n\tpadding: 10px;\n\tbackground: #E6E6E6;\n}\n\n#updraft_jstree_container {\n\theight: 300px;\n\twidth: 100%;\n\toverflow: auto;\n}\n\n#updraft_more_files_container button {\n\tline-height: 20px;\n}\n\n#updraft_parent_directory {\n\tmargin: 10px 10px 4px 10px;\n\tpadding-left: 3px;\n}\n\n#updraft_jstree_confirm, #updraft_jstree_cancel {\n\tdisplay: none;\n}\n\n.updraftplus-morefiles-row-delete,\n.updraftplus-morefiles-row-edit {\n\tcursor: pointer;\n}\n\n#updraft-wrap .form-table th {\n\twidth: 230px;\n}\n\n#updraft-wrap .form-table .existing-backups-table th {\n\twidth: auto;\n}\n\n.updraft-viewlogdiv form {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraft-viewlogdiv {\n\tdisplay: inline-block;\n}\n\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\n\tborder: none;\n\tbackground-color: transparent;\n\tcolor: #000;\n\tmargin: 0px;\n\tpadding: 3px 4px;\n\tfont-size: 16px;\n\tline-height: 26px;\n}\n\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\n\tcolor: #FFF;\n\tcursor: pointer;\n}\n\n.button.button-remove {\n\tcolor: white;\n\tbackground-color: #DE3C3C;\n\tborder-color: #C00000;\n\tbox-shadow: 0 1px 0 #C10100;\n}\n\n.button.button-remove:hover,\n.button.button-remove:focus {\n\tborder-color: #C00;\n\tcolor: #FFF;\n\tbackground: #C00;\n}\n\n/* button-remove colors for midnight admin theme */\nbody.admin-color-midnight .button.button-remove {\n\tcolor: #DE3C3C;\n\tbackground-color: #F7F7F7;\n\tborder-color: #CCC;\n\tbox-shadow: 0 1px 0 #CCC;\n}\n\nbody.admin-color-midnight .button.button-remove:hover, body.admin-color-midnight .button.button-remove:focus {\n\tborder-color: #BA281F;\n}\n\nbody.admin-color-midnight .button.button-remove:focus {\n\tbox-shadow: inherit;\n\tbox-shadow: 0 0 3px rgba(0, 115, 170, 0.8);\n}\n\n.drag-drop #drag-drop-area2 {\n\tborder: 4px dashed #DDD;\n\theight: 200px;\n}\n\n#drag-drop-area2 .drag-drop-inside {\n\tmargin: 36px auto 0;\n\twidth: 350px;\n}\n\n#filelist, #filelist2 {\n\twidth: 100%;\n}\n\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tpadding: 1px;\n\tbackground: #ECECEC;\n\tborder: solid 1px #CCC;\n\tmargin: 4px 0;\n}\n\n.updraft_premium section {\n\tmargin-bottom: 20px;\n}\n\n/*\n\tCall to action Premium\n*/\n.updraft_premium_cta {\n\tbackground: #FFF;\n\tmargin-top: 30px;\n\tpadding: 0;\n\tborder-left: 4px solid #DB6A03;\n}\n\n.updraft_premium_cta a {\n\tfont-weight: normal;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero {\n\tfont-size: 1.3em;\n\tletter-spacing: 0.03rem;\n\ttext-transform: uppercase;\n}\n\n.updraft_premium_cta__top {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tpadding: 18px 30px;\n}\n\n.updraft_premium_cta__bottom {\n\tbackground: #F9F9F9;\n\tpadding: 5px 30px;\n}\n\n.updraft_premium_cta__summary {\n\tmargin-right: 60px;\n}\n\n.updraft_premium_cta h2 {\n\tfont-size: 28px;\n\tfont-weight: 200;\n\tline-height: 1;\n\tmargin: 0;\n\tmargin-bottom: 5px;\n\tletter-spacing: 0.05rem;\n\tcolor: #DB6A03;\n}\n\n.updraft_premium_cta ul li::after {\n\tcolor: #CCC;\n}\n\n@media only screen and (max-width: 768px) {\n\n\t.updraft_premium_cta__top {\n\t\tflex-direction: column;\n\t\ttext-align: center;\n\t\talign-items: center;\n\t}\n\n\t.updraft_premium_cta__summary {\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 30px;\n\t}\n\n}\n\n/*\n\tBox\n*/\n.udp-box {\n\tbackground: #FFF;\n\tpadding: 20px;\n\tbox-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);\n\ttext-align: center;\n}\n\n.udp-box h3 {\n\tmargin: 0;\n}\n\n.udp-box__heading {\n\talign-self: center;\n\tbackground: none;\n\tbox-shadow: none;\n}\n\n/*\n\tOther Plugins\n*/\n.updraft-more-plugins {\n\tdisplay: flex;\n\tflex-direction: row;\n\tflex-wrap: wrap;\n\tjustify-content: space-between;\n\tflex-wrap: wrap;\n}\n\n.updraft-more-plugins img {\n\tmax-width: 200px;\n\twidth: 100%;\n\tdisplay: inline-block;\n}\n\n.updraft-more-plugins .udp-box {\n\tbox-sizing: border-box;\n\twidth: 24%;\n}\n\n.updraft-more-plugins .udp-box p:last-child {\n\tmargin-bottom: 0;\n\tpadding-bottom: 0;\n}\n\n/*\n\tlinks list\n*/\n.updraft_premium_description_list {\n\ttext-align: left;\n\tmargin: 0;\n\tfont-size: 12px;\n}\n\nul.updraft_premium_description_list, ul#updraft_restore_warnings {\n\tlist-style: disc inside;\n}\n\nul.updraft_premium_description_list li {\n\tdisplay: inline;\n}\n\nul.updraft_premium_description_list li::after {\n\tcontent: \" | \";\n}\n\nul.updraft_premium_description_list li:last-child::after {\n\tcontent: \"\";\n}\n\n.updraft_feature_cell {\n\tbackground-color: #F7D9C9 !important;\n\tpadding: 5px 10px;\n}\n\n.updraftplus_com_login_status, .updraftplus_com_key_status {\n\tdisplay: none;\n\tborder-left-color: #DC3232 !important;\n\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tbox-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n\tmargin: 5px 0 15px 0;\n\tpadding: 5px 12px;\n}\n\n.updraft_feat_table {\n\tborder: none;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n}\n\n.updraft_feat_th, .updraft_feat_table td {\n\tborder: 1px solid #F1F1F1;\n\tborder-collapse: collapse;\n\tfont-size: 120%;\n\tbackground-color: white;\n\ttext-align: center;\n\tpadding: 15px;\n}\n\n.updraft_feat_table td {\n\tborder-bottom-width: 4px;\n}\n\n.updraft_feat_table td:first-child {\n\tborder-left: none;\n}\n\n.updraft_feat_table td:last-child {\n\tborder-right: none;\n}\n\n.updraft_feat_table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.updraft_feat_table td:nth-child(2),\n.updraft_feat_table td:nth-child(3) {\n\tbackground-color: rgba(241, 241, 241, 0.38);\n\twidth: 190px;\n}\n\n.updraft_feat_table__header td img {\n\tdisplay: block;\n\tmargin: 0 auto;\n}\n\n.updraft_feat_table__header td {\n\ttext-align: center;\n}\n\n.updraft_feat_table .installed {\n\tfont-size: 14px;\n}\n\n.updraft_feat_table p {\n\tpadding: 0px 10px;\n\tmargin: 5px 0px;\n\tfont-size: 13px;\n}\n\n.updraft_feat_table h4 {\n\tmargin: 5px 0px;\n}\n\n.updraft_feat_table .dashicons {\n\twidth: 25px;\n\theight: 25px;\n\tfont-size: 25px;\n\tline-height: 1;\n}\n\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\n\tcolor: green;\n}\n\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\n\tcolor: red;\n}\n\n.updraft_tick_cell {\n\ttext-align: center;\n}\n\n.updraft_tick_cell img {\n\tmargin: 4px 0;\n\theight: 24px;\n}\n\n.ud_downloadstatus__close {\n\tborder: none;\n\tbackground: transparent;\n\twidth: auto;\n\tfont-size: 20px;\n\tpadding: 0;\n\tcursor: pointer;\n}\n\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\n\twidth: 0%;\n\tbackground: #0572AA;\n\theight: 8px;\n}\n\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\n\tmargin-top: 8px;\n\tclear: left;\n}\n\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\n\tmargin-top: 8px;\n}\n\ndiv[class^=\"updraftplus_downloader_container_\"] {\n\tpadding: 10px;\n}\n\ntr.updraftplusmethod h3 {\n\tmargin: 0px;\n}\n\ntr.updraftplusmethod img {\n\tmax-width: 100%;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\n\tcursor: pointer;\n\tcolor: red;\n\tfont-size: 120%;\n\tfont-weight: bold;\n\tborder: 0px;\n\tborder-radius: 3px;\n\tpadding: 2px;\n\tmargin: 0 6px;\n\ttext-decoration: none;\n\tdisplay: inline-block;\n}\n\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\n\tcursor: pointer;\n\tcolor: white;\n\tbackground: red;\n}\n\n#updraft_backup_started {\n\tmax-width: 800px;\n\tfont-size: 140%;\n\tline-height: 140%;\n\tpadding: 14px;\n\tclear: left;\n}\n\n/* backup finished */\n.blockUI.blockOverlay.ui-widget-overlay {\n\tbackground: #000;\n}\n\n.updraft_success_popup {\n\ttext-align: center;\n\tpadding-bottom: 30px;\n}\n\n.updraft_success_popup > .dashicons {\n\tfont-size: 100px;\n\twidth: 100px;\n\theight: 100px;\n\tline-height: 100px;\n\tpadding: 0px;\n\tborder-radius: 50%;\n\tmargin-top: 30px;\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n\tbackground: #E2E6E5;\n}\n\n.updraft_success_popup > .dashicons.dashicons-yes {\n\ttext-indent: -5px;\n}\n\n.updraft_success_popup.success > .dashicons {\n\tcolor: green;\n}\n\n.updraft_success_popup.warning > .dashicons {\n\tcolor: #888;\n}\n\n.updraft_success_popup--message {\n\tpadding: 20px;\n}\n\n.button.updraft-close-overlay .dashicons {\n\ttext-decoration: none;\n\tfont-size: 20px;\n\tmargin-left: -5px;\n\tpadding: 0;\n}\n\n.updraft_saving_popup img {\n\tanimation-name: udp_blink;\n\tanimation-duration: 610ms;\n\tanimation-iteration-count: infinite;\n\tanimation-direction: alternate;\n\tanimation-timing-function: ease-out;\n}\n\n.udp-premium-image {\n\tdisplay: none;\n}\n\n@media screen and (min-width: 720px) {\n\n\t.udp-premium-image {\n\t\tdisplay: block;\n\t\tfloat: left;\n\t\tpadding-right: 5px;\n\t}\n\n}\n\n/* End stuff already in admin.php */\n#plupload-upload-ui2 {\n\twidth: 80%;\n}\n\n.backup-restored {\n\tpadding: 8px;\n}\n\n.backup-restored span {\n\tfont-size: 120%;\n}\n\n.memory-limit {\n\tpadding: 8px;\n}\n\n.updraft_list_errors {\n\tpadding: 8px;\n}\n\n/*.nav-tab {\n\tborder-radius: 20px 20px 0 0;\n\tborder-color: grey;\n\tborder-width: 2px;\n\tmargin-top: 34px;\n}\n\n.nav-tab:hover {\n\tborder-bottom: 0;\n}\n\n.nav-tab-active, .nav-tab-active:active {\n\tcolor: #df6926;\n\tborder-color: #D3D3D3;\n\tborder-width: 1px;\n\tborder-bottom: 0;\n}\n\n.nav-tab-active:focus {\n\tcolor: #df6926;\n}*/\n\n.nav-tab-wrapper {\n\tmargin: 14px 0px;\n}\n\n#updraft-poplog-content {\n\twhite-space: pre-wrap;\n}\n\n.next-backup {\n\tborder: 0px;\n\tpadding: 0px;\n\tmargin: 0 10px 0 0;\n}\n\n.not-scheduled {\n\tvertical-align: top !important;\n\tmargin: 0px !important;\n\tpadding: 0px !important;\n}\n\n.next-backup .updraft_scheduled {\n\t/* width: 124px;*/\n\tmargin: 0px;\n\tpadding: 2px 4px 2px 0px;\n}\n\n#next-backup-table-inner td {\n\tvertical-align: top;\n}\n\n.updraft_all-files {\n\tcolor: blue;\n}\n\n.multisite-advert-width {\n\twidth: 800px;\n}\n\n.updraft_settings_sectionheading {\n\tmargin-top: 6px;\n}\n\n.premium-upgrade-prompt {\n\t/* font-size: 115%; */\n}\n\n.show_admin_restore_in_progress_notice {\n\tpadding: 8px;\n}\n\n.show_admin_restore_in_progress_notice .unfinished-restoration {\n\tfont-size: 120%;\n}\n\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\n\tmargin: 4px 16px 6px 16px;\n\tborder: 1px dotted;\n\tpadding: 6px 10px;\n}\n\n#backupnow_database_moreoptions {\n\tmax-height: 250px;\n\toverflow: auto;\n}\n\n.form-table #updraft_activejobsrow .minimum-height {\n\tmin-height: 100px;\n}\n\n#updraft_activejobsrow th {\n\tmax-width: 112px;\n\tmargin: 0;\n\tpadding: 13px 0 0 0;\n}\n\n#updraft_lastlogmessagerow .last-message {\n\tpadding-top: 20px;\n\tdisplay: block;\n}\n\n.updraft_simplepie {\n\tvertical-align: top;\n}\n\n.download-backups {\n\tmargin-top: 8px;\n}\n\n.download-backups .updraft_download_button {\n\tmargin-right: 6px;\n}\n\n.download-backups .ud-whitespace-warning, .download-backups .ud-bom-warning {\n\tbackground-color: pink;\n\tpadding: 8px;\n\tmargin: 4px;\n\tborder: 1px dotted;\n}\n\n.download-backups .ul {\n\tlist-style: none inside;\n\tmax-width: 800px;\n\tmargin-top: 6px;\n\tmargin-bottom: 12px;\n}\n\n#updraft-plupload-modal {\n\tmargin: 16px 0;\n}\n\n.download-backups .upload {\n\tmax-width: 610px;\n}\n\n.download-backups #plupload-upload-ui {\n\twidth: 100%;\n}\n\n.ud_downloadstatus {\n\tpadding: 10px 0;\n}\n\n#ud_massactions, #updraft-delete-waitwarning {\n\tpadding: 14px;\n\tbackground: rgb(241, 241, 241);\n\tposition: absolute;\n\tleft: 0;\n\ttop: 100%;\n}\n\n#ud_massactions > *, #updraft-delete-waitwarning > * {\n\tvertical-align: middle;\n}\n\n#ud_massactions .updraftplus-remove {\n\tdisplay: inline-block;\n\tmargin-right: 0;\n}\n\n#ud_massactions .updraftplus-remove a {\n\ttext-decoration: none;\n}\n\n#ud_massactions .updraft-viewlogdiv a {\n\ttext-decoration: none;\n\tposition: relative;\n}\n\nsmall.ud_massactions-tip {\n\tdisplay: inline-block;\n\topacity: 0.5;\n\tfont-style: italic;\n\tmargin-left: 20px;\n}\n\n#updraft-navtab-backups-content .updraft_existing_backups {\n\tmargin-bottom: 35px;\n\tposition: relative;\n}\n\n#updraft-message-modal-innards {\n\tpadding: 4px;\n}\n\n#updraft-authenticate-modal {\n\ttext-align: center;\n\tfont-size: 16px !important;\n}\n\n#updraft-authenticate-modal p {\n\tfont-size: 16px;\n}\n\n#updraft_delete_form p {\n\tmargin-top: 3px;\n\tpadding-top: 0;\n}\n\n#updraft_restore_form .cannot-restore {\n\tmargin: 8px 0;\n}\n\n#updraft_restorer_dboptions {\n\tpadding: 12px;\n\tmargin: 8px 0 4px 0;\n\tborder: dashed 1px;\n}\n\n#updraft_restorer_dboptions h4 {\n\tmargin: 0px 0px 6px 0px;\n\tpadding: 0px;\n}\n\n.updraft_debugrow th {\n\tvertical-align: top;\n\tpadding-top: 6px;\n\tmax-width: 140px;\n}\n\n.expertmode p {\n\tfont-size: 125%;\n}\n\n.expertmode .call-wp-action {\n\twidth: 300px;\n\theight: 22px;\n}\n\n.updraftplus-lock-advert {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.uncompressed-data {\n\tclear: left;\n\tmax-width: 600px;\n}\n\n.delete-old-directories {\n\tpadding: 8px;\n\tpadding-bottom: 12px;\n}\n\n.active-jobs {\n\twidth: 100%;\n\ttext-align: center;\n\tpadding: 33px;\n}\n\n.job-id {\n\tmargin-top: 0;\n\tmargin-bottom: 8px;\n}\n\n.next-resumption {\n\tfont-weight: bold;\n}\n\n.updraft_percentage {\n\tz-index: -1;\n\tposition: absolute;\n\tleft: 0px;\n\ttop: 0px;\n\ttext-align: center;\n\tbackground-color: #1D8EC2;\n\ttransition: width 0.3s;\n}\n\n.curstage {\n\tz-index: 1;\n\tborder-radius: 2px;\n\tmargin-top: 8px;\n\twidth: 100%;\n\theight: 26px;\n\tline-height: 26px;\n\tposition: relative;\n\ttext-align: center;\n\tfont-style: italic;\n\tcolor: #FFF;\n\tbackground-color: #B7B7B7;\n\ttext-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n}\n\n.curstage-info {\n\tdisplay: inline-block;\n\tz-index: 2;\n}\n\n.retain-files {\n\twidth: 48px;\n}\n\n.backup-interval-description tr td div {\n\tmax-width: 670px;\n}\n\n#updraft-manualdecrypt-modal {\n\twidth: 85%;\n\tmargin: 6px;\n\tmargin-left: 100px;\n}\n\n.directory-permissions {\n\tfont-size: 110%;\n\tfont-weight: bold;\n}\n\n.double-warning {\n\tborder: 1px solid;\n\tpadding: 6px;\n}\n\n.raw-backup-info {\n\tfont-style: italic;\n\tfont-weight: bold;\n\tfont-size: 120%;\n}\n\n.updraft_existingbackup_date {\n\twidth: 22%;\n\tmax-width: 140px;\n}\n\n.updraft_existing_backups_wrapper {\n\tmargin-top: 20px;\n\tborder-top: 1px solid #DDD;\n}\n\n.updraft-no-backups-msg {\n\ttext-align: center;\n}\n\n.tr-bottom-4 {\n\tmargin-bottom: 4px;\n}\n\n.existing-backups-table th {\n\tpadding: 8px 10px;\n}\n\n.form-table .backup-date {\n\twidth: 172px;\n}\n\n.form-table .backup-data {\n\twidth: 426px;\n}\n\n.form-table .updraft_backup_actions {\n\twidth: 272px;\n}\n\n.existing-date {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n\tmax-width: 140px;\n\twidth: 25%;\n}\n\n.line-break-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.line-break-td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.td-line-color {\n\theight: 2px;\n\tbackground-color: #888;\n}\n\n.raw-backup {\n\tmax-width: 140px;\n}\n\n.existing-backups-actions {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.existing-backups-border > td {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.existing-backups-border > div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.updraft_existing_backup_date {\n\tmax-width: 140px;\n}\n\n.updraftplus-upload {\n\tmargin-right: 6px;\n\tfloat: left;\n\tclear: none;\n}\n\n.before-restore-button {\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.before-restore-button div {\n\tfloat: none;\n\tdisplay: inline-block;\n}\n\n.table-separator-tr {\n\theight: 2px;\n\tpadding: 1px;\n\tmargin: 0px;\n}\n\n.table-separator-td {\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n.end-of-table-div {\n\theight: 2px;\n\tbackground-color: #AAA;\n}\n\n.last-backup-job {\n\tpadding-top: 3% !important;\n}\n\n.line-height-03 {\n\tline-height: 0.3 !important;\n}\n\n.line-height-13 {\n\tline-height: 1.3 !important;\n}\n\n.line-height-23 {\n\tline-height: 2.3 !important;\n}\n\n#updraft_diskspaceused {\n\tcolor: #DF6926;\n}\n\n#updraft_delete_old_dirs_pagediv {\n\tpadding-bottom: 10px;\n}\n\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\n\tpadding: 0;\n}*/\n\n/* Time + scheduling add-on*/\n.fix-time {\n\twidth: 70px;\n}\n\n.retain-files {\n\twidth: 70px;\n}\n\n.number-input {\n\tmin-width: 50px;\n\tmax-width: 70px;\n}\n\n.additional-rule-width {\n\tmin-width: 60px;\n\tmax-width: 70px;\n}\n\n/* Add-ons */\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\n\n.dashicons {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n.addon-logo-150 {\n\tmargin-left: 30px;\n\tmargin-top: 33px;\n\theight: 125px;\n\twidth: 150px;\n}\n\n.margin-bottom-50 {\n\tmargin-bottom: 50px;\n}\n\n.premium-container {\n\twidth: 80%;\n}\n\n/* Main Header */\n\n.main-header {\n\tbackground-color: #DF6926;\n\theight: 200px;\n\twidth: 100%;\n}\n\n.button-add-to-cart {\n\tcolor: white;\n\tborder-color: white;\n\tfloat: none;\n\tmargin-right: 17px;\n}\n\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\n\tborder-color: #A0A5AA;\n\tcolor: #A0A5AA;\n}\n\n.addon-title {\n\tmargin-top: 25px;\n}\n\n.addon-text {\n\tmargin-top: 75px;\n}\n\n.image-main-div {\n\twidth: 25%;\n\tfloat: left;\n}\n\n.text-main-div {\n\twidth: 60%;\n\tfloat: left;\n\ttext-align: center;\n\tcolor: white;\n\tmargin-top: 16px;\n}\n\n.text-main-div-title {\n\tfont-weight: bold !important;\n\tcolor: white;\n\ttext-align: center;\n}\n\n.text-main-div-paragraph {\n\tcolor: white;\n}\n\n/* End main header */\n\n/* Vault icons */\n\n.updraftplus-vault-cta {\n\twidth: 100%;\n\ttext-align: center;\n\tmargin-bottom: 50px;\n}\n\n.updraftplus-vault-cta h1 {\n\tfont-weight: bold;\n}\n\n.updraftvault-buy {\n\twidth: 225px;\n\theight: 225px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 50px;\n\tposition: relative;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault {\n\twidth: 275px;\n\theight: 275px;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\n\tright: 21%;\n\tfont-size: 16px;\n\tborder-width: 4px !important;\n}\n\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\n\tfont-size: 16px;\n}\n\n.updraftvault-buy .button-purchase {\n\tright: 24%;\n\tmargin-left: 0;\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.right {\n\tmargin-right: 0px;\n}\n\n.updraftvault-buy .addon-logo-100 {\n\theight: 100px;\n\twidth: 125px;\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .addon-logo-large {\n\tmargin-top: 7px;\n}\n\n.updraftvault-buy .button-buy-vault {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 29%;\n\tbottom: 2%;\n}\n\n.premium-addon-div .button-purchase {\n\tline-height: 1.7em;\n}\n\n.updraftvault-buy .button-buy-vault:hover {\n\tborder-color: darkgrey;\n\tcolor: darkgrey;\n}\n\n/* End Vault icons */\n\n/* Premium addons */\n\n.premium-addons {\n\tmargin-top: 80px;\n\twidth: 100%;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.addon-list {\n\t/* margin-left: 32px; */\n\tdisplay: table;\n\ttext-align: center;\n}\n\n.premium-addons h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-addons p {\n\ttext-align: center;\n}\n\n.premium-addons .premium-addon-div {\n\twidth: 200px;\n\theight: 250px;\n\tborder: 2px solid #777;\n\tdisplay: inline-table;\n\tmargin: 0 auto;\n\tmargin-right: 25px;\n\tmargin-top: 25px;\n\ttext-align: center;\n\tposition: relative;\n}\n\n.premium-addons .premium-addon-div p {\n\tmargin-left: 2px;\n\tmargin-right: 2px;\n}\n\n.premium-addons .premium-addon-div img {\n\twidth: auto;\n\theight: 50px;\n\tmargin-top: 7px;\n}\n\n.premium-addons .premium-addon-div .hr-alignment {\n\tmargin-top: 44px;\n}\n\n.premium-addons .premium-addon-div .dropbox-logo {\n\theight: 39px;\n\twidth: 150px;\n}\n\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\n\twidth: 75%;\n\theight: 24px;\n}\n\n.button-purchase {\n\tfont-size: 12px;\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tborder-width: 2px !important;\n\tposition: absolute;\n\tright: 25%;\n\tbottom: 2%;\n}\n\n.button-purchase:hover {\n\tcolor: darkgrey;\n\tborder-color: darkgrey;\n}\n\n.premium-addons .premium-addon-div hr {\n\theight: 2px;\n\tbackground-color: #777;\n\tmargin-top: 18px;\n}\n\n.premium-addon-div p {\n\tfont-style: italic;\n}\n\n.addon-list > .premium-addon-div > .onedrive-fix,\n.addon-list > .premium-addon-div > .azure-logo {\n\tmargin-top: 33px;\n}\n\n.addon-list > .premium-addon-div > .dropbox-fix {\n\tmargin-top: 18px;\n}\n\n/* End premium addons */\n\n\n/* Forgotton something (that is the name of the div rather than a mental note!) */\n\n.premium-forgotton-something {\n\tmargin-top: 5%;\n}\n\n.premium-forgotton-something h1 {\n\ttext-align: center;\n\tfont-weight: bold;\n}\n\n.premium-forgotton-something p {\n\ttext-align: center;\n\tfont-weight: normal;\n}\n\n.premium-forgotton-something .button-faq {\n\tcolor: #DF6926;\n\tborder-color: #DF6926;\n\tmargin: 0 auto;\n\tdisplay: table;\n}\n\n.premium-forgotton-something .button-faq:hover {\n\tcolor: #777;\n\tborder-color: #777;\n}\n\n/* End of forgotton something */\n\n.updraftplusmethod.updraftvault #vaultlogo {\n\tpadding-left: 40px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option {\n\tfloat: left;\n\twidth: 50%;\n\ttext-align: center;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault_primary_option div {\n\tclear: right;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .clear-left {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .padding-top-20px {\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .padding-top-14px {\n\tpadding-top: 14px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\n\tfont-size: 18px !important;\n\tpadding-bottom: 20px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\n\tmargin-top: 8px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\n\tmargin-right: 10px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_email {\n\twidth: 280px;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_pass {\n\twidth: 200px;\n}\n\n.updraftplusmethod.updraftvault #vault-is-connected {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\n\tclear: left;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option {\n\tfloat: left;\n\twidth: 33%;\n\ttext-align: center;\n\tpadding-top: 20px;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\n\tfont-size: 200%;\n\tfont-weight: bold;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\n\tclear: both;\n\tfont-size: 150%;\n}\n\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\n\tclear: both;\n\tfont-size: 115%;\n\tfont-style: italic;\n}\n\n/* Automation Backup Advert by B */\n.autobackup-image {\n/* \tdisplay: inline-block; */\n/*\tmin-width: 10%;\n\tmax-width:25%;*/\n/*\tfloat: left;*/\n\tclear: left;\n\tfloat: left;\n\twidth: 110px;\n\theight: 110px;\n}\n\n.autobackup-description {\n\twidth: 100%;\n}\n\n.advert-description {\n\tfloat: left;\n\tclear: right;\n\tpadding: 4px 10px 8px 10px;\n\twidth: 70%;\n\tclear: right;\n\tvertical-align: top;\n}\n\n.advert-btn {\n\tdisplay: inline-block;\n\tmin-width: 10%;\n\tvertical-align: top;\n\tmargin-bottom: 8px;\n}\n\n.advert-btn:first-of-type {\n\tmargin-top: 25px;\n}\n\n.advert-btn a {\n\tdisplay: block;\n\tcursor: pointer;\n}\n\na.btn-get-started {\n\tbackground: #FFF;\n\tborder: 2px solid #DF6926;\n\tborder-radius: 4px;\n\tcolor: #DF6926;\n\tdisplay: inline-block;\n\tmargin-left: 10px !important;\n\tmargin-bottom: 7px !important;\n\tfont-size: 18px !important;\n\tline-height: 20px;\n\tmin-height: 28px;\n\tpadding: 11px 10px 5px 10px;\n\ttext-transform: uppercase;\n\ttext-decoration: none;\n}\n\n.circle-dblarrow {\n\tborder: 1px solid #DF6926;\n\tborder-radius: 100%;\n\tdisplay: inline-block;\n\tfont-size: 17px;\n\tline-height: 17px;\n\tmargin-left: 5px;\n\twidth: 20px;\n\theight: 20px;\n\ttext-align: center;\n}\n\n/* End Automation Backup Advert by B */\n/* New Responsive Pretty Advanced Settings */\n.expertmode .advanced_settings_container {\n\theight: auto;\n\toverflow: hidden;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu {\n\tfloat: none;\n\tborder-bottom: 1px solid rgb(204, 204, 204);\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content {\n\tpadding-top: 5px;\n\tfloat: none;\n\twidth: auto;\n\toverflow: auto;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content h3:first-child {\n\tmargin-top: 5px !important;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\n\tdisplay: none;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\n\tdisplay: block;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\tdisplay: inline-block;\n\tcursor: pointer;\n\tpadding: 5px;\n\tcolor: #000;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\n\tfont-size: 16px;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\n\tbackground-color: #EAEAEA;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\n\tbackground-color: #3498DB;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\n\tbackground-color: #72C5FD;\n\tcolor: #FFF;\n}\n\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\n\theight: auto !important;\n}\n\ndiv#updraft-wrap a {\n\tcursor: pointer !important;\n}\n\n.updraftcentral_wizard_option {\n\twidth: 45%;\n\tfloat: left;\n\ttext-align: center;\n}\n\n.updraftcentral_wizard_option label {\n\tmargin-bottom: 8px;\n}\n\n#updraftcentral_keys_table {\n\tdisplay: none;\n}\n\n.create_key_container {\n\tborder: 1px solid;\n\tborder-radius: 4px;\n\tpadding: 0 0 6px 6px;\n\tmargin-bottom: 8px;\n}\n\n.updraftcentral_cloud_connect {\n\tborder-radius: 4px;\n\tborder: 1px solid #000;\n\tpadding: 0 20px;\n\tmargin-top: 30px;\n\tbackground-color: #FFF;\n}\n\n.updraftcentral_cloud_error {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #F00;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_info {\n\tborder: 1px solid #000;\n\tpadding: 3px 10px;\n\tborder-left: 3px solid #EF8F31;\n\tbackground-color: #FFF;\n\tmargin-bottom: 10px;\n}\n\n.updraftplus_spinner.spinner {\n\tpadding-left: 25px;\n\tfloat: none;\n}\n\n.updraftplus_spinner.spinner.visible {\n\tvisibility: visible;\n}\n\n.updraftcentral_cloud_notices .updraftplus_spinner {\n\tmargin-top: -5px;\n}\n\n.updraftcentral-subheading {\n\tfont-size: 14px;\n\tmargin-top: -10px;\n\tmargin-bottom: 20px;\n}\n\n#updraftcentral_cloud_form input#email,\n#updraftcentral_cloud_form input#password {\n\tmin-width: 250px;\n}\n\n.updraftcentral-data-consent {\n\tfont-size: 13px;\n\tmargin-bottom: 10px;\n}\n\n.updraftcentral_cloud_wizard_image {\n\tfloat: left;\n\tmin-width: 100px;\n\tmargin-right: 25px;\n}\n\n.updraftcentral_cloud_wizard {\n\tfloat: left;\n}\n\n.updraftcentral_cloud_clear {\n\tclear: both;\n}\n\n.updraftplus-settings-footer {\n\tmargin-top: 30px;\n}\n\n.updraftplus-top-menu {\n\tpadding: 0.5em;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\tbackground: transparent;\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow .updraft-log-link {\n\tfloat: none;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_row {\n\tflex-direction: column;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n}\n\n#updraft_inpage_backup #updraft_activejobsrow .updraft_progress_container {\n\twidth: 100%;\n}\n\n#updraft_inpage_backup #updraft_activejobs_table {\n\toverflow: inherit;\n}\n\n#updraft_inpage_backup span#updraft_lastlogcontainer {\n\tpadding: 18px;\n\tbackground: #FAFAFA;\n\tdisplay: block;\n\tfont-size: 90%;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup div#updraft_activejobsrow {\n\tbackground: #FAFAFA;\n\tbox-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);\n}\n\n#updraft_inpage_backup #updraft_lastlogmessagerow > div {\n\tbackground: transparent;\n\tpadding: 0;\n}\n\n#updraft_inpage_backup .last-message > strong {\n\tdisplay: block;\n\tmargin-top: 13px;\n}\n\n@media only screen and (min-width: 1024px) {\n\n\t#updraft_activejobsrow .updraft_row {\n\t\tdisplay: flex;\n\t\talign-items: baseline;\n\t}\n\n\t#updraft_activejobsrow .updraft_row .updraft_col {\n\t\tflex: auto;\n\t}\n\n\t#updraft_activejobsrow .updraft_progress_container {\n\t\twidth: calc(100% - 230px);\n\t}\n\n}\n\n@media only screen and (min-width: 782px) {\n\n\t.settings_page_updraftplus input[type=text],\n\t.settings_page_updraftplus input[type=password],\n\t.settings_page_updraftplus input[type=number] {\n\t\t/* border-radius: 4px; */\n\t\tline-height: 1.42;\n\t\t/* border: 1px solid #CCC; */\n\t\theight: 27px;\n\t\tpadding: 2px 6px;\n\t\tcolor: #555;\n\t}\n\n\t.settings_page_updraftplus input[type=\"number\"] {\n\t\theight: 31px;\n\t}\n\n\t#ud_massactions.active, #updraft-delete-waitwarning.active {\n\t\tposition: fixed;\n\t\tbottom: 0;\n\t\tleft: 160px;\n\t\tright: 0;\n\t\ttop: auto;\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n\t}\n\n\tbody.folded #ud_massactions.active, body.folded #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n\t.updraft-after-form-table {\n\t\tmargin-left: 250px;\n\t}\n\n}\n\n@media only screen and (min-width: 782px) and (max-width: 960px) {\n\n\tbody.auto-fold #ud_massactions.active, body.auto-fold #updraft-delete-waitwarning.active {\n\t\tleft: 36px;\n\t}\n\n}\n\n@media only screen and (max-width: 782px) {\n\n\t#updraft-wrap {\n\t\tmargin-right: 0;\n\t}\n\n\t#updraft-wrap .form-table td {\n\t\tpadding-right: 0;\n\t}\n\n\tlabel.updraft_checkbox {\n\t\tmargin-bottom: 8px;\n\t\tmargin-top: 8px;\n\t\tmargin-left: 36px;\n\t}\n\n\t.updraft_retain_rules {\n\t\tposition: relative;\n\t\tmargin-right: 0;\n\t\tborder: 1px solid #CCC;\n\t\tpadding: 5px;\n\t\tmargin-bottom: -1px;\n\t}\n\n\t.updraft_retain_rules_delete {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttop: 5px;\n\t}\n\n\ta[id*=updraft_retain_] {\n\t\tdisplay: block;\n\t\tpadding: 15px 15px 15px 0;\n\t}\n\n\tlabel.updraft_checkbox > input[type=checkbox] {\n\t\tmargin-left: -33px;\n\t}\n\n\t#updraft-backupnow-button {\n\t\tmargin: 0;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > .updraft_backup_btn_wrapper {\n\t\tpadding-top: 0;\n\t}\n\n\t#ud_massactions, #updraft-delete-waitwarning {\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t}\n\n\t#ud_massactions.active {\n\t\tposition: fixed;\n\t\ttop: auto;\n\t\tbottom: 0;\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\n\t\ttext-align: center;\n\t\tbox-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);\n\t\tbackground: #FFF;\n\t\tz-index: 3;\n\t}\n\n\t#ud_massactions strong {\n\t\tdisplay: block;\n\t\tmargin-bottom: 5px;\n\t}\n\n\tsmall.ud_massactions-tip {\n\t\tdisplay: block;\n\t}\n\n/*\t.advert-description {\n\t\tmin-width: 75%;\n\t\tmargin-bottom: 5px;\n\t}\n\n\t.advert-btn {\n\t\tmargin-top: 15px;\n\t\tmargin-left:86px;\n\t\tmin-width: 100%;\n\t}*/\n\n\t.existing-backups-table .backup_date_label > div {\n\t\tfont-weight: normal;\n\t}\n\n\t.existing-backups-table .backup_date_label .clear-right {\n\t\tdisplay: inline-block;\n\t}\n\n\ttable.widefat.existing-backups-table {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t\tbackground: transparent;\n\t}\n\n\t.existing-backups-table thead {\n\t\tborder: none;\n\t\tclip: rect(0 0 0 0);\n\t\theight: 1px;\n\t\tmargin: -1px;\n\t\toverflow: hidden;\n\t\tpadding: 0;\n\t\tposition: absolute;\n\t\twidth: 1px;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t}\n\n\t.existing-backups-table tr {\n\t\tdisplay: block;\n\t\tmargin-bottom: .625em;\n\t\tpadding-bottom: 16.625px;\n\t\twidth: 100%;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t\tbackground: #FFF;\n\t\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);\n\t}\n\n\t.existing-backups-table td {\n\t\tborder-bottom: 1px solid #DDD;\n\t\tdisplay: block;\n\t\tfont-size: .9em;\n\t\ttext-align: left;\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: 0;\n\t}\n\n\t.wp-list-table.existing-backups-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {\n\t\t/*\n\t\t* aria-label has no advantage, it won't be read inside a table\n\t\tcontent: attr(aria-label);\n\t\t*/\n\t\tcontent: attr(data-label);\n\t\tfont-weight: bold;\n\t\tdisplay: block;\n\t\tposition: relative;\n\t\tleft: auto;\n\t\tpadding-bottom: 10px;\n\t\twidth: auto;\n\t\ttext-align: left;\n\t}\n\n\t.existing-backups-table td:last-child {\n\t\tborder-bottom: 0;\n\t}\n\n\t.form-table td.updraft_existingbackup_date {\n\t\twidth: inherit;\n\t\tmax-width: 100%;\n\t}\n\n\t.existing-backups-table td.before-restore-button {\n\t\tmin-height: 36px;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper {\n\t\tflex-direction: column;\n\t}\n\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t\twidth: 100%;\n\t}\n\n\t.updraft_progress_container {\n\t\t/* width: 77%; */\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row {\n\t\tposition: relative;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\n\t\tbackground-color: #FFF;\n\t\tborder-left: 4px solid #0572AA;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td:not(.backup-select) {\n\t\tmargin-left: 50px;\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row td.backup-select {\n\t\twidth: 50px !important;\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbox-sizing: border-box;\n\t\theight: 100%;\n\t\tz-index: 1;\n\t\tborder: none;\n\t\tborder-right: 1px solid rgba(0, 0, 0, 0.05);\n\t}\n\n\t#updraft-navtab-backups-content .updraft_existing_backups input[type=\"checkbox\"] {\n\t\theight: 25px;\n\t}\n\n\t.updraft_migrate_intro button.button.button-primary.button-hero {\n\t\tdisplay: block;\n\t\tmargin-right: 0;\n\t\twidth: 100%;\n\t\tmax-width: 100%;\n\t}\n\n\t.updraftclone-main-row {\n\t\tflex-direction: column;\n\t}\n\n\t.updraftclone-main-row > div {\n\t\twidth: auto;\n\t\tmax-width: none;\n\t\tmargin-right: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n\t.form-table th {\n\t\tpadding-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 600px) {\n\t\n\t.updraft_next_scheduled_backups_wrapper > div {\n\t}\n\n\t.updraft_next_scheduled_entity {\n\t\tfloat: none;\n\t\twidth: 100%;\n\t\tmargin-bottom: 2em;\n\t}\n\n\t.updraft_time_now_wrapper {\n\t\tmargin-top: 0;\n\t}\n\n\t#updraft_lastlogmessagerow h3 {\n\t\tmargin-bottom: 5px;\n\t}\n\n\t#updraft_lastlogmessagerow .updraft-log-link {\n\t\tdisplay: block;\n\t\tfloat: none;\n\t\tmargin: 0;\n\t\tmargin-bottom: 10px;\n\t}\n\n}\n\n@media screen and (max-width: 520px) {\n}\n\n@media only screen and (min-width: 768px) {\n\n\t.addon-activation-notice {\n\t\tleft: 20em;\n\t}\n\n\t.existing-backups-table tbody tr:hover {\n\t\tbackground: #F1F1F1;\n\t}\n\n\t.existing-backups-table tbody tr td.before-restore-button {\n\t\tposition: relative;\n\t}\n\n\t.form-table .existing-backups-table thead th.check-column {\n\t\tpadding-left: 6px;\n\t}\n\n\t.existing-backups-table tr td:first-child {\n\t\tborder-left: 4px solid transparent;\n\t}\n\n\t.existing-backups-table tr.backuprowselected td:first-child {\n\t\tborder-left-color: #0572AA;\n\t}\n\n}\n\n@media screen and (min-width: 670px) {\n\t\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\n\t\tfloat: left;\n\t\twidth: 215px;\n\t\tborder-right: 1px solid rgb(204, 204, 204);\n\t\tborder-bottom: none;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_content {\n\t\tpadding-left: 10px;\n\t\tpadding-top: 0px;\n\t}\n\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\n\t\tdisplay: block;\n\t}\n\n}\n\n@media only screen and (max-width: 1068px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: calc(50% - 10px);\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: 100px;\n\t}\n\n}\n\n@media only screen and (max-width: 600px) {\n\n\t.updraft-more-plugins .udp-box {\n\t\twidth: 100%;\n\t\tmargin-bottom: 20px;\n\t}\n\n\t.updraft_feat_table td:nth-child(2), .updraft_feat_table td:nth-child(3) {\n\t\twidth: auto;\n\t}\n\n\ttable.updraft_feat_table {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table tr {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t}\n\n\ttable.updraft_feat_table td {\n\t\tdisplay: block;\n\t}\n\n\ttable.updraft_feat_table td:first-child {\n\t\twidth: 100%;\n\t\tborder-bottom: none;\n\t}\n\n\ttable.updraft_feat_table td:not(:first-child) {\n\t\twidth: 50%;\n\t\tbox-sizing: border-box;\n\t}\n\n\ttable.updraft_feat_table td:first-child:empty {\n\t\tdisplay: none;\n\t}\n\n\ttd[data-colname]::before {\n\t\tcontent: attr(data-colname);\n\t\tfont-size: 0.8rem;\n\t\tcolor: #CCC;\n\t\tline-height: 1;\n\t}\n\n}\n"]}
images/upraftplus-clone-screenshot.jpg ADDED
Binary file
includes/Dropbox2/OAuth/Consumer/Curl.php CHANGED
@@ -222,7 +222,7 @@ class Dropbox_Curl extends Dropbox_ConsumerAbstract
222
  throw new Dropbox_UnsupportedMediaTypeException($message, 415);
223
  case 401:
224
  //401 means oauth token is expired continue to manually handle the exception depending on the situation
225
- continue;
226
  case 409:
227
  //409 in API V2 every error will return with a 409 to find out what the error is the error description should be checked.
228
  throw new Dropbox_Exception($message, $code);
222
  throw new Dropbox_UnsupportedMediaTypeException($message, 415);
223
  case 401:
224
  //401 means oauth token is expired continue to manually handle the exception depending on the situation
225
+ break;
226
  case 409:
227
  //409 in API V2 every error will return with a 409 to find out what the error is the error description should be checked.
228
  throw new Dropbox_Exception($message, $code);
includes/class-job-scheduler.php ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if (!defined('UPDRAFTPLUS_DIR')) die('No access.');
4
+
5
+ /**
6
+ * A class for scheduling-related code.
7
+ * N.B. This class began life Nov 2018; it is not guaranteed to contain all scheduling-related code. The variables used have also generally remained in the UpdraftPlus class.
8
+ */
9
+ class UpdraftPlus_Job_Scheduler {
10
+
11
+ /**
12
+ * This function is purely for timing - we just want to know the maximum run-time; not whether we have achieved anything during it. It will also run a check on whether the resumption interval is being approached.
13
+ */
14
+ public static function record_still_alive() {
15
+
16
+ global $updraftplus;
17
+
18
+ // Update the record of maximum detected runtime on each run
19
+ $time_passed = $updraftplus->jobdata_get('run_times');
20
+ if (!is_array($time_passed)) $time_passed = array();
21
+
22
+ $time_this_run = microtime(true)-$updraftplus->opened_log_time;
23
+ $time_passed[$updraftplus->current_resumption] = $time_this_run;
24
+ $updraftplus->jobdata_set('run_times', $time_passed);
25
+
26
+ $resume_interval = $updraftplus->jobdata_get('resume_interval');
27
+ if ($time_this_run + 30 > $resume_interval) {
28
+ $new_interval = ceil($time_this_run + 30);
29
+ set_site_transient('updraft_initial_resume_interval', (int) $new_interval, 8*86400);
30
+ $updraftplus->log("The time we have been running (".round($time_this_run, 1).") is approaching the resumption interval ($resume_interval) - increasing resumption interval to $new_interval");
31
+ $updraftplus->jobdata_set('resume_interval', $new_interval);
32
+ }
33
+
34
+ }
35
+
36
+ /**
37
+ * This method helps with efficient scheduling
38
+ */
39
+ public static function reschedule_if_needed() {
40
+
41
+ global $updraftplus;
42
+
43
+ // If nothing is scheduled, then no re-scheduling is needed, so return
44
+ if (empty($updraftplus->newresumption_scheduled)) return;
45
+
46
+ $time_away = $updraftplus->newresumption_scheduled - time();
47
+
48
+ // 45 is chosen because it is 15 seconds more than what is used to detect recent activity on files (file mod times). (If we use exactly the same, then it's more possible to slightly miss each other)
49
+ if ($time_away > 1 && $time_away <= 45) {
50
+ $updraftplus->log('The scheduled resumption is within 45 seconds - will reschedule');
51
+ // Increase interval generally by 45 seconds, on the assumption that our prior estimates were innaccurate (i.e. not just 45 seconds *this* time)
52
+ self::increase_resume_and_reschedule(45);
53
+ }
54
+ }
55
+
56
+ /**
57
+ * Indicate that something useful happened. Calling this at appropriate times is an important part of scheduling decisions.
58
+ */
59
+ public static function something_useful_happened() {
60
+
61
+ global $updraftplus;
62
+
63
+ self::record_still_alive();
64
+
65
+ if (!$updraftplus->something_useful_happened) {
66
+ $useful_checkin = $updraftplus->jobdata_get('useful_checkin');
67
+ if (empty($useful_checkin) || $updraftplus->current_resumption > $useful_checkin) $updraftplus->jobdata_set('useful_checkin', $updraftplus->current_resumption);
68
+ }
69
+
70
+ $updraftplus->something_useful_happened = true;
71
+
72
+ $updraft_dir = $updraftplus->backups_dir_location();
73
+ if (file_exists($updraft_dir.'/deleteflag-'.$updraftplus->nonce.'.txt')) {
74
+ $updraftplus->log("User request for abort: backup job will be immediately halted");
75
+ @unlink($updraft_dir.'/deleteflag-'.$updraftplus->nonce.'.txt');
76
+ $updraftplus->backup_finish($updraftplus->current_resumption + 1, true, true, $updraftplus->current_resumption, true);
77
+ die;
78
+ }
79
+
80
+ if ($updraftplus->current_resumption >= 9 && false == $updraftplus->newresumption_scheduled) {
81
+ $updraftplus->log("This is resumption ".$updraftplus->current_resumption.", but meaningful activity is still taking place; so a new one will be scheduled");
82
+ // We just use max here to make sure we get a number at all
83
+ $resume_interval = max($updraftplus->jobdata_get('resume_interval'), 75);
84
+ // Don't consult the minimum here
85
+ // if (!is_numeric($resume_interval) || $resume_interval<300) { $resume_interval = 300; }
86
+ $schedule_for = time()+$resume_interval;
87
+ $updraftplus->newresumption_scheduled = $schedule_for;
88
+ wp_schedule_single_event($schedule_for, 'updraft_backup_resume', array($updraftplus->current_resumption + 1, $updraftplus->nonce));
89
+ } else {
90
+ self::reschedule_if_needed();
91
+ }
92
+ }
93
+
94
+ /**
95
+ * Reschedule the next resumption for the specified amount of time in the future
96
+ *
97
+ * @uses wp_schedule_single_event()
98
+ *
99
+ * @param Integer $how_far_ahead - a number of seconds
100
+ */
101
+ public static function reschedule($how_far_ahead) {
102
+
103
+ global $updraftplus;
104
+
105
+ // Reschedule - remove presently scheduled event
106
+ $next_resumption = $updraftplus->current_resumption + 1;
107
+ wp_clear_scheduled_hook('updraft_backup_resume', array($next_resumption, $updraftplus->nonce));
108
+ // Add new event
109
+ // This next line may be too cautious; but until 14-Aug-2014, it was 300.
110
+ // Update 20-Mar-2015 - lowered from 180 to 120
111
+ // Update 03-Aug-2018 - lowered from 120 to 100
112
+ if ($how_far_ahead < 100) $how_far_ahead = 100;
113
+ $schedule_for = time() + $how_far_ahead;
114
+ $updraftplus->log("Rescheduling resumption $next_resumption: moving to $how_far_ahead seconds from now ($schedule_for)");
115
+ wp_schedule_single_event($schedule_for, 'updraft_backup_resume', array($next_resumption, $updraftplus->nonce));
116
+ $updraftplus->newresumption_scheduled = $schedule_for;
117
+ }
118
+
119
+ /**
120
+ * Terminate a backup run because other activity on the backup has been detected
121
+ *
122
+ * @uses die()
123
+ *
124
+ * @param String $file - Indicate the file whose recent modification is indicative of activity
125
+ * @param Integer $time_now - The epoch time at which the detection took place
126
+ * @param Integer $time_mod - The epoch time at which the file was modified
127
+ * @param Boolean $increase_resumption - Whether or not to increase the resumption interval
128
+ */
129
+ public static function terminate_due_to_activity($file, $time_now, $time_mod, $increase_resumption = true) {
130
+
131
+ global $updraftplus;
132
+
133
+ // We check-in, to avoid 'no check in last time!' detectors firing.
134
+ self::record_still_alive();
135
+
136
+ // Log
137
+ $file_size = file_exists($file) ? round(filesize($file)/1024, 1). 'KB' : 'n/a';
138
+ $updraftplus->log("Terminate: ".basename($file)." exists with activity within the last 30 seconds (time_mod=$time_mod, time_now=$time_now, diff=".(floor($time_now-$time_mod)).", size=$file_size). This likely means that another UpdraftPlus run is at work; so we will exit.");
139
+
140
+ $increase_by = $increase_resumption ? 120 : 0;
141
+ self::increase_resume_and_reschedule($increase_by, true);
142
+
143
+ // Die, unless there was a deliberate over-ride (for development purposes)
144
+ if (!defined('UPDRAFTPLUS_ALLOW_RECENT_ACTIVITY') || !UPDRAFTPLUS_ALLOW_RECENT_ACTIVITY) die;
145
+ }
146
+
147
+ /**
148
+ * Increase the resumption interval and reschedule the next resumption
149
+ *
150
+ * @uses self::reschedule()
151
+ *
152
+ * @param Integer $howmuch - how much to add to the existing resumption interval
153
+ * @param Boolean $due_to_overlap - setting this changes the strategy for calculating the next resumption; it indicates that the reason for an increase is because of recent activity detection
154
+ */
155
+ private static function increase_resume_and_reschedule($howmuch = 120, $due_to_overlap = false) {
156
+
157
+ global $updraftplus;
158
+
159
+ $resume_interval = max(intval($updraftplus->jobdata_get('resume_interval')), (0 === $howmuch) ? 120 : 300);
160
+
161
+ if (empty($updraftplus->newresumption_scheduled) && $due_to_overlap) {
162
+ $updraftplus->log('A new resumption will be scheduled to prevent the job ending');
163
+ }
164
+
165
+ $new_resume = $resume_interval + $howmuch;
166
+ // It may be that we're increasing for the second (or more) time during a run, and that we already know that the new value will be insufficient, and can be increased
167
+ if ($updraftplus->opened_log_time > 100 && microtime(true)-$updraftplus->opened_log_time > $new_resume) {
168
+ $new_resume = ceil(microtime(true)-$updraftplus->opened_log_time)+45;
169
+ $howmuch = $new_resume-$resume_interval;
170
+ }
171
+
172
+ // This used to be always $new_resume, until 14-Aug-2014. However, people who have very long-running processes can end up with very long times between resumptions as a result.
173
+ // Actually, let's not try this yet. I think it is safe, but think there is a more conservative solution available.
174
+ // $how_far_ahead = min($new_resume, 600);
175
+ // Nov 2018 - scheduling the next resumption unnecessarily-far-in-the-future after an overlap is still occurring, so, we're adjusting this to have a maximum value in that particular case
176
+ $how_far_ahead = $due_to_overlap ? min($new_resume, 900) : $new_resume;
177
+
178
+ // If it is very long-running, then that would normally be known soon.
179
+ // If the interval is already 12 minutes or more, then try the next resumption 10 minutes from now (i.e. sooner than it would have been). Thus, we are guaranteed to get at least 24 minutes of processing in the first 34.
180
+ if ($updraftplus->current_resumption <= 1 && $new_resume > 720) $how_far_ahead = 600;
181
+
182
+ if (!empty($updraftplus->newresumption_scheduled) || $due_to_overlap) self::reschedule($how_far_ahead);
183
+
184
+ $updraftplus->jobdata_set('resume_interval', $new_resume);
185
+
186
+ $updraftplus->log("To decrease the likelihood of overlaps, increasing resumption interval to: $resume_interval + $howmuch = $new_resume");
187
+ }
188
+ }
includes/class-manipulation-functions.php CHANGED
@@ -376,17 +376,17 @@ class UpdraftPlus_Manipulation_Functions {
376
  /**
377
  * Given a set of times, find details about the maximum
378
  *
379
- * @param Array $time_passed
380
- * @param Integer $upto
381
- * @param Integer $first_run
382
  *
383
- * @return Array
384
  */
385
  public static function max_time_passed($time_passed, $upto, $first_run) {
386
  $max_time = 0;
387
  $timings_string = "";
388
  $run_times_known=0;
389
- for ($i=$first_run; $i<=$upto; $i++) {
390
  $timings_string .= "$i:";
391
  if (isset($time_passed[$i])) {
392
  $timings_string .= round($time_passed[$i], 1).' ';
376
  /**
377
  * Given a set of times, find details about the maximum
378
  *
379
+ * @param Array $time_passed - a list of times passed, with numerical indexes
380
+ * @param Integer $upto - last index to consider
381
+ * @param Integer $first_run - first index to consider
382
  *
383
+ * @return Array - a list with entries, in order: maximum time, list in string format, how many run times were found
384
  */
385
  public static function max_time_passed($time_passed, $upto, $first_run) {
386
  $max_time = 0;
387
  $timings_string = "";
388
  $run_times_known=0;
389
+ for ($i = $first_run; $i <= $upto; $i++) {
390
  $timings_string .= "$i:";
391
  if (isset($time_passed[$i])) {
392
  $timings_string .= round($time_passed[$i], 1).' ';
includes/class-zip.php CHANGED
@@ -347,13 +347,13 @@ class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
347
  // Logging all this really slows things down; use debug to mitigate
348
  if ($w && $updraftplus_backup->debug) $updraftplus->log("Output from zip: ".trim($w), 'debug');
349
  if (time() > $last_recorded_alive + 5) {
350
- $updraftplus->record_still_alive();
351
  $last_recorded_alive = time();
352
  }
353
  if (file_exists($this->path)) {
354
  $new_size = @filesize($this->path);
355
  if (!$something_useful_happened && $new_size > $orig_size + 20) {
356
- $updraftplus->something_useful_happened();
357
  $something_useful_happened = true;
358
  }
359
  clearstatcache();
347
  // Logging all this really slows things down; use debug to mitigate
348
  if ($w && $updraftplus_backup->debug) $updraftplus->log("Output from zip: ".trim($w), 'debug');
349
  if (time() > $last_recorded_alive + 5) {
350
+ UpdraftPlus_Job_Scheduler::record_still_alive();
351
  $last_recorded_alive = time();
352
  }
353
  if (file_exists($this->path)) {
354
  $new_size = @filesize($this->path);
355
  if (!$something_useful_happened && $new_size > $orig_size + 20) {
356
+ UpdraftPlus_Job_Scheduler::something_useful_happened();
357
  $something_useful_happened = true;
358
  }
359
  clearstatcache();
includes/jquery.serializeJSON/jquery.serializejson.js CHANGED
@@ -1,9 +1,9 @@
1
  /*!
2
  SerializeJSON jQuery plugin.
3
  https://github.com/marioizquierdo/jquery.serializeJSON
4
- version 2.8.1 (Dec, 2016)
5
 
6
- Copyright (c) 2012, 2017 Mario Izquierdo
7
  Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
8
  and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
9
  */
@@ -137,8 +137,12 @@
137
  parsedVal = (valStr === "true");
138
  } else if (opts.parseNulls && valStr == "null") { // auto: null
139
  parsedVal = null;
 
 
140
  }
141
- if (opts.parseWithFunction && !type) { // custom parse function (apply after previous parsing options, but not if there's a specific type)
 
 
142
  parsedVal = opts.parseWithFunction(parsedVal, inputName);
143
  }
144
 
1
  /*!
2
  SerializeJSON jQuery plugin.
3
  https://github.com/marioizquierdo/jquery.serializeJSON
4
+ version 2.9.0 (Jan, 2018)
5
 
6
+ Copyright (c) 2012-2018 Mario Izquierdo
7
  Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
8
  and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
9
  */
137
  parsedVal = (valStr === "true");
138
  } else if (opts.parseNulls && valStr == "null") { // auto: null
139
  parsedVal = null;
140
+ } else if (opts.typeFunctions && opts.typeFunctions["string"]) { // make sure to apply :string type if it was re-defined
141
+ parsedVal = opts.typeFunctions["string"](valStr);
142
  }
143
+
144
+ // Custom parse function: apply after parsing options, unless there's an explicit type.
145
+ if (opts.parseWithFunction && !type) {
146
  parsedVal = opts.parseWithFunction(parsedVal, inputName);
147
  }
148
 
includes/jquery.serializeJSON/jquery.serializejson.min.js CHANGED
@@ -1,10 +1,10 @@
1
  /*!
2
  SerializeJSON jQuery plugin.
3
  https://github.com/marioizquierdo/jquery.serializeJSON
4
- version 2.8.1 (Dec, 2016)
5
 
6
- Copyright (c) 2012, 2017 Mario Izquierdo
7
  Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
8
  and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
9
  */
10
- !function(a){if("function"==typeof define&&define.amd)define(["jquery"],a);else if("object"==typeof exports){var b=require("jquery");module.exports=a(b)}else a(window.jQuery||window.Zepto||window.$)}(function(a){"use strict";a.fn.serializeJSON=function(b){var c,d,e,f,g,h,i,j,k,l,m,n,o;return c=a.serializeJSON,d=this,e=c.setupOpts(b),f=d.serializeArray(),c.readCheckboxUncheckedValues(f,e,d),g={},a.each(f,function(a,b){h=b.name,i=b.value,k=c.extractTypeAndNameWithNoType(h),l=k.nameWithNoType,m=k.type,m||(m=c.attrFromInputWithName(d,h,"data-value-type")),c.validateType(h,m,e),"skip"!==m&&(n=c.splitInputNameIntoKeysArray(l),j=c.parseValue(i,h,m,e),o=!j&&c.shouldSkipFalsy(d,h,l,m,e),o||c.deepSet(g,n,j,e))}),g},a.serializeJSON={defaultOptions:{checkboxUncheckedValue:void 0,parseNumbers:!1,parseBooleans:!1,parseNulls:!1,parseAll:!1,parseWithFunction:null,skipFalsyValuesForTypes:[],skipFalsyValuesForFields:[],customTypes:{},defaultTypes:{string:function(a){return String(a)},number:function(a){return Number(a)},boolean:function(a){var b=["false","null","undefined","","0"];return b.indexOf(a)===-1},null:function(a){var b=["false","null","undefined","","0"];return b.indexOf(a)===-1?a:null},array:function(a){return JSON.parse(a)},object:function(a){return JSON.parse(a)},auto:function(b){return a.serializeJSON.parseValue(b,null,null,{parseNumbers:!0,parseBooleans:!0,parseNulls:!0})},skip:null},useIntKeysAsArrayIndex:!1},setupOpts:function(b){var c,d,e,f,g,h;h=a.serializeJSON,null==b&&(b={}),e=h.defaultOptions||{},d=["checkboxUncheckedValue","parseNumbers","parseBooleans","parseNulls","parseAll","parseWithFunction","skipFalsyValuesForTypes","skipFalsyValuesForFields","customTypes","defaultTypes","useIntKeysAsArrayIndex"];for(c in b)if(d.indexOf(c)===-1)throw new Error("serializeJSON ERROR: invalid option '"+c+"'. Please use one of "+d.join(", "));return f=function(a){return b[a]!==!1&&""!==b[a]&&(b[a]||e[a])},g=f("parseAll"),{checkboxUncheckedValue:f("checkboxUncheckedValue"),parseNumbers:g||f("parseNumbers"),parseBooleans:g||f("parseBooleans"),parseNulls:g||f("parseNulls"),parseWithFunction:f("parseWithFunction"),skipFalsyValuesForTypes:f("skipFalsyValuesForTypes"),skipFalsyValuesForFields:f("skipFalsyValuesForFields"),typeFunctions:a.extend({},f("defaultTypes"),f("customTypes")),useIntKeysAsArrayIndex:f("useIntKeysAsArrayIndex")}},parseValue:function(b,c,d,e){var f,g;return f=a.serializeJSON,g=b,e.typeFunctions&&d&&e.typeFunctions[d]?g=e.typeFunctions[d](b):e.parseNumbers&&f.isNumeric(b)?g=Number(b):!e.parseBooleans||"true"!==b&&"false"!==b?e.parseNulls&&"null"==b&&(g=null):g="true"===b,e.parseWithFunction&&!d&&(g=e.parseWithFunction(g,c)),g},isObject:function(a){return a===Object(a)},isUndefined:function(a){return void 0===a},isValidArrayIndex:function(a){return/^[0-9]+$/.test(String(a))},isNumeric:function(a){return a-parseFloat(a)>=0},optionKeys:function(a){if(Object.keys)return Object.keys(a);var b,c=[];for(b in a)c.push(b);return c},readCheckboxUncheckedValues:function(b,c,d){var e,f,g,h,i;null==c&&(c={}),i=a.serializeJSON,e="input[type=checkbox][name]:not(:checked):not([disabled])",f=d.find(e).add(d.filter(e)),f.each(function(d,e){if(g=a(e),h=g.attr("data-unchecked-value"),null==h&&(h=c.checkboxUncheckedValue),null!=h){if(e.name&&e.name.indexOf("[][")!==-1)throw new Error("serializeJSON ERROR: checkbox unchecked values are not supported on nested arrays of objects like '"+e.name+"'. See https://github.com/marioizquierdo/jquery.serializeJSON/issues/67");b.push({name:e.name,value:h})}})},extractTypeAndNameWithNoType:function(a){var b;return(b=a.match(/(.*):([^:]+)$/))?{nameWithNoType:b[1],type:b[2]}:{nameWithNoType:a,type:null}},shouldSkipFalsy:function(b,c,d,e,f){var g=a.serializeJSON,h=g.attrFromInputWithName(b,c,"data-skip-falsy");if(null!=h)return"false"!==h;var i=f.skipFalsyValuesForFields;if(i&&(i.indexOf(d)!==-1||i.indexOf(c)!==-1))return!0;var j=f.skipFalsyValuesForTypes;return null==e&&(e="string"),!(!j||j.indexOf(e)===-1)},attrFromInputWithName:function(a,b,c){var d,e,f;return d=b.replace(/(:|\.|\[|\]|\s)/g,"\\$1"),e='[name="'+d+'"]',f=a.find(e).add(a.filter(e)),f.attr(c)},validateType:function(b,c,d){var e,f;if(f=a.serializeJSON,e=f.optionKeys(d?d.typeFunctions:f.defaultOptions.defaultTypes),c&&e.indexOf(c)===-1)throw new Error("serializeJSON ERROR: Invalid type "+c+" found in input name '"+b+"', please use one of "+e.join(", "));return!0},splitInputNameIntoKeysArray:function(b){var c,d;return d=a.serializeJSON,c=b.split("["),c=a.map(c,function(a){return a.replace(/\]/g,"")}),""===c[0]&&c.shift(),c},deepSet:function(b,c,d,e){var f,g,h,i,j,k;if(null==e&&(e={}),k=a.serializeJSON,k.isUndefined(b))throw new Error("ArgumentError: param 'o' expected to be an object or array, found undefined");if(!c||0===c.length)throw new Error("ArgumentError: param 'keys' expected to be an array with least one element");f=c[0],1===c.length?""===f?b.push(d):b[f]=d:(g=c[1],""===f&&(i=b.length-1,j=b[i],f=k.isObject(j)&&(k.isUndefined(j[g])||c.length>2)?i:i+1),""===g?!k.isUndefined(b[f])&&a.isArray(b[f])||(b[f]=[]):e.useIntKeysAsArrayIndex&&k.isValidArrayIndex(g)?!k.isUndefined(b[f])&&a.isArray(b[f])||(b[f]=[]):!k.isUndefined(b[f])&&k.isObject(b[f])||(b[f]={}),h=c.slice(1),k.deepSet(b[f],h,d,e))}}});
1
  /*!
2
  SerializeJSON jQuery plugin.
3
  https://github.com/marioizquierdo/jquery.serializeJSON
4
+ version 2.9.0 (Jan, 2018)
5
 
6
+ Copyright (c) 2012-2018 Mario Izquierdo
7
  Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
8
  and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
9
  */
10
+ !function(e){if("function"==typeof define&&define.amd)define(["jquery"],e);else if("object"==typeof exports){var n=require("jquery");module.exports=e(n)}else e(window.jQuery||window.Zepto||window.$)}(function(e){"use strict";e.fn.serializeJSON=function(n){var r,s,t,i,a,u,l,o,p,c,d,f,y;return r=e.serializeJSON,s=this,t=r.setupOpts(n),i=s.serializeArray(),r.readCheckboxUncheckedValues(i,t,s),a={},e.each(i,function(e,n){u=n.name,l=n.value,p=r.extractTypeAndNameWithNoType(u),c=p.nameWithNoType,(d=p.type)||(d=r.attrFromInputWithName(s,u,"data-value-type")),r.validateType(u,d,t),"skip"!==d&&(f=r.splitInputNameIntoKeysArray(c),o=r.parseValue(l,u,d,t),(y=!o&&r.shouldSkipFalsy(s,u,c,d,t))||r.deepSet(a,f,o,t))}),a},e.serializeJSON={defaultOptions:{checkboxUncheckedValue:void 0,parseNumbers:!1,parseBooleans:!1,parseNulls:!1,parseAll:!1,parseWithFunction:null,skipFalsyValuesForTypes:[],skipFalsyValuesForFields:[],customTypes:{},defaultTypes:{string:function(e){return String(e)},number:function(e){return Number(e)},boolean:function(e){return-1===["false","null","undefined","","0"].indexOf(e)},null:function(e){return-1===["false","null","undefined","","0"].indexOf(e)?e:null},array:function(e){return JSON.parse(e)},object:function(e){return JSON.parse(e)},auto:function(n){return e.serializeJSON.parseValue(n,null,null,{parseNumbers:!0,parseBooleans:!0,parseNulls:!0})},skip:null},useIntKeysAsArrayIndex:!1},setupOpts:function(n){var r,s,t,i,a,u;u=e.serializeJSON,null==n&&(n={}),t=u.defaultOptions||{},s=["checkboxUncheckedValue","parseNumbers","parseBooleans","parseNulls","parseAll","parseWithFunction","skipFalsyValuesForTypes","skipFalsyValuesForFields","customTypes","defaultTypes","useIntKeysAsArrayIndex"];for(r in n)if(-1===s.indexOf(r))throw new Error("serializeJSON ERROR: invalid option '"+r+"'. Please use one of "+s.join(", "));return i=function(e){return!1!==n[e]&&""!==n[e]&&(n[e]||t[e])},a=i("parseAll"),{checkboxUncheckedValue:i("checkboxUncheckedValue"),parseNumbers:a||i("parseNumbers"),parseBooleans:a||i("parseBooleans"),parseNulls:a||i("parseNulls"),parseWithFunction:i("parseWithFunction"),skipFalsyValuesForTypes:i("skipFalsyValuesForTypes"),skipFalsyValuesForFields:i("skipFalsyValuesForFields"),typeFunctions:e.extend({},i("defaultTypes"),i("customTypes")),useIntKeysAsArrayIndex:i("useIntKeysAsArrayIndex")}},parseValue:function(n,r,s,t){var i,a;return i=e.serializeJSON,a=n,t.typeFunctions&&s&&t.typeFunctions[s]?a=t.typeFunctions[s](n):t.parseNumbers&&i.isNumeric(n)?a=Number(n):!t.parseBooleans||"true"!==n&&"false"!==n?t.parseNulls&&"null"==n?a=null:t.typeFunctions&&t.typeFunctions.string&&(a=t.typeFunctions.string(n)):a="true"===n,t.parseWithFunction&&!s&&(a=t.parseWithFunction(a,r)),a},isObject:function(e){return e===Object(e)},isUndefined:function(e){return void 0===e},isValidArrayIndex:function(e){return/^[0-9]+$/.test(String(e))},isNumeric:function(e){return e-parseFloat(e)>=0},optionKeys:function(e){if(Object.keys)return Object.keys(e);var n,r=[];for(n in e)r.push(n);return r},readCheckboxUncheckedValues:function(n,r,s){var t,i,a;null==r&&(r={}),e.serializeJSON,t="input[type=checkbox][name]:not(:checked):not([disabled])",s.find(t).add(s.filter(t)).each(function(s,t){if(i=e(t),null==(a=i.attr("data-unchecked-value"))&&(a=r.checkboxUncheckedValue),null!=a){if(t.name&&-1!==t.name.indexOf("[]["))throw new Error("serializeJSON ERROR: checkbox unchecked values are not supported on nested arrays of objects like '"+t.name+"'. See https://github.com/marioizquierdo/jquery.serializeJSON/issues/67");n.push({name:t.name,value:a})}})},extractTypeAndNameWithNoType:function(e){var n;return(n=e.match(/(.*):([^:]+)$/))?{nameWithNoType:n[1],type:n[2]}:{nameWithNoType:e,type:null}},shouldSkipFalsy:function(n,r,s,t,i){var a=e.serializeJSON.attrFromInputWithName(n,r,"data-skip-falsy");if(null!=a)return"false"!==a;var u=i.skipFalsyValuesForFields;if(u&&(-1!==u.indexOf(s)||-1!==u.indexOf(r)))return!0;var l=i.skipFalsyValuesForTypes;return null==t&&(t="string"),!(!l||-1===l.indexOf(t))},attrFromInputWithName:function(e,n,r){var s,t;return s=n.replace(/(:|\.|\[|\]|\s)/g,"\\$1"),t='[name="'+s+'"]',e.find(t).add(e.filter(t)).attr(r)},validateType:function(n,r,s){var t,i;if(i=e.serializeJSON,t=i.optionKeys(s?s.typeFunctions:i.defaultOptions.defaultTypes),r&&-1===t.indexOf(r))throw new Error("serializeJSON ERROR: Invalid type "+r+" found in input name '"+n+"', please use one of "+t.join(", "));return!0},splitInputNameIntoKeysArray:function(n){var r;return e.serializeJSON,r=n.split("["),""===(r=e.map(r,function(e){return e.replace(/\]/g,"")}))[0]&&r.shift(),r},deepSet:function(n,r,s,t){var i,a,u,l,o,p;if(null==t&&(t={}),(p=e.serializeJSON).isUndefined(n))throw new Error("ArgumentError: param 'o' expected to be an object or array, found undefined");if(!r||0===r.length)throw new Error("ArgumentError: param 'keys' expected to be an array with least one element");i=r[0],1===r.length?""===i?n.push(s):n[i]=s:(a=r[1],""===i&&(o=n[l=n.length-1],i=p.isObject(o)&&(p.isUndefined(o[a])||r.length>2)?l:l+1),""===a?!p.isUndefined(n[i])&&e.isArray(n[i])||(n[i]=[]):t.useIntKeysAsArrayIndex&&p.isValidArrayIndex(a)?!p.isUndefined(n[i])&&e.isArray(n[i])||(n[i]=[]):!p.isUndefined(n[i])&&p.isObject(n[i])||(n[i]={}),u=r.slice(1),p.deepSet(n[i],u,s,t))}}});
includes/updraftplus-admin-common.js CHANGED
@@ -2151,6 +2151,7 @@ jQuery(document).ready(function($) {
2151
  var secret_token = $(this).data('secret_token');
2152
  var php_version = $('#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_php_options').val();
2153
  var wp_version = $('#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_wp_options').val();
 
2154
  var admin_only = $('.updraftplus_clone_admin_login_options').is(':checked');
2155
 
2156
  var options = {
@@ -2160,6 +2161,7 @@ jQuery(document).ready(function($) {
2160
  install_info: {
2161
  php_version: php_version,
2162
  wp_version: wp_version,
 
2163
  admin_only: admin_only,
2164
  }
2165
  }
@@ -4342,6 +4344,13 @@ jQuery(document).ready(function($) {
4342
  }
4343
  }
4344
 
 
 
 
 
 
 
 
4345
 
4346
  });
4347
 
2151
  var secret_token = $(this).data('secret_token');
2152
  var php_version = $('#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_php_options').val();
2153
  var wp_version = $('#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_wp_options').val();
2154
+ var region = $('#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_region_options').val();
2155
  var admin_only = $('.updraftplus_clone_admin_login_options').is(':checked');
2156
 
2157
  var options = {
2161
  install_info: {
2162
  php_version: php_version,
2163
  wp_version: wp_version,
2164
+ region: region,
2165
  admin_only: admin_only,
2166
  }
2167
  }
4344
  }
4345
  }
4346
 
4347
+ $('.udp-replace-with-iframe--js').on('click', function(e) {
4348
+ e.preventDefault();
4349
+ var url = $(this).prop('href');
4350
+ var iframe = $('<iframe width="356" height="200" allowfullscreen webkitallowfullscreen mozallowfullscreen>').attr('src', url);
4351
+ iframe.insertAfter($(this));
4352
+ $(this).remove();
4353
+ });
4354
 
4355
  });
4356
 
includes/updraftplus-admin-common.min.js CHANGED
@@ -1,4 +1,4 @@
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 d in e)o[d]=e[d];else o.action_data=e;var u={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"function"==typeof r.error_callback?r.error_callback(t,o,502,n):(console.log(o),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t)))}if(n.hasOwnProperty("fatal_error"))return"function"==typeof r.error_callback?r.error_callback(t,e,500,n):(console.error(n.fatal_error_message),r.alert_on_error&&alert(n.fatal_error_message),!1);"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&&(u.timeout=r.timeout),jQuery.ajax(u)}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("#remote_storage_tabs").show()):jQuery("#remote_storage_tabs").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("#remote_storage_tabs").hide()):(jQuery(".updraftplusmethod.none").hide(),jQuery("#remote_storage_tabs").show())}),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 d={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)),d[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");d[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",d,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,d)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))},{error_callback:function(t,e,a,n){if(r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof n&&n.hasOwnProperty("fatal_error"))console.error(n.fatal_error_message),alert(n.fatal_error_message);else{var d="updraft_send_command: error: "+e+" ("+a+")";console.log(d),alert(d),console.log(t)}}})}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=0;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 d=jQuery(this).data("key");e&&(e+=","),e+=d;var u=jQuery(this).find(".updraftplus-remove").data("hasremote");u&&r++}),updraft_delete(e,a,r)}function updraft_open_main_tab(t){updraftlion.main_tabs_keys.forEach(function(e){t==e?(jQuery("#updraft-navtab-"+e+"-content").show(),jQuery("#updraft-navtab-"+e).addClass("nav-tab-active")):(jQuery("#updraft-navtab-"+e+"-content").hide(),jQuery("#updraft-navtab-"+e).removeClass("nav-tab-active")),updraft_console_focussed_tab=t})}function updraft_openrestorepanel(t){updraft_historytimertoggle(t),updraft_open_main_tab("backups")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){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,]+)",d=new RegExp(o),u=t.match(d);u?(jQuery(r).removeAttr("disabled").data("howmany",u[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_db").data("encrypted",1),jQuery(".updraft_restore_crypteddb").show()):(jQuery("#updraft_restore_db").data("encrypted",0),jQuery(".updraft_restore_crypteddb").hide()),jQuery("#updraft_restore_db").trigger("change");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_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&jQuery("#updraft-navtab-backups-content").length&&updraft_activejobs_update(!0))}function setup_migrate_tabs(){jQuery("#updraft_migrate .updraft_migrate_widget_module_content").each(function(t,e){var a=jQuery(e).find("h3").first().html(),r=jQuery(".updraft_migrate_intro"),n=jQuery('<button class="button button-primary button-hero" />').html(a).appendTo(r);n.on("click",function(t){t.preventDefault(),jQuery(e).show(),r.hide()})})}function updraft_backupnow_inpage_go(t,e,a,r,n,o,d){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,d="undefined"==typeof d?updraftlion.automaticbackupbeforeupdate:d,updraft_console_focussed_tab="backups",updraft_inpage_success_callback=t,updraft_activejobs_update_timer=setInterval(function(){updraft_activejobs_update(!1)},1250);var u={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",u),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,d,"")}function updraft_activejobs_update(t){var e=jQuery,a=(new Date).getTime();if(!(0==t&&a<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=a+5500;var r="";e(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,a){var n=e(a).data("downloaderfor");"object"==typeof n&&(""!=r&&(r+=":"),r=r+n.base+","+n.nonce+","+n.what+","+n.index)});var n={downloaders:r};try{e("#updraft-poplog").dialog("isOpen")&&(n.log_fetch=1,n.log_nonce=updraft_poplog_log_nonce,n.log_pointer=updraft_poplog_log_pointer)}catch(o){console.log(o)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(n.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",n,function(t,r,o){try{t.hasOwnProperty("l")&&(t.l?(e("#updraft_lastlogmessagerow").show(),e("#updraft_lastlogcontainer").html(t.l)):(e("#updraft_lastlogmessagerow").hide(),e("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var d=-1,u=e(".updraft_requeststart");t.j&&u.length&&u.data("remove")&&u.remove();var s=e(t.j);s.find(".updraft_jobtimings").each(function(t,a){var r=e(a);if(r.data("jobid")){var n=r.data("jobid"),o=r.closest(".updraft_row");updraft_aborted_jobs[n]&&o.hide()}}),e("#updraft_activejobsrow").html(s);var i=s.find('.job-id[data-isclone="1"]');if(i.length>0){if(0==e(".updraftclone_action_box .updraftclone_network_info").length&&e("#updraft_activejobsrow .job-id .updraft_clone_url").length>0){var l=e("#updraft_activejobsrow .job-id .updraft_clone_url").data("clone_url");updraft_send_command("get_clone_network_info",{clone_url:l},function(t){t.hasOwnProperty("html")&&e(".updraftclone_action_box").html(t.html)})}e("#updraft_clone_activejobsrow").empty(),i.each(function(t,a){var r=e(a);r.closest(".updraft_row").appendTo(e("#updraft_clone_activejobsrow"))})}if(e("#updraft_activejobs .updraft_jobtimings").each(function(t,r){var n=e(r);if(n.data("lastactivity")&&n.data("jobid")){var o=n.data("jobid"),u=n.data("lastactivity");(d==-1||u<d)&&(d=u);var s=n.data("nextresumptionafter"),i=n.data("nextresumption");a=(new Date).getTime(),u>50&&i>0&&s<-30&&a>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||i!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=i,updraft_last_forced_jobid=o,updraft_last_forced_when=a,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+i),updraft_send_command("forcescheduledresumption",{resumption:i,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),a=(new Date).getTime(),updraft_activejobs_nextupdate=a+18e4,1==updraft_page_is_visible&&"backups"==updraft_console_focussed_tab&&(updraft_activejobs_nextupdate=d>-1?d<5?a+1750:a+5e3:lastlog_lastdata==o?a+7500:a+1750),i.length>0&&(updraft_activejobs_nextupdate=a+6e3),lastlog_lastdata=o,null!=t.j&&""!=t.j){if(e("#updraft_activejobsrow").show(),i.length>0&&e("#updraft_clone_activejobsrow").show(),n.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&e("#updraft-jobid-"+n.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&&e(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=e(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,n.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&e("#updraft-jobid-"+n.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),updraft_activejobs_update_timer&&clearInterval(updraft_activejobs_update_timer),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):e("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){e("#updraft_backup_started").slideUp()},3500),n.hasOwnProperty("thisjobonly")&&updraft_backupnow_nonce&&n.thisjobonly===updraft_backupnow_nonce){e(".updraft_requeststart").remove();var p=e("#updraft-jobid-"+updraft_backupnow_nonce);p.is(".updraft_finished")&&(updraft_activejobslist_backupnownonce_only=0,updraft_aborted_jobs[updraft_backupnow_nonce]?updraft_aborted_jobs=updraft_aborted_jobs.filter(function(t,e){return t!=updraft_backupnow_nonce}):updraft_active_job_is_clone(updraft_backupnow_nonce)?(updraft_show_success_modal(updraftlion.clone_backup_complete),updraft_clone_jobs=updraft_clone_jobs.filter(function(t){return t!=updraft_backupnow_nonce})):updraft_show_success_modal(updraftlion.backup_complete),updraft_backupnow_nonce="",updraft_activejobs_update(!0))}}else e("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),updraft_updatehistory(0,0),e("#updraft_activejobsrow").hide());if(lastlog_jobs=t.j,null!=t.ds&&""!=t.ds&&updraft_downloader_status_update(t.ds,o),null!=t.u&&""!=t.u&&e("#updraft-poplog").dialog("isOpen")){var _=t.u;if(_.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=_.pointer,null!=_.log&&""!=_.log)){var c=e("#updraft-poplog").scrollTop();e("#updraft-poplog-content").append(_.log),updraft_poplog_lastscroll!=c&&updraft_poplog_lastscroll!=-1||(e("#updraft-poplog").scrollTop(e("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=e("#updraft-poplog").scrollTop())}}}catch(f){console.log(updraftlion.unexpectedresponse+" "+o),console.log(f)}},{type:"GET",error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),!0===updraftplus_activejobs_list_fatal_error_alert&&(updraftplus_activejobs_list_fatal_error_alert=!1,alert(this.alert_done+" "+r.fatal_error_message));else{var n=e==a?a:a+" ("+e+")";console.error(n),console.log(t)}return!1}})}}function updraft_show_success_modal(t){"string"==typeof t&&(t={message:t});var e=jQuery.extend({icon:"yes",close:updraftlion.close,message:"",classes:"success"},t);jQuery.blockUI({css:{width:"300px",border:"none","border-radius":"10px",left:"calc(50% - 150px)"},message:'<div class="updraft_success_popup '+e.classes+'"><span class="dashicons dashicons-'+e.icon+'"></span><div class="updraft_success_popup--message">'+e.message+'</div><button class="button updraft-close-overlay"><span class="dashicons dashicons-no-alt"></span>'+e.close+"</button></div>"}),setTimeout(jQuery.unblockUI,5e3),jQuery(".blockUI .updraft-close-overlay").on("click",function(){jQuery.unblockUI()})}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,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft-poplog-content").append(r.fatal_error_message);else{var n=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(n),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,a){"undefined"==typeof a&&(a=jQuery("#updraft_debug_mode").is(":checked")?1:0);var r=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=r+30;else if(r<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+r.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 n=e?"remotescan":!!t&&"rescan",o={operation:n,debug:a};updraft_send_command("rescan",o,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_tab")&&t.migrate_tab&&(jQuery("#updraft-navtab-migrate").hasClass("nav-tab-active")||(jQuery("#updraft_migrate_tab_alt").html(""),jQuery("#updraft_migrate").replaceWith(jQuery(t.migrate_tab).find("#updraft_migrate")),setup_migrate_tabs())),t.hasOwnProperty("web_server_disk_space")&&(""==t.web_server_disk_space?(console.log("UpdraftPlus: web_server_disk_space is empty"),jQuery("#updraft-navtab-backups-content .updraft-server-disk-space").length&&jQuery("#updraft-navtab-backups-content .updraft-server-disk-space").slideUp("slow",function(){jQuery(this).remove()})):jQuery("#updraft-navtab-backups-content .updraft-server-disk-space").length?jQuery("#updraft-navtab-backups-content .updraft-server-disk-space").replaceWith(t.web_server_disk_space):jQuery("#updraft-navtab-backups-content .updraft-disk-space-actions").prepend(t.web_server_disk_space)),null!=t.n&&jQuery("#updraft-existing-backups-heading").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),updraft_backups_selection.checkSelectionStatus(),t.data&&console.log(t.data)}})}function updraft_exclude_entity_update(t){var e=[];jQuery("#updraft_include_"+t+"_exclude_container .updraft_exclude_entity_wrapper .updraft_exclude_entity_field").each(function(){var t=jQuery.trim(jQuery(this).data("val"));""!=t&&e.push(t)}),jQuery("#updraft_include_"+t+"_exclude").val(e.join(","))}function updraft_is_unique_exclude_rule(t,e){return existing_exclude_rules_str=jQuery("#updraft_include_"+e+"_exclude").val(),existing_exclude_rules=existing_exclude_rules_str.split(","),!(jQuery.inArray(t,existing_exclude_rules)>-1)||(alert(updraftlion.duplicate_exclude_rule_error_msg),!1)}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 d=updraft_interval_month_val===!1?1:updraft_interval_month_val;d-=1,jQuery(a+" option:eq("+d+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var u=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+u+")").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_aborted_jobs[t]=1,jQuery("#updraft-jobid-"+t).closest(".updraft_row").addClass("deleting"),updraft_send_command("activejobs_delete",t,function(e){var a=jQuery("#updraft-jobid-"+t).closest(".updraft_row");a.addClass("deleting"),"Y"==e.ok?(jQuery("#updraft-jobid-"+t).html(e.m),a.remove(),jQuery("#updraft-backupnow-inpage-modal").dialog("isOpen")&&jQuery("#updraft-backupnow-inpage-modal").dialog("close"),updraft_show_success_modal({message:updraft_active_job_is_clone(t)?updraftlion.clone_backup_aborted:updraftlion.backup_aborted,icon:"no-alt",classes:"warning"})):"N"==e.ok?(a.removeClass("deleting"),alert(e.m)):(a.removeClass("deleting"),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_active_job_is_clone(t){return updraft_clone_jobs.filter(function(e){return e==t}).length}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" class="updraft_jstree_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" class="updraft_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_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+r.fatal_error_message+"</p>"),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+n+"</p>"),console.log(n),alert(n),console.log(t)}}})},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)},{error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";console.log(n),alert(n),console.log(t)}}})})}function remove_updraft_downloader(t,e){jQuery(t).parent().fadeOut().remove(),0==jQuery(".updraftplus_downloader_container_"+e+" .updraftplus_downloader").length&&jQuery(".updraftplus_downloader_container_"+e).remove()}function updraft_downloader(t,e,a,r,n,o,d){"string"!=typeof n&&(n=n.toString()),jQuery(".ud_downloadstatus").show();var n=n.split(","),u=o?o:e,s=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+n[0]).data("wp_nonce").toString();jQuery(r).append('<div class="updraftplus_downloader_container_'+a+' postbox"></div>'),jQuery(".updraftplus_downloader_container_"+a).append('<strong style="clear:left; padding: 8px; margin-top: 4px;">'+updraftlion.download+" "+a+" ("+u+"):</strong>");for(var i=0;i<n.length;i++){var l=t+e+"_"+a+"_"+n[i],p="."+l,_=parseInt(n[i]);_++;var c=0==n[i]?"":" ("+_+")";jQuery(p).length||(jQuery(".updraftplus_downloader_container_"+a).append('<div style="clear:left; padding: 8px; margin-top: 4px;" class="'+l+' updraftplus_downloader"><button onclick="remove_updraft_downloader(this, \''+a+'\');" type="button" style="float:right; margin-bottom: 8px;" class="ud_downloadstatus__close" aria-label="Close"><span class="dashicons dashicons-no-alt"></span></button><strong>'+a+c+'</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+l+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(p).data("downloaderfor",{base:t,nonce:e,what:a,index:n[i]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)),jQuery(p).data("lasttimebegan",(new Date).getTime())}d=!!d;var f={type:a,timestamp:e,findex:n},m={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:s,timeout:1e4,async:d};return updraft_send_command("updraft_download_backup",f,function(t){},m),!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 d=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),d}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,e,a){var r=null;jQuery("#updraft_restorer_restore_options").val("");try{if(null==t)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);
2
- var n=t.m;if(""!=t.w&&(n=n+"<p><strong>"+updraftlion.warnings+"</strong><br>"+t.w+"</p>"),""!=t.e?n=n+"<p><strong>"+updraftlion.errors+"</strong><br>"+t.e+"</p>":updraft_restore_stage=3,t.hasOwnProperty("i")){try{if(r=ud_parse_json(t.i),r.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var o=r.addui;n+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+o+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete r.addui,t.i=JSON.stringify(r))}}catch(d){console.log(d),console.log(t)}jQuery("#updraft_restorer_backup_info").val(t.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(n),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(d){console.log(a),console.log(d),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+a).html()}},{error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft-restore-modal-stage2a").html('<p style="color: red;">'+r.fatal_error_message+"</p>"),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft-restore-modal-stage2a").html('<p style="color: red;">'+n+"</p>"),console.log(n),alert(n),console.log(t)}}}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e){var a=0;return jQuery(t).each(function(t,r){if(""!=r.base){var n=r.base+r.timestamp+"_"+r.what+"_"+r.findex,o="."+n;if(null!=r.e)jQuery(o+" .raw").html("<strong>"+updraftlion.error+"</strong> "+r.e),console.log(r);else if(null!=r.p){if(jQuery(o+"_st .dlfileprogress").width(r.p+"%"),null!=r.a&&r.a>0){var d=(new Date).getTime(),u=jQuery(o).data("lasttimebegan"),s=d-u;if(r.a>90&&s>6e4){console.log(r.timestamp+" "+r.what+" "+r.findex+": restarting download: file_age="+r.a+", sincelastrestart_ms="+s),jQuery(o).data("lasttimebegan",(new Date).getTime());var i=jQuery("#updraft-navtab-backups-content .uddownloadform_"+r.what+"_"+r.timestamp+"_"+r.findex),l={type:r.what,timestamp:r.timestamp,findex:r.findex},p={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:i.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",l,function(t){},p),jQuery(o).data("lasttimebegan",(new Date).getTime())}}if(null!=r.m)if(r.p>=100&&"udrestoredlstatus_"==r.base)jQuery(o+" .raw").html(r.m),jQuery(o).fadeOut("slow",function(){remove_updraft_downloader(this,r.what),updraft_restorer_checkstage2(0)});else if(r.p<100||"uddlstatus_"!=r.base)jQuery(o+" .raw").html(r.m);else{var _=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button class="button" type="button" onclick="updraftplus_downloadstage2(\''+r.timestamp+"', '"+r.what+"', '"+r.findex+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button class="button" id="uddownloaddelete_'+r.timestamp+"_"+r.what+'" type="button" onclick="updraftplus_deletefromserver(\''+r.timestamp+"', '"+r.what+"', '"+r.findex+"')\">"+updraftlion.deletefromserver+"</button>";r.hasOwnProperty("can_show_contents")&&r.can_show_contents&&(_+=' <button class="button" type="button" onclick="updraftplus_show_contents(\''+r.timestamp+"', '"+r.what+"', '"+r.findex+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(o+" .raw").html(_),jQuery(o+"_st").remove()}}else null!=r.m?jQuery(o+" .raw").html(r.m):(jQuery(o+" .raw").html(updraftlion.jsonnotunderstood+" ("+e+")"),a=1)}}),a}function updraft_backupnow_go(t,e,a,r,n,o,d){var u={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};if(""!=r&&(u.onlythisfileentity=r),""!=d&&(u.onlythesetableentities=d),u.always_keep="undefined"!=typeof n.always_keep?n.always_keep:0,delete n.always_keep,!jQuery(".updraft_requeststart").length){var s=jQuery('<div class="updraft_requeststart" />').html('<span class="spinner"></span>'+updraftlion.requeststart);s.data("remove",!1),setTimeout(function(){s.data("remove",!0)},3e3),setTimeout(function(){s.remove()},75e3),jQuery("#updraft_activejobsrow").before(s)}updraft_activejobslist_backupnownonce_only=1,updraft_send_command("backupnow",u,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=updraftlion.tab,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_activejobs_update_timer,updraft_aborted_jobs=[],updraft_clone_jobs=[],updraft_backups_selection={};!function(t){updraft_backups_selection.toggle=function(e){var a=t(e);a.is(".backuprowselected")?this.deselect(e):this.select(e)},updraft_backups_selection.select=function(e){t(e).addClass("backuprowselected"),t(e).find(".backup-select input").prop("checked",!0),this.checkSelectionStatus()},updraft_backups_selection.deselect=function(e){t(e).removeClass("backuprowselected"),t(e).find(".backup-select input").prop("checked",!1),this.checkSelectionStatus()},updraft_backups_selection.selectAll=function(){t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row").each(function(t,e){updraft_backups_selection.select(e)})},updraft_backups_selection.deselectAll=function(){t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row").each(function(t,e){updraft_backups_selection.deselect(e)})},updraft_backups_selection.checkSelectionStatus=function(){var e=t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row").length,a=t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length;a>0?(t("#ud_massactions").addClass("active"),t(".js--deselect-all-backups, .js--delete-selected-backups").prop("disabled",!1)):(t("#ud_massactions").removeClass("active"),t(".js--deselect-all-backups, .js--delete-selected-backups").prop("disabled",!0)),e===a?t("#cb-select-all").prop("checked",!0):t("#cb-select-all").prop("checked",!1),e?t("#ud_massactions").show():t("#ud_massactions").hide()}}(jQuery);var updraftplus_activejobs_list_fatal_error_alert=!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]+/),d=a.url.match(/findex=\d+/),u=a.url.match(/base=[a-z_]+/);if(d=d instanceof Array?parseInt(d[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",u=u instanceof Array?u[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=u&&""!=o&&n>0){var s=u+n+"_"+o+"_"+d;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(e){t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html("").hide(),updraft_send_command("updraftplus_com_login_submit",{data:e},function(e){e.hasOwnProperty("success")?t("#updraft-navtab-addons-content .wrap .updraftplus_com_login").submit():e.hasOwnProperty("error")&&t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html(e.message).show()})}function r(e){t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login_status").html("").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .updraftplus_spinner.spinner").addClass("visible"),updraft_send_command("process_updraftplus_clone_login",e,function(e){try{if(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .updraftplus_spinner.spinner").removeClass("visible"),e.hasOwnProperty("status")&&"error"==e.status)return t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login_status").html(e.message).show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .tfa_fields").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .non_tfa_fields").show(),void t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_two_factor_code").val("");e.hasOwnProperty("tfa_enabled")&&1==e.tfa_enabled&&(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .non_tfa_fields").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .tfa_fields").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 input#temporary_clone_options_two_factor_code").focus()),"authenticated"===e.status&&(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .non_tfa_fields").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .tfa_fields").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 input#temporary_clone_options_two_factor_code").val(""),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").html(e.html))}catch(a){console.log(a)}})}function n(e){t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key_status").html("").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key .updraftplus_spinner.spinner").addClass("visible"),updraft_send_command("process_updraftplus_clone_login",e,function(e){try{if(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key .updraftplus_spinner.spinner").removeClass("visible"),e.hasOwnProperty("status")&&"error"==e.status)return void t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key_status").html(e.message).show();"authenticated"===e.status&&(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").html(e.html))}catch(a){console.log(a)}})}function o(t,e,a,r){var n={updraftplus_clone_backup:1,backupnow_nodb:0,backupnow_nofiles:0,backupnow_nocloud:0,backupnow_label:"UpdraftPlus Clone",extradata:"",onlythisfileentity:"plugins,themes,uploads,others",clone_id:t,secret_token:e,clone_url:a,key:r};updraft_activejobslist_backupnownonce_only=1,updraft_send_command("backupnow",n,function(t){jQuery("#updraft_clone_progress .updraftplus_spinner.spinner").removeClass("visible"),jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,updraft_clone_jobs.push(updraft_backupnow_nonce),updraft_inpage_success_callback=function(){jQuery("#updraft_clone_activejobsrow").hide(),updraft_aborted_jobs[updraft_backupnow_nonce]?jQuery("#updraft_clone_progress").html(updraftlion.clone_backup_aborted):jQuery("#updraft_clone_progress").html(updraftlion.clone_backup_complete)},console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),updraft_activejobs_update(!0)})}function d(t){var e=Handlebars.compile(updraftlion.remote_storage_templates[t]),a=updraftlion.remote_storage_options[t]["default"];a.instance_id="s-"+u(32),a.instance_enabled=1;var r=e(a);jQuery(r).hide().insertAfter("."+t+"_add_instance_container:first").show("slow")}function u(t){for(var e="",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=0;r<t;r++)e+=a.charAt(Math.floor(Math.random()*a.length));return e}function s(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(),i()))}function i(){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 l(e,a,r,n){jQuery("#updraft-delete-modal").dialog("close");var o=e,d=a,u=r,s=n,i=jQuery("#updraft_delete_timestamp").val().split(","),p=jQuery("#updraft_delete_form").serializeArray(),_={};t.each(p,function(){void 0!==_[this.name]?(_[this.name].push||(_[this.name]=[_[this.name]]),_[this.name].push(this.value||"")):_[this.name]=this.value||""}),_.delete_remote?jQuery("#updraft-delete-waitwarning").find(".updraft-deleting-remote").show():jQuery("#updraft-delete-waitwarning").find(".updraft-deleting-remote").hide(),jQuery("#updraft-delete-waitwarning").slideDown().addClass("active"),_.remote_delete_limit=updraftlion.remote_delete_limit,delete _.action,delete _.subaction,delete _.nonce,updraft_send_command("deleteset",_,function(t){if(!t.hasOwnProperty("result")||null==t.result)return void jQuery("#updraft-delete-waitwarning").slideUp();if("error"==t.result)jQuery("#updraft-delete-waitwarning").slideUp(),alert(updraftlion.error+" "+t.message);else if("continue"==t.result){o=o+t.backup_local+t.backup_remote,d+=t.backup_local,u+=t.backup_remote,s+=t.backup_sets;for(var e=t.deleted_timestamps.split(","),a=0;a<e.length;a++){var r=e[a];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+r).slideUp().remove()}jQuery("#updraft_delete_timestamp").val(t.timestamps),jQuery("#updraft-deleted-files-total").text(o+" "+updraftlion.remote_files_deleted),l(o,d,u,s)}else if("success"==t.result){setTimeout(function(){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp()},500),t.hasOwnProperty("count_backups")&&jQuery("#updraft-existing-backups-heading").html(updraftlion.existing_backups+' <span class="updraft_existing_backups_count">'+t.count_backups+"</span>");for(var a=0;a<i.length;a++){var r=i[a];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+r).slideUp().remove()}updraft_backups_selection.checkSelectionStatus(),updraft_history_lastchecksum=!1,d+=t.backup_local,u+=t.backup_remote,s+=t.backup_sets,setTimeout(function(){alert(t.set_message+" "+s+"\n"+t.local_message+" "+d+"\n"+t.remote_message+" "+u)},900)}})}function p(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude_container").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude_container").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude_container").slideUp()}function _(){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 c(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 f(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-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 m(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," "))}function g(e,a,r){jQuery("#updraft_upload_timestamp").val(e),jQuery("#updraft_upload_nonce").val(a);var n=r.split(",");jQuery(".updraft_remote_storage_destination").each(function(e){var a=jQuery(this).val();if(jQuery.inArray(a,n)==-1){jQuery(this).prop("checked",!1),jQuery(this).prop("disabled",!0);var r=t(this).prop("labels");jQuery(r).append(" "+updraftlion.already_uploaded)}}),jQuery("#updraft-upload-modal").dialog("open")}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 h=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||h.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 d=id_split[1];"undefined"==typeof e[d]&&(e[d]=[]),e[d][o]=this.value}});var a="",r="@",n="/",o=":",d=":";for(var u in e)(e[u].host.indexOf("@")>=0||""===e[u].host)&&(r=""),e[u].host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e[u].path.indexOf("/")&&""!==e[u].path||(n=""),""!==e[u].user&&""!==e[u].pass||(o=""),""!==e[u].host&&""!==e[u].port||(d=""),a=e[u].webdav+e[u].user+o+e[u].pass+r+encodeURIComponent(e[u].host)+d+e[u].port+n+e[u].path,t("#updraft_webdav_url_"+u).val(a)}),t("#updraft-navtab-backups-content").on("click",".js--delete-selected-backups",function(t){t.preventDefault(),updraft_deleteallselected()}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .backup-select input",function(e){updraft_backups_selection.toggle(t(this).closest(".updraft_existing_backups_row"))}),t("#updraft-navtab-backups-content").on("click","#cb-select-all",function(e){t(this).is(":checked")?updraft_backups_selection.selectAll():updraft_backups_selection.deselectAll()}),t("#updraft-navtab-backups-content").on("click",".js--select-all-backups",function(t){updraft_backups_selection.selectAll()}),t("#updraft-navtab-backups-content").on("click",".js--deselect-all-backups",function(t){updraft_backups_selection.deselectAll()}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(t){(t.ctrlKey||t.metaKey)&&updraft_backups_selection.toggle(this)}),updraft_backups_selection.checkSelectionStatus(),t("#updraft-navtab-addons-content .wrap").on("click",".updraftplus_com_login .ud_connectsubmit",function(e){e.preventDefault();var r=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email").val(),n=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password").val(),o=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates").is(":checked")?1:0,d={email:r,password:n,auto_update:o};a(d)}),t("#updraft-navtab-addons-content .wrap").on("keydown",".updraftplus_com_login input",function(e){if(13==e.which){e.preventDefault();var r=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email").val(),n=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password").val(),o=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates").is(":checked")?1:0,d={email:r,password:n,auto_update:o};a(d)}}),t("#updraft-navtab-migrate-content").on("click",".updraftclone_show_step_1",function(e){t(".updraftplus-clone").addClass("opened"),t(".updraftclone_show_step_1").hide(),t(".updraft_migrate_widget_temporary_clone_stage1").show(),t(".updraft_migrate_widget_temporary_clone_stage0").hide()}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_temporary_clone_show_stage0",function(e){e.preventDefault(),t(".updraft_migrate_widget_temporary_clone_stage0").toggle()}),setup_migrate_tabs(),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_module_content .close",function(e){t(".updraft_migrate_intro").show(),t(this).closest(".updraft_migrate_widget_module_content").hide()}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_add_site--trigger",function(e){e.preventDefault(),t(".updraft_migrate_add_site").toggle()}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_module_content .updraftplus_com_login .ud_connectsubmit",function(e){e.preventDefault();var a=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_email").val(),n=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_password").val(),o=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_two_factor_code").val(),d=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .temporary_clone_terms_and_conditions").is(":checked")?1:0,u={form_data:{email:a,password:n,two_factor_code:o,consent:d}};a&&n?r(u):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login_status").html("<b>"+updraftlion.error+"</b> "+updraftlion.username_password_required).show()}),t("#updraft-navtab-migrate-content").on("keydown",".updraft_migrate_widget_module_content .updraftplus_com_login input",function(e){if(13==e.which){e.preventDefault();var a=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_email").val(),n=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_password").val(),o=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_two_factor_code").val(),d=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .temporary_clone_terms_and_conditions").is(":checked")?1:0,u={form_data:{email:a,password:n,two_factor_code:o,consent:d}};a&&n?r(u):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login_status").html("<b>"+updraftlion.error+"</b> "+updraftlion.username_password_required).show()}}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_module_content .updraftplus_com_key .ud_key_connectsubmit",function(e){e.preventDefault();var a=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key #temporary_clone_options_key").val(),r=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key .temporary_clone_terms_and_conditions").is(":checked")?1:0,o={form_data:{clone_key:a,consent:r}};a?n(o):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key_status").html("<b>"+updraftlion.error+"</b> "+updraftlion.clone_key_required).show()}),t("#updraft-navtab-migrate-content").on("keydown",".updraft_migrate_widget_module_content .updraftplus_com_key input",function(e){if(13==e.which){e.preventDefault();var a=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key #temporary_clone_options_key").val(),r=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key .temporary_clone_terms_and_conditions").is(":checked")?1:0,o={form_data:{clone_key:a,consent:r}};a?n(o):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key_status").html("<b>"+updraftlion.error+"</b> "+updraftlion.clone_key_required).show()}}),t("#updraft-navtab-migrate-content").on("change",".updraft_migrate_widget_module_content #updraftplus_clone_php_options",function(){var e=t(this).data("php_version"),a=t(this).val();a<e?t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html(updraftlion.clone_version_warning):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html("")}),t("#updraft-navtab-migrate-content").on("change",".updraft_migrate_widget_module_content #updraftplus_clone_wp_options",function(){var e=t(this).data("wp_version"),a=t(this).val();a<e?t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html(updraftlion.clone_version_warning):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html("")}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_module_content #updraft_migrate_createclone",function(e){e.preventDefault(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraft_migrate_createclone").prop("disabled",!0),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html(""),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_spinner.spinner").addClass("visible");var a=t(this).data("clone_id"),r=t(this).data("secret_token"),n=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_php_options").val(),d=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_wp_options").val(),u=t(".updraftplus_clone_admin_login_options").is(":checked"),s={form_data:{clone_id:a,secret_token:r,install_info:{php_version:n,wp_version:d,admin_only:u
3
- }}};updraft_send_command("process_updraftplus_clone_create",s,function(e){try{if(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraft_migrate_createclone").prop("disabled",!1),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_spinner.spinner").removeClass("visible"),e.hasOwnProperty("status")&&"error"==e.status)return void t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html(updraftlion.error+" "+e.message).show();"success"===e.status&&(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage3").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage3").html(e.html),jQuery("#updraft_clone_progress .updraftplus_spinner.spinner").addClass("visible"),o(a,r,e.url,e.key))}catch(n){t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraft_migrate_createclone").prop("disabled",!1),console.log("Error when processing the response of process_updraftplus_clone_create (as follows)"),console.log(n)}})}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_add_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var a=t(this).data("method");d(a)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_delete_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var a=t(this).data("method"),r=t(this).data("instance_id");1===t("."+a+"_updraft_remote_storage_border").length&&d(a),t("."+a+"-"+r).hide("slow",function(){t(this).remove()})}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).find("span").hide(),t(this).attr("contentEditable",!0).focus()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keyup",".updraftplusmethod .updraft_edit_label_instance",function(e){var a=jQuery(this).data("method"),r=jQuery(this).data("instance_id"),n=jQuery(this).text();t("#updraft_"+a+"_instance_label_"+r).val(n)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("blur",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).attr("contentEditable",!1),t(this).find("span").show()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keypress",".updraftplusmethod .updraft_edit_label_instance",function(e){13===e.which&&(t(this).attr("contentEditable",!1),t(this).find("span").show(),t(this).blur())}),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 e=jQuery(this).data("method"),a=jQuery(this).data("instance_id");updraft_remote_storage_test(e,function(r,n,o){return"sftp"==e&&(o.hasOwnProperty("scp")&&o.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+r.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+r.output),r.hasOwnProperty("data")&&r.data&&r.data.hasOwnProperty("valid_md5_fingerprint")&&r.data.valid_md5_fingerprint&&t("#updraft_sftp_fingerprint_"+a).val(r.data.valid_md5_fingerprint),!0)},a)}),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").on("click","a.updraft_diskspaceused_update",function(t){t.preventDefault(),updraftplus_diskspace()}),t(".advanced_settings_content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),jQuery(".advanced_settings_content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery(".advanced_settings_content .updraft_diskspaceused").html(t.output)},{type:"GET"})}),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)}),t("#updraftplus-remote-rescan-debug").click(function(t){t.preventDefault(),updraft_updatehistory(1,1,1)}),jQuery("#updraftcentral_keys").on("click",'input[type="radio"]',function(){s(!1)}),s(!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)},{error_callback:function(t,e,a,r){if(jQuery("#updraftcentral_view_log_container").unblock(),"undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";console.log(n),alert(n),console.log(t)}}})}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(),i()}),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(t.hasOwnProperty("error"))return alert(t.error),void console.log(t);alert(t.r),t.hasOwnProperty("bundle")&&t.hasOwnProperty("keys_guide")?(jQuery("#updraftcentral_keys_content").html(t.keys_guide),jQuery("#updraftcentral_keys_content").append('<div class="updraftcentral_wizard_success">'+t.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+t.bundle+"</textarea></div>")):console.log(t),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").append(t.keys_table),jQuery("#updraftcentral_wizard_go").show()}catch(e){alert(updraftlion.unexpectedresponse+" "+response),console.log(e)}},{error_callback:function(t,e,a,r){if(jQuery("#updraftcentral_keys").unblock(),"undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";console.log(n),alert(n),console.log(t)}}})}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)},{error_callback:function(t,e,a,r){if(jQuery("#updraftcentral_keys").unblock(),"undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";console.log(n),alert(n),console.log(t)}}}))}),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 y=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>y&&(y=a)}),y>180&&jQuery(".updraft-bigbutton").width(y),jQuery("#updraft-navtab-backups-content").length&&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")&&1==jQuery(this).data("encrypted")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var b={};b[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:b});var v={};v[updraftlion.deletebutton]=function(){l(0,0,0,0)},v[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:322,width:430,modal:!0,buttons:v});var w={};w[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 d=jQuery(o).data("howmany"),u=jQuery(o).val();if((1==r||2==r&&"db"!=u)&&("wpcore"!=u&&(d=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),u="wpcore"),"wpcore"!=u||0==a){var s=[u,d];e.push(s),"wpcore"==u&&(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,d=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:d},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_",d,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1,error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft-restore-modal-stage2a").html('<p style="color:red;">'+r.fatal_error_message+"</p>");else{var n="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft-restore-modal-stage2a").html('<p style="color:red; margin: 5px;">'+n+"</p>"),console.log(n),console.log(t)}}})}catch(u){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(u),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)},w[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:w}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:380,width:580,modal:!0});var j={};j[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(""),n=jQuery("#always_keep").is(":checked")?1:0;if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var o=backupnow_whichfiles_checked("");return""==o&&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,o,{always_keep:n},jQuery("#backupnow_label").val(),r))},j[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:j,create:function(){t(this).closest(".ui-dialog").find(".ui-dialog-buttonpane .ui-button:first").addClass("js-tour-backup-now-button")}}),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&&p(t,!1)}),jQuery(".updraft_exclude_entity_container").on("click",".updraft_exclude_entity_delete",function(t){if(t.preventDefault(),confirm(updraftlion.exclude_rule_remove_conformation_msg)){var e=jQuery(this).data("include-backup-file");jQuery.when(jQuery(this).closest(".updraft_exclude_entity_wrapper").remove()).then(updraft_exclude_entity_update(e))}}),jQuery(".updraft_exclude_entity_container").on("click",".updraft_exclude_entity_edit",function(t){t.preventDefault();var e=jQuery(this).hide().closest(".updraft_exclude_entity_wrapper"),a=e.find("input");a.removeProp("readonly").focus();var r=a.val();a.val(""),a.val(r),e.find(".updraft_exclude_entity_update").addClass("is-active").show()}),jQuery(".updraft_exclude_entity_container").on("click",".updraft_exclude_entity_update",function(t){t.preventDefault();var e=jQuery(this).closest(".updraft_exclude_entity_wrapper"),a=jQuery(this).data("include-backup-file"),r=jQuery.trim(e.find("input").val()),n=!1;r==e.find("input").data("val")?n=!0:updraft_is_unique_exclude_rule(r,a)&&(n=!0),n&&(jQuery(this).hide().removeClass("is-active"),jQuery.when(e.find("input").prop("readonly","readonly").data("val",r)).then(function(){e.find(".updraft_exclude_entity_edit").show(),updraft_exclude_entity_update(a)}))}),jQuery("#updraft_exclude_modal").dialog({autoOpen:!1,modal:!0,width:520,height:"auto",open:function(e,a){t(this).parent().focus()}}),jQuery(".updraft_exclude_container .updraft_add_exclude_item").click(function(t){t.preventDefault();var e=jQuery(this).data("include-backup-file");jQuery("#updraft_exclude_modal_for").val(e),jQuery("#updraft_exclude_modal_path").val(jQuery(this).data("path")),"uploads"==e&&jQuery("#updraft-exclude-file-dir-prefix").html(jQuery("#updraft-exclude-upload-base-dir").val()),jQuery(".updraft-exclude-modal-reset").trigger("click"),jQuery("#updraft_exclude_modal").dialog("open")}),jQuery(".updraft-exclude-link").click(function(t){t.preventDefault();var e=jQuery(this).data("panel");"file-dir"==e&&jQuery("#updraft_exclude_files_folders_jstree").jstree({core:{multiple:!1,data:function(t,e){updraft_send_command("get_jstree_directory_nodes",{entity:"filebrowser",node:t,path:jQuery("#updraft_exclude_modal_path").val(),findex:0,skip_root_node:!0},function(t){t.hasOwnProperty("error")?alert(t.error):e.call(this,t.nodes)},{error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+r.fatal_error_message+"</p>"),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+n+"</p>"),console.log(n),alert(n),console.log(t)}}})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["sort"]}),jQuery("#updraft_exclude_modal_main").slideUp(),jQuery(".updraft-exclude-panel").hide(),jQuery(".updraft-exclude-panel[data-panel="+e+"]").slideDown()}),jQuery(".updraft-exclude-modal-reset").click(function(t){t.preventDefault(),jQuery("#updraft_exclude_files_folders_jstree").jstree("destroy"),jQuery("#updraft_exclude_extension_field").val(""),jQuery("#updraft_exclude_prefix_field").val(""),jQuery(".updraft-exclude-panel").slideUp(),jQuery("#updraft_exclude_modal_main").slideDown()}),jQuery(".updraft-exclude-submit").click(function(){var t=jQuery(this).data("panel"),e="";switch(t){case"file-dir":var a=jQuery("#updraft_exclude_files_folders_jstree").jstree("get_selected");if(0==a.length)return void alert(updraftlion.exclude_select_file_or_folder_msg);var r=a[0],n=jQuery("#updraft_exclude_modal_path").val();r.substr(0,n.length)==n&&(r=r.substr(n.length,r.length)),"/"==r.charAt(0)&&(r=r.substr(1)),"/"==r.charAt(r.length-1)&&(r=r.substr(0,r.length-1)),e=r;break;case"extension":var o=jQuery("#updraft_exclude_extension_field").val();if(""==o)return void alert(updraftlion.exclude_type_ext_msg);if(!o.match(/^[0-9a-zA-Z]+$/))return void alert(updraftlion.exclude_ext_error_msg);e="ext:"+o;break;case"begin-with":var d=jQuery("#updraft_exclude_prefix_field").val();if(""==d)return void alert(updraftlion.exclude_type_prefix_msg);if(!d.match(/^\s*[a-z-_\d,\s]+\s*$/i))return void alert(updraftlion.exclude_prefix_error_msg);e="prefix:"+d;break;default:return}var u=jQuery("#updraft_exclude_modal_for").val();if(updraft_is_unique_exclude_rule(e,u)){var s='<div class="updraft_exclude_entity_wrapper"><input type="text" class="updraft_exclude_entity_field updraft_include_'+u+'_exclude_entity" name="updraft_include_'+u+'_exclude_entity[]" value="'+e+'" data-val="'+e+'" data-include-backup-file="'+u+'" readonly="readonly"><a href="#" class="updraft_exclude_entity_edit dashicons dashicons-edit" data-include-backup-file="'+u+'"></a><a href="#" class="updraft_exclude_entity_update dashicons dashicons-yes" data-include-backup-file="'+u+'" style="display: none;"></a><a href="#" class="updraft_exclude_entity_delete dashicons dashicons-no" data-include-backup-file="'+u+'"></a></div>';jQuery('.updraft_exclude_entity_container[data-include-backup-file="'+u+'"]').append(s),updraft_exclude_entity_update(u),jQuery("#updraft_exclude_modal").dialog("close")}}),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(),updraft_open_main_tab("status"),updraft_page_is_visible=1,updraft_console_focussed_tab="status",updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),updraft_open_main_tab("expert"),updraft_page_is_visible=1}),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"),updraft_open_main_tab("settings"),updraft_page_is_visible=1}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),updraft_open_main_tab("addons"),updraft_page_is_visible=1}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_console_focussed_tab="backups",updraft_historytimertoggle(1),updraft_open_main_tab("backups")}),jQuery("#updraft-navtab-migrate").click(function(t){t.preventDefault(),jQuery("#updraft_migrate_tab_alt").html("").hide(),updraft_open_main_tab("migrate"),updraft_page_is_visible=1,jQuery("#updraft_migrate .updraft_migrate_widget_module_content").is(":visible")||jQuery(".updraft_migrate_intro").show()}),"migrate"==updraftlion.tab&&jQuery("#updraft-navtab-migrate").trigger("click"),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&&_()}catch(k){console.log(k)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),c(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),c(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, #updraft-navtab-migrate-content").on("click",".updraft_jobinfo_delete",function(e){e.preventDefault();var a=jQuery(this).data("jobid");a?(t(this).addClass("disabled"),updraft_activejobs_delete(a)):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, #updraft-navtab-migrate-content").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");f(e,a,r)}),"initiate_restore"==m("udaction")){var Q=m("entities"),x=m("backup_timestamp"),O=m("showdata");f(Q,x,O)}var P={};P[updraftlion.uploadbutton]=function(){var t=jQuery("#updraft_upload_timestamp").val(),e=jQuery("#updraft_upload_nonce").val(),a="",r=!1;return jQuery(".updraft_remote_storage_destination").each(function(t){jQuery(this).is(":checked")&&(r=!0)}),r?(a=jQuery("input[name^='updraft_remote_storage_destination_']").serializeArray(),jQuery(this).dialog("close"),alert(updraftlion.local_upload_started),void updraft_send_command("upload_local_backup",{use_nonce:e,use_timestamp:t,services:a},function(t){})):void jQuery("#updraft-upload-modal-error").html(updraftlion.local_upload_error)},P[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-upload-modal").dialog({autoOpen:!1,height:322,width:430,modal:!0,buttons:P}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.updraft-upload-link",function(t){t.preventDefault();var e=jQuery(this).data("nonce").toString(),a=jQuery(this).data("key").toString(),r=jQuery(this).data("services").toString();e?g(a,e,r):console.log("UpdraftPlus: A upload link was clicked, but the Job ID could not be found")}),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"),d=jQuery(this).data("prettydate"),u=!0;updraft_downloader(e,a,r,n,o,d,u)}),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).on("keypress","#updraftvault_settings_connect input",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())))},{error_callback:function(a,r,n,o){if(t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),"undefined"!=typeof o&&o.hasOwnProperty("fatal_error"))console.error(o.fatal_error_message),alert(o.fatal_error_message);else{var d="updraft_send_command: error: "+r+" ("+n+")";console.log(d),alert(d),console.log(a)}}})}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())},{error_callback:function(a,r,n,o){if(t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),"undefined"!=typeof o&&o.hasOwnProperty("fatal_error"))console.error(o.fatal_error_message),alert(o.fatal_error_message);else{var d="updraft_send_command: error: "+r+" ("+n+")";console.log(d),alert(d),console.log(a)}}})}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("#remote-storage-holder").on("keyup",".updraftplus_onedrive_folder_input",function(e){var a=t(this).val(),r=t(this).closest("td");0==a.indexOf("https:")||0==a.indexOf("http:")?r.find(".onedrive_folder_error").length||r.append('<div class="onedrive_folder_error">'+updraftlion.onedrive_folder_url_warning+"</div>"):r.find(".onedrive_folder_error").slideUp("slow",function(){r.find(".onedrive_folder_error").remove()})}),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))},{error_callback:function(a,r,n,o){if(t(e+"#updraftvault_connect_go").html(updraftlion.connect),"undefined"!=typeof o&&o.hasOwnProperty("fatal_error"))console.error(o.fatal_error_message),alert(o.fatal_error_message);else{
4
- var d="updraft_send_command: error: "+r+" ("+n+")";console.log(d),alert(d),console.log(a)}}}),!1}),t("#updraft-iframe-modal").on("change","#always_keep_this_backup",function(){var e=t(this).data("backup_key"),a={backup_key:e,always_keep:t(this).is(":checked")?1:0};updraft_send_command("always_keep_this_backup",a,function(t){t.hasOwnProperty("rawbackup")&&(jQuery("#updraft-iframe-modal").dialog("close"),jQuery(".updraft_existing_backups_row_"+e+" .updraft_existingbackup_date").data("rawbackup",t.rawbackup),updraft_html_modal(jQuery(".updraft_existing_backups_row_"+e+" .updraft_existingbackup_date").data("rawbackup"),updraftlion.raw,780,500))})})}),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]&&1<Object.keys(updraftlion.remote_storage_options[n]).length){var o=Handlebars.compile(updraftlion.remote_storage_templates[n]),d=!0;for(var u in updraftlion.remote_storage_options[n])if("default"!==u){var s=updraftlion.remote_storage_options[n][u];s.first_instance=d,"undefined"==typeof s.instance_enabled&&(s.instance_enabled=1),r+=o(s),d=!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(),t("#remote-storage-holder .updraftplus_onedrive_folder_input").trigger("keyup")})}}),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 d=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:d,updraftplus_version:updraftlion.updraftplus_version},function(e,a,r){var o=n(e);!o.hasOwnProperty("saved")||o.saved?(updraft_settings_form_changed=!1,location.replace(updraftlion.updraft_settings_url)):(t.unblockUI(),o.hasOwnProperty("error_message")&&o.error_message&&alert(o.error_message))},{action:"updraft_importsettings",nonce:updraftplus_settings_nonce,error_callback:function(e,a,r,n){if(t.unblockUI(),"undefined"!=typeof n&&n.hasOwnProperty("fatal_error"))console.error(n.fatal_error_message),alert(n.fatal_error_message);else{var o="updraft_send_command: error: "+a+" ("+r+")";console.log(o),console.log(e),alert(o)}}})}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,a){try{var r=(e.messages,e.backup_dir.writable),n=e.backup_dir.message,o=e.backup_dir.button_title}catch(d){return console.log(d),console.log(a),alert(updraftlion.jsonnotunderstood),t.unblockUI(),{}}if(e.hasOwnProperty("changed")){console.log("UpdraftPlus: savesettings: some values were changed after being filtered"),console.log(e.changed);for(prop in e.changed)if("object"==typeof e.changed[prop])for(innerprop in e.changed[prop])t("[name='"+innerprop+"']").is(":checkbox")||t("[name='"+prop+"["+innerprop+"]']").val(e.changed[prop][innerprop]);else t("[name='"+prop+"']").is(":checkbox")||t("[name='"+prop+"']").val(e.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")),e.hasOwnProperty("updraft_include_more_path")&&t("#backupnow_includefiles_moreoptions").html(e.updraft_include_more_path),e.hasOwnProperty("backup_now_message")&&t("#backupnow_remote_container").html(e.backup_now_message),t(".updraftmessage").remove(),t("#updraft_backup_started").before(e.messages),console.log(e),t("#updraft-next-files-backup-inner").html(e.files_scheduled),t("#updraft-next-database-backup-inner").html(e.database_scheduled),e}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 d=new Image;d.src=updraftlion.ud_url+"/images/notices/updraft_logo.png",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({css:{width:"300px",border:"none","border-radius":"10px",left:"calc(50% - 150px)",padding:"20px"},message:'<div style="margin: 8px; font-size:150%;" class="updraft_saving_popup"><img src="'+updraftlion.ud_url+'/images/notices/updraft_logo.png" 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,a,r){n(e,r),t("#updraft-wrap .fade").delay(6e3).fadeOut(2e3),window.updraft_main_tour&&!window.updraft_main_tour.canceled?(window.updraft_main_tour.show("settings_saved"),o()):t("html, body").animate({scrollTop:t("#updraft-wrap").offset().top},1e3,function(){o()}),t.unblockUI()},{action:"updraft_savesettings",error_callback:function(e,a,r,n){if(t.unblockUI(),"undefined"!=typeof n&&n.hasOwnProperty("fatal_error"))console.error(n.fatal_error_message),alert(n.fatal_error_message);else{var o="updraft_send_command: error: "+a+" ("+r+")";console.log(o),alert(o),console.log(e)}},nonce:updraftplus_settings_nonce})}),t("#updraftplus-settings-export").click(function(){updraft_settings_form_changed&&alert(updraftlion.unsaved_settings_export),e()}),t("#updraftplus-settings-import").click(function(){t.blockUI({css:{width:"300px",border:"none","border-radius":"10px",left:"calc(50% - 150px)",padding:"20px"},message:'<div style="margin: 8px; font-size:150%;" class="updraft_saving_popup"><img src="'+updraftlion.ud_url+'/images/notices/updraft_logo.png" 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){function e(e,n,o,d){if("function"==typeof o){var u=t(d).find("#updraftcentral_cloud_form"),s=u.find('.form_hidden_fields input[name="key"]');if(s.length&&""!==s.val())return void o.apply(this,[s.val()]);var i={where_send:"__updraftpluscom",key_description:"",key_size:e,mothership_firewalled:n};a(d),updraft_send_command("updraftcentral_create_key",i,function(e){r(d);try{if(i=ud_parse_json(e),i.hasOwnProperty("error"))return void console.log(i);i.hasOwnProperty("bundle")?o.apply(this,[i.bundle]):i.hasOwnProperty("r")?(t(d).find(".updraftcentral_cloud_notices").html(updraftlion.trouble_connecting).addClass("updraftcentral_cloud_info"),alert(i.r)):console.log(i)}catch(a){console.log(a)}},{json_parse:!1})}}function a(e){t(e).find(".updraftplus_spinner.spinner").addClass("visible")}function r(e){t(e).find(".updraftplus_spinner.spinner").removeClass("visible")}function n(e,n){a(n),updraft_send_command("process_updraftcentral_registration",e,function(a){r(n);try{if(e=ud_parse_json(a),e.hasOwnProperty("error")){var o=e.message,u=["existing_user_email","email_exists"];return-1!==t.inArray(e.code,u)&&(o=e.message+" "+updraftlion.perhaps_login),t(n).find(".updraftcentral_cloud_notices").html(o).addClass("updraftcentral_cloud_error"),t(n).find(".updraftcentral_cloud_notices a").attr("target","_blank"),void console.log(e)}"registered"===e.status&&(t(n).find(".updraftcentral_cloud_form_container").hide(),t(n).find(".updraftcentral-subheading").hide(),t(n).find(".updraftcentral_cloud_notices").removeClass("updraftcentral_cloud_error"),d(n,e,updraftlion.registration_successful))}catch(s){console.log(s)}},{json_parse:!1})}function o(e,o){a(o),updraft_send_command("process_updraftcentral_login",e,function(a){r(o);try{if(data=ud_parse_json(a),data.hasOwnProperty("error")){if("incorrect_password"===data.code&&(t(o).find(".updraftcentral_cloud_form_container .tfa_fields").hide(),t(o).find(".updraftcentral_cloud_form_container .non_tfa_fields").show(),t(o).find("input#two_factor_code").val(""),t(o).find("input#password").val("").focus()),"email_not_registered"!==data.code)return t(o).find(".updraftcentral_cloud_notices").html(data.message).addClass("updraftcentral_cloud_error"),t(o).find(".updraftcentral_cloud_notices a").attr("target","_blank"),void console.log(data);n(e,o)}data.hasOwnProperty("tfa_enabled")&&1==data.tfa_enabled&&(t(o).find(".updraftcentral_cloud_notices").html("").removeClass("updraftcentral_cloud_error"),t(o).find(".updraftcentral_cloud_form_container .non_tfa_fields").hide(),t(o).find(".updraftcentral_cloud_form_container .tfa_fields").show(),t(o).find("input#two_factor_code").focus()),"authenticated"===data.status&&(t(o).find(".updraftcentral_cloud_form_container").hide(),t(o).find(".updraftcentral_cloud_notices").removeClass("updraftcentral_cloud_error"),d(o,data,updraftlion.login_successful))}catch(u){console.log(u)}},{json_parse:!1})}function d(e,a,r){var n=t(e).find("form#updraftcentral_cloud_redirect_form");n.attr("action",a.redirect_url),n.attr("target","_blank"),"undefined"!=typeof a.redirect_token&&n.append('<input type="hidden" name="redirect_token" value="'+a.redirect_token+'">'),a.hasOwnProperty("keys_table")&&a.keys_table&&t("#updraftcentral_keys_content").html(a.keys_table),$redirect_lnk='<a href="'+updraftlion.current_clean_url+'" class="updraftcentral_cloud_redirect_link">'+updraftlion.updraftcentral_cloud+"</a>",$close_lnk='<a href="'+updraftlion.current_clean_url+'" class="updraftcentral_cloud_close_link">'+updraftlion.close_wizard+"</a>",t(e).find(".updraftcentral_cloud_notices").html(r.replace("%s",$redirect_lnk)+" "+$close_lnk+"<br/><br/>"+updraftlion.control_udc_connections),t(e).find(".updraftcentral_cloud_notices .updraftcentral_cloud_redirect_link").off("click").on("click",function(a){a.preventDefault(),n.submit(),t(e).find(".updraftcentral_cloud_notices .updraftcentral_cloud_close_link").trigger("click")}),t(e).find(".updraftcentral_cloud_notices .updraftcentral_cloud_close_link").off("click").on("click",function(a){a.preventDefault(),t(e).dialog("close"),t("#updraftcentral_cloud_connect_container").hide()})}function u(e){var a=t(e).find("#updraftcentral_cloud_form"),r=a.find("input#email").val(),n=a.find("input#password").val(),o=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;t(e).find(".updraftcentral_cloud_notices").html("").removeClass("updraftcentral_cloud_error updraftcentral_cloud_info");var d=a.find('.updraftcentral-data-consent > input[name="i_consent"]').is(":checked");return d?0===r.length||0===n.length?(t(e).find(".updraftcentral_cloud_notices").html(updraftlion.username_password_required).addClass("updraftcentral_cloud_error"),!1):null!==r.match(o)||(t(e).find(".updraftcentral_cloud_notices").html(updraftlion.valid_email_required).addClass("updraftcentral_cloud_error"),!1):(t(e).find(".updraftcentral_cloud_notices").html(updraftlion.data_consent_required).addClass("updraftcentral_cloud_error"),!1)}function s(a,r){var d=t(a).find("#updraft_central_keysize").val(),u=t(a).find("#updraft_central_firewalled").is(":checked")?1:0;e(d,u,function(e){var d=t(a).find("#updraftcentral_cloud_form"),u=d.find('.form_hidden_fields input[name="key"]');0===u.length&&d.find(".form_hidden_fields").append('<input type="hidden" name="key" value="'+e+'">');var s=d.find("input").serialize(),i={form_data:s};"undefined"!=typeof r&&r?n(i,a):o(i,a)},a)}function i(){var e=t("#updraftcentral_cloud_login_form");if(e.length){t("#updraft-iframe-modal-innards").html(e.html());var a=t("#updraft-iframe-modal").dialog("option","title",updraftlion.updraftcentral_cloud).dialog("option","width",520).dialog("option","height",450).dialog("option","buttons",{});a.dialog("open");var r=a.find(".updraftcentral-data-consent"),n=r.find("input").attr("name");"undefined"!=typeof n&&n&&(r.find("input").attr("id",n),r.find("label").attr("for",n))}}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)})}}),t("#updraft-wrap #btn_cloud_connect").on("click",function(){i()}),t("#updraft-wrap a#self_hosted_connect").on("click",function(e){e.preventDefault(),t("h2.nav-tab-wrapper > a#updraft-navtab-expert").trigger("click"),t("div.advanced_settings_menu > #updraft_central").trigger("click")}),t("#updraft-iframe-modal").on("click","#updraftcentral_cloud_login",function(e){e.preventDefault();var a=t(this).closest("#updraft-iframe-modal");u(a)&&s(a)})});
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 d in e)o[d]=e[d];else o.action_data=e;var u={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"function"==typeof r.error_callback?r.error_callback(t,o,502,n):(console.log(o),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t)))}if(n.hasOwnProperty("fatal_error"))return"function"==typeof r.error_callback?r.error_callback(t,e,500,n):(console.error(n.fatal_error_message),r.alert_on_error&&alert(n.fatal_error_message),!1);"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&&(u.timeout=r.timeout),jQuery.ajax(u)}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("#remote_storage_tabs").show()):jQuery("#remote_storage_tabs").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("#remote_storage_tabs").hide()):(jQuery(".updraftplusmethod.none").hide(),jQuery("#remote_storage_tabs").show())}),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 d={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)),d[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");d[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",d,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,d)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))},{error_callback:function(t,e,a,n){if(r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof n&&n.hasOwnProperty("fatal_error"))console.error(n.fatal_error_message),alert(n.fatal_error_message);else{var d="updraft_send_command: error: "+e+" ("+a+")";console.log(d),alert(d),console.log(t)}}})}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=0;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 d=jQuery(this).data("key");e&&(e+=","),e+=d;var u=jQuery(this).find(".updraftplus-remove").data("hasremote");u&&r++}),updraft_delete(e,a,r)}function updraft_open_main_tab(t){updraftlion.main_tabs_keys.forEach(function(e){t==e?(jQuery("#updraft-navtab-"+e+"-content").show(),jQuery("#updraft-navtab-"+e).addClass("nav-tab-active")):(jQuery("#updraft-navtab-"+e+"-content").hide(),jQuery("#updraft-navtab-"+e).removeClass("nav-tab-active")),updraft_console_focussed_tab=t})}function updraft_openrestorepanel(t){updraft_historytimertoggle(t),updraft_open_main_tab("backups")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){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,]+)",d=new RegExp(o),u=t.match(d);u?(jQuery(r).removeAttr("disabled").data("howmany",u[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_db").data("encrypted",1),jQuery(".updraft_restore_crypteddb").show()):(jQuery("#updraft_restore_db").data("encrypted",0),jQuery(".updraft_restore_crypteddb").hide()),jQuery("#updraft_restore_db").trigger("change");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_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&jQuery("#updraft-navtab-backups-content").length&&updraft_activejobs_update(!0))}function setup_migrate_tabs(){jQuery("#updraft_migrate .updraft_migrate_widget_module_content").each(function(t,e){var a=jQuery(e).find("h3").first().html(),r=jQuery(".updraft_migrate_intro"),n=jQuery('<button class="button button-primary button-hero" />').html(a).appendTo(r);n.on("click",function(t){t.preventDefault(),jQuery(e).show(),r.hide()})})}function updraft_backupnow_inpage_go(t,e,a,r,n,o,d){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,d="undefined"==typeof d?updraftlion.automaticbackupbeforeupdate:d,updraft_console_focussed_tab="backups",updraft_inpage_success_callback=t,updraft_activejobs_update_timer=setInterval(function(){updraft_activejobs_update(!1)},1250);var u={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",u),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,d,"")}function updraft_activejobs_update(t){var e=jQuery,a=(new Date).getTime();if(!(0==t&&a<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=a+5500;var r="";e(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,a){var n=e(a).data("downloaderfor");"object"==typeof n&&(""!=r&&(r+=":"),r=r+n.base+","+n.nonce+","+n.what+","+n.index)});var n={downloaders:r};try{e("#updraft-poplog").dialog("isOpen")&&(n.log_fetch=1,n.log_nonce=updraft_poplog_log_nonce,n.log_pointer=updraft_poplog_log_pointer)}catch(o){console.log(o)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(n.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",n,function(t,r,o){try{t.hasOwnProperty("l")&&(t.l?(e("#updraft_lastlogmessagerow").show(),e("#updraft_lastlogcontainer").html(t.l)):(e("#updraft_lastlogmessagerow").hide(),e("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var d=-1,u=e(".updraft_requeststart");t.j&&u.length&&u.data("remove")&&u.remove();var s=e(t.j);s.find(".updraft_jobtimings").each(function(t,a){var r=e(a);if(r.data("jobid")){var n=r.data("jobid"),o=r.closest(".updraft_row");updraft_aborted_jobs[n]&&o.hide()}}),e("#updraft_activejobsrow").html(s);var i=s.find('.job-id[data-isclone="1"]');if(i.length>0){if(0==e(".updraftclone_action_box .updraftclone_network_info").length&&e("#updraft_activejobsrow .job-id .updraft_clone_url").length>0){var l=e("#updraft_activejobsrow .job-id .updraft_clone_url").data("clone_url");updraft_send_command("get_clone_network_info",{clone_url:l},function(t){t.hasOwnProperty("html")&&e(".updraftclone_action_box").html(t.html)})}e("#updraft_clone_activejobsrow").empty(),i.each(function(t,a){var r=e(a);r.closest(".updraft_row").appendTo(e("#updraft_clone_activejobsrow"))})}if(e("#updraft_activejobs .updraft_jobtimings").each(function(t,r){var n=e(r);if(n.data("lastactivity")&&n.data("jobid")){var o=n.data("jobid"),u=n.data("lastactivity");(d==-1||u<d)&&(d=u);var s=n.data("nextresumptionafter"),i=n.data("nextresumption");a=(new Date).getTime(),u>50&&i>0&&s<-30&&a>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||i!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=i,updraft_last_forced_jobid=o,updraft_last_forced_when=a,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+i),updraft_send_command("forcescheduledresumption",{resumption:i,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),a=(new Date).getTime(),updraft_activejobs_nextupdate=a+18e4,1==updraft_page_is_visible&&"backups"==updraft_console_focussed_tab&&(updraft_activejobs_nextupdate=d>-1?d<5?a+1750:a+5e3:lastlog_lastdata==o?a+7500:a+1750),i.length>0&&(updraft_activejobs_nextupdate=a+6e3),lastlog_lastdata=o,null!=t.j&&""!=t.j){if(e("#updraft_activejobsrow").show(),i.length>0&&e("#updraft_clone_activejobsrow").show(),n.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&e("#updraft-jobid-"+n.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&&e(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=e(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,n.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&e("#updraft-jobid-"+n.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),updraft_activejobs_update_timer&&clearInterval(updraft_activejobs_update_timer),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):e("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){e("#updraft_backup_started").slideUp()},3500),n.hasOwnProperty("thisjobonly")&&updraft_backupnow_nonce&&n.thisjobonly===updraft_backupnow_nonce){e(".updraft_requeststart").remove();var p=e("#updraft-jobid-"+updraft_backupnow_nonce);p.is(".updraft_finished")&&(updraft_activejobslist_backupnownonce_only=0,updraft_aborted_jobs[updraft_backupnow_nonce]?updraft_aborted_jobs=updraft_aborted_jobs.filter(function(t,e){return t!=updraft_backupnow_nonce}):updraft_active_job_is_clone(updraft_backupnow_nonce)?(updraft_show_success_modal(updraftlion.clone_backup_complete),updraft_clone_jobs=updraft_clone_jobs.filter(function(t){return t!=updraft_backupnow_nonce})):updraft_show_success_modal(updraftlion.backup_complete),updraft_backupnow_nonce="",updraft_activejobs_update(!0))}}else e("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),updraft_updatehistory(0,0),e("#updraft_activejobsrow").hide());if(lastlog_jobs=t.j,null!=t.ds&&""!=t.ds&&updraft_downloader_status_update(t.ds,o),null!=t.u&&""!=t.u&&e("#updraft-poplog").dialog("isOpen")){var _=t.u;if(_.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=_.pointer,null!=_.log&&""!=_.log)){var c=e("#updraft-poplog").scrollTop();e("#updraft-poplog-content").append(_.log),updraft_poplog_lastscroll!=c&&updraft_poplog_lastscroll!=-1||(e("#updraft-poplog").scrollTop(e("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=e("#updraft-poplog").scrollTop())}}}catch(f){console.log(updraftlion.unexpectedresponse+" "+o),console.log(f)}},{type:"GET",error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),!0===updraftplus_activejobs_list_fatal_error_alert&&(updraftplus_activejobs_list_fatal_error_alert=!1,alert(this.alert_done+" "+r.fatal_error_message));else{var n=e==a?a:a+" ("+e+")";console.error(n),console.log(t)}return!1}})}}function updraft_show_success_modal(t){"string"==typeof t&&(t={message:t});var e=jQuery.extend({icon:"yes",close:updraftlion.close,message:"",classes:"success"},t);jQuery.blockUI({css:{width:"300px",border:"none","border-radius":"10px",left:"calc(50% - 150px)"},message:'<div class="updraft_success_popup '+e.classes+'"><span class="dashicons dashicons-'+e.icon+'"></span><div class="updraft_success_popup--message">'+e.message+'</div><button class="button updraft-close-overlay"><span class="dashicons dashicons-no-alt"></span>'+e.close+"</button></div>"}),setTimeout(jQuery.unblockUI,5e3),jQuery(".blockUI .updraft-close-overlay").on("click",function(){jQuery.unblockUI()})}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,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft-poplog-content").append(r.fatal_error_message);else{var n=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(n),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,a){"undefined"==typeof a&&(a=jQuery("#updraft_debug_mode").is(":checked")?1:0);var r=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=r+30;else if(r<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+r.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 n=e?"remotescan":!!t&&"rescan",o={operation:n,debug:a};updraft_send_command("rescan",o,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_tab")&&t.migrate_tab&&(jQuery("#updraft-navtab-migrate").hasClass("nav-tab-active")||(jQuery("#updraft_migrate_tab_alt").html(""),jQuery("#updraft_migrate").replaceWith(jQuery(t.migrate_tab).find("#updraft_migrate")),setup_migrate_tabs())),t.hasOwnProperty("web_server_disk_space")&&(""==t.web_server_disk_space?(console.log("UpdraftPlus: web_server_disk_space is empty"),jQuery("#updraft-navtab-backups-content .updraft-server-disk-space").length&&jQuery("#updraft-navtab-backups-content .updraft-server-disk-space").slideUp("slow",function(){jQuery(this).remove()})):jQuery("#updraft-navtab-backups-content .updraft-server-disk-space").length?jQuery("#updraft-navtab-backups-content .updraft-server-disk-space").replaceWith(t.web_server_disk_space):jQuery("#updraft-navtab-backups-content .updraft-disk-space-actions").prepend(t.web_server_disk_space)),null!=t.n&&jQuery("#updraft-existing-backups-heading").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),updraft_backups_selection.checkSelectionStatus(),t.data&&console.log(t.data)}})}function updraft_exclude_entity_update(t){var e=[];jQuery("#updraft_include_"+t+"_exclude_container .updraft_exclude_entity_wrapper .updraft_exclude_entity_field").each(function(){var t=jQuery.trim(jQuery(this).data("val"));""!=t&&e.push(t)}),jQuery("#updraft_include_"+t+"_exclude").val(e.join(","))}function updraft_is_unique_exclude_rule(t,e){return existing_exclude_rules_str=jQuery("#updraft_include_"+e+"_exclude").val(),existing_exclude_rules=existing_exclude_rules_str.split(","),!(jQuery.inArray(t,existing_exclude_rules)>-1)||(alert(updraftlion.duplicate_exclude_rule_error_msg),!1)}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 d=updraft_interval_month_val===!1?1:updraft_interval_month_val;d-=1,jQuery(a+" option:eq("+d+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var u=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+u+")").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_aborted_jobs[t]=1,jQuery("#updraft-jobid-"+t).closest(".updraft_row").addClass("deleting"),updraft_send_command("activejobs_delete",t,function(e){var a=jQuery("#updraft-jobid-"+t).closest(".updraft_row");a.addClass("deleting"),"Y"==e.ok?(jQuery("#updraft-jobid-"+t).html(e.m),a.remove(),jQuery("#updraft-backupnow-inpage-modal").dialog("isOpen")&&jQuery("#updraft-backupnow-inpage-modal").dialog("close"),updraft_show_success_modal({message:updraft_active_job_is_clone(t)?updraftlion.clone_backup_aborted:updraftlion.backup_aborted,icon:"no-alt",classes:"warning"})):"N"==e.ok?(a.removeClass("deleting"),alert(e.m)):(a.removeClass("deleting"),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_active_job_is_clone(t){return updraft_clone_jobs.filter(function(e){return e==t}).length}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" class="updraft_jstree_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" class="updraft_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_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+r.fatal_error_message+"</p>"),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+n+"</p>"),console.log(n),alert(n),console.log(t)}}})},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)},{error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";console.log(n),alert(n),console.log(t)}}})})}function remove_updraft_downloader(t,e){jQuery(t).parent().fadeOut().remove(),0==jQuery(".updraftplus_downloader_container_"+e+" .updraftplus_downloader").length&&jQuery(".updraftplus_downloader_container_"+e).remove()}function updraft_downloader(t,e,a,r,n,o,d){"string"!=typeof n&&(n=n.toString()),jQuery(".ud_downloadstatus").show();var n=n.split(","),u=o?o:e,s=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+n[0]).data("wp_nonce").toString();jQuery(r).append('<div class="updraftplus_downloader_container_'+a+' postbox"></div>'),jQuery(".updraftplus_downloader_container_"+a).append('<strong style="clear:left; padding: 8px; margin-top: 4px;">'+updraftlion.download+" "+a+" ("+u+"):</strong>");for(var i=0;i<n.length;i++){var l=t+e+"_"+a+"_"+n[i],p="."+l,_=parseInt(n[i]);_++;var c=0==n[i]?"":" ("+_+")";jQuery(p).length||(jQuery(".updraftplus_downloader_container_"+a).append('<div style="clear:left; padding: 8px; margin-top: 4px;" class="'+l+' updraftplus_downloader"><button onclick="remove_updraft_downloader(this, \''+a+'\');" type="button" style="float:right; margin-bottom: 8px;" class="ud_downloadstatus__close" aria-label="Close"><span class="dashicons dashicons-no-alt"></span></button><strong>'+a+c+'</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+l+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(p).data("downloaderfor",{base:t,nonce:e,what:a,index:n[i]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)),jQuery(p).data("lasttimebegan",(new Date).getTime())}d=!!d;var f={type:a,timestamp:e,findex:n},m={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:s,timeout:1e4,async:d};return updraft_send_command("updraft_download_backup",f,function(t){},m),!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 d=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),d}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,e,a){var r=null;jQuery("#updraft_restorer_restore_options").val("");try{if(null==t)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);
2
+ var n=t.m;if(""!=t.w&&(n=n+"<p><strong>"+updraftlion.warnings+"</strong><br>"+t.w+"</p>"),""!=t.e?n=n+"<p><strong>"+updraftlion.errors+"</strong><br>"+t.e+"</p>":updraft_restore_stage=3,t.hasOwnProperty("i")){try{if(r=ud_parse_json(t.i),r.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var o=r.addui;n+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+o+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete r.addui,t.i=JSON.stringify(r))}}catch(d){console.log(d),console.log(t)}jQuery("#updraft_restorer_backup_info").val(t.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(n),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(d){console.log(a),console.log(d),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+a).html()}},{error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft-restore-modal-stage2a").html('<p style="color: red;">'+r.fatal_error_message+"</p>"),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft-restore-modal-stage2a").html('<p style="color: red;">'+n+"</p>"),console.log(n),alert(n),console.log(t)}}}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e){var a=0;return jQuery(t).each(function(t,r){if(""!=r.base){var n=r.base+r.timestamp+"_"+r.what+"_"+r.findex,o="."+n;if(null!=r.e)jQuery(o+" .raw").html("<strong>"+updraftlion.error+"</strong> "+r.e),console.log(r);else if(null!=r.p){if(jQuery(o+"_st .dlfileprogress").width(r.p+"%"),null!=r.a&&r.a>0){var d=(new Date).getTime(),u=jQuery(o).data("lasttimebegan"),s=d-u;if(r.a>90&&s>6e4){console.log(r.timestamp+" "+r.what+" "+r.findex+": restarting download: file_age="+r.a+", sincelastrestart_ms="+s),jQuery(o).data("lasttimebegan",(new Date).getTime());var i=jQuery("#updraft-navtab-backups-content .uddownloadform_"+r.what+"_"+r.timestamp+"_"+r.findex),l={type:r.what,timestamp:r.timestamp,findex:r.findex},p={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:i.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",l,function(t){},p),jQuery(o).data("lasttimebegan",(new Date).getTime())}}if(null!=r.m)if(r.p>=100&&"udrestoredlstatus_"==r.base)jQuery(o+" .raw").html(r.m),jQuery(o).fadeOut("slow",function(){remove_updraft_downloader(this,r.what),updraft_restorer_checkstage2(0)});else if(r.p<100||"uddlstatus_"!=r.base)jQuery(o+" .raw").html(r.m);else{var _=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button class="button" type="button" onclick="updraftplus_downloadstage2(\''+r.timestamp+"', '"+r.what+"', '"+r.findex+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button class="button" id="uddownloaddelete_'+r.timestamp+"_"+r.what+'" type="button" onclick="updraftplus_deletefromserver(\''+r.timestamp+"', '"+r.what+"', '"+r.findex+"')\">"+updraftlion.deletefromserver+"</button>";r.hasOwnProperty("can_show_contents")&&r.can_show_contents&&(_+=' <button class="button" type="button" onclick="updraftplus_show_contents(\''+r.timestamp+"', '"+r.what+"', '"+r.findex+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(o+" .raw").html(_),jQuery(o+"_st").remove()}}else null!=r.m?jQuery(o+" .raw").html(r.m):(jQuery(o+" .raw").html(updraftlion.jsonnotunderstood+" ("+e+")"),a=1)}}),a}function updraft_backupnow_go(t,e,a,r,n,o,d){var u={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};if(""!=r&&(u.onlythisfileentity=r),""!=d&&(u.onlythesetableentities=d),u.always_keep="undefined"!=typeof n.always_keep?n.always_keep:0,delete n.always_keep,!jQuery(".updraft_requeststart").length){var s=jQuery('<div class="updraft_requeststart" />').html('<span class="spinner"></span>'+updraftlion.requeststart);s.data("remove",!1),setTimeout(function(){s.data("remove",!0)},3e3),setTimeout(function(){s.remove()},75e3),jQuery("#updraft_activejobsrow").before(s)}updraft_activejobslist_backupnownonce_only=1,updraft_send_command("backupnow",u,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=updraftlion.tab,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_activejobs_update_timer,updraft_aborted_jobs=[],updraft_clone_jobs=[],updraft_backups_selection={};!function(t){updraft_backups_selection.toggle=function(e){var a=t(e);a.is(".backuprowselected")?this.deselect(e):this.select(e)},updraft_backups_selection.select=function(e){t(e).addClass("backuprowselected"),t(e).find(".backup-select input").prop("checked",!0),this.checkSelectionStatus()},updraft_backups_selection.deselect=function(e){t(e).removeClass("backuprowselected"),t(e).find(".backup-select input").prop("checked",!1),this.checkSelectionStatus()},updraft_backups_selection.selectAll=function(){t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row").each(function(t,e){updraft_backups_selection.select(e)})},updraft_backups_selection.deselectAll=function(){t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row").each(function(t,e){updraft_backups_selection.deselect(e)})},updraft_backups_selection.checkSelectionStatus=function(){var e=t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row").length,a=t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length;a>0?(t("#ud_massactions").addClass("active"),t(".js--deselect-all-backups, .js--delete-selected-backups").prop("disabled",!1)):(t("#ud_massactions").removeClass("active"),t(".js--deselect-all-backups, .js--delete-selected-backups").prop("disabled",!0)),e===a?t("#cb-select-all").prop("checked",!0):t("#cb-select-all").prop("checked",!1),e?t("#ud_massactions").show():t("#ud_massactions").hide()}}(jQuery);var updraftplus_activejobs_list_fatal_error_alert=!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]+/),d=a.url.match(/findex=\d+/),u=a.url.match(/base=[a-z_]+/);if(d=d instanceof Array?parseInt(d[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",u=u instanceof Array?u[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=u&&""!=o&&n>0){var s=u+n+"_"+o+"_"+d;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(e){t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html("").hide(),updraft_send_command("updraftplus_com_login_submit",{data:e},function(e){e.hasOwnProperty("success")?t("#updraft-navtab-addons-content .wrap .updraftplus_com_login").submit():e.hasOwnProperty("error")&&t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html(e.message).show()})}function r(e){t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login_status").html("").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .updraftplus_spinner.spinner").addClass("visible"),updraft_send_command("process_updraftplus_clone_login",e,function(e){try{if(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .updraftplus_spinner.spinner").removeClass("visible"),e.hasOwnProperty("status")&&"error"==e.status)return t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login_status").html(e.message).show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .tfa_fields").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .non_tfa_fields").show(),void t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_two_factor_code").val("");e.hasOwnProperty("tfa_enabled")&&1==e.tfa_enabled&&(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .non_tfa_fields").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .tfa_fields").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 input#temporary_clone_options_two_factor_code").focus()),"authenticated"===e.status&&(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .non_tfa_fields").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 .tfa_fields").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1 input#temporary_clone_options_two_factor_code").val(""),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").html(e.html))}catch(a){console.log(a)}})}function n(e){t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key_status").html("").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key .updraftplus_spinner.spinner").addClass("visible"),updraft_send_command("process_updraftplus_clone_login",e,function(e){try{if(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key .updraftplus_spinner.spinner").removeClass("visible"),e.hasOwnProperty("status")&&"error"==e.status)return void t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key_status").html(e.message).show();"authenticated"===e.status&&(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage1").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").html(e.html))}catch(a){console.log(a)}})}function o(t,e,a,r){var n={updraftplus_clone_backup:1,backupnow_nodb:0,backupnow_nofiles:0,backupnow_nocloud:0,backupnow_label:"UpdraftPlus Clone",extradata:"",onlythisfileentity:"plugins,themes,uploads,others",clone_id:t,secret_token:e,clone_url:a,key:r};updraft_activejobslist_backupnownonce_only=1,updraft_send_command("backupnow",n,function(t){jQuery("#updraft_clone_progress .updraftplus_spinner.spinner").removeClass("visible"),jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,updraft_clone_jobs.push(updraft_backupnow_nonce),updraft_inpage_success_callback=function(){jQuery("#updraft_clone_activejobsrow").hide(),updraft_aborted_jobs[updraft_backupnow_nonce]?jQuery("#updraft_clone_progress").html(updraftlion.clone_backup_aborted):jQuery("#updraft_clone_progress").html(updraftlion.clone_backup_complete)},console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),updraft_activejobs_update(!0)})}function d(t){var e=Handlebars.compile(updraftlion.remote_storage_templates[t]),a=updraftlion.remote_storage_options[t]["default"];a.instance_id="s-"+u(32),a.instance_enabled=1;var r=e(a);jQuery(r).hide().insertAfter("."+t+"_add_instance_container:first").show("slow")}function u(t){for(var e="",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=0;r<t;r++)e+=a.charAt(Math.floor(Math.random()*a.length));return e}function s(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(),i()))}function i(){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 l(e,a,r,n){jQuery("#updraft-delete-modal").dialog("close");var o=e,d=a,u=r,s=n,i=jQuery("#updraft_delete_timestamp").val().split(","),p=jQuery("#updraft_delete_form").serializeArray(),_={};t.each(p,function(){void 0!==_[this.name]?(_[this.name].push||(_[this.name]=[_[this.name]]),_[this.name].push(this.value||"")):_[this.name]=this.value||""}),_.delete_remote?jQuery("#updraft-delete-waitwarning").find(".updraft-deleting-remote").show():jQuery("#updraft-delete-waitwarning").find(".updraft-deleting-remote").hide(),jQuery("#updraft-delete-waitwarning").slideDown().addClass("active"),_.remote_delete_limit=updraftlion.remote_delete_limit,delete _.action,delete _.subaction,delete _.nonce,updraft_send_command("deleteset",_,function(t){if(!t.hasOwnProperty("result")||null==t.result)return void jQuery("#updraft-delete-waitwarning").slideUp();if("error"==t.result)jQuery("#updraft-delete-waitwarning").slideUp(),alert(updraftlion.error+" "+t.message);else if("continue"==t.result){o=o+t.backup_local+t.backup_remote,d+=t.backup_local,u+=t.backup_remote,s+=t.backup_sets;for(var e=t.deleted_timestamps.split(","),a=0;a<e.length;a++){var r=e[a];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+r).slideUp().remove()}jQuery("#updraft_delete_timestamp").val(t.timestamps),jQuery("#updraft-deleted-files-total").text(o+" "+updraftlion.remote_files_deleted),l(o,d,u,s)}else if("success"==t.result){setTimeout(function(){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp()},500),t.hasOwnProperty("count_backups")&&jQuery("#updraft-existing-backups-heading").html(updraftlion.existing_backups+' <span class="updraft_existing_backups_count">'+t.count_backups+"</span>");for(var a=0;a<i.length;a++){var r=i[a];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+r).slideUp().remove()}updraft_backups_selection.checkSelectionStatus(),updraft_history_lastchecksum=!1,d+=t.backup_local,u+=t.backup_remote,s+=t.backup_sets,setTimeout(function(){alert(t.set_message+" "+s+"\n"+t.local_message+" "+d+"\n"+t.remote_message+" "+u)},900)}})}function p(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude_container").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude_container").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude_container").slideUp()}function _(){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 c(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 f(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-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 m(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," "))}function g(e,a,r){jQuery("#updraft_upload_timestamp").val(e),jQuery("#updraft_upload_nonce").val(a);var n=r.split(",");jQuery(".updraft_remote_storage_destination").each(function(e){var a=jQuery(this).val();if(jQuery.inArray(a,n)==-1){jQuery(this).prop("checked",!1),jQuery(this).prop("disabled",!0);var r=t(this).prop("labels");jQuery(r).append(" "+updraftlion.already_uploaded)}}),jQuery("#updraft-upload-modal").dialog("open")}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 h=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||h.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 d=id_split[1];"undefined"==typeof e[d]&&(e[d]=[]),e[d][o]=this.value}});var a="",r="@",n="/",o=":",d=":";for(var u in e)(e[u].host.indexOf("@")>=0||""===e[u].host)&&(r=""),e[u].host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e[u].path.indexOf("/")&&""!==e[u].path||(n=""),""!==e[u].user&&""!==e[u].pass||(o=""),""!==e[u].host&&""!==e[u].port||(d=""),a=e[u].webdav+e[u].user+o+e[u].pass+r+encodeURIComponent(e[u].host)+d+e[u].port+n+e[u].path,t("#updraft_webdav_url_"+u).val(a)}),t("#updraft-navtab-backups-content").on("click",".js--delete-selected-backups",function(t){t.preventDefault(),updraft_deleteallselected()}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .backup-select input",function(e){updraft_backups_selection.toggle(t(this).closest(".updraft_existing_backups_row"))}),t("#updraft-navtab-backups-content").on("click","#cb-select-all",function(e){t(this).is(":checked")?updraft_backups_selection.selectAll():updraft_backups_selection.deselectAll()}),t("#updraft-navtab-backups-content").on("click",".js--select-all-backups",function(t){updraft_backups_selection.selectAll()}),t("#updraft-navtab-backups-content").on("click",".js--deselect-all-backups",function(t){updraft_backups_selection.deselectAll()}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(t){(t.ctrlKey||t.metaKey)&&updraft_backups_selection.toggle(this)}),updraft_backups_selection.checkSelectionStatus(),t("#updraft-navtab-addons-content .wrap").on("click",".updraftplus_com_login .ud_connectsubmit",function(e){e.preventDefault();var r=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email").val(),n=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password").val(),o=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates").is(":checked")?1:0,d={email:r,password:n,auto_update:o};a(d)}),t("#updraft-navtab-addons-content .wrap").on("keydown",".updraftplus_com_login input",function(e){if(13==e.which){e.preventDefault();var r=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email").val(),n=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password").val(),o=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates").is(":checked")?1:0,d={email:r,password:n,auto_update:o};a(d)}}),t("#updraft-navtab-migrate-content").on("click",".updraftclone_show_step_1",function(e){t(".updraftplus-clone").addClass("opened"),t(".updraftclone_show_step_1").hide(),t(".updraft_migrate_widget_temporary_clone_stage1").show(),t(".updraft_migrate_widget_temporary_clone_stage0").hide()}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_temporary_clone_show_stage0",function(e){e.preventDefault(),t(".updraft_migrate_widget_temporary_clone_stage0").toggle()}),setup_migrate_tabs(),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_module_content .close",function(e){t(".updraft_migrate_intro").show(),t(this).closest(".updraft_migrate_widget_module_content").hide()}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_add_site--trigger",function(e){e.preventDefault(),t(".updraft_migrate_add_site").toggle()}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_module_content .updraftplus_com_login .ud_connectsubmit",function(e){e.preventDefault();var a=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_email").val(),n=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_password").val(),o=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_two_factor_code").val(),d=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .temporary_clone_terms_and_conditions").is(":checked")?1:0,u={form_data:{email:a,password:n,two_factor_code:o,consent:d}};a&&n?r(u):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login_status").html("<b>"+updraftlion.error+"</b> "+updraftlion.username_password_required).show()}),t("#updraft-navtab-migrate-content").on("keydown",".updraft_migrate_widget_module_content .updraftplus_com_login input",function(e){if(13==e.which){e.preventDefault();var a=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_email").val(),n=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_password").val(),o=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login #temporary_clone_options_two_factor_code").val(),d=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .temporary_clone_terms_and_conditions").is(":checked")?1:0,u={form_data:{email:a,password:n,two_factor_code:o,consent:d}};a&&n?r(u):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login_status").html("<b>"+updraftlion.error+"</b> "+updraftlion.username_password_required).show()}}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_module_content .updraftplus_com_key .ud_key_connectsubmit",function(e){e.preventDefault();var a=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key #temporary_clone_options_key").val(),r=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key .temporary_clone_terms_and_conditions").is(":checked")?1:0,o={form_data:{clone_key:a,consent:r}};a?n(o):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key_status").html("<b>"+updraftlion.error+"</b> "+updraftlion.clone_key_required).show()}),t("#updraft-navtab-migrate-content").on("keydown",".updraft_migrate_widget_module_content .updraftplus_com_key input",function(e){if(13==e.which){e.preventDefault();var a=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key #temporary_clone_options_key").val(),r=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key .temporary_clone_terms_and_conditions").is(":checked")?1:0,o={form_data:{clone_key:a,consent:r}};a?n(o):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key_status").html("<b>"+updraftlion.error+"</b> "+updraftlion.clone_key_required).show()}}),t("#updraft-navtab-migrate-content").on("change",".updraft_migrate_widget_module_content #updraftplus_clone_php_options",function(){var e=t(this).data("php_version"),a=t(this).val();a<e?t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html(updraftlion.clone_version_warning):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html("")}),t("#updraft-navtab-migrate-content").on("change",".updraft_migrate_widget_module_content #updraftplus_clone_wp_options",function(){var e=t(this).data("wp_version"),a=t(this).val();a<e?t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html(updraftlion.clone_version_warning):t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html("")}),t("#updraft-navtab-migrate-content").on("click",".updraft_migrate_widget_module_content #updraft_migrate_createclone",function(e){e.preventDefault(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraft_migrate_createclone").prop("disabled",!0),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html(""),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_spinner.spinner").addClass("visible");var a=t(this).data("clone_id"),r=t(this).data("secret_token"),n=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_php_options").val(),d=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_wp_options").val(),u=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_region_options").val(),s=t(".updraftplus_clone_admin_login_options").is(":checked"),i={
3
+ form_data:{clone_id:a,secret_token:r,install_info:{php_version:n,wp_version:d,region:u,admin_only:s}}};updraft_send_command("process_updraftplus_clone_create",i,function(e){try{if(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraft_migrate_createclone").prop("disabled",!1),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_spinner.spinner").removeClass("visible"),e.hasOwnProperty("status")&&"error"==e.status)return void t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_clone_status").html(updraftlion.error+" "+e.message).show();"success"===e.status&&(t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage2").hide(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage3").show(),t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraft_migrate_widget_temporary_clone_stage3").html(e.html),jQuery("#updraft_clone_progress .updraftplus_spinner.spinner").addClass("visible"),o(a,r,e.url,e.key))}catch(n){t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraft_migrate_createclone").prop("disabled",!1),console.log("Error when processing the response of process_updraftplus_clone_create (as follows)"),console.log(n)}})}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_add_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var a=t(this).data("method");d(a)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod a.updraft_delete_instance",function(e){e.preventDefault(),updraft_settings_form_changed=!0;var a=t(this).data("method"),r=t(this).data("instance_id");1===t("."+a+"_updraft_remote_storage_border").length&&d(a),t("."+a+"-"+r).hide("slow",function(){t(this).remove()})}),t("#updraft-navtab-settings-content #remote-storage-holder").on("click",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).find("span").hide(),t(this).attr("contentEditable",!0).focus()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keyup",".updraftplusmethod .updraft_edit_label_instance",function(e){var a=jQuery(this).data("method"),r=jQuery(this).data("instance_id"),n=jQuery(this).text();t("#updraft_"+a+"_instance_label_"+r).val(n)}),t("#updraft-navtab-settings-content #remote-storage-holder").on("blur",".updraftplusmethod .updraft_edit_label_instance",function(e){t(this).attr("contentEditable",!1),t(this).find("span").show()}),t("#updraft-navtab-settings-content #remote-storage-holder").on("keypress",".updraftplusmethod .updraft_edit_label_instance",function(e){13===e.which&&(t(this).attr("contentEditable",!1),t(this).find("span").show(),t(this).blur())}),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 e=jQuery(this).data("method"),a=jQuery(this).data("instance_id");updraft_remote_storage_test(e,function(r,n,o){return"sftp"==e&&(o.hasOwnProperty("scp")&&o.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+r.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+r.output),r.hasOwnProperty("data")&&r.data&&r.data.hasOwnProperty("valid_md5_fingerprint")&&r.data.valid_md5_fingerprint&&t("#updraft_sftp_fingerprint_"+a).val(r.data.valid_md5_fingerprint),!0)},a)}),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").on("click","a.updraft_diskspaceused_update",function(t){t.preventDefault(),updraftplus_diskspace()}),t(".advanced_settings_content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),jQuery(".advanced_settings_content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery(".advanced_settings_content .updraft_diskspaceused").html(t.output)},{type:"GET"})}),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)}),t("#updraftplus-remote-rescan-debug").click(function(t){t.preventDefault(),updraft_updatehistory(1,1,1)}),jQuery("#updraftcentral_keys").on("click",'input[type="radio"]',function(){s(!1)}),s(!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)},{error_callback:function(t,e,a,r){if(jQuery("#updraftcentral_view_log_container").unblock(),"undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";console.log(n),alert(n),console.log(t)}}})}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(),i()}),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(t.hasOwnProperty("error"))return alert(t.error),void console.log(t);alert(t.r),t.hasOwnProperty("bundle")&&t.hasOwnProperty("keys_guide")?(jQuery("#updraftcentral_keys_content").html(t.keys_guide),jQuery("#updraftcentral_keys_content").append('<div class="updraftcentral_wizard_success">'+t.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+t.bundle+"</textarea></div>")):console.log(t),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").append(t.keys_table),jQuery("#updraftcentral_wizard_go").show()}catch(e){alert(updraftlion.unexpectedresponse+" "+response),console.log(e)}},{error_callback:function(t,e,a,r){if(jQuery("#updraftcentral_keys").unblock(),"undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";console.log(n),alert(n),console.log(t)}}})}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)},{error_callback:function(t,e,a,r){if(jQuery("#updraftcentral_keys").unblock(),"undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";console.log(n),alert(n),console.log(t)}}}))}),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 y=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>y&&(y=a)}),y>180&&jQuery(".updraft-bigbutton").width(y),jQuery("#updraft-navtab-backups-content").length&&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")&&1==jQuery(this).data("encrypted")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var b={};b[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:b});var v={};v[updraftlion.deletebutton]=function(){l(0,0,0,0)},v[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:322,width:430,modal:!0,buttons:v});var w={};w[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 d=jQuery(o).data("howmany"),u=jQuery(o).val();if((1==r||2==r&&"db"!=u)&&("wpcore"!=u&&(d=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),u="wpcore"),"wpcore"!=u||0==a){var s=[u,d];e.push(s),"wpcore"==u&&(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,d=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:d},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_",d,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1,error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft-restore-modal-stage2a").html('<p style="color:red;">'+r.fatal_error_message+"</p>");else{var n="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft-restore-modal-stage2a").html('<p style="color:red; margin: 5px;">'+n+"</p>"),console.log(n),console.log(t)}}})}catch(u){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(u),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)},w[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:w}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:380,width:580,modal:!0});var j={};j[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(""),n=jQuery("#always_keep").is(":checked")?1:0;if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var o=backupnow_whichfiles_checked("");return""==o&&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,o,{always_keep:n},jQuery("#backupnow_label").val(),r))},j[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:j,create:function(){t(this).closest(".ui-dialog").find(".ui-dialog-buttonpane .ui-button:first").addClass("js-tour-backup-now-button")}}),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&&p(t,!1)}),jQuery(".updraft_exclude_entity_container").on("click",".updraft_exclude_entity_delete",function(t){if(t.preventDefault(),confirm(updraftlion.exclude_rule_remove_conformation_msg)){var e=jQuery(this).data("include-backup-file");jQuery.when(jQuery(this).closest(".updraft_exclude_entity_wrapper").remove()).then(updraft_exclude_entity_update(e))}}),jQuery(".updraft_exclude_entity_container").on("click",".updraft_exclude_entity_edit",function(t){t.preventDefault();var e=jQuery(this).hide().closest(".updraft_exclude_entity_wrapper"),a=e.find("input");a.removeProp("readonly").focus();var r=a.val();a.val(""),a.val(r),e.find(".updraft_exclude_entity_update").addClass("is-active").show()}),jQuery(".updraft_exclude_entity_container").on("click",".updraft_exclude_entity_update",function(t){t.preventDefault();var e=jQuery(this).closest(".updraft_exclude_entity_wrapper"),a=jQuery(this).data("include-backup-file"),r=jQuery.trim(e.find("input").val()),n=!1;r==e.find("input").data("val")?n=!0:updraft_is_unique_exclude_rule(r,a)&&(n=!0),n&&(jQuery(this).hide().removeClass("is-active"),jQuery.when(e.find("input").prop("readonly","readonly").data("val",r)).then(function(){e.find(".updraft_exclude_entity_edit").show(),updraft_exclude_entity_update(a)}))}),jQuery("#updraft_exclude_modal").dialog({autoOpen:!1,modal:!0,width:520,height:"auto",open:function(e,a){t(this).parent().focus()}}),jQuery(".updraft_exclude_container .updraft_add_exclude_item").click(function(t){t.preventDefault();var e=jQuery(this).data("include-backup-file");jQuery("#updraft_exclude_modal_for").val(e),jQuery("#updraft_exclude_modal_path").val(jQuery(this).data("path")),"uploads"==e&&jQuery("#updraft-exclude-file-dir-prefix").html(jQuery("#updraft-exclude-upload-base-dir").val()),jQuery(".updraft-exclude-modal-reset").trigger("click"),jQuery("#updraft_exclude_modal").dialog("open")}),jQuery(".updraft-exclude-link").click(function(t){t.preventDefault();var e=jQuery(this).data("panel");"file-dir"==e&&jQuery("#updraft_exclude_files_folders_jstree").jstree({core:{multiple:!1,data:function(t,e){updraft_send_command("get_jstree_directory_nodes",{entity:"filebrowser",node:t,path:jQuery("#updraft_exclude_modal_path").val(),findex:0,skip_root_node:!0},function(t){t.hasOwnProperty("error")?alert(t.error):e.call(this,t.nodes)},{error_callback:function(t,e,a,r){if("undefined"!=typeof r&&r.hasOwnProperty("fatal_error"))console.error(r.fatal_error_message),jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+r.fatal_error_message+"</p>"),alert(r.fatal_error_message);else{var n="updraft_send_command: error: "+e+" ("+a+")";jQuery("#updraft_zip_files_jstree").html('<p style="color:red; margin: 5px;">'+n+"</p>"),console.log(n),alert(n),console.log(t)}}})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["sort"]}),jQuery("#updraft_exclude_modal_main").slideUp(),jQuery(".updraft-exclude-panel").hide(),jQuery(".updraft-exclude-panel[data-panel="+e+"]").slideDown()}),jQuery(".updraft-exclude-modal-reset").click(function(t){t.preventDefault(),jQuery("#updraft_exclude_files_folders_jstree").jstree("destroy"),jQuery("#updraft_exclude_extension_field").val(""),jQuery("#updraft_exclude_prefix_field").val(""),jQuery(".updraft-exclude-panel").slideUp(),jQuery("#updraft_exclude_modal_main").slideDown()}),jQuery(".updraft-exclude-submit").click(function(){var t=jQuery(this).data("panel"),e="";switch(t){case"file-dir":var a=jQuery("#updraft_exclude_files_folders_jstree").jstree("get_selected");if(0==a.length)return void alert(updraftlion.exclude_select_file_or_folder_msg);var r=a[0],n=jQuery("#updraft_exclude_modal_path").val();r.substr(0,n.length)==n&&(r=r.substr(n.length,r.length)),"/"==r.charAt(0)&&(r=r.substr(1)),"/"==r.charAt(r.length-1)&&(r=r.substr(0,r.length-1)),e=r;break;case"extension":var o=jQuery("#updraft_exclude_extension_field").val();if(""==o)return void alert(updraftlion.exclude_type_ext_msg);if(!o.match(/^[0-9a-zA-Z]+$/))return void alert(updraftlion.exclude_ext_error_msg);e="ext:"+o;break;case"begin-with":var d=jQuery("#updraft_exclude_prefix_field").val();if(""==d)return void alert(updraftlion.exclude_type_prefix_msg);if(!d.match(/^\s*[a-z-_\d,\s]+\s*$/i))return void alert(updraftlion.exclude_prefix_error_msg);e="prefix:"+d;break;default:return}var u=jQuery("#updraft_exclude_modal_for").val();if(updraft_is_unique_exclude_rule(e,u)){var s='<div class="updraft_exclude_entity_wrapper"><input type="text" class="updraft_exclude_entity_field updraft_include_'+u+'_exclude_entity" name="updraft_include_'+u+'_exclude_entity[]" value="'+e+'" data-val="'+e+'" data-include-backup-file="'+u+'" readonly="readonly"><a href="#" class="updraft_exclude_entity_edit dashicons dashicons-edit" data-include-backup-file="'+u+'"></a><a href="#" class="updraft_exclude_entity_update dashicons dashicons-yes" data-include-backup-file="'+u+'" style="display: none;"></a><a href="#" class="updraft_exclude_entity_delete dashicons dashicons-no" data-include-backup-file="'+u+'"></a></div>';jQuery('.updraft_exclude_entity_container[data-include-backup-file="'+u+'"]').append(s),updraft_exclude_entity_update(u),jQuery("#updraft_exclude_modal").dialog("close")}}),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(),updraft_open_main_tab("status"),updraft_page_is_visible=1,updraft_console_focussed_tab="status",updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),updraft_open_main_tab("expert"),updraft_page_is_visible=1}),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"),updraft_open_main_tab("settings"),updraft_page_is_visible=1}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),updraft_open_main_tab("addons"),updraft_page_is_visible=1}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_console_focussed_tab="backups",updraft_historytimertoggle(1),updraft_open_main_tab("backups")}),jQuery("#updraft-navtab-migrate").click(function(t){t.preventDefault(),jQuery("#updraft_migrate_tab_alt").html("").hide(),updraft_open_main_tab("migrate"),updraft_page_is_visible=1,jQuery("#updraft_migrate .updraft_migrate_widget_module_content").is(":visible")||jQuery(".updraft_migrate_intro").show()}),"migrate"==updraftlion.tab&&jQuery("#updraft-navtab-migrate").trigger("click"),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&&_()}catch(k){console.log(k)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),c(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),c(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, #updraft-navtab-migrate-content").on("click",".updraft_jobinfo_delete",function(e){e.preventDefault();var a=jQuery(this).data("jobid");a?(t(this).addClass("disabled"),updraft_activejobs_delete(a)):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, #updraft-navtab-migrate-content").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");f(e,a,r)}),"initiate_restore"==m("udaction")){var Q=m("entities"),x=m("backup_timestamp"),O=m("showdata");f(Q,x,O)}var P={};P[updraftlion.uploadbutton]=function(){var t=jQuery("#updraft_upload_timestamp").val(),e=jQuery("#updraft_upload_nonce").val(),a="",r=!1;return jQuery(".updraft_remote_storage_destination").each(function(t){jQuery(this).is(":checked")&&(r=!0)}),r?(a=jQuery("input[name^='updraft_remote_storage_destination_']").serializeArray(),jQuery(this).dialog("close"),alert(updraftlion.local_upload_started),void updraft_send_command("upload_local_backup",{use_nonce:e,use_timestamp:t,services:a},function(t){})):void jQuery("#updraft-upload-modal-error").html(updraftlion.local_upload_error)},P[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-upload-modal").dialog({autoOpen:!1,height:322,width:430,modal:!0,buttons:P}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.updraft-upload-link",function(t){t.preventDefault();var e=jQuery(this).data("nonce").toString(),a=jQuery(this).data("key").toString(),r=jQuery(this).data("services").toString();e?g(a,e,r):console.log("UpdraftPlus: A upload link was clicked, but the Job ID could not be found")}),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"),d=jQuery(this).data("prettydate"),u=!0;updraft_downloader(e,a,r,n,o,d,u)}),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).on("keypress","#updraftvault_settings_connect input",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())))},{error_callback:function(a,r,n,o){if(t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),"undefined"!=typeof o&&o.hasOwnProperty("fatal_error"))console.error(o.fatal_error_message),alert(o.fatal_error_message);else{var d="updraft_send_command: error: "+r+" ("+n+")";console.log(d),alert(d),console.log(a)}}})}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())},{error_callback:function(a,r,n,o){if(t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),"undefined"!=typeof o&&o.hasOwnProperty("fatal_error"))console.error(o.fatal_error_message),alert(o.fatal_error_message);else{var d="updraft_send_command: error: "+r+" ("+n+")";console.log(d),alert(d),console.log(a)}}})}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("#remote-storage-holder").on("keyup",".updraftplus_onedrive_folder_input",function(e){var a=t(this).val(),r=t(this).closest("td");0==a.indexOf("https:")||0==a.indexOf("http:")?r.find(".onedrive_folder_error").length||r.append('<div class="onedrive_folder_error">'+updraftlion.onedrive_folder_url_warning+"</div>"):r.find(".onedrive_folder_error").slideUp("slow",function(){r.find(".onedrive_folder_error").remove()})}),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))},{error_callback:function(a,r,n,o){if(t(e+"#updraftvault_connect_go").html(updraftlion.connect),"undefined"!=typeof o&&o.hasOwnProperty("fatal_error"))console.error(o.fatal_error_message),
4
+ alert(o.fatal_error_message);else{var d="updraft_send_command: error: "+r+" ("+n+")";console.log(d),alert(d),console.log(a)}}}),!1}),t("#updraft-iframe-modal").on("change","#always_keep_this_backup",function(){var e=t(this).data("backup_key"),a={backup_key:e,always_keep:t(this).is(":checked")?1:0};updraft_send_command("always_keep_this_backup",a,function(t){t.hasOwnProperty("rawbackup")&&(jQuery("#updraft-iframe-modal").dialog("close"),jQuery(".updraft_existing_backups_row_"+e+" .updraft_existingbackup_date").data("rawbackup",t.rawbackup),updraft_html_modal(jQuery(".updraft_existing_backups_row_"+e+" .updraft_existingbackup_date").data("rawbackup"),updraftlion.raw,780,500))})})}),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]&&1<Object.keys(updraftlion.remote_storage_options[n]).length){var o=Handlebars.compile(updraftlion.remote_storage_templates[n]),d=!0;for(var u in updraftlion.remote_storage_options[n])if("default"!==u){var s=updraftlion.remote_storage_options[n][u];s.first_instance=d,"undefined"==typeof s.instance_enabled&&(s.instance_enabled=1),r+=o(s),d=!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(),t("#remote-storage-holder .updraftplus_onedrive_folder_input").trigger("keyup")})}}),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 d=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:d,updraftplus_version:updraftlion.updraftplus_version},function(e,a,r){var o=n(e);!o.hasOwnProperty("saved")||o.saved?(updraft_settings_form_changed=!1,location.replace(updraftlion.updraft_settings_url)):(t.unblockUI(),o.hasOwnProperty("error_message")&&o.error_message&&alert(o.error_message))},{action:"updraft_importsettings",nonce:updraftplus_settings_nonce,error_callback:function(e,a,r,n){if(t.unblockUI(),"undefined"!=typeof n&&n.hasOwnProperty("fatal_error"))console.error(n.fatal_error_message),alert(n.fatal_error_message);else{var o="updraft_send_command: error: "+a+" ("+r+")";console.log(o),console.log(e),alert(o)}}})}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,a){try{var r=(e.messages,e.backup_dir.writable),n=e.backup_dir.message,o=e.backup_dir.button_title}catch(d){return console.log(d),console.log(a),alert(updraftlion.jsonnotunderstood),t.unblockUI(),{}}if(e.hasOwnProperty("changed")){console.log("UpdraftPlus: savesettings: some values were changed after being filtered"),console.log(e.changed);for(prop in e.changed)if("object"==typeof e.changed[prop])for(innerprop in e.changed[prop])t("[name='"+innerprop+"']").is(":checkbox")||t("[name='"+prop+"["+innerprop+"]']").val(e.changed[prop][innerprop]);else t("[name='"+prop+"']").is(":checkbox")||t("[name='"+prop+"']").val(e.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")),e.hasOwnProperty("updraft_include_more_path")&&t("#backupnow_includefiles_moreoptions").html(e.updraft_include_more_path),e.hasOwnProperty("backup_now_message")&&t("#backupnow_remote_container").html(e.backup_now_message),t(".updraftmessage").remove(),t("#updraft_backup_started").before(e.messages),console.log(e),t("#updraft-next-files-backup-inner").html(e.files_scheduled),t("#updraft-next-database-backup-inner").html(e.database_scheduled),e}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 d=new Image;d.src=updraftlion.ud_url+"/images/notices/updraft_logo.png",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({css:{width:"300px",border:"none","border-radius":"10px",left:"calc(50% - 150px)",padding:"20px"},message:'<div style="margin: 8px; font-size:150%;" class="updraft_saving_popup"><img src="'+updraftlion.ud_url+'/images/notices/updraft_logo.png" 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,a,r){n(e,r),t("#updraft-wrap .fade").delay(6e3).fadeOut(2e3),window.updraft_main_tour&&!window.updraft_main_tour.canceled?(window.updraft_main_tour.show("settings_saved"),o()):t("html, body").animate({scrollTop:t("#updraft-wrap").offset().top},1e3,function(){o()}),t.unblockUI()},{action:"updraft_savesettings",error_callback:function(e,a,r,n){if(t.unblockUI(),"undefined"!=typeof n&&n.hasOwnProperty("fatal_error"))console.error(n.fatal_error_message),alert(n.fatal_error_message);else{var o="updraft_send_command: error: "+a+" ("+r+")";console.log(o),alert(o),console.log(e)}},nonce:updraftplus_settings_nonce})}),t("#updraftplus-settings-export").click(function(){updraft_settings_form_changed&&alert(updraftlion.unsaved_settings_export),e()}),t("#updraftplus-settings-import").click(function(){t.blockUI({css:{width:"300px",border:"none","border-radius":"10px",left:"calc(50% - 150px)",padding:"20px"},message:'<div style="margin: 8px; font-size:150%;" class="updraft_saving_popup"><img src="'+updraftlion.ud_url+'/images/notices/updraft_logo.png" 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)}),t(".udp-replace-with-iframe--js").on("click",function(e){e.preventDefault();var a=t(this).prop("href"),r=t('<iframe width="356" height="200" allowfullscreen webkitallowfullscreen mozallowfullscreen>').attr("src",a);r.insertAfter(t(this)),t(this).remove()})}),jQuery(document).ready(function(t){function e(e,n,o,d){if("function"==typeof o){var u=t(d).find("#updraftcentral_cloud_form"),s=u.find('.form_hidden_fields input[name="key"]');if(s.length&&""!==s.val())return void o.apply(this,[s.val()]);var i={where_send:"__updraftpluscom",key_description:"",key_size:e,mothership_firewalled:n};a(d),updraft_send_command("updraftcentral_create_key",i,function(e){r(d);try{if(i=ud_parse_json(e),i.hasOwnProperty("error"))return void console.log(i);i.hasOwnProperty("bundle")?o.apply(this,[i.bundle]):i.hasOwnProperty("r")?(t(d).find(".updraftcentral_cloud_notices").html(updraftlion.trouble_connecting).addClass("updraftcentral_cloud_info"),alert(i.r)):console.log(i)}catch(a){console.log(a)}},{json_parse:!1})}}function a(e){t(e).find(".updraftplus_spinner.spinner").addClass("visible")}function r(e){t(e).find(".updraftplus_spinner.spinner").removeClass("visible")}function n(e,n){a(n),updraft_send_command("process_updraftcentral_registration",e,function(a){r(n);try{if(e=ud_parse_json(a),e.hasOwnProperty("error")){var o=e.message,u=["existing_user_email","email_exists"];return-1!==t.inArray(e.code,u)&&(o=e.message+" "+updraftlion.perhaps_login),t(n).find(".updraftcentral_cloud_notices").html(o).addClass("updraftcentral_cloud_error"),t(n).find(".updraftcentral_cloud_notices a").attr("target","_blank"),void console.log(e)}"registered"===e.status&&(t(n).find(".updraftcentral_cloud_form_container").hide(),t(n).find(".updraftcentral-subheading").hide(),t(n).find(".updraftcentral_cloud_notices").removeClass("updraftcentral_cloud_error"),d(n,e,updraftlion.registration_successful))}catch(s){console.log(s)}},{json_parse:!1})}function o(e,o){a(o),updraft_send_command("process_updraftcentral_login",e,function(a){r(o);try{if(data=ud_parse_json(a),data.hasOwnProperty("error")){if("incorrect_password"===data.code&&(t(o).find(".updraftcentral_cloud_form_container .tfa_fields").hide(),t(o).find(".updraftcentral_cloud_form_container .non_tfa_fields").show(),t(o).find("input#two_factor_code").val(""),t(o).find("input#password").val("").focus()),"email_not_registered"!==data.code)return t(o).find(".updraftcentral_cloud_notices").html(data.message).addClass("updraftcentral_cloud_error"),t(o).find(".updraftcentral_cloud_notices a").attr("target","_blank"),void console.log(data);n(e,o)}data.hasOwnProperty("tfa_enabled")&&1==data.tfa_enabled&&(t(o).find(".updraftcentral_cloud_notices").html("").removeClass("updraftcentral_cloud_error"),t(o).find(".updraftcentral_cloud_form_container .non_tfa_fields").hide(),t(o).find(".updraftcentral_cloud_form_container .tfa_fields").show(),t(o).find("input#two_factor_code").focus()),"authenticated"===data.status&&(t(o).find(".updraftcentral_cloud_form_container").hide(),t(o).find(".updraftcentral_cloud_notices").removeClass("updraftcentral_cloud_error"),d(o,data,updraftlion.login_successful))}catch(u){console.log(u)}},{json_parse:!1})}function d(e,a,r){var n=t(e).find("form#updraftcentral_cloud_redirect_form");n.attr("action",a.redirect_url),n.attr("target","_blank"),"undefined"!=typeof a.redirect_token&&n.append('<input type="hidden" name="redirect_token" value="'+a.redirect_token+'">'),a.hasOwnProperty("keys_table")&&a.keys_table&&t("#updraftcentral_keys_content").html(a.keys_table),$redirect_lnk='<a href="'+updraftlion.current_clean_url+'" class="updraftcentral_cloud_redirect_link">'+updraftlion.updraftcentral_cloud+"</a>",$close_lnk='<a href="'+updraftlion.current_clean_url+'" class="updraftcentral_cloud_close_link">'+updraftlion.close_wizard+"</a>",t(e).find(".updraftcentral_cloud_notices").html(r.replace("%s",$redirect_lnk)+" "+$close_lnk+"<br/><br/>"+updraftlion.control_udc_connections),t(e).find(".updraftcentral_cloud_notices .updraftcentral_cloud_redirect_link").off("click").on("click",function(a){a.preventDefault(),n.submit(),t(e).find(".updraftcentral_cloud_notices .updraftcentral_cloud_close_link").trigger("click")}),t(e).find(".updraftcentral_cloud_notices .updraftcentral_cloud_close_link").off("click").on("click",function(a){a.preventDefault(),t(e).dialog("close"),t("#updraftcentral_cloud_connect_container").hide()})}function u(e){var a=t(e).find("#updraftcentral_cloud_form"),r=a.find("input#email").val(),n=a.find("input#password").val(),o=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;t(e).find(".updraftcentral_cloud_notices").html("").removeClass("updraftcentral_cloud_error updraftcentral_cloud_info");var d=a.find('.updraftcentral-data-consent > input[name="i_consent"]').is(":checked");return d?0===r.length||0===n.length?(t(e).find(".updraftcentral_cloud_notices").html(updraftlion.username_password_required).addClass("updraftcentral_cloud_error"),!1):null!==r.match(o)||(t(e).find(".updraftcentral_cloud_notices").html(updraftlion.valid_email_required).addClass("updraftcentral_cloud_error"),!1):(t(e).find(".updraftcentral_cloud_notices").html(updraftlion.data_consent_required).addClass("updraftcentral_cloud_error"),!1)}function s(a,r){var d=t(a).find("#updraft_central_keysize").val(),u=t(a).find("#updraft_central_firewalled").is(":checked")?1:0;e(d,u,function(e){var d=t(a).find("#updraftcentral_cloud_form"),u=d.find('.form_hidden_fields input[name="key"]');0===u.length&&d.find(".form_hidden_fields").append('<input type="hidden" name="key" value="'+e+'">');var s=d.find("input").serialize(),i={form_data:s};"undefined"!=typeof r&&r?n(i,a):o(i,a)},a)}function i(){var e=t("#updraftcentral_cloud_login_form");if(e.length){t("#updraft-iframe-modal-innards").html(e.html());var a=t("#updraft-iframe-modal").dialog("option","title",updraftlion.updraftcentral_cloud).dialog("option","width",520).dialog("option","height",450).dialog("option","buttons",{});a.dialog("open");var r=a.find(".updraftcentral-data-consent"),n=r.find("input").attr("name");"undefined"!=typeof n&&n&&(r.find("input").attr("id",n),r.find("label").attr("for",n))}}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)})}}),t("#updraft-wrap #btn_cloud_connect").on("click",function(){i()}),t("#updraft-wrap a#self_hosted_connect").on("click",function(e){e.preventDefault(),t("h2.nav-tab-wrapper > a#updraft-navtab-expert").trigger("click"),t("div.advanced_settings_menu > #updraft_central").trigger("click")}),t("#updraft-iframe-modal").on("click","#updraftcentral_cloud_login",function(e){e.preventDefault();var a=t(this).closest("#updraft-iframe-modal");u(a)&&s(a)})});
languages/updraftplus-af.po CHANGED
@@ -11,6 +11,10 @@ msgstr ""
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
14
  #: src/udaddons/updraftplus-addons.php:268,
15
  #: src/udaddons/updraftplus-addons.php:280
16
  msgid "go here"
@@ -25,7 +29,7 @@ msgstr ""
25
  msgid "Authentication"
26
  msgstr ""
27
 
28
- #: src/admin.php:924
29
  msgid "You must select at least one remote storage destination to upload this backup set to."
30
  msgstr ""
31
 
@@ -45,11 +49,11 @@ msgstr ""
45
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
46
  msgstr ""
47
 
48
- #: src/admin.php:951
49
  msgid "UpdraftClone key is required."
50
  msgstr ""
51
 
52
- #: src/admin.php:942
53
  msgid "The preparation of the clone data has been aborted."
54
  msgstr ""
55
 
@@ -69,7 +73,7 @@ msgstr ""
69
  msgid "Your database user does not have permission to drop tables"
70
  msgstr ""
71
 
72
- #: src/admin.php:2960
73
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
74
  msgstr ""
75
 
@@ -237,39 +241,39 @@ msgstr ""
237
  msgid "WordPress installed"
238
  msgstr ""
239
 
240
- #: src/admin.php:5422
241
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
242
  msgstr ""
243
 
244
- #: src/admin.php:3826
245
  msgid "Exclude these from"
246
  msgstr ""
247
 
248
- #: src/admin.php:950
249
  msgid "The exclusion rule which you are trying to add already exists"
250
  msgstr ""
251
 
252
- #: src/admin.php:949
253
  msgid "Please enter a valid file name prefix"
254
  msgstr ""
255
 
256
- #: src/admin.php:948
257
  msgid "Please enter characters that begin the filename which you would like to exclude"
258
  msgstr ""
259
 
260
- #: src/admin.php:947
261
  msgid "Please enter a valid file extension"
262
  msgstr ""
263
 
264
- #: src/admin.php:946
265
  msgid "Please enter a file extension, like zip"
266
  msgstr ""
267
 
268
- #: src/admin.php:945
269
  msgid "Please select a file/folder which you would like to exclude"
270
  msgstr ""
271
 
272
- #: src/admin.php:944
273
  msgid "Are you sure you want to remove this exclusion rule?"
274
  msgstr ""
275
 
@@ -293,15 +297,15 @@ msgstr ""
293
  msgid "failed to upload file to %s (see log file for more)"
294
  msgstr ""
295
 
296
- #: src/admin.php:5418
297
  msgid "Dashboard:"
298
  msgstr ""
299
 
300
- #: src/admin.php:5417
301
  msgid "Front page:"
302
  msgstr ""
303
 
304
- #: src/admin.php:5416
305
  msgid "Your clone has started and will be available at the following URLs once it is ready."
306
  msgstr ""
307
 
@@ -313,11 +317,11 @@ msgstr ""
313
  msgid "Current clones"
314
  msgstr ""
315
 
316
- #: src/class-updraftplus.php:3045
317
  msgid "Your clone will now deploy this data to re-create your site."
318
  msgstr ""
319
 
320
- #: src/admin.php:941
321
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
322
  msgstr ""
323
 
@@ -363,7 +367,7 @@ msgstr ""
363
  msgid "Unable to get renew date"
364
  msgstr ""
365
 
366
- #: src/admin.php:904
367
  msgid "The backup was aborted"
368
  msgstr ""
369
 
@@ -617,7 +621,7 @@ msgstr ""
617
  msgid "You can buy more temporary clone tokens here."
618
  msgstr ""
619
 
620
- #: src/admin.php:5373
621
  msgid "Forbid non-administrators to login to WordPress on your clone"
622
  msgstr ""
623
 
@@ -633,23 +637,23 @@ msgstr ""
633
  msgid "Other great plugins"
634
  msgstr ""
635
 
636
- #: src/admin.php:5420, src/admin.php:5423
637
  msgid "You can find your temporary clone information in your updraftplus.com account here."
638
  msgstr ""
639
 
640
- #: src/class-updraftplus.php:4310
641
  msgid "Choose a default for each table"
642
  msgstr ""
643
 
644
- #: src/admin.php:3274
645
  msgid "Sending files to remote site"
646
  msgstr ""
647
 
648
- #: src/admin.php:3269
649
  msgid "Clone server being provisioned and booted (can take several minutes)"
650
  msgstr ""
651
 
652
- #: src/admin.php:940
653
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
654
  msgstr ""
655
 
@@ -657,11 +661,11 @@ msgstr ""
657
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
658
  msgstr ""
659
 
660
- #: src/admin.php:2796
661
  msgid "Backup / Restore"
662
  msgstr ""
663
 
664
- #: src/admin.php:661
665
  msgid "Backup"
666
  msgstr ""
667
 
@@ -733,11 +737,11 @@ msgstr ""
733
  msgid "More information here."
734
  msgstr ""
735
 
736
- #: src/admin.php:669, src/admin.php:2797
737
  msgid "Migrate / Clone"
738
  msgstr ""
739
 
740
- #: src/admin.php:3034, src/admin.php:3959,
741
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
742
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
743
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
@@ -759,25 +763,25 @@ msgstr ""
759
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
760
  msgstr ""
761
 
762
- #: src/class-updraftplus.php:187
763
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
764
  msgstr ""
765
 
766
- #: src/admin.php:5396
767
  msgid "(current version)"
768
  msgstr ""
769
 
770
- #: src/admin.php:3736
771
  msgid "press here"
772
  msgstr ""
773
 
774
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
775
- #: src/methods/googledrive.php:1206
776
  msgid "this privacy policy"
777
  msgstr ""
778
 
779
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
780
- #: src/methods/googledrive.php:1206
781
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
782
  msgstr ""
783
 
@@ -801,7 +805,7 @@ msgstr ""
801
  msgid "Available temporary clone tokens:"
802
  msgstr ""
803
 
804
- #: src/admin.php:2884, src/includes/class-commands.php:901,
805
  #: src/includes/class-commands.php:949,
806
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
807
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
@@ -820,7 +824,7 @@ msgstr ""
820
  msgid "I consent to %s"
821
  msgstr ""
822
 
823
- #: src/admin.php:2982,
824
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
825
  msgid "One Time Password (check your OTP app to get this password)"
826
  msgstr ""
@@ -869,74 +873,74 @@ msgstr ""
869
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
870
  msgstr ""
871
 
872
- #: src/admin.php:5342
873
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
874
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
875
  msgstr[0] ""
876
  msgstr[1] ""
877
 
878
- #: src/admin.php:938
879
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
880
  msgstr ""
881
 
882
- #: src/admin.php:937
883
  msgid "You can also close this wizard."
884
  msgstr ""
885
 
886
- #: src/admin.php:936
887
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
888
  msgstr ""
889
 
890
- #: src/admin.php:935
891
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
892
  msgstr ""
893
 
894
- #: src/admin.php:934
895
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
896
  msgstr ""
897
 
898
- #: src/admin.php:933
899
  msgid "Perhaps you would want to login instead."
900
  msgstr ""
901
 
902
- #: src/admin.php:932
903
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
904
  msgstr ""
905
 
906
- #: src/admin.php:931
907
  msgid "An email is required and needs to be in a valid format."
908
  msgstr ""
909
 
910
- #: src/admin.php:930
911
  msgid "Both email and password fields are required."
912
  msgstr ""
913
 
914
- #: src/admin.php:929
915
  msgid "Registration successful."
916
  msgstr ""
917
 
918
- #: src/admin.php:928, src/admin.php:929
919
  msgid "Please follow this link to open %s in a new window."
920
  msgstr ""
921
 
922
- #: src/admin.php:928
923
  msgid "Login successful."
924
  msgstr ""
925
 
926
- #: src/admin.php:927,
927
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
928
  msgid "UpdraftCentral Cloud"
929
  msgstr ""
930
 
931
- #: src/admin.php:487
932
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
933
  msgstr ""
934
 
935
- #: src/admin.php:486
936
  msgid "Dismiss all UpdraftPlus news"
937
  msgstr ""
938
 
939
- #: src/admin.php:485
940
  msgid "UpdraftPlus News"
941
  msgstr ""
942
 
@@ -960,7 +964,7 @@ msgstr ""
960
  msgid "Azure Account"
961
  msgstr ""
962
 
963
- #: src/admin.php:926
964
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
965
  msgstr ""
966
 
@@ -972,23 +976,23 @@ msgstr ""
972
  msgid "Upload backup"
973
  msgstr ""
974
 
975
- #: src/admin.php:4246
976
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
977
  msgstr ""
978
 
979
- #: src/admin.php:925
980
  msgid "(already uploaded)"
981
  msgstr ""
982
 
983
- #: src/admin.php:923
984
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
985
  msgstr ""
986
 
987
- #: src/admin.php:844, src/admin.php:4246
988
  msgid "Upload"
989
  msgstr ""
990
 
991
- #: src/addons/reporting.php:529, src/admin.php:794
992
  msgid "Only email the database backup"
993
  msgstr ""
994
 
@@ -1058,7 +1062,7 @@ msgstr ""
1058
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1059
  msgstr ""
1060
 
1061
- #: src/includes/class-remote-send.php:437
1062
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1063
  msgstr ""
1064
 
@@ -1090,7 +1094,7 @@ msgstr ""
1090
  msgid "Thank you for installing UpdraftPlus!"
1091
  msgstr ""
1092
 
1093
- #: src/includes/class-remote-send.php:531
1094
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1095
  msgstr ""
1096
 
@@ -1118,11 +1122,11 @@ msgstr ""
1118
  msgid "Ensure you are logged into the correct account before continuing."
1119
  msgstr ""
1120
 
1121
- #: src/admin.php:4984
1122
  msgid "Remote storage method and instance id are required for authentication."
1123
  msgstr ""
1124
 
1125
- #: src/admin.php:4980
1126
  msgid "authentication error"
1127
  msgstr ""
1128
 
@@ -1150,11 +1154,11 @@ msgstr ""
1150
  msgid "Delete these settings"
1151
  msgstr ""
1152
 
1153
- #: src/addons/morestorage.php:81, src/admin.php:922
1154
  msgid "Currently disabled"
1155
  msgstr ""
1156
 
1157
- #: src/addons/morestorage.php:81, src/admin.php:921
1158
  msgid "Currently enabled"
1159
  msgstr ""
1160
 
@@ -1200,15 +1204,15 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
1200
  msgstr[0] ""
1201
  msgstr[1] ""
1202
 
1203
- #: src/class-updraftplus.php:4287
1204
  msgid "Your chosen replacement collation"
1205
  msgstr ""
1206
 
1207
- #: src/class-updraftplus.php:4264
1208
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1209
  msgstr ""
1210
 
1211
- #: src/class-updraftplus.php:4264
1212
  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."
1213
  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."
1214
  msgstr[0] ""
@@ -1276,15 +1280,15 @@ msgstr[1] ""
1276
  msgid "Requested table character set (%s) is not present - changing to %s."
1277
  msgstr ""
1278
 
1279
- #: src/class-updraftplus.php:4240
1280
  msgid "Your chosen character set to use instead:"
1281
  msgstr ""
1282
 
1283
- #: src/class-updraftplus.php:4230
1284
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1285
  msgstr ""
1286
 
1287
- #: src/class-updraftplus.php:4230
1288
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1289
  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."
1290
  msgstr[0] ""
@@ -1334,7 +1338,7 @@ msgstr ""
1334
  msgid "You now need to copy the key below and enter it at your %s."
1335
  msgstr ""
1336
 
1337
- #: src/admin.php:916
1338
  msgid "Please enter a valid URL e.g http://example.com"
1339
  msgstr ""
1340
 
@@ -1374,27 +1378,27 @@ msgstr ""
1374
  msgid "Account ID"
1375
  msgstr ""
1376
 
1377
- #: src/class-updraftplus.php:4069
1378
  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."
1379
  msgstr ""
1380
 
1381
- #: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
1382
  msgid "the migrator add-on"
1383
  msgstr ""
1384
 
1385
- #: src/class-updraftplus.php:4067
1386
  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."
1387
  msgstr ""
1388
 
1389
- #: src/class-updraftplus.php:4065
1390
  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."
1391
  msgstr ""
1392
 
1393
- #: src/class-updraftplus.php:4060
1394
  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."
1395
  msgstr ""
1396
 
1397
- #: src/methods/googledrive.php:1275
1398
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1399
  msgstr ""
1400
 
@@ -1402,18 +1406,18 @@ msgstr ""
1402
  msgid "Follow this link to remove these settings for %s."
1403
  msgstr ""
1404
 
1405
- #: src/admin.php:895
1406
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1407
  msgstr ""
1408
 
1409
- #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
1410
- #: src/class-updraftplus.php:2252,
1411
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1412
  msgid "A PHP fatal error (%s) has occurred: %s"
1413
  msgstr ""
1414
 
1415
- #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
1416
- #: src/class-updraftplus.php:2245,
1417
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1418
  msgid "A PHP exception (%s) has occurred: %s"
1419
  msgstr ""
@@ -1467,11 +1471,11 @@ msgstr ""
1467
  msgid "Instant and secure logon with a wave of your phone."
1468
  msgstr ""
1469
 
1470
- #: src/admin.php:5190
1471
  msgid "Value"
1472
  msgstr ""
1473
 
1474
- #: src/admin.php:1779
1475
  msgid "Did not know how to delete from this cloud service."
1476
  msgstr ""
1477
 
@@ -1487,11 +1491,11 @@ msgstr ""
1487
  msgid "Cloud Files"
1488
  msgstr ""
1489
 
1490
- #: src/admin.php:4932
1491
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1492
  msgstr ""
1493
 
1494
- #: src/admin.php:4891
1495
  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."
1496
  msgstr ""
1497
 
@@ -1508,43 +1512,43 @@ msgstr ""
1508
  msgid "Extra database"
1509
  msgstr ""
1510
 
1511
- #: src/admin.php:4102
1512
  msgid "Press here to download or browse"
1513
  msgstr ""
1514
 
1515
- #: src/admin.php:1332, src/admin.php:1342
1516
  msgid "Error: invalid path"
1517
  msgstr ""
1518
 
1519
- #: src/admin.php:1131
1520
  msgid "An error occurred when fetching storage module options: "
1521
  msgstr ""
1522
 
1523
- #: src/admin.php:913
1524
  msgid "Loading log file"
1525
  msgstr ""
1526
 
1527
- #: src/admin.php:912
1528
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1529
  msgstr ""
1530
 
1531
- #: src/admin.php:911
1532
  msgid "Search"
1533
  msgstr ""
1534
 
1535
- #: src/admin.php:910
1536
  msgid "Select a file to view information about it"
1537
  msgstr ""
1538
 
1539
- #: src/admin.php:909
1540
  msgid "Browsing zip file"
1541
  msgstr ""
1542
 
1543
- #: src/admin.php:876
1544
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1545
  msgstr ""
1546
 
1547
- #: src/admin.php:822
1548
  msgid "Browse contents"
1549
  msgstr ""
1550
 
@@ -1552,43 +1556,43 @@ msgstr ""
1552
  msgid "Skipped tables:"
1553
  msgstr ""
1554
 
1555
- #: src/class-updraftplus.php:4365
1556
  msgid "This database backup has the following WordPress tables excluded: %s"
1557
  msgstr ""
1558
 
1559
- #: src/admin.php:3020
1560
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1561
  msgstr ""
1562
 
1563
- #: src/admin.php:3020
1564
  msgid "All WordPress tables will be backed up."
1565
  msgstr ""
1566
 
1567
- #: src/admin.php:908
1568
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1569
  msgstr ""
1570
 
1571
- #: src/admin.php:908
1572
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1573
  msgstr ""
1574
 
1575
- #: src/admin.php:908
1576
  msgid "The available memory on the server."
1577
  msgstr ""
1578
 
1579
- #: src/admin.php:908
1580
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1581
  msgstr ""
1582
 
1583
- #: src/admin.php:908
1584
  msgid "The file failed to upload. Please check the following:"
1585
  msgstr ""
1586
 
1587
- #: src/admin.php:907
1588
  msgid "HTTP code:"
1589
  msgstr ""
1590
 
1591
- #: src/addons/wp-cli.php:109, src/admin.php:799
1592
  msgid "You have chosen to backup a database, but no tables have been selected"
1593
  msgstr ""
1594
 
@@ -1738,7 +1742,7 @@ msgstr ""
1738
  msgid "Free"
1739
  msgstr ""
1740
 
1741
- #: src/admin.php:484
1742
  msgid "UpdraftPlus"
1743
  msgstr ""
1744
 
@@ -2013,7 +2017,7 @@ msgstr ""
2013
  msgid "Backup of: %s"
2014
  msgstr ""
2015
 
2016
- #: src/methods/googledrive.php:270
2017
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2018
  msgstr ""
2019
 
@@ -2037,11 +2041,11 @@ msgstr ""
2037
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2038
  msgstr ""
2039
 
2040
- #: src/admin.php:1862
2041
  msgid "Remote files deleted:"
2042
  msgstr ""
2043
 
2044
- #: src/admin.php:1861
2045
  msgid "Local files deleted:"
2046
  msgstr ""
2047
 
@@ -2049,39 +2053,39 @@ msgstr ""
2049
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2050
  msgstr ""
2051
 
2052
- #: src/admin.php:906
2053
  msgid "remote files deleted"
2054
  msgstr ""
2055
 
2056
- #: src/admin.php:902
2057
  msgid "Complete"
2058
  msgstr ""
2059
 
2060
- #: src/admin.php:901
2061
  msgid "Do you want to carry out the import?"
2062
  msgstr ""
2063
 
2064
- #: src/admin.php:900
2065
  msgid "Which was exported on:"
2066
  msgstr ""
2067
 
2068
- #: src/admin.php:899
2069
  msgid "This will import data from:"
2070
  msgstr ""
2071
 
2072
- #: src/admin.php:898
2073
  msgid "Importing..."
2074
  msgstr ""
2075
 
2076
- #: src/admin.php:894
2077
  msgid "You have not yet selected a file to import."
2078
  msgstr ""
2079
 
2080
- #: src/admin.php:878
2081
  msgid "Your export file will be of your displayed settings, not your saved ones."
2082
  msgstr ""
2083
 
2084
- #: src/admin.php:89
2085
  msgid "template not found"
2086
  msgstr ""
2087
 
@@ -2097,16 +2101,16 @@ msgstr ""
2097
  msgid "Account is not authorized (%s)."
2098
  msgstr ""
2099
 
2100
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
2101
  msgid "Your IP address:"
2102
  msgstr ""
2103
 
2104
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
2105
- #: src/udaddons/updraftplus-addons.php:903
2106
  msgid "To remove any block, please go here."
2107
  msgstr ""
2108
 
2109
- #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
2110
  msgid "An error response was received; HTTP code:"
2111
  msgstr ""
2112
 
@@ -2122,15 +2126,15 @@ msgstr ""
2122
  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"
2123
  msgstr ""
2124
 
2125
- #: src/admin.php:2607
2126
  msgid "To fix this problem go here."
2127
  msgstr ""
2128
 
2129
- #: src/admin.php:2607
2130
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2131
  msgstr ""
2132
 
2133
- #: src/admin.php:862
2134
  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."
2135
  msgstr ""
2136
 
@@ -2158,7 +2162,7 @@ msgstr ""
2158
  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."
2159
  msgstr ""
2160
 
2161
- #: src/udaddons/updraftplus-addons.php:906
2162
  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."
2163
  msgstr ""
2164
 
@@ -2252,7 +2256,7 @@ msgstr ""
2252
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2253
  msgstr ""
2254
 
2255
- #: src/methods/googledrive.php:530
2256
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2257
  msgstr ""
2258
 
@@ -2273,7 +2277,7 @@ msgstr ""
2273
  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."
2274
  msgstr ""
2275
 
2276
- #: src/class-updraftplus.php:1793
2277
  msgid "Size: %s MB"
2278
  msgstr ""
2279
 
@@ -2281,7 +2285,7 @@ msgstr ""
2281
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2282
  msgstr ""
2283
 
2284
- #: src/class-updraftplus.php:4086, src/restorer.php:1446
2285
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2286
  msgstr ""
2287
 
@@ -2303,7 +2307,7 @@ msgstr ""
2303
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2304
  msgstr ""
2305
 
2306
- #: src/class-updraftplus.php:583, src/class-updraftplus.php:628
2307
  msgid "The given file was not found, or could not be read."
2308
  msgstr ""
2309
 
@@ -2387,23 +2391,23 @@ msgstr ""
2387
  msgid "UpdraftCentral Connection"
2388
  msgstr ""
2389
 
2390
- #: src/backup.php:1042, src/class-updraftplus.php:3026
2391
  msgid "The backup was aborted by the user"
2392
  msgstr ""
2393
 
2394
- #: src/admin.php:4927
2395
  msgid "Your settings have been saved."
2396
  msgstr ""
2397
 
2398
- #: src/admin.php:4007
2399
  msgid "Total backup size:"
2400
  msgstr ""
2401
 
2402
- #: src/admin.php:3414
2403
  msgid "stop"
2404
  msgstr ""
2405
 
2406
- #: src/admin.php:903, src/admin.php:3207
2407
  msgid "The backup has finished running"
2408
  msgstr ""
2409
 
@@ -2429,27 +2433,27 @@ msgstr ""
2429
  msgid "calculate"
2430
  msgstr ""
2431
 
2432
- #: src/admin.php:877
2433
  msgid "You should save your changes to ensure that they are used for making your backup."
2434
  msgstr ""
2435
 
2436
- #: src/admin.php:870
2437
  msgid "We requested to delete the file, but could not understand the server's response"
2438
  msgstr ""
2439
 
2440
- #: src/admin.php:869
2441
  msgid "Please enter a valid URL"
2442
  msgstr ""
2443
 
2444
- #: src/admin.php:852
2445
  msgid "Saving..."
2446
  msgstr ""
2447
 
2448
- #: src/admin.php:813
2449
  msgid "Error: the server sent us a response which we did not understand."
2450
  msgstr ""
2451
 
2452
- #: src/admin.php:805
2453
  msgid "Fetching..."
2454
  msgstr ""
2455
 
@@ -2465,24 +2469,24 @@ msgstr ""
2465
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2466
  msgstr ""
2467
 
2468
- #: src/class-updraftplus.php:4138, src/restorer.php:2227
2469
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2470
  msgstr ""
2471
 
2472
- #: src/class-updraftplus.php:4134
2473
  msgid "Please read this link for important information on this process."
2474
  msgstr ""
2475
 
2476
- #: src/class-updraftplus.php:4134
2477
  msgid "It will be imported as a new site."
2478
  msgstr ""
2479
 
2480
- #: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
2481
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2482
  msgid "Dismiss"
2483
  msgstr ""
2484
 
2485
- #: src/admin.php:889
2486
  msgid "Please fill in the required information."
2487
  msgstr ""
2488
 
@@ -2543,7 +2547,7 @@ msgstr ""
2543
  msgid "Call WordPress action:"
2544
  msgstr ""
2545
 
2546
- #: src/admin.php:3030
2547
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2548
  msgstr ""
2549
 
@@ -2575,76 +2579,76 @@ msgstr ""
2575
  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)."
2576
  msgstr ""
2577
 
2578
- #: src/admin.php:4801
2579
  msgid "Send this backup to remote storage"
2580
  msgstr ""
2581
 
2582
- #: src/admin.php:4799
2583
  msgid "Check out UpdraftPlus Vault."
2584
  msgstr ""
2585
 
2586
- #: src/admin.php:4799
2587
  msgid "Not got any remote storage?"
2588
  msgstr ""
2589
 
2590
- #: src/admin.php:4799
2591
  msgid "settings"
2592
  msgstr ""
2593
 
2594
- #: src/admin.php:4799
2595
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2596
  msgstr ""
2597
 
2598
- #: src/admin.php:3028
2599
  msgid "Include any files in the backup"
2600
  msgstr ""
2601
 
2602
- #: src/admin.php:3012
2603
  msgid "Include the database in the backup"
2604
  msgstr ""
2605
 
2606
- #: src/admin.php:2839
2607
  msgid "Continue restoration"
2608
  msgstr ""
2609
 
2610
- #: src/admin.php:2834
2611
  msgid "You have an unfinished restoration operation, begun %s ago."
2612
  msgstr ""
2613
 
2614
- #: src/admin.php:2833
2615
  msgid "Unfinished restoration"
2616
  msgstr ""
2617
 
2618
- #: src/admin.php:2831
2619
  msgid "%s minutes, %s seconds"
2620
  msgstr ""
2621
 
2622
- #: src/admin.php:2697
2623
  msgid "Backup Contents And Schedule"
2624
  msgstr ""
2625
 
2626
- #: src/admin.php:2800
2627
  msgid "Premium / Extensions"
2628
  msgstr ""
2629
 
2630
- #: src/admin.php:2474, src/admin.php:2483
2631
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2632
  msgstr ""
2633
 
2634
- #: src/addons/morefiles.php:71, src/admin.php:875
2635
  msgctxt "(verb)"
2636
  msgid "Download"
2637
  msgstr ""
2638
 
2639
- #: src/admin.php:798
2640
  msgid "You have chosen to backup files, but no file entities have been selected"
2641
  msgstr ""
2642
 
2643
- #: src/admin.php:693
2644
  msgid "Extensions"
2645
  msgstr ""
2646
 
2647
- #: src/admin.php:685, src/admin.php:2799
2648
  msgid "Advanced Tools"
2649
  msgstr ""
2650
 
@@ -2763,7 +2767,7 @@ msgstr ""
2763
  msgid "Could not access container"
2764
  msgstr ""
2765
 
2766
- #: src/class-updraftplus.php:3045
2767
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
2768
  msgstr ""
2769
 
@@ -2893,35 +2897,35 @@ msgstr ""
2893
  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)."
2894
  msgstr ""
2895
 
2896
- #: src/admin.php:1860
2897
  msgid "Backup sets removed:"
2898
  msgstr ""
2899
 
2900
- #: src/admin.php:888
2901
  msgid "Processing..."
2902
  msgstr ""
2903
 
2904
- #: src/admin.php:886
2905
  msgid "For backups older than"
2906
  msgstr ""
2907
 
2908
- #: src/admin.php:885
2909
  msgid "week(s)"
2910
  msgstr ""
2911
 
2912
- #: src/admin.php:884
2913
  msgid "hour(s)"
2914
  msgstr ""
2915
 
2916
- #: src/admin.php:883
2917
  msgid "day(s)"
2918
  msgstr ""
2919
 
2920
- #: src/admin.php:882
2921
  msgid "in the month"
2922
  msgstr ""
2923
 
2924
- #: src/admin.php:881
2925
  msgid "day"
2926
  msgstr ""
2927
 
@@ -2945,15 +2949,15 @@ msgstr ""
2945
  msgid "You do not currently have any UpdraftPlus Vault quota"
2946
  msgstr ""
2947
 
2948
- #: src/class-updraftplus.php:4209
2949
  msgid "You must upgrade MySQL to be able to use this database."
2950
  msgstr ""
2951
 
2952
- #: src/class-updraftplus.php:4209
2953
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
2954
  msgstr ""
2955
 
2956
- #: src/admin.php:2592
2957
  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."
2958
  msgstr ""
2959
 
@@ -2981,11 +2985,11 @@ msgstr ""
2981
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
2982
  msgstr ""
2983
 
2984
- #: src/admin.php:1190
2985
  msgid "Go to the remote storage settings in order to connect."
2986
  msgstr ""
2987
 
2988
- #: src/admin.php:1190
2989
  msgid "%s has been chosen for remote storage, but you are not currently connected."
2990
  msgstr ""
2991
 
@@ -2993,19 +2997,19 @@ msgstr ""
2993
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
2994
  msgstr ""
2995
 
2996
- #: src/admin.php:858
2997
  msgid "Update quota count"
2998
  msgstr ""
2999
 
3000
- #: src/admin.php:857
3001
  msgid "Counting..."
3002
  msgstr ""
3003
 
3004
- #: src/admin.php:856
3005
  msgid "Disconnecting..."
3006
  msgstr ""
3007
 
3008
- #: src/admin.php:854
3009
  msgid "Connecting..."
3010
  msgstr ""
3011
 
@@ -3031,7 +3035,7 @@ msgstr ""
3031
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3032
  msgstr ""
3033
 
3034
- #: src/admin.php:855, src/methods/updraftvault.php:392,
3035
  #: src/methods/updraftvault.php:450
3036
  msgid "Disconnect"
3037
  msgstr ""
@@ -3149,15 +3153,15 @@ msgstr ""
3149
  msgid "Allow download"
3150
  msgstr ""
3151
 
3152
- #: src/includes/class-remote-send.php:313
3153
  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."
3154
  msgstr ""
3155
 
3156
- #: src/admin.php:864, src/includes/class-remote-send.php:298
3157
  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."
3158
  msgstr ""
3159
 
3160
- #: src/includes/class-remote-send.php:540
3161
  msgid "Existing keys"
3162
  msgstr ""
3163
 
@@ -3169,27 +3173,27 @@ msgstr ""
3169
  msgid "You must copy and paste this key now - it cannot be shown again."
3170
  msgstr ""
3171
 
3172
- #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:437
3173
  msgid "Key created successfully."
3174
  msgstr ""
3175
 
3176
- #: src/includes/class-remote-send.php:420
3177
  msgid "A key with this name already exists; you must use a unique name."
3178
  msgstr ""
3179
 
3180
- #: src/includes/class-remote-send.php:344
3181
  msgid "Also send this backup to the active remote storage locations"
3182
  msgstr ""
3183
 
3184
- #: src/includes/class-remote-send.php:309
3185
  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."
3186
  msgstr ""
3187
 
3188
- #: src/includes/class-remote-send.php:265
3189
  msgid "site not found"
3190
  msgstr ""
3191
 
3192
- #: src/includes/class-remote-send.php:250
3193
  msgid "Backup data will be sent to:"
3194
  msgstr ""
3195
 
@@ -3209,7 +3213,7 @@ msgstr ""
3209
  msgid "This storage method does not allow downloading"
3210
  msgstr ""
3211
 
3212
- #: src/admin.php:4165
3213
  msgid "(backup set imported from remote location)"
3214
  msgstr ""
3215
 
@@ -3231,24 +3235,24 @@ msgstr ""
3231
  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."
3232
  msgstr ""
3233
 
3234
- #: src/admin.php:871, src/includes/class-remote-send.php:326
3235
  msgid "Testing connection..."
3236
  msgstr ""
3237
 
3238
- #: src/admin.php:868,
3239
  #: src/templates/wp-admin/settings/existing-backups-table.php:161
3240
  msgid "Deleting..."
3241
  msgstr ""
3242
 
3243
- #: src/admin.php:867
3244
  msgid "key name"
3245
  msgstr ""
3246
 
3247
- #: src/admin.php:865
3248
  msgid "Please give this key a name (e.g. indicate the site it is for):"
3249
  msgstr ""
3250
 
3251
- #: src/admin.php:862
3252
  msgid "Creating..."
3253
  msgstr ""
3254
 
@@ -3272,42 +3276,42 @@ msgstr ""
3272
  msgid "Send a backup to another site"
3273
  msgstr ""
3274
 
3275
- #: src/admin.php:872, src/includes/class-remote-send.php:357,
3276
- #: src/includes/class-remote-send.php:519
3277
  msgid "Send"
3278
  msgstr ""
3279
 
3280
- #: src/admin.php:863, src/includes/class-remote-send.php:513
3281
  msgid "Send to site:"
3282
  msgstr ""
3283
 
3284
- #: src/includes/class-remote-send.php:511
3285
  msgid "No receiving sites have yet been added."
3286
  msgstr ""
3287
 
3288
- #: src/includes/class-remote-send.php:492
3289
  msgid "It is for sending backups to the following site: "
3290
  msgstr ""
3291
 
3292
- #: src/includes/class-remote-send.php:492
3293
  msgid "The key was successfully added."
3294
  msgstr ""
3295
 
3296
- #: src/includes/class-remote-send.php:476
3297
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
3298
  msgstr ""
3299
 
3300
- #: src/includes/class-remote-send.php:465,
3301
- #: src/includes/class-remote-send.php:467,
3302
- #: src/includes/class-remote-send.php:471
3303
  msgid "The entered key was corrupt - please try again."
3304
  msgstr ""
3305
 
3306
- #: src/includes/class-remote-send.php:463
3307
  msgid "The entered key was the wrong length - please try again."
3308
  msgstr ""
3309
 
3310
- #: src/includes/class-remote-send.php:453
3311
  msgid "key"
3312
  msgstr ""
3313
 
@@ -3343,19 +3347,19 @@ msgstr ""
3343
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3344
  msgstr ""
3345
 
3346
- #: src/admin.php:861
3347
  msgid "Resetting..."
3348
  msgstr ""
3349
 
3350
- #: src/addons/migrator.php:1745, src/admin.php:860
3351
  msgid "Add site"
3352
  msgstr ""
3353
 
3354
- #: src/admin.php:859
3355
  msgid "Adding..."
3356
  msgstr ""
3357
 
3358
- #: src/udaddons/options.php:294
3359
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
3360
  msgstr ""
3361
 
@@ -3363,15 +3367,15 @@ msgstr ""
3363
  msgid "To use this backup, your database server needs to support the %s character set."
3364
  msgstr ""
3365
 
3366
- #: src/udaddons/updraftplus-addons.php:939
3367
  msgid "go here to change your password on updraftplus.com."
3368
  msgstr ""
3369
 
3370
- #: src/udaddons/updraftplus-addons.php:939
3371
  msgid "If you have forgotten your password "
3372
  msgstr ""
3373
 
3374
- #: src/udaddons/updraftplus-addons.php:938
3375
  msgid "Go here to re-enter your password."
3376
  msgstr ""
3377
 
@@ -3379,7 +3383,7 @@ msgstr ""
3379
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3380
  msgstr ""
3381
 
3382
- #: src/admin.php:851, src/admin.php:877, src/admin.php:878
3383
  msgid "You have made changes to your settings, and not saved."
3384
  msgstr ""
3385
 
@@ -3392,7 +3396,7 @@ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you
3392
  msgstr ""
3393
 
3394
  #: src/addons/azure.php:605, src/addons/onedrive.php:1148,
3395
- #: src/includes/class-remote-send.php:313
3396
  msgid "For longer help, including screenshots, follow this link."
3397
  msgstr ""
3398
 
@@ -3585,18 +3589,18 @@ msgstr ""
3585
 
3586
  #: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
3587
  #: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
3588
- #: src/udaddons/updraftplus-addons.php:889,
3589
- #: src/udaddons/updraftplus-addons.php:903
3590
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
3591
  msgstr ""
3592
 
3593
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3594
- #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
3595
  msgid "It appears that your web server's IP Address (%s) is blocked."
3596
  msgstr ""
3597
 
3598
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3599
- #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
3600
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
3601
  msgstr ""
3602
 
@@ -3638,7 +3642,7 @@ msgstr ""
3638
  msgid "(at same time as files backup)"
3639
  msgstr ""
3640
 
3641
- #: src/admin.php:3701
3642
  msgid "No backup has been completed"
3643
  msgstr ""
3644
 
@@ -3667,7 +3671,7 @@ msgstr ""
3667
  msgid "Full feature list"
3668
  msgstr ""
3669
 
3670
- #: src/addons/autobackup.php:1075
3671
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3672
  msgstr ""
3673
 
@@ -3681,7 +3685,7 @@ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - o
3681
  msgid "or"
3682
  msgstr ""
3683
 
3684
- #: src/admin.php:845
3685
  msgid "You did not select any components to restore. Please select at least one, and then try again."
3686
  msgstr ""
3687
 
@@ -3712,7 +3716,7 @@ msgstr ""
3712
  msgid "Check this box to have a basic report sent to"
3713
  msgstr ""
3714
 
3715
- #: src/admin.php:3715
3716
  msgctxt "i.e. Non-automatic"
3717
  msgid "Manual"
3718
  msgstr ""
@@ -3730,7 +3734,7 @@ msgstr ""
3730
  msgid "Any other file/directory on your server that you wish to backup"
3731
  msgstr ""
3732
 
3733
- #: src/admin.php:2609
3734
  msgid "For even more features and personal support, check out "
3735
  msgstr ""
3736
 
@@ -3738,8 +3742,8 @@ msgstr ""
3738
  msgid "Database decryption phrase"
3739
  msgstr ""
3740
 
3741
- #: src/addons/autobackup.php:157, src/addons/autobackup.php:1021,
3742
- #: src/admin.php:850
3743
  msgid "Automatic backup before update"
3744
  msgstr ""
3745
 
@@ -3820,11 +3824,11 @@ msgstr ""
3820
  msgid "(learn more about this significant option)"
3821
  msgstr ""
3822
 
3823
- #: src/udaddons/options.php:237
3824
  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."
3825
  msgstr ""
3826
 
3827
- #: src/admin.php:3207, src/admin.php:4276
3828
  msgid "View Log"
3829
  msgstr ""
3830
 
@@ -3843,7 +3847,7 @@ msgstr ""
3843
  msgid "and retain this many scheduled backups"
3844
  msgstr ""
3845
 
3846
- #: src/admin.php:3671
3847
  msgid "incremental backup; base backup: %s"
3848
  msgstr ""
3849
 
@@ -3856,16 +3860,16 @@ msgstr ""
3856
  msgid "Upload files into UpdraftPlus."
3857
  msgstr ""
3858
 
3859
- #: src/admin.php:1136, src/includes/class-commands.php:462,
3860
  #: src/templates/wp-admin/settings/take-backup.php:12
3861
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
3862
  msgstr ""
3863
 
3864
- #: src/class-updraftplus.php:4123
3865
  msgid "Backup label:"
3866
  msgstr ""
3867
 
3868
- #: src/addons/backblaze.php:205, src/admin.php:2111
3869
  msgid "Error: unexpected file read fail"
3870
  msgstr ""
3871
 
@@ -3885,27 +3889,27 @@ msgstr ""
3885
  msgid "Your label for this backup (optional)"
3886
  msgstr ""
3887
 
3888
- #: src/methods/googledrive.php:1192
3889
  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."
3890
  msgstr ""
3891
 
3892
- #: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:942
3893
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
3894
  msgstr ""
3895
 
3896
- #: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:938
3897
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
3898
  msgstr ""
3899
 
3900
- #: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:804
3901
  msgid "You need to supply both an email address and a password"
3902
  msgstr ""
3903
 
3904
- #: src/class-updraftplus.php:4142
3905
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3906
  msgstr ""
3907
 
3908
- #: src/class-updraftplus.php:4142
3909
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3910
  msgstr ""
3911
 
@@ -3942,19 +3946,19 @@ msgstr ""
3942
  msgid "You need to connect to receive future updates to UpdraftPlus."
3943
  msgstr ""
3944
 
3945
- #: src/class-updraftplus.php:4115
3946
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3947
  msgstr ""
3948
 
3949
- #: src/class-updraftplus.php:4115
3950
  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."
3951
  msgstr ""
3952
 
3953
- #: src/class-updraftplus.php:4115
3954
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3955
  msgstr ""
3956
 
3957
- #: src/class-updraftplus.php:4115
3958
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3959
  msgstr ""
3960
 
@@ -3983,7 +3987,7 @@ msgstr ""
3983
  msgid "UpdraftPlus is on social media - check us out!"
3984
  msgstr ""
3985
 
3986
- #: src/addons/wp-cli.php:907, src/admin.php:4464
3987
  msgid "Why am I seeing this?"
3988
  msgstr ""
3989
 
@@ -3997,15 +4001,15 @@ msgstr ""
3997
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
3998
  msgstr ""
3999
 
4000
- #: src/admin.php:2048, src/admin.php:2060, src/includes/class-commands.php:833
4001
  msgid "Start backup"
4002
  msgstr ""
4003
 
4004
- #: src/class-updraftplus.php:4086, src/restorer.php:1446
4005
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4006
  msgstr ""
4007
 
4008
- #: src/admin.php:3569
4009
  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."
4010
  msgstr ""
4011
 
@@ -4013,11 +4017,11 @@ msgstr ""
4013
  msgid "Unless you have a problem, you can completely ignore everything here."
4014
  msgstr ""
4015
 
4016
- #: src/admin.php:2286
4017
  msgid "This file could not be uploaded"
4018
  msgstr ""
4019
 
4020
- #: src/admin.php:2249
4021
  msgid "You will find more information about this in the Settings section."
4022
  msgstr ""
4023
 
@@ -4045,21 +4049,21 @@ msgstr ""
4045
  msgid "Full backup"
4046
  msgstr ""
4047
 
4048
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4049
  msgid "now proceeding with the updates..."
4050
  msgstr ""
4051
 
4052
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4053
  msgid "(view log...)"
4054
  msgstr ""
4055
 
4056
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4057
  msgid "Backup succeeded"
4058
  msgstr ""
4059
 
4060
  #: src/addons/incremental.php:237, src/addons/incremental.php:238,
4061
  #: src/addons/incremental.php:239, src/addons/incremental.php:240,
4062
- #: src/admin.php:3716, src/admin.php:3717, src/admin.php:3718,
4063
  #: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
4064
  msgid "Every %s hours"
4065
  msgstr ""
@@ -4110,7 +4114,7 @@ msgstr ""
4110
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4111
  msgstr ""
4112
 
4113
- #: src/methods/googledrive.php:1199
4114
  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."
4115
  msgstr ""
4116
 
@@ -4134,11 +4138,11 @@ msgstr ""
4134
  msgid "Free disk space in account:"
4135
  msgstr ""
4136
 
4137
- #: src/admin.php:4898, src/templates/wp-admin/settings/take-backup.php:50
4138
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4139
  msgstr ""
4140
 
4141
- #: src/admin.php:817, src/admin.php:1916,
4142
  #: src/includes/deprecated-actions.php:29,
4143
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4144
  #: src/templates/wp-admin/settings/tab-backups.php:21,
@@ -4146,15 +4150,15 @@ msgstr ""
4146
  msgid "Existing Backups"
4147
  msgstr ""
4148
 
4149
- #: src/admin.php:1141
4150
  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."
4151
  msgstr ""
4152
 
4153
- #: src/admin.php:1141
4154
  msgid "To make a backup, just press the Backup Now button."
4155
  msgstr ""
4156
 
4157
- #: src/admin.php:1141
4158
  msgid "Welcome to UpdraftPlus!"
4159
  msgstr ""
4160
 
@@ -4226,25 +4230,25 @@ msgstr ""
4226
  msgid "user"
4227
  msgstr ""
4228
 
4229
- #: src/class-updraftplus.php:1790
4230
  msgid "External database (%s)"
4231
  msgstr ""
4232
 
4233
- #: src/methods/googledrive.php:1199
4234
  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."
4235
  msgstr ""
4236
 
4237
- #: src/methods/googledrive.php:494
4238
  msgid "failed to access parent folder"
4239
  msgstr ""
4240
 
4241
  #: src/addons/googlecloud.php:698, src/addons/onedrive.php:907,
4242
- #: src/addons/onedrive.php:918, src/methods/googledrive.php:434,
4243
- #: src/methods/googledrive.php:447
4244
  msgid "However, subsequent access attempts failed:"
4245
  msgstr ""
4246
 
4247
- #: src/addons/wp-cli.php:437, src/admin.php:4032
4248
  msgid "External database"
4249
  msgstr ""
4250
 
@@ -4276,7 +4280,7 @@ msgstr ""
4276
  msgid "use UpdraftPlus Premium"
4277
  msgstr ""
4278
 
4279
- #: src/class-updraftplus.php:3966
4280
  msgid "Decryption failed. The database file is encrypted."
4281
  msgstr ""
4282
 
@@ -4331,7 +4335,7 @@ msgstr ""
4331
  msgid "Tenant"
4332
  msgstr ""
4333
 
4334
- #: src/addons/wp-cli.php:800, src/admin.php:4586, src/admin.php:5342,
4335
  #: src/methods/openstack2.php:144,
4336
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
4337
  #: src/templates/wp-admin/settings/tab-backups.php:27,
@@ -4411,37 +4415,37 @@ msgid "%s error - failed to access the container"
4411
  msgstr ""
4412
 
4413
  #: src/addons/googlecloud.php:1108, src/addons/onedrive.php:1248,
4414
- #: src/methods/dropbox.php:668, src/methods/googledrive.php:1281
4415
  msgid "Account holder's name: %s."
4416
  msgstr ""
4417
 
4418
- #: src/methods/googledrive.php:1258
4419
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4420
  msgstr ""
4421
 
4422
- #: src/methods/googledrive.php:1245
4423
  msgid "It is an ID number internal to Google Drive"
4424
  msgstr ""
4425
 
4426
- #: src/methods/googledrive.php:1245
4427
  msgid "<strong>This is NOT a folder name</strong>."
4428
  msgstr ""
4429
 
4430
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1240,
4431
- #: src/methods/googledrive.php:1251
4432
  msgid "Folder"
4433
  msgstr ""
4434
 
4435
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:451,
4436
- #: src/methods/googledrive.php:1152
4437
  msgid "%s download: failed: file not found"
4438
  msgstr ""
4439
 
4440
- #: src/addons/googlecloud.php:718, src/methods/googledrive.php:467
4441
  msgid "Name: %s."
4442
  msgstr ""
4443
 
4444
- #: src/methods/googledrive.php:208
4445
  msgid "Google Drive list files: failed to access parent folder"
4446
  msgstr ""
4447
 
@@ -4477,7 +4481,7 @@ msgstr ""
4477
  msgid "Failed to unpack the archive"
4478
  msgstr ""
4479
 
4480
- #: src/class-updraftplus.php:1365
4481
  msgid "Error - failed to download the file"
4482
  msgstr ""
4483
 
@@ -4502,8 +4506,8 @@ msgstr ""
4502
  msgid "password/key"
4503
  msgstr ""
4504
 
4505
- #: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
4506
- #: src/admin.php:5190, src/templates/wp-admin/settings/temporary-clone.php:63
4507
  msgid "Key"
4508
  msgstr ""
4509
 
@@ -4519,24 +4523,24 @@ msgstr ""
4519
  msgid "SCP/SFTP password/key"
4520
  msgstr ""
4521
 
4522
- #: src/addons/wp-cli.php:449, src/admin.php:4076
4523
  msgid "Files backup (created by %s)"
4524
  msgstr ""
4525
 
4526
- #: src/addons/wp-cli.php:449, src/admin.php:4076
4527
  msgid "Files and database WordPress backup (created by %s)"
4528
  msgstr ""
4529
 
4530
- #: src/addons/importer.php:276, src/admin.php:4070,
4531
  #: src/includes/class-backup-history.php:435
4532
  msgid "Backup created by: %s."
4533
  msgstr ""
4534
 
4535
- #: src/addons/wp-cli.php:431, src/admin.php:4030
4536
  msgid "Database (created by %s)"
4537
  msgstr ""
4538
 
4539
- #: src/addons/wp-cli.php:429, src/admin.php:4024, src/admin.php:4072
4540
  msgid "unknown source"
4541
  msgstr ""
4542
 
@@ -4551,32 +4555,32 @@ msgstr ""
4551
  msgid "Upload backup files"
4552
  msgstr ""
4553
 
4554
- #: src/admin.php:2301
4555
  msgid "This backup was created by %s, and can be imported."
4556
  msgstr ""
4557
 
4558
- #: src/admin.php:1170
4559
  msgid "Read this page for a guide to possible causes and how to fix it."
4560
  msgstr ""
4561
 
4562
- #: src/admin.php:1170
4563
  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."
4564
  msgstr ""
4565
 
4566
- #: src/admin.php:829, src/includes/class-backup-history.php:442
4567
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
4568
  msgstr ""
4569
 
4570
- #: src/admin.php:828
4571
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
4572
  msgstr ""
4573
 
4574
- #: src/admin.php:828, src/admin.php:829,
4575
  #: src/includes/class-backup-history.php:442
4576
  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))."
4577
  msgstr ""
4578
 
4579
- #: src/admin.php:4073, src/includes/class-wpadmin-commands.php:162,
4580
  #: src/restorer.php:1975
4581
  msgid "Backup created by unknown source (%s) - cannot be restored."
4582
  msgstr ""
@@ -4606,7 +4610,7 @@ msgstr ""
4606
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
4607
  msgstr ""
4608
 
4609
- #: src/admin.php:795
4610
  msgid "Rescanning remote and local storage for backup sets..."
4611
  msgstr ""
4612
 
@@ -4636,7 +4640,7 @@ msgstr ""
4636
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4637
  msgstr ""
4638
 
4639
- #: src/addons/morefiles.php:476, src/admin.php:3829
4640
  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."
4641
  msgstr ""
4642
 
@@ -4665,7 +4669,7 @@ msgstr ""
4665
  msgid "Backup created by:"
4666
  msgstr ""
4667
 
4668
- #: src/udaddons/options.php:479
4669
  msgid "Available to claim on this site"
4670
  msgstr ""
4671
 
@@ -4752,12 +4756,12 @@ msgstr ""
4752
  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)"
4753
  msgstr ""
4754
 
4755
- #: src/udaddons/updraftplus-addons.php:474,
4756
- #: src/udaddons/updraftplus-addons.php:510
4757
  msgid "Errors occurred:"
4758
  msgstr ""
4759
 
4760
- #: src/addons/wp-cli.php:664, src/admin.php:4506
4761
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
4762
  msgstr ""
4763
 
@@ -4781,7 +4785,7 @@ msgstr ""
4781
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
4782
  msgstr ""
4783
 
4784
- #: src/admin.php:1145, src/class-updraftplus.php:847
4785
  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)"
4786
  msgstr ""
4787
 
@@ -4794,7 +4798,7 @@ msgstr ""
4794
  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."
4795
  msgstr ""
4796
 
4797
- #: src/addons/moredatabase.php:144, src/admin.php:1640
4798
  msgid "Messages:"
4799
  msgstr ""
4800
 
@@ -4960,27 +4964,27 @@ msgstr ""
4960
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4961
  msgstr ""
4962
 
4963
- #: src/admin.php:843, src/central/bootstrap.php:565
4964
  msgid "Create"
4965
  msgstr ""
4966
 
4967
- #: src/admin.php:804
4968
  msgid "Trying..."
4969
  msgstr ""
4970
 
4971
- #: src/admin.php:803
4972
  msgid "The new user's RackSpace console password is (this will not be shown again):"
4973
  msgstr ""
4974
 
4975
- #: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:4584
4976
  msgid "Error data:"
4977
  msgstr ""
4978
 
4979
- #: src/admin.php:4487
4980
  msgid "Backup does not exist in the backup history"
4981
  msgstr ""
4982
 
4983
- #: src/admin.php:3143
4984
  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."
4985
  msgstr ""
4986
 
@@ -5020,11 +5024,11 @@ msgstr ""
5020
  msgid "Email reports"
5021
  msgstr ""
5022
 
5023
- #: src/class-updraftplus.php:1798, src/class-updraftplus.php:1803
5024
  msgid "%s checksum: %s"
5025
  msgstr ""
5026
 
5027
- #: src/class-updraftplus.php:1734, src/class-updraftplus.php:1736
5028
  msgid "files: %s"
5029
  msgstr ""
5030
 
@@ -5036,7 +5040,7 @@ msgstr ""
5036
  msgid "Debugging information"
5037
  msgstr ""
5038
 
5039
- #: src/addons/reporting.php:223, src/admin.php:3990
5040
  msgid "Uploaded to:"
5041
  msgstr ""
5042
 
@@ -5081,7 +5085,7 @@ msgstr ""
5081
  msgid "%s authentication"
5082
  msgstr ""
5083
 
5084
- #: src/addons/onedrive.php:864, src/class-updraftplus.php:531,
5085
  #: src/methods/dropbox.php:240, src/methods/dropbox.php:753,
5086
  #: src/methods/dropbox.php:775, src/methods/dropbox.php:790,
5087
  #: src/methods/dropbox.php:803, src/methods/dropbox.php:946
@@ -5108,7 +5112,7 @@ msgstr ""
5108
  msgid "Your site's admin email address (%s) will be used."
5109
  msgstr ""
5110
 
5111
- #: src/admin.php:853, src/admin.php:2874, src/methods/updraftvault.php:319,
5112
  #: src/methods/updraftvault.php:362,
5113
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5114
  msgid "Connect"
@@ -5118,15 +5122,15 @@ msgstr ""
5118
  msgid "For more reporting features, use the Reporting add-on."
5119
  msgstr ""
5120
 
5121
- #: src/class-updraftplus.php:4047
5122
  msgid "(version: %s)"
5123
  msgstr ""
5124
 
5125
- #: src/admin.php:792
5126
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5127
  msgstr ""
5128
 
5129
- #: src/addons/reporting.php:527, src/admin.php:791
5130
  msgid "When the Email storage method is enabled, also send the backup"
5131
  msgstr ""
5132
 
@@ -5166,7 +5170,7 @@ msgstr ""
5166
  msgid "Files (database backup has not completed)"
5167
  msgstr ""
5168
 
5169
- #: src/admin.php:332, src/backup.php:1044
5170
  msgid "Files and database"
5171
  msgstr ""
5172
 
@@ -5190,39 +5194,39 @@ msgstr ""
5190
  msgid "UpdraftPlus warning:"
5191
  msgstr ""
5192
 
5193
- #: src/udaddons/options.php:485
5194
  msgid "(or connect using the form on this page if you have already purchased it)"
5195
  msgstr ""
5196
 
5197
- #: src/udaddons/options.php:473
5198
  msgid "please follow this link to update the plugin in order to activate it"
5199
  msgstr ""
5200
 
5201
- #: src/udaddons/options.php:470
5202
  msgid "please follow this link to update the plugin in order to get it"
5203
  msgstr ""
5204
 
5205
- #: src/udaddons/options.php:460, src/udaddons/options.php:462
5206
  msgid "latest"
5207
  msgstr ""
5208
 
5209
- #: src/udaddons/options.php:458
5210
  msgid "Your version: %s"
5211
  msgstr ""
5212
 
5213
- #: src/udaddons/options.php:456, src/udaddons/options.php:456
5214
  msgid "You've got it"
5215
  msgstr ""
5216
 
5217
- #: src/udaddons/options.php:417
5218
  msgid "UpdraftPlus Support"
5219
  msgstr ""
5220
 
5221
- #: src/udaddons/options.php:357
5222
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
5223
  msgstr ""
5224
 
5225
- #: src/udaddons/options.php:346, src/udaddons/updraftplus-addons.php:315
5226
  msgid "UpdraftPlus Addons"
5227
  msgstr ""
5228
 
@@ -5231,24 +5235,24 @@ msgid "An update is available for UpdraftPlus - please follow this link to get i
5231
  msgstr ""
5232
 
5233
  #: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
5234
- #: src/udaddons/updraftplus-addons.php:949
5235
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
5236
  msgstr ""
5237
 
5238
- #: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:945
5239
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
5240
  msgstr ""
5241
 
5242
  #: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
5243
- #: src/udaddons/updraftplus-addons.php:908
5244
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
5245
  msgstr ""
5246
 
5247
- #: src/udaddons/updraftplus-addons.php:831
5248
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
5249
  msgstr ""
5250
 
5251
- #: src/udaddons/updraftplus-addons.php:829
5252
  msgid "We failed to successfully connect to UpdraftPlus.Com"
5253
  msgstr ""
5254
 
@@ -5259,11 +5263,11 @@ msgstr ""
5259
  msgid "Reporting"
5260
  msgstr ""
5261
 
5262
- #: src/admin.php:5187
5263
  msgid "Options (raw)"
5264
  msgstr ""
5265
 
5266
- #: src/addons/reporting.php:525, src/admin.php:790
5267
  msgid "Send a report only when there are warnings/errors"
5268
  msgstr ""
5269
 
@@ -5279,79 +5283,79 @@ msgstr ""
5279
  msgid "See also the \"More Files\" add-on from our shop."
5280
  msgstr ""
5281
 
5282
- #: src/backup.php:3424, src/class-updraftplus.php:860
5283
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
5284
  msgstr ""
5285
 
5286
- #: src/class-updraftplus.php:844
5287
  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)"
5288
  msgstr ""
5289
 
5290
- #: src/udaddons/options.php:508
5291
  msgid "Manage Addons"
5292
  msgstr ""
5293
 
5294
- #: src/udaddons/options.php:486, src/udaddons/options.php:486
5295
  msgid "Buy It"
5296
  msgstr ""
5297
 
5298
- #: src/udaddons/options.php:485
5299
  msgid "Get it from the UpdraftPlus.Com Store"
5300
  msgstr ""
5301
 
5302
- #: src/udaddons/options.php:479, src/udaddons/options.php:481
5303
  msgid "activate it on this site"
5304
  msgstr ""
5305
 
5306
- #: src/udaddons/options.php:481
5307
  msgid "You have an inactive purchase"
5308
  msgstr ""
5309
 
5310
- #: src/udaddons/options.php:473
5311
  msgid "Assigned to this site"
5312
  msgstr ""
5313
 
5314
- #: src/udaddons/options.php:470
5315
  msgid "Available for this site (via your all-addons purchase)"
5316
  msgstr ""
5317
 
5318
- #: src/udaddons/options.php:464
5319
  msgid "(apparently a pre-release or withdrawn release)"
5320
  msgstr ""
5321
 
5322
- #: src/udaddons/options.php:419
5323
  msgid "Go here"
5324
  msgstr ""
5325
 
5326
- #: src/udaddons/options.php:419
5327
  msgid "Need to get support?"
5328
  msgstr ""
5329
 
5330
- #: src/udaddons/options.php:401
5331
  msgid "An error occurred when trying to retrieve your add-ons."
5332
  msgstr ""
5333
 
5334
- #: src/udaddons/options.php:296
5335
  msgid "An unknown response was received. Response was:"
5336
  msgstr ""
5337
 
5338
- #: src/udaddons/options.php:295
5339
  msgid "Claim not granted - your account login details were wrong"
5340
  msgstr ""
5341
 
5342
- #: src/udaddons/options.php:293
5343
  msgid "Please wait whilst we make the claim..."
5344
  msgstr ""
5345
 
5346
- #: src/udaddons/options.php:247
5347
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
5348
  msgstr ""
5349
 
5350
- #: src/udaddons/options.php:240
5351
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
5352
  msgstr ""
5353
 
5354
- #: src/udaddons/options.php:236
5355
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
5356
  msgstr ""
5357
 
@@ -5359,19 +5363,19 @@ msgstr ""
5359
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
5360
  msgstr ""
5361
 
5362
- #: src/admin.php:2872
5363
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
5364
  msgstr ""
5365
 
5366
- #: src/admin.php:2948
5367
  msgid "Forgotten your details?"
5368
  msgstr ""
5369
 
5370
- #: src/admin.php:2861
5371
  msgid "Not yet got an account (it's free)? Go get one!"
5372
  msgstr ""
5373
 
5374
- #: src/admin.php:2927
5375
  msgid "Connect with your UpdraftPlus.Com account"
5376
  msgstr ""
5377
 
@@ -5413,7 +5417,7 @@ msgstr ""
5413
  msgid "Your web-server does not have the %s module installed."
5414
  msgstr ""
5415
 
5416
- #: src/addons/googlecloud.php:1074, src/methods/googledrive.php:1270
5417
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
5418
  msgstr ""
5419
 
@@ -5422,15 +5426,15 @@ msgstr ""
5422
  msgid "Drop backup files here"
5423
  msgstr ""
5424
 
5425
- #: src/admin.php:802
5426
  msgid "The web server returned an error code (try again, or check your web server logs)"
5427
  msgstr ""
5428
 
5429
- #: src/admin.php:800
5430
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
5431
  msgstr ""
5432
 
5433
- #: src/addons/wp-cli.php:115, src/admin.php:797
5434
  msgid "If you exclude both the database and the files, then you have excluded everything!"
5435
  msgstr ""
5436
 
@@ -5442,11 +5446,11 @@ msgstr ""
5442
  msgid "Remote Storage Options"
5443
  msgstr ""
5444
 
5445
- #: src/addons/autobackup.php:338, src/addons/autobackup.php:432
5446
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
5447
  msgstr ""
5448
 
5449
- #: src/addons/autobackup.php:298, src/addons/autobackup.php:1080
5450
  msgid "Remember this choice for next time (you will still have the chance to change it)"
5451
  msgstr ""
5452
 
@@ -5459,15 +5463,15 @@ msgstr ""
5459
  msgid "You can send a backup to more than one destination with an add-on."
5460
  msgstr ""
5461
 
5462
- #: src/admin.php:3414
5463
  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."
5464
  msgstr ""
5465
 
5466
- #: src/admin.php:3281
5467
  msgid "(%s%%, file %s of %s)"
5468
  msgstr ""
5469
 
5470
- #: src/addons/autobackup.php:299, src/addons/autobackup.php:1085,
5471
  #: src/addons/lockadmin.php:160
5472
  msgid "Read more about how this works..."
5473
  msgstr ""
@@ -5500,15 +5504,15 @@ msgstr ""
5500
  msgid "Backup is of: %s."
5501
  msgstr ""
5502
 
5503
- #: src/admin.php:892
5504
  msgid "%s settings test result:"
5505
  msgstr ""
5506
 
5507
- #: src/admin.php:4138, src/admin.php:4140
5508
  msgid "(Not finished)"
5509
  msgstr ""
5510
 
5511
- #: src/admin.php:4140
5512
  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."
5513
  msgstr ""
5514
 
@@ -5520,73 +5524,73 @@ msgstr ""
5520
  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)."
5521
  msgstr ""
5522
 
5523
- #: src/admin.php:3382
5524
  msgid "Job ID: %s"
5525
  msgstr ""
5526
 
5527
- #: src/admin.php:3362
5528
  msgid "last activity: %ss ago"
5529
  msgstr ""
5530
 
5531
- #: src/admin.php:3361
5532
  msgid "next resumption: %d (after %ss)"
5533
  msgstr ""
5534
 
5535
- #: src/admin.php:3344, src/central/bootstrap.php:444,
5536
  #: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
5537
  #: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
5538
  msgid "Unknown"
5539
  msgstr ""
5540
 
5541
- #: src/admin.php:3295
5542
  msgid "Backup finished"
5543
  msgstr ""
5544
 
5545
- #: src/admin.php:3290
5546
  msgid "Waiting until scheduled time to retry because of errors"
5547
  msgstr ""
5548
 
5549
- #: src/admin.php:3286
5550
  msgid "Pruning old backup sets"
5551
  msgstr ""
5552
 
5553
- #: src/admin.php:3273
5554
  msgid "Uploading files to remote storage"
5555
  msgstr ""
5556
 
5557
- #: src/admin.php:3342
5558
  msgid "Encrypted database"
5559
  msgstr ""
5560
 
5561
- #: src/admin.php:3334
5562
  msgid "Encrypting database"
5563
  msgstr ""
5564
 
5565
- #: src/admin.php:3308
5566
  msgid "Created database backup"
5567
  msgstr ""
5568
 
5569
- #: src/admin.php:3321
5570
  msgid "table: %s"
5571
  msgstr ""
5572
 
5573
- #: src/admin.php:3319
5574
  msgid "Creating database backup"
5575
  msgstr ""
5576
 
5577
- #: src/admin.php:3264
5578
  msgid "Created file backup zips"
5579
  msgstr ""
5580
 
5581
- #: src/admin.php:3251
5582
  msgid "Creating file backup zips"
5583
  msgstr ""
5584
 
5585
- #: src/admin.php:3246
5586
  msgid "Backup begun"
5587
  msgstr ""
5588
 
5589
- #: src/admin.php:1149
5590
  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."
5591
  msgstr ""
5592
 
@@ -5602,11 +5606,11 @@ msgstr ""
5602
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
5603
  msgstr ""
5604
 
5605
- #: src/class-updraftplus.php:3055
5606
  msgid "The backup has not finished; a resumption is scheduled"
5607
  msgstr ""
5608
 
5609
- #: src/class-updraftplus.php:2076
5610
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
5611
  msgstr ""
5612
 
@@ -5615,56 +5619,56 @@ msgstr ""
5615
  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)."
5616
  msgstr ""
5617
 
5618
- #: src/admin.php:2636
5619
  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)."
5620
  msgstr ""
5621
 
5622
- #: src/addons/autobackup.php:1099, src/admin.php:846
5623
  msgid "Proceed with update"
5624
  msgstr ""
5625
 
5626
- #: src/addons/autobackup.php:1092
5627
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
5628
  msgstr ""
5629
 
5630
- #: src/addons/autobackup.php:139, src/addons/autobackup.php:1041
5631
  msgid "UpdraftPlus Automatic Backups"
5632
  msgstr ""
5633
 
5634
- #: src/addons/autobackup.php:524
5635
  msgid "Errors have occurred:"
5636
  msgstr ""
5637
 
5638
- #: src/addons/autobackup.php:496
5639
  msgid "Creating backup with UpdraftPlus..."
5640
  msgstr ""
5641
 
5642
- #: src/addons/autobackup.php:441, src/addons/autobackup.php:571,
5643
- #: src/addons/autobackup.php:622
5644
  msgid "Automatic Backup"
5645
  msgstr ""
5646
 
5647
- #: src/addons/autobackup.php:432
5648
  msgid "Creating database backup with UpdraftPlus..."
5649
  msgstr ""
5650
 
5651
- #: src/addons/autobackup.php:398
5652
  msgid "themes"
5653
  msgstr ""
5654
 
5655
- #: src/addons/autobackup.php:391
5656
  msgid "plugins"
5657
  msgstr ""
5658
 
5659
- #: src/addons/autobackup.php:342, src/addons/autobackup.php:439
5660
  msgid "Starting automatic backup..."
5661
  msgstr ""
5662
 
5663
- #: src/addons/autobackup.php:338
5664
  msgid "Creating %s and database backup with UpdraftPlus..."
5665
  msgstr ""
5666
 
5667
- #: src/addons/autobackup.php:296
5668
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
5669
  msgstr ""
5670
 
@@ -5695,84 +5699,84 @@ msgstr ""
5695
  msgid "Support"
5696
  msgstr ""
5697
 
5698
- #: src/class-updraftplus.php:4370
5699
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
5700
  msgstr ""
5701
 
5702
- #: src/class-updraftplus.php:4362
5703
  msgid "This database backup is missing core WordPress tables: %s"
5704
  msgstr ""
5705
 
5706
- #: src/class-updraftplus.php:4108
5707
  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."
5708
  msgstr ""
5709
 
5710
- #: src/class-updraftplus.php:4107, src/class-updraftplus.php:4114
5711
  msgid "%s version: %s"
5712
  msgstr ""
5713
 
5714
- #: src/class-updraftplus.php:3983
5715
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
5716
  msgstr ""
5717
 
5718
- #: src/addons/autobackup.php:1067, src/admin.php:974,
5719
  #: src/includes/updraftplus-notices.php:171
5720
  msgid "Be safe with an automatic backup"
5721
  msgstr ""
5722
 
5723
- #: src/admin.php:2589
5724
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
5725
  msgstr ""
5726
 
5727
- #: src/admin.php:838
5728
  msgid "The file was uploaded."
5729
  msgstr ""
5730
 
5731
- #: src/admin.php:837
5732
  msgid "Unknown server response status:"
5733
  msgstr ""
5734
 
5735
- #: src/admin.php:836
5736
  msgid "Unknown server response:"
5737
  msgstr ""
5738
 
5739
- #: src/admin.php:835
5740
  msgid "This decryption key will be attempted:"
5741
  msgstr ""
5742
 
5743
- #: src/admin.php:834
5744
  msgid "Follow this link to attempt decryption and download the database file to your computer."
5745
  msgstr ""
5746
 
5747
- #: src/admin.php:833
5748
  msgid "Upload error"
5749
  msgstr ""
5750
 
5751
- #: src/admin.php:832
5752
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
5753
  msgstr ""
5754
 
5755
- #: src/admin.php:831
5756
  msgid "Upload error:"
5757
  msgstr ""
5758
 
5759
- #: src/admin.php:830
5760
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
5761
  msgstr ""
5762
 
5763
- #: src/admin.php:821
5764
  msgid "Download to your computer"
5765
  msgstr ""
5766
 
5767
- #: src/admin.php:820
5768
  msgid "Delete from your web server"
5769
  msgstr ""
5770
 
5771
- #: src/admin.php:4110
5772
  msgid "You appear to be missing one or more archives from this multi-archive set."
5773
  msgstr ""
5774
 
5775
- #: src/admin.php:4107
5776
  msgid "(%d archive(s) in set)."
5777
  msgstr ""
5778
 
@@ -5784,15 +5788,15 @@ msgstr ""
5784
  msgid "Error: the server sent us a response (JSON) which we did not understand."
5785
  msgstr ""
5786
 
5787
- #: src/admin.php:811
5788
  msgid "Warnings:"
5789
  msgstr ""
5790
 
5791
- #: src/admin.php:810
5792
  msgid "Error: the server sent an empty response."
5793
  msgstr ""
5794
 
5795
- #: src/admin.php:2315
5796
  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?"
5797
  msgstr ""
5798
 
@@ -5866,7 +5870,7 @@ msgstr ""
5866
  msgid "Looking for %s archive: file name: %s"
5867
  msgstr ""
5868
 
5869
- #: src/addons/wp-cli.php:784, src/admin.php:4568
5870
  msgid "Final checks"
5871
  msgstr ""
5872
 
@@ -5878,11 +5882,11 @@ msgstr ""
5878
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5879
  msgstr ""
5880
 
5881
- #: src/admin.php:3815
5882
  msgid "Your wp-content directory server path: %s"
5883
  msgstr ""
5884
 
5885
- #: src/admin.php:827
5886
  msgid "Raw backup history"
5887
  msgstr ""
5888
 
@@ -5890,7 +5894,7 @@ msgstr ""
5890
  msgid "Show raw backup and file list"
5891
  msgstr ""
5892
 
5893
- #: src/admin.php:809
5894
  msgid "Processing files - please wait..."
5895
  msgstr ""
5896
 
@@ -5899,11 +5903,11 @@ msgstr ""
5899
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
5900
  msgstr ""
5901
 
5902
- #: src/class-updraftplus.php:3991
5903
  msgid "Failed to open database file."
5904
  msgstr ""
5905
 
5906
- #: src/admin.php:5152
5907
  msgid "Known backups (raw)"
5908
  msgstr ""
5909
 
@@ -5921,17 +5925,17 @@ msgstr ""
5921
 
5922
  #: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
5923
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
5924
- #: src/admin.php:1149, src/admin.php:2594, src/backup.php:3431,
5925
- #: src/class-updraftplus.php:4230, src/class-updraftplus.php:4230,
5926
  #: src/updraftplus.php:157
5927
  msgid "Go here for more information."
5928
  msgstr ""
5929
 
5930
- #: src/admin.php:808
5931
  msgid "Some files are still downloading or being processed - please wait."
5932
  msgstr ""
5933
 
5934
- #: src/class-updraftplus.php:4078, src/class-updraftplus.php:4098
5935
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
5936
  msgstr ""
5937
 
@@ -5973,7 +5977,7 @@ msgstr ""
5973
 
5974
  #: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
5975
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
5976
- #: src/methods/googledrive.php:1112, src/methods/openstack-base.php:455,
5977
  #: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
5978
  #: src/methods/stream-base.php:335
5979
  msgid "%s Error"
@@ -5983,7 +5987,7 @@ msgstr ""
5983
  msgid "%s error - failed to upload file"
5984
  msgstr ""
5985
 
5986
- #: src/class-updraftplus.php:1254, src/methods/cloudfiles.php:211
5987
  msgid "%s error - failed to re-assemble chunks"
5988
  msgstr ""
5989
 
@@ -5998,24 +6002,24 @@ msgid "%s authentication failed"
5998
  msgstr ""
5999
 
6000
  #: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
6001
- #: src/admin.php:2286, src/admin.php:2307, src/admin.php:2315,
6002
- #: src/class-updraftplus.php:996, src/class-updraftplus.php:1002,
6003
- #: src/class-updraftplus.php:3964, src/class-updraftplus.php:3966,
6004
- #: src/class-updraftplus.php:4131, src/class-updraftplus.php:4138,
6005
- #: src/class-updraftplus.php:4209, src/methods/googledrive.php:395,
6006
  #: src/methods/s3.php:341
6007
  msgid "Error: %s"
6008
  msgstr ""
6009
 
6010
- #: src/admin.php:3734
6011
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6012
  msgstr ""
6013
 
6014
- #: src/admin.php:3732
6015
  msgid "Backup directory specified does <b>not</b> exist."
6016
  msgstr ""
6017
 
6018
- #: src/admin.php:3396, src/admin.php:3683
6019
  msgid "Warning: %s"
6020
  msgstr ""
6021
 
@@ -6039,11 +6043,11 @@ msgstr ""
6039
  msgid "Warnings encountered:"
6040
  msgstr ""
6041
 
6042
- #: src/class-updraftplus.php:3039
6043
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6044
  msgstr ""
6045
 
6046
- #: src/class-updraftplus.php:873
6047
  msgid "Your free disk space is very low - only %s Mb remain"
6048
  msgstr ""
6049
 
@@ -6095,7 +6099,7 @@ msgstr ""
6095
  msgid "Please supply the requested information, and then continue."
6096
  msgstr ""
6097
 
6098
- #: src/class-updraftplus.php:4149, src/restorer.php:2233
6099
  msgid "Site information:"
6100
  msgstr ""
6101
 
@@ -6103,11 +6107,11 @@ msgstr ""
6103
  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."
6104
  msgstr ""
6105
 
6106
- #: src/admin.php:2589, src/class-updraftplus.php:4142, src/restorer.php:2647
6107
  msgid "Warning:"
6108
  msgstr ""
6109
 
6110
- #: src/class-updraftplus.php:4131, src/class-updraftplus.php:4134,
6111
  #: src/restorer.php:530
6112
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6113
  msgstr ""
@@ -6116,27 +6120,27 @@ msgstr ""
6116
  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."
6117
  msgstr ""
6118
 
6119
- #: src/addons/azure.php:601, src/admin.php:3907,
6120
  #: src/methods/updraftvault.php:306
6121
  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."
6122
  msgstr ""
6123
 
6124
- #: src/admin.php:847, src/includes/updraftplus-tour.php:89
6125
  msgid "Close"
6126
  msgstr ""
6127
 
6128
- #: src/addons/autobackup.php:344, src/addons/autobackup.php:436,
6129
- #: src/admin.php:801, src/methods/remotesend.php:69,
6130
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:228,
6131
  #: src/methods/remotesend.php:245, src/methods/remotesend.php:293
6132
  msgid "Unexpected response:"
6133
  msgstr ""
6134
 
6135
- #: src/addons/reporting.php:523, src/admin.php:796
6136
  msgid "To send to more than one address, separate each address with a comma."
6137
  msgstr ""
6138
 
6139
- #: src/admin.php:825
6140
  msgid "PHP information"
6141
  msgstr ""
6142
 
@@ -6160,7 +6164,7 @@ msgstr ""
6160
  msgid "Also delete from remote storage"
6161
  msgstr ""
6162
 
6163
- #: src/admin.php:3085
6164
  msgid "Latest UpdraftPlus.com news:"
6165
  msgstr ""
6166
 
@@ -6188,7 +6192,7 @@ msgstr ""
6188
  msgid "News"
6189
  msgstr ""
6190
 
6191
- #: src/admin.php:1693, src/includes/class-wpadmin-commands.php:506
6192
  msgid "Backup set not found"
6193
  msgstr ""
6194
 
@@ -6210,7 +6214,7 @@ msgstr ""
6210
  msgid "Blog link"
6211
  msgstr ""
6212
 
6213
- #: src/admin.php:891
6214
  msgid "Testing %s Settings..."
6215
  msgstr ""
6216
 
@@ -6219,11 +6223,11 @@ msgstr ""
6219
  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."
6220
  msgstr ""
6221
 
6222
- #: src/admin.php:1165
6223
  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."
6224
  msgstr ""
6225
 
6226
- #: src/admin.php:1165
6227
  msgid "Notice"
6228
  msgstr ""
6229
 
@@ -6231,11 +6235,11 @@ msgstr ""
6231
  msgid "Errors encountered:"
6232
  msgstr ""
6233
 
6234
- #: src/admin.php:793
6235
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
6236
  msgstr ""
6237
 
6238
- #: src/admin.php:807
6239
  msgid "Begun looking for this entity"
6240
  msgstr ""
6241
 
@@ -6259,7 +6263,7 @@ msgstr ""
6259
  msgid "Time taken (seconds):"
6260
  msgstr ""
6261
 
6262
- #: src/addons/migrator.php:1302, src/admin.php:812
6263
  msgid "Errors:"
6264
  msgstr ""
6265
 
@@ -6358,7 +6362,7 @@ msgid "Directory path"
6358
  msgstr ""
6359
 
6360
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
6361
- #: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2943,
6362
  #: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
6363
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
6364
  msgid "Password"
@@ -6426,8 +6430,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
6426
  msgstr ""
6427
 
6428
  #: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
6429
- #: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3462,
6430
- #: src/admin.php:3498, src/admin.php:3508, src/methods/addon-base-v2.php:313,
6431
  #: src/methods/stream-base.php:356
6432
  msgid "Failed"
6433
  msgstr ""
@@ -6452,7 +6456,7 @@ msgstr ""
6452
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
6453
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
6454
  #: src/methods/addon-base-v2.php:285, src/methods/ftp.php:42,
6455
- #: src/methods/googledrive.php:194, src/methods/googledrive.php:196,
6456
  #: src/methods/remotesend.php:278, src/methods/stream-base.php:27,
6457
  #: src/methods/stream-base.php:163, src/methods/stream-base.php:169,
6458
  #: src/methods/stream-base.php:203, src/methods/stream-base.php:278
@@ -6649,8 +6653,8 @@ msgstr ""
6649
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
6650
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
6651
  #: src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530,
6652
- #: src/addons/webdav.php:253, src/admin.php:867,
6653
- #: src/includes/class-remote-send.php:453, src/methods/addon-base-v2.php:305,
6654
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
6655
  #: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
6656
  #: src/methods/ftp.php:412, src/methods/ftp.php:416,
@@ -6692,11 +6696,11 @@ msgstr ""
6692
  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."
6693
  msgstr ""
6694
 
6695
- #: src/admin.php:890, src/methods/backup-module.php:315
6696
  msgid "Test %s Settings"
6697
  msgstr ""
6698
 
6699
- #: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
6700
  #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
6701
  msgid "Error opening local file: Failed to download"
6702
  msgstr ""
@@ -6713,8 +6717,8 @@ msgid "%s Error: Failed to upload"
6713
  msgstr ""
6714
 
6715
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
6716
- #: src/class-updraftplus.php:1139, src/methods/cloudfiles.php:130,
6717
- #: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
6718
  msgid "%s Error: Failed to open local file"
6719
  msgstr ""
6720
 
@@ -6730,59 +6734,59 @@ msgstr ""
6730
  msgid "Cloud Files authentication failed"
6731
  msgstr ""
6732
 
6733
- #: src/methods/googledrive.php:1265
6734
  msgid "Authenticate with Google"
6735
  msgstr ""
6736
 
6737
  #: src/addons/googlecloud.php:1027, src/addons/onedrive.php:1181,
6738
- #: src/methods/googledrive.php:1229
6739
  msgid "Client Secret"
6740
  msgstr ""
6741
 
6742
- #: src/addons/googlecloud.php:1022, src/methods/googledrive.php:1226
6743
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
6744
  msgstr ""
6745
 
6746
  #: src/addons/googlecloud.php:1019, src/addons/onedrive.php:1177,
6747
- #: src/methods/googledrive.php:1225
6748
  msgid "Client ID"
6749
  msgstr ""
6750
 
6751
- #: src/methods/googledrive.php:1199
6752
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
6753
  msgstr ""
6754
 
6755
- #: src/addons/googlecloud.php:997, src/methods/googledrive.php:1199
6756
  msgid "Select 'Web Application' as the application type."
6757
  msgstr ""
6758
 
6759
- #: src/addons/googlecloud.php:995, src/methods/googledrive.php:1197
6760
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
6761
  msgstr ""
6762
 
6763
  #: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
6764
- #: src/addons/googlecloud.php:866, src/methods/googledrive.php:572,
6765
- #: src/methods/googledrive.php:573, src/methods/googledrive.php:583,
6766
- #: src/methods/googledrive.php:584
6767
  msgid "Account is not authorized."
6768
  msgstr ""
6769
 
6770
- #: src/methods/googledrive.php:494, src/methods/googledrive.php:540,
6771
- #: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
6772
  #: src/methods/stream-base.php:219
6773
  msgid "Failed to upload to %s"
6774
  msgstr ""
6775
 
6776
- #: src/methods/googledrive.php:523
6777
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
6778
  msgstr ""
6779
 
6780
- #: src/methods/googledrive.php:616, src/methods/googledrive.php:652
6781
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
6782
  msgstr ""
6783
 
6784
  #: src/addons/googlecloud.php:718, src/addons/onedrive.php:939,
6785
- #: src/methods/googledrive.php:467
6786
  msgid "you have authenticated your %s account."
6787
  msgstr ""
6788
 
@@ -6790,21 +6794,21 @@ msgstr ""
6790
  #: src/addons/onedrive.php:939, src/addons/sftp.php:591,
6791
  #: src/addons/sftp.php:595, src/addons/wp-cli.php:515,
6792
  #: src/methods/addon-base-v2.php:327, src/methods/cloudfiles.php:575,
6793
- #: src/methods/googledrive.php:467, src/methods/openstack-base.php:530,
6794
  #: src/methods/s3.php:1155, src/methods/stream-base.php:372
6795
  msgid "Success"
6796
  msgstr ""
6797
 
6798
  #: src/addons/onedrive.php:893, src/methods/dropbox.php:844,
6799
- #: src/methods/dropbox.php:853, src/methods/googledrive.php:431
6800
  msgid "Your %s quota usage: %s %% used, %s available"
6801
  msgstr ""
6802
 
6803
- #: src/addons/googlecloud.php:444, src/methods/googledrive.php:401
6804
  msgid "Authorization failed"
6805
  msgstr ""
6806
 
6807
- #: src/addons/googlecloud.php:436, src/methods/googledrive.php:393
6808
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
6809
  msgstr ""
6810
 
@@ -6827,8 +6831,8 @@ msgstr ""
6827
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
6828
  msgstr ""
6829
 
6830
- #: src/admin.php:3466, src/admin.php:3501, src/admin.php:3505,
6831
- #: src/includes/class-remote-send.php:326,
6832
  #: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
6833
  #: src/restorer.php:2888, src/restorer.php:2993
6834
  msgid "OK"
@@ -6846,13 +6850,13 @@ msgstr ""
6846
  msgid "will restore as:"
6847
  msgstr ""
6848
 
6849
- #: src/class-updraftplus.php:4120, src/restorer.php:2215,
6850
  #: src/restorer.php:2304, src/restorer.php:2330
6851
  msgid "Old table prefix:"
6852
  msgstr ""
6853
 
6854
  #: src/addons/reporting.php:72, src/addons/reporting.php:181,
6855
- #: src/backup.php:1135, src/class-updraftplus.php:4047
6856
  msgid "Backup of:"
6857
  msgstr ""
6858
 
@@ -6940,39 +6944,39 @@ msgstr ""
6940
  msgid "Archive is expected to be size:"
6941
  msgstr ""
6942
 
6943
- #: src/admin.php:4516
6944
  msgid "If making a request for support, please include this information:"
6945
  msgstr ""
6946
 
6947
- #: src/admin.php:4515
6948
  msgid "ABORT: Could not find the information on which entities to restore."
6949
  msgstr ""
6950
 
6951
- #: src/addons/wp-cli.php:647, src/admin.php:4494
6952
  msgid "UpdraftPlus Restoration: Progress"
6953
  msgstr ""
6954
 
6955
- #: src/admin.php:4486
6956
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
6957
  msgstr ""
6958
 
6959
- #: src/admin.php:4168
6960
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
6961
  msgstr ""
6962
 
6963
- #: src/admin.php:4266
6964
  msgid "Delete this backup set"
6965
  msgstr ""
6966
 
6967
- #: src/admin.php:3919
6968
  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."
6969
  msgstr ""
6970
 
6971
- #: src/admin.php:3916
6972
  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."
6973
  msgstr ""
6974
 
6975
- #: src/admin.php:3914
6976
  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)."
6977
  msgstr ""
6978
 
@@ -7013,19 +7017,19 @@ msgstr ""
7013
  msgid "Use the server's SSL certificates"
7014
  msgstr ""
7015
 
7016
- #: src/admin.php:3736
7017
  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."
7018
  msgstr ""
7019
 
7020
- #: src/admin.php:3736
7021
  msgid "or, to reset this option"
7022
  msgstr ""
7023
 
7024
- #: src/admin.php:3736
7025
  msgid "Follow this link to attempt to create the directory and set the permissions"
7026
  msgstr ""
7027
 
7028
- #: src/admin.php:3728
7029
  msgid "Backup directory specified is writable, which is good."
7030
  msgstr ""
7031
 
@@ -7057,16 +7061,16 @@ msgstr ""
7057
  msgid "Advanced / Debugging Settings"
7058
  msgstr ""
7059
 
7060
- #: src/admin.php:824
7061
  msgid "Requesting start of backup..."
7062
  msgstr ""
7063
 
7064
- #: src/addons/morefiles.php:311, src/admin.php:841
7065
  msgid "Cancel"
7066
  msgstr ""
7067
 
7068
  #: src/addons/incremental.php:235, src/addons/reporting.php:245,
7069
- #: src/admin.php:4002
7070
  msgid "None"
7071
  msgstr ""
7072
 
@@ -7082,7 +7086,7 @@ msgstr ""
7082
  msgid "Database encryption phrase"
7083
  msgstr ""
7084
 
7085
- #: src/admin.php:2933, src/templates/wp-admin/settings/form-contents.php:255,
7086
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7087
  msgid "Email"
7088
  msgstr ""
@@ -7095,7 +7099,7 @@ msgstr ""
7095
  msgid "Exclude these:"
7096
  msgstr ""
7097
 
7098
- #: src/admin.php:3815
7099
  msgid "Any other directories found inside wp-content"
7100
  msgstr ""
7101
 
@@ -7111,46 +7115,46 @@ msgstr ""
7111
  msgid "To fix the time at which a backup should take place,"
7112
  msgstr ""
7113
 
7114
- #: src/addons/incremental.php:244, src/admin.php:3722
7115
  msgid "Monthly"
7116
  msgstr ""
7117
 
7118
- #: src/addons/incremental.php:243, src/admin.php:3721
7119
  msgid "Fortnightly"
7120
  msgstr ""
7121
 
7122
- #: src/addons/incremental.php:242, src/admin.php:3720
7123
  msgid "Weekly"
7124
  msgstr ""
7125
 
7126
- #: src/addons/incremental.php:241, src/admin.php:3719
7127
  msgid "Daily"
7128
  msgstr ""
7129
 
7130
- #: src/admin.php:849, src/admin.php:3697
7131
  msgid "Download log file"
7132
  msgstr ""
7133
 
7134
- #: src/admin.php:3569
7135
  msgid "The folder exists, but your webserver does not have permission to write to it."
7136
  msgstr ""
7137
 
7138
- #: src/admin.php:3564
7139
  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"
7140
  msgstr ""
7141
 
7142
- #: src/admin.php:3550
7143
  msgid "The request to the filesystem to create the directory failed."
7144
  msgstr ""
7145
 
7146
- #: src/admin.php:842, src/admin.php:3459, src/admin.php:3493,
7147
- #: src/admin.php:4266, src/includes/class-remote-send.php:543,
7148
  #: src/templates/wp-admin/settings/existing-backups-table.php:155,
7149
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7150
  msgid "Delete"
7151
  msgstr ""
7152
 
7153
- #: src/admin.php:3413
7154
  msgid "show log"
7155
  msgstr ""
7156
 
@@ -7211,7 +7215,7 @@ msgstr ""
7211
  msgid "Yes"
7212
  msgstr ""
7213
 
7214
- #: src/admin.php:5364, src/admin.php:5368,
7215
  #: src/templates/wp-admin/advanced/site-info.php:45,
7216
  #: src/templates/wp-admin/advanced/site-info.php:51,
7217
  #: src/templates/wp-admin/advanced/site-info.php:58,
@@ -7251,7 +7255,7 @@ msgstr ""
7251
  msgid "Do read this helpful article of useful things to know before restoring."
7252
  msgstr ""
7253
 
7254
- #: src/class-updraftplus.php:4081
7255
  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"
7256
  msgstr ""
7257
 
@@ -7292,7 +7296,7 @@ msgstr ""
7292
  msgid "Delete backup set"
7293
  msgstr ""
7294
 
7295
- #: src/admin.php:823
7296
  msgid "Download error: the server sent us a response which we did not understand."
7297
  msgstr ""
7298
 
@@ -7301,22 +7305,22 @@ msgstr ""
7301
  #: src/addons/migrator.php:1268, src/addons/migrator.php:1317,
7302
  #: src/addons/migrator.php:1555, src/addons/s3-enhanced.php:164,
7303
  #: src/addons/s3-enhanced.php:169, src/addons/s3-enhanced.php:171,
7304
- #: src/addons/sftp.php:911, src/addons/webdav.php:203, src/admin.php:89,
7305
- #: src/admin.php:815, src/includes/class-remote-send.php:265,
7306
- #: src/includes/class-remote-send.php:292,
7307
- #: src/includes/class-remote-send.php:298,
7308
- #: src/includes/class-remote-send.php:361,
7309
- #: src/includes/class-remote-send.php:420,
7310
- #: src/includes/class-remote-send.php:461,
7311
- #: src/includes/class-remote-send.php:471,
7312
- #: src/includes/class-remote-send.php:476, src/methods/remotesend.php:74,
7313
  #: src/methods/remotesend.php:242, src/methods/remotesend.php:298,
7314
  #: src/methods/updraftvault.php:527, src/restorer.php:228,
7315
  #: src/restorer.php:256, src/restorer.php:1921
7316
  msgid "Error:"
7317
  msgstr ""
7318
 
7319
- #: src/admin.php:806
7320
  msgid "calculating..."
7321
  msgstr ""
7322
 
@@ -7339,15 +7343,15 @@ msgstr ""
7339
  msgid "This is a count of the contents of your Updraft directory"
7340
  msgstr ""
7341
 
7342
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:194,
7343
- #: src/methods/googledrive.php:196, src/methods/googledrive.php:467,
7344
- #: src/methods/googledrive.php:494, src/methods/googledrive.php:523,
7345
- #: src/methods/googledrive.php:530, src/methods/googledrive.php:540,
7346
- #: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
7347
- #: src/methods/googledrive.php:1185, src/methods/googledrive.php:1192,
7348
- #: src/methods/googledrive.php:1192, src/methods/googledrive.php:1225,
7349
- #: src/methods/googledrive.php:1229, src/methods/googledrive.php:1240,
7350
- #: src/methods/googledrive.php:1251
7351
  msgid "Google Drive"
7352
  msgstr ""
7353
 
@@ -7366,7 +7370,7 @@ msgstr ""
7366
  msgid "More tasks:"
7367
  msgstr ""
7368
 
7369
- #: src/admin.php:3112
7370
  msgid "Download most recently modified log file"
7371
  msgstr ""
7372
 
@@ -7374,18 +7378,18 @@ msgstr ""
7374
  msgid "(Nothing yet logged)"
7375
  msgstr ""
7376
 
7377
- #: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
7378
- #: src/admin.php:3068, src/admin.php:3074,
7379
  #: src/templates/wp-admin/settings/take-backup.php:64
7380
  msgid "Last log message"
7381
  msgstr ""
7382
 
7383
- #: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
7384
- #: src/admin.php:4168
7385
  msgid "Restore"
7386
  msgstr ""
7387
 
7388
- #: src/admin.php:840, src/templates/wp-admin/settings/take-backup.php:50
7389
  msgid "Backup Now"
7390
  msgstr ""
7391
 
@@ -7394,8 +7398,8 @@ msgid "Time now"
7394
  msgstr ""
7395
 
7396
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
7397
- #: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:3977,
7398
- #: src/admin.php:4030, src/includes/class-remote-send.php:330,
7399
  #: src/includes/class-wpadmin-commands.php:157,
7400
  #: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
7401
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
@@ -7404,7 +7408,7 @@ msgstr ""
7404
  msgid "Database"
7405
  msgstr ""
7406
 
7407
- #: src/admin.php:332, src/admin.php:5159,
7408
  #: src/templates/wp-admin/settings/take-backup.php:23
7409
  msgid "Files"
7410
  msgstr ""
@@ -7413,12 +7417,12 @@ msgstr ""
7413
  msgid "Next scheduled backups"
7414
  msgstr ""
7415
 
7416
- #: src/admin.php:311
7417
  msgid "At the same time as the files backup"
7418
  msgstr ""
7419
 
7420
- #: src/admin.php:301, src/admin.php:322, src/admin.php:329, src/admin.php:374,
7421
- #: src/admin.php:405
7422
  msgid "Nothing currently scheduled"
7423
  msgstr ""
7424
 
@@ -7430,15 +7434,15 @@ msgstr ""
7430
  msgid "JavaScript warning"
7431
  msgstr ""
7432
 
7433
- #: src/admin.php:826, src/admin.php:3149
7434
  msgid "Delete Old Directories"
7435
  msgstr ""
7436
 
7437
- #: src/admin.php:2636
7438
  msgid "Current limit is:"
7439
  msgstr ""
7440
 
7441
- #: src/admin.php:2611
7442
  msgid "Your backup has been restored."
7443
  msgstr ""
7444
 
@@ -7454,69 +7458,69 @@ msgstr ""
7454
  msgid "UpdraftPlus.Com"
7455
  msgstr ""
7456
 
7457
- #: src/admin.php:5051
7458
  msgid "Your settings have been wiped."
7459
  msgstr ""
7460
 
7461
- #: src/admin.php:2571
7462
  msgid "Backup directory successfully created."
7463
  msgstr ""
7464
 
7465
- #: src/admin.php:2564
7466
  msgid "Backup directory could not be created"
7467
  msgstr ""
7468
 
7469
- #: src/admin.php:3429
7470
  msgid "Old directory removal failed for some reason. You may want to do this manually."
7471
  msgstr ""
7472
 
7473
- #: src/admin.php:3427
7474
  msgid "Old directories successfully removed."
7475
  msgstr ""
7476
 
7477
- #: src/admin.php:3424, src/admin.php:3424
7478
  msgid "Remove old directories"
7479
  msgstr ""
7480
 
7481
  #: src/addons/migrator.php:340, src/addons/migrator.php:355,
7482
- #: src/admin.php:2512, src/admin.php:2522, src/admin.php:2531,
7483
- #: src/admin.php:2573, src/admin.php:3431
7484
  msgid "Return to UpdraftPlus Configuration"
7485
  msgstr ""
7486
 
7487
- #: src/admin.php:819, src/admin.php:2512, src/admin.php:2522,
7488
- #: src/admin.php:2531, src/admin.php:2573, src/admin.php:3431,
7489
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7490
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7491
  msgid "Actions"
7492
  msgstr ""
7493
 
7494
- #: src/admin.php:2407
7495
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
7496
  msgstr ""
7497
 
7498
- #: src/admin.php:2307
7499
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
7500
  msgstr ""
7501
 
7502
- #: src/admin.php:2203
7503
  msgid "No local copy present."
7504
  msgstr ""
7505
 
7506
- #: src/admin.php:2200
7507
  msgid "Download in progress"
7508
  msgstr ""
7509
 
7510
- #: src/admin.php:818, src/admin.php:2189
7511
  msgid "File ready."
7512
  msgstr ""
7513
 
7514
- #: src/admin.php:2170
7515
  msgid "Download failed"
7516
  msgstr ""
7517
 
7518
- #: src/addons/wp-cli.php:518, src/admin.php:816,
7519
- #: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
7520
  #: src/includes/class-filesystem-functions.php:368,
7521
  #: src/includes/class-storage-methods-interface.php:324,
7522
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
@@ -7526,42 +7530,42 @@ msgstr ""
7526
  msgid "Error"
7527
  msgstr ""
7528
 
7529
- #: src/admin.php:1957
7530
  msgid "Could not find that job - perhaps it has already finished?"
7531
  msgstr ""
7532
 
7533
- #: src/admin.php:1949
7534
  msgid "Job deleted"
7535
  msgstr ""
7536
 
7537
- #: src/admin.php:2048, src/includes/class-commands.php:833
7538
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
7539
  msgstr ""
7540
 
7541
- #: src/admin.php:893
7542
  msgid "Nothing yet logged"
7543
  msgstr ""
7544
 
7545
- #: src/admin.php:1161
7546
  msgid "Please consult this FAQ if you have problems backing up."
7547
  msgstr ""
7548
 
7549
- #: src/admin.php:1161
7550
  msgid "Your website is hosted using the %s web server."
7551
  msgstr ""
7552
 
7553
- #: src/admin.php:1157
7554
  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."
7555
  msgstr ""
7556
 
7557
- #: src/admin.php:1153
7558
  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."
7559
  msgstr ""
7560
 
7561
- #: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1145,
7562
- #: src/admin.php:1149, src/admin.php:1153, src/admin.php:1157,
7563
- #: src/admin.php:1161, src/admin.php:1170, src/admin.php:3907,
7564
- #: src/admin.php:3914, src/admin.php:3916, src/admin.php:5342,
7565
  #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
7566
  #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
7567
  #: src/methods/s3.php:859, src/methods/s3.php:863,
@@ -7572,11 +7576,11 @@ msgstr ""
7572
  msgid "Warning"
7573
  msgstr ""
7574
 
7575
- #: src/admin.php:1090
7576
  msgid "Add-Ons / Pro Support"
7577
  msgstr ""
7578
 
7579
- #: src/admin.php:677, src/admin.php:1088, src/admin.php:2798
7580
  msgid "Settings"
7581
  msgstr ""
7582
 
@@ -7596,8 +7600,8 @@ msgstr ""
7596
  msgid "Like UpdraftPlus and can spare one minute?"
7597
  msgstr ""
7598
 
7599
- #: src/addons/azure.php:268, src/class-updraftplus.php:3769,
7600
- #: src/methods/googledrive.php:1112, src/methods/s3.php:341
7601
  msgid "File not found"
7602
  msgstr ""
7603
 
@@ -7605,12 +7609,12 @@ msgstr ""
7605
  msgid "The decryption key used:"
7606
  msgstr ""
7607
 
7608
- #: src/class-updraftplus.php:3976,
7609
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
7610
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
7611
  msgstr ""
7612
 
7613
- #: src/class-updraftplus.php:3964,
7614
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
7615
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
7616
  msgstr ""
@@ -7619,15 +7623,15 @@ msgstr ""
7619
  msgid "Could not open the backup file for writing"
7620
  msgstr ""
7621
 
7622
- #: src/class-updraftplus.php:3531
7623
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
7624
  msgstr ""
7625
 
7626
- #: src/class-updraftplus.php:3515
7627
  msgid "Could not read the directory"
7628
  msgstr ""
7629
 
7630
- #: src/admin.php:2249, src/backup.php:1359
7631
  msgid "Backup directory (%s) is not writable, or does not exist."
7632
  msgstr ""
7633
 
@@ -7635,11 +7639,11 @@ msgstr ""
7635
  msgid "WordPress backup is complete"
7636
  msgstr ""
7637
 
7638
- #: src/class-updraftplus.php:3051
7639
  msgid "The backup attempt has finished, apparently unsuccessfully"
7640
  msgstr ""
7641
 
7642
- #: src/class-updraftplus.php:3033
7643
  msgid "The backup apparently succeeded and is now complete"
7644
  msgstr ""
7645
 
@@ -7647,37 +7651,37 @@ msgstr ""
7647
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
7648
  msgstr ""
7649
 
7650
- #: src/class-updraftplus.php:2733
7651
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
7652
  msgstr ""
7653
 
7654
- #: src/class-updraftplus.php:1850
7655
  msgid "Others"
7656
  msgstr ""
7657
 
7658
- #: src/addons/multisite.php:500, src/class-updraftplus.php:1835
7659
  msgid "Uploads"
7660
  msgstr ""
7661
 
7662
- #: src/class-updraftplus.php:1834
7663
  msgid "Themes"
7664
  msgstr ""
7665
 
7666
- #: src/class-updraftplus.php:1833
7667
  msgid "Plugins"
7668
  msgstr ""
7669
 
7670
- #: src/class-updraftplus.php:623
7671
  msgid "No log files were found."
7672
  msgstr ""
7673
 
7674
- #: src/admin.php:2119, src/admin.php:2123, src/class-updraftplus.php:618
7675
  msgid "The log file could not be read."
7676
  msgstr ""
7677
 
7678
- #: src/admin.php:1190, src/admin.php:1211, src/admin.php:1230,
7679
- #: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
7680
- #: src/class-updraftplus.php:623, src/class-updraftplus.php:628
7681
  msgid "UpdraftPlus notice:"
7682
  msgstr ""
7683
 
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/admin.php:5374
15
+ msgid "Clone region:"
16
+ msgstr ""
17
+
18
  #: src/udaddons/updraftplus-addons.php:268,
19
  #: src/udaddons/updraftplus-addons.php:280
20
  msgid "go here"
29
  msgid "Authentication"
30
  msgstr ""
31
 
32
+ #: src/admin.php:926
33
  msgid "You must select at least one remote storage destination to upload this backup set to."
34
  msgstr ""
35
 
49
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
50
  msgstr ""
51
 
52
+ #: src/admin.php:953
53
  msgid "UpdraftClone key is required."
54
  msgstr ""
55
 
56
+ #: src/admin.php:944
57
  msgid "The preparation of the clone data has been aborted."
58
  msgstr ""
59
 
73
  msgid "Your database user does not have permission to drop tables"
74
  msgstr ""
75
 
76
+ #: src/admin.php:2962
77
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
78
  msgstr ""
79
 
241
  msgid "WordPress installed"
242
  msgstr ""
243
 
244
+ #: src/admin.php:5428
245
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
246
  msgstr ""
247
 
248
+ #: src/admin.php:3828
249
  msgid "Exclude these from"
250
  msgstr ""
251
 
252
+ #: src/admin.php:952
253
  msgid "The exclusion rule which you are trying to add already exists"
254
  msgstr ""
255
 
256
+ #: src/admin.php:951
257
  msgid "Please enter a valid file name prefix"
258
  msgstr ""
259
 
260
+ #: src/admin.php:950
261
  msgid "Please enter characters that begin the filename which you would like to exclude"
262
  msgstr ""
263
 
264
+ #: src/admin.php:949
265
  msgid "Please enter a valid file extension"
266
  msgstr ""
267
 
268
+ #: src/admin.php:948
269
  msgid "Please enter a file extension, like zip"
270
  msgstr ""
271
 
272
+ #: src/admin.php:947
273
  msgid "Please select a file/folder which you would like to exclude"
274
  msgstr ""
275
 
276
+ #: src/admin.php:946
277
  msgid "Are you sure you want to remove this exclusion rule?"
278
  msgstr ""
279
 
297
  msgid "failed to upload file to %s (see log file for more)"
298
  msgstr ""
299
 
300
+ #: src/admin.php:5424
301
  msgid "Dashboard:"
302
  msgstr ""
303
 
304
+ #: src/admin.php:5423
305
  msgid "Front page:"
306
  msgstr ""
307
 
308
+ #: src/admin.php:5422
309
  msgid "Your clone has started and will be available at the following URLs once it is ready."
310
  msgstr ""
311
 
317
  msgid "Current clones"
318
  msgstr ""
319
 
320
+ #: src/class-updraftplus.php:2992
321
  msgid "Your clone will now deploy this data to re-create your site."
322
  msgstr ""
323
 
324
+ #: src/admin.php:943
325
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
326
  msgstr ""
327
 
367
  msgid "Unable to get renew date"
368
  msgstr ""
369
 
370
+ #: src/admin.php:906
371
  msgid "The backup was aborted"
372
  msgstr ""
373
 
621
  msgid "You can buy more temporary clone tokens here."
622
  msgstr ""
623
 
624
+ #: src/admin.php:5379
625
  msgid "Forbid non-administrators to login to WordPress on your clone"
626
  msgstr ""
627
 
637
  msgid "Other great plugins"
638
  msgstr ""
639
 
640
+ #: src/admin.php:5426, src/admin.php:5429
641
  msgid "You can find your temporary clone information in your updraftplus.com account here."
642
  msgstr ""
643
 
644
+ #: src/class-updraftplus.php:4177
645
  msgid "Choose a default for each table"
646
  msgstr ""
647
 
648
+ #: src/admin.php:3276
649
  msgid "Sending files to remote site"
650
  msgstr ""
651
 
652
+ #: src/admin.php:3271
653
  msgid "Clone server being provisioned and booted (can take several minutes)"
654
  msgstr ""
655
 
656
+ #: src/admin.php:942
657
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
658
  msgstr ""
659
 
661
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
662
  msgstr ""
663
 
664
+ #: src/admin.php:2798
665
  msgid "Backup / Restore"
666
  msgstr ""
667
 
668
+ #: src/admin.php:663
669
  msgid "Backup"
670
  msgstr ""
671
 
737
  msgid "More information here."
738
  msgstr ""
739
 
740
+ #: src/admin.php:671, src/admin.php:2799
741
  msgid "Migrate / Clone"
742
  msgstr ""
743
 
744
+ #: src/admin.php:3036, src/admin.php:3961,
745
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
746
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
747
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
763
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
764
  msgstr ""
765
 
766
+ #: src/class-updraftplus.php:188
767
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
768
  msgstr ""
769
 
770
+ #: src/admin.php:5402
771
  msgid "(current version)"
772
  msgstr ""
773
 
774
+ #: src/admin.php:3738
775
  msgid "press here"
776
  msgstr ""
777
 
778
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
779
+ #: src/methods/googledrive.php:1214
780
  msgid "this privacy policy"
781
  msgstr ""
782
 
783
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
784
+ #: src/methods/googledrive.php:1214
785
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
786
  msgstr ""
787
 
805
  msgid "Available temporary clone tokens:"
806
  msgstr ""
807
 
808
+ #: src/admin.php:2886, src/includes/class-commands.php:901,
809
  #: src/includes/class-commands.php:949,
810
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
811
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
824
  msgid "I consent to %s"
825
  msgstr ""
826
 
827
+ #: src/admin.php:2984,
828
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
829
  msgid "One Time Password (check your OTP app to get this password)"
830
  msgstr ""
873
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
874
  msgstr ""
875
 
876
+ #: src/admin.php:5344
877
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
878
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
879
  msgstr[0] ""
880
  msgstr[1] ""
881
 
882
+ #: src/admin.php:940
883
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
884
  msgstr ""
885
 
886
+ #: src/admin.php:939
887
  msgid "You can also close this wizard."
888
  msgstr ""
889
 
890
+ #: src/admin.php:938
891
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
892
  msgstr ""
893
 
894
+ #: src/admin.php:937
895
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
896
  msgstr ""
897
 
898
+ #: src/admin.php:936
899
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
900
  msgstr ""
901
 
902
+ #: src/admin.php:935
903
  msgid "Perhaps you would want to login instead."
904
  msgstr ""
905
 
906
+ #: src/admin.php:934
907
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
908
  msgstr ""
909
 
910
+ #: src/admin.php:933
911
  msgid "An email is required and needs to be in a valid format."
912
  msgstr ""
913
 
914
+ #: src/admin.php:932
915
  msgid "Both email and password fields are required."
916
  msgstr ""
917
 
918
+ #: src/admin.php:931
919
  msgid "Registration successful."
920
  msgstr ""
921
 
922
+ #: src/admin.php:930, src/admin.php:931
923
  msgid "Please follow this link to open %s in a new window."
924
  msgstr ""
925
 
926
+ #: src/admin.php:930
927
  msgid "Login successful."
928
  msgstr ""
929
 
930
+ #: src/admin.php:929,
931
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
932
  msgid "UpdraftCentral Cloud"
933
  msgstr ""
934
 
935
+ #: src/admin.php:489
936
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
937
  msgstr ""
938
 
939
+ #: src/admin.php:488
940
  msgid "Dismiss all UpdraftPlus news"
941
  msgstr ""
942
 
943
+ #: src/admin.php:487
944
  msgid "UpdraftPlus News"
945
  msgstr ""
946
 
964
  msgid "Azure Account"
965
  msgstr ""
966
 
967
+ #: src/admin.php:928
968
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
969
  msgstr ""
970
 
976
  msgid "Upload backup"
977
  msgstr ""
978
 
979
+ #: src/admin.php:4248
980
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
981
  msgstr ""
982
 
983
+ #: src/admin.php:927
984
  msgid "(already uploaded)"
985
  msgstr ""
986
 
987
+ #: src/admin.php:925
988
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
989
  msgstr ""
990
 
991
+ #: src/admin.php:846, src/admin.php:4248
992
  msgid "Upload"
993
  msgstr ""
994
 
995
+ #: src/addons/reporting.php:529, src/admin.php:796
996
  msgid "Only email the database backup"
997
  msgstr ""
998
 
1062
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1063
  msgstr ""
1064
 
1065
+ #: src/includes/class-remote-send.php:438
1066
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1067
  msgstr ""
1068
 
1094
  msgid "Thank you for installing UpdraftPlus!"
1095
  msgstr ""
1096
 
1097
+ #: src/includes/class-remote-send.php:532
1098
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1099
  msgstr ""
1100
 
1122
  msgid "Ensure you are logged into the correct account before continuing."
1123
  msgstr ""
1124
 
1125
+ #: src/admin.php:4986
1126
  msgid "Remote storage method and instance id are required for authentication."
1127
  msgstr ""
1128
 
1129
+ #: src/admin.php:4982
1130
  msgid "authentication error"
1131
  msgstr ""
1132
 
1154
  msgid "Delete these settings"
1155
  msgstr ""
1156
 
1157
+ #: src/addons/morestorage.php:81, src/admin.php:924
1158
  msgid "Currently disabled"
1159
  msgstr ""
1160
 
1161
+ #: src/addons/morestorage.php:81, src/admin.php:923
1162
  msgid "Currently enabled"
1163
  msgstr ""
1164
 
1204
  msgstr[0] ""
1205
  msgstr[1] ""
1206
 
1207
+ #: src/class-updraftplus.php:4154
1208
  msgid "Your chosen replacement collation"
1209
  msgstr ""
1210
 
1211
+ #: src/class-updraftplus.php:4131
1212
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1213
  msgstr ""
1214
 
1215
+ #: src/class-updraftplus.php:4131
1216
  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."
1217
  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."
1218
  msgstr[0] ""
1280
  msgid "Requested table character set (%s) is not present - changing to %s."
1281
  msgstr ""
1282
 
1283
+ #: src/class-updraftplus.php:4107
1284
  msgid "Your chosen character set to use instead:"
1285
  msgstr ""
1286
 
1287
+ #: src/class-updraftplus.php:4097
1288
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1289
  msgstr ""
1290
 
1291
+ #: src/class-updraftplus.php:4097
1292
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1293
  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."
1294
  msgstr[0] ""
1338
  msgid "You now need to copy the key below and enter it at your %s."
1339
  msgstr ""
1340
 
1341
+ #: src/admin.php:918
1342
  msgid "Please enter a valid URL e.g http://example.com"
1343
  msgstr ""
1344
 
1378
  msgid "Account ID"
1379
  msgstr ""
1380
 
1381
+ #: src/class-updraftplus.php:3936
1382
  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."
1383
  msgstr ""
1384
 
1385
+ #: src/class-updraftplus.php:3934, src/class-updraftplus.php:3936
1386
  msgid "the migrator add-on"
1387
  msgstr ""
1388
 
1389
+ #: src/class-updraftplus.php:3934
1390
  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."
1391
  msgstr ""
1392
 
1393
+ #: src/class-updraftplus.php:3932
1394
  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."
1395
  msgstr ""
1396
 
1397
+ #: src/class-updraftplus.php:3927
1398
  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."
1399
  msgstr ""
1400
 
1401
+ #: src/methods/googledrive.php:1283
1402
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1403
  msgstr ""
1404
 
1406
  msgid "Follow this link to remove these settings for %s."
1407
  msgstr ""
1408
 
1409
+ #: src/admin.php:897
1410
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1411
  msgstr ""
1412
 
1413
+ #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2133,
1414
+ #: src/class-updraftplus.php:2198,
1415
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1416
  msgid "A PHP fatal error (%s) has occurred: %s"
1417
  msgstr ""
1418
 
1419
+ #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2124,
1420
+ #: src/class-updraftplus.php:2191,
1421
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1422
  msgid "A PHP exception (%s) has occurred: %s"
1423
  msgstr ""
1471
  msgid "Instant and secure logon with a wave of your phone."
1472
  msgstr ""
1473
 
1474
+ #: src/admin.php:5192
1475
  msgid "Value"
1476
  msgstr ""
1477
 
1478
+ #: src/admin.php:1781
1479
  msgid "Did not know how to delete from this cloud service."
1480
  msgstr ""
1481
 
1491
  msgid "Cloud Files"
1492
  msgstr ""
1493
 
1494
+ #: src/admin.php:4934
1495
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1496
  msgstr ""
1497
 
1498
+ #: src/admin.php:4893
1499
  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."
1500
  msgstr ""
1501
 
1512
  msgid "Extra database"
1513
  msgstr ""
1514
 
1515
+ #: src/admin.php:4104
1516
  msgid "Press here to download or browse"
1517
  msgstr ""
1518
 
1519
+ #: src/admin.php:1334, src/admin.php:1344
1520
  msgid "Error: invalid path"
1521
  msgstr ""
1522
 
1523
+ #: src/admin.php:1133
1524
  msgid "An error occurred when fetching storage module options: "
1525
  msgstr ""
1526
 
1527
+ #: src/admin.php:915
1528
  msgid "Loading log file"
1529
  msgstr ""
1530
 
1531
+ #: src/admin.php:914
1532
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1533
  msgstr ""
1534
 
1535
+ #: src/admin.php:913
1536
  msgid "Search"
1537
  msgstr ""
1538
 
1539
+ #: src/admin.php:912
1540
  msgid "Select a file to view information about it"
1541
  msgstr ""
1542
 
1543
+ #: src/admin.php:911
1544
  msgid "Browsing zip file"
1545
  msgstr ""
1546
 
1547
+ #: src/admin.php:878
1548
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1549
  msgstr ""
1550
 
1551
+ #: src/admin.php:824
1552
  msgid "Browse contents"
1553
  msgstr ""
1554
 
1556
  msgid "Skipped tables:"
1557
  msgstr ""
1558
 
1559
+ #: src/class-updraftplus.php:4232
1560
  msgid "This database backup has the following WordPress tables excluded: %s"
1561
  msgstr ""
1562
 
1563
+ #: src/admin.php:3022
1564
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1565
  msgstr ""
1566
 
1567
+ #: src/admin.php:3022
1568
  msgid "All WordPress tables will be backed up."
1569
  msgstr ""
1570
 
1571
+ #: src/admin.php:910
1572
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1573
  msgstr ""
1574
 
1575
+ #: src/admin.php:910
1576
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1577
  msgstr ""
1578
 
1579
+ #: src/admin.php:910
1580
  msgid "The available memory on the server."
1581
  msgstr ""
1582
 
1583
+ #: src/admin.php:910
1584
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1585
  msgstr ""
1586
 
1587
+ #: src/admin.php:910
1588
  msgid "The file failed to upload. Please check the following:"
1589
  msgstr ""
1590
 
1591
+ #: src/admin.php:909
1592
  msgid "HTTP code:"
1593
  msgstr ""
1594
 
1595
+ #: src/addons/wp-cli.php:109, src/admin.php:801
1596
  msgid "You have chosen to backup a database, but no tables have been selected"
1597
  msgstr ""
1598
 
1742
  msgid "Free"
1743
  msgstr ""
1744
 
1745
+ #: src/admin.php:486
1746
  msgid "UpdraftPlus"
1747
  msgstr ""
1748
 
2017
  msgid "Backup of: %s"
2018
  msgstr ""
2019
 
2020
+ #: src/methods/googledrive.php:278
2021
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2022
  msgstr ""
2023
 
2041
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2042
  msgstr ""
2043
 
2044
+ #: src/admin.php:1864
2045
  msgid "Remote files deleted:"
2046
  msgstr ""
2047
 
2048
+ #: src/admin.php:1863
2049
  msgid "Local files deleted:"
2050
  msgstr ""
2051
 
2053
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2054
  msgstr ""
2055
 
2056
+ #: src/admin.php:908
2057
  msgid "remote files deleted"
2058
  msgstr ""
2059
 
2060
+ #: src/admin.php:904
2061
  msgid "Complete"
2062
  msgstr ""
2063
 
2064
+ #: src/admin.php:903
2065
  msgid "Do you want to carry out the import?"
2066
  msgstr ""
2067
 
2068
+ #: src/admin.php:902
2069
  msgid "Which was exported on:"
2070
  msgstr ""
2071
 
2072
+ #: src/admin.php:901
2073
  msgid "This will import data from:"
2074
  msgstr ""
2075
 
2076
+ #: src/admin.php:900
2077
  msgid "Importing..."
2078
  msgstr ""
2079
 
2080
+ #: src/admin.php:896
2081
  msgid "You have not yet selected a file to import."
2082
  msgstr ""
2083
 
2084
+ #: src/admin.php:880
2085
  msgid "Your export file will be of your displayed settings, not your saved ones."
2086
  msgstr ""
2087
 
2088
+ #: src/admin.php:91
2089
  msgid "template not found"
2090
  msgstr ""
2091
 
2101
  msgid "Account is not authorized (%s)."
2102
  msgstr ""
2103
 
2104
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947
2105
  msgid "Your IP address:"
2106
  msgstr ""
2107
 
2108
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947,
2109
+ #: src/udaddons/updraftplus-addons.php:961
2110
  msgid "To remove any block, please go here."
2111
  msgstr ""
2112
 
2113
+ #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:932
2114
  msgid "An error response was received; HTTP code:"
2115
  msgstr ""
2116
 
2126
  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"
2127
  msgstr ""
2128
 
2129
+ #: src/admin.php:2609
2130
  msgid "To fix this problem go here."
2131
  msgstr ""
2132
 
2133
+ #: src/admin.php:2609
2134
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2135
  msgstr ""
2136
 
2137
+ #: src/admin.php:864
2138
  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."
2139
  msgstr ""
2140
 
2162
  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."
2163
  msgstr ""
2164
 
2165
+ #: src/udaddons/updraftplus-addons.php:964
2166
  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."
2167
  msgstr ""
2168
 
2256
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2257
  msgstr ""
2258
 
2259
+ #: src/methods/googledrive.php:538
2260
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2261
  msgstr ""
2262
 
2277
  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."
2278
  msgstr ""
2279
 
2280
+ #: src/class-updraftplus.php:1739
2281
  msgid "Size: %s MB"
2282
  msgstr ""
2283
 
2285
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2286
  msgstr ""
2287
 
2288
+ #: src/class-updraftplus.php:3953, src/restorer.php:1446
2289
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2290
  msgstr ""
2291
 
2307
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2308
  msgstr ""
2309
 
2310
+ #: src/class-updraftplus.php:584, src/class-updraftplus.php:629
2311
  msgid "The given file was not found, or could not be read."
2312
  msgstr ""
2313
 
2391
  msgid "UpdraftCentral Connection"
2392
  msgstr ""
2393
 
2394
+ #: src/backup.php:1042, src/class-updraftplus.php:2973
2395
  msgid "The backup was aborted by the user"
2396
  msgstr ""
2397
 
2398
+ #: src/admin.php:4929
2399
  msgid "Your settings have been saved."
2400
  msgstr ""
2401
 
2402
+ #: src/admin.php:4009
2403
  msgid "Total backup size:"
2404
  msgstr ""
2405
 
2406
+ #: src/admin.php:3416
2407
  msgid "stop"
2408
  msgstr ""
2409
 
2410
+ #: src/admin.php:905, src/admin.php:3209
2411
  msgid "The backup has finished running"
2412
  msgstr ""
2413
 
2433
  msgid "calculate"
2434
  msgstr ""
2435
 
2436
+ #: src/admin.php:879
2437
  msgid "You should save your changes to ensure that they are used for making your backup."
2438
  msgstr ""
2439
 
2440
+ #: src/admin.php:872
2441
  msgid "We requested to delete the file, but could not understand the server's response"
2442
  msgstr ""
2443
 
2444
+ #: src/admin.php:871
2445
  msgid "Please enter a valid URL"
2446
  msgstr ""
2447
 
2448
+ #: src/admin.php:854
2449
  msgid "Saving..."
2450
  msgstr ""
2451
 
2452
+ #: src/admin.php:815
2453
  msgid "Error: the server sent us a response which we did not understand."
2454
  msgstr ""
2455
 
2456
+ #: src/admin.php:807
2457
  msgid "Fetching..."
2458
  msgstr ""
2459
 
2469
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2470
  msgstr ""
2471
 
2472
+ #: src/class-updraftplus.php:4005, src/restorer.php:2227
2473
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2474
  msgstr ""
2475
 
2476
+ #: src/class-updraftplus.php:4001
2477
  msgid "Please read this link for important information on this process."
2478
  msgstr ""
2479
 
2480
+ #: src/class-updraftplus.php:4001
2481
  msgid "It will be imported as a new site."
2482
  msgstr ""
2483
 
2484
+ #: src/admin.php:2842, src/templates/wp-admin/notices/horizontal-notice.php:16,
2485
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2486
  msgid "Dismiss"
2487
  msgstr ""
2488
 
2489
+ #: src/admin.php:891
2490
  msgid "Please fill in the required information."
2491
  msgstr ""
2492
 
2547
  msgid "Call WordPress action:"
2548
  msgstr ""
2549
 
2550
+ #: src/admin.php:3032
2551
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2552
  msgstr ""
2553
 
2579
  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)."
2580
  msgstr ""
2581
 
2582
+ #: src/admin.php:4803
2583
  msgid "Send this backup to remote storage"
2584
  msgstr ""
2585
 
2586
+ #: src/admin.php:4801
2587
  msgid "Check out UpdraftPlus Vault."
2588
  msgstr ""
2589
 
2590
+ #: src/admin.php:4801
2591
  msgid "Not got any remote storage?"
2592
  msgstr ""
2593
 
2594
+ #: src/admin.php:4801
2595
  msgid "settings"
2596
  msgstr ""
2597
 
2598
+ #: src/admin.php:4801
2599
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2600
  msgstr ""
2601
 
2602
+ #: src/admin.php:3030
2603
  msgid "Include any files in the backup"
2604
  msgstr ""
2605
 
2606
+ #: src/admin.php:3014
2607
  msgid "Include the database in the backup"
2608
  msgstr ""
2609
 
2610
+ #: src/admin.php:2841
2611
  msgid "Continue restoration"
2612
  msgstr ""
2613
 
2614
+ #: src/admin.php:2836
2615
  msgid "You have an unfinished restoration operation, begun %s ago."
2616
  msgstr ""
2617
 
2618
+ #: src/admin.php:2835
2619
  msgid "Unfinished restoration"
2620
  msgstr ""
2621
 
2622
+ #: src/admin.php:2833
2623
  msgid "%s minutes, %s seconds"
2624
  msgstr ""
2625
 
2626
+ #: src/admin.php:2699
2627
  msgid "Backup Contents And Schedule"
2628
  msgstr ""
2629
 
2630
+ #: src/admin.php:2802
2631
  msgid "Premium / Extensions"
2632
  msgstr ""
2633
 
2634
+ #: src/admin.php:2476, src/admin.php:2485
2635
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2636
  msgstr ""
2637
 
2638
+ #: src/addons/morefiles.php:71, src/admin.php:877
2639
  msgctxt "(verb)"
2640
  msgid "Download"
2641
  msgstr ""
2642
 
2643
+ #: src/admin.php:800
2644
  msgid "You have chosen to backup files, but no file entities have been selected"
2645
  msgstr ""
2646
 
2647
+ #: src/admin.php:695
2648
  msgid "Extensions"
2649
  msgstr ""
2650
 
2651
+ #: src/admin.php:687, src/admin.php:2801
2652
  msgid "Advanced Tools"
2653
  msgstr ""
2654
 
2767
  msgid "Could not access container"
2768
  msgstr ""
2769
 
2770
+ #: src/class-updraftplus.php:2992
2771
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
2772
  msgstr ""
2773
 
2897
  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)."
2898
  msgstr ""
2899
 
2900
+ #: src/admin.php:1862
2901
  msgid "Backup sets removed:"
2902
  msgstr ""
2903
 
2904
+ #: src/admin.php:890
2905
  msgid "Processing..."
2906
  msgstr ""
2907
 
2908
+ #: src/admin.php:888
2909
  msgid "For backups older than"
2910
  msgstr ""
2911
 
2912
+ #: src/admin.php:887
2913
  msgid "week(s)"
2914
  msgstr ""
2915
 
2916
+ #: src/admin.php:886
2917
  msgid "hour(s)"
2918
  msgstr ""
2919
 
2920
+ #: src/admin.php:885
2921
  msgid "day(s)"
2922
  msgstr ""
2923
 
2924
+ #: src/admin.php:884
2925
  msgid "in the month"
2926
  msgstr ""
2927
 
2928
+ #: src/admin.php:883
2929
  msgid "day"
2930
  msgstr ""
2931
 
2949
  msgid "You do not currently have any UpdraftPlus Vault quota"
2950
  msgstr ""
2951
 
2952
+ #: src/class-updraftplus.php:4076
2953
  msgid "You must upgrade MySQL to be able to use this database."
2954
  msgstr ""
2955
 
2956
+ #: src/class-updraftplus.php:4076
2957
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
2958
  msgstr ""
2959
 
2960
+ #: src/admin.php:2594
2961
  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."
2962
  msgstr ""
2963
 
2985
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
2986
  msgstr ""
2987
 
2988
+ #: src/admin.php:1192
2989
  msgid "Go to the remote storage settings in order to connect."
2990
  msgstr ""
2991
 
2992
+ #: src/admin.php:1192
2993
  msgid "%s has been chosen for remote storage, but you are not currently connected."
2994
  msgstr ""
2995
 
2997
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
2998
  msgstr ""
2999
 
3000
+ #: src/admin.php:860
3001
  msgid "Update quota count"
3002
  msgstr ""
3003
 
3004
+ #: src/admin.php:859
3005
  msgid "Counting..."
3006
  msgstr ""
3007
 
3008
+ #: src/admin.php:858
3009
  msgid "Disconnecting..."
3010
  msgstr ""
3011
 
3012
+ #: src/admin.php:856
3013
  msgid "Connecting..."
3014
  msgstr ""
3015
 
3035
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3036
  msgstr ""
3037
 
3038
+ #: src/admin.php:857, src/methods/updraftvault.php:392,
3039
  #: src/methods/updraftvault.php:450
3040
  msgid "Disconnect"
3041
  msgstr ""
3153
  msgid "Allow download"
3154
  msgstr ""
3155
 
3156
+ #: src/includes/class-remote-send.php:314
3157
  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."
3158
  msgstr ""
3159
 
3160
+ #: src/admin.php:866, src/includes/class-remote-send.php:299
3161
  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."
3162
  msgstr ""
3163
 
3164
+ #: src/includes/class-remote-send.php:541
3165
  msgid "Existing keys"
3166
  msgstr ""
3167
 
3173
  msgid "You must copy and paste this key now - it cannot be shown again."
3174
  msgstr ""
3175
 
3176
+ #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:438
3177
  msgid "Key created successfully."
3178
  msgstr ""
3179
 
3180
+ #: src/includes/class-remote-send.php:421
3181
  msgid "A key with this name already exists; you must use a unique name."
3182
  msgstr ""
3183
 
3184
+ #: src/includes/class-remote-send.php:345
3185
  msgid "Also send this backup to the active remote storage locations"
3186
  msgstr ""
3187
 
3188
+ #: src/includes/class-remote-send.php:310
3189
  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."
3190
  msgstr ""
3191
 
3192
+ #: src/includes/class-remote-send.php:266
3193
  msgid "site not found"
3194
  msgstr ""
3195
 
3196
+ #: src/includes/class-remote-send.php:251
3197
  msgid "Backup data will be sent to:"
3198
  msgstr ""
3199
 
3213
  msgid "This storage method does not allow downloading"
3214
  msgstr ""
3215
 
3216
+ #: src/admin.php:4167
3217
  msgid "(backup set imported from remote location)"
3218
  msgstr ""
3219
 
3235
  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."
3236
  msgstr ""
3237
 
3238
+ #: src/admin.php:873, src/includes/class-remote-send.php:327
3239
  msgid "Testing connection..."
3240
  msgstr ""
3241
 
3242
+ #: src/admin.php:870,
3243
  #: src/templates/wp-admin/settings/existing-backups-table.php:161
3244
  msgid "Deleting..."
3245
  msgstr ""
3246
 
3247
+ #: src/admin.php:869
3248
  msgid "key name"
3249
  msgstr ""
3250
 
3251
+ #: src/admin.php:867
3252
  msgid "Please give this key a name (e.g. indicate the site it is for):"
3253
  msgstr ""
3254
 
3255
+ #: src/admin.php:864
3256
  msgid "Creating..."
3257
  msgstr ""
3258
 
3276
  msgid "Send a backup to another site"
3277
  msgstr ""
3278
 
3279
+ #: src/admin.php:874, src/includes/class-remote-send.php:358,
3280
+ #: src/includes/class-remote-send.php:520
3281
  msgid "Send"
3282
  msgstr ""
3283
 
3284
+ #: src/admin.php:865, src/includes/class-remote-send.php:514
3285
  msgid "Send to site:"
3286
  msgstr ""
3287
 
3288
+ #: src/includes/class-remote-send.php:512
3289
  msgid "No receiving sites have yet been added."
3290
  msgstr ""
3291
 
3292
+ #: src/includes/class-remote-send.php:493
3293
  msgid "It is for sending backups to the following site: "
3294
  msgstr ""
3295
 
3296
+ #: src/includes/class-remote-send.php:493
3297
  msgid "The key was successfully added."
3298
  msgstr ""
3299
 
3300
+ #: src/includes/class-remote-send.php:477
3301
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
3302
  msgstr ""
3303
 
3304
+ #: src/includes/class-remote-send.php:466,
3305
+ #: src/includes/class-remote-send.php:468,
3306
+ #: src/includes/class-remote-send.php:472
3307
  msgid "The entered key was corrupt - please try again."
3308
  msgstr ""
3309
 
3310
+ #: src/includes/class-remote-send.php:464
3311
  msgid "The entered key was the wrong length - please try again."
3312
  msgstr ""
3313
 
3314
+ #: src/includes/class-remote-send.php:454
3315
  msgid "key"
3316
  msgstr ""
3317
 
3347
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3348
  msgstr ""
3349
 
3350
+ #: src/admin.php:863
3351
  msgid "Resetting..."
3352
  msgstr ""
3353
 
3354
+ #: src/addons/migrator.php:1745, src/admin.php:862
3355
  msgid "Add site"
3356
  msgstr ""
3357
 
3358
+ #: src/admin.php:861
3359
  msgid "Adding..."
3360
  msgstr ""
3361
 
3362
+ #: src/udaddons/options.php:298
3363
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
3364
  msgstr ""
3365
 
3367
  msgid "To use this backup, your database server needs to support the %s character set."
3368
  msgstr ""
3369
 
3370
+ #: src/udaddons/updraftplus-addons.php:997
3371
  msgid "go here to change your password on updraftplus.com."
3372
  msgstr ""
3373
 
3374
+ #: src/udaddons/updraftplus-addons.php:997
3375
  msgid "If you have forgotten your password "
3376
  msgstr ""
3377
 
3378
+ #: src/udaddons/updraftplus-addons.php:996
3379
  msgid "Go here to re-enter your password."
3380
  msgstr ""
3381
 
3383
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3384
  msgstr ""
3385
 
3386
+ #: src/admin.php:853, src/admin.php:879, src/admin.php:880
3387
  msgid "You have made changes to your settings, and not saved."
3388
  msgstr ""
3389
 
3396
  msgstr ""
3397
 
3398
  #: src/addons/azure.php:605, src/addons/onedrive.php:1148,
3399
+ #: src/includes/class-remote-send.php:314
3400
  msgid "For longer help, including screenshots, follow this link."
3401
  msgstr ""
3402
 
3589
 
3590
  #: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
3591
  #: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
3592
+ #: src/udaddons/updraftplus-addons.php:947,
3593
+ #: src/udaddons/updraftplus-addons.php:961
3594
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
3595
  msgstr ""
3596
 
3597
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3598
+ #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:961
3599
  msgid "It appears that your web server's IP Address (%s) is blocked."
3600
  msgstr ""
3601
 
3602
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3603
+ #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:961
3604
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
3605
  msgstr ""
3606
 
3642
  msgid "(at same time as files backup)"
3643
  msgstr ""
3644
 
3645
+ #: src/admin.php:3703
3646
  msgid "No backup has been completed"
3647
  msgstr ""
3648
 
3671
  msgid "Full feature list"
3672
  msgstr ""
3673
 
3674
+ #: src/addons/autobackup.php:1080
3675
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3676
  msgstr ""
3677
 
3685
  msgid "or"
3686
  msgstr ""
3687
 
3688
+ #: src/admin.php:847
3689
  msgid "You did not select any components to restore. Please select at least one, and then try again."
3690
  msgstr ""
3691
 
3716
  msgid "Check this box to have a basic report sent to"
3717
  msgstr ""
3718
 
3719
+ #: src/admin.php:3717
3720
  msgctxt "i.e. Non-automatic"
3721
  msgid "Manual"
3722
  msgstr ""
3734
  msgid "Any other file/directory on your server that you wish to backup"
3735
  msgstr ""
3736
 
3737
+ #: src/admin.php:2611
3738
  msgid "For even more features and personal support, check out "
3739
  msgstr ""
3740
 
3742
  msgid "Database decryption phrase"
3743
  msgstr ""
3744
 
3745
+ #: src/addons/autobackup.php:157, src/addons/autobackup.php:1026,
3746
+ #: src/admin.php:852
3747
  msgid "Automatic backup before update"
3748
  msgstr ""
3749
 
3824
  msgid "(learn more about this significant option)"
3825
  msgstr ""
3826
 
3827
+ #: src/udaddons/options.php:241
3828
  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."
3829
  msgstr ""
3830
 
3831
+ #: src/admin.php:3209, src/admin.php:4278
3832
  msgid "View Log"
3833
  msgstr ""
3834
 
3847
  msgid "and retain this many scheduled backups"
3848
  msgstr ""
3849
 
3850
+ #: src/admin.php:3673
3851
  msgid "incremental backup; base backup: %s"
3852
  msgstr ""
3853
 
3860
  msgid "Upload files into UpdraftPlus."
3861
  msgstr ""
3862
 
3863
+ #: src/admin.php:1138, src/includes/class-commands.php:462,
3864
  #: src/templates/wp-admin/settings/take-backup.php:12
3865
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
3866
  msgstr ""
3867
 
3868
+ #: src/class-updraftplus.php:3990
3869
  msgid "Backup label:"
3870
  msgstr ""
3871
 
3872
+ #: src/addons/backblaze.php:205, src/admin.php:2113
3873
  msgid "Error: unexpected file read fail"
3874
  msgstr ""
3875
 
3889
  msgid "Your label for this backup (optional)"
3890
  msgstr ""
3891
 
3892
+ #: src/methods/googledrive.php:1200
3893
  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."
3894
  msgstr ""
3895
 
3896
+ #: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:1000
3897
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
3898
  msgstr ""
3899
 
3900
+ #: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:996
3901
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
3902
  msgstr ""
3903
 
3904
+ #: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:862
3905
  msgid "You need to supply both an email address and a password"
3906
  msgstr ""
3907
 
3908
+ #: src/class-updraftplus.php:4009
3909
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3910
  msgstr ""
3911
 
3912
+ #: src/class-updraftplus.php:4009
3913
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3914
  msgstr ""
3915
 
3946
  msgid "You need to connect to receive future updates to UpdraftPlus."
3947
  msgstr ""
3948
 
3949
+ #: src/class-updraftplus.php:3982
3950
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3951
  msgstr ""
3952
 
3953
+ #: src/class-updraftplus.php:3982
3954
  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."
3955
  msgstr ""
3956
 
3957
+ #: src/class-updraftplus.php:3982
3958
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3959
  msgstr ""
3960
 
3961
+ #: src/class-updraftplus.php:3982
3962
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3963
  msgstr ""
3964
 
3987
  msgid "UpdraftPlus is on social media - check us out!"
3988
  msgstr ""
3989
 
3990
+ #: src/addons/wp-cli.php:907, src/admin.php:4466
3991
  msgid "Why am I seeing this?"
3992
  msgstr ""
3993
 
4001
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
4002
  msgstr ""
4003
 
4004
+ #: src/admin.php:2050, src/admin.php:2062, src/includes/class-commands.php:833
4005
  msgid "Start backup"
4006
  msgstr ""
4007
 
4008
+ #: src/class-updraftplus.php:3953, src/restorer.php:1446
4009
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4010
  msgstr ""
4011
 
4012
+ #: src/admin.php:3571
4013
  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."
4014
  msgstr ""
4015
 
4017
  msgid "Unless you have a problem, you can completely ignore everything here."
4018
  msgstr ""
4019
 
4020
+ #: src/admin.php:2288
4021
  msgid "This file could not be uploaded"
4022
  msgstr ""
4023
 
4024
+ #: src/admin.php:2251
4025
  msgid "You will find more information about this in the Settings section."
4026
  msgstr ""
4027
 
4049
  msgid "Full backup"
4050
  msgstr ""
4051
 
4052
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4053
  msgid "now proceeding with the updates..."
4054
  msgstr ""
4055
 
4056
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4057
  msgid "(view log...)"
4058
  msgstr ""
4059
 
4060
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4061
  msgid "Backup succeeded"
4062
  msgstr ""
4063
 
4064
  #: src/addons/incremental.php:237, src/addons/incremental.php:238,
4065
  #: src/addons/incremental.php:239, src/addons/incremental.php:240,
4066
+ #: src/admin.php:3718, src/admin.php:3719, src/admin.php:3720,
4067
  #: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
4068
  msgid "Every %s hours"
4069
  msgstr ""
4114
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4115
  msgstr ""
4116
 
4117
+ #: src/methods/googledrive.php:1207
4118
  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."
4119
  msgstr ""
4120
 
4138
  msgid "Free disk space in account:"
4139
  msgstr ""
4140
 
4141
+ #: src/admin.php:4900, src/templates/wp-admin/settings/take-backup.php:50
4142
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4143
  msgstr ""
4144
 
4145
+ #: src/admin.php:819, src/admin.php:1918,
4146
  #: src/includes/deprecated-actions.php:29,
4147
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4148
  #: src/templates/wp-admin/settings/tab-backups.php:21,
4150
  msgid "Existing Backups"
4151
  msgstr ""
4152
 
4153
+ #: src/admin.php:1143
4154
  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."
4155
  msgstr ""
4156
 
4157
+ #: src/admin.php:1143
4158
  msgid "To make a backup, just press the Backup Now button."
4159
  msgstr ""
4160
 
4161
+ #: src/admin.php:1143
4162
  msgid "Welcome to UpdraftPlus!"
4163
  msgstr ""
4164
 
4230
  msgid "user"
4231
  msgstr ""
4232
 
4233
+ #: src/class-updraftplus.php:1736
4234
  msgid "External database (%s)"
4235
  msgstr ""
4236
 
4237
+ #: src/methods/googledrive.php:1207
4238
  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."
4239
  msgstr ""
4240
 
4241
+ #: src/methods/googledrive.php:502
4242
  msgid "failed to access parent folder"
4243
  msgstr ""
4244
 
4245
  #: src/addons/googlecloud.php:698, src/addons/onedrive.php:907,
4246
+ #: src/addons/onedrive.php:918, src/methods/googledrive.php:442,
4247
+ #: src/methods/googledrive.php:455
4248
  msgid "However, subsequent access attempts failed:"
4249
  msgstr ""
4250
 
4251
+ #: src/addons/wp-cli.php:437, src/admin.php:4034
4252
  msgid "External database"
4253
  msgstr ""
4254
 
4280
  msgid "use UpdraftPlus Premium"
4281
  msgstr ""
4282
 
4283
+ #: src/class-updraftplus.php:3833
4284
  msgid "Decryption failed. The database file is encrypted."
4285
  msgstr ""
4286
 
4335
  msgid "Tenant"
4336
  msgstr ""
4337
 
4338
+ #: src/addons/wp-cli.php:800, src/admin.php:4588, src/admin.php:5344,
4339
  #: src/methods/openstack2.php:144,
4340
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
4341
  #: src/templates/wp-admin/settings/tab-backups.php:27,
4415
  msgstr ""
4416
 
4417
  #: src/addons/googlecloud.php:1108, src/addons/onedrive.php:1248,
4418
+ #: src/methods/dropbox.php:668, src/methods/googledrive.php:1289
4419
  msgid "Account holder's name: %s."
4420
  msgstr ""
4421
 
4422
+ #: src/methods/googledrive.php:1266
4423
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4424
  msgstr ""
4425
 
4426
+ #: src/methods/googledrive.php:1253
4427
  msgid "It is an ID number internal to Google Drive"
4428
  msgstr ""
4429
 
4430
+ #: src/methods/googledrive.php:1253
4431
  msgid "<strong>This is NOT a folder name</strong>."
4432
  msgstr ""
4433
 
4434
+ #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1248,
4435
+ #: src/methods/googledrive.php:1259
4436
  msgid "Folder"
4437
  msgstr ""
4438
 
4439
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:451,
4440
+ #: src/methods/googledrive.php:1160
4441
  msgid "%s download: failed: file not found"
4442
  msgstr ""
4443
 
4444
+ #: src/addons/googlecloud.php:718, src/methods/googledrive.php:475
4445
  msgid "Name: %s."
4446
  msgstr ""
4447
 
4448
+ #: src/methods/googledrive.php:216
4449
  msgid "Google Drive list files: failed to access parent folder"
4450
  msgstr ""
4451
 
4481
  msgid "Failed to unpack the archive"
4482
  msgstr ""
4483
 
4484
+ #: src/class-updraftplus.php:1366
4485
  msgid "Error - failed to download the file"
4486
  msgstr ""
4487
 
4506
  msgid "password/key"
4507
  msgstr ""
4508
 
4509
+ #: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:868,
4510
+ #: src/admin.php:5192, src/templates/wp-admin/settings/temporary-clone.php:63
4511
  msgid "Key"
4512
  msgstr ""
4513
 
4523
  msgid "SCP/SFTP password/key"
4524
  msgstr ""
4525
 
4526
+ #: src/addons/wp-cli.php:449, src/admin.php:4078
4527
  msgid "Files backup (created by %s)"
4528
  msgstr ""
4529
 
4530
+ #: src/addons/wp-cli.php:449, src/admin.php:4078
4531
  msgid "Files and database WordPress backup (created by %s)"
4532
  msgstr ""
4533
 
4534
+ #: src/addons/importer.php:276, src/admin.php:4072,
4535
  #: src/includes/class-backup-history.php:435
4536
  msgid "Backup created by: %s."
4537
  msgstr ""
4538
 
4539
+ #: src/addons/wp-cli.php:431, src/admin.php:4032
4540
  msgid "Database (created by %s)"
4541
  msgstr ""
4542
 
4543
+ #: src/addons/wp-cli.php:429, src/admin.php:4026, src/admin.php:4074
4544
  msgid "unknown source"
4545
  msgstr ""
4546
 
4555
  msgid "Upload backup files"
4556
  msgstr ""
4557
 
4558
+ #: src/admin.php:2303
4559
  msgid "This backup was created by %s, and can be imported."
4560
  msgstr ""
4561
 
4562
+ #: src/admin.php:1172
4563
  msgid "Read this page for a guide to possible causes and how to fix it."
4564
  msgstr ""
4565
 
4566
+ #: src/admin.php:1172
4567
  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."
4568
  msgstr ""
4569
 
4570
+ #: src/admin.php:831, src/includes/class-backup-history.php:442
4571
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
4572
  msgstr ""
4573
 
4574
+ #: src/admin.php:830
4575
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
4576
  msgstr ""
4577
 
4578
+ #: src/admin.php:830, src/admin.php:831,
4579
  #: src/includes/class-backup-history.php:442
4580
  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))."
4581
  msgstr ""
4582
 
4583
+ #: src/admin.php:4075, src/includes/class-wpadmin-commands.php:162,
4584
  #: src/restorer.php:1975
4585
  msgid "Backup created by unknown source (%s) - cannot be restored."
4586
  msgstr ""
4610
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
4611
  msgstr ""
4612
 
4613
+ #: src/admin.php:797
4614
  msgid "Rescanning remote and local storage for backup sets..."
4615
  msgstr ""
4616
 
4640
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4641
  msgstr ""
4642
 
4643
+ #: src/addons/morefiles.php:476, src/admin.php:3831
4644
  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."
4645
  msgstr ""
4646
 
4669
  msgid "Backup created by:"
4670
  msgstr ""
4671
 
4672
+ #: src/udaddons/options.php:483
4673
  msgid "Available to claim on this site"
4674
  msgstr ""
4675
 
4756
  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)"
4757
  msgstr ""
4758
 
4759
+ #: src/udaddons/updraftplus-addons.php:479,
4760
+ #: src/udaddons/updraftplus-addons.php:568
4761
  msgid "Errors occurred:"
4762
  msgstr ""
4763
 
4764
+ #: src/addons/wp-cli.php:664, src/admin.php:4508
4765
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
4766
  msgstr ""
4767
 
4785
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
4786
  msgstr ""
4787
 
4788
+ #: src/admin.php:1147, src/class-updraftplus.php:848
4789
  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)"
4790
  msgstr ""
4791
 
4798
  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."
4799
  msgstr ""
4800
 
4801
+ #: src/addons/moredatabase.php:144, src/admin.php:1642
4802
  msgid "Messages:"
4803
  msgstr ""
4804
 
4964
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4965
  msgstr ""
4966
 
4967
+ #: src/admin.php:845, src/central/bootstrap.php:565
4968
  msgid "Create"
4969
  msgstr ""
4970
 
4971
+ #: src/admin.php:806
4972
  msgid "Trying..."
4973
  msgstr ""
4974
 
4975
+ #: src/admin.php:805
4976
  msgid "The new user's RackSpace console password is (this will not be shown again):"
4977
  msgstr ""
4978
 
4979
+ #: src/addons/wp-cli.php:797, src/admin.php:816, src/admin.php:4586
4980
  msgid "Error data:"
4981
  msgstr ""
4982
 
4983
+ #: src/admin.php:4489
4984
  msgid "Backup does not exist in the backup history"
4985
  msgstr ""
4986
 
4987
+ #: src/admin.php:3145
4988
  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."
4989
  msgstr ""
4990
 
5024
  msgid "Email reports"
5025
  msgstr ""
5026
 
5027
+ #: src/class-updraftplus.php:1744, src/class-updraftplus.php:1749
5028
  msgid "%s checksum: %s"
5029
  msgstr ""
5030
 
5031
+ #: src/class-updraftplus.php:1680, src/class-updraftplus.php:1682
5032
  msgid "files: %s"
5033
  msgstr ""
5034
 
5040
  msgid "Debugging information"
5041
  msgstr ""
5042
 
5043
+ #: src/addons/reporting.php:223, src/admin.php:3992
5044
  msgid "Uploaded to:"
5045
  msgstr ""
5046
 
5085
  msgid "%s authentication"
5086
  msgstr ""
5087
 
5088
+ #: src/addons/onedrive.php:864, src/class-updraftplus.php:532,
5089
  #: src/methods/dropbox.php:240, src/methods/dropbox.php:753,
5090
  #: src/methods/dropbox.php:775, src/methods/dropbox.php:790,
5091
  #: src/methods/dropbox.php:803, src/methods/dropbox.php:946
5112
  msgid "Your site's admin email address (%s) will be used."
5113
  msgstr ""
5114
 
5115
+ #: src/admin.php:855, src/admin.php:2876, src/methods/updraftvault.php:319,
5116
  #: src/methods/updraftvault.php:362,
5117
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5118
  msgid "Connect"
5122
  msgid "For more reporting features, use the Reporting add-on."
5123
  msgstr ""
5124
 
5125
+ #: src/class-updraftplus.php:3914
5126
  msgid "(version: %s)"
5127
  msgstr ""
5128
 
5129
+ #: src/admin.php:794
5130
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5131
  msgstr ""
5132
 
5133
+ #: src/addons/reporting.php:527, src/admin.php:793
5134
  msgid "When the Email storage method is enabled, also send the backup"
5135
  msgstr ""
5136
 
5170
  msgid "Files (database backup has not completed)"
5171
  msgstr ""
5172
 
5173
+ #: src/admin.php:334, src/backup.php:1044
5174
  msgid "Files and database"
5175
  msgstr ""
5176
 
5194
  msgid "UpdraftPlus warning:"
5195
  msgstr ""
5196
 
5197
+ #: src/udaddons/options.php:489
5198
  msgid "(or connect using the form on this page if you have already purchased it)"
5199
  msgstr ""
5200
 
5201
+ #: src/udaddons/options.php:477
5202
  msgid "please follow this link to update the plugin in order to activate it"
5203
  msgstr ""
5204
 
5205
+ #: src/udaddons/options.php:474
5206
  msgid "please follow this link to update the plugin in order to get it"
5207
  msgstr ""
5208
 
5209
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
5210
  msgid "latest"
5211
  msgstr ""
5212
 
5213
+ #: src/udaddons/options.php:462
5214
  msgid "Your version: %s"
5215
  msgstr ""
5216
 
5217
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
5218
  msgid "You've got it"
5219
  msgstr ""
5220
 
5221
+ #: src/udaddons/options.php:421
5222
  msgid "UpdraftPlus Support"
5223
  msgstr ""
5224
 
5225
+ #: src/udaddons/options.php:361
5226
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
5227
  msgstr ""
5228
 
5229
+ #: src/udaddons/options.php:350, src/udaddons/updraftplus-addons.php:315
5230
  msgid "UpdraftPlus Addons"
5231
  msgstr ""
5232
 
5235
  msgstr ""
5236
 
5237
  #: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
5238
+ #: src/udaddons/updraftplus-addons.php:1007
5239
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
5240
  msgstr ""
5241
 
5242
+ #: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:1003
5243
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
5244
  msgstr ""
5245
 
5246
  #: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
5247
+ #: src/udaddons/updraftplus-addons.php:966
5248
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
5249
  msgstr ""
5250
 
5251
+ #: src/udaddons/updraftplus-addons.php:889
5252
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
5253
  msgstr ""
5254
 
5255
+ #: src/udaddons/updraftplus-addons.php:887
5256
  msgid "We failed to successfully connect to UpdraftPlus.Com"
5257
  msgstr ""
5258
 
5263
  msgid "Reporting"
5264
  msgstr ""
5265
 
5266
+ #: src/admin.php:5189
5267
  msgid "Options (raw)"
5268
  msgstr ""
5269
 
5270
+ #: src/addons/reporting.php:525, src/admin.php:792
5271
  msgid "Send a report only when there are warnings/errors"
5272
  msgstr ""
5273
 
5283
  msgid "See also the \"More Files\" add-on from our shop."
5284
  msgstr ""
5285
 
5286
+ #: src/backup.php:3424, src/class-updraftplus.php:861
5287
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
5288
  msgstr ""
5289
 
5290
+ #: src/class-updraftplus.php:845
5291
  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)"
5292
  msgstr ""
5293
 
5294
+ #: src/udaddons/options.php:512
5295
  msgid "Manage Addons"
5296
  msgstr ""
5297
 
5298
+ #: src/udaddons/options.php:490, src/udaddons/options.php:490
5299
  msgid "Buy It"
5300
  msgstr ""
5301
 
5302
+ #: src/udaddons/options.php:489
5303
  msgid "Get it from the UpdraftPlus.Com Store"
5304
  msgstr ""
5305
 
5306
+ #: src/udaddons/options.php:483, src/udaddons/options.php:485
5307
  msgid "activate it on this site"
5308
  msgstr ""
5309
 
5310
+ #: src/udaddons/options.php:485
5311
  msgid "You have an inactive purchase"
5312
  msgstr ""
5313
 
5314
+ #: src/udaddons/options.php:477
5315
  msgid "Assigned to this site"
5316
  msgstr ""
5317
 
5318
+ #: src/udaddons/options.php:474
5319
  msgid "Available for this site (via your all-addons purchase)"
5320
  msgstr ""
5321
 
5322
+ #: src/udaddons/options.php:468
5323
  msgid "(apparently a pre-release or withdrawn release)"
5324
  msgstr ""
5325
 
5326
+ #: src/udaddons/options.php:423
5327
  msgid "Go here"
5328
  msgstr ""
5329
 
5330
+ #: src/udaddons/options.php:423
5331
  msgid "Need to get support?"
5332
  msgstr ""
5333
 
5334
+ #: src/udaddons/options.php:405
5335
  msgid "An error occurred when trying to retrieve your add-ons."
5336
  msgstr ""
5337
 
5338
+ #: src/udaddons/options.php:300
5339
  msgid "An unknown response was received. Response was:"
5340
  msgstr ""
5341
 
5342
+ #: src/udaddons/options.php:299
5343
  msgid "Claim not granted - your account login details were wrong"
5344
  msgstr ""
5345
 
5346
+ #: src/udaddons/options.php:297
5347
  msgid "Please wait whilst we make the claim..."
5348
  msgstr ""
5349
 
5350
+ #: src/udaddons/options.php:251
5351
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
5352
  msgstr ""
5353
 
5354
+ #: src/udaddons/options.php:244
5355
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
5356
  msgstr ""
5357
 
5358
+ #: src/udaddons/options.php:240
5359
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
5360
  msgstr ""
5361
 
5363
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
5364
  msgstr ""
5365
 
5366
+ #: src/admin.php:2874
5367
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
5368
  msgstr ""
5369
 
5370
+ #: src/admin.php:2950
5371
  msgid "Forgotten your details?"
5372
  msgstr ""
5373
 
5374
+ #: src/admin.php:2863
5375
  msgid "Not yet got an account (it's free)? Go get one!"
5376
  msgstr ""
5377
 
5378
+ #: src/admin.php:2929
5379
  msgid "Connect with your UpdraftPlus.Com account"
5380
  msgstr ""
5381
 
5417
  msgid "Your web-server does not have the %s module installed."
5418
  msgstr ""
5419
 
5420
+ #: src/addons/googlecloud.php:1074, src/methods/googledrive.php:1278
5421
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
5422
  msgstr ""
5423
 
5426
  msgid "Drop backup files here"
5427
  msgstr ""
5428
 
5429
+ #: src/admin.php:804
5430
  msgid "The web server returned an error code (try again, or check your web server logs)"
5431
  msgstr ""
5432
 
5433
+ #: src/admin.php:802
5434
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
5435
  msgstr ""
5436
 
5437
+ #: src/addons/wp-cli.php:115, src/admin.php:799
5438
  msgid "If you exclude both the database and the files, then you have excluded everything!"
5439
  msgstr ""
5440
 
5446
  msgid "Remote Storage Options"
5447
  msgstr ""
5448
 
5449
+ #: src/addons/autobackup.php:343, src/addons/autobackup.php:437
5450
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
5451
  msgstr ""
5452
 
5453
+ #: src/addons/autobackup.php:303, src/addons/autobackup.php:1085
5454
  msgid "Remember this choice for next time (you will still have the chance to change it)"
5455
  msgstr ""
5456
 
5463
  msgid "You can send a backup to more than one destination with an add-on."
5464
  msgstr ""
5465
 
5466
+ #: src/admin.php:3416
5467
  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."
5468
  msgstr ""
5469
 
5470
+ #: src/admin.php:3283
5471
  msgid "(%s%%, file %s of %s)"
5472
  msgstr ""
5473
 
5474
+ #: src/addons/autobackup.php:304, src/addons/autobackup.php:1090,
5475
  #: src/addons/lockadmin.php:160
5476
  msgid "Read more about how this works..."
5477
  msgstr ""
5504
  msgid "Backup is of: %s."
5505
  msgstr ""
5506
 
5507
+ #: src/admin.php:894
5508
  msgid "%s settings test result:"
5509
  msgstr ""
5510
 
5511
+ #: src/admin.php:4140, src/admin.php:4142
5512
  msgid "(Not finished)"
5513
  msgstr ""
5514
 
5515
+ #: src/admin.php:4142
5516
  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."
5517
  msgstr ""
5518
 
5524
  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)."
5525
  msgstr ""
5526
 
5527
+ #: src/admin.php:3384
5528
  msgid "Job ID: %s"
5529
  msgstr ""
5530
 
5531
+ #: src/admin.php:3364
5532
  msgid "last activity: %ss ago"
5533
  msgstr ""
5534
 
5535
+ #: src/admin.php:3363
5536
  msgid "next resumption: %d (after %ss)"
5537
  msgstr ""
5538
 
5539
+ #: src/admin.php:3346, src/central/bootstrap.php:444,
5540
  #: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
5541
  #: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
5542
  msgid "Unknown"
5543
  msgstr ""
5544
 
5545
+ #: src/admin.php:3297
5546
  msgid "Backup finished"
5547
  msgstr ""
5548
 
5549
+ #: src/admin.php:3292
5550
  msgid "Waiting until scheduled time to retry because of errors"
5551
  msgstr ""
5552
 
5553
+ #: src/admin.php:3288
5554
  msgid "Pruning old backup sets"
5555
  msgstr ""
5556
 
5557
+ #: src/admin.php:3275
5558
  msgid "Uploading files to remote storage"
5559
  msgstr ""
5560
 
5561
+ #: src/admin.php:3344
5562
  msgid "Encrypted database"
5563
  msgstr ""
5564
 
5565
+ #: src/admin.php:3336
5566
  msgid "Encrypting database"
5567
  msgstr ""
5568
 
5569
+ #: src/admin.php:3310
5570
  msgid "Created database backup"
5571
  msgstr ""
5572
 
5573
+ #: src/admin.php:3323
5574
  msgid "table: %s"
5575
  msgstr ""
5576
 
5577
+ #: src/admin.php:3321
5578
  msgid "Creating database backup"
5579
  msgstr ""
5580
 
5581
+ #: src/admin.php:3266
5582
  msgid "Created file backup zips"
5583
  msgstr ""
5584
 
5585
+ #: src/admin.php:3253
5586
  msgid "Creating file backup zips"
5587
  msgstr ""
5588
 
5589
+ #: src/admin.php:3248
5590
  msgid "Backup begun"
5591
  msgstr ""
5592
 
5593
+ #: src/admin.php:1151
5594
  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."
5595
  msgstr ""
5596
 
5606
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
5607
  msgstr ""
5608
 
5609
+ #: src/class-updraftplus.php:3002
5610
  msgid "The backup has not finished; a resumption is scheduled"
5611
  msgstr ""
5612
 
5613
+ #: src/class-updraftplus.php:2022
5614
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
5615
  msgstr ""
5616
 
5619
  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)."
5620
  msgstr ""
5621
 
5622
+ #: src/admin.php:2638
5623
  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)."
5624
  msgstr ""
5625
 
5626
+ #: src/addons/autobackup.php:1104, src/admin.php:848
5627
  msgid "Proceed with update"
5628
  msgstr ""
5629
 
5630
+ #: src/addons/autobackup.php:1097
5631
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
5632
  msgstr ""
5633
 
5634
+ #: src/addons/autobackup.php:139, src/addons/autobackup.php:1046
5635
  msgid "UpdraftPlus Automatic Backups"
5636
  msgstr ""
5637
 
5638
+ #: src/addons/autobackup.php:529
5639
  msgid "Errors have occurred:"
5640
  msgstr ""
5641
 
5642
+ #: src/addons/autobackup.php:501
5643
  msgid "Creating backup with UpdraftPlus..."
5644
  msgstr ""
5645
 
5646
+ #: src/addons/autobackup.php:446, src/addons/autobackup.php:576,
5647
+ #: src/addons/autobackup.php:627
5648
  msgid "Automatic Backup"
5649
  msgstr ""
5650
 
5651
+ #: src/addons/autobackup.php:437
5652
  msgid "Creating database backup with UpdraftPlus..."
5653
  msgstr ""
5654
 
5655
+ #: src/addons/autobackup.php:403
5656
  msgid "themes"
5657
  msgstr ""
5658
 
5659
+ #: src/addons/autobackup.php:396
5660
  msgid "plugins"
5661
  msgstr ""
5662
 
5663
+ #: src/addons/autobackup.php:347, src/addons/autobackup.php:444
5664
  msgid "Starting automatic backup..."
5665
  msgstr ""
5666
 
5667
+ #: src/addons/autobackup.php:343
5668
  msgid "Creating %s and database backup with UpdraftPlus..."
5669
  msgstr ""
5670
 
5671
+ #: src/addons/autobackup.php:301
5672
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
5673
  msgstr ""
5674
 
5699
  msgid "Support"
5700
  msgstr ""
5701
 
5702
+ #: src/class-updraftplus.php:4237
5703
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
5704
  msgstr ""
5705
 
5706
+ #: src/class-updraftplus.php:4229
5707
  msgid "This database backup is missing core WordPress tables: %s"
5708
  msgstr ""
5709
 
5710
+ #: src/class-updraftplus.php:3975
5711
  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."
5712
  msgstr ""
5713
 
5714
+ #: src/class-updraftplus.php:3974, src/class-updraftplus.php:3981
5715
  msgid "%s version: %s"
5716
  msgstr ""
5717
 
5718
+ #: src/class-updraftplus.php:3850
5719
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
5720
  msgstr ""
5721
 
5722
+ #: src/addons/autobackup.php:1072, src/admin.php:976,
5723
  #: src/includes/updraftplus-notices.php:171
5724
  msgid "Be safe with an automatic backup"
5725
  msgstr ""
5726
 
5727
+ #: src/admin.php:2591
5728
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
5729
  msgstr ""
5730
 
5731
+ #: src/admin.php:840
5732
  msgid "The file was uploaded."
5733
  msgstr ""
5734
 
5735
+ #: src/admin.php:839
5736
  msgid "Unknown server response status:"
5737
  msgstr ""
5738
 
5739
+ #: src/admin.php:838
5740
  msgid "Unknown server response:"
5741
  msgstr ""
5742
 
5743
+ #: src/admin.php:837
5744
  msgid "This decryption key will be attempted:"
5745
  msgstr ""
5746
 
5747
+ #: src/admin.php:836
5748
  msgid "Follow this link to attempt decryption and download the database file to your computer."
5749
  msgstr ""
5750
 
5751
+ #: src/admin.php:835
5752
  msgid "Upload error"
5753
  msgstr ""
5754
 
5755
+ #: src/admin.php:834
5756
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
5757
  msgstr ""
5758
 
5759
+ #: src/admin.php:833
5760
  msgid "Upload error:"
5761
  msgstr ""
5762
 
5763
+ #: src/admin.php:832
5764
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
5765
  msgstr ""
5766
 
5767
+ #: src/admin.php:823
5768
  msgid "Download to your computer"
5769
  msgstr ""
5770
 
5771
+ #: src/admin.php:822
5772
  msgid "Delete from your web server"
5773
  msgstr ""
5774
 
5775
+ #: src/admin.php:4112
5776
  msgid "You appear to be missing one or more archives from this multi-archive set."
5777
  msgstr ""
5778
 
5779
+ #: src/admin.php:4109
5780
  msgid "(%d archive(s) in set)."
5781
  msgstr ""
5782
 
5788
  msgid "Error: the server sent us a response (JSON) which we did not understand."
5789
  msgstr ""
5790
 
5791
+ #: src/admin.php:813
5792
  msgid "Warnings:"
5793
  msgstr ""
5794
 
5795
+ #: src/admin.php:812
5796
  msgid "Error: the server sent an empty response."
5797
  msgstr ""
5798
 
5799
+ #: src/admin.php:2317
5800
  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?"
5801
  msgstr ""
5802
 
5870
  msgid "Looking for %s archive: file name: %s"
5871
  msgstr ""
5872
 
5873
+ #: src/addons/wp-cli.php:784, src/admin.php:4570
5874
  msgid "Final checks"
5875
  msgstr ""
5876
 
5882
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5883
  msgstr ""
5884
 
5885
+ #: src/admin.php:3817
5886
  msgid "Your wp-content directory server path: %s"
5887
  msgstr ""
5888
 
5889
+ #: src/admin.php:829
5890
  msgid "Raw backup history"
5891
  msgstr ""
5892
 
5894
  msgid "Show raw backup and file list"
5895
  msgstr ""
5896
 
5897
+ #: src/admin.php:811
5898
  msgid "Processing files - please wait..."
5899
  msgstr ""
5900
 
5903
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
5904
  msgstr ""
5905
 
5906
+ #: src/class-updraftplus.php:3858
5907
  msgid "Failed to open database file."
5908
  msgstr ""
5909
 
5910
+ #: src/admin.php:5154
5911
  msgid "Known backups (raw)"
5912
  msgstr ""
5913
 
5925
 
5926
  #: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
5927
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
5928
+ #: src/admin.php:1151, src/admin.php:2596, src/backup.php:3431,
5929
+ #: src/class-updraftplus.php:4097, src/class-updraftplus.php:4097,
5930
  #: src/updraftplus.php:157
5931
  msgid "Go here for more information."
5932
  msgstr ""
5933
 
5934
+ #: src/admin.php:810
5935
  msgid "Some files are still downloading or being processed - please wait."
5936
  msgstr ""
5937
 
5938
+ #: src/class-updraftplus.php:3945, src/class-updraftplus.php:3965
5939
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
5940
  msgstr ""
5941
 
5977
 
5978
  #: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
5979
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
5980
+ #: src/methods/googledrive.php:1120, src/methods/openstack-base.php:455,
5981
  #: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
5982
  #: src/methods/stream-base.php:335
5983
  msgid "%s Error"
5987
  msgid "%s error - failed to upload file"
5988
  msgstr ""
5989
 
5990
+ #: src/class-updraftplus.php:1255, src/methods/cloudfiles.php:211
5991
  msgid "%s error - failed to re-assemble chunks"
5992
  msgstr ""
5993
 
6002
  msgstr ""
6003
 
6004
  #: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
6005
+ #: src/admin.php:2288, src/admin.php:2309, src/admin.php:2317,
6006
+ #: src/class-updraftplus.php:997, src/class-updraftplus.php:1003,
6007
+ #: src/class-updraftplus.php:3831, src/class-updraftplus.php:3833,
6008
+ #: src/class-updraftplus.php:3998, src/class-updraftplus.php:4005,
6009
+ #: src/class-updraftplus.php:4076, src/methods/googledrive.php:403,
6010
  #: src/methods/s3.php:341
6011
  msgid "Error: %s"
6012
  msgstr ""
6013
 
6014
+ #: src/admin.php:3736
6015
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6016
  msgstr ""
6017
 
6018
+ #: src/admin.php:3734
6019
  msgid "Backup directory specified does <b>not</b> exist."
6020
  msgstr ""
6021
 
6022
+ #: src/admin.php:3398, src/admin.php:3685
6023
  msgid "Warning: %s"
6024
  msgstr ""
6025
 
6043
  msgid "Warnings encountered:"
6044
  msgstr ""
6045
 
6046
+ #: src/class-updraftplus.php:2986
6047
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6048
  msgstr ""
6049
 
6050
+ #: src/class-updraftplus.php:874
6051
  msgid "Your free disk space is very low - only %s Mb remain"
6052
  msgstr ""
6053
 
6099
  msgid "Please supply the requested information, and then continue."
6100
  msgstr ""
6101
 
6102
+ #: src/class-updraftplus.php:4016, src/restorer.php:2233
6103
  msgid "Site information:"
6104
  msgstr ""
6105
 
6107
  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."
6108
  msgstr ""
6109
 
6110
+ #: src/admin.php:2591, src/class-updraftplus.php:4009, src/restorer.php:2647
6111
  msgid "Warning:"
6112
  msgstr ""
6113
 
6114
+ #: src/class-updraftplus.php:3998, src/class-updraftplus.php:4001,
6115
  #: src/restorer.php:530
6116
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6117
  msgstr ""
6120
  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."
6121
  msgstr ""
6122
 
6123
+ #: src/addons/azure.php:601, src/admin.php:3909,
6124
  #: src/methods/updraftvault.php:306
6125
  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."
6126
  msgstr ""
6127
 
6128
+ #: src/admin.php:849, src/includes/updraftplus-tour.php:89
6129
  msgid "Close"
6130
  msgstr ""
6131
 
6132
+ #: src/addons/autobackup.php:349, src/addons/autobackup.php:441,
6133
+ #: src/admin.php:803, src/methods/remotesend.php:69,
6134
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:228,
6135
  #: src/methods/remotesend.php:245, src/methods/remotesend.php:293
6136
  msgid "Unexpected response:"
6137
  msgstr ""
6138
 
6139
+ #: src/addons/reporting.php:523, src/admin.php:798
6140
  msgid "To send to more than one address, separate each address with a comma."
6141
  msgstr ""
6142
 
6143
+ #: src/admin.php:827
6144
  msgid "PHP information"
6145
  msgstr ""
6146
 
6164
  msgid "Also delete from remote storage"
6165
  msgstr ""
6166
 
6167
+ #: src/admin.php:3087
6168
  msgid "Latest UpdraftPlus.com news:"
6169
  msgstr ""
6170
 
6192
  msgid "News"
6193
  msgstr ""
6194
 
6195
+ #: src/admin.php:1695, src/includes/class-wpadmin-commands.php:506
6196
  msgid "Backup set not found"
6197
  msgstr ""
6198
 
6214
  msgid "Blog link"
6215
  msgstr ""
6216
 
6217
+ #: src/admin.php:893
6218
  msgid "Testing %s Settings..."
6219
  msgstr ""
6220
 
6223
  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."
6224
  msgstr ""
6225
 
6226
+ #: src/admin.php:1167
6227
  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."
6228
  msgstr ""
6229
 
6230
+ #: src/admin.php:1167
6231
  msgid "Notice"
6232
  msgstr ""
6233
 
6235
  msgid "Errors encountered:"
6236
  msgstr ""
6237
 
6238
+ #: src/admin.php:795
6239
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
6240
  msgstr ""
6241
 
6242
+ #: src/admin.php:809
6243
  msgid "Begun looking for this entity"
6244
  msgstr ""
6245
 
6263
  msgid "Time taken (seconds):"
6264
  msgstr ""
6265
 
6266
+ #: src/addons/migrator.php:1302, src/admin.php:814
6267
  msgid "Errors:"
6268
  msgstr ""
6269
 
6362
  msgstr ""
6363
 
6364
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
6365
+ #: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2945,
6366
  #: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
6367
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
6368
  msgid "Password"
6430
  msgstr ""
6431
 
6432
  #: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
6433
+ #: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3464,
6434
+ #: src/admin.php:3500, src/admin.php:3510, src/methods/addon-base-v2.php:313,
6435
  #: src/methods/stream-base.php:356
6436
  msgid "Failed"
6437
  msgstr ""
6456
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
6457
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
6458
  #: src/methods/addon-base-v2.php:285, src/methods/ftp.php:42,
6459
+ #: src/methods/googledrive.php:202, src/methods/googledrive.php:204,
6460
  #: src/methods/remotesend.php:278, src/methods/stream-base.php:27,
6461
  #: src/methods/stream-base.php:163, src/methods/stream-base.php:169,
6462
  #: src/methods/stream-base.php:203, src/methods/stream-base.php:278
6653
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
6654
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
6655
  #: src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530,
6656
+ #: src/addons/webdav.php:253, src/admin.php:869,
6657
+ #: src/includes/class-remote-send.php:454, src/methods/addon-base-v2.php:305,
6658
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
6659
  #: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
6660
  #: src/methods/ftp.php:412, src/methods/ftp.php:416,
6696
  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."
6697
  msgstr ""
6698
 
6699
+ #: src/admin.php:892, src/methods/backup-module.php:315
6700
  msgid "Test %s Settings"
6701
  msgstr ""
6702
 
6703
+ #: src/class-updraftplus.php:1298, src/class-updraftplus.php:1342,
6704
  #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
6705
  msgid "Error opening local file: Failed to download"
6706
  msgstr ""
6717
  msgstr ""
6718
 
6719
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
6720
+ #: src/class-updraftplus.php:1140, src/methods/cloudfiles.php:130,
6721
+ #: src/methods/googledrive.php:1034, src/methods/googledrive.php:1039
6722
  msgid "%s Error: Failed to open local file"
6723
  msgstr ""
6724
 
6734
  msgid "Cloud Files authentication failed"
6735
  msgstr ""
6736
 
6737
+ #: src/methods/googledrive.php:1273
6738
  msgid "Authenticate with Google"
6739
  msgstr ""
6740
 
6741
  #: src/addons/googlecloud.php:1027, src/addons/onedrive.php:1181,
6742
+ #: src/methods/googledrive.php:1237
6743
  msgid "Client Secret"
6744
  msgstr ""
6745
 
6746
+ #: src/addons/googlecloud.php:1022, src/methods/googledrive.php:1234
6747
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
6748
  msgstr ""
6749
 
6750
  #: src/addons/googlecloud.php:1019, src/addons/onedrive.php:1177,
6751
+ #: src/methods/googledrive.php:1233
6752
  msgid "Client ID"
6753
  msgstr ""
6754
 
6755
+ #: src/methods/googledrive.php:1207
6756
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
6757
  msgstr ""
6758
 
6759
+ #: src/addons/googlecloud.php:997, src/methods/googledrive.php:1207
6760
  msgid "Select 'Web Application' as the application type."
6761
  msgstr ""
6762
 
6763
+ #: src/addons/googlecloud.php:995, src/methods/googledrive.php:1205
6764
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
6765
  msgstr ""
6766
 
6767
  #: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
6768
+ #: src/addons/googlecloud.php:866, src/methods/googledrive.php:580,
6769
+ #: src/methods/googledrive.php:581, src/methods/googledrive.php:591,
6770
+ #: src/methods/googledrive.php:592
6771
  msgid "Account is not authorized."
6772
  msgstr ""
6773
 
6774
+ #: src/methods/googledrive.php:502, src/methods/googledrive.php:548,
6775
+ #: src/methods/googledrive.php:554, src/methods/googledrive.php:556,
6776
  #: src/methods/stream-base.php:219
6777
  msgid "Failed to upload to %s"
6778
  msgstr ""
6779
 
6780
+ #: src/methods/googledrive.php:531
6781
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
6782
  msgstr ""
6783
 
6784
+ #: src/methods/googledrive.php:624, src/methods/googledrive.php:660
6785
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
6786
  msgstr ""
6787
 
6788
  #: src/addons/googlecloud.php:718, src/addons/onedrive.php:939,
6789
+ #: src/methods/googledrive.php:475
6790
  msgid "you have authenticated your %s account."
6791
  msgstr ""
6792
 
6794
  #: src/addons/onedrive.php:939, src/addons/sftp.php:591,
6795
  #: src/addons/sftp.php:595, src/addons/wp-cli.php:515,
6796
  #: src/methods/addon-base-v2.php:327, src/methods/cloudfiles.php:575,
6797
+ #: src/methods/googledrive.php:475, src/methods/openstack-base.php:530,
6798
  #: src/methods/s3.php:1155, src/methods/stream-base.php:372
6799
  msgid "Success"
6800
  msgstr ""
6801
 
6802
  #: src/addons/onedrive.php:893, src/methods/dropbox.php:844,
6803
+ #: src/methods/dropbox.php:853, src/methods/googledrive.php:439
6804
  msgid "Your %s quota usage: %s %% used, %s available"
6805
  msgstr ""
6806
 
6807
+ #: src/addons/googlecloud.php:444, src/methods/googledrive.php:409
6808
  msgid "Authorization failed"
6809
  msgstr ""
6810
 
6811
+ #: src/addons/googlecloud.php:436, src/methods/googledrive.php:401
6812
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
6813
  msgstr ""
6814
 
6831
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
6832
  msgstr ""
6833
 
6834
+ #: src/admin.php:3468, src/admin.php:3503, src/admin.php:3507,
6835
+ #: src/includes/class-remote-send.php:327,
6836
  #: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
6837
  #: src/restorer.php:2888, src/restorer.php:2993
6838
  msgid "OK"
6850
  msgid "will restore as:"
6851
  msgstr ""
6852
 
6853
+ #: src/class-updraftplus.php:3987, src/restorer.php:2215,
6854
  #: src/restorer.php:2304, src/restorer.php:2330
6855
  msgid "Old table prefix:"
6856
  msgstr ""
6857
 
6858
  #: src/addons/reporting.php:72, src/addons/reporting.php:181,
6859
+ #: src/backup.php:1135, src/class-updraftplus.php:3914
6860
  msgid "Backup of:"
6861
  msgstr ""
6862
 
6944
  msgid "Archive is expected to be size:"
6945
  msgstr ""
6946
 
6947
+ #: src/admin.php:4518
6948
  msgid "If making a request for support, please include this information:"
6949
  msgstr ""
6950
 
6951
+ #: src/admin.php:4517
6952
  msgid "ABORT: Could not find the information on which entities to restore."
6953
  msgstr ""
6954
 
6955
+ #: src/addons/wp-cli.php:647, src/admin.php:4496
6956
  msgid "UpdraftPlus Restoration: Progress"
6957
  msgstr ""
6958
 
6959
+ #: src/admin.php:4488
6960
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
6961
  msgstr ""
6962
 
6963
+ #: src/admin.php:4170
6964
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
6965
  msgstr ""
6966
 
6967
+ #: src/admin.php:4268
6968
  msgid "Delete this backup set"
6969
  msgstr ""
6970
 
6971
+ #: src/admin.php:3921
6972
  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."
6973
  msgstr ""
6974
 
6975
+ #: src/admin.php:3918
6976
  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."
6977
  msgstr ""
6978
 
6979
+ #: src/admin.php:3916
6980
  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)."
6981
  msgstr ""
6982
 
7017
  msgid "Use the server's SSL certificates"
7018
  msgstr ""
7019
 
7020
+ #: src/admin.php:3738
7021
  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."
7022
  msgstr ""
7023
 
7024
+ #: src/admin.php:3738
7025
  msgid "or, to reset this option"
7026
  msgstr ""
7027
 
7028
+ #: src/admin.php:3738
7029
  msgid "Follow this link to attempt to create the directory and set the permissions"
7030
  msgstr ""
7031
 
7032
+ #: src/admin.php:3730
7033
  msgid "Backup directory specified is writable, which is good."
7034
  msgstr ""
7035
 
7061
  msgid "Advanced / Debugging Settings"
7062
  msgstr ""
7063
 
7064
+ #: src/admin.php:826
7065
  msgid "Requesting start of backup..."
7066
  msgstr ""
7067
 
7068
+ #: src/addons/morefiles.php:311, src/admin.php:843
7069
  msgid "Cancel"
7070
  msgstr ""
7071
 
7072
  #: src/addons/incremental.php:235, src/addons/reporting.php:245,
7073
+ #: src/admin.php:4004
7074
  msgid "None"
7075
  msgstr ""
7076
 
7086
  msgid "Database encryption phrase"
7087
  msgstr ""
7088
 
7089
+ #: src/admin.php:2935, src/templates/wp-admin/settings/form-contents.php:255,
7090
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7091
  msgid "Email"
7092
  msgstr ""
7099
  msgid "Exclude these:"
7100
  msgstr ""
7101
 
7102
+ #: src/admin.php:3817
7103
  msgid "Any other directories found inside wp-content"
7104
  msgstr ""
7105
 
7115
  msgid "To fix the time at which a backup should take place,"
7116
  msgstr ""
7117
 
7118
+ #: src/addons/incremental.php:244, src/admin.php:3724
7119
  msgid "Monthly"
7120
  msgstr ""
7121
 
7122
+ #: src/addons/incremental.php:243, src/admin.php:3723
7123
  msgid "Fortnightly"
7124
  msgstr ""
7125
 
7126
+ #: src/addons/incremental.php:242, src/admin.php:3722
7127
  msgid "Weekly"
7128
  msgstr ""
7129
 
7130
+ #: src/addons/incremental.php:241, src/admin.php:3721
7131
  msgid "Daily"
7132
  msgstr ""
7133
 
7134
+ #: src/admin.php:851, src/admin.php:3699
7135
  msgid "Download log file"
7136
  msgstr ""
7137
 
7138
+ #: src/admin.php:3571
7139
  msgid "The folder exists, but your webserver does not have permission to write to it."
7140
  msgstr ""
7141
 
7142
+ #: src/admin.php:3566
7143
  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"
7144
  msgstr ""
7145
 
7146
+ #: src/admin.php:3552
7147
  msgid "The request to the filesystem to create the directory failed."
7148
  msgstr ""
7149
 
7150
+ #: src/admin.php:844, src/admin.php:3461, src/admin.php:3495,
7151
+ #: src/admin.php:4268, src/includes/class-remote-send.php:544,
7152
  #: src/templates/wp-admin/settings/existing-backups-table.php:155,
7153
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7154
  msgid "Delete"
7155
  msgstr ""
7156
 
7157
+ #: src/admin.php:3415
7158
  msgid "show log"
7159
  msgstr ""
7160
 
7215
  msgid "Yes"
7216
  msgstr ""
7217
 
7218
+ #: src/admin.php:5366, src/admin.php:5370,
7219
  #: src/templates/wp-admin/advanced/site-info.php:45,
7220
  #: src/templates/wp-admin/advanced/site-info.php:51,
7221
  #: src/templates/wp-admin/advanced/site-info.php:58,
7255
  msgid "Do read this helpful article of useful things to know before restoring."
7256
  msgstr ""
7257
 
7258
+ #: src/class-updraftplus.php:3948
7259
  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"
7260
  msgstr ""
7261
 
7296
  msgid "Delete backup set"
7297
  msgstr ""
7298
 
7299
+ #: src/admin.php:825
7300
  msgid "Download error: the server sent us a response which we did not understand."
7301
  msgstr ""
7302
 
7305
  #: src/addons/migrator.php:1268, src/addons/migrator.php:1317,
7306
  #: src/addons/migrator.php:1555, src/addons/s3-enhanced.php:164,
7307
  #: src/addons/s3-enhanced.php:169, src/addons/s3-enhanced.php:171,
7308
+ #: src/addons/sftp.php:911, src/addons/webdav.php:203, src/admin.php:91,
7309
+ #: src/admin.php:817, src/includes/class-remote-send.php:266,
7310
+ #: src/includes/class-remote-send.php:293,
7311
+ #: src/includes/class-remote-send.php:299,
7312
+ #: src/includes/class-remote-send.php:362,
7313
+ #: src/includes/class-remote-send.php:421,
7314
+ #: src/includes/class-remote-send.php:462,
7315
+ #: src/includes/class-remote-send.php:472,
7316
+ #: src/includes/class-remote-send.php:477, src/methods/remotesend.php:74,
7317
  #: src/methods/remotesend.php:242, src/methods/remotesend.php:298,
7318
  #: src/methods/updraftvault.php:527, src/restorer.php:228,
7319
  #: src/restorer.php:256, src/restorer.php:1921
7320
  msgid "Error:"
7321
  msgstr ""
7322
 
7323
+ #: src/admin.php:808
7324
  msgid "calculating..."
7325
  msgstr ""
7326
 
7343
  msgid "This is a count of the contents of your Updraft directory"
7344
  msgstr ""
7345
 
7346
+ #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:202,
7347
+ #: src/methods/googledrive.php:204, src/methods/googledrive.php:475,
7348
+ #: src/methods/googledrive.php:502, src/methods/googledrive.php:531,
7349
+ #: src/methods/googledrive.php:538, src/methods/googledrive.php:548,
7350
+ #: src/methods/googledrive.php:554, src/methods/googledrive.php:556,
7351
+ #: src/methods/googledrive.php:1193, src/methods/googledrive.php:1200,
7352
+ #: src/methods/googledrive.php:1200, src/methods/googledrive.php:1233,
7353
+ #: src/methods/googledrive.php:1237, src/methods/googledrive.php:1248,
7354
+ #: src/methods/googledrive.php:1259
7355
  msgid "Google Drive"
7356
  msgstr ""
7357
 
7370
  msgid "More tasks:"
7371
  msgstr ""
7372
 
7373
+ #: src/admin.php:3114
7374
  msgid "Download most recently modified log file"
7375
  msgstr ""
7376
 
7378
  msgid "(Nothing yet logged)"
7379
  msgstr ""
7380
 
7381
+ #: src/addons/autobackup.php:344, src/addons/autobackup.php:439,
7382
+ #: src/admin.php:3070, src/admin.php:3076,
7383
  #: src/templates/wp-admin/settings/take-backup.php:64
7384
  msgid "Last log message"
7385
  msgstr ""
7386
 
7387
+ #: src/addons/migrator.php:271, src/admin.php:663, src/admin.php:850,
7388
+ #: src/admin.php:4170
7389
  msgid "Restore"
7390
  msgstr ""
7391
 
7392
+ #: src/admin.php:842, src/templates/wp-admin/settings/take-backup.php:50
7393
  msgid "Backup Now"
7394
  msgstr ""
7395
 
7398
  msgstr ""
7399
 
7400
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
7401
+ #: src/addons/wp-cli.php:431, src/admin.php:344, src/admin.php:3979,
7402
+ #: src/admin.php:4032, src/includes/class-remote-send.php:331,
7403
  #: src/includes/class-wpadmin-commands.php:157,
7404
  #: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
7405
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
7408
  msgid "Database"
7409
  msgstr ""
7410
 
7411
+ #: src/admin.php:334, src/admin.php:5161,
7412
  #: src/templates/wp-admin/settings/take-backup.php:23
7413
  msgid "Files"
7414
  msgstr ""
7417
  msgid "Next scheduled backups"
7418
  msgstr ""
7419
 
7420
+ #: src/admin.php:313
7421
  msgid "At the same time as the files backup"
7422
  msgstr ""
7423
 
7424
+ #: src/admin.php:303, src/admin.php:324, src/admin.php:331, src/admin.php:376,
7425
+ #: src/admin.php:407
7426
  msgid "Nothing currently scheduled"
7427
  msgstr ""
7428
 
7434
  msgid "JavaScript warning"
7435
  msgstr ""
7436
 
7437
+ #: src/admin.php:828, src/admin.php:3151
7438
  msgid "Delete Old Directories"
7439
  msgstr ""
7440
 
7441
+ #: src/admin.php:2638
7442
  msgid "Current limit is:"
7443
  msgstr ""
7444
 
7445
+ #: src/admin.php:2613
7446
  msgid "Your backup has been restored."
7447
  msgstr ""
7448
 
7458
  msgid "UpdraftPlus.Com"
7459
  msgstr ""
7460
 
7461
+ #: src/admin.php:5053
7462
  msgid "Your settings have been wiped."
7463
  msgstr ""
7464
 
7465
+ #: src/admin.php:2573
7466
  msgid "Backup directory successfully created."
7467
  msgstr ""
7468
 
7469
+ #: src/admin.php:2566
7470
  msgid "Backup directory could not be created"
7471
  msgstr ""
7472
 
7473
+ #: src/admin.php:3431
7474
  msgid "Old directory removal failed for some reason. You may want to do this manually."
7475
  msgstr ""
7476
 
7477
+ #: src/admin.php:3429
7478
  msgid "Old directories successfully removed."
7479
  msgstr ""
7480
 
7481
+ #: src/admin.php:3426, src/admin.php:3426
7482
  msgid "Remove old directories"
7483
  msgstr ""
7484
 
7485
  #: src/addons/migrator.php:340, src/addons/migrator.php:355,
7486
+ #: src/admin.php:2514, src/admin.php:2524, src/admin.php:2533,
7487
+ #: src/admin.php:2575, src/admin.php:3433
7488
  msgid "Return to UpdraftPlus Configuration"
7489
  msgstr ""
7490
 
7491
+ #: src/admin.php:821, src/admin.php:2514, src/admin.php:2524,
7492
+ #: src/admin.php:2533, src/admin.php:2575, src/admin.php:3433,
7493
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7494
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7495
  msgid "Actions"
7496
  msgstr ""
7497
 
7498
+ #: src/admin.php:2409
7499
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
7500
  msgstr ""
7501
 
7502
+ #: src/admin.php:2309
7503
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
7504
  msgstr ""
7505
 
7506
+ #: src/admin.php:2205
7507
  msgid "No local copy present."
7508
  msgstr ""
7509
 
7510
+ #: src/admin.php:2202
7511
  msgid "Download in progress"
7512
  msgstr ""
7513
 
7514
+ #: src/admin.php:820, src/admin.php:2191
7515
  msgid "File ready."
7516
  msgstr ""
7517
 
7518
+ #: src/admin.php:2172
7519
  msgid "Download failed"
7520
  msgstr ""
7521
 
7522
+ #: src/addons/wp-cli.php:518, src/admin.php:818,
7523
+ #: src/class-updraftplus.php:1298, src/class-updraftplus.php:1342,
7524
  #: src/includes/class-filesystem-functions.php:368,
7525
  #: src/includes/class-storage-methods-interface.php:324,
7526
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
7530
  msgid "Error"
7531
  msgstr ""
7532
 
7533
+ #: src/admin.php:1959
7534
  msgid "Could not find that job - perhaps it has already finished?"
7535
  msgstr ""
7536
 
7537
+ #: src/admin.php:1951
7538
  msgid "Job deleted"
7539
  msgstr ""
7540
 
7541
+ #: src/admin.php:2050, src/includes/class-commands.php:833
7542
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
7543
  msgstr ""
7544
 
7545
+ #: src/admin.php:895
7546
  msgid "Nothing yet logged"
7547
  msgstr ""
7548
 
7549
+ #: src/admin.php:1163
7550
  msgid "Please consult this FAQ if you have problems backing up."
7551
  msgstr ""
7552
 
7553
+ #: src/admin.php:1163
7554
  msgid "Your website is hosted using the %s web server."
7555
  msgstr ""
7556
 
7557
+ #: src/admin.php:1159
7558
  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."
7559
  msgstr ""
7560
 
7561
+ #: src/admin.php:1155
7562
  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."
7563
  msgstr ""
7564
 
7565
+ #: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1147,
7566
+ #: src/admin.php:1151, src/admin.php:1155, src/admin.php:1159,
7567
+ #: src/admin.php:1163, src/admin.php:1172, src/admin.php:3909,
7568
+ #: src/admin.php:3916, src/admin.php:3918, src/admin.php:5344,
7569
  #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
7570
  #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
7571
  #: src/methods/s3.php:859, src/methods/s3.php:863,
7576
  msgid "Warning"
7577
  msgstr ""
7578
 
7579
+ #: src/admin.php:1092
7580
  msgid "Add-Ons / Pro Support"
7581
  msgstr ""
7582
 
7583
+ #: src/admin.php:679, src/admin.php:1090, src/admin.php:2800
7584
  msgid "Settings"
7585
  msgstr ""
7586
 
7600
  msgid "Like UpdraftPlus and can spare one minute?"
7601
  msgstr ""
7602
 
7603
+ #: src/addons/azure.php:268, src/class-updraftplus.php:3636,
7604
+ #: src/methods/googledrive.php:1120, src/methods/s3.php:341
7605
  msgid "File not found"
7606
  msgstr ""
7607
 
7609
  msgid "The decryption key used:"
7610
  msgstr ""
7611
 
7612
+ #: src/class-updraftplus.php:3843,
7613
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
7614
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
7615
  msgstr ""
7616
 
7617
+ #: src/class-updraftplus.php:3831,
7618
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
7619
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
7620
  msgstr ""
7623
  msgid "Could not open the backup file for writing"
7624
  msgstr ""
7625
 
7626
+ #: src/class-updraftplus.php:3408
7627
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
7628
  msgstr ""
7629
 
7630
+ #: src/class-updraftplus.php:3392
7631
  msgid "Could not read the directory"
7632
  msgstr ""
7633
 
7634
+ #: src/admin.php:2251, src/backup.php:1359
7635
  msgid "Backup directory (%s) is not writable, or does not exist."
7636
  msgstr ""
7637
 
7639
  msgid "WordPress backup is complete"
7640
  msgstr ""
7641
 
7642
+ #: src/class-updraftplus.php:2998
7643
  msgid "The backup attempt has finished, apparently unsuccessfully"
7644
  msgstr ""
7645
 
7646
+ #: src/class-updraftplus.php:2980
7647
  msgid "The backup apparently succeeded and is now complete"
7648
  msgstr ""
7649
 
7651
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
7652
  msgstr ""
7653
 
7654
+ #: src/class-updraftplus.php:2680
7655
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
7656
  msgstr ""
7657
 
7658
+ #: src/class-updraftplus.php:1796
7659
  msgid "Others"
7660
  msgstr ""
7661
 
7662
+ #: src/addons/multisite.php:500, src/class-updraftplus.php:1781
7663
  msgid "Uploads"
7664
  msgstr ""
7665
 
7666
+ #: src/class-updraftplus.php:1780
7667
  msgid "Themes"
7668
  msgstr ""
7669
 
7670
+ #: src/class-updraftplus.php:1779
7671
  msgid "Plugins"
7672
  msgstr ""
7673
 
7674
+ #: src/class-updraftplus.php:624
7675
  msgid "No log files were found."
7676
  msgstr ""
7677
 
7678
+ #: src/admin.php:2121, src/admin.php:2125, src/class-updraftplus.php:619
7679
  msgid "The log file could not be read."
7680
  msgstr ""
7681
 
7682
+ #: src/admin.php:1192, src/admin.php:1213, src/admin.php:1232,
7683
+ #: src/class-updraftplus.php:584, src/class-updraftplus.php:619,
7684
+ #: src/class-updraftplus.php:624, src/class-updraftplus.php:629
7685
  msgid "UpdraftPlus notice:"
7686
  msgstr ""
7687
 
languages/updraftplus-ar.po CHANGED
@@ -11,6 +11,10 @@ msgstr ""
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
14
  #: src/udaddons/updraftplus-addons.php:268,
15
  #: src/udaddons/updraftplus-addons.php:280
16
  msgid "go here"
@@ -25,7 +29,7 @@ msgstr ""
25
  msgid "Authentication"
26
  msgstr ""
27
 
28
- #: src/admin.php:924
29
  msgid "You must select at least one remote storage destination to upload this backup set to."
30
  msgstr ""
31
 
@@ -45,11 +49,11 @@ msgstr ""
45
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
46
  msgstr ""
47
 
48
- #: src/admin.php:951
49
  msgid "UpdraftClone key is required."
50
  msgstr ""
51
 
52
- #: src/admin.php:942
53
  msgid "The preparation of the clone data has been aborted."
54
  msgstr ""
55
 
@@ -69,7 +73,7 @@ msgstr ""
69
  msgid "Your database user does not have permission to drop tables"
70
  msgstr ""
71
 
72
- #: src/admin.php:2960
73
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
74
  msgstr ""
75
 
@@ -237,39 +241,39 @@ msgstr ""
237
  msgid "WordPress installed"
238
  msgstr ""
239
 
240
- #: src/admin.php:5422
241
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
242
  msgstr ""
243
 
244
- #: src/admin.php:3826
245
  msgid "Exclude these from"
246
  msgstr ""
247
 
248
- #: src/admin.php:950
249
  msgid "The exclusion rule which you are trying to add already exists"
250
  msgstr ""
251
 
252
- #: src/admin.php:949
253
  msgid "Please enter a valid file name prefix"
254
  msgstr ""
255
 
256
- #: src/admin.php:948
257
  msgid "Please enter characters that begin the filename which you would like to exclude"
258
  msgstr ""
259
 
260
- #: src/admin.php:947
261
  msgid "Please enter a valid file extension"
262
  msgstr ""
263
 
264
- #: src/admin.php:946
265
  msgid "Please enter a file extension, like zip"
266
  msgstr ""
267
 
268
- #: src/admin.php:945
269
  msgid "Please select a file/folder which you would like to exclude"
270
  msgstr ""
271
 
272
- #: src/admin.php:944
273
  msgid "Are you sure you want to remove this exclusion rule?"
274
  msgstr ""
275
 
@@ -293,15 +297,15 @@ msgstr ""
293
  msgid "failed to upload file to %s (see log file for more)"
294
  msgstr ""
295
 
296
- #: src/admin.php:5418
297
  msgid "Dashboard:"
298
  msgstr ""
299
 
300
- #: src/admin.php:5417
301
  msgid "Front page:"
302
  msgstr ""
303
 
304
- #: src/admin.php:5416
305
  msgid "Your clone has started and will be available at the following URLs once it is ready."
306
  msgstr ""
307
 
@@ -313,11 +317,11 @@ msgstr ""
313
  msgid "Current clones"
314
  msgstr ""
315
 
316
- #: src/class-updraftplus.php:3045
317
  msgid "Your clone will now deploy this data to re-create your site."
318
  msgstr ""
319
 
320
- #: src/admin.php:941
321
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
322
  msgstr ""
323
 
@@ -363,7 +367,7 @@ msgstr ""
363
  msgid "Unable to get renew date"
364
  msgstr ""
365
 
366
- #: src/admin.php:904
367
  msgid "The backup was aborted"
368
  msgstr ""
369
 
@@ -617,7 +621,7 @@ msgstr ""
617
  msgid "You can buy more temporary clone tokens here."
618
  msgstr ""
619
 
620
- #: src/admin.php:5373
621
  msgid "Forbid non-administrators to login to WordPress on your clone"
622
  msgstr ""
623
 
@@ -633,23 +637,23 @@ msgstr ""
633
  msgid "Other great plugins"
634
  msgstr ""
635
 
636
- #: src/admin.php:5420, src/admin.php:5423
637
  msgid "You can find your temporary clone information in your updraftplus.com account here."
638
  msgstr ""
639
 
640
- #: src/class-updraftplus.php:4310
641
  msgid "Choose a default for each table"
642
  msgstr ""
643
 
644
- #: src/admin.php:3274
645
  msgid "Sending files to remote site"
646
  msgstr ""
647
 
648
- #: src/admin.php:3269
649
  msgid "Clone server being provisioned and booted (can take several minutes)"
650
  msgstr ""
651
 
652
- #: src/admin.php:940
653
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
654
  msgstr ""
655
 
@@ -657,11 +661,11 @@ msgstr ""
657
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
658
  msgstr ""
659
 
660
- #: src/admin.php:2796
661
  msgid "Backup / Restore"
662
  msgstr ""
663
 
664
- #: src/admin.php:661
665
  msgid "Backup"
666
  msgstr ""
667
 
@@ -733,11 +737,11 @@ msgstr ""
733
  msgid "More information here."
734
  msgstr ""
735
 
736
- #: src/admin.php:669, src/admin.php:2797
737
  msgid "Migrate / Clone"
738
  msgstr ""
739
 
740
- #: src/admin.php:3034, src/admin.php:3959,
741
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
742
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
743
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
@@ -759,25 +763,25 @@ msgstr ""
759
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
760
  msgstr ""
761
 
762
- #: src/class-updraftplus.php:187
763
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
764
  msgstr ""
765
 
766
- #: src/admin.php:5396
767
  msgid "(current version)"
768
  msgstr ""
769
 
770
- #: src/admin.php:3736
771
  msgid "press here"
772
  msgstr ""
773
 
774
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
775
- #: src/methods/googledrive.php:1206
776
  msgid "this privacy policy"
777
  msgstr ""
778
 
779
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
780
- #: src/methods/googledrive.php:1206
781
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
782
  msgstr ""
783
 
@@ -801,7 +805,7 @@ msgstr ""
801
  msgid "Available temporary clone tokens:"
802
  msgstr ""
803
 
804
- #: src/admin.php:2884, src/includes/class-commands.php:901,
805
  #: src/includes/class-commands.php:949,
806
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
807
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
@@ -820,7 +824,7 @@ msgstr ""
820
  msgid "I consent to %s"
821
  msgstr ""
822
 
823
- #: src/admin.php:2982,
824
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
825
  msgid "One Time Password (check your OTP app to get this password)"
826
  msgstr ""
@@ -869,7 +873,7 @@ msgstr ""
869
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
870
  msgstr ""
871
 
872
- #: src/admin.php:5342
873
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
874
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
875
  msgstr[0] ""
@@ -879,68 +883,68 @@ msgstr[3] ""
879
  msgstr[4] ""
880
  msgstr[5] ""
881
 
882
- #: src/admin.php:938
883
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
884
  msgstr ""
885
 
886
- #: src/admin.php:937
887
  msgid "You can also close this wizard."
888
  msgstr ""
889
 
890
- #: src/admin.php:936
891
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
892
  msgstr ""
893
 
894
- #: src/admin.php:935
895
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
896
  msgstr ""
897
 
898
- #: src/admin.php:934
899
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
900
  msgstr ""
901
 
902
- #: src/admin.php:933
903
  msgid "Perhaps you would want to login instead."
904
  msgstr ""
905
 
906
- #: src/admin.php:932
907
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
908
  msgstr ""
909
 
910
- #: src/admin.php:931
911
  msgid "An email is required and needs to be in a valid format."
912
  msgstr ""
913
 
914
- #: src/admin.php:930
915
  msgid "Both email and password fields are required."
916
  msgstr ""
917
 
918
- #: src/admin.php:929
919
  msgid "Registration successful."
920
  msgstr ""
921
 
922
- #: src/admin.php:928, src/admin.php:929
923
  msgid "Please follow this link to open %s in a new window."
924
  msgstr ""
925
 
926
- #: src/admin.php:928
927
  msgid "Login successful."
928
  msgstr ""
929
 
930
- #: src/admin.php:927,
931
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
932
  msgid "UpdraftCentral Cloud"
933
  msgstr ""
934
 
935
- #: src/admin.php:487
936
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
937
  msgstr ""
938
 
939
- #: src/admin.php:486
940
  msgid "Dismiss all UpdraftPlus news"
941
  msgstr ""
942
 
943
- #: src/admin.php:485
944
  msgid "UpdraftPlus News"
945
  msgstr ""
946
 
@@ -964,7 +968,7 @@ msgstr ""
964
  msgid "Azure Account"
965
  msgstr ""
966
 
967
- #: src/admin.php:926
968
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
969
  msgstr ""
970
 
@@ -976,23 +980,23 @@ msgstr ""
976
  msgid "Upload backup"
977
  msgstr ""
978
 
979
- #: src/admin.php:4246
980
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
981
  msgstr ""
982
 
983
- #: src/admin.php:925
984
  msgid "(already uploaded)"
985
  msgstr ""
986
 
987
- #: src/admin.php:923
988
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
989
  msgstr ""
990
 
991
- #: src/admin.php:844, src/admin.php:4246
992
  msgid "Upload"
993
  msgstr ""
994
 
995
- #: src/addons/reporting.php:529, src/admin.php:794
996
  msgid "Only email the database backup"
997
  msgstr ""
998
 
@@ -1062,7 +1066,7 @@ msgstr ""
1062
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1063
  msgstr ""
1064
 
1065
- #: src/includes/class-remote-send.php:437
1066
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1067
  msgstr ""
1068
 
@@ -1094,7 +1098,7 @@ msgstr ""
1094
  msgid "Thank you for installing UpdraftPlus!"
1095
  msgstr ""
1096
 
1097
- #: src/includes/class-remote-send.php:531
1098
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1099
  msgstr ""
1100
 
@@ -1122,11 +1126,11 @@ msgstr ""
1122
  msgid "Ensure you are logged into the correct account before continuing."
1123
  msgstr ""
1124
 
1125
- #: src/admin.php:4984
1126
  msgid "Remote storage method and instance id are required for authentication."
1127
  msgstr ""
1128
 
1129
- #: src/admin.php:4980
1130
  msgid "authentication error"
1131
  msgstr ""
1132
 
@@ -1154,11 +1158,11 @@ msgstr ""
1154
  msgid "Delete these settings"
1155
  msgstr ""
1156
 
1157
- #: src/addons/morestorage.php:81, src/admin.php:922
1158
  msgid "Currently disabled"
1159
  msgstr ""
1160
 
1161
- #: src/addons/morestorage.php:81, src/admin.php:921
1162
  msgid "Currently enabled"
1163
  msgstr ""
1164
 
@@ -1208,15 +1212,15 @@ msgstr[3] ""
1208
  msgstr[4] ""
1209
  msgstr[5] ""
1210
 
1211
- #: src/class-updraftplus.php:4287
1212
  msgid "Your chosen replacement collation"
1213
  msgstr ""
1214
 
1215
- #: src/class-updraftplus.php:4264
1216
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1217
  msgstr ""
1218
 
1219
- #: src/class-updraftplus.php:4264
1220
  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."
1221
  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."
1222
  msgstr[0] ""
@@ -1292,15 +1296,15 @@ msgstr[5] ""
1292
  msgid "Requested table character set (%s) is not present - changing to %s."
1293
  msgstr ""
1294
 
1295
- #: src/class-updraftplus.php:4240
1296
  msgid "Your chosen character set to use instead:"
1297
  msgstr ""
1298
 
1299
- #: src/class-updraftplus.php:4230
1300
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1301
  msgstr ""
1302
 
1303
- #: src/class-updraftplus.php:4230
1304
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1305
  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."
1306
  msgstr[0] ""
@@ -1354,7 +1358,7 @@ msgstr ""
1354
  msgid "You now need to copy the key below and enter it at your %s."
1355
  msgstr ""
1356
 
1357
- #: src/admin.php:916
1358
  msgid "Please enter a valid URL e.g http://example.com"
1359
  msgstr ""
1360
 
@@ -1394,27 +1398,27 @@ msgstr ""
1394
  msgid "Account ID"
1395
  msgstr ""
1396
 
1397
- #: src/class-updraftplus.php:4069
1398
  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."
1399
  msgstr ""
1400
 
1401
- #: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
1402
  msgid "the migrator add-on"
1403
  msgstr ""
1404
 
1405
- #: src/class-updraftplus.php:4067
1406
  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."
1407
  msgstr ""
1408
 
1409
- #: src/class-updraftplus.php:4065
1410
  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."
1411
  msgstr ""
1412
 
1413
- #: src/class-updraftplus.php:4060
1414
  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."
1415
  msgstr ""
1416
 
1417
- #: src/methods/googledrive.php:1275
1418
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1419
  msgstr ""
1420
 
@@ -1422,18 +1426,18 @@ msgstr ""
1422
  msgid "Follow this link to remove these settings for %s."
1423
  msgstr ""
1424
 
1425
- #: src/admin.php:895
1426
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1427
  msgstr ""
1428
 
1429
- #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
1430
- #: src/class-updraftplus.php:2252,
1431
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1432
  msgid "A PHP fatal error (%s) has occurred: %s"
1433
  msgstr ""
1434
 
1435
- #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
1436
- #: src/class-updraftplus.php:2245,
1437
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1438
  msgid "A PHP exception (%s) has occurred: %s"
1439
  msgstr ""
@@ -1487,11 +1491,11 @@ msgstr ""
1487
  msgid "Instant and secure logon with a wave of your phone."
1488
  msgstr ""
1489
 
1490
- #: src/admin.php:5190
1491
  msgid "Value"
1492
  msgstr ""
1493
 
1494
- #: src/admin.php:1779
1495
  msgid "Did not know how to delete from this cloud service."
1496
  msgstr ""
1497
 
@@ -1507,11 +1511,11 @@ msgstr ""
1507
  msgid "Cloud Files"
1508
  msgstr ""
1509
 
1510
- #: src/admin.php:4932
1511
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1512
  msgstr ""
1513
 
1514
- #: src/admin.php:4891
1515
  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."
1516
  msgstr ""
1517
 
@@ -1528,43 +1532,43 @@ msgstr ""
1528
  msgid "Extra database"
1529
  msgstr ""
1530
 
1531
- #: src/admin.php:4102
1532
  msgid "Press here to download or browse"
1533
  msgstr ""
1534
 
1535
- #: src/admin.php:1332, src/admin.php:1342
1536
  msgid "Error: invalid path"
1537
  msgstr ""
1538
 
1539
- #: src/admin.php:1131
1540
  msgid "An error occurred when fetching storage module options: "
1541
  msgstr ""
1542
 
1543
- #: src/admin.php:913
1544
  msgid "Loading log file"
1545
  msgstr ""
1546
 
1547
- #: src/admin.php:912
1548
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1549
  msgstr ""
1550
 
1551
- #: src/admin.php:911
1552
  msgid "Search"
1553
  msgstr ""
1554
 
1555
- #: src/admin.php:910
1556
  msgid "Select a file to view information about it"
1557
  msgstr ""
1558
 
1559
- #: src/admin.php:909
1560
  msgid "Browsing zip file"
1561
  msgstr ""
1562
 
1563
- #: src/admin.php:876
1564
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1565
  msgstr ""
1566
 
1567
- #: src/admin.php:822
1568
  msgid "Browse contents"
1569
  msgstr ""
1570
 
@@ -1572,43 +1576,43 @@ msgstr ""
1572
  msgid "Skipped tables:"
1573
  msgstr ""
1574
 
1575
- #: src/class-updraftplus.php:4365
1576
  msgid "This database backup has the following WordPress tables excluded: %s"
1577
  msgstr ""
1578
 
1579
- #: src/admin.php:3020
1580
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1581
  msgstr ""
1582
 
1583
- #: src/admin.php:3020
1584
  msgid "All WordPress tables will be backed up."
1585
  msgstr ""
1586
 
1587
- #: src/admin.php:908
1588
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1589
  msgstr ""
1590
 
1591
- #: src/admin.php:908
1592
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1593
  msgstr ""
1594
 
1595
- #: src/admin.php:908
1596
  msgid "The available memory on the server."
1597
  msgstr ""
1598
 
1599
- #: src/admin.php:908
1600
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1601
  msgstr ""
1602
 
1603
- #: src/admin.php:908
1604
  msgid "The file failed to upload. Please check the following:"
1605
  msgstr ""
1606
 
1607
- #: src/admin.php:907
1608
  msgid "HTTP code:"
1609
  msgstr ""
1610
 
1611
- #: src/addons/wp-cli.php:109, src/admin.php:799
1612
  msgid "You have chosen to backup a database, but no tables have been selected"
1613
  msgstr ""
1614
 
@@ -1758,7 +1762,7 @@ msgstr ""
1758
  msgid "Free"
1759
  msgstr ""
1760
 
1761
- #: src/admin.php:484
1762
  msgid "UpdraftPlus"
1763
  msgstr ""
1764
 
@@ -2033,7 +2037,7 @@ msgstr ""
2033
  msgid "Backup of: %s"
2034
  msgstr ""
2035
 
2036
- #: src/methods/googledrive.php:270
2037
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2038
  msgstr ""
2039
 
@@ -2057,11 +2061,11 @@ msgstr ""
2057
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2058
  msgstr ""
2059
 
2060
- #: src/admin.php:1862
2061
  msgid "Remote files deleted:"
2062
  msgstr ""
2063
 
2064
- #: src/admin.php:1861
2065
  msgid "Local files deleted:"
2066
  msgstr ""
2067
 
@@ -2069,39 +2073,39 @@ msgstr ""
2069
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2070
  msgstr ""
2071
 
2072
- #: src/admin.php:906
2073
  msgid "remote files deleted"
2074
  msgstr ""
2075
 
2076
- #: src/admin.php:902
2077
  msgid "Complete"
2078
  msgstr ""
2079
 
2080
- #: src/admin.php:901
2081
  msgid "Do you want to carry out the import?"
2082
  msgstr ""
2083
 
2084
- #: src/admin.php:900
2085
  msgid "Which was exported on:"
2086
  msgstr ""
2087
 
2088
- #: src/admin.php:899
2089
  msgid "This will import data from:"
2090
  msgstr ""
2091
 
2092
- #: src/admin.php:898
2093
  msgid "Importing..."
2094
  msgstr ""
2095
 
2096
- #: src/admin.php:894
2097
  msgid "You have not yet selected a file to import."
2098
  msgstr ""
2099
 
2100
- #: src/admin.php:878
2101
  msgid "Your export file will be of your displayed settings, not your saved ones."
2102
  msgstr ""
2103
 
2104
- #: src/admin.php:89
2105
  msgid "template not found"
2106
  msgstr ""
2107
 
@@ -2117,16 +2121,16 @@ msgstr ""
2117
  msgid "Account is not authorized (%s)."
2118
  msgstr ""
2119
 
2120
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
2121
  msgid "Your IP address:"
2122
  msgstr ""
2123
 
2124
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
2125
- #: src/udaddons/updraftplus-addons.php:903
2126
  msgid "To remove any block, please go here."
2127
  msgstr ""
2128
 
2129
- #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
2130
  msgid "An error response was received; HTTP code:"
2131
  msgstr ""
2132
 
@@ -2142,15 +2146,15 @@ msgstr ""
2142
  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"
2143
  msgstr ""
2144
 
2145
- #: src/admin.php:2607
2146
  msgid "To fix this problem go here."
2147
  msgstr ""
2148
 
2149
- #: src/admin.php:2607
2150
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2151
  msgstr ""
2152
 
2153
- #: src/admin.php:862
2154
  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."
2155
  msgstr ""
2156
 
@@ -2178,7 +2182,7 @@ msgstr ""
2178
  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."
2179
  msgstr ""
2180
 
2181
- #: src/udaddons/updraftplus-addons.php:906
2182
  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."
2183
  msgstr ""
2184
 
@@ -2272,7 +2276,7 @@ msgstr ""
2272
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2273
  msgstr ""
2274
 
2275
- #: src/methods/googledrive.php:530
2276
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2277
  msgstr ""
2278
 
@@ -2293,7 +2297,7 @@ msgstr ""
2293
  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."
2294
  msgstr ""
2295
 
2296
- #: src/class-updraftplus.php:1793
2297
  msgid "Size: %s MB"
2298
  msgstr ""
2299
 
@@ -2301,7 +2305,7 @@ msgstr ""
2301
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2302
  msgstr ""
2303
 
2304
- #: src/class-updraftplus.php:4086, src/restorer.php:1446
2305
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2306
  msgstr ""
2307
 
@@ -2323,7 +2327,7 @@ msgstr ""
2323
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2324
  msgstr ""
2325
 
2326
- #: src/class-updraftplus.php:583, src/class-updraftplus.php:628
2327
  msgid "The given file was not found, or could not be read."
2328
  msgstr ""
2329
 
@@ -2407,23 +2411,23 @@ msgstr ""
2407
  msgid "UpdraftCentral Connection"
2408
  msgstr ""
2409
 
2410
- #: src/backup.php:1042, src/class-updraftplus.php:3026
2411
  msgid "The backup was aborted by the user"
2412
  msgstr ""
2413
 
2414
- #: src/admin.php:4927
2415
  msgid "Your settings have been saved."
2416
  msgstr "تم حفظ إعداداتك."
2417
 
2418
- #: src/admin.php:4007
2419
  msgid "Total backup size:"
2420
  msgstr ""
2421
 
2422
- #: src/admin.php:3414
2423
  msgid "stop"
2424
  msgstr "توقف"
2425
 
2426
- #: src/admin.php:903, src/admin.php:3207
2427
  msgid "The backup has finished running"
2428
  msgstr ""
2429
 
@@ -2449,27 +2453,27 @@ msgstr ""
2449
  msgid "calculate"
2450
  msgstr ""
2451
 
2452
- #: src/admin.php:877
2453
  msgid "You should save your changes to ensure that they are used for making your backup."
2454
  msgstr ""
2455
 
2456
- #: src/admin.php:870
2457
  msgid "We requested to delete the file, but could not understand the server's response"
2458
  msgstr ""
2459
 
2460
- #: src/admin.php:869
2461
  msgid "Please enter a valid URL"
2462
  msgstr ""
2463
 
2464
- #: src/admin.php:852
2465
  msgid "Saving..."
2466
  msgstr "جاري الحفظ..."
2467
 
2468
- #: src/admin.php:813
2469
  msgid "Error: the server sent us a response which we did not understand."
2470
  msgstr ""
2471
 
2472
- #: src/admin.php:805
2473
  msgid "Fetching..."
2474
  msgstr ""
2475
 
@@ -2485,24 +2489,24 @@ msgstr ""
2485
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2486
  msgstr ""
2487
 
2488
- #: src/class-updraftplus.php:4138, src/restorer.php:2227
2489
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2490
  msgstr ""
2491
 
2492
- #: src/class-updraftplus.php:4134
2493
  msgid "Please read this link for important information on this process."
2494
  msgstr ""
2495
 
2496
- #: src/class-updraftplus.php:4134
2497
  msgid "It will be imported as a new site."
2498
  msgstr ""
2499
 
2500
- #: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
2501
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2502
  msgid "Dismiss"
2503
  msgstr "رفض"
2504
 
2505
- #: src/admin.php:889
2506
  msgid "Please fill in the required information."
2507
  msgstr ""
2508
 
@@ -2563,7 +2567,7 @@ msgstr ""
2563
  msgid "Call WordPress action:"
2564
  msgstr ""
2565
 
2566
- #: src/admin.php:3030
2567
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2568
  msgstr ""
2569
 
@@ -2595,76 +2599,76 @@ msgstr ""
2595
  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)."
2596
  msgstr ""
2597
 
2598
- #: src/admin.php:4801
2599
  msgid "Send this backup to remote storage"
2600
  msgstr ""
2601
 
2602
- #: src/admin.php:4799
2603
  msgid "Check out UpdraftPlus Vault."
2604
  msgstr ""
2605
 
2606
- #: src/admin.php:4799
2607
  msgid "Not got any remote storage?"
2608
  msgstr ""
2609
 
2610
- #: src/admin.php:4799
2611
  msgid "settings"
2612
  msgstr "إعدادات"
2613
 
2614
- #: src/admin.php:4799
2615
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2616
  msgstr ""
2617
 
2618
- #: src/admin.php:3028
2619
  msgid "Include any files in the backup"
2620
  msgstr ""
2621
 
2622
- #: src/admin.php:3012
2623
  msgid "Include the database in the backup"
2624
  msgstr ""
2625
 
2626
- #: src/admin.php:2839
2627
  msgid "Continue restoration"
2628
  msgstr ""
2629
 
2630
- #: src/admin.php:2834
2631
  msgid "You have an unfinished restoration operation, begun %s ago."
2632
  msgstr ""
2633
 
2634
- #: src/admin.php:2833
2635
  msgid "Unfinished restoration"
2636
  msgstr ""
2637
 
2638
- #: src/admin.php:2831
2639
  msgid "%s minutes, %s seconds"
2640
  msgstr ""
2641
 
2642
- #: src/admin.php:2697
2643
  msgid "Backup Contents And Schedule"
2644
  msgstr ""
2645
 
2646
- #: src/admin.php:2800
2647
  msgid "Premium / Extensions"
2648
  msgstr ""
2649
 
2650
- #: src/admin.php:2474, src/admin.php:2483
2651
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2652
  msgstr ""
2653
 
2654
- #: src/addons/morefiles.php:71, src/admin.php:875
2655
  msgctxt "(verb)"
2656
  msgid "Download"
2657
  msgstr ""
2658
 
2659
- #: src/admin.php:798
2660
  msgid "You have chosen to backup files, but no file entities have been selected"
2661
  msgstr ""
2662
 
2663
- #: src/admin.php:693
2664
  msgid "Extensions"
2665
  msgstr "Extensions"
2666
 
2667
- #: src/admin.php:685, src/admin.php:2799
2668
  msgid "Advanced Tools"
2669
  msgstr ""
2670
 
@@ -2783,7 +2787,7 @@ msgstr ""
2783
  msgid "Could not access container"
2784
  msgstr ""
2785
 
2786
- #: src/class-updraftplus.php:3045
2787
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
2788
  msgstr ""
2789
 
@@ -2913,35 +2917,35 @@ msgstr ""
2913
  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)."
2914
  msgstr ""
2915
 
2916
- #: src/admin.php:1860
2917
  msgid "Backup sets removed:"
2918
  msgstr ""
2919
 
2920
- #: src/admin.php:888
2921
  msgid "Processing..."
2922
  msgstr ""
2923
 
2924
- #: src/admin.php:886
2925
  msgid "For backups older than"
2926
  msgstr ""
2927
 
2928
- #: src/admin.php:885
2929
  msgid "week(s)"
2930
  msgstr ""
2931
 
2932
- #: src/admin.php:884
2933
  msgid "hour(s)"
2934
  msgstr ""
2935
 
2936
- #: src/admin.php:883
2937
  msgid "day(s)"
2938
  msgstr ""
2939
 
2940
- #: src/admin.php:882
2941
  msgid "in the month"
2942
  msgstr ""
2943
 
2944
- #: src/admin.php:881
2945
  msgid "day"
2946
  msgstr ""
2947
 
@@ -2965,15 +2969,15 @@ msgstr ""
2965
  msgid "You do not currently have any UpdraftPlus Vault quota"
2966
  msgstr ""
2967
 
2968
- #: src/class-updraftplus.php:4209
2969
  msgid "You must upgrade MySQL to be able to use this database."
2970
  msgstr ""
2971
 
2972
- #: src/class-updraftplus.php:4209
2973
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
2974
  msgstr ""
2975
 
2976
- #: src/admin.php:2592
2977
  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."
2978
  msgstr ""
2979
 
@@ -3001,11 +3005,11 @@ msgstr ""
3001
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
3002
  msgstr ""
3003
 
3004
- #: src/admin.php:1190
3005
  msgid "Go to the remote storage settings in order to connect."
3006
  msgstr ""
3007
 
3008
- #: src/admin.php:1190
3009
  msgid "%s has been chosen for remote storage, but you are not currently connected."
3010
  msgstr ""
3011
 
@@ -3013,19 +3017,19 @@ msgstr ""
3013
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
3014
  msgstr ""
3015
 
3016
- #: src/admin.php:858
3017
  msgid "Update quota count"
3018
  msgstr ""
3019
 
3020
- #: src/admin.php:857
3021
  msgid "Counting..."
3022
  msgstr ""
3023
 
3024
- #: src/admin.php:856
3025
  msgid "Disconnecting..."
3026
  msgstr ""
3027
 
3028
- #: src/admin.php:854
3029
  msgid "Connecting..."
3030
  msgstr ""
3031
 
@@ -3051,7 +3055,7 @@ msgstr ""
3051
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3052
  msgstr ""
3053
 
3054
- #: src/admin.php:855, src/methods/updraftvault.php:392,
3055
  #: src/methods/updraftvault.php:450
3056
  msgid "Disconnect"
3057
  msgstr ""
@@ -3169,15 +3173,15 @@ msgstr ""
3169
  msgid "Allow download"
3170
  msgstr ""
3171
 
3172
- #: src/includes/class-remote-send.php:313
3173
  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."
3174
  msgstr ""
3175
 
3176
- #: src/admin.php:864, src/includes/class-remote-send.php:298
3177
  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."
3178
  msgstr ""
3179
 
3180
- #: src/includes/class-remote-send.php:540
3181
  msgid "Existing keys"
3182
  msgstr ""
3183
 
@@ -3189,27 +3193,27 @@ msgstr ""
3189
  msgid "You must copy and paste this key now - it cannot be shown again."
3190
  msgstr ""
3191
 
3192
- #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:437
3193
  msgid "Key created successfully."
3194
  msgstr ""
3195
 
3196
- #: src/includes/class-remote-send.php:420
3197
  msgid "A key with this name already exists; you must use a unique name."
3198
  msgstr ""
3199
 
3200
- #: src/includes/class-remote-send.php:344
3201
  msgid "Also send this backup to the active remote storage locations"
3202
  msgstr ""
3203
 
3204
- #: src/includes/class-remote-send.php:309
3205
  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."
3206
  msgstr ""
3207
 
3208
- #: src/includes/class-remote-send.php:265
3209
  msgid "site not found"
3210
  msgstr ""
3211
 
3212
- #: src/includes/class-remote-send.php:250
3213
  msgid "Backup data will be sent to:"
3214
  msgstr ""
3215
 
@@ -3229,7 +3233,7 @@ msgstr ""
3229
  msgid "This storage method does not allow downloading"
3230
  msgstr ""
3231
 
3232
- #: src/admin.php:4165
3233
  msgid "(backup set imported from remote location)"
3234
  msgstr ""
3235
 
@@ -3251,24 +3255,24 @@ msgstr ""
3251
  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."
3252
  msgstr ""
3253
 
3254
- #: src/admin.php:871, src/includes/class-remote-send.php:326
3255
  msgid "Testing connection..."
3256
  msgstr ""
3257
 
3258
- #: src/admin.php:868,
3259
  #: src/templates/wp-admin/settings/existing-backups-table.php:161
3260
  msgid "Deleting..."
3261
  msgstr ""
3262
 
3263
- #: src/admin.php:867
3264
  msgid "key name"
3265
  msgstr ""
3266
 
3267
- #: src/admin.php:865
3268
  msgid "Please give this key a name (e.g. indicate the site it is for):"
3269
  msgstr ""
3270
 
3271
- #: src/admin.php:862
3272
  msgid "Creating..."
3273
  msgstr ""
3274
 
@@ -3292,42 +3296,42 @@ msgstr ""
3292
  msgid "Send a backup to another site"
3293
  msgstr ""
3294
 
3295
- #: src/admin.php:872, src/includes/class-remote-send.php:357,
3296
- #: src/includes/class-remote-send.php:519
3297
  msgid "Send"
3298
  msgstr ""
3299
 
3300
- #: src/admin.php:863, src/includes/class-remote-send.php:513
3301
  msgid "Send to site:"
3302
  msgstr ""
3303
 
3304
- #: src/includes/class-remote-send.php:511
3305
  msgid "No receiving sites have yet been added."
3306
  msgstr ""
3307
 
3308
- #: src/includes/class-remote-send.php:492
3309
  msgid "It is for sending backups to the following site: "
3310
  msgstr ""
3311
 
3312
- #: src/includes/class-remote-send.php:492
3313
  msgid "The key was successfully added."
3314
  msgstr ""
3315
 
3316
- #: src/includes/class-remote-send.php:476
3317
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
3318
  msgstr ""
3319
 
3320
- #: src/includes/class-remote-send.php:465,
3321
- #: src/includes/class-remote-send.php:467,
3322
- #: src/includes/class-remote-send.php:471
3323
  msgid "The entered key was corrupt - please try again."
3324
  msgstr ""
3325
 
3326
- #: src/includes/class-remote-send.php:463
3327
  msgid "The entered key was the wrong length - please try again."
3328
  msgstr ""
3329
 
3330
- #: src/includes/class-remote-send.php:453
3331
  msgid "key"
3332
  msgstr ""
3333
 
@@ -3363,19 +3367,19 @@ msgstr ""
3363
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3364
  msgstr ""
3365
 
3366
- #: src/admin.php:861
3367
  msgid "Resetting..."
3368
  msgstr ""
3369
 
3370
- #: src/addons/migrator.php:1745, src/admin.php:860
3371
  msgid "Add site"
3372
  msgstr ""
3373
 
3374
- #: src/admin.php:859
3375
  msgid "Adding..."
3376
  msgstr ""
3377
 
3378
- #: src/udaddons/options.php:294
3379
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
3380
  msgstr ""
3381
 
@@ -3383,15 +3387,15 @@ msgstr ""
3383
  msgid "To use this backup, your database server needs to support the %s character set."
3384
  msgstr ""
3385
 
3386
- #: src/udaddons/updraftplus-addons.php:939
3387
  msgid "go here to change your password on updraftplus.com."
3388
  msgstr ""
3389
 
3390
- #: src/udaddons/updraftplus-addons.php:939
3391
  msgid "If you have forgotten your password "
3392
  msgstr ""
3393
 
3394
- #: src/udaddons/updraftplus-addons.php:938
3395
  msgid "Go here to re-enter your password."
3396
  msgstr ""
3397
 
@@ -3399,7 +3403,7 @@ msgstr ""
3399
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3400
  msgstr ""
3401
 
3402
- #: src/admin.php:851, src/admin.php:877, src/admin.php:878
3403
  msgid "You have made changes to your settings, and not saved."
3404
  msgstr ""
3405
 
@@ -3412,7 +3416,7 @@ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you
3412
  msgstr ""
3413
 
3414
  #: src/addons/azure.php:605, src/addons/onedrive.php:1148,
3415
- #: src/includes/class-remote-send.php:313
3416
  msgid "For longer help, including screenshots, follow this link."
3417
  msgstr ""
3418
 
@@ -3605,18 +3609,18 @@ msgstr ""
3605
 
3606
  #: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
3607
  #: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
3608
- #: src/udaddons/updraftplus-addons.php:889,
3609
- #: src/udaddons/updraftplus-addons.php:903
3610
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
3611
  msgstr ""
3612
 
3613
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3614
- #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
3615
  msgid "It appears that your web server's IP Address (%s) is blocked."
3616
  msgstr ""
3617
 
3618
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3619
- #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
3620
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
3621
  msgstr ""
3622
 
@@ -3658,7 +3662,7 @@ msgstr ""
3658
  msgid "(at same time as files backup)"
3659
  msgstr ""
3660
 
3661
- #: src/admin.php:3701
3662
  msgid "No backup has been completed"
3663
  msgstr ""
3664
 
@@ -3687,7 +3691,7 @@ msgstr ""
3687
  msgid "Full feature list"
3688
  msgstr ""
3689
 
3690
- #: src/addons/autobackup.php:1075
3691
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3692
  msgstr ""
3693
 
@@ -3701,7 +3705,7 @@ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - o
3701
  msgid "or"
3702
  msgstr ""
3703
 
3704
- #: src/admin.php:845
3705
  msgid "You did not select any components to restore. Please select at least one, and then try again."
3706
  msgstr ""
3707
 
@@ -3732,7 +3736,7 @@ msgstr ""
3732
  msgid "Check this box to have a basic report sent to"
3733
  msgstr ""
3734
 
3735
- #: src/admin.php:3715
3736
  msgctxt "i.e. Non-automatic"
3737
  msgid "Manual"
3738
  msgstr ""
@@ -3750,7 +3754,7 @@ msgstr ""
3750
  msgid "Any other file/directory on your server that you wish to backup"
3751
  msgstr ""
3752
 
3753
- #: src/admin.php:2609
3754
  msgid "For even more features and personal support, check out "
3755
  msgstr ""
3756
 
@@ -3758,8 +3762,8 @@ msgstr ""
3758
  msgid "Database decryption phrase"
3759
  msgstr ""
3760
 
3761
- #: src/addons/autobackup.php:157, src/addons/autobackup.php:1021,
3762
- #: src/admin.php:850
3763
  msgid "Automatic backup before update"
3764
  msgstr ""
3765
 
@@ -3840,11 +3844,11 @@ msgstr ""
3840
  msgid "(learn more about this significant option)"
3841
  msgstr ""
3842
 
3843
- #: src/udaddons/options.php:237
3844
  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."
3845
  msgstr ""
3846
 
3847
- #: src/admin.php:3207, src/admin.php:4276
3848
  msgid "View Log"
3849
  msgstr ""
3850
 
@@ -3863,7 +3867,7 @@ msgstr ""
3863
  msgid "and retain this many scheduled backups"
3864
  msgstr ""
3865
 
3866
- #: src/admin.php:3671
3867
  msgid "incremental backup; base backup: %s"
3868
  msgstr ""
3869
 
@@ -3876,16 +3880,16 @@ msgstr ""
3876
  msgid "Upload files into UpdraftPlus."
3877
  msgstr ""
3878
 
3879
- #: src/admin.php:1136, src/includes/class-commands.php:462,
3880
  #: src/templates/wp-admin/settings/take-backup.php:12
3881
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
3882
  msgstr ""
3883
 
3884
- #: src/class-updraftplus.php:4123
3885
  msgid "Backup label:"
3886
  msgstr ""
3887
 
3888
- #: src/addons/backblaze.php:205, src/admin.php:2111
3889
  msgid "Error: unexpected file read fail"
3890
  msgstr ""
3891
 
@@ -3905,27 +3909,27 @@ msgstr ""
3905
  msgid "Your label for this backup (optional)"
3906
  msgstr ""
3907
 
3908
- #: src/methods/googledrive.php:1192
3909
  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."
3910
  msgstr ""
3911
 
3912
- #: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:942
3913
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
3914
  msgstr ""
3915
 
3916
- #: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:938
3917
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
3918
  msgstr ""
3919
 
3920
- #: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:804
3921
  msgid "You need to supply both an email address and a password"
3922
  msgstr ""
3923
 
3924
- #: src/class-updraftplus.php:4142
3925
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3926
  msgstr ""
3927
 
3928
- #: src/class-updraftplus.php:4142
3929
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3930
  msgstr ""
3931
 
@@ -3962,19 +3966,19 @@ msgstr ""
3962
  msgid "You need to connect to receive future updates to UpdraftPlus."
3963
  msgstr ""
3964
 
3965
- #: src/class-updraftplus.php:4115
3966
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3967
  msgstr ""
3968
 
3969
- #: src/class-updraftplus.php:4115
3970
  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."
3971
  msgstr ""
3972
 
3973
- #: src/class-updraftplus.php:4115
3974
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3975
  msgstr ""
3976
 
3977
- #: src/class-updraftplus.php:4115
3978
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3979
  msgstr ""
3980
 
@@ -4003,7 +4007,7 @@ msgstr ""
4003
  msgid "UpdraftPlus is on social media - check us out!"
4004
  msgstr ""
4005
 
4006
- #: src/addons/wp-cli.php:907, src/admin.php:4464
4007
  msgid "Why am I seeing this?"
4008
  msgstr ""
4009
 
@@ -4017,15 +4021,15 @@ msgstr ""
4017
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
4018
  msgstr ""
4019
 
4020
- #: src/admin.php:2048, src/admin.php:2060, src/includes/class-commands.php:833
4021
  msgid "Start backup"
4022
  msgstr ""
4023
 
4024
- #: src/class-updraftplus.php:4086, src/restorer.php:1446
4025
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4026
  msgstr ""
4027
 
4028
- #: src/admin.php:3569
4029
  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."
4030
  msgstr ""
4031
 
@@ -4033,11 +4037,11 @@ msgstr ""
4033
  msgid "Unless you have a problem, you can completely ignore everything here."
4034
  msgstr ""
4035
 
4036
- #: src/admin.php:2286
4037
  msgid "This file could not be uploaded"
4038
  msgstr ""
4039
 
4040
- #: src/admin.php:2249
4041
  msgid "You will find more information about this in the Settings section."
4042
  msgstr ""
4043
 
@@ -4065,21 +4069,21 @@ msgstr ""
4065
  msgid "Full backup"
4066
  msgstr ""
4067
 
4068
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4069
  msgid "now proceeding with the updates..."
4070
  msgstr ""
4071
 
4072
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4073
  msgid "(view log...)"
4074
  msgstr ""
4075
 
4076
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4077
  msgid "Backup succeeded"
4078
  msgstr ""
4079
 
4080
  #: src/addons/incremental.php:237, src/addons/incremental.php:238,
4081
  #: src/addons/incremental.php:239, src/addons/incremental.php:240,
4082
- #: src/admin.php:3716, src/admin.php:3717, src/admin.php:3718,
4083
  #: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
4084
  msgid "Every %s hours"
4085
  msgstr ""
@@ -4130,7 +4134,7 @@ msgstr ""
4130
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4131
  msgstr ""
4132
 
4133
- #: src/methods/googledrive.php:1199
4134
  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."
4135
  msgstr ""
4136
 
@@ -4154,11 +4158,11 @@ msgstr ""
4154
  msgid "Free disk space in account:"
4155
  msgstr ""
4156
 
4157
- #: src/admin.php:4898, src/templates/wp-admin/settings/take-backup.php:50
4158
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4159
  msgstr ""
4160
 
4161
- #: src/admin.php:817, src/admin.php:1916,
4162
  #: src/includes/deprecated-actions.php:29,
4163
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4164
  #: src/templates/wp-admin/settings/tab-backups.php:21,
@@ -4166,15 +4170,15 @@ msgstr ""
4166
  msgid "Existing Backups"
4167
  msgstr ""
4168
 
4169
- #: src/admin.php:1141
4170
  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."
4171
  msgstr ""
4172
 
4173
- #: src/admin.php:1141
4174
  msgid "To make a backup, just press the Backup Now button."
4175
  msgstr ""
4176
 
4177
- #: src/admin.php:1141
4178
  msgid "Welcome to UpdraftPlus!"
4179
  msgstr ""
4180
 
@@ -4246,25 +4250,25 @@ msgstr ""
4246
  msgid "user"
4247
  msgstr ""
4248
 
4249
- #: src/class-updraftplus.php:1790
4250
  msgid "External database (%s)"
4251
  msgstr ""
4252
 
4253
- #: src/methods/googledrive.php:1199
4254
  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."
4255
  msgstr ""
4256
 
4257
- #: src/methods/googledrive.php:494
4258
  msgid "failed to access parent folder"
4259
  msgstr ""
4260
 
4261
  #: src/addons/googlecloud.php:698, src/addons/onedrive.php:907,
4262
- #: src/addons/onedrive.php:918, src/methods/googledrive.php:434,
4263
- #: src/methods/googledrive.php:447
4264
  msgid "However, subsequent access attempts failed:"
4265
  msgstr ""
4266
 
4267
- #: src/addons/wp-cli.php:437, src/admin.php:4032
4268
  msgid "External database"
4269
  msgstr ""
4270
 
@@ -4296,7 +4300,7 @@ msgstr ""
4296
  msgid "use UpdraftPlus Premium"
4297
  msgstr ""
4298
 
4299
- #: src/class-updraftplus.php:3966
4300
  msgid "Decryption failed. The database file is encrypted."
4301
  msgstr ""
4302
 
@@ -4351,7 +4355,7 @@ msgstr ""
4351
  msgid "Tenant"
4352
  msgstr ""
4353
 
4354
- #: src/addons/wp-cli.php:800, src/admin.php:4586, src/admin.php:5342,
4355
  #: src/methods/openstack2.php:144,
4356
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
4357
  #: src/templates/wp-admin/settings/tab-backups.php:27,
@@ -4431,37 +4435,37 @@ msgid "%s error - failed to access the container"
4431
  msgstr ""
4432
 
4433
  #: src/addons/googlecloud.php:1108, src/addons/onedrive.php:1248,
4434
- #: src/methods/dropbox.php:668, src/methods/googledrive.php:1281
4435
  msgid "Account holder's name: %s."
4436
  msgstr ""
4437
 
4438
- #: src/methods/googledrive.php:1258
4439
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4440
  msgstr ""
4441
 
4442
- #: src/methods/googledrive.php:1245
4443
  msgid "It is an ID number internal to Google Drive"
4444
  msgstr ""
4445
 
4446
- #: src/methods/googledrive.php:1245
4447
  msgid "<strong>This is NOT a folder name</strong>."
4448
  msgstr ""
4449
 
4450
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1240,
4451
- #: src/methods/googledrive.php:1251
4452
  msgid "Folder"
4453
  msgstr ""
4454
 
4455
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:451,
4456
- #: src/methods/googledrive.php:1152
4457
  msgid "%s download: failed: file not found"
4458
  msgstr ""
4459
 
4460
- #: src/addons/googlecloud.php:718, src/methods/googledrive.php:467
4461
  msgid "Name: %s."
4462
  msgstr ""
4463
 
4464
- #: src/methods/googledrive.php:208
4465
  msgid "Google Drive list files: failed to access parent folder"
4466
  msgstr ""
4467
 
@@ -4497,7 +4501,7 @@ msgstr ""
4497
  msgid "Failed to unpack the archive"
4498
  msgstr ""
4499
 
4500
- #: src/class-updraftplus.php:1365
4501
  msgid "Error - failed to download the file"
4502
  msgstr ""
4503
 
@@ -4522,8 +4526,8 @@ msgstr ""
4522
  msgid "password/key"
4523
  msgstr " الرقم السري/المفتاح"
4524
 
4525
- #: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
4526
- #: src/admin.php:5190, src/templates/wp-admin/settings/temporary-clone.php:63
4527
  msgid "Key"
4528
  msgstr "مفتاح"
4529
 
@@ -4539,24 +4543,24 @@ msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فا
4539
  msgid "SCP/SFTP password/key"
4540
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
4541
 
4542
- #: src/addons/wp-cli.php:449, src/admin.php:4076
4543
  msgid "Files backup (created by %s)"
4544
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
4545
 
4546
- #: src/addons/wp-cli.php:449, src/admin.php:4076
4547
  msgid "Files and database WordPress backup (created by %s)"
4548
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
4549
 
4550
- #: src/addons/importer.php:276, src/admin.php:4070,
4551
  #: src/includes/class-backup-history.php:435
4552
  msgid "Backup created by: %s."
4553
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
4554
 
4555
- #: src/addons/wp-cli.php:431, src/admin.php:4030
4556
  msgid "Database (created by %s)"
4557
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
4558
 
4559
- #: src/addons/wp-cli.php:429, src/admin.php:4024, src/admin.php:4072
4560
  msgid "unknown source"
4561
  msgstr "مصدر غير معروف"
4562
 
@@ -4571,32 +4575,32 @@ msgstr "إعادة فحص الإستضافة الإستضافة السحابية
4571
  msgid "Upload backup files"
4572
  msgstr "رفع ملفات النسخة الإحتياطية"
4573
 
4574
- #: src/admin.php:2301
4575
  msgid "This backup was created by %s, and can be imported."
4576
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
4577
 
4578
- #: src/admin.php:1170
4579
  msgid "Read this page for a guide to possible causes and how to fix it."
4580
  msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
4581
 
4582
- #: src/admin.php:1170
4583
  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."
4584
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
4585
 
4586
- #: src/admin.php:829, src/includes/class-backup-history.php:442
4587
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
4588
  msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
4589
 
4590
- #: src/admin.php:828
4591
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
4592
  msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
4593
 
4594
- #: src/admin.php:828, src/admin.php:829,
4595
  #: src/includes/class-backup-history.php:442
4596
  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))."
4597
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
4598
 
4599
- #: src/admin.php:4073, src/includes/class-wpadmin-commands.php:162,
4600
  #: src/restorer.php:1975
4601
  msgid "Backup created by unknown source (%s) - cannot be restored."
4602
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
@@ -4626,7 +4630,7 @@ msgstr "لم يتم العثور على الإعدادات"
4626
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
4627
  msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
4628
 
4629
- #: src/admin.php:795
4630
  msgid "Rescanning remote and local storage for backup sets..."
4631
  msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
4632
 
@@ -4656,7 +4660,7 @@ msgstr "الأسئلة الشائعة %s الأخرى."
4656
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4657
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
4658
 
4659
- #: src/addons/morefiles.php:476, src/admin.php:3829
4660
  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."
4661
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
4662
 
@@ -4685,7 +4689,7 @@ msgstr "خادم FTP غير مشفر اعتيادي"
4685
  msgid "Backup created by:"
4686
  msgstr "نسخة احتياطية أنشأها:"
4687
 
4688
- #: src/udaddons/options.php:479
4689
  msgid "Available to claim on this site"
4690
  msgstr "متوفر للطلب من هذا الموقع"
4691
 
@@ -4772,12 +4776,12 @@ msgstr "لاحظ أن رسائل التحذير استشارية - عملية ا
4772
  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)"
4773
  msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبقية، لكن الملف الذي نقوم برفعه حجمه %d بايت متبقية (الحجم الكلي: %d بايت)"
4774
 
4775
- #: src/udaddons/updraftplus-addons.php:474,
4776
- #: src/udaddons/updraftplus-addons.php:510
4777
  msgid "Errors occurred:"
4778
  msgstr "أخطاء حدثت:"
4779
 
4780
- #: src/addons/wp-cli.php:664, src/admin.php:4506
4781
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
4782
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
4783
 
@@ -4801,7 +4805,7 @@ msgstr "اعدادات PHP بالسيرفر تسمح بتشغيل PHP لمدة %
4801
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
4802
  msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
4803
 
4804
- #: src/admin.php:1145, src/class-updraftplus.php:847
4805
  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)"
4806
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
4807
 
@@ -4814,7 +4818,7 @@ msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعي
4814
  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."
4815
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
4816
 
4817
- #: src/addons/moredatabase.php:144, src/admin.php:1640
4818
  msgid "Messages:"
4819
  msgstr "رسائل:"
4820
 
@@ -4980,27 +4984,27 @@ msgstr "فشل التفويض (راجع معلوماتك)"
4980
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4981
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
4982
 
4983
- #: src/admin.php:843, src/central/bootstrap.php:565
4984
  msgid "Create"
4985
  msgstr "خلق"
4986
 
4987
- #: src/admin.php:804
4988
  msgid "Trying..."
4989
  msgstr "اعادة المحاولة..."
4990
 
4991
- #: src/admin.php:803
4992
  msgid "The new user's RackSpace console password is (this will not be shown again):"
4993
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
4994
 
4995
- #: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:4584
4996
  msgid "Error data:"
4997
  msgstr "خطأ بالبيانات:"
4998
 
4999
- #: src/admin.php:4487
5000
  msgid "Backup does not exist in the backup history"
5001
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
5002
 
5003
- #: src/admin.php:3143
5004
  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."
5005
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
5006
 
@@ -5040,11 +5044,11 @@ msgstr "أدخل عناوين بريد الكتروني هنا لإرسال تق
5040
  msgid "Email reports"
5041
  msgstr "تقارير البريد الإلكتروني"
5042
 
5043
- #: src/class-updraftplus.php:1798, src/class-updraftplus.php:1803
5044
  msgid "%s checksum: %s"
5045
  msgstr "%s الاختباري:%s"
5046
 
5047
- #: src/class-updraftplus.php:1734, src/class-updraftplus.php:1736
5048
  msgid "files: %s"
5049
  msgstr "ملفات:%s"
5050
 
@@ -5056,7 +5060,7 @@ msgstr "استخدام قسم \"التقارير\" لتكوين عناوين ا
5056
  msgid "Debugging information"
5057
  msgstr "معلومات التصحيح"
5058
 
5059
- #: src/addons/reporting.php:223, src/admin.php:3990
5060
  msgid "Uploaded to:"
5061
  msgstr "تحميلها على:"
5062
 
@@ -5101,7 +5105,7 @@ msgstr "%d الأخطاء، %d تحذيرات"
5101
  msgid "%s authentication"
5102
  msgstr "%s مصادقة"
5103
 
5104
- #: src/addons/onedrive.php:864, src/class-updraftplus.php:531,
5105
  #: src/methods/dropbox.php:240, src/methods/dropbox.php:753,
5106
  #: src/methods/dropbox.php:775, src/methods/dropbox.php:790,
5107
  #: src/methods/dropbox.php:803, src/methods/dropbox.php:946
@@ -5128,7 +5132,7 @@ msgstr "لمزيد من الخيارات، استخدام الإضافة \"%s\".
5128
  msgid "Your site's admin email address (%s) will be used."
5129
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
5130
 
5131
- #: src/admin.php:853, src/admin.php:2874, src/methods/updraftvault.php:319,
5132
  #: src/methods/updraftvault.php:362,
5133
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5134
  msgid "Connect"
@@ -5138,15 +5142,15 @@ msgstr "الإتصال"
5138
  msgid "For more reporting features, use the Reporting add-on."
5139
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
5140
 
5141
- #: src/class-updraftplus.php:4047
5142
  msgid "(version: %s)"
5143
  msgstr "(الإصدار: %s)"
5144
 
5145
- #: src/admin.php:792
5146
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5147
  msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
5148
 
5149
- #: src/addons/reporting.php:527, src/admin.php:791
5150
  msgid "When the Email storage method is enabled, also send the backup"
5151
  msgstr ""
5152
 
@@ -5186,7 +5190,7 @@ msgstr "الملفات فقط (لن يتم خلق نسخ احتياطية لقا
5186
  msgid "Files (database backup has not completed)"
5187
  msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
5188
 
5189
- #: src/admin.php:332, src/backup.php:1044
5190
  msgid "Files and database"
5191
  msgstr "ملفات وقواعد البيانات"
5192
 
@@ -5210,39 +5214,39 @@ msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (ش
5210
  msgid "UpdraftPlus warning:"
5211
  msgstr "تحذير UpdraftPlus :"
5212
 
5213
- #: src/udaddons/options.php:485
5214
  msgid "(or connect using the form on this page if you have already purchased it)"
5215
  msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
5216
 
5217
- #: src/udaddons/options.php:473
5218
  msgid "please follow this link to update the plugin in order to activate it"
5219
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل تفعيله"
5220
 
5221
- #: src/udaddons/options.php:470
5222
  msgid "please follow this link to update the plugin in order to get it"
5223
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل الحصول عليه"
5224
 
5225
- #: src/udaddons/options.php:460, src/udaddons/options.php:462
5226
  msgid "latest"
5227
  msgstr "آخر"
5228
 
5229
- #: src/udaddons/options.php:458
5230
  msgid "Your version: %s"
5231
  msgstr "الإصدار: %s"
5232
 
5233
- #: src/udaddons/options.php:456, src/udaddons/options.php:456
5234
  msgid "You've got it"
5235
  msgstr "كنت قد حصلت عليه"
5236
 
5237
- #: src/udaddons/options.php:417
5238
  msgid "UpdraftPlus Support"
5239
  msgstr "دعم UpdraftPlus"
5240
 
5241
- #: src/udaddons/options.php:357
5242
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
5243
  msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
5244
 
5245
- #: src/udaddons/options.php:346, src/udaddons/updraftplus-addons.php:315
5246
  msgid "UpdraftPlus Addons"
5247
  msgstr "اضافات UpdraftPlus"
5248
 
@@ -5251,24 +5255,24 @@ msgid "An update is available for UpdraftPlus - please follow this link to get i
5251
  msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
5252
 
5253
  #: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
5254
- #: src/udaddons/updraftplus-addons.php:949
5255
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
5256
  msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
5257
 
5258
- #: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:945
5259
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
5260
  msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
5261
 
5262
  #: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
5263
- #: src/udaddons/updraftplus-addons.php:908
5264
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
5265
  msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
5266
 
5267
- #: src/udaddons/updraftplus-addons.php:831
5268
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
5269
  msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة"
5270
 
5271
- #: src/udaddons/updraftplus-addons.php:829
5272
  msgid "We failed to successfully connect to UpdraftPlus.Com"
5273
  msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
5274
 
@@ -5279,11 +5283,11 @@ msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
5279
  msgid "Reporting"
5280
  msgstr "التقارير"
5281
 
5282
- #: src/admin.php:5187
5283
  msgid "Options (raw)"
5284
  msgstr "خيارات (الخام)"
5285
 
5286
- #: src/addons/reporting.php:525, src/admin.php:790
5287
  msgid "Send a report only when there are warnings/errors"
5288
  msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
5289
 
@@ -5299,79 +5303,79 @@ msgstr ""
5299
  msgid "See also the \"More Files\" add-on from our shop."
5300
  msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
5301
 
5302
- #: src/backup.php:3424, src/class-updraftplus.php:860
5303
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
5304
  msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
5305
 
5306
- #: src/class-updraftplus.php:844
5307
  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)"
5308
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
5309
 
5310
- #: src/udaddons/options.php:508
5311
  msgid "Manage Addons"
5312
  msgstr "ادارة الأضافات"
5313
 
5314
- #: src/udaddons/options.php:486, src/udaddons/options.php:486
5315
  msgid "Buy It"
5316
  msgstr "شراء"
5317
 
5318
- #: src/udaddons/options.php:485
5319
  msgid "Get it from the UpdraftPlus.Com Store"
5320
  msgstr "الحصول علية من متجر UpdraftPlus.Com"
5321
 
5322
- #: src/udaddons/options.php:479, src/udaddons/options.php:481
5323
  msgid "activate it on this site"
5324
  msgstr "تنشيطة على هذا الموقع"
5325
 
5326
- #: src/udaddons/options.php:481
5327
  msgid "You have an inactive purchase"
5328
  msgstr "لديك شراء غير فعال"
5329
 
5330
- #: src/udaddons/options.php:473
5331
  msgid "Assigned to this site"
5332
  msgstr "تعيين إلى هذا الموقع"
5333
 
5334
- #: src/udaddons/options.php:470
5335
  msgid "Available for this site (via your all-addons purchase)"
5336
  msgstr "متاح لهذا الموقع (عن طريق الأضافات المشتراة)"
5337
 
5338
- #: src/udaddons/options.php:464
5339
  msgid "(apparently a pre-release or withdrawn release)"
5340
  msgstr "(على ما يبدو انة اصدار قبل الاصدار الرسمى او اصدار مسحوب)"
5341
 
5342
- #: src/udaddons/options.php:419
5343
  msgid "Go here"
5344
  msgstr "اذهب هنا"
5345
 
5346
- #: src/udaddons/options.php:419
5347
  msgid "Need to get support?"
5348
  msgstr "هل انت بحاجة للحصول على الدعم؟"
5349
 
5350
- #: src/udaddons/options.php:401
5351
  msgid "An error occurred when trying to retrieve your add-ons."
5352
  msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
5353
 
5354
- #: src/udaddons/options.php:296
5355
  msgid "An unknown response was received. Response was:"
5356
  msgstr "تم تلقى رد غير معروف. الرد هو:"
5357
 
5358
- #: src/udaddons/options.php:295
5359
  msgid "Claim not granted - your account login details were wrong"
5360
  msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
5361
 
5362
- #: src/udaddons/options.php:293
5363
  msgid "Please wait whilst we make the claim..."
5364
  msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
5365
 
5366
- #: src/udaddons/options.php:247
5367
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
5368
  msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
5369
 
5370
- #: src/udaddons/options.php:240
5371
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
5372
  msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
5373
 
5374
- #: src/udaddons/options.php:236
5375
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
5376
  msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
5377
 
@@ -5379,19 +5383,19 @@ msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتب
5379
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
5380
  msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
5381
 
5382
- #: src/admin.php:2872
5383
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
5384
  msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
5385
 
5386
- #: src/admin.php:2948
5387
  msgid "Forgotten your details?"
5388
  msgstr "هل نسيت التفاصيل الخاصة بك؟"
5389
 
5390
- #: src/admin.php:2861
5391
  msgid "Not yet got an account (it's free)? Go get one!"
5392
  msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
5393
 
5394
- #: src/admin.php:2927
5395
  msgid "Connect with your UpdraftPlus.Com account"
5396
  msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
5397
 
@@ -5433,7 +5437,7 @@ msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
5433
  msgid "Your web-server does not have the %s module installed."
5434
  msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
5435
 
5436
- #: src/addons/googlecloud.php:1074, src/methods/googledrive.php:1270
5437
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
5438
  msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
5439
 
@@ -5442,15 +5446,15 @@ msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong>
5442
  msgid "Drop backup files here"
5443
  msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
5444
 
5445
- #: src/admin.php:802
5446
  msgid "The web server returned an error code (try again, or check your web server logs)"
5447
  msgstr "اعاد خادم الويب برمز خطأ (حاول مجددا, او قم بالتحقق من سجلات خادم الويب الخاص بك)"
5448
 
5449
- #: src/admin.php:800
5450
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
5451
  msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إغلاق المتصفح حتى اعطائك التقرير بأنة تم انتهاء العملية."
5452
 
5453
- #: src/addons/wp-cli.php:115, src/admin.php:797
5454
  msgid "If you exclude both the database and the files, then you have excluded everything!"
5455
  msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
5456
 
@@ -5462,11 +5466,11 @@ msgstr "الصفحة الرئيسية للموقع:"
5462
  msgid "Remote Storage Options"
5463
  msgstr "خيارات التخزين البعيد"
5464
 
5465
- #: src/addons/autobackup.php:338, src/addons/autobackup.php:432
5466
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
5467
  msgstr "(السجلات يمكن العثور عليها فى صفحة اعدادات UpdraftPlus كالمعتاد)..."
5468
 
5469
- #: src/addons/autobackup.php:298, src/addons/autobackup.php:1080
5470
  msgid "Remember this choice for next time (you will still have the chance to change it)"
5471
  msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
5472
 
@@ -5479,15 +5483,15 @@ msgstr "فشل التحميل"
5479
  msgid "You can send a backup to more than one destination with an add-on."
5480
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
5481
 
5482
- #: src/admin.php:3414
5483
  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."
5484
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
5485
 
5486
- #: src/admin.php:3281
5487
  msgid "(%s%%, file %s of %s)"
5488
  msgstr "(%s%%, ملف %s من%s)"
5489
 
5490
- #: src/addons/autobackup.php:299, src/addons/autobackup.php:1085,
5491
  #: src/addons/lockadmin.php:160
5492
  msgid "Read more about how this works..."
5493
  msgstr "قراءة المزيد عن كيفية عمل ذلك ..."
@@ -5520,15 +5524,15 @@ msgstr "محاولة ارسال النسخ الأحتياطى عن طريق ال
5520
  msgid "Backup is of: %s."
5521
  msgstr "النسخ الأحتياطى من: %s"
5522
 
5523
- #: src/admin.php:892
5524
  msgid "%s settings test result:"
5525
  msgstr "اعدادات نتيجة اختبار %s"
5526
 
5527
- #: src/admin.php:4138, src/admin.php:4140
5528
  msgid "(Not finished)"
5529
  msgstr "(غير منتهي)"
5530
 
5531
- #: src/admin.php:4140
5532
  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."
5533
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
5534
 
@@ -5540,73 +5544,73 @@ msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل ا
5540
  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)."
5541
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
5542
 
5543
- #: src/admin.php:3382
5544
  msgid "Job ID: %s"
5545
  msgstr "رقم الوظيفة: %s"
5546
 
5547
- #: src/admin.php:3362
5548
  msgid "last activity: %ss ago"
5549
  msgstr "آخر نشاط: منذ %ss"
5550
 
5551
- #: src/admin.php:3361
5552
  msgid "next resumption: %d (after %ss)"
5553
  msgstr "الاستئناف التالي: %d (بعد %ss)"
5554
 
5555
- #: src/admin.php:3344, src/central/bootstrap.php:444,
5556
  #: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
5557
  #: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
5558
  msgid "Unknown"
5559
  msgstr "غير معروف"
5560
 
5561
- #: src/admin.php:3295
5562
  msgid "Backup finished"
5563
  msgstr "الانتهاء من النسخ الاحتياطي"
5564
 
5565
- #: src/admin.php:3290
5566
  msgid "Waiting until scheduled time to retry because of errors"
5567
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
5568
 
5569
- #: src/admin.php:3286
5570
  msgid "Pruning old backup sets"
5571
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
5572
 
5573
- #: src/admin.php:3273
5574
  msgid "Uploading files to remote storage"
5575
  msgstr "تحميل الملفات للمخزن البعيد"
5576
 
5577
- #: src/admin.php:3342
5578
  msgid "Encrypted database"
5579
  msgstr "قاعدة بيانات مشفرة"
5580
 
5581
- #: src/admin.php:3334
5582
  msgid "Encrypting database"
5583
  msgstr "تشفير قاعدة البيانات"
5584
 
5585
- #: src/admin.php:3308
5586
  msgid "Created database backup"
5587
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
5588
 
5589
- #: src/admin.php:3321
5590
  msgid "table: %s"
5591
  msgstr "الجدول: %s"
5592
 
5593
- #: src/admin.php:3319
5594
  msgid "Creating database backup"
5595
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
5596
 
5597
- #: src/admin.php:3264
5598
  msgid "Created file backup zips"
5599
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
5600
 
5601
- #: src/admin.php:3251
5602
  msgid "Creating file backup zips"
5603
  msgstr "انشاء ملف النسخ الاحتياطى zips"
5604
 
5605
- #: src/admin.php:3246
5606
  msgid "Backup begun"
5607
  msgstr "بدأ النسخ الاحتياطى"
5608
 
5609
- #: src/admin.php:1149
5610
  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."
5611
  msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
5612
 
@@ -5622,11 +5626,11 @@ msgstr "مجلد"
5622
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
5623
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
5624
 
5625
- #: src/class-updraftplus.php:3055
5626
  msgid "The backup has not finished; a resumption is scheduled"
5627
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
5628
 
5629
- #: src/class-updraftplus.php:2076
5630
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
5631
  msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
5632
 
@@ -5635,56 +5639,56 @@ msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثي
5635
  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)."
5636
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
5637
 
5638
- #: src/admin.php:2636
5639
  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)."
5640
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
5641
 
5642
- #: src/addons/autobackup.php:1099, src/admin.php:846
5643
  msgid "Proceed with update"
5644
  msgstr "المضي قدما مع التحديث"
5645
 
5646
- #: src/addons/autobackup.php:1092
5647
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
5648
  msgstr "لا تقم بالخروج بعد الضغط على زر البدأ - انتظر حتى انتهاء النسخ الاحتياطى"
5649
 
5650
- #: src/addons/autobackup.php:139, src/addons/autobackup.php:1041
5651
  msgid "UpdraftPlus Automatic Backups"
5652
  msgstr "UpdraftPlus النسخ الأحتياطى التلقائى"
5653
 
5654
- #: src/addons/autobackup.php:524
5655
  msgid "Errors have occurred:"
5656
  msgstr "حدثت الأخطاء:"
5657
 
5658
- #: src/addons/autobackup.php:496
5659
  msgid "Creating backup with UpdraftPlus..."
5660
  msgstr "إنشاء النسخ الاحتياطي مع UpdraftPlus ..."
5661
 
5662
- #: src/addons/autobackup.php:441, src/addons/autobackup.php:571,
5663
- #: src/addons/autobackup.php:622
5664
  msgid "Automatic Backup"
5665
  msgstr "النسخ الاحتياطي التلقائي"
5666
 
5667
- #: src/addons/autobackup.php:432
5668
  msgid "Creating database backup with UpdraftPlus..."
5669
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات مع UpdraftPlus..."
5670
 
5671
- #: src/addons/autobackup.php:398
5672
  msgid "themes"
5673
  msgstr "الثيمات"
5674
 
5675
- #: src/addons/autobackup.php:391
5676
  msgid "plugins"
5677
  msgstr "الإضافات"
5678
 
5679
- #: src/addons/autobackup.php:342, src/addons/autobackup.php:439
5680
  msgid "Starting automatic backup..."
5681
  msgstr "بدء النسخ الاحتياطي التلقائي ..."
5682
 
5683
- #: src/addons/autobackup.php:338
5684
  msgid "Creating %s and database backup with UpdraftPlus..."
5685
  msgstr "انشاء %s وقاعدة البيانات الاحتياطية عن طريق UpdraftPlus..."
5686
 
5687
- #: src/addons/autobackup.php:296
5688
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
5689
  msgstr "النسخ الاحتياطي تلقائيا (حسب الحاجة) للملحقات, الثيمات و قاعدة بيانات وردبريس مع UpdraftPlus قبل التحديث"
5690
 
@@ -5715,84 +5719,84 @@ msgstr "مزيد من الملحقات"
5715
  msgid "Support"
5716
  msgstr "الدعم"
5717
 
5718
- #: src/class-updraftplus.php:4370
5719
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
5720
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
5721
 
5722
- #: src/class-updraftplus.php:4362
5723
  msgid "This database backup is missing core WordPress tables: %s"
5724
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
5725
 
5726
- #: src/class-updraftplus.php:4108
5727
  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."
5728
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
5729
 
5730
- #: src/class-updraftplus.php:4107, src/class-updraftplus.php:4114
5731
  msgid "%s version: %s"
5732
  msgstr "%s النسخة: %s"
5733
 
5734
- #: src/class-updraftplus.php:3983
5735
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
5736
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
5737
 
5738
- #: src/addons/autobackup.php:1067, src/admin.php:974,
5739
  #: src/includes/updraftplus-notices.php:171
5740
  msgid "Be safe with an automatic backup"
5741
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
5742
 
5743
- #: src/admin.php:2589
5744
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
5745
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
5746
 
5747
- #: src/admin.php:838
5748
  msgid "The file was uploaded."
5749
  msgstr "تم رفع الملف."
5750
 
5751
- #: src/admin.php:837
5752
  msgid "Unknown server response status:"
5753
  msgstr "استجابة الخادم غير معروفة:"
5754
 
5755
- #: src/admin.php:836
5756
  msgid "Unknown server response:"
5757
  msgstr "استجابة الملقم غير معروف:"
5758
 
5759
- #: src/admin.php:835
5760
  msgid "This decryption key will be attempted:"
5761
  msgstr "سيتم محاولة فتح مفتاح التشفير:"
5762
 
5763
- #: src/admin.php:834
5764
  msgid "Follow this link to attempt decryption and download the database file to your computer."
5765
  msgstr "اتبع هذا الرابط لمحاولة فك التشفير وتحميل ملف قاعدة البيانات على جهازك."
5766
 
5767
- #: src/admin.php:833
5768
  msgid "Upload error"
5769
  msgstr "خطأ فى الرفع"
5770
 
5771
- #: src/admin.php:832
5772
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
5773
  msgstr "هذا الملف لا يبدو انة ملف UpdraftPlus مضغوط مشفر لقاعدة البيانات (هذة الملفات .gz.crypt التى لديها اسم مثل: backup_(time)_(site name)_(code)_db.crypt.gz)."
5774
 
5775
- #: src/admin.php:831
5776
  msgid "Upload error:"
5777
  msgstr "خطأ التحميل:"
5778
 
5779
- #: src/admin.php:830
5780
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
5781
  msgstr "(تأكد من انك كنت تحاول رفع ملف مضغوط تم إنشاؤه مسبقا من قبل UpdraftPlus)"
5782
 
5783
- #: src/admin.php:821
5784
  msgid "Download to your computer"
5785
  msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
5786
 
5787
- #: src/admin.php:820
5788
  msgid "Delete from your web server"
5789
  msgstr "حذف من خادم الويب الخاص بك"
5790
 
5791
- #: src/admin.php:4110
5792
  msgid "You appear to be missing one or more archives from this multi-archive set."
5793
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
5794
 
5795
- #: src/admin.php:4107
5796
  msgid "(%d archive(s) in set)."
5797
  msgstr "(%d الأرشيف(s) in set)."
5798
 
@@ -5804,15 +5808,15 @@ msgstr "تقسيم كل ارشيف:"
5804
  msgid "Error: the server sent us a response (JSON) which we did not understand."
5805
  msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
5806
 
5807
- #: src/admin.php:811
5808
  msgid "Warnings:"
5809
  msgstr "تحذيرات:"
5810
 
5811
- #: src/admin.php:810
5812
  msgid "Error: the server sent an empty response."
5813
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
5814
 
5815
- #: src/admin.php:2315
5816
  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?"
5817
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
5818
 
@@ -5886,7 +5890,7 @@ msgstr "الملف غير موجود - يحتاج الى استراجعة من
5886
  msgid "Looking for %s archive: file name: %s"
5887
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
5888
 
5889
- #: src/addons/wp-cli.php:784, src/admin.php:4568
5890
  msgid "Final checks"
5891
  msgstr "الفحوصات النهائية"
5892
 
@@ -5898,11 +5902,11 @@ msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأح
5898
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5899
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
5900
 
5901
- #: src/admin.php:3815
5902
  msgid "Your wp-content directory server path: %s"
5903
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
5904
 
5905
- #: src/admin.php:827
5906
  msgid "Raw backup history"
5907
  msgstr "تاريخ النسخ الاحتياطي الخام"
5908
 
@@ -5910,7 +5914,7 @@ msgstr "تاريخ النسخ الاحتياطي الخام"
5910
  msgid "Show raw backup and file list"
5911
  msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة الملفات"
5912
 
5913
- #: src/admin.php:809
5914
  msgid "Processing files - please wait..."
5915
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
5916
 
@@ -5919,11 +5923,11 @@ msgstr "تجهيز الملفات - يرجى الأنتظار..."
5919
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
5920
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
5921
 
5922
- #: src/class-updraftplus.php:3991
5923
  msgid "Failed to open database file."
5924
  msgstr "فشل فى فتح ملف قاعدة البيانات."
5925
 
5926
- #: src/admin.php:5152
5927
  msgid "Known backups (raw)"
5928
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
5929
 
@@ -5941,17 +5945,17 @@ msgstr "حجم الملف:"
5941
 
5942
  #: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
5943
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
5944
- #: src/admin.php:1149, src/admin.php:2594, src/backup.php:3431,
5945
- #: src/class-updraftplus.php:4230, src/class-updraftplus.php:4230,
5946
  #: src/updraftplus.php:157
5947
  msgid "Go here for more information."
5948
  msgstr "اذهب هنا لمزيد من المعلومات."
5949
 
5950
- #: src/admin.php:808
5951
  msgid "Some files are still downloading or being processed - please wait."
5952
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
5953
 
5954
- #: src/class-updraftplus.php:4078, src/class-updraftplus.php:4098
5955
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
5956
  msgstr ""
5957
 
@@ -5993,7 +5997,7 @@ msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
5993
 
5994
  #: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
5995
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
5996
- #: src/methods/googledrive.php:1112, src/methods/openstack-base.php:455,
5997
  #: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
5998
  #: src/methods/stream-base.php:335
5999
  msgid "%s Error"
@@ -6003,7 +6007,7 @@ msgstr "خطأ %s"
6003
  msgid "%s error - failed to upload file"
6004
  msgstr "خطأ %s - فشل فى ارسال الملف"
6005
 
6006
- #: src/class-updraftplus.php:1254, src/methods/cloudfiles.php:211
6007
  msgid "%s error - failed to re-assemble chunks"
6008
  msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
6009
 
@@ -6018,24 +6022,24 @@ msgid "%s authentication failed"
6018
  msgstr "المصادقة فشلت %s"
6019
 
6020
  #: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
6021
- #: src/admin.php:2286, src/admin.php:2307, src/admin.php:2315,
6022
- #: src/class-updraftplus.php:996, src/class-updraftplus.php:1002,
6023
- #: src/class-updraftplus.php:3964, src/class-updraftplus.php:3966,
6024
- #: src/class-updraftplus.php:4131, src/class-updraftplus.php:4138,
6025
- #: src/class-updraftplus.php:4209, src/methods/googledrive.php:395,
6026
  #: src/methods/s3.php:341
6027
  msgid "Error: %s"
6028
  msgstr "خطأ: %s"
6029
 
6030
- #: src/admin.php:3734
6031
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6032
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
6033
 
6034
- #: src/admin.php:3732
6035
  msgid "Backup directory specified does <b>not</b> exist."
6036
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
6037
 
6038
- #: src/admin.php:3396, src/admin.php:3683
6039
  msgid "Warning: %s"
6040
  msgstr "تحذير: %s"
6041
 
@@ -6059,11 +6063,11 @@ msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات
6059
  msgid "Warnings encountered:"
6060
  msgstr "مصادفة تحذيرات:"
6061
 
6062
- #: src/class-updraftplus.php:3039
6063
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6064
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
6065
 
6066
- #: src/class-updraftplus.php:873
6067
  msgid "Your free disk space is very low - only %s Mb remain"
6068
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
6069
 
@@ -6115,7 +6119,7 @@ msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
6115
  msgid "Please supply the requested information, and then continue."
6116
  msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
6117
 
6118
- #: src/class-updraftplus.php:4149, src/restorer.php:2233
6119
  msgid "Site information:"
6120
  msgstr "معلومات عن الموقع:"
6121
 
@@ -6123,11 +6127,11 @@ msgstr "معلومات عن الموقع:"
6123
  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."
6124
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
6125
 
6126
- #: src/admin.php:2589, src/class-updraftplus.php:4142, src/restorer.php:2647
6127
  msgid "Warning:"
6128
  msgstr "تحذير:"
6129
 
6130
- #: src/class-updraftplus.php:4131, src/class-updraftplus.php:4134,
6131
  #: src/restorer.php:530
6132
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6133
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
@@ -6136,27 +6140,27 @@ msgstr "انت تعمل على وردبريس متعدد المواقع - لكن
6136
  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."
6137
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
6138
 
6139
- #: src/addons/azure.php:601, src/admin.php:3907,
6140
  #: src/methods/updraftvault.php:306
6141
  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."
6142
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
6143
 
6144
- #: src/admin.php:847, src/includes/updraftplus-tour.php:89
6145
  msgid "Close"
6146
  msgstr "اغلق"
6147
 
6148
- #: src/addons/autobackup.php:344, src/addons/autobackup.php:436,
6149
- #: src/admin.php:801, src/methods/remotesend.php:69,
6150
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:228,
6151
  #: src/methods/remotesend.php:245, src/methods/remotesend.php:293
6152
  msgid "Unexpected response:"
6153
  msgstr "استجابة غير متوقعة:"
6154
 
6155
- #: src/addons/reporting.php:523, src/admin.php:796
6156
  msgid "To send to more than one address, separate each address with a comma."
6157
  msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
6158
 
6159
- #: src/admin.php:825
6160
  msgid "PHP information"
6161
  msgstr "معلومات PHP"
6162
 
@@ -6180,7 +6184,7 @@ msgstr ""
6180
  msgid "Also delete from remote storage"
6181
  msgstr "حذف ايضاً من التخزين البعيد"
6182
 
6183
- #: src/admin.php:3085
6184
  msgid "Latest UpdraftPlus.com news:"
6185
  msgstr "اخر اخبار UpdraftPlus.com:"
6186
 
@@ -6208,7 +6212,7 @@ msgstr "مميز"
6208
  msgid "News"
6209
  msgstr "اخبار"
6210
 
6211
- #: src/admin.php:1693, src/includes/class-wpadmin-commands.php:506
6212
  msgid "Backup set not found"
6213
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
6214
 
@@ -6230,7 +6234,7 @@ msgstr "رابط RSS"
6230
  msgid "Blog link"
6231
  msgstr "رابط المدونة"
6232
 
6233
- #: src/admin.php:891
6234
  msgid "Testing %s Settings..."
6235
  msgstr "اختبار اعدادات %s ..."
6236
 
@@ -6239,11 +6243,11 @@ msgstr "اختبار اعدادات %s ..."
6239
  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."
6240
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
6241
 
6242
- #: src/admin.php:1165
6243
  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."
6244
  msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
6245
 
6246
- #: src/admin.php:1165
6247
  msgid "Notice"
6248
  msgstr "لاحظ"
6249
 
@@ -6251,11 +6255,11 @@ msgstr "لاحظ"
6251
  msgid "Errors encountered:"
6252
  msgstr "مصادفة اخطاء:"
6253
 
6254
- #: src/admin.php:793
6255
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
6256
  msgstr "اعادة الفحص (يبحث عن النسخ الاحتياطية التي قمت برفعها يدويا في مسار النسخ الاحتياطي الداخلي)..."
6257
 
6258
- #: src/admin.php:807
6259
  msgid "Begun looking for this entity"
6260
  msgstr "بدأ البحث عن هذا الكيان"
6261
 
@@ -6279,7 +6283,7 @@ msgstr "الصفوف: %d"
6279
  msgid "Time taken (seconds):"
6280
  msgstr "الوقت المستغرق (ثانية):"
6281
 
6282
- #: src/addons/migrator.php:1302, src/admin.php:812
6283
  msgid "Errors:"
6284
  msgstr "الأخطاء:"
6285
 
@@ -6378,7 +6382,7 @@ msgid "Directory path"
6378
  msgstr "مسار الدليل"
6379
 
6380
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
6381
- #: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2943,
6382
  #: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
6383
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
6384
  msgid "Password"
@@ -6446,8 +6450,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
6446
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
6447
 
6448
  #: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
6449
- #: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3462,
6450
- #: src/admin.php:3498, src/admin.php:3508, src/methods/addon-base-v2.php:313,
6451
  #: src/methods/stream-base.php:356
6452
  msgid "Failed"
6453
  msgstr "فشل"
@@ -6472,7 +6476,7 @@ msgstr "قطعة %s: حدث خطأ %s"
6472
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
6473
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
6474
  #: src/methods/addon-base-v2.php:285, src/methods/ftp.php:42,
6475
- #: src/methods/googledrive.php:194, src/methods/googledrive.php:196,
6476
  #: src/methods/remotesend.php:278, src/methods/stream-base.php:27,
6477
  #: src/methods/stream-base.php:163, src/methods/stream-base.php:169,
6478
  #: src/methods/stream-base.php:203, src/methods/stream-base.php:278
@@ -6669,8 +6673,8 @@ msgstr "مفتاح API"
6669
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
6670
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
6671
  #: src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530,
6672
- #: src/addons/webdav.php:253, src/admin.php:867,
6673
- #: src/includes/class-remote-send.php:453, src/methods/addon-base-v2.php:305,
6674
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
6675
  #: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
6676
  #: src/methods/ftp.php:412, src/methods/ftp.php:416,
@@ -6712,11 +6716,11 @@ msgstr "أيضا، يجب عليك قراءة هذا التعليمات الها
6712
  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."
6713
  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>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
6714
 
6715
- #: src/admin.php:890, src/methods/backup-module.php:315
6716
  msgid "Test %s Settings"
6717
  msgstr "اختبار %s الإعدادات"
6718
 
6719
- #: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
6720
  #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
6721
  msgid "Error opening local file: Failed to download"
6722
  msgstr "خطأ في فتح ملف محلي: فشل التحميل"
@@ -6733,8 +6737,8 @@ msgid "%s Error: Failed to upload"
6733
  msgstr "%s خطأ: فشل في تحميل"
6734
 
6735
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
6736
- #: src/class-updraftplus.php:1139, src/methods/cloudfiles.php:130,
6737
- #: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
6738
  msgid "%s Error: Failed to open local file"
6739
  msgstr "%s خطأ: فشل في فتح ملف محلي"
6740
 
@@ -6750,59 +6754,59 @@ msgstr "خطأ ملفات السحابة - فشل في إنشاء والوصول
6750
  msgid "Cloud Files authentication failed"
6751
  msgstr "فشل المصادقة بملفات سحابة"
6752
 
6753
- #: src/methods/googledrive.php:1265
6754
  msgid "Authenticate with Google"
6755
  msgstr "المصادقة مع جوجل"
6756
 
6757
  #: src/addons/googlecloud.php:1027, src/addons/onedrive.php:1181,
6758
- #: src/methods/googledrive.php:1229
6759
  msgid "Client Secret"
6760
  msgstr "سر العميل"
6761
 
6762
- #: src/addons/googlecloud.php:1022, src/methods/googledrive.php:1226
6763
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
6764
  msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
6765
 
6766
  #: src/addons/googlecloud.php:1019, src/addons/onedrive.php:1177,
6767
- #: src/methods/googledrive.php:1225
6768
  msgid "Client ID"
6769
  msgstr "معرف العميل"
6770
 
6771
- #: src/methods/googledrive.php:1199
6772
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
6773
  msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
6774
 
6775
- #: src/addons/googlecloud.php:997, src/methods/googledrive.php:1199
6776
  msgid "Select 'Web Application' as the application type."
6777
  msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
6778
 
6779
- #: src/addons/googlecloud.php:995, src/methods/googledrive.php:1197
6780
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
6781
  msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
6782
 
6783
  #: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
6784
- #: src/addons/googlecloud.php:866, src/methods/googledrive.php:572,
6785
- #: src/methods/googledrive.php:573, src/methods/googledrive.php:583,
6786
- #: src/methods/googledrive.php:584
6787
  msgid "Account is not authorized."
6788
  msgstr "حساب غير مخول."
6789
 
6790
- #: src/methods/googledrive.php:494, src/methods/googledrive.php:540,
6791
- #: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
6792
  #: src/methods/stream-base.php:219
6793
  msgid "Failed to upload to %s"
6794
  msgstr "فشل في تحميل إلى %s"
6795
 
6796
- #: src/methods/googledrive.php:523
6797
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
6798
  msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك على %d بايت متبقية، ولكن الملف حجمه %d بايت"
6799
 
6800
- #: src/methods/googledrive.php:616, src/methods/googledrive.php:652
6801
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
6802
  msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
6803
 
6804
  #: src/addons/googlecloud.php:718, src/addons/onedrive.php:939,
6805
- #: src/methods/googledrive.php:467
6806
  msgid "you have authenticated your %s account."
6807
  msgstr "لديك حساب %s مصادق عليه."
6808
 
@@ -6810,21 +6814,21 @@ msgstr "لديك حساب %s مصادق عليه."
6810
  #: src/addons/onedrive.php:939, src/addons/sftp.php:591,
6811
  #: src/addons/sftp.php:595, src/addons/wp-cli.php:515,
6812
  #: src/methods/addon-base-v2.php:327, src/methods/cloudfiles.php:575,
6813
- #: src/methods/googledrive.php:467, src/methods/openstack-base.php:530,
6814
  #: src/methods/s3.php:1155, src/methods/stream-base.php:372
6815
  msgid "Success"
6816
  msgstr "نجاح"
6817
 
6818
  #: src/addons/onedrive.php:893, src/methods/dropbox.php:844,
6819
- #: src/methods/dropbox.php:853, src/methods/googledrive.php:431
6820
  msgid "Your %s quota usage: %s %% used, %s available"
6821
  msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
6822
 
6823
- #: src/addons/googlecloud.php:444, src/methods/googledrive.php:401
6824
  msgid "Authorization failed"
6825
  msgstr "فشل التخويل"
6826
 
6827
- #: src/addons/googlecloud.php:436, src/methods/googledrive.php:393
6828
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
6829
  msgstr "لم نتمكن من الحصول على أي رمز من جوجل. يعني هذا غالبا أنكم قمتم بإدخال رقمكم السري خاطئ، أو أنكم لم تتمكنوا من إعادة مصادقة الخدمة (أسفله) بعد تصحيحها. تأكد منها، ثم قم بمتابعة الرابط أسفله لإعادة المصادقة مع الخدمة مرة أخرى. أخيرا، إن لم تعمل الإضافة، قم باستعمال خيار الخبراء لإعادة مسح كل خياراتكم، أنشئ معرف عميل جوجل جديد وابدأ من الصفر."
6830
 
@@ -6847,8 +6851,8 @@ msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها
6847
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
6848
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
6849
 
6850
- #: src/admin.php:3466, src/admin.php:3501, src/admin.php:3505,
6851
- #: src/includes/class-remote-send.php:326,
6852
  #: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
6853
  #: src/restorer.php:2888, src/restorer.php:2993
6854
  msgid "OK"
@@ -6866,13 +6870,13 @@ msgstr "ادارة استعلام قاعدة البيانات كانت في:"
6866
  msgid "will restore as:"
6867
  msgstr "إستعادة على النحو التالي:"
6868
 
6869
- #: src/class-updraftplus.php:4120, src/restorer.php:2215,
6870
  #: src/restorer.php:2304, src/restorer.php:2330
6871
  msgid "Old table prefix:"
6872
  msgstr "بادئة الجدول القديمة:"
6873
 
6874
  #: src/addons/reporting.php:72, src/addons/reporting.php:181,
6875
- #: src/backup.php:1135, src/class-updraftplus.php:4047
6876
  msgid "Backup of:"
6877
  msgstr "نسخة احتياطية لـ:"
6878
 
@@ -6960,39 +6964,39 @@ msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلو
6960
  msgid "Archive is expected to be size:"
6961
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
6962
 
6963
- #: src/admin.php:4516
6964
  msgid "If making a request for support, please include this information:"
6965
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
6966
 
6967
- #: src/admin.php:4515
6968
  msgid "ABORT: Could not find the information on which entities to restore."
6969
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
6970
 
6971
- #: src/addons/wp-cli.php:647, src/admin.php:4494
6972
  msgid "UpdraftPlus Restoration: Progress"
6973
  msgstr "استرجاع UpdraftPlus: تقدم"
6974
 
6975
- #: src/admin.php:4486
6976
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
6977
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
6978
 
6979
- #: src/admin.php:4168
6980
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
6981
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
6982
 
6983
- #: src/admin.php:4266
6984
  msgid "Delete this backup set"
6985
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
6986
 
6987
- #: src/admin.php:3919
6988
  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."
6989
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
6990
 
6991
- #: src/admin.php:3916
6992
  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."
6993
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
6994
 
6995
- #: src/admin.php:3914
6996
  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)."
6997
  msgstr ""
6998
 
@@ -7033,19 +7037,19 @@ msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من
7033
  msgid "Use the server's SSL certificates"
7034
  msgstr "استخدام شهادات SSL للملقم"
7035
 
7036
- #: src/admin.php:3736
7037
  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."
7038
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
7039
 
7040
- #: src/admin.php:3736
7041
  msgid "or, to reset this option"
7042
  msgstr "أو، لإعادة هذا الخيار"
7043
 
7044
- #: src/admin.php:3736
7045
  msgid "Follow this link to attempt to create the directory and set the permissions"
7046
  msgstr ""
7047
 
7048
- #: src/admin.php:3728
7049
  msgid "Backup directory specified is writable, which is good."
7050
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
7051
 
@@ -7077,16 +7081,16 @@ msgstr "وضع التصحيح"
7077
  msgid "Advanced / Debugging Settings"
7078
  msgstr "متقدمة / تصحيح الإعدادات "
7079
 
7080
- #: src/admin.php:824
7081
  msgid "Requesting start of backup..."
7082
  msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
7083
 
7084
- #: src/addons/morefiles.php:311, src/admin.php:841
7085
  msgid "Cancel"
7086
  msgstr "إلغاء"
7087
 
7088
  #: src/addons/incremental.php:235, src/addons/reporting.php:245,
7089
- #: src/admin.php:4002
7090
  msgid "None"
7091
  msgstr "لا شيء"
7092
 
@@ -7102,7 +7106,7 @@ msgstr "فك تشفير ملف النسخ الاحتياطي لقاعدة الب
7102
  msgid "Database encryption phrase"
7103
  msgstr "عبارة تشفير قاعدة البيانات"
7104
 
7105
- #: src/admin.php:2933, src/templates/wp-admin/settings/form-contents.php:255,
7106
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7107
  msgid "Email"
7108
  msgstr "البريد الإلكتروني"
@@ -7115,7 +7119,7 @@ msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلد
7115
  msgid "Exclude these:"
7116
  msgstr "استبعاد هذه:"
7117
 
7118
- #: src/admin.php:3815
7119
  msgid "Any other directories found inside wp-content"
7120
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
7121
 
@@ -7131,46 +7135,46 @@ msgstr "على سبيل المثال إذا كان الملقم مشغول في
7131
  msgid "To fix the time at which a backup should take place,"
7132
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
7133
 
7134
- #: src/addons/incremental.php:244, src/admin.php:3722
7135
  msgid "Monthly"
7136
  msgstr "شهريا"
7137
 
7138
- #: src/addons/incremental.php:243, src/admin.php:3721
7139
  msgid "Fortnightly"
7140
  msgstr "نصف شهري"
7141
 
7142
- #: src/addons/incremental.php:242, src/admin.php:3720
7143
  msgid "Weekly"
7144
  msgstr "أسبوعيا"
7145
 
7146
- #: src/addons/incremental.php:241, src/admin.php:3719
7147
  msgid "Daily"
7148
  msgstr "يوميا"
7149
 
7150
- #: src/admin.php:849, src/admin.php:3697
7151
  msgid "Download log file"
7152
  msgstr "تحميل ملف السجل"
7153
 
7154
- #: src/admin.php:3569
7155
  msgid "The folder exists, but your webserver does not have permission to write to it."
7156
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
7157
 
7158
- #: src/admin.php:3564
7159
  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"
7160
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
7161
 
7162
- #: src/admin.php:3550
7163
  msgid "The request to the filesystem to create the directory failed."
7164
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
7165
 
7166
- #: src/admin.php:842, src/admin.php:3459, src/admin.php:3493,
7167
- #: src/admin.php:4266, src/includes/class-remote-send.php:543,
7168
  #: src/templates/wp-admin/settings/existing-backups-table.php:155,
7169
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7170
  msgid "Delete"
7171
  msgstr "حذف"
7172
 
7173
- #: src/admin.php:3413
7174
  msgid "show log"
7175
  msgstr "عرض السجل"
7176
 
@@ -7231,7 +7235,7 @@ msgstr "لا"
7231
  msgid "Yes"
7232
  msgstr "نعم"
7233
 
7234
- #: src/admin.php:5364, src/admin.php:5368,
7235
  #: src/templates/wp-admin/advanced/site-info.php:45,
7236
  #: src/templates/wp-admin/advanced/site-info.php:51,
7237
  #: src/templates/wp-admin/advanced/site-info.php:58,
@@ -7271,7 +7275,7 @@ msgstr "إجراء نسخة احتياطية لمرة واحدة"
7271
  msgid "Do read this helpful article of useful things to know before restoring."
7272
  msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
7273
 
7274
- #: src/class-updraftplus.php:4081
7275
  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"
7276
  msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
7277
 
@@ -7312,7 +7316,7 @@ msgstr "استعادة النسخة الاحتياطية"
7312
  msgid "Delete backup set"
7313
  msgstr "حذف مجموعة النسخ الاحتياطية"
7314
 
7315
- #: src/admin.php:823
7316
  msgid "Download error: the server sent us a response which we did not understand."
7317
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
7318
 
@@ -7321,22 +7325,22 @@ msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم
7321
  #: src/addons/migrator.php:1268, src/addons/migrator.php:1317,
7322
  #: src/addons/migrator.php:1555, src/addons/s3-enhanced.php:164,
7323
  #: src/addons/s3-enhanced.php:169, src/addons/s3-enhanced.php:171,
7324
- #: src/addons/sftp.php:911, src/addons/webdav.php:203, src/admin.php:89,
7325
- #: src/admin.php:815, src/includes/class-remote-send.php:265,
7326
- #: src/includes/class-remote-send.php:292,
7327
- #: src/includes/class-remote-send.php:298,
7328
- #: src/includes/class-remote-send.php:361,
7329
- #: src/includes/class-remote-send.php:420,
7330
- #: src/includes/class-remote-send.php:461,
7331
- #: src/includes/class-remote-send.php:471,
7332
- #: src/includes/class-remote-send.php:476, src/methods/remotesend.php:74,
7333
  #: src/methods/remotesend.php:242, src/methods/remotesend.php:298,
7334
  #: src/methods/updraftvault.php:527, src/restorer.php:228,
7335
  #: src/restorer.php:256, src/restorer.php:1921
7336
  msgid "Error:"
7337
  msgstr "خطأ:"
7338
 
7339
- #: src/admin.php:806
7340
  msgid "calculating..."
7341
  msgstr "حساب ..."
7342
 
@@ -7359,15 +7363,15 @@ msgstr "مساحة القرص لخادم الويب قيد الاستخدام م
7359
  msgid "This is a count of the contents of your Updraft directory"
7360
  msgstr "هذا عدد من محتويات مجلدات Updraft "
7361
 
7362
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:194,
7363
- #: src/methods/googledrive.php:196, src/methods/googledrive.php:467,
7364
- #: src/methods/googledrive.php:494, src/methods/googledrive.php:523,
7365
- #: src/methods/googledrive.php:530, src/methods/googledrive.php:540,
7366
- #: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
7367
- #: src/methods/googledrive.php:1185, src/methods/googledrive.php:1192,
7368
- #: src/methods/googledrive.php:1192, src/methods/googledrive.php:1225,
7369
- #: src/methods/googledrive.php:1229, src/methods/googledrive.php:1240,
7370
- #: src/methods/googledrive.php:1251
7371
  msgid "Google Drive"
7372
  msgstr "جوجل درايف"
7373
 
@@ -7386,7 +7390,7 @@ msgstr "متصفح الويب أوبرا "
7386
  msgid "More tasks:"
7387
  msgstr "المزيد من المهام:"
7388
 
7389
- #: src/admin.php:3112
7390
  msgid "Download most recently modified log file"
7391
  msgstr "تحميل ملف السجل المعدل مؤخرا"
7392
 
@@ -7394,18 +7398,18 @@ msgstr "تحميل ملف السجل المعدل مؤخرا"
7394
  msgid "(Nothing yet logged)"
7395
  msgstr "(لا شيء حتى الآن تم تسجيله)"
7396
 
7397
- #: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
7398
- #: src/admin.php:3068, src/admin.php:3074,
7399
  #: src/templates/wp-admin/settings/take-backup.php:64
7400
  msgid "Last log message"
7401
  msgstr "رسالة السجل الأخيرة"
7402
 
7403
- #: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
7404
- #: src/admin.php:4168
7405
  msgid "Restore"
7406
  msgstr "الإستعادة"
7407
 
7408
- #: src/admin.php:840, src/templates/wp-admin/settings/take-backup.php:50
7409
  msgid "Backup Now"
7410
  msgstr "النسخ الاحتياطي الآن"
7411
 
@@ -7414,8 +7418,8 @@ msgid "Time now"
7414
  msgstr "الساعة الآن"
7415
 
7416
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
7417
- #: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:3977,
7418
- #: src/admin.php:4030, src/includes/class-remote-send.php:330,
7419
  #: src/includes/class-wpadmin-commands.php:157,
7420
  #: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
7421
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
@@ -7424,7 +7428,7 @@ msgstr "الساعة الآن"
7424
  msgid "Database"
7425
  msgstr "قاعدة بيانات"
7426
 
7427
- #: src/admin.php:332, src/admin.php:5159,
7428
  #: src/templates/wp-admin/settings/take-backup.php:23
7429
  msgid "Files"
7430
  msgstr "ملفات"
@@ -7433,12 +7437,12 @@ msgstr "ملفات"
7433
  msgid "Next scheduled backups"
7434
  msgstr "النسخ الاحتياطي المجدولة القادمة"
7435
 
7436
- #: src/admin.php:311
7437
  msgid "At the same time as the files backup"
7438
  msgstr "في نفس الوقت الذي نقوم فيه بالنسخ الاحتياطي للملفات"
7439
 
7440
- #: src/admin.php:301, src/admin.php:322, src/admin.php:329, src/admin.php:374,
7441
- #: src/admin.php:405
7442
  msgid "Nothing currently scheduled"
7443
  msgstr "لا شيء مقرر حاليا"
7444
 
@@ -7450,15 +7454,15 @@ msgstr "واجهة المشرف هذه تستخدم الجافا سكريبت ب
7450
  msgid "JavaScript warning"
7451
  msgstr "تحذير جافا سكريبت"
7452
 
7453
- #: src/admin.php:826, src/admin.php:3149
7454
  msgid "Delete Old Directories"
7455
  msgstr "حذف الدلائل القديمة"
7456
 
7457
- #: src/admin.php:2636
7458
  msgid "Current limit is:"
7459
  msgstr "الحد الحالي هو:"
7460
 
7461
- #: src/admin.php:2611
7462
  msgid "Your backup has been restored."
7463
  msgstr "تمت استعادة النسخ الاحتياطي."
7464
 
@@ -7474,69 +7478,69 @@ msgstr "الولوج لموقع المطور"
7474
  msgid "UpdraftPlus.Com"
7475
  msgstr ""
7476
 
7477
- #: src/admin.php:5051
7478
  msgid "Your settings have been wiped."
7479
  msgstr "تم القضاء على الإعدادات الخاصة بك."
7480
 
7481
- #: src/admin.php:2571
7482
  msgid "Backup directory successfully created."
7483
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
7484
 
7485
- #: src/admin.php:2564
7486
  msgid "Backup directory could not be created"
7487
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
7488
 
7489
- #: src/admin.php:3429
7490
  msgid "Old directory removal failed for some reason. You may want to do this manually."
7491
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
7492
 
7493
- #: src/admin.php:3427
7494
  msgid "Old directories successfully removed."
7495
  msgstr "تم إزالة الدلائل القديمة بنجاح."
7496
 
7497
- #: src/admin.php:3424, src/admin.php:3424
7498
  msgid "Remove old directories"
7499
  msgstr "إزالة الدلائل القديمة"
7500
 
7501
  #: src/addons/migrator.php:340, src/addons/migrator.php:355,
7502
- #: src/admin.php:2512, src/admin.php:2522, src/admin.php:2531,
7503
- #: src/admin.php:2573, src/admin.php:3431
7504
  msgid "Return to UpdraftPlus Configuration"
7505
  msgstr "العودة إلى اعدادات UpdraftPlus"
7506
 
7507
- #: src/admin.php:819, src/admin.php:2512, src/admin.php:2522,
7508
- #: src/admin.php:2531, src/admin.php:2573, src/admin.php:3431,
7509
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7510
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7511
  msgid "Actions"
7512
  msgstr "الإجراءات"
7513
 
7514
- #: src/admin.php:2407
7515
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
7516
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
7517
 
7518
- #: src/admin.php:2307
7519
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
7520
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
7521
 
7522
- #: src/admin.php:2203
7523
  msgid "No local copy present."
7524
  msgstr "لا نسخة محلية متوفرة."
7525
 
7526
- #: src/admin.php:2200
7527
  msgid "Download in progress"
7528
  msgstr "التحميل في تقدم"
7529
 
7530
- #: src/admin.php:818, src/admin.php:2189
7531
  msgid "File ready."
7532
  msgstr "ملف جاهز."
7533
 
7534
- #: src/admin.php:2170
7535
  msgid "Download failed"
7536
  msgstr "فشل تحميل"
7537
 
7538
- #: src/addons/wp-cli.php:518, src/admin.php:816,
7539
- #: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
7540
  #: src/includes/class-filesystem-functions.php:368,
7541
  #: src/includes/class-storage-methods-interface.php:324,
7542
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
@@ -7546,42 +7550,42 @@ msgstr "فشل تحميل"
7546
  msgid "Error"
7547
  msgstr "خطأ"
7548
 
7549
- #: src/admin.php:1957
7550
  msgid "Could not find that job - perhaps it has already finished?"
7551
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
7552
 
7553
- #: src/admin.php:1949
7554
  msgid "Job deleted"
7555
  msgstr "وظيفة حذفت"
7556
 
7557
- #: src/admin.php:2048, src/includes/class-commands.php:833
7558
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
7559
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
7560
 
7561
- #: src/admin.php:893
7562
  msgid "Nothing yet logged"
7563
  msgstr "لا شيء حتى الآن تم تسجيله"
7564
 
7565
- #: src/admin.php:1161
7566
  msgid "Please consult this FAQ if you have problems backing up."
7567
  msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
7568
 
7569
- #: src/admin.php:1161
7570
  msgid "Your website is hosted using the %s web server."
7571
  msgstr "موقعك يستخدم %s من خادم الويب."
7572
 
7573
- #: src/admin.php:1157
7574
  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."
7575
  msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
7576
 
7577
- #: src/admin.php:1153
7578
  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."
7579
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
7580
 
7581
- #: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1145,
7582
- #: src/admin.php:1149, src/admin.php:1153, src/admin.php:1157,
7583
- #: src/admin.php:1161, src/admin.php:1170, src/admin.php:3907,
7584
- #: src/admin.php:3914, src/admin.php:3916, src/admin.php:5342,
7585
  #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
7586
  #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
7587
  #: src/methods/s3.php:859, src/methods/s3.php:863,
@@ -7592,11 +7596,11 @@ msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد در
7592
  msgid "Warning"
7593
  msgstr "تحذير"
7594
 
7595
- #: src/admin.php:1090
7596
  msgid "Add-Ons / Pro Support"
7597
  msgstr "إضافات / الدعم المدفوع"
7598
 
7599
- #: src/admin.php:677, src/admin.php:1088, src/admin.php:2798
7600
  msgid "Settings"
7601
  msgstr "إعدادات"
7602
 
@@ -7616,8 +7620,8 @@ msgstr ""
7616
  msgid "Like UpdraftPlus and can spare one minute?"
7617
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
7618
 
7619
- #: src/addons/azure.php:268, src/class-updraftplus.php:3769,
7620
- #: src/methods/googledrive.php:1112, src/methods/s3.php:341
7621
  msgid "File not found"
7622
  msgstr "لم يتم العثور على ملف"
7623
 
@@ -7625,12 +7629,12 @@ msgstr "لم يتم العثور على ملف"
7625
  msgid "The decryption key used:"
7626
  msgstr "مفتاح فك التشفير المستخدم:"
7627
 
7628
- #: src/class-updraftplus.php:3976,
7629
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
7630
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
7631
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
7632
 
7633
- #: src/class-updraftplus.php:3964,
7634
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
7635
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
7636
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
@@ -7639,15 +7643,15 @@ msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ول
7639
  msgid "Could not open the backup file for writing"
7640
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
7641
 
7642
- #: src/class-updraftplus.php:3531
7643
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
7644
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
7645
 
7646
- #: src/class-updraftplus.php:3515
7647
  msgid "Could not read the directory"
7648
  msgstr "لا يمكن قراءة الدليل"
7649
 
7650
- #: src/admin.php:2249, src/backup.php:1359
7651
  msgid "Backup directory (%s) is not writable, or does not exist."
7652
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
7653
 
@@ -7655,11 +7659,11 @@ msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتاب
7655
  msgid "WordPress backup is complete"
7656
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
7657
 
7658
- #: src/class-updraftplus.php:3051
7659
  msgid "The backup attempt has finished, apparently unsuccessfully"
7660
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
7661
 
7662
- #: src/class-updraftplus.php:3033
7663
  msgid "The backup apparently succeeded and is now complete"
7664
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
7665
 
@@ -7667,37 +7671,37 @@ msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت و
7667
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
7668
  msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
7669
 
7670
- #: src/class-updraftplus.php:2733
7671
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
7672
  msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
7673
 
7674
- #: src/class-updraftplus.php:1850
7675
  msgid "Others"
7676
  msgstr "أخرى"
7677
 
7678
- #: src/addons/multisite.php:500, src/class-updraftplus.php:1835
7679
  msgid "Uploads"
7680
  msgstr "الملفات المرفوعة"
7681
 
7682
- #: src/class-updraftplus.php:1834
7683
  msgid "Themes"
7684
  msgstr "تصاميم"
7685
 
7686
- #: src/class-updraftplus.php:1833
7687
  msgid "Plugins"
7688
  msgstr "الإضافات"
7689
 
7690
- #: src/class-updraftplus.php:623
7691
  msgid "No log files were found."
7692
  msgstr "لا توجد ملفات السجل."
7693
 
7694
- #: src/admin.php:2119, src/admin.php:2123, src/class-updraftplus.php:618
7695
  msgid "The log file could not be read."
7696
  msgstr "لا يمكن قراءة ملف السجل."
7697
 
7698
- #: src/admin.php:1190, src/admin.php:1211, src/admin.php:1230,
7699
- #: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
7700
- #: src/class-updraftplus.php:623, src/class-updraftplus.php:628
7701
  msgid "UpdraftPlus notice:"
7702
  msgstr "إشعار UpdraftPlus :"
7703
 
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/admin.php:5374
15
+ msgid "Clone region:"
16
+ msgstr ""
17
+
18
  #: src/udaddons/updraftplus-addons.php:268,
19
  #: src/udaddons/updraftplus-addons.php:280
20
  msgid "go here"
29
  msgid "Authentication"
30
  msgstr ""
31
 
32
+ #: src/admin.php:926
33
  msgid "You must select at least one remote storage destination to upload this backup set to."
34
  msgstr ""
35
 
49
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
50
  msgstr ""
51
 
52
+ #: src/admin.php:953
53
  msgid "UpdraftClone key is required."
54
  msgstr ""
55
 
56
+ #: src/admin.php:944
57
  msgid "The preparation of the clone data has been aborted."
58
  msgstr ""
59
 
73
  msgid "Your database user does not have permission to drop tables"
74
  msgstr ""
75
 
76
+ #: src/admin.php:2962
77
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
78
  msgstr ""
79
 
241
  msgid "WordPress installed"
242
  msgstr ""
243
 
244
+ #: src/admin.php:5428
245
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
246
  msgstr ""
247
 
248
+ #: src/admin.php:3828
249
  msgid "Exclude these from"
250
  msgstr ""
251
 
252
+ #: src/admin.php:952
253
  msgid "The exclusion rule which you are trying to add already exists"
254
  msgstr ""
255
 
256
+ #: src/admin.php:951
257
  msgid "Please enter a valid file name prefix"
258
  msgstr ""
259
 
260
+ #: src/admin.php:950
261
  msgid "Please enter characters that begin the filename which you would like to exclude"
262
  msgstr ""
263
 
264
+ #: src/admin.php:949
265
  msgid "Please enter a valid file extension"
266
  msgstr ""
267
 
268
+ #: src/admin.php:948
269
  msgid "Please enter a file extension, like zip"
270
  msgstr ""
271
 
272
+ #: src/admin.php:947
273
  msgid "Please select a file/folder which you would like to exclude"
274
  msgstr ""
275
 
276
+ #: src/admin.php:946
277
  msgid "Are you sure you want to remove this exclusion rule?"
278
  msgstr ""
279
 
297
  msgid "failed to upload file to %s (see log file for more)"
298
  msgstr ""
299
 
300
+ #: src/admin.php:5424
301
  msgid "Dashboard:"
302
  msgstr ""
303
 
304
+ #: src/admin.php:5423
305
  msgid "Front page:"
306
  msgstr ""
307
 
308
+ #: src/admin.php:5422
309
  msgid "Your clone has started and will be available at the following URLs once it is ready."
310
  msgstr ""
311
 
317
  msgid "Current clones"
318
  msgstr ""
319
 
320
+ #: src/class-updraftplus.php:2992
321
  msgid "Your clone will now deploy this data to re-create your site."
322
  msgstr ""
323
 
324
+ #: src/admin.php:943
325
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
326
  msgstr ""
327
 
367
  msgid "Unable to get renew date"
368
  msgstr ""
369
 
370
+ #: src/admin.php:906
371
  msgid "The backup was aborted"
372
  msgstr ""
373
 
621
  msgid "You can buy more temporary clone tokens here."
622
  msgstr ""
623
 
624
+ #: src/admin.php:5379
625
  msgid "Forbid non-administrators to login to WordPress on your clone"
626
  msgstr ""
627
 
637
  msgid "Other great plugins"
638
  msgstr ""
639
 
640
+ #: src/admin.php:5426, src/admin.php:5429
641
  msgid "You can find your temporary clone information in your updraftplus.com account here."
642
  msgstr ""
643
 
644
+ #: src/class-updraftplus.php:4177
645
  msgid "Choose a default for each table"
646
  msgstr ""
647
 
648
+ #: src/admin.php:3276
649
  msgid "Sending files to remote site"
650
  msgstr ""
651
 
652
+ #: src/admin.php:3271
653
  msgid "Clone server being provisioned and booted (can take several minutes)"
654
  msgstr ""
655
 
656
+ #: src/admin.php:942
657
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
658
  msgstr ""
659
 
661
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
662
  msgstr ""
663
 
664
+ #: src/admin.php:2798
665
  msgid "Backup / Restore"
666
  msgstr ""
667
 
668
+ #: src/admin.php:663
669
  msgid "Backup"
670
  msgstr ""
671
 
737
  msgid "More information here."
738
  msgstr ""
739
 
740
+ #: src/admin.php:671, src/admin.php:2799
741
  msgid "Migrate / Clone"
742
  msgstr ""
743
 
744
+ #: src/admin.php:3036, src/admin.php:3961,
745
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
746
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
747
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
763
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
764
  msgstr ""
765
 
766
+ #: src/class-updraftplus.php:188
767
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
768
  msgstr ""
769
 
770
+ #: src/admin.php:5402
771
  msgid "(current version)"
772
  msgstr ""
773
 
774
+ #: src/admin.php:3738
775
  msgid "press here"
776
  msgstr ""
777
 
778
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
779
+ #: src/methods/googledrive.php:1214
780
  msgid "this privacy policy"
781
  msgstr ""
782
 
783
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
784
+ #: src/methods/googledrive.php:1214
785
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
786
  msgstr ""
787
 
805
  msgid "Available temporary clone tokens:"
806
  msgstr ""
807
 
808
+ #: src/admin.php:2886, src/includes/class-commands.php:901,
809
  #: src/includes/class-commands.php:949,
810
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
811
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
824
  msgid "I consent to %s"
825
  msgstr ""
826
 
827
+ #: src/admin.php:2984,
828
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
829
  msgid "One Time Password (check your OTP app to get this password)"
830
  msgstr ""
873
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
874
  msgstr ""
875
 
876
+ #: src/admin.php:5344
877
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
878
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
879
  msgstr[0] ""
883
  msgstr[4] ""
884
  msgstr[5] ""
885
 
886
+ #: src/admin.php:940
887
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
888
  msgstr ""
889
 
890
+ #: src/admin.php:939
891
  msgid "You can also close this wizard."
892
  msgstr ""
893
 
894
+ #: src/admin.php:938
895
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
896
  msgstr ""
897
 
898
+ #: src/admin.php:937
899
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
900
  msgstr ""
901
 
902
+ #: src/admin.php:936
903
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
904
  msgstr ""
905
 
906
+ #: src/admin.php:935
907
  msgid "Perhaps you would want to login instead."
908
  msgstr ""
909
 
910
+ #: src/admin.php:934
911
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
912
  msgstr ""
913
 
914
+ #: src/admin.php:933
915
  msgid "An email is required and needs to be in a valid format."
916
  msgstr ""
917
 
918
+ #: src/admin.php:932
919
  msgid "Both email and password fields are required."
920
  msgstr ""
921
 
922
+ #: src/admin.php:931
923
  msgid "Registration successful."
924
  msgstr ""
925
 
926
+ #: src/admin.php:930, src/admin.php:931
927
  msgid "Please follow this link to open %s in a new window."
928
  msgstr ""
929
 
930
+ #: src/admin.php:930
931
  msgid "Login successful."
932
  msgstr ""
933
 
934
+ #: src/admin.php:929,
935
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
936
  msgid "UpdraftCentral Cloud"
937
  msgstr ""
938
 
939
+ #: src/admin.php:489
940
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
941
  msgstr ""
942
 
943
+ #: src/admin.php:488
944
  msgid "Dismiss all UpdraftPlus news"
945
  msgstr ""
946
 
947
+ #: src/admin.php:487
948
  msgid "UpdraftPlus News"
949
  msgstr ""
950
 
968
  msgid "Azure Account"
969
  msgstr ""
970
 
971
+ #: src/admin.php:928
972
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
973
  msgstr ""
974
 
980
  msgid "Upload backup"
981
  msgstr ""
982
 
983
+ #: src/admin.php:4248
984
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
985
  msgstr ""
986
 
987
+ #: src/admin.php:927
988
  msgid "(already uploaded)"
989
  msgstr ""
990
 
991
+ #: src/admin.php:925
992
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
993
  msgstr ""
994
 
995
+ #: src/admin.php:846, src/admin.php:4248
996
  msgid "Upload"
997
  msgstr ""
998
 
999
+ #: src/addons/reporting.php:529, src/admin.php:796
1000
  msgid "Only email the database backup"
1001
  msgstr ""
1002
 
1066
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1067
  msgstr ""
1068
 
1069
+ #: src/includes/class-remote-send.php:438
1070
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1071
  msgstr ""
1072
 
1098
  msgid "Thank you for installing UpdraftPlus!"
1099
  msgstr ""
1100
 
1101
+ #: src/includes/class-remote-send.php:532
1102
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1103
  msgstr ""
1104
 
1126
  msgid "Ensure you are logged into the correct account before continuing."
1127
  msgstr ""
1128
 
1129
+ #: src/admin.php:4986
1130
  msgid "Remote storage method and instance id are required for authentication."
1131
  msgstr ""
1132
 
1133
+ #: src/admin.php:4982
1134
  msgid "authentication error"
1135
  msgstr ""
1136
 
1158
  msgid "Delete these settings"
1159
  msgstr ""
1160
 
1161
+ #: src/addons/morestorage.php:81, src/admin.php:924
1162
  msgid "Currently disabled"
1163
  msgstr ""
1164
 
1165
+ #: src/addons/morestorage.php:81, src/admin.php:923
1166
  msgid "Currently enabled"
1167
  msgstr ""
1168
 
1212
  msgstr[4] ""
1213
  msgstr[5] ""
1214
 
1215
+ #: src/class-updraftplus.php:4154
1216
  msgid "Your chosen replacement collation"
1217
  msgstr ""
1218
 
1219
+ #: src/class-updraftplus.php:4131
1220
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1221
  msgstr ""
1222
 
1223
+ #: src/class-updraftplus.php:4131
1224
  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."
1225
  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."
1226
  msgstr[0] ""
1296
  msgid "Requested table character set (%s) is not present - changing to %s."
1297
  msgstr ""
1298
 
1299
+ #: src/class-updraftplus.php:4107
1300
  msgid "Your chosen character set to use instead:"
1301
  msgstr ""
1302
 
1303
+ #: src/class-updraftplus.php:4097
1304
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1305
  msgstr ""
1306
 
1307
+ #: src/class-updraftplus.php:4097
1308
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1309
  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."
1310
  msgstr[0] ""
1358
  msgid "You now need to copy the key below and enter it at your %s."
1359
  msgstr ""
1360
 
1361
+ #: src/admin.php:918
1362
  msgid "Please enter a valid URL e.g http://example.com"
1363
  msgstr ""
1364
 
1398
  msgid "Account ID"
1399
  msgstr ""
1400
 
1401
+ #: src/class-updraftplus.php:3936
1402
  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."
1403
  msgstr ""
1404
 
1405
+ #: src/class-updraftplus.php:3934, src/class-updraftplus.php:3936
1406
  msgid "the migrator add-on"
1407
  msgstr ""
1408
 
1409
+ #: src/class-updraftplus.php:3934
1410
  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."
1411
  msgstr ""
1412
 
1413
+ #: src/class-updraftplus.php:3932
1414
  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."
1415
  msgstr ""
1416
 
1417
+ #: src/class-updraftplus.php:3927
1418
  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."
1419
  msgstr ""
1420
 
1421
+ #: src/methods/googledrive.php:1283
1422
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1423
  msgstr ""
1424
 
1426
  msgid "Follow this link to remove these settings for %s."
1427
  msgstr ""
1428
 
1429
+ #: src/admin.php:897
1430
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1431
  msgstr ""
1432
 
1433
+ #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2133,
1434
+ #: src/class-updraftplus.php:2198,
1435
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1436
  msgid "A PHP fatal error (%s) has occurred: %s"
1437
  msgstr ""
1438
 
1439
+ #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2124,
1440
+ #: src/class-updraftplus.php:2191,
1441
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1442
  msgid "A PHP exception (%s) has occurred: %s"
1443
  msgstr ""
1491
  msgid "Instant and secure logon with a wave of your phone."
1492
  msgstr ""
1493
 
1494
+ #: src/admin.php:5192
1495
  msgid "Value"
1496
  msgstr ""
1497
 
1498
+ #: src/admin.php:1781
1499
  msgid "Did not know how to delete from this cloud service."
1500
  msgstr ""
1501
 
1511
  msgid "Cloud Files"
1512
  msgstr ""
1513
 
1514
+ #: src/admin.php:4934
1515
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1516
  msgstr ""
1517
 
1518
+ #: src/admin.php:4893
1519
  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."
1520
  msgstr ""
1521
 
1532
  msgid "Extra database"
1533
  msgstr ""
1534
 
1535
+ #: src/admin.php:4104
1536
  msgid "Press here to download or browse"
1537
  msgstr ""
1538
 
1539
+ #: src/admin.php:1334, src/admin.php:1344
1540
  msgid "Error: invalid path"
1541
  msgstr ""
1542
 
1543
+ #: src/admin.php:1133
1544
  msgid "An error occurred when fetching storage module options: "
1545
  msgstr ""
1546
 
1547
+ #: src/admin.php:915
1548
  msgid "Loading log file"
1549
  msgstr ""
1550
 
1551
+ #: src/admin.php:914
1552
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1553
  msgstr ""
1554
 
1555
+ #: src/admin.php:913
1556
  msgid "Search"
1557
  msgstr ""
1558
 
1559
+ #: src/admin.php:912
1560
  msgid "Select a file to view information about it"
1561
  msgstr ""
1562
 
1563
+ #: src/admin.php:911
1564
  msgid "Browsing zip file"
1565
  msgstr ""
1566
 
1567
+ #: src/admin.php:878
1568
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1569
  msgstr ""
1570
 
1571
+ #: src/admin.php:824
1572
  msgid "Browse contents"
1573
  msgstr ""
1574
 
1576
  msgid "Skipped tables:"
1577
  msgstr ""
1578
 
1579
+ #: src/class-updraftplus.php:4232
1580
  msgid "This database backup has the following WordPress tables excluded: %s"
1581
  msgstr ""
1582
 
1583
+ #: src/admin.php:3022
1584
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1585
  msgstr ""
1586
 
1587
+ #: src/admin.php:3022
1588
  msgid "All WordPress tables will be backed up."
1589
  msgstr ""
1590
 
1591
+ #: src/admin.php:910
1592
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1593
  msgstr ""
1594
 
1595
+ #: src/admin.php:910
1596
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1597
  msgstr ""
1598
 
1599
+ #: src/admin.php:910
1600
  msgid "The available memory on the server."
1601
  msgstr ""
1602
 
1603
+ #: src/admin.php:910
1604
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1605
  msgstr ""
1606
 
1607
+ #: src/admin.php:910
1608
  msgid "The file failed to upload. Please check the following:"
1609
  msgstr ""
1610
 
1611
+ #: src/admin.php:909
1612
  msgid "HTTP code:"
1613
  msgstr ""
1614
 
1615
+ #: src/addons/wp-cli.php:109, src/admin.php:801
1616
  msgid "You have chosen to backup a database, but no tables have been selected"
1617
  msgstr ""
1618
 
1762
  msgid "Free"
1763
  msgstr ""
1764
 
1765
+ #: src/admin.php:486
1766
  msgid "UpdraftPlus"
1767
  msgstr ""
1768
 
2037
  msgid "Backup of: %s"
2038
  msgstr ""
2039
 
2040
+ #: src/methods/googledrive.php:278
2041
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2042
  msgstr ""
2043
 
2061
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2062
  msgstr ""
2063
 
2064
+ #: src/admin.php:1864
2065
  msgid "Remote files deleted:"
2066
  msgstr ""
2067
 
2068
+ #: src/admin.php:1863
2069
  msgid "Local files deleted:"
2070
  msgstr ""
2071
 
2073
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2074
  msgstr ""
2075
 
2076
+ #: src/admin.php:908
2077
  msgid "remote files deleted"
2078
  msgstr ""
2079
 
2080
+ #: src/admin.php:904
2081
  msgid "Complete"
2082
  msgstr ""
2083
 
2084
+ #: src/admin.php:903
2085
  msgid "Do you want to carry out the import?"
2086
  msgstr ""
2087
 
2088
+ #: src/admin.php:902
2089
  msgid "Which was exported on:"
2090
  msgstr ""
2091
 
2092
+ #: src/admin.php:901
2093
  msgid "This will import data from:"
2094
  msgstr ""
2095
 
2096
+ #: src/admin.php:900
2097
  msgid "Importing..."
2098
  msgstr ""
2099
 
2100
+ #: src/admin.php:896
2101
  msgid "You have not yet selected a file to import."
2102
  msgstr ""
2103
 
2104
+ #: src/admin.php:880
2105
  msgid "Your export file will be of your displayed settings, not your saved ones."
2106
  msgstr ""
2107
 
2108
+ #: src/admin.php:91
2109
  msgid "template not found"
2110
  msgstr ""
2111
 
2121
  msgid "Account is not authorized (%s)."
2122
  msgstr ""
2123
 
2124
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947
2125
  msgid "Your IP address:"
2126
  msgstr ""
2127
 
2128
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947,
2129
+ #: src/udaddons/updraftplus-addons.php:961
2130
  msgid "To remove any block, please go here."
2131
  msgstr ""
2132
 
2133
+ #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:932
2134
  msgid "An error response was received; HTTP code:"
2135
  msgstr ""
2136
 
2146
  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"
2147
  msgstr ""
2148
 
2149
+ #: src/admin.php:2609
2150
  msgid "To fix this problem go here."
2151
  msgstr ""
2152
 
2153
+ #: src/admin.php:2609
2154
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2155
  msgstr ""
2156
 
2157
+ #: src/admin.php:864
2158
  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."
2159
  msgstr ""
2160
 
2182
  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."
2183
  msgstr ""
2184
 
2185
+ #: src/udaddons/updraftplus-addons.php:964
2186
  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."
2187
  msgstr ""
2188
 
2276
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2277
  msgstr ""
2278
 
2279
+ #: src/methods/googledrive.php:538
2280
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2281
  msgstr ""
2282
 
2297
  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."
2298
  msgstr ""
2299
 
2300
+ #: src/class-updraftplus.php:1739
2301
  msgid "Size: %s MB"
2302
  msgstr ""
2303
 
2305
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2306
  msgstr ""
2307
 
2308
+ #: src/class-updraftplus.php:3953, src/restorer.php:1446
2309
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2310
  msgstr ""
2311
 
2327
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2328
  msgstr ""
2329
 
2330
+ #: src/class-updraftplus.php:584, src/class-updraftplus.php:629
2331
  msgid "The given file was not found, or could not be read."
2332
  msgstr ""
2333
 
2411
  msgid "UpdraftCentral Connection"
2412
  msgstr ""
2413
 
2414
+ #: src/backup.php:1042, src/class-updraftplus.php:2973
2415
  msgid "The backup was aborted by the user"
2416
  msgstr ""
2417
 
2418
+ #: src/admin.php:4929
2419
  msgid "Your settings have been saved."
2420
  msgstr "تم حفظ إعداداتك."
2421
 
2422
+ #: src/admin.php:4009
2423
  msgid "Total backup size:"
2424
  msgstr ""
2425
 
2426
+ #: src/admin.php:3416
2427
  msgid "stop"
2428
  msgstr "توقف"
2429
 
2430
+ #: src/admin.php:905, src/admin.php:3209
2431
  msgid "The backup has finished running"
2432
  msgstr ""
2433
 
2453
  msgid "calculate"
2454
  msgstr ""
2455
 
2456
+ #: src/admin.php:879
2457
  msgid "You should save your changes to ensure that they are used for making your backup."
2458
  msgstr ""
2459
 
2460
+ #: src/admin.php:872
2461
  msgid "We requested to delete the file, but could not understand the server's response"
2462
  msgstr ""
2463
 
2464
+ #: src/admin.php:871
2465
  msgid "Please enter a valid URL"
2466
  msgstr ""
2467
 
2468
+ #: src/admin.php:854
2469
  msgid "Saving..."
2470
  msgstr "جاري الحفظ..."
2471
 
2472
+ #: src/admin.php:815
2473
  msgid "Error: the server sent us a response which we did not understand."
2474
  msgstr ""
2475
 
2476
+ #: src/admin.php:807
2477
  msgid "Fetching..."
2478
  msgstr ""
2479
 
2489
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2490
  msgstr ""
2491
 
2492
+ #: src/class-updraftplus.php:4005, src/restorer.php:2227
2493
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2494
  msgstr ""
2495
 
2496
+ #: src/class-updraftplus.php:4001
2497
  msgid "Please read this link for important information on this process."
2498
  msgstr ""
2499
 
2500
+ #: src/class-updraftplus.php:4001
2501
  msgid "It will be imported as a new site."
2502
  msgstr ""
2503
 
2504
+ #: src/admin.php:2842, src/templates/wp-admin/notices/horizontal-notice.php:16,
2505
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2506
  msgid "Dismiss"
2507
  msgstr "رفض"
2508
 
2509
+ #: src/admin.php:891
2510
  msgid "Please fill in the required information."
2511
  msgstr ""
2512
 
2567
  msgid "Call WordPress action:"
2568
  msgstr ""
2569
 
2570
+ #: src/admin.php:3032
2571
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2572
  msgstr ""
2573
 
2599
  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)."
2600
  msgstr ""
2601
 
2602
+ #: src/admin.php:4803
2603
  msgid "Send this backup to remote storage"
2604
  msgstr ""
2605
 
2606
+ #: src/admin.php:4801
2607
  msgid "Check out UpdraftPlus Vault."
2608
  msgstr ""
2609
 
2610
+ #: src/admin.php:4801
2611
  msgid "Not got any remote storage?"
2612
  msgstr ""
2613
 
2614
+ #: src/admin.php:4801
2615
  msgid "settings"
2616
  msgstr "إعدادات"
2617
 
2618
+ #: src/admin.php:4801
2619
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2620
  msgstr ""
2621
 
2622
+ #: src/admin.php:3030
2623
  msgid "Include any files in the backup"
2624
  msgstr ""
2625
 
2626
+ #: src/admin.php:3014
2627
  msgid "Include the database in the backup"
2628
  msgstr ""
2629
 
2630
+ #: src/admin.php:2841
2631
  msgid "Continue restoration"
2632
  msgstr ""
2633
 
2634
+ #: src/admin.php:2836
2635
  msgid "You have an unfinished restoration operation, begun %s ago."
2636
  msgstr ""
2637
 
2638
+ #: src/admin.php:2835
2639
  msgid "Unfinished restoration"
2640
  msgstr ""
2641
 
2642
+ #: src/admin.php:2833
2643
  msgid "%s minutes, %s seconds"
2644
  msgstr ""
2645
 
2646
+ #: src/admin.php:2699
2647
  msgid "Backup Contents And Schedule"
2648
  msgstr ""
2649
 
2650
+ #: src/admin.php:2802
2651
  msgid "Premium / Extensions"
2652
  msgstr ""
2653
 
2654
+ #: src/admin.php:2476, src/admin.php:2485
2655
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2656
  msgstr ""
2657
 
2658
+ #: src/addons/morefiles.php:71, src/admin.php:877
2659
  msgctxt "(verb)"
2660
  msgid "Download"
2661
  msgstr ""
2662
 
2663
+ #: src/admin.php:800
2664
  msgid "You have chosen to backup files, but no file entities have been selected"
2665
  msgstr ""
2666
 
2667
+ #: src/admin.php:695
2668
  msgid "Extensions"
2669
  msgstr "Extensions"
2670
 
2671
+ #: src/admin.php:687, src/admin.php:2801
2672
  msgid "Advanced Tools"
2673
  msgstr ""
2674
 
2787
  msgid "Could not access container"
2788
  msgstr ""
2789
 
2790
+ #: src/class-updraftplus.php:2992
2791
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
2792
  msgstr ""
2793
 
2917
  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)."
2918
  msgstr ""
2919
 
2920
+ #: src/admin.php:1862
2921
  msgid "Backup sets removed:"
2922
  msgstr ""
2923
 
2924
+ #: src/admin.php:890
2925
  msgid "Processing..."
2926
  msgstr ""
2927
 
2928
+ #: src/admin.php:888
2929
  msgid "For backups older than"
2930
  msgstr ""
2931
 
2932
+ #: src/admin.php:887
2933
  msgid "week(s)"
2934
  msgstr ""
2935
 
2936
+ #: src/admin.php:886
2937
  msgid "hour(s)"
2938
  msgstr ""
2939
 
2940
+ #: src/admin.php:885
2941
  msgid "day(s)"
2942
  msgstr ""
2943
 
2944
+ #: src/admin.php:884
2945
  msgid "in the month"
2946
  msgstr ""
2947
 
2948
+ #: src/admin.php:883
2949
  msgid "day"
2950
  msgstr ""
2951
 
2969
  msgid "You do not currently have any UpdraftPlus Vault quota"
2970
  msgstr ""
2971
 
2972
+ #: src/class-updraftplus.php:4076
2973
  msgid "You must upgrade MySQL to be able to use this database."
2974
  msgstr ""
2975
 
2976
+ #: src/class-updraftplus.php:4076
2977
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
2978
  msgstr ""
2979
 
2980
+ #: src/admin.php:2594
2981
  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."
2982
  msgstr ""
2983
 
3005
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
3006
  msgstr ""
3007
 
3008
+ #: src/admin.php:1192
3009
  msgid "Go to the remote storage settings in order to connect."
3010
  msgstr ""
3011
 
3012
+ #: src/admin.php:1192
3013
  msgid "%s has been chosen for remote storage, but you are not currently connected."
3014
  msgstr ""
3015
 
3017
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
3018
  msgstr ""
3019
 
3020
+ #: src/admin.php:860
3021
  msgid "Update quota count"
3022
  msgstr ""
3023
 
3024
+ #: src/admin.php:859
3025
  msgid "Counting..."
3026
  msgstr ""
3027
 
3028
+ #: src/admin.php:858
3029
  msgid "Disconnecting..."
3030
  msgstr ""
3031
 
3032
+ #: src/admin.php:856
3033
  msgid "Connecting..."
3034
  msgstr ""
3035
 
3055
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3056
  msgstr ""
3057
 
3058
+ #: src/admin.php:857, src/methods/updraftvault.php:392,
3059
  #: src/methods/updraftvault.php:450
3060
  msgid "Disconnect"
3061
  msgstr ""
3173
  msgid "Allow download"
3174
  msgstr ""
3175
 
3176
+ #: src/includes/class-remote-send.php:314
3177
  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."
3178
  msgstr ""
3179
 
3180
+ #: src/admin.php:866, src/includes/class-remote-send.php:299
3181
  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."
3182
  msgstr ""
3183
 
3184
+ #: src/includes/class-remote-send.php:541
3185
  msgid "Existing keys"
3186
  msgstr ""
3187
 
3193
  msgid "You must copy and paste this key now - it cannot be shown again."
3194
  msgstr ""
3195
 
3196
+ #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:438
3197
  msgid "Key created successfully."
3198
  msgstr ""
3199
 
3200
+ #: src/includes/class-remote-send.php:421
3201
  msgid "A key with this name already exists; you must use a unique name."
3202
  msgstr ""
3203
 
3204
+ #: src/includes/class-remote-send.php:345
3205
  msgid "Also send this backup to the active remote storage locations"
3206
  msgstr ""
3207
 
3208
+ #: src/includes/class-remote-send.php:310
3209
  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."
3210
  msgstr ""
3211
 
3212
+ #: src/includes/class-remote-send.php:266
3213
  msgid "site not found"
3214
  msgstr ""
3215
 
3216
+ #: src/includes/class-remote-send.php:251
3217
  msgid "Backup data will be sent to:"
3218
  msgstr ""
3219
 
3233
  msgid "This storage method does not allow downloading"
3234
  msgstr ""
3235
 
3236
+ #: src/admin.php:4167
3237
  msgid "(backup set imported from remote location)"
3238
  msgstr ""
3239
 
3255
  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."
3256
  msgstr ""
3257
 
3258
+ #: src/admin.php:873, src/includes/class-remote-send.php:327
3259
  msgid "Testing connection..."
3260
  msgstr ""
3261
 
3262
+ #: src/admin.php:870,
3263
  #: src/templates/wp-admin/settings/existing-backups-table.php:161
3264
  msgid "Deleting..."
3265
  msgstr ""
3266
 
3267
+ #: src/admin.php:869
3268
  msgid "key name"
3269
  msgstr ""
3270
 
3271
+ #: src/admin.php:867
3272
  msgid "Please give this key a name (e.g. indicate the site it is for):"
3273
  msgstr ""
3274
 
3275
+ #: src/admin.php:864
3276
  msgid "Creating..."
3277
  msgstr ""
3278
 
3296
  msgid "Send a backup to another site"
3297
  msgstr ""
3298
 
3299
+ #: src/admin.php:874, src/includes/class-remote-send.php:358,
3300
+ #: src/includes/class-remote-send.php:520
3301
  msgid "Send"
3302
  msgstr ""
3303
 
3304
+ #: src/admin.php:865, src/includes/class-remote-send.php:514
3305
  msgid "Send to site:"
3306
  msgstr ""
3307
 
3308
+ #: src/includes/class-remote-send.php:512
3309
  msgid "No receiving sites have yet been added."
3310
  msgstr ""
3311
 
3312
+ #: src/includes/class-remote-send.php:493
3313
  msgid "It is for sending backups to the following site: "
3314
  msgstr ""
3315
 
3316
+ #: src/includes/class-remote-send.php:493
3317
  msgid "The key was successfully added."
3318
  msgstr ""
3319
 
3320
+ #: src/includes/class-remote-send.php:477
3321
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
3322
  msgstr ""
3323
 
3324
+ #: src/includes/class-remote-send.php:466,
3325
+ #: src/includes/class-remote-send.php:468,
3326
+ #: src/includes/class-remote-send.php:472
3327
  msgid "The entered key was corrupt - please try again."
3328
  msgstr ""
3329
 
3330
+ #: src/includes/class-remote-send.php:464
3331
  msgid "The entered key was the wrong length - please try again."
3332
  msgstr ""
3333
 
3334
+ #: src/includes/class-remote-send.php:454
3335
  msgid "key"
3336
  msgstr ""
3337
 
3367
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3368
  msgstr ""
3369
 
3370
+ #: src/admin.php:863
3371
  msgid "Resetting..."
3372
  msgstr ""
3373
 
3374
+ #: src/addons/migrator.php:1745, src/admin.php:862
3375
  msgid "Add site"
3376
  msgstr ""
3377
 
3378
+ #: src/admin.php:861
3379
  msgid "Adding..."
3380
  msgstr ""
3381
 
3382
+ #: src/udaddons/options.php:298
3383
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
3384
  msgstr ""
3385
 
3387
  msgid "To use this backup, your database server needs to support the %s character set."
3388
  msgstr ""
3389
 
3390
+ #: src/udaddons/updraftplus-addons.php:997
3391
  msgid "go here to change your password on updraftplus.com."
3392
  msgstr ""
3393
 
3394
+ #: src/udaddons/updraftplus-addons.php:997
3395
  msgid "If you have forgotten your password "
3396
  msgstr ""
3397
 
3398
+ #: src/udaddons/updraftplus-addons.php:996
3399
  msgid "Go here to re-enter your password."
3400
  msgstr ""
3401
 
3403
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3404
  msgstr ""
3405
 
3406
+ #: src/admin.php:853, src/admin.php:879, src/admin.php:880
3407
  msgid "You have made changes to your settings, and not saved."
3408
  msgstr ""
3409
 
3416
  msgstr ""
3417
 
3418
  #: src/addons/azure.php:605, src/addons/onedrive.php:1148,
3419
+ #: src/includes/class-remote-send.php:314
3420
  msgid "For longer help, including screenshots, follow this link."
3421
  msgstr ""
3422
 
3609
 
3610
  #: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
3611
  #: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
3612
+ #: src/udaddons/updraftplus-addons.php:947,
3613
+ #: src/udaddons/updraftplus-addons.php:961
3614
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
3615
  msgstr ""
3616
 
3617
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3618
+ #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:961
3619
  msgid "It appears that your web server's IP Address (%s) is blocked."
3620
  msgstr ""
3621
 
3622
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3623
+ #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:961
3624
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
3625
  msgstr ""
3626
 
3662
  msgid "(at same time as files backup)"
3663
  msgstr ""
3664
 
3665
+ #: src/admin.php:3703
3666
  msgid "No backup has been completed"
3667
  msgstr ""
3668
 
3691
  msgid "Full feature list"
3692
  msgstr ""
3693
 
3694
+ #: src/addons/autobackup.php:1080
3695
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3696
  msgstr ""
3697
 
3705
  msgid "or"
3706
  msgstr ""
3707
 
3708
+ #: src/admin.php:847
3709
  msgid "You did not select any components to restore. Please select at least one, and then try again."
3710
  msgstr ""
3711
 
3736
  msgid "Check this box to have a basic report sent to"
3737
  msgstr ""
3738
 
3739
+ #: src/admin.php:3717
3740
  msgctxt "i.e. Non-automatic"
3741
  msgid "Manual"
3742
  msgstr ""
3754
  msgid "Any other file/directory on your server that you wish to backup"
3755
  msgstr ""
3756
 
3757
+ #: src/admin.php:2611
3758
  msgid "For even more features and personal support, check out "
3759
  msgstr ""
3760
 
3762
  msgid "Database decryption phrase"
3763
  msgstr ""
3764
 
3765
+ #: src/addons/autobackup.php:157, src/addons/autobackup.php:1026,
3766
+ #: src/admin.php:852
3767
  msgid "Automatic backup before update"
3768
  msgstr ""
3769
 
3844
  msgid "(learn more about this significant option)"
3845
  msgstr ""
3846
 
3847
+ #: src/udaddons/options.php:241
3848
  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."
3849
  msgstr ""
3850
 
3851
+ #: src/admin.php:3209, src/admin.php:4278
3852
  msgid "View Log"
3853
  msgstr ""
3854
 
3867
  msgid "and retain this many scheduled backups"
3868
  msgstr ""
3869
 
3870
+ #: src/admin.php:3673
3871
  msgid "incremental backup; base backup: %s"
3872
  msgstr ""
3873
 
3880
  msgid "Upload files into UpdraftPlus."
3881
  msgstr ""
3882
 
3883
+ #: src/admin.php:1138, src/includes/class-commands.php:462,
3884
  #: src/templates/wp-admin/settings/take-backup.php:12
3885
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
3886
  msgstr ""
3887
 
3888
+ #: src/class-updraftplus.php:3990
3889
  msgid "Backup label:"
3890
  msgstr ""
3891
 
3892
+ #: src/addons/backblaze.php:205, src/admin.php:2113
3893
  msgid "Error: unexpected file read fail"
3894
  msgstr ""
3895
 
3909
  msgid "Your label for this backup (optional)"
3910
  msgstr ""
3911
 
3912
+ #: src/methods/googledrive.php:1200
3913
  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."
3914
  msgstr ""
3915
 
3916
+ #: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:1000
3917
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
3918
  msgstr ""
3919
 
3920
+ #: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:996
3921
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
3922
  msgstr ""
3923
 
3924
+ #: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:862
3925
  msgid "You need to supply both an email address and a password"
3926
  msgstr ""
3927
 
3928
+ #: src/class-updraftplus.php:4009
3929
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3930
  msgstr ""
3931
 
3932
+ #: src/class-updraftplus.php:4009
3933
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3934
  msgstr ""
3935
 
3966
  msgid "You need to connect to receive future updates to UpdraftPlus."
3967
  msgstr ""
3968
 
3969
+ #: src/class-updraftplus.php:3982
3970
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3971
  msgstr ""
3972
 
3973
+ #: src/class-updraftplus.php:3982
3974
  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."
3975
  msgstr ""
3976
 
3977
+ #: src/class-updraftplus.php:3982
3978
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3979
  msgstr ""
3980
 
3981
+ #: src/class-updraftplus.php:3982
3982
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3983
  msgstr ""
3984
 
4007
  msgid "UpdraftPlus is on social media - check us out!"
4008
  msgstr ""
4009
 
4010
+ #: src/addons/wp-cli.php:907, src/admin.php:4466
4011
  msgid "Why am I seeing this?"
4012
  msgstr ""
4013
 
4021
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
4022
  msgstr ""
4023
 
4024
+ #: src/admin.php:2050, src/admin.php:2062, src/includes/class-commands.php:833
4025
  msgid "Start backup"
4026
  msgstr ""
4027
 
4028
+ #: src/class-updraftplus.php:3953, src/restorer.php:1446
4029
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4030
  msgstr ""
4031
 
4032
+ #: src/admin.php:3571
4033
  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."
4034
  msgstr ""
4035
 
4037
  msgid "Unless you have a problem, you can completely ignore everything here."
4038
  msgstr ""
4039
 
4040
+ #: src/admin.php:2288
4041
  msgid "This file could not be uploaded"
4042
  msgstr ""
4043
 
4044
+ #: src/admin.php:2251
4045
  msgid "You will find more information about this in the Settings section."
4046
  msgstr ""
4047
 
4069
  msgid "Full backup"
4070
  msgstr ""
4071
 
4072
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4073
  msgid "now proceeding with the updates..."
4074
  msgstr ""
4075
 
4076
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4077
  msgid "(view log...)"
4078
  msgstr ""
4079
 
4080
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4081
  msgid "Backup succeeded"
4082
  msgstr ""
4083
 
4084
  #: src/addons/incremental.php:237, src/addons/incremental.php:238,
4085
  #: src/addons/incremental.php:239, src/addons/incremental.php:240,
4086
+ #: src/admin.php:3718, src/admin.php:3719, src/admin.php:3720,
4087
  #: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
4088
  msgid "Every %s hours"
4089
  msgstr ""
4134
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4135
  msgstr ""
4136
 
4137
+ #: src/methods/googledrive.php:1207
4138
  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."
4139
  msgstr ""
4140
 
4158
  msgid "Free disk space in account:"
4159
  msgstr ""
4160
 
4161
+ #: src/admin.php:4900, src/templates/wp-admin/settings/take-backup.php:50
4162
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4163
  msgstr ""
4164
 
4165
+ #: src/admin.php:819, src/admin.php:1918,
4166
  #: src/includes/deprecated-actions.php:29,
4167
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4168
  #: src/templates/wp-admin/settings/tab-backups.php:21,
4170
  msgid "Existing Backups"
4171
  msgstr ""
4172
 
4173
+ #: src/admin.php:1143
4174
  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."
4175
  msgstr ""
4176
 
4177
+ #: src/admin.php:1143
4178
  msgid "To make a backup, just press the Backup Now button."
4179
  msgstr ""
4180
 
4181
+ #: src/admin.php:1143
4182
  msgid "Welcome to UpdraftPlus!"
4183
  msgstr ""
4184
 
4250
  msgid "user"
4251
  msgstr ""
4252
 
4253
+ #: src/class-updraftplus.php:1736
4254
  msgid "External database (%s)"
4255
  msgstr ""
4256
 
4257
+ #: src/methods/googledrive.php:1207
4258
  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."
4259
  msgstr ""
4260
 
4261
+ #: src/methods/googledrive.php:502
4262
  msgid "failed to access parent folder"
4263
  msgstr ""
4264
 
4265
  #: src/addons/googlecloud.php:698, src/addons/onedrive.php:907,
4266
+ #: src/addons/onedrive.php:918, src/methods/googledrive.php:442,
4267
+ #: src/methods/googledrive.php:455
4268
  msgid "However, subsequent access attempts failed:"
4269
  msgstr ""
4270
 
4271
+ #: src/addons/wp-cli.php:437, src/admin.php:4034
4272
  msgid "External database"
4273
  msgstr ""
4274
 
4300
  msgid "use UpdraftPlus Premium"
4301
  msgstr ""
4302
 
4303
+ #: src/class-updraftplus.php:3833
4304
  msgid "Decryption failed. The database file is encrypted."
4305
  msgstr ""
4306
 
4355
  msgid "Tenant"
4356
  msgstr ""
4357
 
4358
+ #: src/addons/wp-cli.php:800, src/admin.php:4588, src/admin.php:5344,
4359
  #: src/methods/openstack2.php:144,
4360
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
4361
  #: src/templates/wp-admin/settings/tab-backups.php:27,
4435
  msgstr ""
4436
 
4437
  #: src/addons/googlecloud.php:1108, src/addons/onedrive.php:1248,
4438
+ #: src/methods/dropbox.php:668, src/methods/googledrive.php:1289
4439
  msgid "Account holder's name: %s."
4440
  msgstr ""
4441
 
4442
+ #: src/methods/googledrive.php:1266
4443
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4444
  msgstr ""
4445
 
4446
+ #: src/methods/googledrive.php:1253
4447
  msgid "It is an ID number internal to Google Drive"
4448
  msgstr ""
4449
 
4450
+ #: src/methods/googledrive.php:1253
4451
  msgid "<strong>This is NOT a folder name</strong>."
4452
  msgstr ""
4453
 
4454
+ #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1248,
4455
+ #: src/methods/googledrive.php:1259
4456
  msgid "Folder"
4457
  msgstr ""
4458
 
4459
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:451,
4460
+ #: src/methods/googledrive.php:1160
4461
  msgid "%s download: failed: file not found"
4462
  msgstr ""
4463
 
4464
+ #: src/addons/googlecloud.php:718, src/methods/googledrive.php:475
4465
  msgid "Name: %s."
4466
  msgstr ""
4467
 
4468
+ #: src/methods/googledrive.php:216
4469
  msgid "Google Drive list files: failed to access parent folder"
4470
  msgstr ""
4471
 
4501
  msgid "Failed to unpack the archive"
4502
  msgstr ""
4503
 
4504
+ #: src/class-updraftplus.php:1366
4505
  msgid "Error - failed to download the file"
4506
  msgstr ""
4507
 
4526
  msgid "password/key"
4527
  msgstr " الرقم السري/المفتاح"
4528
 
4529
+ #: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:868,
4530
+ #: src/admin.php:5192, src/templates/wp-admin/settings/temporary-clone.php:63
4531
  msgid "Key"
4532
  msgstr "مفتاح"
4533
 
4543
  msgid "SCP/SFTP password/key"
4544
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
4545
 
4546
+ #: src/addons/wp-cli.php:449, src/admin.php:4078
4547
  msgid "Files backup (created by %s)"
4548
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
4549
 
4550
+ #: src/addons/wp-cli.php:449, src/admin.php:4078
4551
  msgid "Files and database WordPress backup (created by %s)"
4552
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
4553
 
4554
+ #: src/addons/importer.php:276, src/admin.php:4072,
4555
  #: src/includes/class-backup-history.php:435
4556
  msgid "Backup created by: %s."
4557
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
4558
 
4559
+ #: src/addons/wp-cli.php:431, src/admin.php:4032
4560
  msgid "Database (created by %s)"
4561
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
4562
 
4563
+ #: src/addons/wp-cli.php:429, src/admin.php:4026, src/admin.php:4074
4564
  msgid "unknown source"
4565
  msgstr "مصدر غير معروف"
4566
 
4575
  msgid "Upload backup files"
4576
  msgstr "رفع ملفات النسخة الإحتياطية"
4577
 
4578
+ #: src/admin.php:2303
4579
  msgid "This backup was created by %s, and can be imported."
4580
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
4581
 
4582
+ #: src/admin.php:1172
4583
  msgid "Read this page for a guide to possible causes and how to fix it."
4584
  msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية الإصلاح."
4585
 
4586
+ #: src/admin.php:1172
4587
  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."
4588
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
4589
 
4590
+ #: src/admin.php:831, src/includes/class-backup-history.php:442
4591
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
4592
  msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
4593
 
4594
+ #: src/admin.php:830
4595
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
4596
  msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
4597
 
4598
+ #: src/admin.php:830, src/admin.php:831,
4599
  #: src/includes/class-backup-history.php:442
4600
  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))."
4601
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
4602
 
4603
+ #: src/admin.php:4075, src/includes/class-wpadmin-commands.php:162,
4604
  #: src/restorer.php:1975
4605
  msgid "Backup created by unknown source (%s) - cannot be restored."
4606
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
4630
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
4631
  msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
4632
 
4633
+ #: src/admin.php:797
4634
  msgid "Rescanning remote and local storage for backup sets..."
4635
  msgstr "جاري فحص الإستضافة السحابية والمساحة التخزينية المحلية بحثا عن نسخ احتياطية..."
4636
 
4660
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4661
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
4662
 
4663
+ #: src/addons/morefiles.php:476, src/admin.php:3831
4664
  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."
4665
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
4666
 
4689
  msgid "Backup created by:"
4690
  msgstr "نسخة احتياطية أنشأها:"
4691
 
4692
+ #: src/udaddons/options.php:483
4693
  msgid "Available to claim on this site"
4694
  msgstr "متوفر للطلب من هذا الموقع"
4695
 
4776
  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)"
4777
  msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبقية، لكن الملف الذي نقوم برفعه حجمه %d بايت متبقية (الحجم الكلي: %d بايت)"
4778
 
4779
+ #: src/udaddons/updraftplus-addons.php:479,
4780
+ #: src/udaddons/updraftplus-addons.php:568
4781
  msgid "Errors occurred:"
4782
  msgstr "أخطاء حدثت:"
4783
 
4784
+ #: src/addons/wp-cli.php:664, src/admin.php:4508
4785
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
4786
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
4787
 
4805
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
4806
  msgstr "وجود مجلدات غير محذوفة من النسخة السابقة (من فضلك استخدم خيار \"مسح المجلدات القديمة\" لمسحها قبل المحاولة مرة أخرى) : %s"
4807
 
4808
+ #: src/admin.php:1147, src/class-updraftplus.php:848
4809
  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)"
4810
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
4811
 
4818
  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."
4819
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
4820
 
4821
+ #: src/addons/moredatabase.php:144, src/admin.php:1642
4822
  msgid "Messages:"
4823
  msgstr "رسائل:"
4824
 
4984
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4985
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
4986
 
4987
+ #: src/admin.php:845, src/central/bootstrap.php:565
4988
  msgid "Create"
4989
  msgstr "خلق"
4990
 
4991
+ #: src/admin.php:806
4992
  msgid "Trying..."
4993
  msgstr "اعادة المحاولة..."
4994
 
4995
+ #: src/admin.php:805
4996
  msgid "The new user's RackSpace console password is (this will not be shown again):"
4997
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
4998
 
4999
+ #: src/addons/wp-cli.php:797, src/admin.php:816, src/admin.php:4586
5000
  msgid "Error data:"
5001
  msgstr "خطأ بالبيانات:"
5002
 
5003
+ #: src/admin.php:4489
5004
  msgid "Backup does not exist in the backup history"
5005
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
5006
 
5007
+ #: src/admin.php:3145
5008
  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."
5009
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
5010
 
5044
  msgid "Email reports"
5045
  msgstr "تقارير البريد الإلكتروني"
5046
 
5047
+ #: src/class-updraftplus.php:1744, src/class-updraftplus.php:1749
5048
  msgid "%s checksum: %s"
5049
  msgstr "%s الاختباري:%s"
5050
 
5051
+ #: src/class-updraftplus.php:1680, src/class-updraftplus.php:1682
5052
  msgid "files: %s"
5053
  msgstr "ملفات:%s"
5054
 
5060
  msgid "Debugging information"
5061
  msgstr "معلومات التصحيح"
5062
 
5063
+ #: src/addons/reporting.php:223, src/admin.php:3992
5064
  msgid "Uploaded to:"
5065
  msgstr "تحميلها على:"
5066
 
5105
  msgid "%s authentication"
5106
  msgstr "%s مصادقة"
5107
 
5108
+ #: src/addons/onedrive.php:864, src/class-updraftplus.php:532,
5109
  #: src/methods/dropbox.php:240, src/methods/dropbox.php:753,
5110
  #: src/methods/dropbox.php:775, src/methods/dropbox.php:790,
5111
  #: src/methods/dropbox.php:803, src/methods/dropbox.php:946
5132
  msgid "Your site's admin email address (%s) will be used."
5133
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
5134
 
5135
+ #: src/admin.php:855, src/admin.php:2876, src/methods/updraftvault.php:319,
5136
  #: src/methods/updraftvault.php:362,
5137
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5138
  msgid "Connect"
5142
  msgid "For more reporting features, use the Reporting add-on."
5143
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
5144
 
5145
+ #: src/class-updraftplus.php:3914
5146
  msgid "(version: %s)"
5147
  msgstr "(الإصدار: %s)"
5148
 
5149
+ #: src/admin.php:794
5150
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5151
  msgstr "تحقق من حجم الملفات المسموح به بخدمة الإيميل، تقريبا %s ميجا، أي نسخ احتياطية أكبر من هذا الحجم لن تصلك أبدا."
5152
 
5153
+ #: src/addons/reporting.php:527, src/admin.php:793
5154
  msgid "When the Email storage method is enabled, also send the backup"
5155
  msgstr ""
5156
 
5190
  msgid "Files (database backup has not completed)"
5191
  msgstr "ملفات (لم يتم إكمال نسخ قاعدة بيانات احتياطيا)"
5192
 
5193
+ #: src/admin.php:334, src/backup.php:1044
5194
  msgid "Files and database"
5195
  msgstr "ملفات وقواعد البيانات"
5196
 
5214
  msgid "UpdraftPlus warning:"
5215
  msgstr "تحذير UpdraftPlus :"
5216
 
5217
+ #: src/udaddons/options.php:489
5218
  msgid "(or connect using the form on this page if you have already purchased it)"
5219
  msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
5220
 
5221
+ #: src/udaddons/options.php:477
5222
  msgid "please follow this link to update the plugin in order to activate it"
5223
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل تفعيله"
5224
 
5225
+ #: src/udaddons/options.php:474
5226
  msgid "please follow this link to update the plugin in order to get it"
5227
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل الحصول عليه"
5228
 
5229
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
5230
  msgid "latest"
5231
  msgstr "آخر"
5232
 
5233
+ #: src/udaddons/options.php:462
5234
  msgid "Your version: %s"
5235
  msgstr "الإصدار: %s"
5236
 
5237
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
5238
  msgid "You've got it"
5239
  msgstr "كنت قد حصلت عليه"
5240
 
5241
+ #: src/udaddons/options.php:421
5242
  msgid "UpdraftPlus Support"
5243
  msgstr "دعم UpdraftPlus"
5244
 
5245
+ #: src/udaddons/options.php:361
5246
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
5247
  msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
5248
 
5249
+ #: src/udaddons/options.php:350, src/udaddons/updraftplus-addons.php:315
5250
  msgid "UpdraftPlus Addons"
5251
  msgstr "اضافات UpdraftPlus"
5252
 
5255
  msgstr "يتوفر تحديث لUpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
5256
 
5257
  #: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
5258
+ #: src/udaddons/updraftplus-addons.php:1007
5259
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
5260
  msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة "
5261
 
5262
+ #: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:1003
5263
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
5264
  msgstr "لم يتم التعرف على عنوان البريد الإلكتروني وكلمة المرور عن طريق UpdraftPlus.Com"
5265
 
5266
  #: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
5267
+ #: src/udaddons/updraftplus-addons.php:966
5268
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
5269
  msgstr "لا يمكن فهم إستجابة الموقع UpdraftPlus.Com (البيانات: %s)"
5270
 
5271
+ #: src/udaddons/updraftplus-addons.php:889
5272
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
5273
  msgstr "رد UpdraftPlus.Com، ولكننا لم نفهم الإستجابة"
5274
 
5275
+ #: src/udaddons/updraftplus-addons.php:887
5276
  msgid "We failed to successfully connect to UpdraftPlus.Com"
5277
  msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
5278
 
5283
  msgid "Reporting"
5284
  msgstr "التقارير"
5285
 
5286
+ #: src/admin.php:5189
5287
  msgid "Options (raw)"
5288
  msgstr "خيارات (الخام)"
5289
 
5290
+ #: src/addons/reporting.php:525, src/admin.php:792
5291
  msgid "Send a report only when there are warnings/errors"
5292
  msgstr "إرسال تقرير فقط عندما تكون هناك تحذيرات / أخطاء"
5293
 
5303
  msgid "See also the \"More Files\" add-on from our shop."
5304
  msgstr "انظر أيضا \"ملفات إضافية\" الإضافة من متجرنا."
5305
 
5306
+ #: src/backup.php:3424, src/class-updraftplus.php:861
5307
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
5308
  msgstr "المساحة الحرة فى حساب الاستضافة الخاص بك قليلة جدا - فقط متبقى %s ميجا بايت"
5309
 
5310
+ #: src/class-updraftplus.php:845
5311
  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)"
5312
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
5313
 
5314
+ #: src/udaddons/options.php:512
5315
  msgid "Manage Addons"
5316
  msgstr "ادارة الأضافات"
5317
 
5318
+ #: src/udaddons/options.php:490, src/udaddons/options.php:490
5319
  msgid "Buy It"
5320
  msgstr "شراء"
5321
 
5322
+ #: src/udaddons/options.php:489
5323
  msgid "Get it from the UpdraftPlus.Com Store"
5324
  msgstr "الحصول علية من متجر UpdraftPlus.Com"
5325
 
5326
+ #: src/udaddons/options.php:483, src/udaddons/options.php:485
5327
  msgid "activate it on this site"
5328
  msgstr "تنشيطة على هذا الموقع"
5329
 
5330
+ #: src/udaddons/options.php:485
5331
  msgid "You have an inactive purchase"
5332
  msgstr "لديك شراء غير فعال"
5333
 
5334
+ #: src/udaddons/options.php:477
5335
  msgid "Assigned to this site"
5336
  msgstr "تعيين إلى هذا الموقع"
5337
 
5338
+ #: src/udaddons/options.php:474
5339
  msgid "Available for this site (via your all-addons purchase)"
5340
  msgstr "متاح لهذا الموقع (عن طريق الأضافات المشتراة)"
5341
 
5342
+ #: src/udaddons/options.php:468
5343
  msgid "(apparently a pre-release or withdrawn release)"
5344
  msgstr "(على ما يبدو انة اصدار قبل الاصدار الرسمى او اصدار مسحوب)"
5345
 
5346
+ #: src/udaddons/options.php:423
5347
  msgid "Go here"
5348
  msgstr "اذهب هنا"
5349
 
5350
+ #: src/udaddons/options.php:423
5351
  msgid "Need to get support?"
5352
  msgstr "هل انت بحاجة للحصول على الدعم؟"
5353
 
5354
+ #: src/udaddons/options.php:405
5355
  msgid "An error occurred when trying to retrieve your add-ons."
5356
  msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
5357
 
5358
+ #: src/udaddons/options.php:300
5359
  msgid "An unknown response was received. Response was:"
5360
  msgstr "تم تلقى رد غير معروف. الرد هو:"
5361
 
5362
+ #: src/udaddons/options.php:299
5363
  msgid "Claim not granted - your account login details were wrong"
5364
  msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
5365
 
5366
+ #: src/udaddons/options.php:297
5367
  msgid "Please wait whilst we make the claim..."
5368
  msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
5369
 
5370
+ #: src/udaddons/options.php:251
5371
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
5372
  msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
5373
 
5374
+ #: src/udaddons/options.php:244
5375
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
5376
  msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
5377
 
5378
+ #: src/udaddons/options.php:240
5379
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
5380
  msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
5381
 
5383
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
5384
  msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
5385
 
5386
+ #: src/admin.php:2874
5387
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
5388
  msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
5389
 
5390
+ #: src/admin.php:2950
5391
  msgid "Forgotten your details?"
5392
  msgstr "هل نسيت التفاصيل الخاصة بك؟"
5393
 
5394
+ #: src/admin.php:2863
5395
  msgid "Not yet got an account (it's free)? Go get one!"
5396
  msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
5397
 
5398
+ #: src/admin.php:2929
5399
  msgid "Connect with your UpdraftPlus.Com account"
5400
  msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
5401
 
5437
  msgid "Your web-server does not have the %s module installed."
5438
  msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
5439
 
5440
+ #: src/addons/googlecloud.php:1074, src/methods/googledrive.php:1278
5441
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
5442
  msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
5443
 
5446
  msgid "Drop backup files here"
5447
  msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
5448
 
5449
+ #: src/admin.php:804
5450
  msgid "The web server returned an error code (try again, or check your web server logs)"
5451
  msgstr "اعاد خادم الويب برمز خطأ (حاول مجددا, او قم بالتحقق من سجلات خادم الويب الخاص بك)"
5452
 
5453
+ #: src/admin.php:802
5454
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
5455
  msgstr "بدأت عملية الأستعادة. لا تضغط إيقاف أو إغلاق المتصفح حتى اعطائك التقرير بأنة تم انتهاء العملية."
5456
 
5457
+ #: src/addons/wp-cli.php:115, src/admin.php:799
5458
  msgid "If you exclude both the database and the files, then you have excluded everything!"
5459
  msgstr "إذا قمت باستبعاد كل من قاعدة البيانات والملفات, فقد قمت بأستبعاد كل شئ !"
5460
 
5466
  msgid "Remote Storage Options"
5467
  msgstr "خيارات التخزين البعيد"
5468
 
5469
+ #: src/addons/autobackup.php:343, src/addons/autobackup.php:437
5470
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
5471
  msgstr "(السجلات يمكن العثور عليها فى صفحة اعدادات UpdraftPlus كالمعتاد)..."
5472
 
5473
+ #: src/addons/autobackup.php:303, src/addons/autobackup.php:1085
5474
  msgid "Remember this choice for next time (you will still have the chance to change it)"
5475
  msgstr "تذكر هذا الاختيار في المرة القادمة (لايزال لديك الفرصة لتغييرة)"
5476
 
5483
  msgid "You can send a backup to more than one destination with an add-on."
5484
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
5485
 
5486
+ #: src/admin.php:3416
5487
  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."
5488
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
5489
 
5490
+ #: src/admin.php:3283
5491
  msgid "(%s%%, file %s of %s)"
5492
  msgstr "(%s%%, ملف %s من%s)"
5493
 
5494
+ #: src/addons/autobackup.php:304, src/addons/autobackup.php:1090,
5495
  #: src/addons/lockadmin.php:160
5496
  msgid "Read more about how this works..."
5497
  msgstr "قراءة المزيد عن كيفية عمل ذلك ..."
5524
  msgid "Backup is of: %s."
5525
  msgstr "النسخ الأحتياطى من: %s"
5526
 
5527
+ #: src/admin.php:894
5528
  msgid "%s settings test result:"
5529
  msgstr "اعدادات نتيجة اختبار %s"
5530
 
5531
+ #: src/admin.php:4140, src/admin.php:4142
5532
  msgid "(Not finished)"
5533
  msgstr "(غير منتهي)"
5534
 
5535
+ #: src/admin.php:4142
5536
  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."
5537
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
5538
 
5544
  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)."
5545
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
5546
 
5547
+ #: src/admin.php:3384
5548
  msgid "Job ID: %s"
5549
  msgstr "رقم الوظيفة: %s"
5550
 
5551
+ #: src/admin.php:3364
5552
  msgid "last activity: %ss ago"
5553
  msgstr "آخر نشاط: منذ %ss"
5554
 
5555
+ #: src/admin.php:3363
5556
  msgid "next resumption: %d (after %ss)"
5557
  msgstr "الاستئناف التالي: %d (بعد %ss)"
5558
 
5559
+ #: src/admin.php:3346, src/central/bootstrap.php:444,
5560
  #: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
5561
  #: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
5562
  msgid "Unknown"
5563
  msgstr "غير معروف"
5564
 
5565
+ #: src/admin.php:3297
5566
  msgid "Backup finished"
5567
  msgstr "الانتهاء من النسخ الاحتياطي"
5568
 
5569
+ #: src/admin.php:3292
5570
  msgid "Waiting until scheduled time to retry because of errors"
5571
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
5572
 
5573
+ #: src/admin.php:3288
5574
  msgid "Pruning old backup sets"
5575
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
5576
 
5577
+ #: src/admin.php:3275
5578
  msgid "Uploading files to remote storage"
5579
  msgstr "تحميل الملفات للمخزن البعيد"
5580
 
5581
+ #: src/admin.php:3344
5582
  msgid "Encrypted database"
5583
  msgstr "قاعدة بيانات مشفرة"
5584
 
5585
+ #: src/admin.php:3336
5586
  msgid "Encrypting database"
5587
  msgstr "تشفير قاعدة البيانات"
5588
 
5589
+ #: src/admin.php:3310
5590
  msgid "Created database backup"
5591
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
5592
 
5593
+ #: src/admin.php:3323
5594
  msgid "table: %s"
5595
  msgstr "الجدول: %s"
5596
 
5597
+ #: src/admin.php:3321
5598
  msgid "Creating database backup"
5599
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
5600
 
5601
+ #: src/admin.php:3266
5602
  msgid "Created file backup zips"
5603
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
5604
 
5605
+ #: src/admin.php:3253
5606
  msgid "Creating file backup zips"
5607
  msgstr "انشاء ملف النسخ الاحتياطى zips"
5608
 
5609
+ #: src/admin.php:3248
5610
  msgid "Backup begun"
5611
  msgstr "بدأ النسخ الاحتياطى"
5612
 
5613
+ #: src/admin.php:1151
5614
  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."
5615
  msgstr "تم تعطيل الجدولة فى تثبيت وورد بريس الخاصة بك. عبر اعداد DISABLE_WP_CRON. لا يمكن تشغيل النسخ الاحتياطى (حتى \"النسخ الاحتياطي الآن\") الا اذا قمت بأعداد مرفق لأستدعاء الجدولة يدويا, او حتى تفعيلها."
5616
 
5626
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
5627
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
5628
 
5629
+ #: src/class-updraftplus.php:3002
5630
  msgid "The backup has not finished; a resumption is scheduled"
5631
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
5632
 
5633
+ #: src/class-updraftplus.php:2022
5634
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
5635
  msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثير من الأحيان لا يحصلون على الموارد التى يأملونها; من فضلك اقرأ هذة الصفحة:"
5636
 
5639
  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)."
5640
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
5641
 
5642
+ #: src/admin.php:2638
5643
  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)."
5644
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
5645
 
5646
+ #: src/addons/autobackup.php:1104, src/admin.php:848
5647
  msgid "Proceed with update"
5648
  msgstr "المضي قدما مع التحديث"
5649
 
5650
+ #: src/addons/autobackup.php:1097
5651
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
5652
  msgstr "لا تقم بالخروج بعد الضغط على زر البدأ - انتظر حتى انتهاء النسخ الاحتياطى"
5653
 
5654
+ #: src/addons/autobackup.php:139, src/addons/autobackup.php:1046
5655
  msgid "UpdraftPlus Automatic Backups"
5656
  msgstr "UpdraftPlus النسخ الأحتياطى التلقائى"
5657
 
5658
+ #: src/addons/autobackup.php:529
5659
  msgid "Errors have occurred:"
5660
  msgstr "حدثت الأخطاء:"
5661
 
5662
+ #: src/addons/autobackup.php:501
5663
  msgid "Creating backup with UpdraftPlus..."
5664
  msgstr "إنشاء النسخ الاحتياطي مع UpdraftPlus ..."
5665
 
5666
+ #: src/addons/autobackup.php:446, src/addons/autobackup.php:576,
5667
+ #: src/addons/autobackup.php:627
5668
  msgid "Automatic Backup"
5669
  msgstr "النسخ الاحتياطي التلقائي"
5670
 
5671
+ #: src/addons/autobackup.php:437
5672
  msgid "Creating database backup with UpdraftPlus..."
5673
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات مع UpdraftPlus..."
5674
 
5675
+ #: src/addons/autobackup.php:403
5676
  msgid "themes"
5677
  msgstr "الثيمات"
5678
 
5679
+ #: src/addons/autobackup.php:396
5680
  msgid "plugins"
5681
  msgstr "الإضافات"
5682
 
5683
+ #: src/addons/autobackup.php:347, src/addons/autobackup.php:444
5684
  msgid "Starting automatic backup..."
5685
  msgstr "بدء النسخ الاحتياطي التلقائي ..."
5686
 
5687
+ #: src/addons/autobackup.php:343
5688
  msgid "Creating %s and database backup with UpdraftPlus..."
5689
  msgstr "انشاء %s وقاعدة البيانات الاحتياطية عن طريق UpdraftPlus..."
5690
 
5691
+ #: src/addons/autobackup.php:301
5692
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
5693
  msgstr "النسخ الاحتياطي تلقائيا (حسب الحاجة) للملحقات, الثيمات و قاعدة بيانات وردبريس مع UpdraftPlus قبل التحديث"
5694
 
5719
  msgid "Support"
5720
  msgstr "الدعم"
5721
 
5722
+ #: src/class-updraftplus.php:4237
5723
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
5724
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
5725
 
5726
+ #: src/class-updraftplus.php:4229
5727
  msgid "This database backup is missing core WordPress tables: %s"
5728
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
5729
 
5730
+ #: src/class-updraftplus.php:3975
5731
  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."
5732
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
5733
 
5734
+ #: src/class-updraftplus.php:3974, src/class-updraftplus.php:3981
5735
  msgid "%s version: %s"
5736
  msgstr "%s النسخة: %s"
5737
 
5738
+ #: src/class-updraftplus.php:3850
5739
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
5740
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
5741
 
5742
+ #: src/addons/autobackup.php:1072, src/admin.php:976,
5743
  #: src/includes/updraftplus-notices.php:171
5744
  msgid "Be safe with an automatic backup"
5745
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
5746
 
5747
+ #: src/admin.php:2591
5748
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
5749
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
5750
 
5751
+ #: src/admin.php:840
5752
  msgid "The file was uploaded."
5753
  msgstr "تم رفع الملف."
5754
 
5755
+ #: src/admin.php:839
5756
  msgid "Unknown server response status:"
5757
  msgstr "استجابة الخادم غير معروفة:"
5758
 
5759
+ #: src/admin.php:838
5760
  msgid "Unknown server response:"
5761
  msgstr "استجابة الملقم غير معروف:"
5762
 
5763
+ #: src/admin.php:837
5764
  msgid "This decryption key will be attempted:"
5765
  msgstr "سيتم محاولة فتح مفتاح التشفير:"
5766
 
5767
+ #: src/admin.php:836
5768
  msgid "Follow this link to attempt decryption and download the database file to your computer."
5769
  msgstr "اتبع هذا الرابط لمحاولة فك التشفير وتحميل ملف قاعدة البيانات على جهازك."
5770
 
5771
+ #: src/admin.php:835
5772
  msgid "Upload error"
5773
  msgstr "خطأ فى الرفع"
5774
 
5775
+ #: src/admin.php:834
5776
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
5777
  msgstr "هذا الملف لا يبدو انة ملف UpdraftPlus مضغوط مشفر لقاعدة البيانات (هذة الملفات .gz.crypt التى لديها اسم مثل: backup_(time)_(site name)_(code)_db.crypt.gz)."
5778
 
5779
+ #: src/admin.php:833
5780
  msgid "Upload error:"
5781
  msgstr "خطأ التحميل:"
5782
 
5783
+ #: src/admin.php:832
5784
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
5785
  msgstr "(تأكد من انك كنت تحاول رفع ملف مضغوط تم إنشاؤه مسبقا من قبل UpdraftPlus)"
5786
 
5787
+ #: src/admin.php:823
5788
  msgid "Download to your computer"
5789
  msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
5790
 
5791
+ #: src/admin.php:822
5792
  msgid "Delete from your web server"
5793
  msgstr "حذف من خادم الويب الخاص بك"
5794
 
5795
+ #: src/admin.php:4112
5796
  msgid "You appear to be missing one or more archives from this multi-archive set."
5797
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
5798
 
5799
+ #: src/admin.php:4109
5800
  msgid "(%d archive(s) in set)."
5801
  msgstr "(%d الأرشيف(s) in set)."
5802
 
5808
  msgid "Error: the server sent us a response (JSON) which we did not understand."
5809
  msgstr "الخطأ: الخادم ارسل لنا استجابة (JSON) اللتى لم نتمكن من فهمها."
5810
 
5811
+ #: src/admin.php:813
5812
  msgid "Warnings:"
5813
  msgstr "تحذيرات:"
5814
 
5815
+ #: src/admin.php:812
5816
  msgid "Error: the server sent an empty response."
5817
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
5818
 
5819
+ #: src/admin.php:2317
5820
  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?"
5821
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
5822
 
5890
  msgid "Looking for %s archive: file name: %s"
5891
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
5892
 
5893
+ #: src/addons/wp-cli.php:784, src/admin.php:4570
5894
  msgid "Final checks"
5895
  msgstr "الفحوصات النهائية"
5896
 
5902
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5903
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
5904
 
5905
+ #: src/admin.php:3817
5906
  msgid "Your wp-content directory server path: %s"
5907
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
5908
 
5909
+ #: src/admin.php:829
5910
  msgid "Raw backup history"
5911
  msgstr "تاريخ النسخ الاحتياطي الخام"
5912
 
5914
  msgid "Show raw backup and file list"
5915
  msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة الملفات"
5916
 
5917
+ #: src/admin.php:811
5918
  msgid "Processing files - please wait..."
5919
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
5920
 
5923
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
5924
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
5925
 
5926
+ #: src/class-updraftplus.php:3858
5927
  msgid "Failed to open database file."
5928
  msgstr "فشل فى فتح ملف قاعدة البيانات."
5929
 
5930
+ #: src/admin.php:5154
5931
  msgid "Known backups (raw)"
5932
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
5933
 
5945
 
5946
  #: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
5947
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
5948
+ #: src/admin.php:1151, src/admin.php:2596, src/backup.php:3431,
5949
+ #: src/class-updraftplus.php:4097, src/class-updraftplus.php:4097,
5950
  #: src/updraftplus.php:157
5951
  msgid "Go here for more information."
5952
  msgstr "اذهب هنا لمزيد من المعلومات."
5953
 
5954
+ #: src/admin.php:810
5955
  msgid "Some files are still downloading or being processed - please wait."
5956
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
5957
 
5958
+ #: src/class-updraftplus.php:3945, src/class-updraftplus.php:3965
5959
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
5960
  msgstr ""
5961
 
5997
 
5998
  #: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
5999
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
6000
+ #: src/methods/googledrive.php:1120, src/methods/openstack-base.php:455,
6001
  #: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
6002
  #: src/methods/stream-base.php:335
6003
  msgid "%s Error"
6007
  msgid "%s error - failed to upload file"
6008
  msgstr "خطأ %s - فشل فى ارسال الملف"
6009
 
6010
+ #: src/class-updraftplus.php:1255, src/methods/cloudfiles.php:211
6011
  msgid "%s error - failed to re-assemble chunks"
6012
  msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
6013
 
6022
  msgstr "المصادقة فشلت %s"
6023
 
6024
  #: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
6025
+ #: src/admin.php:2288, src/admin.php:2309, src/admin.php:2317,
6026
+ #: src/class-updraftplus.php:997, src/class-updraftplus.php:1003,
6027
+ #: src/class-updraftplus.php:3831, src/class-updraftplus.php:3833,
6028
+ #: src/class-updraftplus.php:3998, src/class-updraftplus.php:4005,
6029
+ #: src/class-updraftplus.php:4076, src/methods/googledrive.php:403,
6030
  #: src/methods/s3.php:341
6031
  msgid "Error: %s"
6032
  msgstr "خطأ: %s"
6033
 
6034
+ #: src/admin.php:3736
6035
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6036
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
6037
 
6038
+ #: src/admin.php:3734
6039
  msgid "Backup directory specified does <b>not</b> exist."
6040
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
6041
 
6042
+ #: src/admin.php:3398, src/admin.php:3685
6043
  msgid "Warning: %s"
6044
  msgstr "تحذير: %s"
6045
 
6063
  msgid "Warnings encountered:"
6064
  msgstr "مصادفة تحذيرات:"
6065
 
6066
+ #: src/class-updraftplus.php:2986
6067
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6068
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
6069
 
6070
+ #: src/class-updraftplus.php:874
6071
  msgid "Your free disk space is very low - only %s Mb remain"
6072
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
6073
 
6119
  msgid "Please supply the requested information, and then continue."
6120
  msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
6121
 
6122
+ #: src/class-updraftplus.php:4016, src/restorer.php:2233
6123
  msgid "Site information:"
6124
  msgstr "معلومات عن الموقع:"
6125
 
6127
  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."
6128
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
6129
 
6130
+ #: src/admin.php:2591, src/class-updraftplus.php:4009, src/restorer.php:2647
6131
  msgid "Warning:"
6132
  msgstr "تحذير:"
6133
 
6134
+ #: src/class-updraftplus.php:3998, src/class-updraftplus.php:4001,
6135
  #: src/restorer.php:530
6136
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6137
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
6140
  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."
6141
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
6142
 
6143
+ #: src/addons/azure.php:601, src/admin.php:3909,
6144
  #: src/methods/updraftvault.php:306
6145
  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."
6146
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
6147
 
6148
+ #: src/admin.php:849, src/includes/updraftplus-tour.php:89
6149
  msgid "Close"
6150
  msgstr "اغلق"
6151
 
6152
+ #: src/addons/autobackup.php:349, src/addons/autobackup.php:441,
6153
+ #: src/admin.php:803, src/methods/remotesend.php:69,
6154
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:228,
6155
  #: src/methods/remotesend.php:245, src/methods/remotesend.php:293
6156
  msgid "Unexpected response:"
6157
  msgstr "استجابة غير متوقعة:"
6158
 
6159
+ #: src/addons/reporting.php:523, src/admin.php:798
6160
  msgid "To send to more than one address, separate each address with a comma."
6161
  msgstr "لأرسال الى اكثر من عنوان واحد, قم بوضع فاصلة بين كل عنوان."
6162
 
6163
+ #: src/admin.php:827
6164
  msgid "PHP information"
6165
  msgstr "معلومات PHP"
6166
 
6184
  msgid "Also delete from remote storage"
6185
  msgstr "حذف ايضاً من التخزين البعيد"
6186
 
6187
+ #: src/admin.php:3087
6188
  msgid "Latest UpdraftPlus.com news:"
6189
  msgstr "اخر اخبار UpdraftPlus.com:"
6190
 
6212
  msgid "News"
6213
  msgstr "اخبار"
6214
 
6215
+ #: src/admin.php:1695, src/includes/class-wpadmin-commands.php:506
6216
  msgid "Backup set not found"
6217
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
6218
 
6234
  msgid "Blog link"
6235
  msgstr "رابط المدونة"
6236
 
6237
+ #: src/admin.php:893
6238
  msgid "Testing %s Settings..."
6239
  msgstr "اختبار اعدادات %s ..."
6240
 
6243
  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."
6244
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
6245
 
6246
+ #: src/admin.php:1167
6247
  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."
6248
  msgstr "UpdraftPlus على وضع تصحيح الأخطاء. قد تشاهد ملاحظات التصحيح على هذة الصفحة وليس فقط على UpdraftPlus، ولكن من اى برنامج اضافى اخر مثبت. يرجى محاولة التأكد من ان الملاحظات التى تراها هى من UpdraftPlus قبل طلب الدعم."
6249
 
6250
+ #: src/admin.php:1167
6251
  msgid "Notice"
6252
  msgstr "لاحظ"
6253
 
6255
  msgid "Errors encountered:"
6256
  msgstr "مصادفة اخطاء:"
6257
 
6258
+ #: src/admin.php:795
6259
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
6260
  msgstr "اعادة الفحص (يبحث عن النسخ الاحتياطية التي قمت برفعها يدويا في مسار النسخ الاحتياطي الداخلي)..."
6261
 
6262
+ #: src/admin.php:809
6263
  msgid "Begun looking for this entity"
6264
  msgstr "بدأ البحث عن هذا الكيان"
6265
 
6283
  msgid "Time taken (seconds):"
6284
  msgstr "الوقت المستغرق (ثانية):"
6285
 
6286
+ #: src/addons/migrator.php:1302, src/admin.php:814
6287
  msgid "Errors:"
6288
  msgstr "الأخطاء:"
6289
 
6382
  msgstr "مسار الدليل"
6383
 
6384
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
6385
+ #: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2945,
6386
  #: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
6387
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
6388
  msgid "Password"
6450
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
6451
 
6452
  #: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
6453
+ #: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3464,
6454
+ #: src/admin.php:3500, src/admin.php:3510, src/methods/addon-base-v2.php:313,
6455
  #: src/methods/stream-base.php:356
6456
  msgid "Failed"
6457
  msgstr "فشل"
6476
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
6477
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
6478
  #: src/methods/addon-base-v2.php:285, src/methods/ftp.php:42,
6479
+ #: src/methods/googledrive.php:202, src/methods/googledrive.php:204,
6480
  #: src/methods/remotesend.php:278, src/methods/stream-base.php:27,
6481
  #: src/methods/stream-base.php:163, src/methods/stream-base.php:169,
6482
  #: src/methods/stream-base.php:203, src/methods/stream-base.php:278
6673
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
6674
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
6675
  #: src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530,
6676
+ #: src/addons/webdav.php:253, src/admin.php:869,
6677
+ #: src/includes/class-remote-send.php:454, src/methods/addon-base-v2.php:305,
6678
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
6679
  #: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
6680
  #: src/methods/ftp.php:412, src/methods/ftp.php:416,
6716
  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."
6717
  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>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
6718
 
6719
+ #: src/admin.php:892, src/methods/backup-module.php:315
6720
  msgid "Test %s Settings"
6721
  msgstr "اختبار %s الإعدادات"
6722
 
6723
+ #: src/class-updraftplus.php:1298, src/class-updraftplus.php:1342,
6724
  #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
6725
  msgid "Error opening local file: Failed to download"
6726
  msgstr "خطأ في فتح ملف محلي: فشل التحميل"
6737
  msgstr "%s خطأ: فشل في تحميل"
6738
 
6739
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
6740
+ #: src/class-updraftplus.php:1140, src/methods/cloudfiles.php:130,
6741
+ #: src/methods/googledrive.php:1034, src/methods/googledrive.php:1039
6742
  msgid "%s Error: Failed to open local file"
6743
  msgstr "%s خطأ: فشل في فتح ملف محلي"
6744
 
6754
  msgid "Cloud Files authentication failed"
6755
  msgstr "فشل المصادقة بملفات سحابة"
6756
 
6757
+ #: src/methods/googledrive.php:1273
6758
  msgid "Authenticate with Google"
6759
  msgstr "المصادقة مع جوجل"
6760
 
6761
  #: src/addons/googlecloud.php:1027, src/addons/onedrive.php:1181,
6762
+ #: src/methods/googledrive.php:1237
6763
  msgid "Client Secret"
6764
  msgstr "سر العميل"
6765
 
6766
+ #: src/addons/googlecloud.php:1022, src/methods/googledrive.php:1234
6767
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
6768
  msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
6769
 
6770
  #: src/addons/googlecloud.php:1019, src/addons/onedrive.php:1177,
6771
+ #: src/methods/googledrive.php:1233
6772
  msgid "Client ID"
6773
  msgstr "معرف العميل"
6774
 
6775
+ #: src/methods/googledrive.php:1207
6776
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
6777
  msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
6778
 
6779
+ #: src/addons/googlecloud.php:997, src/methods/googledrive.php:1207
6780
  msgid "Select 'Web Application' as the application type."
6781
  msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
6782
 
6783
+ #: src/addons/googlecloud.php:995, src/methods/googledrive.php:1205
6784
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
6785
  msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
6786
 
6787
  #: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
6788
+ #: src/addons/googlecloud.php:866, src/methods/googledrive.php:580,
6789
+ #: src/methods/googledrive.php:581, src/methods/googledrive.php:591,
6790
+ #: src/methods/googledrive.php:592
6791
  msgid "Account is not authorized."
6792
  msgstr "حساب غير مخول."
6793
 
6794
+ #: src/methods/googledrive.php:502, src/methods/googledrive.php:548,
6795
+ #: src/methods/googledrive.php:554, src/methods/googledrive.php:556,
6796
  #: src/methods/stream-base.php:219
6797
  msgid "Failed to upload to %s"
6798
  msgstr "فشل في تحميل إلى %s"
6799
 
6800
+ #: src/methods/googledrive.php:531
6801
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
6802
  msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك على %d بايت متبقية، ولكن الملف حجمه %d بايت"
6803
 
6804
+ #: src/methods/googledrive.php:624, src/methods/googledrive.php:660
6805
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
6806
  msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
6807
 
6808
  #: src/addons/googlecloud.php:718, src/addons/onedrive.php:939,
6809
+ #: src/methods/googledrive.php:475
6810
  msgid "you have authenticated your %s account."
6811
  msgstr "لديك حساب %s مصادق عليه."
6812
 
6814
  #: src/addons/onedrive.php:939, src/addons/sftp.php:591,
6815
  #: src/addons/sftp.php:595, src/addons/wp-cli.php:515,
6816
  #: src/methods/addon-base-v2.php:327, src/methods/cloudfiles.php:575,
6817
+ #: src/methods/googledrive.php:475, src/methods/openstack-base.php:530,
6818
  #: src/methods/s3.php:1155, src/methods/stream-base.php:372
6819
  msgid "Success"
6820
  msgstr "نجاح"
6821
 
6822
  #: src/addons/onedrive.php:893, src/methods/dropbox.php:844,
6823
+ #: src/methods/dropbox.php:853, src/methods/googledrive.php:439
6824
  msgid "Your %s quota usage: %s %% used, %s available"
6825
  msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
6826
 
6827
+ #: src/addons/googlecloud.php:444, src/methods/googledrive.php:409
6828
  msgid "Authorization failed"
6829
  msgstr "فشل التخويل"
6830
 
6831
+ #: src/addons/googlecloud.php:436, src/methods/googledrive.php:401
6832
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
6833
  msgstr "لم نتمكن من الحصول على أي رمز من جوجل. يعني هذا غالبا أنكم قمتم بإدخال رقمكم السري خاطئ، أو أنكم لم تتمكنوا من إعادة مصادقة الخدمة (أسفله) بعد تصحيحها. تأكد منها، ثم قم بمتابعة الرابط أسفله لإعادة المصادقة مع الخدمة مرة أخرى. أخيرا، إن لم تعمل الإضافة، قم باستعمال خيار الخبراء لإعادة مسح كل خياراتكم، أنشئ معرف عميل جوجل جديد وابدأ من الصفر."
6834
 
6851
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
6852
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
6853
 
6854
+ #: src/admin.php:3468, src/admin.php:3503, src/admin.php:3507,
6855
+ #: src/includes/class-remote-send.php:327,
6856
  #: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
6857
  #: src/restorer.php:2888, src/restorer.php:2993
6858
  msgid "OK"
6870
  msgid "will restore as:"
6871
  msgstr "إستعادة على النحو التالي:"
6872
 
6873
+ #: src/class-updraftplus.php:3987, src/restorer.php:2215,
6874
  #: src/restorer.php:2304, src/restorer.php:2330
6875
  msgid "Old table prefix:"
6876
  msgstr "بادئة الجدول القديمة:"
6877
 
6878
  #: src/addons/reporting.php:72, src/addons/reporting.php:181,
6879
+ #: src/backup.php:1135, src/class-updraftplus.php:3914
6880
  msgid "Backup of:"
6881
  msgstr "نسخة احتياطية لـ:"
6882
 
6964
  msgid "Archive is expected to be size:"
6965
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
6966
 
6967
+ #: src/admin.php:4518
6968
  msgid "If making a request for support, please include this information:"
6969
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
6970
 
6971
+ #: src/admin.php:4517
6972
  msgid "ABORT: Could not find the information on which entities to restore."
6973
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
6974
 
6975
+ #: src/addons/wp-cli.php:647, src/admin.php:4496
6976
  msgid "UpdraftPlus Restoration: Progress"
6977
  msgstr "استرجاع UpdraftPlus: تقدم"
6978
 
6979
+ #: src/admin.php:4488
6980
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
6981
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
6982
 
6983
+ #: src/admin.php:4170
6984
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
6985
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
6986
 
6987
+ #: src/admin.php:4268
6988
  msgid "Delete this backup set"
6989
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
6990
 
6991
+ #: src/admin.php:3921
6992
  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."
6993
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
6994
 
6995
+ #: src/admin.php:3918
6996
  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."
6997
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
6998
 
6999
+ #: src/admin.php:3916
7000
  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)."
7001
  msgstr ""
7002
 
7037
  msgid "Use the server's SSL certificates"
7038
  msgstr "استخدام شهادات SSL للملقم"
7039
 
7040
+ #: src/admin.php:3738
7041
  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."
7042
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
7043
 
7044
+ #: src/admin.php:3738
7045
  msgid "or, to reset this option"
7046
  msgstr "أو، لإعادة هذا الخيار"
7047
 
7048
+ #: src/admin.php:3738
7049
  msgid "Follow this link to attempt to create the directory and set the permissions"
7050
  msgstr ""
7051
 
7052
+ #: src/admin.php:3730
7053
  msgid "Backup directory specified is writable, which is good."
7054
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
7055
 
7081
  msgid "Advanced / Debugging Settings"
7082
  msgstr "متقدمة / تصحيح الإعدادات "
7083
 
7084
+ #: src/admin.php:826
7085
  msgid "Requesting start of backup..."
7086
  msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
7087
 
7088
+ #: src/addons/morefiles.php:311, src/admin.php:843
7089
  msgid "Cancel"
7090
  msgstr "إلغاء"
7091
 
7092
  #: src/addons/incremental.php:235, src/addons/reporting.php:245,
7093
+ #: src/admin.php:4004
7094
  msgid "None"
7095
  msgstr "لا شيء"
7096
 
7106
  msgid "Database encryption phrase"
7107
  msgstr "عبارة تشفير قاعدة البيانات"
7108
 
7109
+ #: src/admin.php:2935, src/templates/wp-admin/settings/form-contents.php:255,
7110
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7111
  msgid "Email"
7112
  msgstr "البريد الإلكتروني"
7119
  msgid "Exclude these:"
7120
  msgstr "استبعاد هذه:"
7121
 
7122
+ #: src/admin.php:3817
7123
  msgid "Any other directories found inside wp-content"
7124
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
7125
 
7135
  msgid "To fix the time at which a backup should take place,"
7136
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
7137
 
7138
+ #: src/addons/incremental.php:244, src/admin.php:3724
7139
  msgid "Monthly"
7140
  msgstr "شهريا"
7141
 
7142
+ #: src/addons/incremental.php:243, src/admin.php:3723
7143
  msgid "Fortnightly"
7144
  msgstr "نصف شهري"
7145
 
7146
+ #: src/addons/incremental.php:242, src/admin.php:3722
7147
  msgid "Weekly"
7148
  msgstr "أسبوعيا"
7149
 
7150
+ #: src/addons/incremental.php:241, src/admin.php:3721
7151
  msgid "Daily"
7152
  msgstr "يوميا"
7153
 
7154
+ #: src/admin.php:851, src/admin.php:3699
7155
  msgid "Download log file"
7156
  msgstr "تحميل ملف السجل"
7157
 
7158
+ #: src/admin.php:3571
7159
  msgid "The folder exists, but your webserver does not have permission to write to it."
7160
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
7161
 
7162
+ #: src/admin.php:3566
7163
  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"
7164
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
7165
 
7166
+ #: src/admin.php:3552
7167
  msgid "The request to the filesystem to create the directory failed."
7168
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
7169
 
7170
+ #: src/admin.php:844, src/admin.php:3461, src/admin.php:3495,
7171
+ #: src/admin.php:4268, src/includes/class-remote-send.php:544,
7172
  #: src/templates/wp-admin/settings/existing-backups-table.php:155,
7173
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7174
  msgid "Delete"
7175
  msgstr "حذف"
7176
 
7177
+ #: src/admin.php:3415
7178
  msgid "show log"
7179
  msgstr "عرض السجل"
7180
 
7235
  msgid "Yes"
7236
  msgstr "نعم"
7237
 
7238
+ #: src/admin.php:5366, src/admin.php:5370,
7239
  #: src/templates/wp-admin/advanced/site-info.php:45,
7240
  #: src/templates/wp-admin/advanced/site-info.php:51,
7241
  #: src/templates/wp-admin/advanced/site-info.php:58,
7275
  msgid "Do read this helpful article of useful things to know before restoring."
7276
  msgstr "قم بقراءة هذا المقال المليئ بالأشياء المفيدة لتعلمها قبل الإستعادة."
7277
 
7278
+ #: src/class-updraftplus.php:3948
7279
  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"
7280
  msgstr "يمكنك البحث واستبدال قاعدة البيانات (لدمج موقع مع رابط رابط أو دومين جديد) باستخدام إضافة الدمج - اتبع هذا الرابط لمزيد من المعلومات."
7281
 
7316
  msgid "Delete backup set"
7317
  msgstr "حذف مجموعة النسخ الاحتياطية"
7318
 
7319
+ #: src/admin.php:825
7320
  msgid "Download error: the server sent us a response which we did not understand."
7321
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
7322
 
7325
  #: src/addons/migrator.php:1268, src/addons/migrator.php:1317,
7326
  #: src/addons/migrator.php:1555, src/addons/s3-enhanced.php:164,
7327
  #: src/addons/s3-enhanced.php:169, src/addons/s3-enhanced.php:171,
7328
+ #: src/addons/sftp.php:911, src/addons/webdav.php:203, src/admin.php:91,
7329
+ #: src/admin.php:817, src/includes/class-remote-send.php:266,
7330
+ #: src/includes/class-remote-send.php:293,
7331
+ #: src/includes/class-remote-send.php:299,
7332
+ #: src/includes/class-remote-send.php:362,
7333
+ #: src/includes/class-remote-send.php:421,
7334
+ #: src/includes/class-remote-send.php:462,
7335
+ #: src/includes/class-remote-send.php:472,
7336
+ #: src/includes/class-remote-send.php:477, src/methods/remotesend.php:74,
7337
  #: src/methods/remotesend.php:242, src/methods/remotesend.php:298,
7338
  #: src/methods/updraftvault.php:527, src/restorer.php:228,
7339
  #: src/restorer.php:256, src/restorer.php:1921
7340
  msgid "Error:"
7341
  msgstr "خطأ:"
7342
 
7343
+ #: src/admin.php:808
7344
  msgid "calculating..."
7345
  msgstr "حساب ..."
7346
 
7363
  msgid "This is a count of the contents of your Updraft directory"
7364
  msgstr "هذا عدد من محتويات مجلدات Updraft "
7365
 
7366
+ #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:202,
7367
+ #: src/methods/googledrive.php:204, src/methods/googledrive.php:475,
7368
+ #: src/methods/googledrive.php:502, src/methods/googledrive.php:531,
7369
+ #: src/methods/googledrive.php:538, src/methods/googledrive.php:548,
7370
+ #: src/methods/googledrive.php:554, src/methods/googledrive.php:556,
7371
+ #: src/methods/googledrive.php:1193, src/methods/googledrive.php:1200,
7372
+ #: src/methods/googledrive.php:1200, src/methods/googledrive.php:1233,
7373
+ #: src/methods/googledrive.php:1237, src/methods/googledrive.php:1248,
7374
+ #: src/methods/googledrive.php:1259
7375
  msgid "Google Drive"
7376
  msgstr "جوجل درايف"
7377
 
7390
  msgid "More tasks:"
7391
  msgstr "المزيد من المهام:"
7392
 
7393
+ #: src/admin.php:3114
7394
  msgid "Download most recently modified log file"
7395
  msgstr "تحميل ملف السجل المعدل مؤخرا"
7396
 
7398
  msgid "(Nothing yet logged)"
7399
  msgstr "(لا شيء حتى الآن تم تسجيله)"
7400
 
7401
+ #: src/addons/autobackup.php:344, src/addons/autobackup.php:439,
7402
+ #: src/admin.php:3070, src/admin.php:3076,
7403
  #: src/templates/wp-admin/settings/take-backup.php:64
7404
  msgid "Last log message"
7405
  msgstr "رسالة السجل الأخيرة"
7406
 
7407
+ #: src/addons/migrator.php:271, src/admin.php:663, src/admin.php:850,
7408
+ #: src/admin.php:4170
7409
  msgid "Restore"
7410
  msgstr "الإستعادة"
7411
 
7412
+ #: src/admin.php:842, src/templates/wp-admin/settings/take-backup.php:50
7413
  msgid "Backup Now"
7414
  msgstr "النسخ الاحتياطي الآن"
7415
 
7418
  msgstr "الساعة الآن"
7419
 
7420
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
7421
+ #: src/addons/wp-cli.php:431, src/admin.php:344, src/admin.php:3979,
7422
+ #: src/admin.php:4032, src/includes/class-remote-send.php:331,
7423
  #: src/includes/class-wpadmin-commands.php:157,
7424
  #: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
7425
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
7428
  msgid "Database"
7429
  msgstr "قاعدة بيانات"
7430
 
7431
+ #: src/admin.php:334, src/admin.php:5161,
7432
  #: src/templates/wp-admin/settings/take-backup.php:23
7433
  msgid "Files"
7434
  msgstr "ملفات"
7437
  msgid "Next scheduled backups"
7438
  msgstr "النسخ الاحتياطي المجدولة القادمة"
7439
 
7440
+ #: src/admin.php:313
7441
  msgid "At the same time as the files backup"
7442
  msgstr "في نفس الوقت الذي نقوم فيه بالنسخ الاحتياطي للملفات"
7443
 
7444
+ #: src/admin.php:303, src/admin.php:324, src/admin.php:331, src/admin.php:376,
7445
+ #: src/admin.php:407
7446
  msgid "Nothing currently scheduled"
7447
  msgstr "لا شيء مقرر حاليا"
7448
 
7454
  msgid "JavaScript warning"
7455
  msgstr "تحذير جافا سكريبت"
7456
 
7457
+ #: src/admin.php:828, src/admin.php:3151
7458
  msgid "Delete Old Directories"
7459
  msgstr "حذف الدلائل القديمة"
7460
 
7461
+ #: src/admin.php:2638
7462
  msgid "Current limit is:"
7463
  msgstr "الحد الحالي هو:"
7464
 
7465
+ #: src/admin.php:2613
7466
  msgid "Your backup has been restored."
7467
  msgstr "تمت استعادة النسخ الاحتياطي."
7468
 
7478
  msgid "UpdraftPlus.Com"
7479
  msgstr ""
7480
 
7481
+ #: src/admin.php:5053
7482
  msgid "Your settings have been wiped."
7483
  msgstr "تم القضاء على الإعدادات الخاصة بك."
7484
 
7485
+ #: src/admin.php:2573
7486
  msgid "Backup directory successfully created."
7487
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
7488
 
7489
+ #: src/admin.php:2566
7490
  msgid "Backup directory could not be created"
7491
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
7492
 
7493
+ #: src/admin.php:3431
7494
  msgid "Old directory removal failed for some reason. You may want to do this manually."
7495
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
7496
 
7497
+ #: src/admin.php:3429
7498
  msgid "Old directories successfully removed."
7499
  msgstr "تم إزالة الدلائل القديمة بنجاح."
7500
 
7501
+ #: src/admin.php:3426, src/admin.php:3426
7502
  msgid "Remove old directories"
7503
  msgstr "إزالة الدلائل القديمة"
7504
 
7505
  #: src/addons/migrator.php:340, src/addons/migrator.php:355,
7506
+ #: src/admin.php:2514, src/admin.php:2524, src/admin.php:2533,
7507
+ #: src/admin.php:2575, src/admin.php:3433
7508
  msgid "Return to UpdraftPlus Configuration"
7509
  msgstr "العودة إلى اعدادات UpdraftPlus"
7510
 
7511
+ #: src/admin.php:821, src/admin.php:2514, src/admin.php:2524,
7512
+ #: src/admin.php:2533, src/admin.php:2575, src/admin.php:3433,
7513
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7514
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7515
  msgid "Actions"
7516
  msgstr "الإجراءات"
7517
 
7518
+ #: src/admin.php:2409
7519
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
7520
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
7521
 
7522
+ #: src/admin.php:2309
7523
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
7524
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
7525
 
7526
+ #: src/admin.php:2205
7527
  msgid "No local copy present."
7528
  msgstr "لا نسخة محلية متوفرة."
7529
 
7530
+ #: src/admin.php:2202
7531
  msgid "Download in progress"
7532
  msgstr "التحميل في تقدم"
7533
 
7534
+ #: src/admin.php:820, src/admin.php:2191
7535
  msgid "File ready."
7536
  msgstr "ملف جاهز."
7537
 
7538
+ #: src/admin.php:2172
7539
  msgid "Download failed"
7540
  msgstr "فشل تحميل"
7541
 
7542
+ #: src/addons/wp-cli.php:518, src/admin.php:818,
7543
+ #: src/class-updraftplus.php:1298, src/class-updraftplus.php:1342,
7544
  #: src/includes/class-filesystem-functions.php:368,
7545
  #: src/includes/class-storage-methods-interface.php:324,
7546
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
7550
  msgid "Error"
7551
  msgstr "خطأ"
7552
 
7553
+ #: src/admin.php:1959
7554
  msgid "Could not find that job - perhaps it has already finished?"
7555
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
7556
 
7557
+ #: src/admin.php:1951
7558
  msgid "Job deleted"
7559
  msgstr "وظيفة حذفت"
7560
 
7561
+ #: src/admin.php:2050, src/includes/class-commands.php:833
7562
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
7563
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
7564
 
7565
+ #: src/admin.php:895
7566
  msgid "Nothing yet logged"
7567
  msgstr "لا شيء حتى الآن تم تسجيله"
7568
 
7569
+ #: src/admin.php:1163
7570
  msgid "Please consult this FAQ if you have problems backing up."
7571
  msgstr "يرجى الرجوع إلى الأسئلة الشائعة إذا كنت تواجه مشاكل بالنسخ الاحتياطي."
7572
 
7573
+ #: src/admin.php:1163
7574
  msgid "Your website is hosted using the %s web server."
7575
  msgstr "موقعك يستخدم %s من خادم الويب."
7576
 
7577
+ #: src/admin.php:1159
7578
  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."
7579
  msgstr "UpdraftPlus لا يدعم النسخ أقل من %s من نظام ووردبريس. يمكن أن يعمل لك، لكن إن لم يعمل، كن على يقين أنه لن نتمكن من مساعدة في حل المشاكل إلا بعد أن تقوم بترقية اصدار الووردبريس."
7580
 
7581
+ #: src/admin.php:1155
7582
  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."
7583
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
7584
 
7585
+ #: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1147,
7586
+ #: src/admin.php:1151, src/admin.php:1155, src/admin.php:1159,
7587
+ #: src/admin.php:1163, src/admin.php:1172, src/admin.php:3909,
7588
+ #: src/admin.php:3916, src/admin.php:3918, src/admin.php:5344,
7589
  #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
7590
  #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
7591
  #: src/methods/s3.php:859, src/methods/s3.php:863,
7596
  msgid "Warning"
7597
  msgstr "تحذير"
7598
 
7599
+ #: src/admin.php:1092
7600
  msgid "Add-Ons / Pro Support"
7601
  msgstr "إضافات / الدعم المدفوع"
7602
 
7603
+ #: src/admin.php:679, src/admin.php:1090, src/admin.php:2800
7604
  msgid "Settings"
7605
  msgstr "إعدادات"
7606
 
7620
  msgid "Like UpdraftPlus and can spare one minute?"
7621
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
7622
 
7623
+ #: src/addons/azure.php:268, src/class-updraftplus.php:3636,
7624
+ #: src/methods/googledrive.php:1120, src/methods/s3.php:341
7625
  msgid "File not found"
7626
  msgstr "لم يتم العثور على ملف"
7627
 
7629
  msgid "The decryption key used:"
7630
  msgstr "مفتاح فك التشفير المستخدم:"
7631
 
7632
+ #: src/class-updraftplus.php:3843,
7633
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
7634
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
7635
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
7636
 
7637
+ #: src/class-updraftplus.php:3831,
7638
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
7639
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
7640
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
7643
  msgid "Could not open the backup file for writing"
7644
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
7645
 
7646
+ #: src/class-updraftplus.php:3408
7647
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
7648
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
7649
 
7650
+ #: src/class-updraftplus.php:3392
7651
  msgid "Could not read the directory"
7652
  msgstr "لا يمكن قراءة الدليل"
7653
 
7654
+ #: src/admin.php:2251, src/backup.php:1359
7655
  msgid "Backup directory (%s) is not writable, or does not exist."
7656
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
7657
 
7659
  msgid "WordPress backup is complete"
7660
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
7661
 
7662
+ #: src/class-updraftplus.php:2998
7663
  msgid "The backup attempt has finished, apparently unsuccessfully"
7664
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
7665
 
7666
+ #: src/class-updraftplus.php:2980
7667
  msgid "The backup apparently succeeded and is now complete"
7668
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
7669
 
7671
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
7672
  msgstr "حدث خطأ في عملية التشفير لقاعدة البيانات. تم ايقاف العملية."
7673
 
7674
+ #: src/class-updraftplus.php:2680
7675
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
7676
  msgstr "لم نتمكن من خلق الملفات بمجلد النسخ الإحتياطية. تجاهل النسخ - تحقق من خيارات UpdraftPlus."
7677
 
7678
+ #: src/class-updraftplus.php:1796
7679
  msgid "Others"
7680
  msgstr "أخرى"
7681
 
7682
+ #: src/addons/multisite.php:500, src/class-updraftplus.php:1781
7683
  msgid "Uploads"
7684
  msgstr "الملفات المرفوعة"
7685
 
7686
+ #: src/class-updraftplus.php:1780
7687
  msgid "Themes"
7688
  msgstr "تصاميم"
7689
 
7690
+ #: src/class-updraftplus.php:1779
7691
  msgid "Plugins"
7692
  msgstr "الإضافات"
7693
 
7694
+ #: src/class-updraftplus.php:624
7695
  msgid "No log files were found."
7696
  msgstr "لا توجد ملفات السجل."
7697
 
7698
+ #: src/admin.php:2121, src/admin.php:2125, src/class-updraftplus.php:619
7699
  msgid "The log file could not be read."
7700
  msgstr "لا يمكن قراءة ملف السجل."
7701
 
7702
+ #: src/admin.php:1192, src/admin.php:1213, src/admin.php:1232,
7703
+ #: src/class-updraftplus.php:584, src/class-updraftplus.php:619,
7704
+ #: src/class-updraftplus.php:624, src/class-updraftplus.php:629
7705
  msgid "UpdraftPlus notice:"
7706
  msgstr "إشعار UpdraftPlus :"
7707
 
languages/updraftplus-bg_BG.po CHANGED
@@ -11,6 +11,10 @@ msgstr ""
11
  "Language: bg\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
14
  #: src/udaddons/updraftplus-addons.php:268,
15
  #: src/udaddons/updraftplus-addons.php:280
16
  msgid "go here"
@@ -25,7 +29,7 @@ msgstr ""
25
  msgid "Authentication"
26
  msgstr ""
27
 
28
- #: src/admin.php:924
29
  msgid "You must select at least one remote storage destination to upload this backup set to."
30
  msgstr ""
31
 
@@ -45,11 +49,11 @@ msgstr ""
45
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
46
  msgstr ""
47
 
48
- #: src/admin.php:951
49
  msgid "UpdraftClone key is required."
50
  msgstr ""
51
 
52
- #: src/admin.php:942
53
  msgid "The preparation of the clone data has been aborted."
54
  msgstr ""
55
 
@@ -69,7 +73,7 @@ msgstr ""
69
  msgid "Your database user does not have permission to drop tables"
70
  msgstr ""
71
 
72
- #: src/admin.php:2960
73
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
74
  msgstr ""
75
 
@@ -237,39 +241,39 @@ msgstr ""
237
  msgid "WordPress installed"
238
  msgstr ""
239
 
240
- #: src/admin.php:5422
241
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
242
  msgstr ""
243
 
244
- #: src/admin.php:3826
245
  msgid "Exclude these from"
246
  msgstr ""
247
 
248
- #: src/admin.php:950
249
  msgid "The exclusion rule which you are trying to add already exists"
250
  msgstr ""
251
 
252
- #: src/admin.php:949
253
  msgid "Please enter a valid file name prefix"
254
  msgstr ""
255
 
256
- #: src/admin.php:948
257
  msgid "Please enter characters that begin the filename which you would like to exclude"
258
  msgstr ""
259
 
260
- #: src/admin.php:947
261
  msgid "Please enter a valid file extension"
262
  msgstr ""
263
 
264
- #: src/admin.php:946
265
  msgid "Please enter a file extension, like zip"
266
  msgstr ""
267
 
268
- #: src/admin.php:945
269
  msgid "Please select a file/folder which you would like to exclude"
270
  msgstr ""
271
 
272
- #: src/admin.php:944
273
  msgid "Are you sure you want to remove this exclusion rule?"
274
  msgstr ""
275
 
@@ -293,15 +297,15 @@ msgstr ""
293
  msgid "failed to upload file to %s (see log file for more)"
294
  msgstr ""
295
 
296
- #: src/admin.php:5418
297
  msgid "Dashboard:"
298
  msgstr ""
299
 
300
- #: src/admin.php:5417
301
  msgid "Front page:"
302
  msgstr ""
303
 
304
- #: src/admin.php:5416
305
  msgid "Your clone has started and will be available at the following URLs once it is ready."
306
  msgstr ""
307
 
@@ -313,11 +317,11 @@ msgstr ""
313
  msgid "Current clones"
314
  msgstr ""
315
 
316
- #: src/class-updraftplus.php:3045
317
  msgid "Your clone will now deploy this data to re-create your site."
318
  msgstr ""
319
 
320
- #: src/admin.php:941
321
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
322
  msgstr ""
323
 
@@ -363,7 +367,7 @@ msgstr ""
363
  msgid "Unable to get renew date"
364
  msgstr ""
365
 
366
- #: src/admin.php:904
367
  msgid "The backup was aborted"
368
  msgstr ""
369
 
@@ -617,7 +621,7 @@ msgstr ""
617
  msgid "You can buy more temporary clone tokens here."
618
  msgstr ""
619
 
620
- #: src/admin.php:5373
621
  msgid "Forbid non-administrators to login to WordPress on your clone"
622
  msgstr ""
623
 
@@ -633,23 +637,23 @@ msgstr ""
633
  msgid "Other great plugins"
634
  msgstr ""
635
 
636
- #: src/admin.php:5420, src/admin.php:5423
637
  msgid "You can find your temporary clone information in your updraftplus.com account here."
638
  msgstr ""
639
 
640
- #: src/class-updraftplus.php:4310
641
  msgid "Choose a default for each table"
642
  msgstr ""
643
 
644
- #: src/admin.php:3274
645
  msgid "Sending files to remote site"
646
  msgstr ""
647
 
648
- #: src/admin.php:3269
649
  msgid "Clone server being provisioned and booted (can take several minutes)"
650
  msgstr ""
651
 
652
- #: src/admin.php:940
653
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
654
  msgstr ""
655
 
@@ -657,11 +661,11 @@ msgstr ""
657
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
658
  msgstr ""
659
 
660
- #: src/admin.php:2796
661
  msgid "Backup / Restore"
662
  msgstr ""
663
 
664
- #: src/admin.php:661
665
  msgid "Backup"
666
  msgstr ""
667
 
@@ -733,11 +737,11 @@ msgstr ""
733
  msgid "More information here."
734
  msgstr ""
735
 
736
- #: src/admin.php:669, src/admin.php:2797
737
  msgid "Migrate / Clone"
738
  msgstr ""
739
 
740
- #: src/admin.php:3034, src/admin.php:3959,
741
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
742
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
743
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
@@ -759,25 +763,25 @@ msgstr ""
759
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
760
  msgstr ""
761
 
762
- #: src/class-updraftplus.php:187
763
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
764
  msgstr ""
765
 
766
- #: src/admin.php:5396
767
  msgid "(current version)"
768
  msgstr ""
769
 
770
- #: src/admin.php:3736
771
  msgid "press here"
772
  msgstr ""
773
 
774
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
775
- #: src/methods/googledrive.php:1206
776
  msgid "this privacy policy"
777
  msgstr ""
778
 
779
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
780
- #: src/methods/googledrive.php:1206
781
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
782
  msgstr ""
783
 
@@ -801,7 +805,7 @@ msgstr ""
801
  msgid "Available temporary clone tokens:"
802
  msgstr ""
803
 
804
- #: src/admin.php:2884, src/includes/class-commands.php:901,
805
  #: src/includes/class-commands.php:949,
806
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
807
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
@@ -820,7 +824,7 @@ msgstr ""
820
  msgid "I consent to %s"
821
  msgstr ""
822
 
823
- #: src/admin.php:2982,
824
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
825
  msgid "One Time Password (check your OTP app to get this password)"
826
  msgstr ""
@@ -869,74 +873,74 @@ msgstr ""
869
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
870
  msgstr ""
871
 
872
- #: src/admin.php:5342
873
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
874
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
875
  msgstr[0] ""
876
  msgstr[1] ""
877
 
878
- #: src/admin.php:938
879
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
880
  msgstr ""
881
 
882
- #: src/admin.php:937
883
  msgid "You can also close this wizard."
884
  msgstr ""
885
 
886
- #: src/admin.php:936
887
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
888
  msgstr ""
889
 
890
- #: src/admin.php:935
891
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
892
  msgstr ""
893
 
894
- #: src/admin.php:934
895
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
896
  msgstr ""
897
 
898
- #: src/admin.php:933
899
  msgid "Perhaps you would want to login instead."
900
  msgstr ""
901
 
902
- #: src/admin.php:932
903
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
904
  msgstr ""
905
 
906
- #: src/admin.php:931
907
  msgid "An email is required and needs to be in a valid format."
908
  msgstr ""
909
 
910
- #: src/admin.php:930
911
  msgid "Both email and password fields are required."
912
  msgstr ""
913
 
914
- #: src/admin.php:929
915
  msgid "Registration successful."
916
  msgstr ""
917
 
918
- #: src/admin.php:928, src/admin.php:929
919
  msgid "Please follow this link to open %s in a new window."
920
  msgstr ""
921
 
922
- #: src/admin.php:928
923
  msgid "Login successful."
924
  msgstr ""
925
 
926
- #: src/admin.php:927,
927
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
928
  msgid "UpdraftCentral Cloud"
929
  msgstr ""
930
 
931
- #: src/admin.php:487
932
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
933
  msgstr ""
934
 
935
- #: src/admin.php:486
936
  msgid "Dismiss all UpdraftPlus news"
937
  msgstr ""
938
 
939
- #: src/admin.php:485
940
  msgid "UpdraftPlus News"
941
  msgstr ""
942
 
@@ -960,7 +964,7 @@ msgstr ""
960
  msgid "Azure Account"
961
  msgstr ""
962
 
963
- #: src/admin.php:926
964
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
965
  msgstr ""
966
 
@@ -972,23 +976,23 @@ msgstr ""
972
  msgid "Upload backup"
973
  msgstr ""
974
 
975
- #: src/admin.php:4246
976
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
977
  msgstr ""
978
 
979
- #: src/admin.php:925
980
  msgid "(already uploaded)"
981
  msgstr ""
982
 
983
- #: src/admin.php:923
984
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
985
  msgstr ""
986
 
987
- #: src/admin.php:844, src/admin.php:4246
988
  msgid "Upload"
989
  msgstr ""
990
 
991
- #: src/addons/reporting.php:529, src/admin.php:794
992
  msgid "Only email the database backup"
993
  msgstr ""
994
 
@@ -1058,7 +1062,7 @@ msgstr ""
1058
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1059
  msgstr ""
1060
 
1061
- #: src/includes/class-remote-send.php:437
1062
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1063
  msgstr ""
1064
 
@@ -1090,7 +1094,7 @@ msgstr ""
1090
  msgid "Thank you for installing UpdraftPlus!"
1091
  msgstr ""
1092
 
1093
- #: src/includes/class-remote-send.php:531
1094
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1095
  msgstr ""
1096
 
@@ -1118,11 +1122,11 @@ msgstr ""
1118
  msgid "Ensure you are logged into the correct account before continuing."
1119
  msgstr ""
1120
 
1121
- #: src/admin.php:4984
1122
  msgid "Remote storage method and instance id are required for authentication."
1123
  msgstr ""
1124
 
1125
- #: src/admin.php:4980
1126
  msgid "authentication error"
1127
  msgstr ""
1128
 
@@ -1150,11 +1154,11 @@ msgstr ""
1150
  msgid "Delete these settings"
1151
  msgstr ""
1152
 
1153
- #: src/addons/morestorage.php:81, src/admin.php:922
1154
  msgid "Currently disabled"
1155
  msgstr ""
1156
 
1157
- #: src/addons/morestorage.php:81, src/admin.php:921
1158
  msgid "Currently enabled"
1159
  msgstr ""
1160
 
@@ -1200,15 +1204,15 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
1200
  msgstr[0] ""
1201
  msgstr[1] ""
1202
 
1203
- #: src/class-updraftplus.php:4287
1204
  msgid "Your chosen replacement collation"
1205
  msgstr ""
1206
 
1207
- #: src/class-updraftplus.php:4264
1208
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1209
  msgstr ""
1210
 
1211
- #: src/class-updraftplus.php:4264
1212
  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."
1213
  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."
1214
  msgstr[0] ""
@@ -1276,15 +1280,15 @@ msgstr[1] ""
1276
  msgid "Requested table character set (%s) is not present - changing to %s."
1277
  msgstr ""
1278
 
1279
- #: src/class-updraftplus.php:4240
1280
  msgid "Your chosen character set to use instead:"
1281
  msgstr ""
1282
 
1283
- #: src/class-updraftplus.php:4230
1284
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1285
  msgstr ""
1286
 
1287
- #: src/class-updraftplus.php:4230
1288
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1289
  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."
1290
  msgstr[0] ""
@@ -1334,7 +1338,7 @@ msgstr ""
1334
  msgid "You now need to copy the key below and enter it at your %s."
1335
  msgstr ""
1336
 
1337
- #: src/admin.php:916
1338
  msgid "Please enter a valid URL e.g http://example.com"
1339
  msgstr "Моля въведете валиден адрес - пример http://example.com"
1340
 
@@ -1374,27 +1378,27 @@ msgstr "Ключ за Акаунта"
1374
  msgid "Account ID"
1375
  msgstr "Акаунт ID"
1376
 
1377
- #: src/class-updraftplus.php:4069
1378
  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."
1379
  msgstr ""
1380
 
1381
- #: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
1382
  msgid "the migrator add-on"
1383
  msgstr ""
1384
 
1385
- #: src/class-updraftplus.php:4067
1386
  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."
1387
  msgstr ""
1388
 
1389
- #: src/class-updraftplus.php:4065
1390
  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."
1391
  msgstr ""
1392
 
1393
- #: src/class-updraftplus.php:4060
1394
  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."
1395
  msgstr ""
1396
 
1397
- #: src/methods/googledrive.php:1275
1398
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1399
  msgstr ""
1400
 
@@ -1402,18 +1406,18 @@ msgstr ""
1402
  msgid "Follow this link to remove these settings for %s."
1403
  msgstr ""
1404
 
1405
- #: src/admin.php:895
1406
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1407
  msgstr ""
1408
 
1409
- #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
1410
- #: src/class-updraftplus.php:2252,
1411
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1412
  msgid "A PHP fatal error (%s) has occurred: %s"
1413
  msgstr ""
1414
 
1415
- #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
1416
- #: src/class-updraftplus.php:2245,
1417
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1418
  msgid "A PHP exception (%s) has occurred: %s"
1419
  msgstr ""
@@ -1467,11 +1471,11 @@ msgstr ""
1467
  msgid "Instant and secure logon with a wave of your phone."
1468
  msgstr ""
1469
 
1470
- #: src/admin.php:5190
1471
  msgid "Value"
1472
  msgstr ""
1473
 
1474
- #: src/admin.php:1779
1475
  msgid "Did not know how to delete from this cloud service."
1476
  msgstr ""
1477
 
@@ -1487,11 +1491,11 @@ msgstr ""
1487
  msgid "Cloud Files"
1488
  msgstr ""
1489
 
1490
- #: src/admin.php:4932
1491
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1492
  msgstr ""
1493
 
1494
- #: src/admin.php:4891
1495
  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."
1496
  msgstr ""
1497
 
@@ -1508,43 +1512,43 @@ msgstr ""
1508
  msgid "Extra database"
1509
  msgstr ""
1510
 
1511
- #: src/admin.php:4102
1512
  msgid "Press here to download or browse"
1513
  msgstr ""
1514
 
1515
- #: src/admin.php:1332, src/admin.php:1342
1516
  msgid "Error: invalid path"
1517
  msgstr ""
1518
 
1519
- #: src/admin.php:1131
1520
  msgid "An error occurred when fetching storage module options: "
1521
  msgstr ""
1522
 
1523
- #: src/admin.php:913
1524
  msgid "Loading log file"
1525
  msgstr ""
1526
 
1527
- #: src/admin.php:912
1528
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1529
  msgstr ""
1530
 
1531
- #: src/admin.php:911
1532
  msgid "Search"
1533
  msgstr ""
1534
 
1535
- #: src/admin.php:910
1536
  msgid "Select a file to view information about it"
1537
  msgstr ""
1538
 
1539
- #: src/admin.php:909
1540
  msgid "Browsing zip file"
1541
  msgstr ""
1542
 
1543
- #: src/admin.php:876
1544
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1545
  msgstr ""
1546
 
1547
- #: src/admin.php:822
1548
  msgid "Browse contents"
1549
  msgstr ""
1550
 
@@ -1552,43 +1556,43 @@ msgstr ""
1552
  msgid "Skipped tables:"
1553
  msgstr ""
1554
 
1555
- #: src/class-updraftplus.php:4365
1556
  msgid "This database backup has the following WordPress tables excluded: %s"
1557
  msgstr ""
1558
 
1559
- #: src/admin.php:3020
1560
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1561
  msgstr ""
1562
 
1563
- #: src/admin.php:3020
1564
  msgid "All WordPress tables will be backed up."
1565
  msgstr ""
1566
 
1567
- #: src/admin.php:908
1568
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1569
  msgstr ""
1570
 
1571
- #: src/admin.php:908
1572
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1573
  msgstr ""
1574
 
1575
- #: src/admin.php:908
1576
  msgid "The available memory on the server."
1577
  msgstr ""
1578
 
1579
- #: src/admin.php:908
1580
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1581
  msgstr ""
1582
 
1583
- #: src/admin.php:908
1584
  msgid "The file failed to upload. Please check the following:"
1585
  msgstr ""
1586
 
1587
- #: src/admin.php:907
1588
  msgid "HTTP code:"
1589
  msgstr ""
1590
 
1591
- #: src/addons/wp-cli.php:109, src/admin.php:799
1592
  msgid "You have chosen to backup a database, but no tables have been selected"
1593
  msgstr ""
1594
 
@@ -1738,7 +1742,7 @@ msgstr ""
1738
  msgid "Free"
1739
  msgstr ""
1740
 
1741
- #: src/admin.php:484
1742
  msgid "UpdraftPlus"
1743
  msgstr ""
1744
 
@@ -2013,7 +2017,7 @@ msgstr ""
2013
  msgid "Backup of: %s"
2014
  msgstr ""
2015
 
2016
- #: src/methods/googledrive.php:270
2017
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2018
  msgstr ""
2019
 
@@ -2037,11 +2041,11 @@ msgstr ""
2037
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2038
  msgstr ""
2039
 
2040
- #: src/admin.php:1862
2041
  msgid "Remote files deleted:"
2042
  msgstr ""
2043
 
2044
- #: src/admin.php:1861
2045
  msgid "Local files deleted:"
2046
  msgstr ""
2047
 
@@ -2049,39 +2053,39 @@ msgstr ""
2049
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2050
  msgstr ""
2051
 
2052
- #: src/admin.php:906
2053
  msgid "remote files deleted"
2054
  msgstr ""
2055
 
2056
- #: src/admin.php:902
2057
  msgid "Complete"
2058
  msgstr ""
2059
 
2060
- #: src/admin.php:901
2061
  msgid "Do you want to carry out the import?"
2062
  msgstr ""
2063
 
2064
- #: src/admin.php:900
2065
  msgid "Which was exported on:"
2066
  msgstr ""
2067
 
2068
- #: src/admin.php:899
2069
  msgid "This will import data from:"
2070
  msgstr ""
2071
 
2072
- #: src/admin.php:898
2073
  msgid "Importing..."
2074
  msgstr ""
2075
 
2076
- #: src/admin.php:894
2077
  msgid "You have not yet selected a file to import."
2078
  msgstr ""
2079
 
2080
- #: src/admin.php:878
2081
  msgid "Your export file will be of your displayed settings, not your saved ones."
2082
  msgstr ""
2083
 
2084
- #: src/admin.php:89
2085
  msgid "template not found"
2086
  msgstr ""
2087
 
@@ -2097,16 +2101,16 @@ msgstr ""
2097
  msgid "Account is not authorized (%s)."
2098
  msgstr ""
2099
 
2100
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
2101
  msgid "Your IP address:"
2102
  msgstr ""
2103
 
2104
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
2105
- #: src/udaddons/updraftplus-addons.php:903
2106
  msgid "To remove any block, please go here."
2107
  msgstr ""
2108
 
2109
- #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
2110
  msgid "An error response was received; HTTP code:"
2111
  msgstr ""
2112
 
@@ -2122,15 +2126,15 @@ msgstr ""
2122
  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"
2123
  msgstr ""
2124
 
2125
- #: src/admin.php:2607
2126
  msgid "To fix this problem go here."
2127
  msgstr ""
2128
 
2129
- #: src/admin.php:2607
2130
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2131
  msgstr ""
2132
 
2133
- #: src/admin.php:862
2134
  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."
2135
  msgstr ""
2136
 
@@ -2158,7 +2162,7 @@ msgstr ""
2158
  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."
2159
  msgstr ""
2160
 
2161
- #: src/udaddons/updraftplus-addons.php:906
2162
  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."
2163
  msgstr ""
2164
 
@@ -2252,7 +2256,7 @@ msgstr ""
2252
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2253
  msgstr ""
2254
 
2255
- #: src/methods/googledrive.php:530
2256
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2257
  msgstr ""
2258
 
@@ -2273,7 +2277,7 @@ msgstr ""
2273
  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."
2274
  msgstr ""
2275
 
2276
- #: src/class-updraftplus.php:1793
2277
  msgid "Size: %s MB"
2278
  msgstr ""
2279
 
@@ -2281,7 +2285,7 @@ msgstr ""
2281
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2282
  msgstr ""
2283
 
2284
- #: src/class-updraftplus.php:4086, src/restorer.php:1446
2285
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2286
  msgstr ""
2287
 
@@ -2303,7 +2307,7 @@ msgstr ""
2303
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2304
  msgstr ""
2305
 
2306
- #: src/class-updraftplus.php:583, src/class-updraftplus.php:628
2307
  msgid "The given file was not found, or could not be read."
2308
  msgstr ""
2309
 
@@ -2387,23 +2391,23 @@ msgstr ""
2387
  msgid "UpdraftCentral Connection"
2388
  msgstr ""
2389
 
2390
- #: src/backup.php:1042, src/class-updraftplus.php:3026
2391
  msgid "The backup was aborted by the user"
2392
  msgstr ""
2393
 
2394
- #: src/admin.php:4927
2395
  msgid "Your settings have been saved."
2396
  msgstr ""
2397
 
2398
- #: src/admin.php:4007
2399
  msgid "Total backup size:"
2400
  msgstr ""
2401
 
2402
- #: src/admin.php:3414
2403
  msgid "stop"
2404
  msgstr ""
2405
 
2406
- #: src/admin.php:903, src/admin.php:3207
2407
  msgid "The backup has finished running"
2408
  msgstr ""
2409
 
@@ -2429,27 +2433,27 @@ msgstr ""
2429
  msgid "calculate"
2430
  msgstr ""
2431
 
2432
- #: src/admin.php:877
2433
  msgid "You should save your changes to ensure that they are used for making your backup."
2434
  msgstr ""
2435
 
2436
- #: src/admin.php:870
2437
  msgid "We requested to delete the file, but could not understand the server's response"
2438
  msgstr ""
2439
 
2440
- #: src/admin.php:869
2441
  msgid "Please enter a valid URL"
2442
  msgstr ""
2443
 
2444
- #: src/admin.php:852
2445
  msgid "Saving..."
2446
  msgstr ""
2447
 
2448
- #: src/admin.php:813
2449
  msgid "Error: the server sent us a response which we did not understand."
2450
  msgstr ""
2451
 
2452
- #: src/admin.php:805
2453
  msgid "Fetching..."
2454
  msgstr ""
2455
 
@@ -2465,24 +2469,24 @@ msgstr ""
2465
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2466
  msgstr ""
2467
 
2468
- #: src/class-updraftplus.php:4138, src/restorer.php:2227
2469
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2470
  msgstr ""
2471
 
2472
- #: src/class-updraftplus.php:4134
2473
  msgid "Please read this link for important information on this process."
2474
  msgstr ""
2475
 
2476
- #: src/class-updraftplus.php:4134
2477
  msgid "It will be imported as a new site."
2478
  msgstr ""
2479
 
2480
- #: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
2481
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2482
  msgid "Dismiss"
2483
  msgstr ""
2484
 
2485
- #: src/admin.php:889
2486
  msgid "Please fill in the required information."
2487
  msgstr ""
2488
 
@@ -2543,7 +2547,7 @@ msgstr ""
2543
  msgid "Call WordPress action:"
2544
  msgstr ""
2545
 
2546
- #: src/admin.php:3030
2547
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2548
  msgstr ""
2549
 
@@ -2575,76 +2579,76 @@ msgstr ""
2575
  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)."
2576
  msgstr ""
2577
 
2578
- #: src/admin.php:4801
2579
  msgid "Send this backup to remote storage"
2580
  msgstr ""
2581
 
2582
- #: src/admin.php:4799
2583
  msgid "Check out UpdraftPlus Vault."
2584
  msgstr ""
2585
 
2586
- #: src/admin.php:4799
2587
  msgid "Not got any remote storage?"
2588
  msgstr ""
2589
 
2590
- #: src/admin.php:4799
2591
  msgid "settings"
2592
  msgstr ""
2593
 
2594
- #: src/admin.php:4799
2595
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2596
  msgstr ""
2597
 
2598
- #: src/admin.php:3028
2599
  msgid "Include any files in the backup"
2600
  msgstr ""
2601
 
2602
- #: src/admin.php:3012
2603
  msgid "Include the database in the backup"
2604
  msgstr ""
2605
 
2606
- #: src/admin.php:2839
2607
  msgid "Continue restoration"
2608
  msgstr ""
2609
 
2610
- #: src/admin.php:2834
2611
  msgid "You have an unfinished restoration operation, begun %s ago."
2612
  msgstr ""
2613
 
2614
- #: src/admin.php:2833
2615
  msgid "Unfinished restoration"
2616
  msgstr ""
2617
 
2618
- #: src/admin.php:2831
2619
  msgid "%s minutes, %s seconds"
2620
  msgstr ""
2621
 
2622
- #: src/admin.php:2697
2623
  msgid "Backup Contents And Schedule"
2624
  msgstr ""
2625
 
2626
- #: src/admin.php:2800
2627
  msgid "Premium / Extensions"
2628
  msgstr ""
2629
 
2630
- #: src/admin.php:2474, src/admin.php:2483
2631
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2632
  msgstr ""
2633
 
2634
- #: src/addons/morefiles.php:71, src/admin.php:875
2635
  msgctxt "(verb)"
2636
  msgid "Download"
2637
  msgstr ""
2638
 
2639
- #: src/admin.php:798
2640
  msgid "You have chosen to backup files, but no file entities have been selected"
2641
  msgstr ""
2642
 
2643
- #: src/admin.php:693
2644
  msgid "Extensions"
2645
  msgstr ""
2646
 
2647
- #: src/admin.php:685, src/admin.php:2799
2648
  msgid "Advanced Tools"
2649
  msgstr ""
2650
 
@@ -2763,7 +2767,7 @@ msgstr ""
2763
  msgid "Could not access container"
2764
  msgstr ""
2765
 
2766
- #: src/class-updraftplus.php:3045
2767
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
2768
  msgstr ""
2769
 
@@ -2893,35 +2897,35 @@ msgstr ""
2893
  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)."
2894
  msgstr ""
2895
 
2896
- #: src/admin.php:1860
2897
  msgid "Backup sets removed:"
2898
  msgstr ""
2899
 
2900
- #: src/admin.php:888
2901
  msgid "Processing..."
2902
  msgstr ""
2903
 
2904
- #: src/admin.php:886
2905
  msgid "For backups older than"
2906
  msgstr ""
2907
 
2908
- #: src/admin.php:885
2909
  msgid "week(s)"
2910
  msgstr ""
2911
 
2912
- #: src/admin.php:884
2913
  msgid "hour(s)"
2914
  msgstr ""
2915
 
2916
- #: src/admin.php:883
2917
  msgid "day(s)"
2918
  msgstr ""
2919
 
2920
- #: src/admin.php:882
2921
  msgid "in the month"
2922
  msgstr ""
2923
 
2924
- #: src/admin.php:881
2925
  msgid "day"
2926
  msgstr ""
2927
 
@@ -2945,15 +2949,15 @@ msgstr ""
2945
  msgid "You do not currently have any UpdraftPlus Vault quota"
2946
  msgstr ""
2947
 
2948
- #: src/class-updraftplus.php:4209
2949
  msgid "You must upgrade MySQL to be able to use this database."
2950
  msgstr ""
2951
 
2952
- #: src/class-updraftplus.php:4209
2953
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
2954
  msgstr ""
2955
 
2956
- #: src/admin.php:2592
2957
  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."
2958
  msgstr ""
2959
 
@@ -2981,11 +2985,11 @@ msgstr ""
2981
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
2982
  msgstr ""
2983
 
2984
- #: src/admin.php:1190
2985
  msgid "Go to the remote storage settings in order to connect."
2986
  msgstr ""
2987
 
2988
- #: src/admin.php:1190
2989
  msgid "%s has been chosen for remote storage, but you are not currently connected."
2990
  msgstr ""
2991
 
@@ -2993,19 +2997,19 @@ msgstr ""
2993
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
2994
  msgstr ""
2995
 
2996
- #: src/admin.php:858
2997
  msgid "Update quota count"
2998
  msgstr ""
2999
 
3000
- #: src/admin.php:857
3001
  msgid "Counting..."
3002
  msgstr ""
3003
 
3004
- #: src/admin.php:856
3005
  msgid "Disconnecting..."
3006
  msgstr ""
3007
 
3008
- #: src/admin.php:854
3009
  msgid "Connecting..."
3010
  msgstr ""
3011
 
@@ -3031,7 +3035,7 @@ msgstr ""
3031
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3032
  msgstr ""
3033
 
3034
- #: src/admin.php:855, src/methods/updraftvault.php:392,
3035
  #: src/methods/updraftvault.php:450
3036
  msgid "Disconnect"
3037
  msgstr ""
@@ -3149,15 +3153,15 @@ msgstr ""
3149
  msgid "Allow download"
3150
  msgstr ""
3151
 
3152
- #: src/includes/class-remote-send.php:313
3153
  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."
3154
  msgstr ""
3155
 
3156
- #: src/admin.php:864, src/includes/class-remote-send.php:298
3157
  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."
3158
  msgstr ""
3159
 
3160
- #: src/includes/class-remote-send.php:540
3161
  msgid "Existing keys"
3162
  msgstr ""
3163
 
@@ -3169,27 +3173,27 @@ msgstr ""
3169
  msgid "You must copy and paste this key now - it cannot be shown again."
3170
  msgstr ""
3171
 
3172
- #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:437
3173
  msgid "Key created successfully."
3174
  msgstr ""
3175
 
3176
- #: src/includes/class-remote-send.php:420
3177
  msgid "A key with this name already exists; you must use a unique name."
3178
  msgstr ""
3179
 
3180
- #: src/includes/class-remote-send.php:344
3181
  msgid "Also send this backup to the active remote storage locations"
3182
  msgstr ""
3183
 
3184
- #: src/includes/class-remote-send.php:309
3185
  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."
3186
  msgstr ""
3187
 
3188
- #: src/includes/class-remote-send.php:265
3189
  msgid "site not found"
3190
  msgstr ""
3191
 
3192
- #: src/includes/class-remote-send.php:250
3193
  msgid "Backup data will be sent to:"
3194
  msgstr ""
3195
 
@@ -3209,7 +3213,7 @@ msgstr ""
3209
  msgid "This storage method does not allow downloading"
3210
  msgstr ""
3211
 
3212
- #: src/admin.php:4165
3213
  msgid "(backup set imported from remote location)"
3214
  msgstr ""
3215
 
@@ -3231,24 +3235,24 @@ msgstr ""
3231
  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."
3232
  msgstr ""
3233
 
3234
- #: src/admin.php:871, src/includes/class-remote-send.php:326
3235
  msgid "Testing connection..."
3236
  msgstr ""
3237
 
3238
- #: src/admin.php:868,
3239
  #: src/templates/wp-admin/settings/existing-backups-table.php:161
3240
  msgid "Deleting..."
3241
  msgstr ""
3242
 
3243
- #: src/admin.php:867
3244
  msgid "key name"
3245
  msgstr ""
3246
 
3247
- #: src/admin.php:865
3248
  msgid "Please give this key a name (e.g. indicate the site it is for):"
3249
  msgstr ""
3250
 
3251
- #: src/admin.php:862
3252
  msgid "Creating..."
3253
  msgstr ""
3254
 
@@ -3272,42 +3276,42 @@ msgstr ""
3272
  msgid "Send a backup to another site"
3273
  msgstr ""
3274
 
3275
- #: src/admin.php:872, src/includes/class-remote-send.php:357,
3276
- #: src/includes/class-remote-send.php:519
3277
  msgid "Send"
3278
  msgstr ""
3279
 
3280
- #: src/admin.php:863, src/includes/class-remote-send.php:513
3281
  msgid "Send to site:"
3282
  msgstr ""
3283
 
3284
- #: src/includes/class-remote-send.php:511
3285
  msgid "No receiving sites have yet been added."
3286
  msgstr ""
3287
 
3288
- #: src/includes/class-remote-send.php:492
3289
  msgid "It is for sending backups to the following site: "
3290
  msgstr ""
3291
 
3292
- #: src/includes/class-remote-send.php:492
3293
  msgid "The key was successfully added."
3294
  msgstr ""
3295
 
3296
- #: src/includes/class-remote-send.php:476
3297
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
3298
  msgstr ""
3299
 
3300
- #: src/includes/class-remote-send.php:465,
3301
- #: src/includes/class-remote-send.php:467,
3302
- #: src/includes/class-remote-send.php:471
3303
  msgid "The entered key was corrupt - please try again."
3304
  msgstr ""
3305
 
3306
- #: src/includes/class-remote-send.php:463
3307
  msgid "The entered key was the wrong length - please try again."
3308
  msgstr ""
3309
 
3310
- #: src/includes/class-remote-send.php:453
3311
  msgid "key"
3312
  msgstr ""
3313
 
@@ -3343,19 +3347,19 @@ msgstr ""
3343
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3344
  msgstr ""
3345
 
3346
- #: src/admin.php:861
3347
  msgid "Resetting..."
3348
  msgstr ""
3349
 
3350
- #: src/addons/migrator.php:1745, src/admin.php:860
3351
  msgid "Add site"
3352
  msgstr ""
3353
 
3354
- #: src/admin.php:859
3355
  msgid "Adding..."
3356
  msgstr ""
3357
 
3358
- #: src/udaddons/options.php:294
3359
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
3360
  msgstr ""
3361
 
@@ -3363,15 +3367,15 @@ msgstr ""
3363
  msgid "To use this backup, your database server needs to support the %s character set."
3364
  msgstr ""
3365
 
3366
- #: src/udaddons/updraftplus-addons.php:939
3367
  msgid "go here to change your password on updraftplus.com."
3368
  msgstr ""
3369
 
3370
- #: src/udaddons/updraftplus-addons.php:939
3371
  msgid "If you have forgotten your password "
3372
  msgstr ""
3373
 
3374
- #: src/udaddons/updraftplus-addons.php:938
3375
  msgid "Go here to re-enter your password."
3376
  msgstr ""
3377
 
@@ -3379,7 +3383,7 @@ msgstr ""
3379
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3380
  msgstr ""
3381
 
3382
- #: src/admin.php:851, src/admin.php:877, src/admin.php:878
3383
  msgid "You have made changes to your settings, and not saved."
3384
  msgstr ""
3385
 
@@ -3392,7 +3396,7 @@ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you
3392
  msgstr ""
3393
 
3394
  #: src/addons/azure.php:605, src/addons/onedrive.php:1148,
3395
- #: src/includes/class-remote-send.php:313
3396
  msgid "For longer help, including screenshots, follow this link."
3397
  msgstr ""
3398
 
@@ -3585,18 +3589,18 @@ msgstr ""
3585
 
3586
  #: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
3587
  #: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
3588
- #: src/udaddons/updraftplus-addons.php:889,
3589
- #: src/udaddons/updraftplus-addons.php:903
3590
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
3591
  msgstr ""
3592
 
3593
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3594
- #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
3595
  msgid "It appears that your web server's IP Address (%s) is blocked."
3596
  msgstr ""
3597
 
3598
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3599
- #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
3600
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
3601
  msgstr ""
3602
 
@@ -3638,7 +3642,7 @@ msgstr ""
3638
  msgid "(at same time as files backup)"
3639
  msgstr ""
3640
 
3641
- #: src/admin.php:3701
3642
  msgid "No backup has been completed"
3643
  msgstr ""
3644
 
@@ -3667,7 +3671,7 @@ msgstr ""
3667
  msgid "Full feature list"
3668
  msgstr ""
3669
 
3670
- #: src/addons/autobackup.php:1075
3671
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3672
  msgstr ""
3673
 
@@ -3681,7 +3685,7 @@ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - o
3681
  msgid "or"
3682
  msgstr ""
3683
 
3684
- #: src/admin.php:845
3685
  msgid "You did not select any components to restore. Please select at least one, and then try again."
3686
  msgstr ""
3687
 
@@ -3712,7 +3716,7 @@ msgstr ""
3712
  msgid "Check this box to have a basic report sent to"
3713
  msgstr ""
3714
 
3715
- #: src/admin.php:3715
3716
  msgctxt "i.e. Non-automatic"
3717
  msgid "Manual"
3718
  msgstr ""
@@ -3730,7 +3734,7 @@ msgstr ""
3730
  msgid "Any other file/directory on your server that you wish to backup"
3731
  msgstr ""
3732
 
3733
- #: src/admin.php:2609
3734
  msgid "For even more features and personal support, check out "
3735
  msgstr ""
3736
 
@@ -3738,8 +3742,8 @@ msgstr ""
3738
  msgid "Database decryption phrase"
3739
  msgstr ""
3740
 
3741
- #: src/addons/autobackup.php:157, src/addons/autobackup.php:1021,
3742
- #: src/admin.php:850
3743
  msgid "Automatic backup before update"
3744
  msgstr ""
3745
 
@@ -3820,11 +3824,11 @@ msgstr ""
3820
  msgid "(learn more about this significant option)"
3821
  msgstr ""
3822
 
3823
- #: src/udaddons/options.php:237
3824
  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."
3825
  msgstr ""
3826
 
3827
- #: src/admin.php:3207, src/admin.php:4276
3828
  msgid "View Log"
3829
  msgstr ""
3830
 
@@ -3843,7 +3847,7 @@ msgstr ""
3843
  msgid "and retain this many scheduled backups"
3844
  msgstr ""
3845
 
3846
- #: src/admin.php:3671
3847
  msgid "incremental backup; base backup: %s"
3848
  msgstr ""
3849
 
@@ -3856,16 +3860,16 @@ msgstr ""
3856
  msgid "Upload files into UpdraftPlus."
3857
  msgstr ""
3858
 
3859
- #: src/admin.php:1136, src/includes/class-commands.php:462,
3860
  #: src/templates/wp-admin/settings/take-backup.php:12
3861
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
3862
  msgstr ""
3863
 
3864
- #: src/class-updraftplus.php:4123
3865
  msgid "Backup label:"
3866
  msgstr ""
3867
 
3868
- #: src/addons/backblaze.php:205, src/admin.php:2111
3869
  msgid "Error: unexpected file read fail"
3870
  msgstr ""
3871
 
@@ -3885,27 +3889,27 @@ msgstr ""
3885
  msgid "Your label for this backup (optional)"
3886
  msgstr ""
3887
 
3888
- #: src/methods/googledrive.php:1192
3889
  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."
3890
  msgstr ""
3891
 
3892
- #: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:942
3893
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
3894
  msgstr ""
3895
 
3896
- #: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:938
3897
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
3898
  msgstr ""
3899
 
3900
- #: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:804
3901
  msgid "You need to supply both an email address and a password"
3902
  msgstr ""
3903
 
3904
- #: src/class-updraftplus.php:4142
3905
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3906
  msgstr ""
3907
 
3908
- #: src/class-updraftplus.php:4142
3909
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3910
  msgstr ""
3911
 
@@ -3942,19 +3946,19 @@ msgstr ""
3942
  msgid "You need to connect to receive future updates to UpdraftPlus."
3943
  msgstr ""
3944
 
3945
- #: src/class-updraftplus.php:4115
3946
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3947
  msgstr ""
3948
 
3949
- #: src/class-updraftplus.php:4115
3950
  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."
3951
  msgstr ""
3952
 
3953
- #: src/class-updraftplus.php:4115
3954
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3955
  msgstr ""
3956
 
3957
- #: src/class-updraftplus.php:4115
3958
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3959
  msgstr ""
3960
 
@@ -3983,7 +3987,7 @@ msgstr ""
3983
  msgid "UpdraftPlus is on social media - check us out!"
3984
  msgstr ""
3985
 
3986
- #: src/addons/wp-cli.php:907, src/admin.php:4464
3987
  msgid "Why am I seeing this?"
3988
  msgstr ""
3989
 
@@ -3997,15 +4001,15 @@ msgstr ""
3997
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
3998
  msgstr ""
3999
 
4000
- #: src/admin.php:2048, src/admin.php:2060, src/includes/class-commands.php:833
4001
  msgid "Start backup"
4002
  msgstr ""
4003
 
4004
- #: src/class-updraftplus.php:4086, src/restorer.php:1446
4005
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4006
  msgstr ""
4007
 
4008
- #: src/admin.php:3569
4009
  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."
4010
  msgstr ""
4011
 
@@ -4013,11 +4017,11 @@ msgstr ""
4013
  msgid "Unless you have a problem, you can completely ignore everything here."
4014
  msgstr ""
4015
 
4016
- #: src/admin.php:2286
4017
  msgid "This file could not be uploaded"
4018
  msgstr ""
4019
 
4020
- #: src/admin.php:2249
4021
  msgid "You will find more information about this in the Settings section."
4022
  msgstr ""
4023
 
@@ -4045,21 +4049,21 @@ msgstr ""
4045
  msgid "Full backup"
4046
  msgstr ""
4047
 
4048
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4049
  msgid "now proceeding with the updates..."
4050
  msgstr ""
4051
 
4052
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4053
  msgid "(view log...)"
4054
  msgstr ""
4055
 
4056
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4057
  msgid "Backup succeeded"
4058
  msgstr ""
4059
 
4060
  #: src/addons/incremental.php:237, src/addons/incremental.php:238,
4061
  #: src/addons/incremental.php:239, src/addons/incremental.php:240,
4062
- #: src/admin.php:3716, src/admin.php:3717, src/admin.php:3718,
4063
  #: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
4064
  msgid "Every %s hours"
4065
  msgstr ""
@@ -4110,7 +4114,7 @@ msgstr ""
4110
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4111
  msgstr ""
4112
 
4113
- #: src/methods/googledrive.php:1199
4114
  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."
4115
  msgstr ""
4116
 
@@ -4134,11 +4138,11 @@ msgstr ""
4134
  msgid "Free disk space in account:"
4135
  msgstr ""
4136
 
4137
- #: src/admin.php:4898, src/templates/wp-admin/settings/take-backup.php:50
4138
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4139
  msgstr ""
4140
 
4141
- #: src/admin.php:817, src/admin.php:1916,
4142
  #: src/includes/deprecated-actions.php:29,
4143
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4144
  #: src/templates/wp-admin/settings/tab-backups.php:21,
@@ -4146,15 +4150,15 @@ msgstr ""
4146
  msgid "Existing Backups"
4147
  msgstr ""
4148
 
4149
- #: src/admin.php:1141
4150
  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."
4151
  msgstr ""
4152
 
4153
- #: src/admin.php:1141
4154
  msgid "To make a backup, just press the Backup Now button."
4155
  msgstr ""
4156
 
4157
- #: src/admin.php:1141
4158
  msgid "Welcome to UpdraftPlus!"
4159
  msgstr ""
4160
 
@@ -4226,25 +4230,25 @@ msgstr ""
4226
  msgid "user"
4227
  msgstr ""
4228
 
4229
- #: src/class-updraftplus.php:1790
4230
  msgid "External database (%s)"
4231
  msgstr ""
4232
 
4233
- #: src/methods/googledrive.php:1199
4234
  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."
4235
  msgstr ""
4236
 
4237
- #: src/methods/googledrive.php:494
4238
  msgid "failed to access parent folder"
4239
  msgstr ""
4240
 
4241
  #: src/addons/googlecloud.php:698, src/addons/onedrive.php:907,
4242
- #: src/addons/onedrive.php:918, src/methods/googledrive.php:434,
4243
- #: src/methods/googledrive.php:447
4244
  msgid "However, subsequent access attempts failed:"
4245
  msgstr ""
4246
 
4247
- #: src/addons/wp-cli.php:437, src/admin.php:4032
4248
  msgid "External database"
4249
  msgstr ""
4250
 
@@ -4276,7 +4280,7 @@ msgstr ""
4276
  msgid "use UpdraftPlus Premium"
4277
  msgstr ""
4278
 
4279
- #: src/class-updraftplus.php:3966
4280
  msgid "Decryption failed. The database file is encrypted."
4281
  msgstr ""
4282
 
@@ -4331,7 +4335,7 @@ msgstr ""
4331
  msgid "Tenant"
4332
  msgstr ""
4333
 
4334
- #: src/addons/wp-cli.php:800, src/admin.php:4586, src/admin.php:5342,
4335
  #: src/methods/openstack2.php:144,
4336
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
4337
  #: src/templates/wp-admin/settings/tab-backups.php:27,
@@ -4411,37 +4415,37 @@ msgid "%s error - failed to access the container"
4411
  msgstr ""
4412
 
4413
  #: src/addons/googlecloud.php:1108, src/addons/onedrive.php:1248,
4414
- #: src/methods/dropbox.php:668, src/methods/googledrive.php:1281
4415
  msgid "Account holder's name: %s."
4416
  msgstr ""
4417
 
4418
- #: src/methods/googledrive.php:1258
4419
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4420
  msgstr ""
4421
 
4422
- #: src/methods/googledrive.php:1245
4423
  msgid "It is an ID number internal to Google Drive"
4424
  msgstr ""
4425
 
4426
- #: src/methods/googledrive.php:1245
4427
  msgid "<strong>This is NOT a folder name</strong>."
4428
  msgstr ""
4429
 
4430
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1240,
4431
- #: src/methods/googledrive.php:1251
4432
  msgid "Folder"
4433
  msgstr ""
4434
 
4435
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:451,
4436
- #: src/methods/googledrive.php:1152
4437
  msgid "%s download: failed: file not found"
4438
  msgstr ""
4439
 
4440
- #: src/addons/googlecloud.php:718, src/methods/googledrive.php:467
4441
  msgid "Name: %s."
4442
  msgstr ""
4443
 
4444
- #: src/methods/googledrive.php:208
4445
  msgid "Google Drive list files: failed to access parent folder"
4446
  msgstr ""
4447
 
@@ -4477,7 +4481,7 @@ msgstr ""
4477
  msgid "Failed to unpack the archive"
4478
  msgstr ""
4479
 
4480
- #: src/class-updraftplus.php:1365
4481
  msgid "Error - failed to download the file"
4482
  msgstr ""
4483
 
@@ -4502,8 +4506,8 @@ msgstr ""
4502
  msgid "password/key"
4503
  msgstr ""
4504
 
4505
- #: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
4506
- #: src/admin.php:5190, src/templates/wp-admin/settings/temporary-clone.php:63
4507
  msgid "Key"
4508
  msgstr ""
4509
 
@@ -4519,24 +4523,24 @@ msgstr ""
4519
  msgid "SCP/SFTP password/key"
4520
  msgstr ""
4521
 
4522
- #: src/addons/wp-cli.php:449, src/admin.php:4076
4523
  msgid "Files backup (created by %s)"
4524
  msgstr ""
4525
 
4526
- #: src/addons/wp-cli.php:449, src/admin.php:4076
4527
  msgid "Files and database WordPress backup (created by %s)"
4528
  msgstr ""
4529
 
4530
- #: src/addons/importer.php:276, src/admin.php:4070,
4531
  #: src/includes/class-backup-history.php:435
4532
  msgid "Backup created by: %s."
4533
  msgstr ""
4534
 
4535
- #: src/addons/wp-cli.php:431, src/admin.php:4030
4536
  msgid "Database (created by %s)"
4537
  msgstr ""
4538
 
4539
- #: src/addons/wp-cli.php:429, src/admin.php:4024, src/admin.php:4072
4540
  msgid "unknown source"
4541
  msgstr ""
4542
 
@@ -4551,32 +4555,32 @@ msgstr ""
4551
  msgid "Upload backup files"
4552
  msgstr ""
4553
 
4554
- #: src/admin.php:2301
4555
  msgid "This backup was created by %s, and can be imported."
4556
  msgstr ""
4557
 
4558
- #: src/admin.php:1170
4559
  msgid "Read this page for a guide to possible causes and how to fix it."
4560
  msgstr ""
4561
 
4562
- #: src/admin.php:1170
4563
  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."
4564
  msgstr ""
4565
 
4566
- #: src/admin.php:829, src/includes/class-backup-history.php:442
4567
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
4568
  msgstr ""
4569
 
4570
- #: src/admin.php:828
4571
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
4572
  msgstr ""
4573
 
4574
- #: src/admin.php:828, src/admin.php:829,
4575
  #: src/includes/class-backup-history.php:442
4576
  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))."
4577
  msgstr ""
4578
 
4579
- #: src/admin.php:4073, src/includes/class-wpadmin-commands.php:162,
4580
  #: src/restorer.php:1975
4581
  msgid "Backup created by unknown source (%s) - cannot be restored."
4582
  msgstr ""
@@ -4606,7 +4610,7 @@ msgstr ""
4606
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
4607
  msgstr ""
4608
 
4609
- #: src/admin.php:795
4610
  msgid "Rescanning remote and local storage for backup sets..."
4611
  msgstr ""
4612
 
@@ -4636,7 +4640,7 @@ msgstr ""
4636
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4637
  msgstr ""
4638
 
4639
- #: src/addons/morefiles.php:476, src/admin.php:3829
4640
  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."
4641
  msgstr ""
4642
 
@@ -4665,7 +4669,7 @@ msgstr ""
4665
  msgid "Backup created by:"
4666
  msgstr ""
4667
 
4668
- #: src/udaddons/options.php:479
4669
  msgid "Available to claim on this site"
4670
  msgstr ""
4671
 
@@ -4752,12 +4756,12 @@ msgstr ""
4752
  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)"
4753
  msgstr ""
4754
 
4755
- #: src/udaddons/updraftplus-addons.php:474,
4756
- #: src/udaddons/updraftplus-addons.php:510
4757
  msgid "Errors occurred:"
4758
  msgstr ""
4759
 
4760
- #: src/addons/wp-cli.php:664, src/admin.php:4506
4761
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
4762
  msgstr ""
4763
 
@@ -4781,7 +4785,7 @@ msgstr ""
4781
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
4782
  msgstr ""
4783
 
4784
- #: src/admin.php:1145, src/class-updraftplus.php:847
4785
  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)"
4786
  msgstr ""
4787
 
@@ -4794,7 +4798,7 @@ msgstr ""
4794
  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."
4795
  msgstr ""
4796
 
4797
- #: src/addons/moredatabase.php:144, src/admin.php:1640
4798
  msgid "Messages:"
4799
  msgstr ""
4800
 
@@ -4960,27 +4964,27 @@ msgstr ""
4960
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4961
  msgstr ""
4962
 
4963
- #: src/admin.php:843, src/central/bootstrap.php:565
4964
  msgid "Create"
4965
  msgstr ""
4966
 
4967
- #: src/admin.php:804
4968
  msgid "Trying..."
4969
  msgstr ""
4970
 
4971
- #: src/admin.php:803
4972
  msgid "The new user's RackSpace console password is (this will not be shown again):"
4973
  msgstr ""
4974
 
4975
- #: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:4584
4976
  msgid "Error data:"
4977
  msgstr ""
4978
 
4979
- #: src/admin.php:4487
4980
  msgid "Backup does not exist in the backup history"
4981
  msgstr ""
4982
 
4983
- #: src/admin.php:3143
4984
  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."
4985
  msgstr ""
4986
 
@@ -5020,11 +5024,11 @@ msgstr ""
5020
  msgid "Email reports"
5021
  msgstr ""
5022
 
5023
- #: src/class-updraftplus.php:1798, src/class-updraftplus.php:1803
5024
  msgid "%s checksum: %s"
5025
  msgstr ""
5026
 
5027
- #: src/class-updraftplus.php:1734, src/class-updraftplus.php:1736
5028
  msgid "files: %s"
5029
  msgstr ""
5030
 
@@ -5036,7 +5040,7 @@ msgstr ""
5036
  msgid "Debugging information"
5037
  msgstr ""
5038
 
5039
- #: src/addons/reporting.php:223, src/admin.php:3990
5040
  msgid "Uploaded to:"
5041
  msgstr ""
5042
 
@@ -5081,7 +5085,7 @@ msgstr ""
5081
  msgid "%s authentication"
5082
  msgstr ""
5083
 
5084
- #: src/addons/onedrive.php:864, src/class-updraftplus.php:531,
5085
  #: src/methods/dropbox.php:240, src/methods/dropbox.php:753,
5086
  #: src/methods/dropbox.php:775, src/methods/dropbox.php:790,
5087
  #: src/methods/dropbox.php:803, src/methods/dropbox.php:946
@@ -5108,7 +5112,7 @@ msgstr ""
5108
  msgid "Your site's admin email address (%s) will be used."
5109
  msgstr ""
5110
 
5111
- #: src/admin.php:853, src/admin.php:2874, src/methods/updraftvault.php:319,
5112
  #: src/methods/updraftvault.php:362,
5113
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5114
  msgid "Connect"
@@ -5118,15 +5122,15 @@ msgstr ""
5118
  msgid "For more reporting features, use the Reporting add-on."
5119
  msgstr ""
5120
 
5121
- #: src/class-updraftplus.php:4047
5122
  msgid "(version: %s)"
5123
  msgstr ""
5124
 
5125
- #: src/admin.php:792
5126
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5127
  msgstr ""
5128
 
5129
- #: src/addons/reporting.php:527, src/admin.php:791
5130
  msgid "When the Email storage method is enabled, also send the backup"
5131
  msgstr ""
5132
 
@@ -5166,7 +5170,7 @@ msgstr ""
5166
  msgid "Files (database backup has not completed)"
5167
  msgstr ""
5168
 
5169
- #: src/admin.php:332, src/backup.php:1044
5170
  msgid "Files and database"
5171
  msgstr ""
5172
 
@@ -5190,39 +5194,39 @@ msgstr ""
5190
  msgid "UpdraftPlus warning:"
5191
  msgstr ""
5192
 
5193
- #: src/udaddons/options.php:485
5194
  msgid "(or connect using the form on this page if you have already purchased it)"
5195
  msgstr ""
5196
 
5197
- #: src/udaddons/options.php:473
5198
  msgid "please follow this link to update the plugin in order to activate it"
5199
  msgstr ""
5200
 
5201
- #: src/udaddons/options.php:470
5202
  msgid "please follow this link to update the plugin in order to get it"
5203
  msgstr ""
5204
 
5205
- #: src/udaddons/options.php:460, src/udaddons/options.php:462
5206
  msgid "latest"
5207
  msgstr ""
5208
 
5209
- #: src/udaddons/options.php:458
5210
  msgid "Your version: %s"
5211
  msgstr ""
5212
 
5213
- #: src/udaddons/options.php:456, src/udaddons/options.php:456
5214
  msgid "You've got it"
5215
  msgstr ""
5216
 
5217
- #: src/udaddons/options.php:417
5218
  msgid "UpdraftPlus Support"
5219
  msgstr ""
5220
 
5221
- #: src/udaddons/options.php:357
5222
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
5223
  msgstr ""
5224
 
5225
- #: src/udaddons/options.php:346, src/udaddons/updraftplus-addons.php:315
5226
  msgid "UpdraftPlus Addons"
5227
  msgstr ""
5228
 
@@ -5231,24 +5235,24 @@ msgid "An update is available for UpdraftPlus - please follow this link to get i
5231
  msgstr ""
5232
 
5233
  #: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
5234
- #: src/udaddons/updraftplus-addons.php:949
5235
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
5236
  msgstr ""
5237
 
5238
- #: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:945
5239
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
5240
  msgstr ""
5241
 
5242
  #: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
5243
- #: src/udaddons/updraftplus-addons.php:908
5244
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
5245
  msgstr ""
5246
 
5247
- #: src/udaddons/updraftplus-addons.php:831
5248
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
5249
  msgstr ""
5250
 
5251
- #: src/udaddons/updraftplus-addons.php:829
5252
  msgid "We failed to successfully connect to UpdraftPlus.Com"
5253
  msgstr ""
5254
 
@@ -5259,11 +5263,11 @@ msgstr ""
5259
  msgid "Reporting"
5260
  msgstr ""
5261
 
5262
- #: src/admin.php:5187
5263
  msgid "Options (raw)"
5264
  msgstr ""
5265
 
5266
- #: src/addons/reporting.php:525, src/admin.php:790
5267
  msgid "Send a report only when there are warnings/errors"
5268
  msgstr ""
5269
 
@@ -5279,79 +5283,79 @@ msgstr ""
5279
  msgid "See also the \"More Files\" add-on from our shop."
5280
  msgstr ""
5281
 
5282
- #: src/backup.php:3424, src/class-updraftplus.php:860
5283
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
5284
  msgstr ""
5285
 
5286
- #: src/class-updraftplus.php:844
5287
  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)"
5288
  msgstr ""
5289
 
5290
- #: src/udaddons/options.php:508
5291
  msgid "Manage Addons"
5292
  msgstr ""
5293
 
5294
- #: src/udaddons/options.php:486, src/udaddons/options.php:486
5295
  msgid "Buy It"
5296
  msgstr ""
5297
 
5298
- #: src/udaddons/options.php:485
5299
  msgid "Get it from the UpdraftPlus.Com Store"
5300
  msgstr ""
5301
 
5302
- #: src/udaddons/options.php:479, src/udaddons/options.php:481
5303
  msgid "activate it on this site"
5304
  msgstr ""
5305
 
5306
- #: src/udaddons/options.php:481
5307
  msgid "You have an inactive purchase"
5308
  msgstr ""
5309
 
5310
- #: src/udaddons/options.php:473
5311
  msgid "Assigned to this site"
5312
  msgstr ""
5313
 
5314
- #: src/udaddons/options.php:470
5315
  msgid "Available for this site (via your all-addons purchase)"
5316
  msgstr ""
5317
 
5318
- #: src/udaddons/options.php:464
5319
  msgid "(apparently a pre-release or withdrawn release)"
5320
  msgstr ""
5321
 
5322
- #: src/udaddons/options.php:419
5323
  msgid "Go here"
5324
  msgstr ""
5325
 
5326
- #: src/udaddons/options.php:419
5327
  msgid "Need to get support?"
5328
  msgstr ""
5329
 
5330
- #: src/udaddons/options.php:401
5331
  msgid "An error occurred when trying to retrieve your add-ons."
5332
  msgstr ""
5333
 
5334
- #: src/udaddons/options.php:296
5335
  msgid "An unknown response was received. Response was:"
5336
  msgstr ""
5337
 
5338
- #: src/udaddons/options.php:295
5339
  msgid "Claim not granted - your account login details were wrong"
5340
  msgstr ""
5341
 
5342
- #: src/udaddons/options.php:293
5343
  msgid "Please wait whilst we make the claim..."
5344
  msgstr ""
5345
 
5346
- #: src/udaddons/options.php:247
5347
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
5348
  msgstr ""
5349
 
5350
- #: src/udaddons/options.php:240
5351
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
5352
  msgstr ""
5353
 
5354
- #: src/udaddons/options.php:236
5355
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
5356
  msgstr ""
5357
 
@@ -5359,19 +5363,19 @@ msgstr ""
5359
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
5360
  msgstr ""
5361
 
5362
- #: src/admin.php:2872
5363
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
5364
  msgstr ""
5365
 
5366
- #: src/admin.php:2948
5367
  msgid "Forgotten your details?"
5368
  msgstr ""
5369
 
5370
- #: src/admin.php:2861
5371
  msgid "Not yet got an account (it's free)? Go get one!"
5372
  msgstr ""
5373
 
5374
- #: src/admin.php:2927
5375
  msgid "Connect with your UpdraftPlus.Com account"
5376
  msgstr ""
5377
 
@@ -5413,7 +5417,7 @@ msgstr ""
5413
  msgid "Your web-server does not have the %s module installed."
5414
  msgstr ""
5415
 
5416
- #: src/addons/googlecloud.php:1074, src/methods/googledrive.php:1270
5417
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
5418
  msgstr ""
5419
 
@@ -5422,15 +5426,15 @@ msgstr ""
5422
  msgid "Drop backup files here"
5423
  msgstr ""
5424
 
5425
- #: src/admin.php:802
5426
  msgid "The web server returned an error code (try again, or check your web server logs)"
5427
  msgstr ""
5428
 
5429
- #: src/admin.php:800
5430
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
5431
  msgstr ""
5432
 
5433
- #: src/addons/wp-cli.php:115, src/admin.php:797
5434
  msgid "If you exclude both the database and the files, then you have excluded everything!"
5435
  msgstr ""
5436
 
@@ -5442,11 +5446,11 @@ msgstr ""
5442
  msgid "Remote Storage Options"
5443
  msgstr ""
5444
 
5445
- #: src/addons/autobackup.php:338, src/addons/autobackup.php:432
5446
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
5447
  msgstr ""
5448
 
5449
- #: src/addons/autobackup.php:298, src/addons/autobackup.php:1080
5450
  msgid "Remember this choice for next time (you will still have the chance to change it)"
5451
  msgstr ""
5452
 
@@ -5459,15 +5463,15 @@ msgstr ""
5459
  msgid "You can send a backup to more than one destination with an add-on."
5460
  msgstr ""
5461
 
5462
- #: src/admin.php:3414
5463
  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."
5464
  msgstr ""
5465
 
5466
- #: src/admin.php:3281
5467
  msgid "(%s%%, file %s of %s)"
5468
  msgstr ""
5469
 
5470
- #: src/addons/autobackup.php:299, src/addons/autobackup.php:1085,
5471
  #: src/addons/lockadmin.php:160
5472
  msgid "Read more about how this works..."
5473
  msgstr ""
@@ -5500,15 +5504,15 @@ msgstr ""
5500
  msgid "Backup is of: %s."
5501
  msgstr ""
5502
 
5503
- #: src/admin.php:892
5504
  msgid "%s settings test result:"
5505
  msgstr ""
5506
 
5507
- #: src/admin.php:4138, src/admin.php:4140
5508
  msgid "(Not finished)"
5509
  msgstr ""
5510
 
5511
- #: src/admin.php:4140
5512
  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."
5513
  msgstr ""
5514
 
@@ -5520,73 +5524,73 @@ msgstr ""
5520
  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)."
5521
  msgstr ""
5522
 
5523
- #: src/admin.php:3382
5524
  msgid "Job ID: %s"
5525
  msgstr ""
5526
 
5527
- #: src/admin.php:3362
5528
  msgid "last activity: %ss ago"
5529
  msgstr ""
5530
 
5531
- #: src/admin.php:3361
5532
  msgid "next resumption: %d (after %ss)"
5533
  msgstr ""
5534
 
5535
- #: src/admin.php:3344, src/central/bootstrap.php:444,
5536
  #: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
5537
  #: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
5538
  msgid "Unknown"
5539
  msgstr ""
5540
 
5541
- #: src/admin.php:3295
5542
  msgid "Backup finished"
5543
  msgstr ""
5544
 
5545
- #: src/admin.php:3290
5546
  msgid "Waiting until scheduled time to retry because of errors"
5547
  msgstr ""
5548
 
5549
- #: src/admin.php:3286
5550
  msgid "Pruning old backup sets"
5551
  msgstr ""
5552
 
5553
- #: src/admin.php:3273
5554
  msgid "Uploading files to remote storage"
5555
  msgstr ""
5556
 
5557
- #: src/admin.php:3342
5558
  msgid "Encrypted database"
5559
  msgstr ""
5560
 
5561
- #: src/admin.php:3334
5562
  msgid "Encrypting database"
5563
  msgstr ""
5564
 
5565
- #: src/admin.php:3308
5566
  msgid "Created database backup"
5567
  msgstr ""
5568
 
5569
- #: src/admin.php:3321
5570
  msgid "table: %s"
5571
  msgstr ""
5572
 
5573
- #: src/admin.php:3319
5574
  msgid "Creating database backup"
5575
  msgstr ""
5576
 
5577
- #: src/admin.php:3264
5578
  msgid "Created file backup zips"
5579
  msgstr ""
5580
 
5581
- #: src/admin.php:3251
5582
  msgid "Creating file backup zips"
5583
  msgstr ""
5584
 
5585
- #: src/admin.php:3246
5586
  msgid "Backup begun"
5587
  msgstr ""
5588
 
5589
- #: src/admin.php:1149
5590
  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."
5591
  msgstr ""
5592
 
@@ -5602,11 +5606,11 @@ msgstr ""
5602
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
5603
  msgstr ""
5604
 
5605
- #: src/class-updraftplus.php:3055
5606
  msgid "The backup has not finished; a resumption is scheduled"
5607
  msgstr ""
5608
 
5609
- #: src/class-updraftplus.php:2076
5610
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
5611
  msgstr ""
5612
 
@@ -5615,56 +5619,56 @@ msgstr ""
5615
  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)."
5616
  msgstr ""
5617
 
5618
- #: src/admin.php:2636
5619
  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)."
5620
  msgstr ""
5621
 
5622
- #: src/addons/autobackup.php:1099, src/admin.php:846
5623
  msgid "Proceed with update"
5624
  msgstr ""
5625
 
5626
- #: src/addons/autobackup.php:1092
5627
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
5628
  msgstr ""
5629
 
5630
- #: src/addons/autobackup.php:139, src/addons/autobackup.php:1041
5631
  msgid "UpdraftPlus Automatic Backups"
5632
  msgstr ""
5633
 
5634
- #: src/addons/autobackup.php:524
5635
  msgid "Errors have occurred:"
5636
  msgstr ""
5637
 
5638
- #: src/addons/autobackup.php:496
5639
  msgid "Creating backup with UpdraftPlus..."
5640
  msgstr ""
5641
 
5642
- #: src/addons/autobackup.php:441, src/addons/autobackup.php:571,
5643
- #: src/addons/autobackup.php:622
5644
  msgid "Automatic Backup"
5645
  msgstr ""
5646
 
5647
- #: src/addons/autobackup.php:432
5648
  msgid "Creating database backup with UpdraftPlus..."
5649
  msgstr ""
5650
 
5651
- #: src/addons/autobackup.php:398
5652
  msgid "themes"
5653
  msgstr ""
5654
 
5655
- #: src/addons/autobackup.php:391
5656
  msgid "plugins"
5657
  msgstr ""
5658
 
5659
- #: src/addons/autobackup.php:342, src/addons/autobackup.php:439
5660
  msgid "Starting automatic backup..."
5661
  msgstr ""
5662
 
5663
- #: src/addons/autobackup.php:338
5664
  msgid "Creating %s and database backup with UpdraftPlus..."
5665
  msgstr ""
5666
 
5667
- #: src/addons/autobackup.php:296
5668
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
5669
  msgstr ""
5670
 
@@ -5695,84 +5699,84 @@ msgstr ""
5695
  msgid "Support"
5696
  msgstr ""
5697
 
5698
- #: src/class-updraftplus.php:4370
5699
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
5700
  msgstr ""
5701
 
5702
- #: src/class-updraftplus.php:4362
5703
  msgid "This database backup is missing core WordPress tables: %s"
5704
  msgstr ""
5705
 
5706
- #: src/class-updraftplus.php:4108
5707
  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."
5708
  msgstr ""
5709
 
5710
- #: src/class-updraftplus.php:4107, src/class-updraftplus.php:4114
5711
  msgid "%s version: %s"
5712
  msgstr ""
5713
 
5714
- #: src/class-updraftplus.php:3983
5715
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
5716
  msgstr ""
5717
 
5718
- #: src/addons/autobackup.php:1067, src/admin.php:974,
5719
  #: src/includes/updraftplus-notices.php:171
5720
  msgid "Be safe with an automatic backup"
5721
  msgstr ""
5722
 
5723
- #: src/admin.php:2589
5724
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
5725
  msgstr ""
5726
 
5727
- #: src/admin.php:838
5728
  msgid "The file was uploaded."
5729
  msgstr ""
5730
 
5731
- #: src/admin.php:837
5732
  msgid "Unknown server response status:"
5733
  msgstr ""
5734
 
5735
- #: src/admin.php:836
5736
  msgid "Unknown server response:"
5737
  msgstr ""
5738
 
5739
- #: src/admin.php:835
5740
  msgid "This decryption key will be attempted:"
5741
  msgstr ""
5742
 
5743
- #: src/admin.php:834
5744
  msgid "Follow this link to attempt decryption and download the database file to your computer."
5745
  msgstr ""
5746
 
5747
- #: src/admin.php:833
5748
  msgid "Upload error"
5749
  msgstr ""
5750
 
5751
- #: src/admin.php:832
5752
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
5753
  msgstr ""
5754
 
5755
- #: src/admin.php:831
5756
  msgid "Upload error:"
5757
  msgstr ""
5758
 
5759
- #: src/admin.php:830
5760
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
5761
  msgstr ""
5762
 
5763
- #: src/admin.php:821
5764
  msgid "Download to your computer"
5765
  msgstr ""
5766
 
5767
- #: src/admin.php:820
5768
  msgid "Delete from your web server"
5769
  msgstr ""
5770
 
5771
- #: src/admin.php:4110
5772
  msgid "You appear to be missing one or more archives from this multi-archive set."
5773
  msgstr ""
5774
 
5775
- #: src/admin.php:4107
5776
  msgid "(%d archive(s) in set)."
5777
  msgstr ""
5778
 
@@ -5784,15 +5788,15 @@ msgstr ""
5784
  msgid "Error: the server sent us a response (JSON) which we did not understand."
5785
  msgstr ""
5786
 
5787
- #: src/admin.php:811
5788
  msgid "Warnings:"
5789
  msgstr ""
5790
 
5791
- #: src/admin.php:810
5792
  msgid "Error: the server sent an empty response."
5793
  msgstr ""
5794
 
5795
- #: src/admin.php:2315
5796
  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?"
5797
  msgstr ""
5798
 
@@ -5866,7 +5870,7 @@ msgstr ""
5866
  msgid "Looking for %s archive: file name: %s"
5867
  msgstr ""
5868
 
5869
- #: src/addons/wp-cli.php:784, src/admin.php:4568
5870
  msgid "Final checks"
5871
  msgstr ""
5872
 
@@ -5878,11 +5882,11 @@ msgstr ""
5878
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5879
  msgstr ""
5880
 
5881
- #: src/admin.php:3815
5882
  msgid "Your wp-content directory server path: %s"
5883
  msgstr ""
5884
 
5885
- #: src/admin.php:827
5886
  msgid "Raw backup history"
5887
  msgstr ""
5888
 
@@ -5890,7 +5894,7 @@ msgstr ""
5890
  msgid "Show raw backup and file list"
5891
  msgstr ""
5892
 
5893
- #: src/admin.php:809
5894
  msgid "Processing files - please wait..."
5895
  msgstr ""
5896
 
@@ -5899,11 +5903,11 @@ msgstr ""
5899
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
5900
  msgstr ""
5901
 
5902
- #: src/class-updraftplus.php:3991
5903
  msgid "Failed to open database file."
5904
  msgstr ""
5905
 
5906
- #: src/admin.php:5152
5907
  msgid "Known backups (raw)"
5908
  msgstr ""
5909
 
@@ -5921,17 +5925,17 @@ msgstr ""
5921
 
5922
  #: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
5923
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
5924
- #: src/admin.php:1149, src/admin.php:2594, src/backup.php:3431,
5925
- #: src/class-updraftplus.php:4230, src/class-updraftplus.php:4230,
5926
  #: src/updraftplus.php:157
5927
  msgid "Go here for more information."
5928
  msgstr ""
5929
 
5930
- #: src/admin.php:808
5931
  msgid "Some files are still downloading or being processed - please wait."
5932
  msgstr ""
5933
 
5934
- #: src/class-updraftplus.php:4078, src/class-updraftplus.php:4098
5935
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
5936
  msgstr ""
5937
 
@@ -5973,7 +5977,7 @@ msgstr ""
5973
 
5974
  #: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
5975
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
5976
- #: src/methods/googledrive.php:1112, src/methods/openstack-base.php:455,
5977
  #: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
5978
  #: src/methods/stream-base.php:335
5979
  msgid "%s Error"
@@ -5983,7 +5987,7 @@ msgstr ""
5983
  msgid "%s error - failed to upload file"
5984
  msgstr ""
5985
 
5986
- #: src/class-updraftplus.php:1254, src/methods/cloudfiles.php:211
5987
  msgid "%s error - failed to re-assemble chunks"
5988
  msgstr ""
5989
 
@@ -5998,24 +6002,24 @@ msgid "%s authentication failed"
5998
  msgstr ""
5999
 
6000
  #: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
6001
- #: src/admin.php:2286, src/admin.php:2307, src/admin.php:2315,
6002
- #: src/class-updraftplus.php:996, src/class-updraftplus.php:1002,
6003
- #: src/class-updraftplus.php:3964, src/class-updraftplus.php:3966,
6004
- #: src/class-updraftplus.php:4131, src/class-updraftplus.php:4138,
6005
- #: src/class-updraftplus.php:4209, src/methods/googledrive.php:395,
6006
  #: src/methods/s3.php:341
6007
  msgid "Error: %s"
6008
  msgstr ""
6009
 
6010
- #: src/admin.php:3734
6011
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6012
  msgstr ""
6013
 
6014
- #: src/admin.php:3732
6015
  msgid "Backup directory specified does <b>not</b> exist."
6016
  msgstr ""
6017
 
6018
- #: src/admin.php:3396, src/admin.php:3683
6019
  msgid "Warning: %s"
6020
  msgstr ""
6021
 
@@ -6039,11 +6043,11 @@ msgstr ""
6039
  msgid "Warnings encountered:"
6040
  msgstr ""
6041
 
6042
- #: src/class-updraftplus.php:3039
6043
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6044
  msgstr ""
6045
 
6046
- #: src/class-updraftplus.php:873
6047
  msgid "Your free disk space is very low - only %s Mb remain"
6048
  msgstr ""
6049
 
@@ -6095,7 +6099,7 @@ msgstr ""
6095
  msgid "Please supply the requested information, and then continue."
6096
  msgstr ""
6097
 
6098
- #: src/class-updraftplus.php:4149, src/restorer.php:2233
6099
  msgid "Site information:"
6100
  msgstr ""
6101
 
@@ -6103,11 +6107,11 @@ msgstr ""
6103
  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."
6104
  msgstr ""
6105
 
6106
- #: src/admin.php:2589, src/class-updraftplus.php:4142, src/restorer.php:2647
6107
  msgid "Warning:"
6108
  msgstr ""
6109
 
6110
- #: src/class-updraftplus.php:4131, src/class-updraftplus.php:4134,
6111
  #: src/restorer.php:530
6112
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6113
  msgstr ""
@@ -6116,27 +6120,27 @@ msgstr ""
6116
  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."
6117
  msgstr ""
6118
 
6119
- #: src/addons/azure.php:601, src/admin.php:3907,
6120
  #: src/methods/updraftvault.php:306
6121
  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."
6122
  msgstr ""
6123
 
6124
- #: src/admin.php:847, src/includes/updraftplus-tour.php:89
6125
  msgid "Close"
6126
  msgstr ""
6127
 
6128
- #: src/addons/autobackup.php:344, src/addons/autobackup.php:436,
6129
- #: src/admin.php:801, src/methods/remotesend.php:69,
6130
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:228,
6131
  #: src/methods/remotesend.php:245, src/methods/remotesend.php:293
6132
  msgid "Unexpected response:"
6133
  msgstr ""
6134
 
6135
- #: src/addons/reporting.php:523, src/admin.php:796
6136
  msgid "To send to more than one address, separate each address with a comma."
6137
  msgstr ""
6138
 
6139
- #: src/admin.php:825
6140
  msgid "PHP information"
6141
  msgstr ""
6142
 
@@ -6160,7 +6164,7 @@ msgstr ""
6160
  msgid "Also delete from remote storage"
6161
  msgstr ""
6162
 
6163
- #: src/admin.php:3085
6164
  msgid "Latest UpdraftPlus.com news:"
6165
  msgstr ""
6166
 
@@ -6188,7 +6192,7 @@ msgstr ""
6188
  msgid "News"
6189
  msgstr ""
6190
 
6191
- #: src/admin.php:1693, src/includes/class-wpadmin-commands.php:506
6192
  msgid "Backup set not found"
6193
  msgstr ""
6194
 
@@ -6210,7 +6214,7 @@ msgstr ""
6210
  msgid "Blog link"
6211
  msgstr ""
6212
 
6213
- #: src/admin.php:891
6214
  msgid "Testing %s Settings..."
6215
  msgstr ""
6216
 
@@ -6219,11 +6223,11 @@ msgstr ""
6219
  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."
6220
  msgstr ""
6221
 
6222
- #: src/admin.php:1165
6223
  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."
6224
  msgstr ""
6225
 
6226
- #: src/admin.php:1165
6227
  msgid "Notice"
6228
  msgstr ""
6229
 
@@ -6231,11 +6235,11 @@ msgstr ""
6231
  msgid "Errors encountered:"
6232
  msgstr ""
6233
 
6234
- #: src/admin.php:793
6235
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
6236
  msgstr ""
6237
 
6238
- #: src/admin.php:807
6239
  msgid "Begun looking for this entity"
6240
  msgstr ""
6241
 
@@ -6259,7 +6263,7 @@ msgstr ""
6259
  msgid "Time taken (seconds):"
6260
  msgstr ""
6261
 
6262
- #: src/addons/migrator.php:1302, src/admin.php:812
6263
  msgid "Errors:"
6264
  msgstr ""
6265
 
@@ -6358,7 +6362,7 @@ msgid "Directory path"
6358
  msgstr ""
6359
 
6360
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
6361
- #: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2943,
6362
  #: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
6363
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
6364
  msgid "Password"
@@ -6426,8 +6430,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
6426
  msgstr ""
6427
 
6428
  #: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
6429
- #: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3462,
6430
- #: src/admin.php:3498, src/admin.php:3508, src/methods/addon-base-v2.php:313,
6431
  #: src/methods/stream-base.php:356
6432
  msgid "Failed"
6433
  msgstr ""
@@ -6452,7 +6456,7 @@ msgstr ""
6452
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
6453
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
6454
  #: src/methods/addon-base-v2.php:285, src/methods/ftp.php:42,
6455
- #: src/methods/googledrive.php:194, src/methods/googledrive.php:196,
6456
  #: src/methods/remotesend.php:278, src/methods/stream-base.php:27,
6457
  #: src/methods/stream-base.php:163, src/methods/stream-base.php:169,
6458
  #: src/methods/stream-base.php:203, src/methods/stream-base.php:278
@@ -6649,8 +6653,8 @@ msgstr ""
6649
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
6650
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
6651
  #: src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530,
6652
- #: src/addons/webdav.php:253, src/admin.php:867,
6653
- #: src/includes/class-remote-send.php:453, src/methods/addon-base-v2.php:305,
6654
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
6655
  #: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
6656
  #: src/methods/ftp.php:412, src/methods/ftp.php:416,
@@ -6692,11 +6696,11 @@ msgstr ""
6692
  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."
6693
  msgstr ""
6694
 
6695
- #: src/admin.php:890, src/methods/backup-module.php:315
6696
  msgid "Test %s Settings"
6697
  msgstr ""
6698
 
6699
- #: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
6700
  #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
6701
  msgid "Error opening local file: Failed to download"
6702
  msgstr ""
@@ -6713,8 +6717,8 @@ msgid "%s Error: Failed to upload"
6713
  msgstr ""
6714
 
6715
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
6716
- #: src/class-updraftplus.php:1139, src/methods/cloudfiles.php:130,
6717
- #: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
6718
  msgid "%s Error: Failed to open local file"
6719
  msgstr ""
6720
 
@@ -6730,59 +6734,59 @@ msgstr ""
6730
  msgid "Cloud Files authentication failed"
6731
  msgstr ""
6732
 
6733
- #: src/methods/googledrive.php:1265
6734
  msgid "Authenticate with Google"
6735
  msgstr ""
6736
 
6737
  #: src/addons/googlecloud.php:1027, src/addons/onedrive.php:1181,
6738
- #: src/methods/googledrive.php:1229
6739
  msgid "Client Secret"
6740
  msgstr ""
6741
 
6742
- #: src/addons/googlecloud.php:1022, src/methods/googledrive.php:1226
6743
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
6744
  msgstr ""
6745
 
6746
  #: src/addons/googlecloud.php:1019, src/addons/onedrive.php:1177,
6747
- #: src/methods/googledrive.php:1225
6748
  msgid "Client ID"
6749
  msgstr ""
6750
 
6751
- #: src/methods/googledrive.php:1199
6752
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
6753
  msgstr ""
6754
 
6755
- #: src/addons/googlecloud.php:997, src/methods/googledrive.php:1199
6756
  msgid "Select 'Web Application' as the application type."
6757
  msgstr ""
6758
 
6759
- #: src/addons/googlecloud.php:995, src/methods/googledrive.php:1197
6760
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
6761
  msgstr ""
6762
 
6763
  #: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
6764
- #: src/addons/googlecloud.php:866, src/methods/googledrive.php:572,
6765
- #: src/methods/googledrive.php:573, src/methods/googledrive.php:583,
6766
- #: src/methods/googledrive.php:584
6767
  msgid "Account is not authorized."
6768
  msgstr ""
6769
 
6770
- #: src/methods/googledrive.php:494, src/methods/googledrive.php:540,
6771
- #: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
6772
  #: src/methods/stream-base.php:219
6773
  msgid "Failed to upload to %s"
6774
  msgstr ""
6775
 
6776
- #: src/methods/googledrive.php:523
6777
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
6778
  msgstr ""
6779
 
6780
- #: src/methods/googledrive.php:616, src/methods/googledrive.php:652
6781
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
6782
  msgstr ""
6783
 
6784
  #: src/addons/googlecloud.php:718, src/addons/onedrive.php:939,
6785
- #: src/methods/googledrive.php:467
6786
  msgid "you have authenticated your %s account."
6787
  msgstr ""
6788
 
@@ -6790,21 +6794,21 @@ msgstr ""
6790
  #: src/addons/onedrive.php:939, src/addons/sftp.php:591,
6791
  #: src/addons/sftp.php:595, src/addons/wp-cli.php:515,
6792
  #: src/methods/addon-base-v2.php:327, src/methods/cloudfiles.php:575,
6793
- #: src/methods/googledrive.php:467, src/methods/openstack-base.php:530,
6794
  #: src/methods/s3.php:1155, src/methods/stream-base.php:372
6795
  msgid "Success"
6796
  msgstr ""
6797
 
6798
  #: src/addons/onedrive.php:893, src/methods/dropbox.php:844,
6799
- #: src/methods/dropbox.php:853, src/methods/googledrive.php:431
6800
  msgid "Your %s quota usage: %s %% used, %s available"
6801
  msgstr ""
6802
 
6803
- #: src/addons/googlecloud.php:444, src/methods/googledrive.php:401
6804
  msgid "Authorization failed"
6805
  msgstr ""
6806
 
6807
- #: src/addons/googlecloud.php:436, src/methods/googledrive.php:393
6808
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
6809
  msgstr ""
6810
 
@@ -6827,8 +6831,8 @@ msgstr ""
6827
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
6828
  msgstr ""
6829
 
6830
- #: src/admin.php:3466, src/admin.php:3501, src/admin.php:3505,
6831
- #: src/includes/class-remote-send.php:326,
6832
  #: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
6833
  #: src/restorer.php:2888, src/restorer.php:2993
6834
  msgid "OK"
@@ -6846,13 +6850,13 @@ msgstr ""
6846
  msgid "will restore as:"
6847
  msgstr ""
6848
 
6849
- #: src/class-updraftplus.php:4120, src/restorer.php:2215,
6850
  #: src/restorer.php:2304, src/restorer.php:2330
6851
  msgid "Old table prefix:"
6852
  msgstr ""
6853
 
6854
  #: src/addons/reporting.php:72, src/addons/reporting.php:181,
6855
- #: src/backup.php:1135, src/class-updraftplus.php:4047
6856
  msgid "Backup of:"
6857
  msgstr ""
6858
 
@@ -6940,39 +6944,39 @@ msgstr ""
6940
  msgid "Archive is expected to be size:"
6941
  msgstr ""
6942
 
6943
- #: src/admin.php:4516
6944
  msgid "If making a request for support, please include this information:"
6945
  msgstr ""
6946
 
6947
- #: src/admin.php:4515
6948
  msgid "ABORT: Could not find the information on which entities to restore."
6949
  msgstr ""
6950
 
6951
- #: src/addons/wp-cli.php:647, src/admin.php:4494
6952
  msgid "UpdraftPlus Restoration: Progress"
6953
  msgstr ""
6954
 
6955
- #: src/admin.php:4486
6956
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
6957
  msgstr ""
6958
 
6959
- #: src/admin.php:4168
6960
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
6961
  msgstr ""
6962
 
6963
- #: src/admin.php:4266
6964
  msgid "Delete this backup set"
6965
  msgstr ""
6966
 
6967
- #: src/admin.php:3919
6968
  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."
6969
  msgstr ""
6970
 
6971
- #: src/admin.php:3916
6972
  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."
6973
  msgstr ""
6974
 
6975
- #: src/admin.php:3914
6976
  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)."
6977
  msgstr ""
6978
 
@@ -7013,19 +7017,19 @@ msgstr ""
7013
  msgid "Use the server's SSL certificates"
7014
  msgstr ""
7015
 
7016
- #: src/admin.php:3736
7017
  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."
7018
  msgstr ""
7019
 
7020
- #: src/admin.php:3736
7021
  msgid "or, to reset this option"
7022
  msgstr ""
7023
 
7024
- #: src/admin.php:3736
7025
  msgid "Follow this link to attempt to create the directory and set the permissions"
7026
  msgstr ""
7027
 
7028
- #: src/admin.php:3728
7029
  msgid "Backup directory specified is writable, which is good."
7030
  msgstr ""
7031
 
@@ -7057,16 +7061,16 @@ msgstr ""
7057
  msgid "Advanced / Debugging Settings"
7058
  msgstr ""
7059
 
7060
- #: src/admin.php:824
7061
  msgid "Requesting start of backup..."
7062
  msgstr ""
7063
 
7064
- #: src/addons/morefiles.php:311, src/admin.php:841
7065
  msgid "Cancel"
7066
  msgstr ""
7067
 
7068
  #: src/addons/incremental.php:235, src/addons/reporting.php:245,
7069
- #: src/admin.php:4002
7070
  msgid "None"
7071
  msgstr ""
7072
 
@@ -7082,7 +7086,7 @@ msgstr ""
7082
  msgid "Database encryption phrase"
7083
  msgstr ""
7084
 
7085
- #: src/admin.php:2933, src/templates/wp-admin/settings/form-contents.php:255,
7086
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7087
  msgid "Email"
7088
  msgstr ""
@@ -7095,7 +7099,7 @@ msgstr ""
7095
  msgid "Exclude these:"
7096
  msgstr ""
7097
 
7098
- #: src/admin.php:3815
7099
  msgid "Any other directories found inside wp-content"
7100
  msgstr ""
7101
 
@@ -7111,46 +7115,46 @@ msgstr ""
7111
  msgid "To fix the time at which a backup should take place,"
7112
  msgstr ""
7113
 
7114
- #: src/addons/incremental.php:244, src/admin.php:3722
7115
  msgid "Monthly"
7116
  msgstr ""
7117
 
7118
- #: src/addons/incremental.php:243, src/admin.php:3721
7119
  msgid "Fortnightly"
7120
  msgstr ""
7121
 
7122
- #: src/addons/incremental.php:242, src/admin.php:3720
7123
  msgid "Weekly"
7124
  msgstr ""
7125
 
7126
- #: src/addons/incremental.php:241, src/admin.php:3719
7127
  msgid "Daily"
7128
  msgstr ""
7129
 
7130
- #: src/admin.php:849, src/admin.php:3697
7131
  msgid "Download log file"
7132
  msgstr ""
7133
 
7134
- #: src/admin.php:3569
7135
  msgid "The folder exists, but your webserver does not have permission to write to it."
7136
  msgstr ""
7137
 
7138
- #: src/admin.php:3564
7139
  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"
7140
  msgstr ""
7141
 
7142
- #: src/admin.php:3550
7143
  msgid "The request to the filesystem to create the directory failed."
7144
  msgstr ""
7145
 
7146
- #: src/admin.php:842, src/admin.php:3459, src/admin.php:3493,
7147
- #: src/admin.php:4266, src/includes/class-remote-send.php:543,
7148
  #: src/templates/wp-admin/settings/existing-backups-table.php:155,
7149
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7150
  msgid "Delete"
7151
  msgstr ""
7152
 
7153
- #: src/admin.php:3413
7154
  msgid "show log"
7155
  msgstr ""
7156
 
@@ -7211,7 +7215,7 @@ msgstr ""
7211
  msgid "Yes"
7212
  msgstr ""
7213
 
7214
- #: src/admin.php:5364, src/admin.php:5368,
7215
  #: src/templates/wp-admin/advanced/site-info.php:45,
7216
  #: src/templates/wp-admin/advanced/site-info.php:51,
7217
  #: src/templates/wp-admin/advanced/site-info.php:58,
@@ -7251,7 +7255,7 @@ msgstr ""
7251
  msgid "Do read this helpful article of useful things to know before restoring."
7252
  msgstr ""
7253
 
7254
- #: src/class-updraftplus.php:4081
7255
  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"
7256
  msgstr ""
7257
 
@@ -7292,7 +7296,7 @@ msgstr ""
7292
  msgid "Delete backup set"
7293
  msgstr ""
7294
 
7295
- #: src/admin.php:823
7296
  msgid "Download error: the server sent us a response which we did not understand."
7297
  msgstr ""
7298
 
@@ -7301,22 +7305,22 @@ msgstr ""
7301
  #: src/addons/migrator.php:1268, src/addons/migrator.php:1317,
7302
  #: src/addons/migrator.php:1555, src/addons/s3-enhanced.php:164,
7303
  #: src/addons/s3-enhanced.php:169, src/addons/s3-enhanced.php:171,
7304
- #: src/addons/sftp.php:911, src/addons/webdav.php:203, src/admin.php:89,
7305
- #: src/admin.php:815, src/includes/class-remote-send.php:265,
7306
- #: src/includes/class-remote-send.php:292,
7307
- #: src/includes/class-remote-send.php:298,
7308
- #: src/includes/class-remote-send.php:361,
7309
- #: src/includes/class-remote-send.php:420,
7310
- #: src/includes/class-remote-send.php:461,
7311
- #: src/includes/class-remote-send.php:471,
7312
- #: src/includes/class-remote-send.php:476, src/methods/remotesend.php:74,
7313
  #: src/methods/remotesend.php:242, src/methods/remotesend.php:298,
7314
  #: src/methods/updraftvault.php:527, src/restorer.php:228,
7315
  #: src/restorer.php:256, src/restorer.php:1921
7316
  msgid "Error:"
7317
  msgstr ""
7318
 
7319
- #: src/admin.php:806
7320
  msgid "calculating..."
7321
  msgstr ""
7322
 
@@ -7339,15 +7343,15 @@ msgstr ""
7339
  msgid "This is a count of the contents of your Updraft directory"
7340
  msgstr ""
7341
 
7342
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:194,
7343
- #: src/methods/googledrive.php:196, src/methods/googledrive.php:467,
7344
- #: src/methods/googledrive.php:494, src/methods/googledrive.php:523,
7345
- #: src/methods/googledrive.php:530, src/methods/googledrive.php:540,
7346
- #: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
7347
- #: src/methods/googledrive.php:1185, src/methods/googledrive.php:1192,
7348
- #: src/methods/googledrive.php:1192, src/methods/googledrive.php:1225,
7349
- #: src/methods/googledrive.php:1229, src/methods/googledrive.php:1240,
7350
- #: src/methods/googledrive.php:1251
7351
  msgid "Google Drive"
7352
  msgstr ""
7353
 
@@ -7366,7 +7370,7 @@ msgstr ""
7366
  msgid "More tasks:"
7367
  msgstr ""
7368
 
7369
- #: src/admin.php:3112
7370
  msgid "Download most recently modified log file"
7371
  msgstr ""
7372
 
@@ -7374,18 +7378,18 @@ msgstr ""
7374
  msgid "(Nothing yet logged)"
7375
  msgstr ""
7376
 
7377
- #: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
7378
- #: src/admin.php:3068, src/admin.php:3074,
7379
  #: src/templates/wp-admin/settings/take-backup.php:64
7380
  msgid "Last log message"
7381
  msgstr ""
7382
 
7383
- #: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
7384
- #: src/admin.php:4168
7385
  msgid "Restore"
7386
  msgstr ""
7387
 
7388
- #: src/admin.php:840, src/templates/wp-admin/settings/take-backup.php:50
7389
  msgid "Backup Now"
7390
  msgstr ""
7391
 
@@ -7394,8 +7398,8 @@ msgid "Time now"
7394
  msgstr ""
7395
 
7396
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
7397
- #: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:3977,
7398
- #: src/admin.php:4030, src/includes/class-remote-send.php:330,
7399
  #: src/includes/class-wpadmin-commands.php:157,
7400
  #: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
7401
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
@@ -7404,7 +7408,7 @@ msgstr ""
7404
  msgid "Database"
7405
  msgstr ""
7406
 
7407
- #: src/admin.php:332, src/admin.php:5159,
7408
  #: src/templates/wp-admin/settings/take-backup.php:23
7409
  msgid "Files"
7410
  msgstr ""
@@ -7413,12 +7417,12 @@ msgstr ""
7413
  msgid "Next scheduled backups"
7414
  msgstr ""
7415
 
7416
- #: src/admin.php:311
7417
  msgid "At the same time as the files backup"
7418
  msgstr ""
7419
 
7420
- #: src/admin.php:301, src/admin.php:322, src/admin.php:329, src/admin.php:374,
7421
- #: src/admin.php:405
7422
  msgid "Nothing currently scheduled"
7423
  msgstr ""
7424
 
@@ -7430,15 +7434,15 @@ msgstr ""
7430
  msgid "JavaScript warning"
7431
  msgstr ""
7432
 
7433
- #: src/admin.php:826, src/admin.php:3149
7434
  msgid "Delete Old Directories"
7435
  msgstr ""
7436
 
7437
- #: src/admin.php:2636
7438
  msgid "Current limit is:"
7439
  msgstr ""
7440
 
7441
- #: src/admin.php:2611
7442
  msgid "Your backup has been restored."
7443
  msgstr ""
7444
 
@@ -7454,69 +7458,69 @@ msgstr ""
7454
  msgid "UpdraftPlus.Com"
7455
  msgstr ""
7456
 
7457
- #: src/admin.php:5051
7458
  msgid "Your settings have been wiped."
7459
  msgstr ""
7460
 
7461
- #: src/admin.php:2571
7462
  msgid "Backup directory successfully created."
7463
  msgstr ""
7464
 
7465
- #: src/admin.php:2564
7466
  msgid "Backup directory could not be created"
7467
  msgstr ""
7468
 
7469
- #: src/admin.php:3429
7470
  msgid "Old directory removal failed for some reason. You may want to do this manually."
7471
  msgstr ""
7472
 
7473
- #: src/admin.php:3427
7474
  msgid "Old directories successfully removed."
7475
  msgstr ""
7476
 
7477
- #: src/admin.php:3424, src/admin.php:3424
7478
  msgid "Remove old directories"
7479
  msgstr ""
7480
 
7481
  #: src/addons/migrator.php:340, src/addons/migrator.php:355,
7482
- #: src/admin.php:2512, src/admin.php:2522, src/admin.php:2531,
7483
- #: src/admin.php:2573, src/admin.php:3431
7484
  msgid "Return to UpdraftPlus Configuration"
7485
  msgstr ""
7486
 
7487
- #: src/admin.php:819, src/admin.php:2512, src/admin.php:2522,
7488
- #: src/admin.php:2531, src/admin.php:2573, src/admin.php:3431,
7489
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7490
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7491
  msgid "Actions"
7492
  msgstr ""
7493
 
7494
- #: src/admin.php:2407
7495
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
7496
  msgstr ""
7497
 
7498
- #: src/admin.php:2307
7499
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
7500
  msgstr ""
7501
 
7502
- #: src/admin.php:2203
7503
  msgid "No local copy present."
7504
  msgstr ""
7505
 
7506
- #: src/admin.php:2200
7507
  msgid "Download in progress"
7508
  msgstr ""
7509
 
7510
- #: src/admin.php:818, src/admin.php:2189
7511
  msgid "File ready."
7512
  msgstr ""
7513
 
7514
- #: src/admin.php:2170
7515
  msgid "Download failed"
7516
  msgstr ""
7517
 
7518
- #: src/addons/wp-cli.php:518, src/admin.php:816,
7519
- #: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
7520
  #: src/includes/class-filesystem-functions.php:368,
7521
  #: src/includes/class-storage-methods-interface.php:324,
7522
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
@@ -7526,42 +7530,42 @@ msgstr ""
7526
  msgid "Error"
7527
  msgstr ""
7528
 
7529
- #: src/admin.php:1957
7530
  msgid "Could not find that job - perhaps it has already finished?"
7531
  msgstr ""
7532
 
7533
- #: src/admin.php:1949
7534
  msgid "Job deleted"
7535
  msgstr ""
7536
 
7537
- #: src/admin.php:2048, src/includes/class-commands.php:833
7538
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
7539
  msgstr ""
7540
 
7541
- #: src/admin.php:893
7542
  msgid "Nothing yet logged"
7543
  msgstr ""
7544
 
7545
- #: src/admin.php:1161
7546
  msgid "Please consult this FAQ if you have problems backing up."
7547
  msgstr ""
7548
 
7549
- #: src/admin.php:1161
7550
  msgid "Your website is hosted using the %s web server."
7551
  msgstr ""
7552
 
7553
- #: src/admin.php:1157
7554
  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."
7555
  msgstr ""
7556
 
7557
- #: src/admin.php:1153
7558
  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."
7559
  msgstr ""
7560
 
7561
- #: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1145,
7562
- #: src/admin.php:1149, src/admin.php:1153, src/admin.php:1157,
7563
- #: src/admin.php:1161, src/admin.php:1170, src/admin.php:3907,
7564
- #: src/admin.php:3914, src/admin.php:3916, src/admin.php:5342,
7565
  #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
7566
  #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
7567
  #: src/methods/s3.php:859, src/methods/s3.php:863,
@@ -7572,11 +7576,11 @@ msgstr ""
7572
  msgid "Warning"
7573
  msgstr ""
7574
 
7575
- #: src/admin.php:1090
7576
  msgid "Add-Ons / Pro Support"
7577
  msgstr ""
7578
 
7579
- #: src/admin.php:677, src/admin.php:1088, src/admin.php:2798
7580
  msgid "Settings"
7581
  msgstr ""
7582
 
@@ -7596,8 +7600,8 @@ msgstr ""
7596
  msgid "Like UpdraftPlus and can spare one minute?"
7597
  msgstr ""
7598
 
7599
- #: src/addons/azure.php:268, src/class-updraftplus.php:3769,
7600
- #: src/methods/googledrive.php:1112, src/methods/s3.php:341
7601
  msgid "File not found"
7602
  msgstr ""
7603
 
@@ -7605,12 +7609,12 @@ msgstr ""
7605
  msgid "The decryption key used:"
7606
  msgstr ""
7607
 
7608
- #: src/class-updraftplus.php:3976,
7609
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
7610
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
7611
  msgstr ""
7612
 
7613
- #: src/class-updraftplus.php:3964,
7614
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
7615
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
7616
  msgstr ""
@@ -7619,15 +7623,15 @@ msgstr ""
7619
  msgid "Could not open the backup file for writing"
7620
  msgstr ""
7621
 
7622
- #: src/class-updraftplus.php:3531
7623
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
7624
  msgstr ""
7625
 
7626
- #: src/class-updraftplus.php:3515
7627
  msgid "Could not read the directory"
7628
  msgstr ""
7629
 
7630
- #: src/admin.php:2249, src/backup.php:1359
7631
  msgid "Backup directory (%s) is not writable, or does not exist."
7632
  msgstr ""
7633
 
@@ -7635,11 +7639,11 @@ msgstr ""
7635
  msgid "WordPress backup is complete"
7636
  msgstr ""
7637
 
7638
- #: src/class-updraftplus.php:3051
7639
  msgid "The backup attempt has finished, apparently unsuccessfully"
7640
  msgstr ""
7641
 
7642
- #: src/class-updraftplus.php:3033
7643
  msgid "The backup apparently succeeded and is now complete"
7644
  msgstr ""
7645
 
@@ -7647,37 +7651,37 @@ msgstr ""
7647
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
7648
  msgstr ""
7649
 
7650
- #: src/class-updraftplus.php:2733
7651
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
7652
  msgstr ""
7653
 
7654
- #: src/class-updraftplus.php:1850
7655
  msgid "Others"
7656
  msgstr ""
7657
 
7658
- #: src/addons/multisite.php:500, src/class-updraftplus.php:1835
7659
  msgid "Uploads"
7660
  msgstr ""
7661
 
7662
- #: src/class-updraftplus.php:1834
7663
  msgid "Themes"
7664
  msgstr ""
7665
 
7666
- #: src/class-updraftplus.php:1833
7667
  msgid "Plugins"
7668
  msgstr ""
7669
 
7670
- #: src/class-updraftplus.php:623
7671
  msgid "No log files were found."
7672
  msgstr ""
7673
 
7674
- #: src/admin.php:2119, src/admin.php:2123, src/class-updraftplus.php:618
7675
  msgid "The log file could not be read."
7676
  msgstr ""
7677
 
7678
- #: src/admin.php:1190, src/admin.php:1211, src/admin.php:1230,
7679
- #: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
7680
- #: src/class-updraftplus.php:623, src/class-updraftplus.php:628
7681
  msgid "UpdraftPlus notice:"
7682
  msgstr ""
7683
 
11
  "Language: bg\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/admin.php:5374
15
+ msgid "Clone region:"
16
+ msgstr ""
17
+
18
  #: src/udaddons/updraftplus-addons.php:268,
19
  #: src/udaddons/updraftplus-addons.php:280
20
  msgid "go here"
29
  msgid "Authentication"
30
  msgstr ""
31
 
32
+ #: src/admin.php:926
33
  msgid "You must select at least one remote storage destination to upload this backup set to."
34
  msgstr ""
35
 
49
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
50
  msgstr ""
51
 
52
+ #: src/admin.php:953
53
  msgid "UpdraftClone key is required."
54
  msgstr ""
55
 
56
+ #: src/admin.php:944
57
  msgid "The preparation of the clone data has been aborted."
58
  msgstr ""
59
 
73
  msgid "Your database user does not have permission to drop tables"
74
  msgstr ""
75
 
76
+ #: src/admin.php:2962
77
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
78
  msgstr ""
79
 
241
  msgid "WordPress installed"
242
  msgstr ""
243
 
244
+ #: src/admin.php:5428
245
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
246
  msgstr ""
247
 
248
+ #: src/admin.php:3828
249
  msgid "Exclude these from"
250
  msgstr ""
251
 
252
+ #: src/admin.php:952
253
  msgid "The exclusion rule which you are trying to add already exists"
254
  msgstr ""
255
 
256
+ #: src/admin.php:951
257
  msgid "Please enter a valid file name prefix"
258
  msgstr ""
259
 
260
+ #: src/admin.php:950
261
  msgid "Please enter characters that begin the filename which you would like to exclude"
262
  msgstr ""
263
 
264
+ #: src/admin.php:949
265
  msgid "Please enter a valid file extension"
266
  msgstr ""
267
 
268
+ #: src/admin.php:948
269
  msgid "Please enter a file extension, like zip"
270
  msgstr ""
271
 
272
+ #: src/admin.php:947
273
  msgid "Please select a file/folder which you would like to exclude"
274
  msgstr ""
275
 
276
+ #: src/admin.php:946
277
  msgid "Are you sure you want to remove this exclusion rule?"
278
  msgstr ""
279
 
297
  msgid "failed to upload file to %s (see log file for more)"
298
  msgstr ""
299
 
300
+ #: src/admin.php:5424
301
  msgid "Dashboard:"
302
  msgstr ""
303
 
304
+ #: src/admin.php:5423
305
  msgid "Front page:"
306
  msgstr ""
307
 
308
+ #: src/admin.php:5422
309
  msgid "Your clone has started and will be available at the following URLs once it is ready."
310
  msgstr ""
311
 
317
  msgid "Current clones"
318
  msgstr ""
319
 
320
+ #: src/class-updraftplus.php:2992
321
  msgid "Your clone will now deploy this data to re-create your site."
322
  msgstr ""
323
 
324
+ #: src/admin.php:943
325
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
326
  msgstr ""
327
 
367
  msgid "Unable to get renew date"
368
  msgstr ""
369
 
370
+ #: src/admin.php:906
371
  msgid "The backup was aborted"
372
  msgstr ""
373
 
621
  msgid "You can buy more temporary clone tokens here."
622
  msgstr ""
623
 
624
+ #: src/admin.php:5379
625
  msgid "Forbid non-administrators to login to WordPress on your clone"
626
  msgstr ""
627
 
637
  msgid "Other great plugins"
638
  msgstr ""
639
 
640
+ #: src/admin.php:5426, src/admin.php:5429
641
  msgid "You can find your temporary clone information in your updraftplus.com account here."
642
  msgstr ""
643
 
644
+ #: src/class-updraftplus.php:4177
645
  msgid "Choose a default for each table"
646
  msgstr ""
647
 
648
+ #: src/admin.php:3276
649
  msgid "Sending files to remote site"
650
  msgstr ""
651
 
652
+ #: src/admin.php:3271
653
  msgid "Clone server being provisioned and booted (can take several minutes)"
654
  msgstr ""
655
 
656
+ #: src/admin.php:942
657
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
658
  msgstr ""
659
 
661
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
662
  msgstr ""
663
 
664
+ #: src/admin.php:2798
665
  msgid "Backup / Restore"
666
  msgstr ""
667
 
668
+ #: src/admin.php:663
669
  msgid "Backup"
670
  msgstr ""
671
 
737
  msgid "More information here."
738
  msgstr ""
739
 
740
+ #: src/admin.php:671, src/admin.php:2799
741
  msgid "Migrate / Clone"
742
  msgstr ""
743
 
744
+ #: src/admin.php:3036, src/admin.php:3961,
745
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
746
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
747
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
763
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
764
  msgstr ""
765
 
766
+ #: src/class-updraftplus.php:188
767
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
768
  msgstr ""
769
 
770
+ #: src/admin.php:5402
771
  msgid "(current version)"
772
  msgstr ""
773
 
774
+ #: src/admin.php:3738
775
  msgid "press here"
776
  msgstr ""
777
 
778
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
779
+ #: src/methods/googledrive.php:1214
780
  msgid "this privacy policy"
781
  msgstr ""
782
 
783
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
784
+ #: src/methods/googledrive.php:1214
785
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
786
  msgstr ""
787
 
805
  msgid "Available temporary clone tokens:"
806
  msgstr ""
807
 
808
+ #: src/admin.php:2886, src/includes/class-commands.php:901,
809
  #: src/includes/class-commands.php:949,
810
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
811
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
824
  msgid "I consent to %s"
825
  msgstr ""
826
 
827
+ #: src/admin.php:2984,
828
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
829
  msgid "One Time Password (check your OTP app to get this password)"
830
  msgstr ""
873
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
874
  msgstr ""
875
 
876
+ #: src/admin.php:5344
877
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
878
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
879
  msgstr[0] ""
880
  msgstr[1] ""
881
 
882
+ #: src/admin.php:940
883
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
884
  msgstr ""
885
 
886
+ #: src/admin.php:939
887
  msgid "You can also close this wizard."
888
  msgstr ""
889
 
890
+ #: src/admin.php:938
891
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
892
  msgstr ""
893
 
894
+ #: src/admin.php:937
895
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
896
  msgstr ""
897
 
898
+ #: src/admin.php:936
899
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
900
  msgstr ""
901
 
902
+ #: src/admin.php:935
903
  msgid "Perhaps you would want to login instead."
904
  msgstr ""
905
 
906
+ #: src/admin.php:934
907
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
908
  msgstr ""
909
 
910
+ #: src/admin.php:933
911
  msgid "An email is required and needs to be in a valid format."
912
  msgstr ""
913
 
914
+ #: src/admin.php:932
915
  msgid "Both email and password fields are required."
916
  msgstr ""
917
 
918
+ #: src/admin.php:931
919
  msgid "Registration successful."
920
  msgstr ""
921
 
922
+ #: src/admin.php:930, src/admin.php:931
923
  msgid "Please follow this link to open %s in a new window."
924
  msgstr ""
925
 
926
+ #: src/admin.php:930
927
  msgid "Login successful."
928
  msgstr ""
929
 
930
+ #: src/admin.php:929,
931
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
932
  msgid "UpdraftCentral Cloud"
933
  msgstr ""
934
 
935
+ #: src/admin.php:489
936
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
937
  msgstr ""
938
 
939
+ #: src/admin.php:488
940
  msgid "Dismiss all UpdraftPlus news"
941
  msgstr ""
942
 
943
+ #: src/admin.php:487
944
  msgid "UpdraftPlus News"
945
  msgstr ""
946
 
964
  msgid "Azure Account"
965
  msgstr ""
966
 
967
+ #: src/admin.php:928
968
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
969
  msgstr ""
970
 
976
  msgid "Upload backup"
977
  msgstr ""
978
 
979
+ #: src/admin.php:4248
980
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
981
  msgstr ""
982
 
983
+ #: src/admin.php:927
984
  msgid "(already uploaded)"
985
  msgstr ""
986
 
987
+ #: src/admin.php:925
988
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
989
  msgstr ""
990
 
991
+ #: src/admin.php:846, src/admin.php:4248
992
  msgid "Upload"
993
  msgstr ""
994
 
995
+ #: src/addons/reporting.php:529, src/admin.php:796
996
  msgid "Only email the database backup"
997
  msgstr ""
998
 
1062
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1063
  msgstr ""
1064
 
1065
+ #: src/includes/class-remote-send.php:438
1066
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1067
  msgstr ""
1068
 
1094
  msgid "Thank you for installing UpdraftPlus!"
1095
  msgstr ""
1096
 
1097
+ #: src/includes/class-remote-send.php:532
1098
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1099
  msgstr ""
1100
 
1122
  msgid "Ensure you are logged into the correct account before continuing."
1123
  msgstr ""
1124
 
1125
+ #: src/admin.php:4986
1126
  msgid "Remote storage method and instance id are required for authentication."
1127
  msgstr ""
1128
 
1129
+ #: src/admin.php:4982
1130
  msgid "authentication error"
1131
  msgstr ""
1132
 
1154
  msgid "Delete these settings"
1155
  msgstr ""
1156
 
1157
+ #: src/addons/morestorage.php:81, src/admin.php:924
1158
  msgid "Currently disabled"
1159
  msgstr ""
1160
 
1161
+ #: src/addons/morestorage.php:81, src/admin.php:923
1162
  msgid "Currently enabled"
1163
  msgstr ""
1164
 
1204
  msgstr[0] ""
1205
  msgstr[1] ""
1206
 
1207
+ #: src/class-updraftplus.php:4154
1208
  msgid "Your chosen replacement collation"
1209
  msgstr ""
1210
 
1211
+ #: src/class-updraftplus.php:4131
1212
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1213
  msgstr ""
1214
 
1215
+ #: src/class-updraftplus.php:4131
1216
  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."
1217
  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."
1218
  msgstr[0] ""
1280
  msgid "Requested table character set (%s) is not present - changing to %s."
1281
  msgstr ""
1282
 
1283
+ #: src/class-updraftplus.php:4107
1284
  msgid "Your chosen character set to use instead:"
1285
  msgstr ""
1286
 
1287
+ #: src/class-updraftplus.php:4097
1288
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1289
  msgstr ""
1290
 
1291
+ #: src/class-updraftplus.php:4097
1292
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1293
  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."
1294
  msgstr[0] ""
1338
  msgid "You now need to copy the key below and enter it at your %s."
1339
  msgstr ""
1340
 
1341
+ #: src/admin.php:918
1342
  msgid "Please enter a valid URL e.g http://example.com"
1343
  msgstr "Моля въведете валиден адрес - пример http://example.com"
1344
 
1378
  msgid "Account ID"
1379
  msgstr "Акаунт ID"
1380
 
1381
+ #: src/class-updraftplus.php:3936
1382
  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."
1383
  msgstr ""
1384
 
1385
+ #: src/class-updraftplus.php:3934, src/class-updraftplus.php:3936
1386
  msgid "the migrator add-on"
1387
  msgstr ""
1388
 
1389
+ #: src/class-updraftplus.php:3934
1390
  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."
1391
  msgstr ""
1392
 
1393
+ #: src/class-updraftplus.php:3932
1394
  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."
1395
  msgstr ""
1396
 
1397
+ #: src/class-updraftplus.php:3927
1398
  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."
1399
  msgstr ""
1400
 
1401
+ #: src/methods/googledrive.php:1283
1402
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1403
  msgstr ""
1404
 
1406
  msgid "Follow this link to remove these settings for %s."
1407
  msgstr ""
1408
 
1409
+ #: src/admin.php:897
1410
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1411
  msgstr ""
1412
 
1413
+ #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2133,
1414
+ #: src/class-updraftplus.php:2198,
1415
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1416
  msgid "A PHP fatal error (%s) has occurred: %s"
1417
  msgstr ""
1418
 
1419
+ #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2124,
1420
+ #: src/class-updraftplus.php:2191,
1421
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1422
  msgid "A PHP exception (%s) has occurred: %s"
1423
  msgstr ""
1471
  msgid "Instant and secure logon with a wave of your phone."
1472
  msgstr ""
1473
 
1474
+ #: src/admin.php:5192
1475
  msgid "Value"
1476
  msgstr ""
1477
 
1478
+ #: src/admin.php:1781
1479
  msgid "Did not know how to delete from this cloud service."
1480
  msgstr ""
1481
 
1491
  msgid "Cloud Files"
1492
  msgstr ""
1493
 
1494
+ #: src/admin.php:4934
1495
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1496
  msgstr ""
1497
 
1498
+ #: src/admin.php:4893
1499
  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."
1500
  msgstr ""
1501
 
1512
  msgid "Extra database"
1513
  msgstr ""
1514
 
1515
+ #: src/admin.php:4104
1516
  msgid "Press here to download or browse"
1517
  msgstr ""
1518
 
1519
+ #: src/admin.php:1334, src/admin.php:1344
1520
  msgid "Error: invalid path"
1521
  msgstr ""
1522
 
1523
+ #: src/admin.php:1133
1524
  msgid "An error occurred when fetching storage module options: "
1525
  msgstr ""
1526
 
1527
+ #: src/admin.php:915
1528
  msgid "Loading log file"
1529
  msgstr ""
1530
 
1531
+ #: src/admin.php:914
1532
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1533
  msgstr ""
1534
 
1535
+ #: src/admin.php:913
1536
  msgid "Search"
1537
  msgstr ""
1538
 
1539
+ #: src/admin.php:912
1540
  msgid "Select a file to view information about it"
1541
  msgstr ""
1542
 
1543
+ #: src/admin.php:911
1544
  msgid "Browsing zip file"
1545
  msgstr ""
1546
 
1547
+ #: src/admin.php:878
1548
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1549
  msgstr ""
1550
 
1551
+ #: src/admin.php:824
1552
  msgid "Browse contents"
1553
  msgstr ""
1554
 
1556
  msgid "Skipped tables:"
1557
  msgstr ""
1558
 
1559
+ #: src/class-updraftplus.php:4232
1560
  msgid "This database backup has the following WordPress tables excluded: %s"
1561
  msgstr ""
1562
 
1563
+ #: src/admin.php:3022
1564
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1565
  msgstr ""
1566
 
1567
+ #: src/admin.php:3022
1568
  msgid "All WordPress tables will be backed up."
1569
  msgstr ""
1570
 
1571
+ #: src/admin.php:910
1572
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1573
  msgstr ""
1574
 
1575
+ #: src/admin.php:910
1576
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1577
  msgstr ""
1578
 
1579
+ #: src/admin.php:910
1580
  msgid "The available memory on the server."
1581
  msgstr ""
1582
 
1583
+ #: src/admin.php:910
1584
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1585
  msgstr ""
1586
 
1587
+ #: src/admin.php:910
1588
  msgid "The file failed to upload. Please check the following:"
1589
  msgstr ""
1590
 
1591
+ #: src/admin.php:909
1592
  msgid "HTTP code:"
1593
  msgstr ""
1594
 
1595
+ #: src/addons/wp-cli.php:109, src/admin.php:801
1596
  msgid "You have chosen to backup a database, but no tables have been selected"
1597
  msgstr ""
1598
 
1742
  msgid "Free"
1743
  msgstr ""
1744
 
1745
+ #: src/admin.php:486
1746
  msgid "UpdraftPlus"
1747
  msgstr ""
1748
 
2017
  msgid "Backup of: %s"
2018
  msgstr ""
2019
 
2020
+ #: src/methods/googledrive.php:278
2021
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2022
  msgstr ""
2023
 
2041
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2042
  msgstr ""
2043
 
2044
+ #: src/admin.php:1864
2045
  msgid "Remote files deleted:"
2046
  msgstr ""
2047
 
2048
+ #: src/admin.php:1863
2049
  msgid "Local files deleted:"
2050
  msgstr ""
2051
 
2053
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2054
  msgstr ""
2055
 
2056
+ #: src/admin.php:908
2057
  msgid "remote files deleted"
2058
  msgstr ""
2059
 
2060
+ #: src/admin.php:904
2061
  msgid "Complete"
2062
  msgstr ""
2063
 
2064
+ #: src/admin.php:903
2065
  msgid "Do you want to carry out the import?"
2066
  msgstr ""
2067
 
2068
+ #: src/admin.php:902
2069
  msgid "Which was exported on:"
2070
  msgstr ""
2071
 
2072
+ #: src/admin.php:901
2073
  msgid "This will import data from:"
2074
  msgstr ""
2075
 
2076
+ #: src/admin.php:900
2077
  msgid "Importing..."
2078
  msgstr ""
2079
 
2080
+ #: src/admin.php:896
2081
  msgid "You have not yet selected a file to import."
2082
  msgstr ""
2083
 
2084
+ #: src/admin.php:880
2085
  msgid "Your export file will be of your displayed settings, not your saved ones."
2086
  msgstr ""
2087
 
2088
+ #: src/admin.php:91
2089
  msgid "template not found"
2090
  msgstr ""
2091
 
2101
  msgid "Account is not authorized (%s)."
2102
  msgstr ""
2103
 
2104
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947
2105
  msgid "Your IP address:"
2106
  msgstr ""
2107
 
2108
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947,
2109
+ #: src/udaddons/updraftplus-addons.php:961
2110
  msgid "To remove any block, please go here."
2111
  msgstr ""
2112
 
2113
+ #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:932
2114
  msgid "An error response was received; HTTP code:"
2115
  msgstr ""
2116
 
2126
  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"
2127
  msgstr ""
2128
 
2129
+ #: src/admin.php:2609
2130
  msgid "To fix this problem go here."
2131
  msgstr ""
2132
 
2133
+ #: src/admin.php:2609
2134
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2135
  msgstr ""
2136
 
2137
+ #: src/admin.php:864
2138
  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."
2139
  msgstr ""
2140
 
2162
  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."
2163
  msgstr ""
2164
 
2165
+ #: src/udaddons/updraftplus-addons.php:964
2166
  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."
2167
  msgstr ""
2168
 
2256
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2257
  msgstr ""
2258
 
2259
+ #: src/methods/googledrive.php:538
2260
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2261
  msgstr ""
2262
 
2277
  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."
2278
  msgstr ""
2279
 
2280
+ #: src/class-updraftplus.php:1739
2281
  msgid "Size: %s MB"
2282
  msgstr ""
2283
 
2285
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2286
  msgstr ""
2287
 
2288
+ #: src/class-updraftplus.php:3953, src/restorer.php:1446
2289
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2290
  msgstr ""
2291
 
2307
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2308
  msgstr ""
2309
 
2310
+ #: src/class-updraftplus.php:584, src/class-updraftplus.php:629
2311
  msgid "The given file was not found, or could not be read."
2312
  msgstr ""
2313
 
2391
  msgid "UpdraftCentral Connection"
2392
  msgstr ""
2393
 
2394
+ #: src/backup.php:1042, src/class-updraftplus.php:2973
2395
  msgid "The backup was aborted by the user"
2396
  msgstr ""
2397
 
2398
+ #: src/admin.php:4929
2399
  msgid "Your settings have been saved."
2400
  msgstr ""
2401
 
2402
+ #: src/admin.php:4009
2403
  msgid "Total backup size:"
2404
  msgstr ""
2405
 
2406
+ #: src/admin.php:3416
2407
  msgid "stop"
2408
  msgstr ""
2409
 
2410
+ #: src/admin.php:905, src/admin.php:3209
2411
  msgid "The backup has finished running"
2412
  msgstr ""
2413
 
2433
  msgid "calculate"
2434
  msgstr ""
2435
 
2436
+ #: src/admin.php:879
2437
  msgid "You should save your changes to ensure that they are used for making your backup."
2438
  msgstr ""
2439
 
2440
+ #: src/admin.php:872
2441
  msgid "We requested to delete the file, but could not understand the server's response"
2442
  msgstr ""
2443
 
2444
+ #: src/admin.php:871
2445
  msgid "Please enter a valid URL"
2446
  msgstr ""
2447
 
2448
+ #: src/admin.php:854
2449
  msgid "Saving..."
2450
  msgstr ""
2451
 
2452
+ #: src/admin.php:815
2453
  msgid "Error: the server sent us a response which we did not understand."
2454
  msgstr ""
2455
 
2456
+ #: src/admin.php:807
2457
  msgid "Fetching..."
2458
  msgstr ""
2459
 
2469
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2470
  msgstr ""
2471
 
2472
+ #: src/class-updraftplus.php:4005, src/restorer.php:2227
2473
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2474
  msgstr ""
2475
 
2476
+ #: src/class-updraftplus.php:4001
2477
  msgid "Please read this link for important information on this process."
2478
  msgstr ""
2479
 
2480
+ #: src/class-updraftplus.php:4001
2481
  msgid "It will be imported as a new site."
2482
  msgstr ""
2483
 
2484
+ #: src/admin.php:2842, src/templates/wp-admin/notices/horizontal-notice.php:16,
2485
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2486
  msgid "Dismiss"
2487
  msgstr ""
2488
 
2489
+ #: src/admin.php:891
2490
  msgid "Please fill in the required information."
2491
  msgstr ""
2492
 
2547
  msgid "Call WordPress action:"
2548
  msgstr ""
2549
 
2550
+ #: src/admin.php:3032
2551
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2552
  msgstr ""
2553
 
2579
  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)."
2580
  msgstr ""
2581
 
2582
+ #: src/admin.php:4803
2583
  msgid "Send this backup to remote storage"
2584
  msgstr ""
2585
 
2586
+ #: src/admin.php:4801
2587
  msgid "Check out UpdraftPlus Vault."
2588
  msgstr ""
2589
 
2590
+ #: src/admin.php:4801
2591
  msgid "Not got any remote storage?"
2592
  msgstr ""
2593
 
2594
+ #: src/admin.php:4801
2595
  msgid "settings"
2596
  msgstr ""
2597
 
2598
+ #: src/admin.php:4801
2599
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2600
  msgstr ""
2601
 
2602
+ #: src/admin.php:3030
2603
  msgid "Include any files in the backup"
2604
  msgstr ""
2605
 
2606
+ #: src/admin.php:3014
2607
  msgid "Include the database in the backup"
2608
  msgstr ""
2609
 
2610
+ #: src/admin.php:2841
2611
  msgid "Continue restoration"
2612
  msgstr ""
2613
 
2614
+ #: src/admin.php:2836
2615
  msgid "You have an unfinished restoration operation, begun %s ago."
2616
  msgstr ""
2617
 
2618
+ #: src/admin.php:2835
2619
  msgid "Unfinished restoration"
2620
  msgstr ""
2621
 
2622
+ #: src/admin.php:2833
2623
  msgid "%s minutes, %s seconds"
2624
  msgstr ""
2625
 
2626
+ #: src/admin.php:2699
2627
  msgid "Backup Contents And Schedule"
2628
  msgstr ""
2629
 
2630
+ #: src/admin.php:2802
2631
  msgid "Premium / Extensions"
2632
  msgstr ""
2633
 
2634
+ #: src/admin.php:2476, src/admin.php:2485
2635
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2636
  msgstr ""
2637
 
2638
+ #: src/addons/morefiles.php:71, src/admin.php:877
2639
  msgctxt "(verb)"
2640
  msgid "Download"
2641
  msgstr ""
2642
 
2643
+ #: src/admin.php:800
2644
  msgid "You have chosen to backup files, but no file entities have been selected"
2645
  msgstr ""
2646
 
2647
+ #: src/admin.php:695
2648
  msgid "Extensions"
2649
  msgstr ""
2650
 
2651
+ #: src/admin.php:687, src/admin.php:2801
2652
  msgid "Advanced Tools"
2653
  msgstr ""
2654
 
2767
  msgid "Could not access container"
2768
  msgstr ""
2769
 
2770
+ #: src/class-updraftplus.php:2992
2771
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
2772
  msgstr ""
2773
 
2897
  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)."
2898
  msgstr ""
2899
 
2900
+ #: src/admin.php:1862
2901
  msgid "Backup sets removed:"
2902
  msgstr ""
2903
 
2904
+ #: src/admin.php:890
2905
  msgid "Processing..."
2906
  msgstr ""
2907
 
2908
+ #: src/admin.php:888
2909
  msgid "For backups older than"
2910
  msgstr ""
2911
 
2912
+ #: src/admin.php:887
2913
  msgid "week(s)"
2914
  msgstr ""
2915
 
2916
+ #: src/admin.php:886
2917
  msgid "hour(s)"
2918
  msgstr ""
2919
 
2920
+ #: src/admin.php:885
2921
  msgid "day(s)"
2922
  msgstr ""
2923
 
2924
+ #: src/admin.php:884
2925
  msgid "in the month"
2926
  msgstr ""
2927
 
2928
+ #: src/admin.php:883
2929
  msgid "day"
2930
  msgstr ""
2931
 
2949
  msgid "You do not currently have any UpdraftPlus Vault quota"
2950
  msgstr ""
2951
 
2952
+ #: src/class-updraftplus.php:4076
2953
  msgid "You must upgrade MySQL to be able to use this database."
2954
  msgstr ""
2955
 
2956
+ #: src/class-updraftplus.php:4076
2957
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
2958
  msgstr ""
2959
 
2960
+ #: src/admin.php:2594
2961
  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."
2962
  msgstr ""
2963
 
2985
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
2986
  msgstr ""
2987
 
2988
+ #: src/admin.php:1192
2989
  msgid "Go to the remote storage settings in order to connect."
2990
  msgstr ""
2991
 
2992
+ #: src/admin.php:1192
2993
  msgid "%s has been chosen for remote storage, but you are not currently connected."
2994
  msgstr ""
2995
 
2997
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
2998
  msgstr ""
2999
 
3000
+ #: src/admin.php:860
3001
  msgid "Update quota count"
3002
  msgstr ""
3003
 
3004
+ #: src/admin.php:859
3005
  msgid "Counting..."
3006
  msgstr ""
3007
 
3008
+ #: src/admin.php:858
3009
  msgid "Disconnecting..."
3010
  msgstr ""
3011
 
3012
+ #: src/admin.php:856
3013
  msgid "Connecting..."
3014
  msgstr ""
3015
 
3035
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3036
  msgstr ""
3037
 
3038
+ #: src/admin.php:857, src/methods/updraftvault.php:392,
3039
  #: src/methods/updraftvault.php:450
3040
  msgid "Disconnect"
3041
  msgstr ""
3153
  msgid "Allow download"
3154
  msgstr ""
3155
 
3156
+ #: src/includes/class-remote-send.php:314
3157
  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."
3158
  msgstr ""
3159
 
3160
+ #: src/admin.php:866, src/includes/class-remote-send.php:299
3161
  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."
3162
  msgstr ""
3163
 
3164
+ #: src/includes/class-remote-send.php:541
3165
  msgid "Existing keys"
3166
  msgstr ""
3167
 
3173
  msgid "You must copy and paste this key now - it cannot be shown again."
3174
  msgstr ""
3175
 
3176
+ #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:438
3177
  msgid "Key created successfully."
3178
  msgstr ""
3179
 
3180
+ #: src/includes/class-remote-send.php:421
3181
  msgid "A key with this name already exists; you must use a unique name."
3182
  msgstr ""
3183
 
3184
+ #: src/includes/class-remote-send.php:345
3185
  msgid "Also send this backup to the active remote storage locations"
3186
  msgstr ""
3187
 
3188
+ #: src/includes/class-remote-send.php:310
3189
  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."
3190
  msgstr ""
3191
 
3192
+ #: src/includes/class-remote-send.php:266
3193
  msgid "site not found"
3194
  msgstr ""
3195
 
3196
+ #: src/includes/class-remote-send.php:251
3197
  msgid "Backup data will be sent to:"
3198
  msgstr ""
3199
 
3213
  msgid "This storage method does not allow downloading"
3214
  msgstr ""
3215
 
3216
+ #: src/admin.php:4167
3217
  msgid "(backup set imported from remote location)"
3218
  msgstr ""
3219
 
3235
  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."
3236
  msgstr ""
3237
 
3238
+ #: src/admin.php:873, src/includes/class-remote-send.php:327
3239
  msgid "Testing connection..."
3240
  msgstr ""
3241
 
3242
+ #: src/admin.php:870,
3243
  #: src/templates/wp-admin/settings/existing-backups-table.php:161
3244
  msgid "Deleting..."
3245
  msgstr ""
3246
 
3247
+ #: src/admin.php:869
3248
  msgid "key name"
3249
  msgstr ""
3250
 
3251
+ #: src/admin.php:867
3252
  msgid "Please give this key a name (e.g. indicate the site it is for):"
3253
  msgstr ""
3254
 
3255
+ #: src/admin.php:864
3256
  msgid "Creating..."
3257
  msgstr ""
3258
 
3276
  msgid "Send a backup to another site"
3277
  msgstr ""
3278
 
3279
+ #: src/admin.php:874, src/includes/class-remote-send.php:358,
3280
+ #: src/includes/class-remote-send.php:520
3281
  msgid "Send"
3282
  msgstr ""
3283
 
3284
+ #: src/admin.php:865, src/includes/class-remote-send.php:514
3285
  msgid "Send to site:"
3286
  msgstr ""
3287
 
3288
+ #: src/includes/class-remote-send.php:512
3289
  msgid "No receiving sites have yet been added."
3290
  msgstr ""
3291
 
3292
+ #: src/includes/class-remote-send.php:493
3293
  msgid "It is for sending backups to the following site: "
3294
  msgstr ""
3295
 
3296
+ #: src/includes/class-remote-send.php:493
3297
  msgid "The key was successfully added."
3298
  msgstr ""
3299
 
3300
+ #: src/includes/class-remote-send.php:477
3301
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
3302
  msgstr ""
3303
 
3304
+ #: src/includes/class-remote-send.php:466,
3305
+ #: src/includes/class-remote-send.php:468,
3306
+ #: src/includes/class-remote-send.php:472
3307
  msgid "The entered key was corrupt - please try again."
3308
  msgstr ""
3309
 
3310
+ #: src/includes/class-remote-send.php:464
3311
  msgid "The entered key was the wrong length - please try again."
3312
  msgstr ""
3313
 
3314
+ #: src/includes/class-remote-send.php:454
3315
  msgid "key"
3316
  msgstr ""
3317
 
3347
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3348
  msgstr ""
3349
 
3350
+ #: src/admin.php:863
3351
  msgid "Resetting..."
3352
  msgstr ""
3353
 
3354
+ #: src/addons/migrator.php:1745, src/admin.php:862
3355
  msgid "Add site"
3356
  msgstr ""
3357
 
3358
+ #: src/admin.php:861
3359
  msgid "Adding..."
3360
  msgstr ""
3361
 
3362
+ #: src/udaddons/options.php:298
3363
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
3364
  msgstr ""
3365
 
3367
  msgid "To use this backup, your database server needs to support the %s character set."
3368
  msgstr ""
3369
 
3370
+ #: src/udaddons/updraftplus-addons.php:997
3371
  msgid "go here to change your password on updraftplus.com."
3372
  msgstr ""
3373
 
3374
+ #: src/udaddons/updraftplus-addons.php:997
3375
  msgid "If you have forgotten your password "
3376
  msgstr ""
3377
 
3378
+ #: src/udaddons/updraftplus-addons.php:996
3379
  msgid "Go here to re-enter your password."
3380
  msgstr ""
3381
 
3383
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3384
  msgstr ""
3385
 
3386
+ #: src/admin.php:853, src/admin.php:879, src/admin.php:880
3387
  msgid "You have made changes to your settings, and not saved."
3388
  msgstr ""
3389
 
3396
  msgstr ""
3397
 
3398
  #: src/addons/azure.php:605, src/addons/onedrive.php:1148,
3399
+ #: src/includes/class-remote-send.php:314
3400
  msgid "For longer help, including screenshots, follow this link."
3401
  msgstr ""
3402
 
3589
 
3590
  #: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
3591
  #: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
3592
+ #: src/udaddons/updraftplus-addons.php:947,
3593
+ #: src/udaddons/updraftplus-addons.php:961
3594
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
3595
  msgstr ""
3596
 
3597
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3598
+ #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:961
3599
  msgid "It appears that your web server's IP Address (%s) is blocked."
3600
  msgstr ""
3601
 
3602
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3603
+ #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:961
3604
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
3605
  msgstr ""
3606
 
3642
  msgid "(at same time as files backup)"
3643
  msgstr ""
3644
 
3645
+ #: src/admin.php:3703
3646
  msgid "No backup has been completed"
3647
  msgstr ""
3648
 
3671
  msgid "Full feature list"
3672
  msgstr ""
3673
 
3674
+ #: src/addons/autobackup.php:1080
3675
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3676
  msgstr ""
3677
 
3685
  msgid "or"
3686
  msgstr ""
3687
 
3688
+ #: src/admin.php:847
3689
  msgid "You did not select any components to restore. Please select at least one, and then try again."
3690
  msgstr ""
3691
 
3716
  msgid "Check this box to have a basic report sent to"
3717
  msgstr ""
3718
 
3719
+ #: src/admin.php:3717
3720
  msgctxt "i.e. Non-automatic"
3721
  msgid "Manual"
3722
  msgstr ""
3734
  msgid "Any other file/directory on your server that you wish to backup"
3735
  msgstr ""
3736
 
3737
+ #: src/admin.php:2611
3738
  msgid "For even more features and personal support, check out "
3739
  msgstr ""
3740
 
3742
  msgid "Database decryption phrase"
3743
  msgstr ""
3744
 
3745
+ #: src/addons/autobackup.php:157, src/addons/autobackup.php:1026,
3746
+ #: src/admin.php:852
3747
  msgid "Automatic backup before update"
3748
  msgstr ""
3749
 
3824
  msgid "(learn more about this significant option)"
3825
  msgstr ""
3826
 
3827
+ #: src/udaddons/options.php:241
3828
  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."
3829
  msgstr ""
3830
 
3831
+ #: src/admin.php:3209, src/admin.php:4278
3832
  msgid "View Log"
3833
  msgstr ""
3834
 
3847
  msgid "and retain this many scheduled backups"
3848
  msgstr ""
3849
 
3850
+ #: src/admin.php:3673
3851
  msgid "incremental backup; base backup: %s"
3852
  msgstr ""
3853
 
3860
  msgid "Upload files into UpdraftPlus."
3861
  msgstr ""
3862
 
3863
+ #: src/admin.php:1138, src/includes/class-commands.php:462,
3864
  #: src/templates/wp-admin/settings/take-backup.php:12
3865
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
3866
  msgstr ""
3867
 
3868
+ #: src/class-updraftplus.php:3990
3869
  msgid "Backup label:"
3870
  msgstr ""
3871
 
3872
+ #: src/addons/backblaze.php:205, src/admin.php:2113
3873
  msgid "Error: unexpected file read fail"
3874
  msgstr ""
3875
 
3889
  msgid "Your label for this backup (optional)"
3890
  msgstr ""
3891
 
3892
+ #: src/methods/googledrive.php:1200
3893
  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."
3894
  msgstr ""
3895
 
3896
+ #: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:1000
3897
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
3898
  msgstr ""
3899
 
3900
+ #: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:996
3901
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
3902
  msgstr ""
3903
 
3904
+ #: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:862
3905
  msgid "You need to supply both an email address and a password"
3906
  msgstr ""
3907
 
3908
+ #: src/class-updraftplus.php:4009
3909
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3910
  msgstr ""
3911
 
3912
+ #: src/class-updraftplus.php:4009
3913
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3914
  msgstr ""
3915
 
3946
  msgid "You need to connect to receive future updates to UpdraftPlus."
3947
  msgstr ""
3948
 
3949
+ #: src/class-updraftplus.php:3982
3950
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3951
  msgstr ""
3952
 
3953
+ #: src/class-updraftplus.php:3982
3954
  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."
3955
  msgstr ""
3956
 
3957
+ #: src/class-updraftplus.php:3982
3958
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3959
  msgstr ""
3960
 
3961
+ #: src/class-updraftplus.php:3982
3962
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3963
  msgstr ""
3964
 
3987
  msgid "UpdraftPlus is on social media - check us out!"
3988
  msgstr ""
3989
 
3990
+ #: src/addons/wp-cli.php:907, src/admin.php:4466
3991
  msgid "Why am I seeing this?"
3992
  msgstr ""
3993
 
4001
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
4002
  msgstr ""
4003
 
4004
+ #: src/admin.php:2050, src/admin.php:2062, src/includes/class-commands.php:833
4005
  msgid "Start backup"
4006
  msgstr ""
4007
 
4008
+ #: src/class-updraftplus.php:3953, src/restorer.php:1446
4009
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4010
  msgstr ""
4011
 
4012
+ #: src/admin.php:3571
4013
  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."
4014
  msgstr ""
4015
 
4017
  msgid "Unless you have a problem, you can completely ignore everything here."
4018
  msgstr ""
4019
 
4020
+ #: src/admin.php:2288
4021
  msgid "This file could not be uploaded"
4022
  msgstr ""
4023
 
4024
+ #: src/admin.php:2251
4025
  msgid "You will find more information about this in the Settings section."
4026
  msgstr ""
4027
 
4049
  msgid "Full backup"
4050
  msgstr ""
4051
 
4052
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4053
  msgid "now proceeding with the updates..."
4054
  msgstr ""
4055
 
4056
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4057
  msgid "(view log...)"
4058
  msgstr ""
4059
 
4060
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4061
  msgid "Backup succeeded"
4062
  msgstr ""
4063
 
4064
  #: src/addons/incremental.php:237, src/addons/incremental.php:238,
4065
  #: src/addons/incremental.php:239, src/addons/incremental.php:240,
4066
+ #: src/admin.php:3718, src/admin.php:3719, src/admin.php:3720,
4067
  #: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
4068
  msgid "Every %s hours"
4069
  msgstr ""
4114
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4115
  msgstr ""
4116
 
4117
+ #: src/methods/googledrive.php:1207
4118
  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."
4119
  msgstr ""
4120
 
4138
  msgid "Free disk space in account:"
4139
  msgstr ""
4140
 
4141
+ #: src/admin.php:4900, src/templates/wp-admin/settings/take-backup.php:50
4142
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4143
  msgstr ""
4144
 
4145
+ #: src/admin.php:819, src/admin.php:1918,
4146
  #: src/includes/deprecated-actions.php:29,
4147
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4148
  #: src/templates/wp-admin/settings/tab-backups.php:21,
4150
  msgid "Existing Backups"
4151
  msgstr ""
4152
 
4153
+ #: src/admin.php:1143
4154
  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."
4155
  msgstr ""
4156
 
4157
+ #: src/admin.php:1143
4158
  msgid "To make a backup, just press the Backup Now button."
4159
  msgstr ""
4160
 
4161
+ #: src/admin.php:1143
4162
  msgid "Welcome to UpdraftPlus!"
4163
  msgstr ""
4164
 
4230
  msgid "user"
4231
  msgstr ""
4232
 
4233
+ #: src/class-updraftplus.php:1736
4234
  msgid "External database (%s)"
4235
  msgstr ""
4236
 
4237
+ #: src/methods/googledrive.php:1207
4238
  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."
4239
  msgstr ""
4240
 
4241
+ #: src/methods/googledrive.php:502
4242
  msgid "failed to access parent folder"
4243
  msgstr ""
4244
 
4245
  #: src/addons/googlecloud.php:698, src/addons/onedrive.php:907,
4246
+ #: src/addons/onedrive.php:918, src/methods/googledrive.php:442,
4247
+ #: src/methods/googledrive.php:455
4248
  msgid "However, subsequent access attempts failed:"
4249
  msgstr ""
4250
 
4251
+ #: src/addons/wp-cli.php:437, src/admin.php:4034
4252
  msgid "External database"
4253
  msgstr ""
4254
 
4280
  msgid "use UpdraftPlus Premium"
4281
  msgstr ""
4282
 
4283
+ #: src/class-updraftplus.php:3833
4284
  msgid "Decryption failed. The database file is encrypted."
4285
  msgstr ""
4286
 
4335
  msgid "Tenant"
4336
  msgstr ""
4337
 
4338
+ #: src/addons/wp-cli.php:800, src/admin.php:4588, src/admin.php:5344,
4339
  #: src/methods/openstack2.php:144,
4340
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
4341
  #: src/templates/wp-admin/settings/tab-backups.php:27,
4415
  msgstr ""
4416
 
4417
  #: src/addons/googlecloud.php:1108, src/addons/onedrive.php:1248,
4418
+ #: src/methods/dropbox.php:668, src/methods/googledrive.php:1289
4419
  msgid "Account holder's name: %s."
4420
  msgstr ""
4421
 
4422
+ #: src/methods/googledrive.php:1266
4423
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4424
  msgstr ""
4425
 
4426
+ #: src/methods/googledrive.php:1253
4427
  msgid "It is an ID number internal to Google Drive"
4428
  msgstr ""
4429
 
4430
+ #: src/methods/googledrive.php:1253
4431
  msgid "<strong>This is NOT a folder name</strong>."
4432
  msgstr ""
4433
 
4434
+ #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1248,
4435
+ #: src/methods/googledrive.php:1259
4436
  msgid "Folder"
4437
  msgstr ""
4438
 
4439
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:451,
4440
+ #: src/methods/googledrive.php:1160
4441
  msgid "%s download: failed: file not found"
4442
  msgstr ""
4443
 
4444
+ #: src/addons/googlecloud.php:718, src/methods/googledrive.php:475
4445
  msgid "Name: %s."
4446
  msgstr ""
4447
 
4448
+ #: src/methods/googledrive.php:216
4449
  msgid "Google Drive list files: failed to access parent folder"
4450
  msgstr ""
4451
 
4481
  msgid "Failed to unpack the archive"
4482
  msgstr ""
4483
 
4484
+ #: src/class-updraftplus.php:1366
4485
  msgid "Error - failed to download the file"
4486
  msgstr ""
4487
 
4506
  msgid "password/key"
4507
  msgstr ""
4508
 
4509
+ #: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:868,
4510
+ #: src/admin.php:5192, src/templates/wp-admin/settings/temporary-clone.php:63
4511
  msgid "Key"
4512
  msgstr ""
4513
 
4523
  msgid "SCP/SFTP password/key"
4524
  msgstr ""
4525
 
4526
+ #: src/addons/wp-cli.php:449, src/admin.php:4078
4527
  msgid "Files backup (created by %s)"
4528
  msgstr ""
4529
 
4530
+ #: src/addons/wp-cli.php:449, src/admin.php:4078
4531
  msgid "Files and database WordPress backup (created by %s)"
4532
  msgstr ""
4533
 
4534
+ #: src/addons/importer.php:276, src/admin.php:4072,
4535
  #: src/includes/class-backup-history.php:435
4536
  msgid "Backup created by: %s."
4537
  msgstr ""
4538
 
4539
+ #: src/addons/wp-cli.php:431, src/admin.php:4032
4540
  msgid "Database (created by %s)"
4541
  msgstr ""
4542
 
4543
+ #: src/addons/wp-cli.php:429, src/admin.php:4026, src/admin.php:4074
4544
  msgid "unknown source"
4545
  msgstr ""
4546
 
4555
  msgid "Upload backup files"
4556
  msgstr ""
4557
 
4558
+ #: src/admin.php:2303
4559
  msgid "This backup was created by %s, and can be imported."
4560
  msgstr ""
4561
 
4562
+ #: src/admin.php:1172
4563
  msgid "Read this page for a guide to possible causes and how to fix it."
4564
  msgstr ""
4565
 
4566
+ #: src/admin.php:1172
4567
  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."
4568
  msgstr ""
4569
 
4570
+ #: src/admin.php:831, src/includes/class-backup-history.php:442
4571
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
4572
  msgstr ""
4573
 
4574
+ #: src/admin.php:830
4575
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
4576
  msgstr ""
4577
 
4578
+ #: src/admin.php:830, src/admin.php:831,
4579
  #: src/includes/class-backup-history.php:442
4580
  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))."
4581
  msgstr ""
4582
 
4583
+ #: src/admin.php:4075, src/includes/class-wpadmin-commands.php:162,
4584
  #: src/restorer.php:1975
4585
  msgid "Backup created by unknown source (%s) - cannot be restored."
4586
  msgstr ""
4610
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
4611
  msgstr ""
4612
 
4613
+ #: src/admin.php:797
4614
  msgid "Rescanning remote and local storage for backup sets..."
4615
  msgstr ""
4616
 
4640
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4641
  msgstr ""
4642
 
4643
+ #: src/addons/morefiles.php:476, src/admin.php:3831
4644
  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."
4645
  msgstr ""
4646
 
4669
  msgid "Backup created by:"
4670
  msgstr ""
4671
 
4672
+ #: src/udaddons/options.php:483
4673
  msgid "Available to claim on this site"
4674
  msgstr ""
4675
 
4756
  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)"
4757
  msgstr ""
4758
 
4759
+ #: src/udaddons/updraftplus-addons.php:479,
4760
+ #: src/udaddons/updraftplus-addons.php:568
4761
  msgid "Errors occurred:"
4762
  msgstr ""
4763
 
4764
+ #: src/addons/wp-cli.php:664, src/admin.php:4508
4765
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
4766
  msgstr ""
4767
 
4785
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
4786
  msgstr ""
4787
 
4788
+ #: src/admin.php:1147, src/class-updraftplus.php:848
4789
  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)"
4790
  msgstr ""
4791
 
4798
  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."
4799
  msgstr ""
4800
 
4801
+ #: src/addons/moredatabase.php:144, src/admin.php:1642
4802
  msgid "Messages:"
4803
  msgstr ""
4804
 
4964
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4965
  msgstr ""
4966
 
4967
+ #: src/admin.php:845, src/central/bootstrap.php:565
4968
  msgid "Create"
4969
  msgstr ""
4970
 
4971
+ #: src/admin.php:806
4972
  msgid "Trying..."
4973
  msgstr ""
4974
 
4975
+ #: src/admin.php:805
4976
  msgid "The new user's RackSpace console password is (this will not be shown again):"
4977
  msgstr ""
4978
 
4979
+ #: src/addons/wp-cli.php:797, src/admin.php:816, src/admin.php:4586
4980
  msgid "Error data:"
4981
  msgstr ""
4982
 
4983
+ #: src/admin.php:4489
4984
  msgid "Backup does not exist in the backup history"
4985
  msgstr ""
4986
 
4987
+ #: src/admin.php:3145
4988
  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."
4989
  msgstr ""
4990
 
5024
  msgid "Email reports"
5025
  msgstr ""
5026
 
5027
+ #: src/class-updraftplus.php:1744, src/class-updraftplus.php:1749
5028
  msgid "%s checksum: %s"
5029
  msgstr ""
5030
 
5031
+ #: src/class-updraftplus.php:1680, src/class-updraftplus.php:1682
5032
  msgid "files: %s"
5033
  msgstr ""
5034
 
5040
  msgid "Debugging information"
5041
  msgstr ""
5042
 
5043
+ #: src/addons/reporting.php:223, src/admin.php:3992
5044
  msgid "Uploaded to:"
5045
  msgstr ""
5046
 
5085
  msgid "%s authentication"
5086
  msgstr ""
5087
 
5088
+ #: src/addons/onedrive.php:864, src/class-updraftplus.php:532,
5089
  #: src/methods/dropbox.php:240, src/methods/dropbox.php:753,
5090
  #: src/methods/dropbox.php:775, src/methods/dropbox.php:790,
5091
  #: src/methods/dropbox.php:803, src/methods/dropbox.php:946
5112
  msgid "Your site's admin email address (%s) will be used."
5113
  msgstr ""
5114
 
5115
+ #: src/admin.php:855, src/admin.php:2876, src/methods/updraftvault.php:319,
5116
  #: src/methods/updraftvault.php:362,
5117
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5118
  msgid "Connect"
5122
  msgid "For more reporting features, use the Reporting add-on."
5123
  msgstr ""
5124
 
5125
+ #: src/class-updraftplus.php:3914
5126
  msgid "(version: %s)"
5127
  msgstr ""
5128
 
5129
+ #: src/admin.php:794
5130
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5131
  msgstr ""
5132
 
5133
+ #: src/addons/reporting.php:527, src/admin.php:793
5134
  msgid "When the Email storage method is enabled, also send the backup"
5135
  msgstr ""
5136
 
5170
  msgid "Files (database backup has not completed)"
5171
  msgstr ""
5172
 
5173
+ #: src/admin.php:334, src/backup.php:1044
5174
  msgid "Files and database"
5175
  msgstr ""
5176
 
5194
  msgid "UpdraftPlus warning:"
5195
  msgstr ""
5196
 
5197
+ #: src/udaddons/options.php:489
5198
  msgid "(or connect using the form on this page if you have already purchased it)"
5199
  msgstr ""
5200
 
5201
+ #: src/udaddons/options.php:477
5202
  msgid "please follow this link to update the plugin in order to activate it"
5203
  msgstr ""
5204
 
5205
+ #: src/udaddons/options.php:474
5206
  msgid "please follow this link to update the plugin in order to get it"
5207
  msgstr ""
5208
 
5209
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
5210
  msgid "latest"
5211
  msgstr ""
5212
 
5213
+ #: src/udaddons/options.php:462
5214
  msgid "Your version: %s"
5215
  msgstr ""
5216
 
5217
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
5218
  msgid "You've got it"
5219
  msgstr ""
5220
 
5221
+ #: src/udaddons/options.php:421
5222
  msgid "UpdraftPlus Support"
5223
  msgstr ""
5224
 
5225
+ #: src/udaddons/options.php:361
5226
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
5227
  msgstr ""
5228
 
5229
+ #: src/udaddons/options.php:350, src/udaddons/updraftplus-addons.php:315
5230
  msgid "UpdraftPlus Addons"
5231
  msgstr ""
5232
 
5235
  msgstr ""
5236
 
5237
  #: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
5238
+ #: src/udaddons/updraftplus-addons.php:1007
5239
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
5240
  msgstr ""
5241
 
5242
+ #: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:1003
5243
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
5244
  msgstr ""
5245
 
5246
  #: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
5247
+ #: src/udaddons/updraftplus-addons.php:966
5248
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
5249
  msgstr ""
5250
 
5251
+ #: src/udaddons/updraftplus-addons.php:889
5252
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
5253
  msgstr ""
5254
 
5255
+ #: src/udaddons/updraftplus-addons.php:887
5256
  msgid "We failed to successfully connect to UpdraftPlus.Com"
5257
  msgstr ""
5258
 
5263
  msgid "Reporting"
5264
  msgstr ""
5265
 
5266
+ #: src/admin.php:5189
5267
  msgid "Options (raw)"
5268
  msgstr ""
5269
 
5270
+ #: src/addons/reporting.php:525, src/admin.php:792
5271
  msgid "Send a report only when there are warnings/errors"
5272
  msgstr ""
5273
 
5283
  msgid "See also the \"More Files\" add-on from our shop."
5284
  msgstr ""
5285
 
5286
+ #: src/backup.php:3424, src/class-updraftplus.php:861
5287
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
5288
  msgstr ""
5289
 
5290
+ #: src/class-updraftplus.php:845
5291
  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)"
5292
  msgstr ""
5293
 
5294
+ #: src/udaddons/options.php:512
5295
  msgid "Manage Addons"
5296
  msgstr ""
5297
 
5298
+ #: src/udaddons/options.php:490, src/udaddons/options.php:490
5299
  msgid "Buy It"
5300
  msgstr ""
5301
 
5302
+ #: src/udaddons/options.php:489
5303
  msgid "Get it from the UpdraftPlus.Com Store"
5304
  msgstr ""
5305
 
5306
+ #: src/udaddons/options.php:483, src/udaddons/options.php:485
5307
  msgid "activate it on this site"
5308
  msgstr ""
5309
 
5310
+ #: src/udaddons/options.php:485
5311
  msgid "You have an inactive purchase"
5312
  msgstr ""
5313
 
5314
+ #: src/udaddons/options.php:477
5315
  msgid "Assigned to this site"
5316
  msgstr ""
5317
 
5318
+ #: src/udaddons/options.php:474
5319
  msgid "Available for this site (via your all-addons purchase)"
5320
  msgstr ""
5321
 
5322
+ #: src/udaddons/options.php:468
5323
  msgid "(apparently a pre-release or withdrawn release)"
5324
  msgstr ""
5325
 
5326
+ #: src/udaddons/options.php:423
5327
  msgid "Go here"
5328
  msgstr ""
5329
 
5330
+ #: src/udaddons/options.php:423
5331
  msgid "Need to get support?"
5332
  msgstr ""
5333
 
5334
+ #: src/udaddons/options.php:405
5335
  msgid "An error occurred when trying to retrieve your add-ons."
5336
  msgstr ""
5337
 
5338
+ #: src/udaddons/options.php:300
5339
  msgid "An unknown response was received. Response was:"
5340
  msgstr ""
5341
 
5342
+ #: src/udaddons/options.php:299
5343
  msgid "Claim not granted - your account login details were wrong"
5344
  msgstr ""
5345
 
5346
+ #: src/udaddons/options.php:297
5347
  msgid "Please wait whilst we make the claim..."
5348
  msgstr ""
5349
 
5350
+ #: src/udaddons/options.php:251
5351
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
5352
  msgstr ""
5353
 
5354
+ #: src/udaddons/options.php:244
5355
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
5356
  msgstr ""
5357
 
5358
+ #: src/udaddons/options.php:240
5359
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
5360
  msgstr ""
5361
 
5363
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
5364
  msgstr ""
5365
 
5366
+ #: src/admin.php:2874
5367
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
5368
  msgstr ""
5369
 
5370
+ #: src/admin.php:2950
5371
  msgid "Forgotten your details?"
5372
  msgstr ""
5373
 
5374
+ #: src/admin.php:2863
5375
  msgid "Not yet got an account (it's free)? Go get one!"
5376
  msgstr ""
5377
 
5378
+ #: src/admin.php:2929
5379
  msgid "Connect with your UpdraftPlus.Com account"
5380
  msgstr ""
5381
 
5417
  msgid "Your web-server does not have the %s module installed."
5418
  msgstr ""
5419
 
5420
+ #: src/addons/googlecloud.php:1074, src/methods/googledrive.php:1278
5421
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
5422
  msgstr ""
5423
 
5426
  msgid "Drop backup files here"
5427
  msgstr ""
5428
 
5429
+ #: src/admin.php:804
5430
  msgid "The web server returned an error code (try again, or check your web server logs)"
5431
  msgstr ""
5432
 
5433
+ #: src/admin.php:802
5434
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
5435
  msgstr ""
5436
 
5437
+ #: src/addons/wp-cli.php:115, src/admin.php:799
5438
  msgid "If you exclude both the database and the files, then you have excluded everything!"
5439
  msgstr ""
5440
 
5446
  msgid "Remote Storage Options"
5447
  msgstr ""
5448
 
5449
+ #: src/addons/autobackup.php:343, src/addons/autobackup.php:437
5450
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
5451
  msgstr ""
5452
 
5453
+ #: src/addons/autobackup.php:303, src/addons/autobackup.php:1085
5454
  msgid "Remember this choice for next time (you will still have the chance to change it)"
5455
  msgstr ""
5456
 
5463
  msgid "You can send a backup to more than one destination with an add-on."
5464
  msgstr ""
5465
 
5466
+ #: src/admin.php:3416
5467
  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."
5468
  msgstr ""
5469
 
5470
+ #: src/admin.php:3283
5471
  msgid "(%s%%, file %s of %s)"
5472
  msgstr ""
5473
 
5474
+ #: src/addons/autobackup.php:304, src/addons/autobackup.php:1090,
5475
  #: src/addons/lockadmin.php:160
5476
  msgid "Read more about how this works..."
5477
  msgstr ""
5504
  msgid "Backup is of: %s."
5505
  msgstr ""
5506
 
5507
+ #: src/admin.php:894
5508
  msgid "%s settings test result:"
5509
  msgstr ""
5510
 
5511
+ #: src/admin.php:4140, src/admin.php:4142
5512
  msgid "(Not finished)"
5513
  msgstr ""
5514
 
5515
+ #: src/admin.php:4142
5516
  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."
5517
  msgstr ""
5518
 
5524
  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)."
5525
  msgstr ""
5526
 
5527
+ #: src/admin.php:3384
5528
  msgid "Job ID: %s"
5529
  msgstr ""
5530
 
5531
+ #: src/admin.php:3364
5532
  msgid "last activity: %ss ago"
5533
  msgstr ""
5534
 
5535
+ #: src/admin.php:3363
5536
  msgid "next resumption: %d (after %ss)"
5537
  msgstr ""
5538
 
5539
+ #: src/admin.php:3346, src/central/bootstrap.php:444,
5540
  #: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
5541
  #: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
5542
  msgid "Unknown"
5543
  msgstr ""
5544
 
5545
+ #: src/admin.php:3297
5546
  msgid "Backup finished"
5547
  msgstr ""
5548
 
5549
+ #: src/admin.php:3292
5550
  msgid "Waiting until scheduled time to retry because of errors"
5551
  msgstr ""
5552
 
5553
+ #: src/admin.php:3288
5554
  msgid "Pruning old backup sets"
5555
  msgstr ""
5556
 
5557
+ #: src/admin.php:3275
5558
  msgid "Uploading files to remote storage"
5559
  msgstr ""
5560
 
5561
+ #: src/admin.php:3344
5562
  msgid "Encrypted database"
5563
  msgstr ""
5564
 
5565
+ #: src/admin.php:3336
5566
  msgid "Encrypting database"
5567
  msgstr ""
5568
 
5569
+ #: src/admin.php:3310
5570
  msgid "Created database backup"
5571
  msgstr ""
5572
 
5573
+ #: src/admin.php:3323
5574
  msgid "table: %s"
5575
  msgstr ""
5576
 
5577
+ #: src/admin.php:3321
5578
  msgid "Creating database backup"
5579
  msgstr ""
5580
 
5581
+ #: src/admin.php:3266
5582
  msgid "Created file backup zips"
5583
  msgstr ""
5584
 
5585
+ #: src/admin.php:3253
5586
  msgid "Creating file backup zips"
5587
  msgstr ""
5588
 
5589
+ #: src/admin.php:3248
5590
  msgid "Backup begun"
5591
  msgstr ""
5592
 
5593
+ #: src/admin.php:1151
5594
  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."
5595
  msgstr ""
5596
 
5606
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
5607
  msgstr ""
5608
 
5609
+ #: src/class-updraftplus.php:3002
5610
  msgid "The backup has not finished; a resumption is scheduled"
5611
  msgstr ""
5612
 
5613
+ #: src/class-updraftplus.php:2022
5614
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
5615
  msgstr ""
5616
 
5619
  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)."
5620
  msgstr ""
5621
 
5622
+ #: src/admin.php:2638
5623
  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)."
5624
  msgstr ""
5625
 
5626
+ #: src/addons/autobackup.php:1104, src/admin.php:848
5627
  msgid "Proceed with update"
5628
  msgstr ""
5629
 
5630
+ #: src/addons/autobackup.php:1097
5631
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
5632
  msgstr ""
5633
 
5634
+ #: src/addons/autobackup.php:139, src/addons/autobackup.php:1046
5635
  msgid "UpdraftPlus Automatic Backups"
5636
  msgstr ""
5637
 
5638
+ #: src/addons/autobackup.php:529
5639
  msgid "Errors have occurred:"
5640
  msgstr ""
5641
 
5642
+ #: src/addons/autobackup.php:501
5643
  msgid "Creating backup with UpdraftPlus..."
5644
  msgstr ""
5645
 
5646
+ #: src/addons/autobackup.php:446, src/addons/autobackup.php:576,
5647
+ #: src/addons/autobackup.php:627
5648
  msgid "Automatic Backup"
5649
  msgstr ""
5650
 
5651
+ #: src/addons/autobackup.php:437
5652
  msgid "Creating database backup with UpdraftPlus..."
5653
  msgstr ""
5654
 
5655
+ #: src/addons/autobackup.php:403
5656
  msgid "themes"
5657
  msgstr ""
5658
 
5659
+ #: src/addons/autobackup.php:396
5660
  msgid "plugins"
5661
  msgstr ""
5662
 
5663
+ #: src/addons/autobackup.php:347, src/addons/autobackup.php:444
5664
  msgid "Starting automatic backup..."
5665
  msgstr ""
5666
 
5667
+ #: src/addons/autobackup.php:343
5668
  msgid "Creating %s and database backup with UpdraftPlus..."
5669
  msgstr ""
5670
 
5671
+ #: src/addons/autobackup.php:301
5672
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
5673
  msgstr ""
5674
 
5699
  msgid "Support"
5700
  msgstr ""
5701
 
5702
+ #: src/class-updraftplus.php:4237
5703
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
5704
  msgstr ""
5705
 
5706
+ #: src/class-updraftplus.php:4229
5707
  msgid "This database backup is missing core WordPress tables: %s"
5708
  msgstr ""
5709
 
5710
+ #: src/class-updraftplus.php:3975
5711
  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."
5712
  msgstr ""
5713
 
5714
+ #: src/class-updraftplus.php:3974, src/class-updraftplus.php:3981
5715
  msgid "%s version: %s"
5716
  msgstr ""
5717
 
5718
+ #: src/class-updraftplus.php:3850
5719
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
5720
  msgstr ""
5721
 
5722
+ #: src/addons/autobackup.php:1072, src/admin.php:976,
5723
  #: src/includes/updraftplus-notices.php:171
5724
  msgid "Be safe with an automatic backup"
5725
  msgstr ""
5726
 
5727
+ #: src/admin.php:2591
5728
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
5729
  msgstr ""
5730
 
5731
+ #: src/admin.php:840
5732
  msgid "The file was uploaded."
5733
  msgstr ""
5734
 
5735
+ #: src/admin.php:839
5736
  msgid "Unknown server response status:"
5737
  msgstr ""
5738
 
5739
+ #: src/admin.php:838
5740
  msgid "Unknown server response:"
5741
  msgstr ""
5742
 
5743
+ #: src/admin.php:837
5744
  msgid "This decryption key will be attempted:"
5745
  msgstr ""
5746
 
5747
+ #: src/admin.php:836
5748
  msgid "Follow this link to attempt decryption and download the database file to your computer."
5749
  msgstr ""
5750
 
5751
+ #: src/admin.php:835
5752
  msgid "Upload error"
5753
  msgstr ""
5754
 
5755
+ #: src/admin.php:834
5756
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
5757
  msgstr ""
5758
 
5759
+ #: src/admin.php:833
5760
  msgid "Upload error:"
5761
  msgstr ""
5762
 
5763
+ #: src/admin.php:832
5764
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
5765
  msgstr ""
5766
 
5767
+ #: src/admin.php:823
5768
  msgid "Download to your computer"
5769
  msgstr ""
5770
 
5771
+ #: src/admin.php:822
5772
  msgid "Delete from your web server"
5773
  msgstr ""
5774
 
5775
+ #: src/admin.php:4112
5776
  msgid "You appear to be missing one or more archives from this multi-archive set."
5777
  msgstr ""
5778
 
5779
+ #: src/admin.php:4109
5780
  msgid "(%d archive(s) in set)."
5781
  msgstr ""
5782
 
5788
  msgid "Error: the server sent us a response (JSON) which we did not understand."
5789
  msgstr ""
5790
 
5791
+ #: src/admin.php:813
5792
  msgid "Warnings:"
5793
  msgstr ""
5794
 
5795
+ #: src/admin.php:812
5796
  msgid "Error: the server sent an empty response."
5797
  msgstr ""
5798
 
5799
+ #: src/admin.php:2317
5800
  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?"
5801
  msgstr ""
5802
 
5870
  msgid "Looking for %s archive: file name: %s"
5871
  msgstr ""
5872
 
5873
+ #: src/addons/wp-cli.php:784, src/admin.php:4570
5874
  msgid "Final checks"
5875
  msgstr ""
5876
 
5882
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5883
  msgstr ""
5884
 
5885
+ #: src/admin.php:3817
5886
  msgid "Your wp-content directory server path: %s"
5887
  msgstr ""
5888
 
5889
+ #: src/admin.php:829
5890
  msgid "Raw backup history"
5891
  msgstr ""
5892
 
5894
  msgid "Show raw backup and file list"
5895
  msgstr ""
5896
 
5897
+ #: src/admin.php:811
5898
  msgid "Processing files - please wait..."
5899
  msgstr ""
5900
 
5903
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
5904
  msgstr ""
5905
 
5906
+ #: src/class-updraftplus.php:3858
5907
  msgid "Failed to open database file."
5908
  msgstr ""
5909
 
5910
+ #: src/admin.php:5154
5911
  msgid "Known backups (raw)"
5912
  msgstr ""
5913
 
5925
 
5926
  #: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
5927
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
5928
+ #: src/admin.php:1151, src/admin.php:2596, src/backup.php:3431,
5929
+ #: src/class-updraftplus.php:4097, src/class-updraftplus.php:4097,
5930
  #: src/updraftplus.php:157
5931
  msgid "Go here for more information."
5932
  msgstr ""
5933
 
5934
+ #: src/admin.php:810
5935
  msgid "Some files are still downloading or being processed - please wait."
5936
  msgstr ""
5937
 
5938
+ #: src/class-updraftplus.php:3945, src/class-updraftplus.php:3965
5939
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
5940
  msgstr ""
5941
 
5977
 
5978
  #: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
5979
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
5980
+ #: src/methods/googledrive.php:1120, src/methods/openstack-base.php:455,
5981
  #: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
5982
  #: src/methods/stream-base.php:335
5983
  msgid "%s Error"
5987
  msgid "%s error - failed to upload file"
5988
  msgstr ""
5989
 
5990
+ #: src/class-updraftplus.php:1255, src/methods/cloudfiles.php:211
5991
  msgid "%s error - failed to re-assemble chunks"
5992
  msgstr ""
5993
 
6002
  msgstr ""
6003
 
6004
  #: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
6005
+ #: src/admin.php:2288, src/admin.php:2309, src/admin.php:2317,
6006
+ #: src/class-updraftplus.php:997, src/class-updraftplus.php:1003,
6007
+ #: src/class-updraftplus.php:3831, src/class-updraftplus.php:3833,
6008
+ #: src/class-updraftplus.php:3998, src/class-updraftplus.php:4005,
6009
+ #: src/class-updraftplus.php:4076, src/methods/googledrive.php:403,
6010
  #: src/methods/s3.php:341
6011
  msgid "Error: %s"
6012
  msgstr ""
6013
 
6014
+ #: src/admin.php:3736
6015
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6016
  msgstr ""
6017
 
6018
+ #: src/admin.php:3734
6019
  msgid "Backup directory specified does <b>not</b> exist."
6020
  msgstr ""
6021
 
6022
+ #: src/admin.php:3398, src/admin.php:3685
6023
  msgid "Warning: %s"
6024
  msgstr ""
6025
 
6043
  msgid "Warnings encountered:"
6044
  msgstr ""
6045
 
6046
+ #: src/class-updraftplus.php:2986
6047
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6048
  msgstr ""
6049
 
6050
+ #: src/class-updraftplus.php:874
6051
  msgid "Your free disk space is very low - only %s Mb remain"
6052
  msgstr ""
6053
 
6099
  msgid "Please supply the requested information, and then continue."
6100
  msgstr ""
6101
 
6102
+ #: src/class-updraftplus.php:4016, src/restorer.php:2233
6103
  msgid "Site information:"
6104
  msgstr ""
6105
 
6107
  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."
6108
  msgstr ""
6109
 
6110
+ #: src/admin.php:2591, src/class-updraftplus.php:4009, src/restorer.php:2647
6111
  msgid "Warning:"
6112
  msgstr ""
6113
 
6114
+ #: src/class-updraftplus.php:3998, src/class-updraftplus.php:4001,
6115
  #: src/restorer.php:530
6116
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6117
  msgstr ""
6120
  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."
6121
  msgstr ""
6122
 
6123
+ #: src/addons/azure.php:601, src/admin.php:3909,
6124
  #: src/methods/updraftvault.php:306
6125
  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."
6126
  msgstr ""
6127
 
6128
+ #: src/admin.php:849, src/includes/updraftplus-tour.php:89
6129
  msgid "Close"
6130
  msgstr ""
6131
 
6132
+ #: src/addons/autobackup.php:349, src/addons/autobackup.php:441,
6133
+ #: src/admin.php:803, src/methods/remotesend.php:69,
6134
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:228,
6135
  #: src/methods/remotesend.php:245, src/methods/remotesend.php:293
6136
  msgid "Unexpected response:"
6137
  msgstr ""
6138
 
6139
+ #: src/addons/reporting.php:523, src/admin.php:798
6140
  msgid "To send to more than one address, separate each address with a comma."
6141
  msgstr ""
6142
 
6143
+ #: src/admin.php:827
6144
  msgid "PHP information"
6145
  msgstr ""
6146
 
6164
  msgid "Also delete from remote storage"
6165
  msgstr ""
6166
 
6167
+ #: src/admin.php:3087
6168
  msgid "Latest UpdraftPlus.com news:"
6169
  msgstr ""
6170
 
6192
  msgid "News"
6193
  msgstr ""
6194
 
6195
+ #: src/admin.php:1695, src/includes/class-wpadmin-commands.php:506
6196
  msgid "Backup set not found"
6197
  msgstr ""
6198
 
6214
  msgid "Blog link"
6215
  msgstr ""
6216
 
6217
+ #: src/admin.php:893
6218
  msgid "Testing %s Settings..."
6219
  msgstr ""
6220
 
6223
  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."
6224
  msgstr ""
6225
 
6226
+ #: src/admin.php:1167
6227
  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."
6228
  msgstr ""
6229
 
6230
+ #: src/admin.php:1167
6231
  msgid "Notice"
6232
  msgstr ""
6233
 
6235
  msgid "Errors encountered:"
6236
  msgstr ""
6237
 
6238
+ #: src/admin.php:795
6239
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
6240
  msgstr ""
6241
 
6242
+ #: src/admin.php:809
6243
  msgid "Begun looking for this entity"
6244
  msgstr ""
6245
 
6263
  msgid "Time taken (seconds):"
6264
  msgstr ""
6265
 
6266
+ #: src/addons/migrator.php:1302, src/admin.php:814
6267
  msgid "Errors:"
6268
  msgstr ""
6269
 
6362
  msgstr ""
6363
 
6364
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
6365
+ #: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2945,
6366
  #: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
6367
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
6368
  msgid "Password"
6430
  msgstr ""
6431
 
6432
  #: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
6433
+ #: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3464,
6434
+ #: src/admin.php:3500, src/admin.php:3510, src/methods/addon-base-v2.php:313,
6435
  #: src/methods/stream-base.php:356
6436
  msgid "Failed"
6437
  msgstr ""
6456
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
6457
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
6458
  #: src/methods/addon-base-v2.php:285, src/methods/ftp.php:42,
6459
+ #: src/methods/googledrive.php:202, src/methods/googledrive.php:204,
6460
  #: src/methods/remotesend.php:278, src/methods/stream-base.php:27,
6461
  #: src/methods/stream-base.php:163, src/methods/stream-base.php:169,
6462
  #: src/methods/stream-base.php:203, src/methods/stream-base.php:278
6653
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
6654
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
6655
  #: src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530,
6656
+ #: src/addons/webdav.php:253, src/admin.php:869,
6657
+ #: src/includes/class-remote-send.php:454, src/methods/addon-base-v2.php:305,
6658
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
6659
  #: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
6660
  #: src/methods/ftp.php:412, src/methods/ftp.php:416,
6696
  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."
6697
  msgstr ""
6698
 
6699
+ #: src/admin.php:892, src/methods/backup-module.php:315
6700
  msgid "Test %s Settings"
6701
  msgstr ""
6702
 
6703
+ #: src/class-updraftplus.php:1298, src/class-updraftplus.php:1342,
6704
  #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
6705
  msgid "Error opening local file: Failed to download"
6706
  msgstr ""
6717
  msgstr ""
6718
 
6719
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
6720
+ #: src/class-updraftplus.php:1140, src/methods/cloudfiles.php:130,
6721
+ #: src/methods/googledrive.php:1034, src/methods/googledrive.php:1039
6722
  msgid "%s Error: Failed to open local file"
6723
  msgstr ""
6724
 
6734
  msgid "Cloud Files authentication failed"
6735
  msgstr ""
6736
 
6737
+ #: src/methods/googledrive.php:1273
6738
  msgid "Authenticate with Google"
6739
  msgstr ""
6740
 
6741
  #: src/addons/googlecloud.php:1027, src/addons/onedrive.php:1181,
6742
+ #: src/methods/googledrive.php:1237
6743
  msgid "Client Secret"
6744
  msgstr ""
6745
 
6746
+ #: src/addons/googlecloud.php:1022, src/methods/googledrive.php:1234
6747
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
6748
  msgstr ""
6749
 
6750
  #: src/addons/googlecloud.php:1019, src/addons/onedrive.php:1177,
6751
+ #: src/methods/googledrive.php:1233
6752
  msgid "Client ID"
6753
  msgstr ""
6754
 
6755
+ #: src/methods/googledrive.php:1207
6756
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
6757
  msgstr ""
6758
 
6759
+ #: src/addons/googlecloud.php:997, src/methods/googledrive.php:1207
6760
  msgid "Select 'Web Application' as the application type."
6761
  msgstr ""
6762
 
6763
+ #: src/addons/googlecloud.php:995, src/methods/googledrive.php:1205
6764
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
6765
  msgstr ""
6766
 
6767
  #: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
6768
+ #: src/addons/googlecloud.php:866, src/methods/googledrive.php:580,
6769
+ #: src/methods/googledrive.php:581, src/methods/googledrive.php:591,
6770
+ #: src/methods/googledrive.php:592
6771
  msgid "Account is not authorized."
6772
  msgstr ""
6773
 
6774
+ #: src/methods/googledrive.php:502, src/methods/googledrive.php:548,
6775
+ #: src/methods/googledrive.php:554, src/methods/googledrive.php:556,
6776
  #: src/methods/stream-base.php:219
6777
  msgid "Failed to upload to %s"
6778
  msgstr ""
6779
 
6780
+ #: src/methods/googledrive.php:531
6781
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
6782
  msgstr ""
6783
 
6784
+ #: src/methods/googledrive.php:624, src/methods/googledrive.php:660
6785
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
6786
  msgstr ""
6787
 
6788
  #: src/addons/googlecloud.php:718, src/addons/onedrive.php:939,
6789
+ #: src/methods/googledrive.php:475
6790
  msgid "you have authenticated your %s account."
6791
  msgstr ""
6792
 
6794
  #: src/addons/onedrive.php:939, src/addons/sftp.php:591,
6795
  #: src/addons/sftp.php:595, src/addons/wp-cli.php:515,
6796
  #: src/methods/addon-base-v2.php:327, src/methods/cloudfiles.php:575,
6797
+ #: src/methods/googledrive.php:475, src/methods/openstack-base.php:530,
6798
  #: src/methods/s3.php:1155, src/methods/stream-base.php:372
6799
  msgid "Success"
6800
  msgstr ""
6801
 
6802
  #: src/addons/onedrive.php:893, src/methods/dropbox.php:844,
6803
+ #: src/methods/dropbox.php:853, src/methods/googledrive.php:439
6804
  msgid "Your %s quota usage: %s %% used, %s available"
6805
  msgstr ""
6806
 
6807
+ #: src/addons/googlecloud.php:444, src/methods/googledrive.php:409
6808
  msgid "Authorization failed"
6809
  msgstr ""
6810
 
6811
+ #: src/addons/googlecloud.php:436, src/methods/googledrive.php:401
6812
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
6813
  msgstr ""
6814
 
6831
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
6832
  msgstr ""
6833
 
6834
+ #: src/admin.php:3468, src/admin.php:3503, src/admin.php:3507,
6835
+ #: src/includes/class-remote-send.php:327,
6836
  #: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
6837
  #: src/restorer.php:2888, src/restorer.php:2993
6838
  msgid "OK"
6850
  msgid "will restore as:"
6851
  msgstr ""
6852
 
6853
+ #: src/class-updraftplus.php:3987, src/restorer.php:2215,
6854
  #: src/restorer.php:2304, src/restorer.php:2330
6855
  msgid "Old table prefix:"
6856
  msgstr ""
6857
 
6858
  #: src/addons/reporting.php:72, src/addons/reporting.php:181,
6859
+ #: src/backup.php:1135, src/class-updraftplus.php:3914
6860
  msgid "Backup of:"
6861
  msgstr ""
6862
 
6944
  msgid "Archive is expected to be size:"
6945
  msgstr ""
6946
 
6947
+ #: src/admin.php:4518
6948
  msgid "If making a request for support, please include this information:"
6949
  msgstr ""
6950
 
6951
+ #: src/admin.php:4517
6952
  msgid "ABORT: Could not find the information on which entities to restore."
6953
  msgstr ""
6954
 
6955
+ #: src/addons/wp-cli.php:647, src/admin.php:4496
6956
  msgid "UpdraftPlus Restoration: Progress"
6957
  msgstr ""
6958
 
6959
+ #: src/admin.php:4488
6960
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
6961
  msgstr ""
6962
 
6963
+ #: src/admin.php:4170
6964
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
6965
  msgstr ""
6966
 
6967
+ #: src/admin.php:4268
6968
  msgid "Delete this backup set"
6969
  msgstr ""
6970
 
6971
+ #: src/admin.php:3921
6972
  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."
6973
  msgstr ""
6974
 
6975
+ #: src/admin.php:3918
6976
  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."
6977
  msgstr ""
6978
 
6979
+ #: src/admin.php:3916
6980
  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)."
6981
  msgstr ""
6982
 
7017
  msgid "Use the server's SSL certificates"
7018
  msgstr ""
7019
 
7020
+ #: src/admin.php:3738
7021
  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."
7022
  msgstr ""
7023
 
7024
+ #: src/admin.php:3738
7025
  msgid "or, to reset this option"
7026
  msgstr ""
7027
 
7028
+ #: src/admin.php:3738
7029
  msgid "Follow this link to attempt to create the directory and set the permissions"
7030
  msgstr ""
7031
 
7032
+ #: src/admin.php:3730
7033
  msgid "Backup directory specified is writable, which is good."
7034
  msgstr ""
7035
 
7061
  msgid "Advanced / Debugging Settings"
7062
  msgstr ""
7063
 
7064
+ #: src/admin.php:826
7065
  msgid "Requesting start of backup..."
7066
  msgstr ""
7067
 
7068
+ #: src/addons/morefiles.php:311, src/admin.php:843
7069
  msgid "Cancel"
7070
  msgstr ""
7071
 
7072
  #: src/addons/incremental.php:235, src/addons/reporting.php:245,
7073
+ #: src/admin.php:4004
7074
  msgid "None"
7075
  msgstr ""
7076
 
7086
  msgid "Database encryption phrase"
7087
  msgstr ""
7088
 
7089
+ #: src/admin.php:2935, src/templates/wp-admin/settings/form-contents.php:255,
7090
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7091
  msgid "Email"
7092
  msgstr ""
7099
  msgid "Exclude these:"
7100
  msgstr ""
7101
 
7102
+ #: src/admin.php:3817
7103
  msgid "Any other directories found inside wp-content"
7104
  msgstr ""
7105
 
7115
  msgid "To fix the time at which a backup should take place,"
7116
  msgstr ""
7117
 
7118
+ #: src/addons/incremental.php:244, src/admin.php:3724
7119
  msgid "Monthly"
7120
  msgstr ""
7121
 
7122
+ #: src/addons/incremental.php:243, src/admin.php:3723
7123
  msgid "Fortnightly"
7124
  msgstr ""
7125
 
7126
+ #: src/addons/incremental.php:242, src/admin.php:3722
7127
  msgid "Weekly"
7128
  msgstr ""
7129
 
7130
+ #: src/addons/incremental.php:241, src/admin.php:3721
7131
  msgid "Daily"
7132
  msgstr ""
7133
 
7134
+ #: src/admin.php:851, src/admin.php:3699
7135
  msgid "Download log file"
7136
  msgstr ""
7137
 
7138
+ #: src/admin.php:3571
7139
  msgid "The folder exists, but your webserver does not have permission to write to it."
7140
  msgstr ""
7141
 
7142
+ #: src/admin.php:3566
7143
  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"
7144
  msgstr ""
7145
 
7146
+ #: src/admin.php:3552
7147
  msgid "The request to the filesystem to create the directory failed."
7148
  msgstr ""
7149
 
7150
+ #: src/admin.php:844, src/admin.php:3461, src/admin.php:3495,
7151
+ #: src/admin.php:4268, src/includes/class-remote-send.php:544,
7152
  #: src/templates/wp-admin/settings/existing-backups-table.php:155,
7153
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7154
  msgid "Delete"
7155
  msgstr ""
7156
 
7157
+ #: src/admin.php:3415
7158
  msgid "show log"
7159
  msgstr ""
7160
 
7215
  msgid "Yes"
7216
  msgstr ""
7217
 
7218
+ #: src/admin.php:5366, src/admin.php:5370,
7219
  #: src/templates/wp-admin/advanced/site-info.php:45,
7220
  #: src/templates/wp-admin/advanced/site-info.php:51,
7221
  #: src/templates/wp-admin/advanced/site-info.php:58,
7255
  msgid "Do read this helpful article of useful things to know before restoring."
7256
  msgstr ""
7257
 
7258
+ #: src/class-updraftplus.php:3948
7259
  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"
7260
  msgstr ""
7261
 
7296
  msgid "Delete backup set"
7297
  msgstr ""
7298
 
7299
+ #: src/admin.php:825
7300
  msgid "Download error: the server sent us a response which we did not understand."
7301
  msgstr ""
7302
 
7305
  #: src/addons/migrator.php:1268, src/addons/migrator.php:1317,
7306
  #: src/addons/migrator.php:1555, src/addons/s3-enhanced.php:164,
7307
  #: src/addons/s3-enhanced.php:169, src/addons/s3-enhanced.php:171,
7308
+ #: src/addons/sftp.php:911, src/addons/webdav.php:203, src/admin.php:91,
7309
+ #: src/admin.php:817, src/includes/class-remote-send.php:266,
7310
+ #: src/includes/class-remote-send.php:293,
7311
+ #: src/includes/class-remote-send.php:299,
7312
+ #: src/includes/class-remote-send.php:362,
7313
+ #: src/includes/class-remote-send.php:421,
7314
+ #: src/includes/class-remote-send.php:462,
7315
+ #: src/includes/class-remote-send.php:472,
7316
+ #: src/includes/class-remote-send.php:477, src/methods/remotesend.php:74,
7317
  #: src/methods/remotesend.php:242, src/methods/remotesend.php:298,
7318
  #: src/methods/updraftvault.php:527, src/restorer.php:228,
7319
  #: src/restorer.php:256, src/restorer.php:1921
7320
  msgid "Error:"
7321
  msgstr ""
7322
 
7323
+ #: src/admin.php:808
7324
  msgid "calculating..."
7325
  msgstr ""
7326
 
7343
  msgid "This is a count of the contents of your Updraft directory"
7344
  msgstr ""
7345
 
7346
+ #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:202,
7347
+ #: src/methods/googledrive.php:204, src/methods/googledrive.php:475,
7348
+ #: src/methods/googledrive.php:502, src/methods/googledrive.php:531,
7349
+ #: src/methods/googledrive.php:538, src/methods/googledrive.php:548,
7350
+ #: src/methods/googledrive.php:554, src/methods/googledrive.php:556,
7351
+ #: src/methods/googledrive.php:1193, src/methods/googledrive.php:1200,
7352
+ #: src/methods/googledrive.php:1200, src/methods/googledrive.php:1233,
7353
+ #: src/methods/googledrive.php:1237, src/methods/googledrive.php:1248,
7354
+ #: src/methods/googledrive.php:1259
7355
  msgid "Google Drive"
7356
  msgstr ""
7357
 
7370
  msgid "More tasks:"
7371
  msgstr ""
7372
 
7373
+ #: src/admin.php:3114
7374
  msgid "Download most recently modified log file"
7375
  msgstr ""
7376
 
7378
  msgid "(Nothing yet logged)"
7379
  msgstr ""
7380
 
7381
+ #: src/addons/autobackup.php:344, src/addons/autobackup.php:439,
7382
+ #: src/admin.php:3070, src/admin.php:3076,
7383
  #: src/templates/wp-admin/settings/take-backup.php:64
7384
  msgid "Last log message"
7385
  msgstr ""
7386
 
7387
+ #: src/addons/migrator.php:271, src/admin.php:663, src/admin.php:850,
7388
+ #: src/admin.php:4170
7389
  msgid "Restore"
7390
  msgstr ""
7391
 
7392
+ #: src/admin.php:842, src/templates/wp-admin/settings/take-backup.php:50
7393
  msgid "Backup Now"
7394
  msgstr ""
7395
 
7398
  msgstr ""
7399
 
7400
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
7401
+ #: src/addons/wp-cli.php:431, src/admin.php:344, src/admin.php:3979,
7402
+ #: src/admin.php:4032, src/includes/class-remote-send.php:331,
7403
  #: src/includes/class-wpadmin-commands.php:157,
7404
  #: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
7405
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
7408
  msgid "Database"
7409
  msgstr ""
7410
 
7411
+ #: src/admin.php:334, src/admin.php:5161,
7412
  #: src/templates/wp-admin/settings/take-backup.php:23
7413
  msgid "Files"
7414
  msgstr ""
7417
  msgid "Next scheduled backups"
7418
  msgstr ""
7419
 
7420
+ #: src/admin.php:313
7421
  msgid "At the same time as the files backup"
7422
  msgstr ""
7423
 
7424
+ #: src/admin.php:303, src/admin.php:324, src/admin.php:331, src/admin.php:376,
7425
+ #: src/admin.php:407
7426
  msgid "Nothing currently scheduled"
7427
  msgstr ""
7428
 
7434
  msgid "JavaScript warning"
7435
  msgstr ""
7436
 
7437
+ #: src/admin.php:828, src/admin.php:3151
7438
  msgid "Delete Old Directories"
7439
  msgstr ""
7440
 
7441
+ #: src/admin.php:2638
7442
  msgid "Current limit is:"
7443
  msgstr ""
7444
 
7445
+ #: src/admin.php:2613
7446
  msgid "Your backup has been restored."
7447
  msgstr ""
7448
 
7458
  msgid "UpdraftPlus.Com"
7459
  msgstr ""
7460
 
7461
+ #: src/admin.php:5053
7462
  msgid "Your settings have been wiped."
7463
  msgstr ""
7464
 
7465
+ #: src/admin.php:2573
7466
  msgid "Backup directory successfully created."
7467
  msgstr ""
7468
 
7469
+ #: src/admin.php:2566
7470
  msgid "Backup directory could not be created"
7471
  msgstr ""
7472
 
7473
+ #: src/admin.php:3431
7474
  msgid "Old directory removal failed for some reason. You may want to do this manually."
7475
  msgstr ""
7476
 
7477
+ #: src/admin.php:3429
7478
  msgid "Old directories successfully removed."
7479
  msgstr ""
7480
 
7481
+ #: src/admin.php:3426, src/admin.php:3426
7482
  msgid "Remove old directories"
7483
  msgstr ""
7484
 
7485
  #: src/addons/migrator.php:340, src/addons/migrator.php:355,
7486
+ #: src/admin.php:2514, src/admin.php:2524, src/admin.php:2533,
7487
+ #: src/admin.php:2575, src/admin.php:3433
7488
  msgid "Return to UpdraftPlus Configuration"
7489
  msgstr ""
7490
 
7491
+ #: src/admin.php:821, src/admin.php:2514, src/admin.php:2524,
7492
+ #: src/admin.php:2533, src/admin.php:2575, src/admin.php:3433,
7493
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7494
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7495
  msgid "Actions"
7496
  msgstr ""
7497
 
7498
+ #: src/admin.php:2409
7499
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
7500
  msgstr ""
7501
 
7502
+ #: src/admin.php:2309
7503
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
7504
  msgstr ""
7505
 
7506
+ #: src/admin.php:2205
7507
  msgid "No local copy present."
7508
  msgstr ""
7509
 
7510
+ #: src/admin.php:2202
7511
  msgid "Download in progress"
7512
  msgstr ""
7513
 
7514
+ #: src/admin.php:820, src/admin.php:2191
7515
  msgid "File ready."
7516
  msgstr ""
7517
 
7518
+ #: src/admin.php:2172
7519
  msgid "Download failed"
7520
  msgstr ""
7521
 
7522
+ #: src/addons/wp-cli.php:518, src/admin.php:818,
7523
+ #: src/class-updraftplus.php:1298, src/class-updraftplus.php:1342,
7524
  #: src/includes/class-filesystem-functions.php:368,
7525
  #: src/includes/class-storage-methods-interface.php:324,
7526
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
7530
  msgid "Error"
7531
  msgstr ""
7532
 
7533
+ #: src/admin.php:1959
7534
  msgid "Could not find that job - perhaps it has already finished?"
7535
  msgstr ""
7536
 
7537
+ #: src/admin.php:1951
7538
  msgid "Job deleted"
7539
  msgstr ""
7540
 
7541
+ #: src/admin.php:2050, src/includes/class-commands.php:833
7542
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
7543
  msgstr ""
7544
 
7545
+ #: src/admin.php:895
7546
  msgid "Nothing yet logged"
7547
  msgstr ""
7548
 
7549
+ #: src/admin.php:1163
7550
  msgid "Please consult this FAQ if you have problems backing up."
7551
  msgstr ""
7552
 
7553
+ #: src/admin.php:1163
7554
  msgid "Your website is hosted using the %s web server."
7555
  msgstr ""
7556
 
7557
+ #: src/admin.php:1159
7558
  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."
7559
  msgstr ""
7560
 
7561
+ #: src/admin.php:1155
7562
  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."
7563
  msgstr ""
7564
 
7565
+ #: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1147,
7566
+ #: src/admin.php:1151, src/admin.php:1155, src/admin.php:1159,
7567
+ #: src/admin.php:1163, src/admin.php:1172, src/admin.php:3909,
7568
+ #: src/admin.php:3916, src/admin.php:3918, src/admin.php:5344,
7569
  #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
7570
  #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
7571
  #: src/methods/s3.php:859, src/methods/s3.php:863,
7576
  msgid "Warning"
7577
  msgstr ""
7578
 
7579
+ #: src/admin.php:1092
7580
  msgid "Add-Ons / Pro Support"
7581
  msgstr ""
7582
 
7583
+ #: src/admin.php:679, src/admin.php:1090, src/admin.php:2800
7584
  msgid "Settings"
7585
  msgstr ""
7586
 
7600
  msgid "Like UpdraftPlus and can spare one minute?"
7601
  msgstr ""
7602
 
7603
+ #: src/addons/azure.php:268, src/class-updraftplus.php:3636,
7604
+ #: src/methods/googledrive.php:1120, src/methods/s3.php:341
7605
  msgid "File not found"
7606
  msgstr ""
7607
 
7609
  msgid "The decryption key used:"
7610
  msgstr ""
7611
 
7612
+ #: src/class-updraftplus.php:3843,
7613
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
7614
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
7615
  msgstr ""
7616
 
7617
+ #: src/class-updraftplus.php:3831,
7618
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
7619
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
7620
  msgstr ""
7623
  msgid "Could not open the backup file for writing"
7624
  msgstr ""
7625
 
7626
+ #: src/class-updraftplus.php:3408
7627
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
7628
  msgstr ""
7629
 
7630
+ #: src/class-updraftplus.php:3392
7631
  msgid "Could not read the directory"
7632
  msgstr ""
7633
 
7634
+ #: src/admin.php:2251, src/backup.php:1359
7635
  msgid "Backup directory (%s) is not writable, or does not exist."
7636
  msgstr ""
7637
 
7639
  msgid "WordPress backup is complete"
7640
  msgstr ""
7641
 
7642
+ #: src/class-updraftplus.php:2998
7643
  msgid "The backup attempt has finished, apparently unsuccessfully"
7644
  msgstr ""
7645
 
7646
+ #: src/class-updraftplus.php:2980
7647
  msgid "The backup apparently succeeded and is now complete"
7648
  msgstr ""
7649
 
7651
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
7652
  msgstr ""
7653
 
7654
+ #: src/class-updraftplus.php:2680
7655
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
7656
  msgstr ""
7657
 
7658
+ #: src/class-updraftplus.php:1796
7659
  msgid "Others"
7660
  msgstr ""
7661
 
7662
+ #: src/addons/multisite.php:500, src/class-updraftplus.php:1781
7663
  msgid "Uploads"
7664
  msgstr ""
7665
 
7666
+ #: src/class-updraftplus.php:1780
7667
  msgid "Themes"
7668
  msgstr ""
7669
 
7670
+ #: src/class-updraftplus.php:1779
7671
  msgid "Plugins"
7672
  msgstr ""
7673
 
7674
+ #: src/class-updraftplus.php:624
7675
  msgid "No log files were found."
7676
  msgstr ""
7677
 
7678
+ #: src/admin.php:2121, src/admin.php:2125, src/class-updraftplus.php:619
7679
  msgid "The log file could not be read."
7680
  msgstr ""
7681
 
7682
+ #: src/admin.php:1192, src/admin.php:1213, src/admin.php:1232,
7683
+ #: src/class-updraftplus.php:584, src/class-updraftplus.php:619,
7684
+ #: src/class-updraftplus.php:624, src/class-updraftplus.php:629
7685
  msgid "UpdraftPlus notice:"
7686
  msgstr ""
7687
 
languages/updraftplus-bn_BD.po CHANGED
@@ -11,6 +11,10 @@ msgstr ""
11
  "Language: bn\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
14
  #: src/udaddons/updraftplus-addons.php:268,
15
  #: src/udaddons/updraftplus-addons.php:280
16
  msgid "go here"
@@ -25,7 +29,7 @@ msgstr ""
25
  msgid "Authentication"
26
  msgstr ""
27
 
28
- #: src/admin.php:924
29
  msgid "You must select at least one remote storage destination to upload this backup set to."
30
  msgstr ""
31
 
@@ -45,11 +49,11 @@ msgstr ""
45
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
46
  msgstr ""
47
 
48
- #: src/admin.php:951
49
  msgid "UpdraftClone key is required."
50
  msgstr ""
51
 
52
- #: src/admin.php:942
53
  msgid "The preparation of the clone data has been aborted."
54
  msgstr ""
55
 
@@ -69,7 +73,7 @@ msgstr ""
69
  msgid "Your database user does not have permission to drop tables"
70
  msgstr ""
71
 
72
- #: src/admin.php:2960
73
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
74
  msgstr ""
75
 
@@ -237,39 +241,39 @@ msgstr ""
237
  msgid "WordPress installed"
238
  msgstr ""
239
 
240
- #: src/admin.php:5422
241
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
242
  msgstr ""
243
 
244
- #: src/admin.php:3826
245
  msgid "Exclude these from"
246
  msgstr ""
247
 
248
- #: src/admin.php:950
249
  msgid "The exclusion rule which you are trying to add already exists"
250
  msgstr ""
251
 
252
- #: src/admin.php:949
253
  msgid "Please enter a valid file name prefix"
254
  msgstr ""
255
 
256
- #: src/admin.php:948
257
  msgid "Please enter characters that begin the filename which you would like to exclude"
258
  msgstr ""
259
 
260
- #: src/admin.php:947
261
  msgid "Please enter a valid file extension"
262
  msgstr ""
263
 
264
- #: src/admin.php:946
265
  msgid "Please enter a file extension, like zip"
266
  msgstr ""
267
 
268
- #: src/admin.php:945
269
  msgid "Please select a file/folder which you would like to exclude"
270
  msgstr ""
271
 
272
- #: src/admin.php:944
273
  msgid "Are you sure you want to remove this exclusion rule?"
274
  msgstr ""
275
 
@@ -293,15 +297,15 @@ msgstr ""
293
  msgid "failed to upload file to %s (see log file for more)"
294
  msgstr ""
295
 
296
- #: src/admin.php:5418
297
  msgid "Dashboard:"
298
  msgstr ""
299
 
300
- #: src/admin.php:5417
301
  msgid "Front page:"
302
  msgstr ""
303
 
304
- #: src/admin.php:5416
305
  msgid "Your clone has started and will be available at the following URLs once it is ready."
306
  msgstr ""
307
 
@@ -313,11 +317,11 @@ msgstr ""
313
  msgid "Current clones"
314
  msgstr ""
315
 
316
- #: src/class-updraftplus.php:3045
317
  msgid "Your clone will now deploy this data to re-create your site."
318
  msgstr ""
319
 
320
- #: src/admin.php:941
321
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
322
  msgstr ""
323
 
@@ -363,7 +367,7 @@ msgstr ""
363
  msgid "Unable to get renew date"
364
  msgstr ""
365
 
366
- #: src/admin.php:904
367
  msgid "The backup was aborted"
368
  msgstr ""
369
 
@@ -617,7 +621,7 @@ msgstr ""
617
  msgid "You can buy more temporary clone tokens here."
618
  msgstr ""
619
 
620
- #: src/admin.php:5373
621
  msgid "Forbid non-administrators to login to WordPress on your clone"
622
  msgstr ""
623
 
@@ -633,23 +637,23 @@ msgstr ""
633
  msgid "Other great plugins"
634
  msgstr ""
635
 
636
- #: src/admin.php:5420, src/admin.php:5423
637
  msgid "You can find your temporary clone information in your updraftplus.com account here."
638
  msgstr ""
639
 
640
- #: src/class-updraftplus.php:4310
641
  msgid "Choose a default for each table"
642
  msgstr ""
643
 
644
- #: src/admin.php:3274
645
  msgid "Sending files to remote site"
646
  msgstr ""
647
 
648
- #: src/admin.php:3269
649
  msgid "Clone server being provisioned and booted (can take several minutes)"
650
  msgstr ""
651
 
652
- #: src/admin.php:940
653
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
654
  msgstr ""
655
 
@@ -657,11 +661,11 @@ msgstr ""
657
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
658
  msgstr ""
659
 
660
- #: src/admin.php:2796
661
  msgid "Backup / Restore"
662
  msgstr ""
663
 
664
- #: src/admin.php:661
665
  msgid "Backup"
666
  msgstr ""
667
 
@@ -733,11 +737,11 @@ msgstr ""
733
  msgid "More information here."
734
  msgstr ""
735
 
736
- #: src/admin.php:669, src/admin.php:2797
737
  msgid "Migrate / Clone"
738
  msgstr ""
739
 
740
- #: src/admin.php:3034, src/admin.php:3959,
741
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
742
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
743
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
@@ -759,25 +763,25 @@ msgstr ""
759
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
760
  msgstr ""
761
 
762
- #: src/class-updraftplus.php:187
763
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
764
  msgstr ""
765
 
766
- #: src/admin.php:5396
767
  msgid "(current version)"
768
  msgstr ""
769
 
770
- #: src/admin.php:3736
771
  msgid "press here"
772
  msgstr ""
773
 
774
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
775
- #: src/methods/googledrive.php:1206
776
  msgid "this privacy policy"
777
  msgstr ""
778
 
779
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
780
- #: src/methods/googledrive.php:1206
781
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
782
  msgstr ""
783
 
@@ -801,7 +805,7 @@ msgstr ""
801
  msgid "Available temporary clone tokens:"
802
  msgstr ""
803
 
804
- #: src/admin.php:2884, src/includes/class-commands.php:901,
805
  #: src/includes/class-commands.php:949,
806
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
807
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
@@ -820,7 +824,7 @@ msgstr ""
820
  msgid "I consent to %s"
821
  msgstr ""
822
 
823
- #: src/admin.php:2982,
824
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
825
  msgid "One Time Password (check your OTP app to get this password)"
826
  msgstr ""
@@ -869,74 +873,74 @@ msgstr ""
869
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
870
  msgstr ""
871
 
872
- #: src/admin.php:5342
873
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
874
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
875
  msgstr[0] ""
876
  msgstr[1] ""
877
 
878
- #: src/admin.php:938
879
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
880
  msgstr ""
881
 
882
- #: src/admin.php:937
883
  msgid "You can also close this wizard."
884
  msgstr ""
885
 
886
- #: src/admin.php:936
887
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
888
  msgstr ""
889
 
890
- #: src/admin.php:935
891
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
892
  msgstr ""
893
 
894
- #: src/admin.php:934
895
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
896
  msgstr ""
897
 
898
- #: src/admin.php:933
899
  msgid "Perhaps you would want to login instead."
900
  msgstr ""
901
 
902
- #: src/admin.php:932
903
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
904
  msgstr ""
905
 
906
- #: src/admin.php:931
907
  msgid "An email is required and needs to be in a valid format."
908
  msgstr ""
909
 
910
- #: src/admin.php:930
911
  msgid "Both email and password fields are required."
912
  msgstr ""
913
 
914
- #: src/admin.php:929
915
  msgid "Registration successful."
916
  msgstr ""
917
 
918
- #: src/admin.php:928, src/admin.php:929
919
  msgid "Please follow this link to open %s in a new window."
920
  msgstr ""
921
 
922
- #: src/admin.php:928
923
  msgid "Login successful."
924
  msgstr ""
925
 
926
- #: src/admin.php:927,
927
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
928
  msgid "UpdraftCentral Cloud"
929
  msgstr ""
930
 
931
- #: src/admin.php:487
932
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
933
  msgstr ""
934
 
935
- #: src/admin.php:486
936
  msgid "Dismiss all UpdraftPlus news"
937
  msgstr ""
938
 
939
- #: src/admin.php:485
940
  msgid "UpdraftPlus News"
941
  msgstr ""
942
 
@@ -960,7 +964,7 @@ msgstr ""
960
  msgid "Azure Account"
961
  msgstr ""
962
 
963
- #: src/admin.php:926
964
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
965
  msgstr ""
966
 
@@ -972,23 +976,23 @@ msgstr ""
972
  msgid "Upload backup"
973
  msgstr ""
974
 
975
- #: src/admin.php:4246
976
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
977
  msgstr ""
978
 
979
- #: src/admin.php:925
980
  msgid "(already uploaded)"
981
  msgstr ""
982
 
983
- #: src/admin.php:923
984
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
985
  msgstr ""
986
 
987
- #: src/admin.php:844, src/admin.php:4246
988
  msgid "Upload"
989
  msgstr ""
990
 
991
- #: src/addons/reporting.php:529, src/admin.php:794
992
  msgid "Only email the database backup"
993
  msgstr ""
994
 
@@ -1058,7 +1062,7 @@ msgstr ""
1058
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1059
  msgstr ""
1060
 
1061
- #: src/includes/class-remote-send.php:437
1062
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1063
  msgstr ""
1064
 
@@ -1090,7 +1094,7 @@ msgstr ""
1090
  msgid "Thank you for installing UpdraftPlus!"
1091
  msgstr ""
1092
 
1093
- #: src/includes/class-remote-send.php:531
1094
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1095
  msgstr ""
1096
 
@@ -1118,11 +1122,11 @@ msgstr ""
1118
  msgid "Ensure you are logged into the correct account before continuing."
1119
  msgstr ""
1120
 
1121
- #: src/admin.php:4984
1122
  msgid "Remote storage method and instance id are required for authentication."
1123
  msgstr ""
1124
 
1125
- #: src/admin.php:4980
1126
  msgid "authentication error"
1127
  msgstr ""
1128
 
@@ -1150,11 +1154,11 @@ msgstr ""
1150
  msgid "Delete these settings"
1151
  msgstr ""
1152
 
1153
- #: src/addons/morestorage.php:81, src/admin.php:922
1154
  msgid "Currently disabled"
1155
  msgstr ""
1156
 
1157
- #: src/addons/morestorage.php:81, src/admin.php:921
1158
  msgid "Currently enabled"
1159
  msgstr ""
1160
 
@@ -1200,15 +1204,15 @@ msgid_plural "Requested table collations (%1$s) are not present - changing to %2
1200
  msgstr[0] ""
1201
  msgstr[1] ""
1202
 
1203
- #: src/class-updraftplus.php:4287
1204
  msgid "Your chosen replacement collation"
1205
  msgstr ""
1206
 
1207
- #: src/class-updraftplus.php:4264
1208
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1209
  msgstr ""
1210
 
1211
- #: src/class-updraftplus.php:4264
1212
  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."
1213
  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."
1214
  msgstr[0] ""
@@ -1276,15 +1280,15 @@ msgstr[1] ""
1276
  msgid "Requested table character set (%s) is not present - changing to %s."
1277
  msgstr ""
1278
 
1279
- #: src/class-updraftplus.php:4240
1280
  msgid "Your chosen character set to use instead:"
1281
  msgstr ""
1282
 
1283
- #: src/class-updraftplus.php:4230
1284
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1285
  msgstr ""
1286
 
1287
- #: src/class-updraftplus.php:4230
1288
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1289
  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."
1290
  msgstr[0] ""
@@ -1334,7 +1338,7 @@ msgstr ""
1334
  msgid "You now need to copy the key below and enter it at your %s."
1335
  msgstr ""
1336
 
1337
- #: src/admin.php:916
1338
  msgid "Please enter a valid URL e.g http://example.com"
1339
  msgstr ""
1340
 
@@ -1374,27 +1378,27 @@ msgstr ""
1374
  msgid "Account ID"
1375
  msgstr ""
1376
 
1377
- #: src/class-updraftplus.php:4069
1378
  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."
1379
  msgstr ""
1380
 
1381
- #: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
1382
  msgid "the migrator add-on"
1383
  msgstr ""
1384
 
1385
- #: src/class-updraftplus.php:4067
1386
  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."
1387
  msgstr ""
1388
 
1389
- #: src/class-updraftplus.php:4065
1390
  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."
1391
  msgstr ""
1392
 
1393
- #: src/class-updraftplus.php:4060
1394
  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."
1395
  msgstr ""
1396
 
1397
- #: src/methods/googledrive.php:1275
1398
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1399
  msgstr ""
1400
 
@@ -1402,18 +1406,18 @@ msgstr ""
1402
  msgid "Follow this link to remove these settings for %s."
1403
  msgstr ""
1404
 
1405
- #: src/admin.php:895
1406
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1407
  msgstr ""
1408
 
1409
- #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
1410
- #: src/class-updraftplus.php:2252,
1411
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1412
  msgid "A PHP fatal error (%s) has occurred: %s"
1413
  msgstr ""
1414
 
1415
- #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
1416
- #: src/class-updraftplus.php:2245,
1417
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1418
  msgid "A PHP exception (%s) has occurred: %s"
1419
  msgstr ""
@@ -1467,11 +1471,11 @@ msgstr ""
1467
  msgid "Instant and secure logon with a wave of your phone."
1468
  msgstr ""
1469
 
1470
- #: src/admin.php:5190
1471
  msgid "Value"
1472
  msgstr ""
1473
 
1474
- #: src/admin.php:1779
1475
  msgid "Did not know how to delete from this cloud service."
1476
  msgstr ""
1477
 
@@ -1487,11 +1491,11 @@ msgstr ""
1487
  msgid "Cloud Files"
1488
  msgstr ""
1489
 
1490
- #: src/admin.php:4932
1491
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1492
  msgstr ""
1493
 
1494
- #: src/admin.php:4891
1495
  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."
1496
  msgstr ""
1497
 
@@ -1508,43 +1512,43 @@ msgstr ""
1508
  msgid "Extra database"
1509
  msgstr ""
1510
 
1511
- #: src/admin.php:4102
1512
  msgid "Press here to download or browse"
1513
  msgstr ""
1514
 
1515
- #: src/admin.php:1332, src/admin.php:1342
1516
  msgid "Error: invalid path"
1517
  msgstr ""
1518
 
1519
- #: src/admin.php:1131
1520
  msgid "An error occurred when fetching storage module options: "
1521
  msgstr ""
1522
 
1523
- #: src/admin.php:913
1524
  msgid "Loading log file"
1525
  msgstr ""
1526
 
1527
- #: src/admin.php:912
1528
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1529
  msgstr ""
1530
 
1531
- #: src/admin.php:911
1532
  msgid "Search"
1533
  msgstr ""
1534
 
1535
- #: src/admin.php:910
1536
  msgid "Select a file to view information about it"
1537
  msgstr ""
1538
 
1539
- #: src/admin.php:909
1540
  msgid "Browsing zip file"
1541
  msgstr ""
1542
 
1543
- #: src/admin.php:876
1544
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1545
  msgstr ""
1546
 
1547
- #: src/admin.php:822
1548
  msgid "Browse contents"
1549
  msgstr ""
1550
 
@@ -1552,43 +1556,43 @@ msgstr ""
1552
  msgid "Skipped tables:"
1553
  msgstr ""
1554
 
1555
- #: src/class-updraftplus.php:4365
1556
  msgid "This database backup has the following WordPress tables excluded: %s"
1557
  msgstr ""
1558
 
1559
- #: src/admin.php:3020
1560
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1561
  msgstr ""
1562
 
1563
- #: src/admin.php:3020
1564
  msgid "All WordPress tables will be backed up."
1565
  msgstr ""
1566
 
1567
- #: src/admin.php:908
1568
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1569
  msgstr ""
1570
 
1571
- #: src/admin.php:908
1572
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1573
  msgstr ""
1574
 
1575
- #: src/admin.php:908
1576
  msgid "The available memory on the server."
1577
  msgstr ""
1578
 
1579
- #: src/admin.php:908
1580
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1581
  msgstr ""
1582
 
1583
- #: src/admin.php:908
1584
  msgid "The file failed to upload. Please check the following:"
1585
  msgstr ""
1586
 
1587
- #: src/admin.php:907
1588
  msgid "HTTP code:"
1589
  msgstr ""
1590
 
1591
- #: src/addons/wp-cli.php:109, src/admin.php:799
1592
  msgid "You have chosen to backup a database, but no tables have been selected"
1593
  msgstr ""
1594
 
@@ -1738,7 +1742,7 @@ msgstr ""
1738
  msgid "Free"
1739
  msgstr ""
1740
 
1741
- #: src/admin.php:484
1742
  msgid "UpdraftPlus"
1743
  msgstr ""
1744
 
@@ -2013,7 +2017,7 @@ msgstr ""
2013
  msgid "Backup of: %s"
2014
  msgstr ""
2015
 
2016
- #: src/methods/googledrive.php:270
2017
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2018
  msgstr ""
2019
 
@@ -2037,11 +2041,11 @@ msgstr ""
2037
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2038
  msgstr ""
2039
 
2040
- #: src/admin.php:1862
2041
  msgid "Remote files deleted:"
2042
  msgstr ""
2043
 
2044
- #: src/admin.php:1861
2045
  msgid "Local files deleted:"
2046
  msgstr ""
2047
 
@@ -2049,39 +2053,39 @@ msgstr ""
2049
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2050
  msgstr ""
2051
 
2052
- #: src/admin.php:906
2053
  msgid "remote files deleted"
2054
  msgstr ""
2055
 
2056
- #: src/admin.php:902
2057
  msgid "Complete"
2058
  msgstr ""
2059
 
2060
- #: src/admin.php:901
2061
  msgid "Do you want to carry out the import?"
2062
  msgstr ""
2063
 
2064
- #: src/admin.php:900
2065
  msgid "Which was exported on:"
2066
  msgstr ""
2067
 
2068
- #: src/admin.php:899
2069
  msgid "This will import data from:"
2070
  msgstr ""
2071
 
2072
- #: src/admin.php:898
2073
  msgid "Importing..."
2074
  msgstr ""
2075
 
2076
- #: src/admin.php:894
2077
  msgid "You have not yet selected a file to import."
2078
  msgstr ""
2079
 
2080
- #: src/admin.php:878
2081
  msgid "Your export file will be of your displayed settings, not your saved ones."
2082
  msgstr ""
2083
 
2084
- #: src/admin.php:89
2085
  msgid "template not found"
2086
  msgstr ""
2087
 
@@ -2097,16 +2101,16 @@ msgstr ""
2097
  msgid "Account is not authorized (%s)."
2098
  msgstr ""
2099
 
2100
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
2101
  msgid "Your IP address:"
2102
  msgstr "আপনার আইপি অ্যাড্রেসঃ"
2103
 
2104
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
2105
- #: src/udaddons/updraftplus-addons.php:903
2106
  msgid "To remove any block, please go here."
2107
  msgstr "কোন ব্লক সরাতে এখানে যান।"
2108
 
2109
- #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
2110
  msgid "An error response was received; HTTP code:"
2111
  msgstr ""
2112
 
@@ -2122,15 +2126,15 @@ msgstr "অথবা ম্যানুয়ালি পুনরুদ্ধা
2122
  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"
2123
  msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
2124
 
2125
- #: src/admin.php:2607
2126
  msgid "To fix this problem go here."
2127
  msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
2128
 
2129
- #: src/admin.php:2607
2130
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2131
  msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
2132
 
2133
- #: src/admin.php:862
2134
  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."
2135
  msgstr "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
2136
 
@@ -2158,7 +2162,7 @@ msgstr "প্রোটোকল (SSL অথবা SSL না)"
2158
  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."
2159
  msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ করার মাধ্যমে সৃষ্ট। আপনি যদি বিস্তারিত না জানেন, তাহলে আপনার WebDAV প্রোভাইডারকে জিজ্ঞেস করুন।"
2160
 
2161
- #: src/udaddons/updraftplus-addons.php:906
2162
  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."
2163
  msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
2164
 
@@ -2252,7 +2256,7 @@ msgstr "পূর্বেই ঠিক করা নামটি লিখু
2252
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2253
  msgstr ""
2254
 
2255
- #: src/methods/googledrive.php:530
2256
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2257
  msgstr "আপলোড সফল হবে নাঃ যেকোন একটি ফাইলের %s লিমিট হচ্ছে %s, যেখনে এই ফাইলের সাইজ হচ্ছে %s GB (%d bytes)"
2258
 
@@ -2273,7 +2277,7 @@ msgstr ""
2273
  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."
2274
  msgstr ""
2275
 
2276
- #: src/class-updraftplus.php:1793
2277
  msgid "Size: %s MB"
2278
  msgstr "সাইজঃ %s MB"
2279
 
@@ -2281,7 +2285,7 @@ msgstr "সাইজঃ %s MB"
2281
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2282
  msgstr ""
2283
 
2284
- #: src/class-updraftplus.php:4086, src/restorer.php:1446
2285
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2286
  msgstr ""
2287
 
@@ -2303,7 +2307,7 @@ msgstr "অথবা (বাৎসরিক মূল্যছাড়)"
2303
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2304
  msgstr "এই সাইটের জন্য কোন ভল্ট কানেকশন পাওয়া যায়নি (এটা কি স্থানান্তর করা হয়েছে?), দয়া করে ডিসকানেক্ট করে আবার কানেক্ট করুন।"
2305
 
2306
- #: src/class-updraftplus.php:583, src/class-updraftplus.php:628
2307
  msgid "The given file was not found, or could not be read."
2308
  msgstr "প্রদত্ত ফাইল পাওয়া যায়নি অথবা পড়া সম্ভব হয়নি।"
2309
 
@@ -2387,23 +2391,23 @@ msgstr ""
2387
  msgid "UpdraftCentral Connection"
2388
  msgstr ""
2389
 
2390
- #: src/backup.php:1042, src/class-updraftplus.php:3026
2391
  msgid "The backup was aborted by the user"
2392
  msgstr ""
2393
 
2394
- #: src/admin.php:4927
2395
  msgid "Your settings have been saved."
2396
  msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
2397
 
2398
- #: src/admin.php:4007
2399
  msgid "Total backup size:"
2400
  msgstr ""
2401
 
2402
- #: src/admin.php:3414
2403
  msgid "stop"
2404
  msgstr ""
2405
 
2406
- #: src/admin.php:903, src/admin.php:3207
2407
  msgid "The backup has finished running"
2408
  msgstr ""
2409
 
@@ -2429,27 +2433,27 @@ msgstr "এই ব্যাকআপ সেট"
2429
  msgid "calculate"
2430
  msgstr "গণনা করুন"
2431
 
2432
- #: src/admin.php:877
2433
  msgid "You should save your changes to ensure that they are used for making your backup."
2434
  msgstr ""
2435
 
2436
- #: src/admin.php:870
2437
  msgid "We requested to delete the file, but could not understand the server's response"
2438
  msgstr ""
2439
 
2440
- #: src/admin.php:869
2441
  msgid "Please enter a valid URL"
2442
  msgstr "দয়া করে সঠিক URL প্রবেশ করান"
2443
 
2444
- #: src/admin.php:852
2445
  msgid "Saving..."
2446
  msgstr "সংরক্ষণ হচ্ছে..."
2447
 
2448
- #: src/admin.php:813
2449
  msgid "Error: the server sent us a response which we did not understand."
2450
  msgstr ""
2451
 
2452
- #: src/admin.php:805
2453
  msgid "Fetching..."
2454
  msgstr "আনা হচ্ছে..."
2455
 
@@ -2465,24 +2469,24 @@ msgstr ""
2465
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2466
  msgstr ""
2467
 
2468
- #: src/class-updraftplus.php:4138, src/restorer.php:2227
2469
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2470
  msgstr ""
2471
 
2472
- #: src/class-updraftplus.php:4134
2473
  msgid "Please read this link for important information on this process."
2474
  msgstr ""
2475
 
2476
- #: src/class-updraftplus.php:4134
2477
  msgid "It will be imported as a new site."
2478
  msgstr ""
2479
 
2480
- #: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
2481
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2482
  msgid "Dismiss"
2483
  msgstr "খারিজ"
2484
 
2485
- #: src/admin.php:889
2486
  msgid "Please fill in the required information."
2487
  msgstr ""
2488
 
@@ -2543,7 +2547,7 @@ msgstr ""
2543
  msgid "Call WordPress action:"
2544
  msgstr ""
2545
 
2546
- #: src/admin.php:3030
2547
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2548
  msgstr ""
2549
 
@@ -2575,76 +2579,76 @@ msgstr ""
2575
  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)."
2576
  msgstr ""
2577
 
2578
- #: src/admin.php:4801
2579
  msgid "Send this backup to remote storage"
2580
  msgstr ""
2581
 
2582
- #: src/admin.php:4799
2583
  msgid "Check out UpdraftPlus Vault."
2584
  msgstr ""
2585
 
2586
- #: src/admin.php:4799
2587
  msgid "Not got any remote storage?"
2588
  msgstr ""
2589
 
2590
- #: src/admin.php:4799
2591
  msgid "settings"
2592
  msgstr "সেটিংস"
2593
 
2594
- #: src/admin.php:4799
2595
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2596
  msgstr ""
2597
 
2598
- #: src/admin.php:3028
2599
  msgid "Include any files in the backup"
2600
  msgstr ""
2601
 
2602
- #: src/admin.php:3012
2603
  msgid "Include the database in the backup"
2604
  msgstr ""
2605
 
2606
- #: src/admin.php:2839
2607
  msgid "Continue restoration"
2608
  msgstr ""
2609
 
2610
- #: src/admin.php:2834
2611
  msgid "You have an unfinished restoration operation, begun %s ago."
2612
  msgstr ""
2613
 
2614
- #: src/admin.php:2833
2615
  msgid "Unfinished restoration"
2616
  msgstr ""
2617
 
2618
- #: src/admin.php:2831
2619
  msgid "%s minutes, %s seconds"
2620
  msgstr ""
2621
 
2622
- #: src/admin.php:2697
2623
  msgid "Backup Contents And Schedule"
2624
  msgstr ""
2625
 
2626
- #: src/admin.php:2800
2627
  msgid "Premium / Extensions"
2628
  msgstr ""
2629
 
2630
- #: src/admin.php:2474, src/admin.php:2483
2631
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2632
  msgstr ""
2633
 
2634
- #: src/addons/morefiles.php:71, src/admin.php:875
2635
  msgctxt "(verb)"
2636
  msgid "Download"
2637
  msgstr ""
2638
 
2639
- #: src/admin.php:798
2640
  msgid "You have chosen to backup files, but no file entities have been selected"
2641
  msgstr ""
2642
 
2643
- #: src/admin.php:693
2644
  msgid "Extensions"
2645
  msgstr ""
2646
 
2647
- #: src/admin.php:685, src/admin.php:2799
2648
  msgid "Advanced Tools"
2649
  msgstr ""
2650
 
@@ -2763,7 +2767,7 @@ msgstr ""
2763
  msgid "Could not access container"
2764
  msgstr ""
2765
 
2766
- #: src/class-updraftplus.php:3045
2767
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
2768
  msgstr ""
2769
 
@@ -2893,35 +2897,35 @@ msgstr ""
2893
  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)."
2894
  msgstr ""
2895
 
2896
- #: src/admin.php:1860
2897
  msgid "Backup sets removed:"
2898
  msgstr ""
2899
 
2900
- #: src/admin.php:888
2901
  msgid "Processing..."
2902
  msgstr ""
2903
 
2904
- #: src/admin.php:886
2905
  msgid "For backups older than"
2906
  msgstr ""
2907
 
2908
- #: src/admin.php:885
2909
  msgid "week(s)"
2910
  msgstr ""
2911
 
2912
- #: src/admin.php:884
2913
  msgid "hour(s)"
2914
  msgstr ""
2915
 
2916
- #: src/admin.php:883
2917
  msgid "day(s)"
2918
  msgstr ""
2919
 
2920
- #: src/admin.php:882
2921
  msgid "in the month"
2922
  msgstr ""
2923
 
2924
- #: src/admin.php:881
2925
  msgid "day"
2926
  msgstr ""
2927
 
@@ -2945,15 +2949,15 @@ msgstr ""
2945
  msgid "You do not currently have any UpdraftPlus Vault quota"
2946
  msgstr ""
2947
 
2948
- #: src/class-updraftplus.php:4209
2949
  msgid "You must upgrade MySQL to be able to use this database."
2950
  msgstr ""
2951
 
2952
- #: src/class-updraftplus.php:4209
2953
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
2954
  msgstr ""
2955
 
2956
- #: src/admin.php:2592
2957
  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."
2958
  msgstr ""
2959
 
@@ -2981,11 +2985,11 @@ msgstr "সার্ভার সাইড এনক্রিপশন"
2981
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
2982
  msgstr ""
2983
 
2984
- #: src/admin.php:1190
2985
  msgid "Go to the remote storage settings in order to connect."
2986
  msgstr ""
2987
 
2988
- #: src/admin.php:1190
2989
  msgid "%s has been chosen for remote storage, but you are not currently connected."
2990
  msgstr ""
2991
 
@@ -2993,19 +2997,19 @@ msgstr ""
2993
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
2994
  msgstr "পেমেন্ট ইউএস ডলার, ইউরো বা GB pounds sterling এর মাধ্যমে কার্ড বা পেপ্যাল এর দ্বারা করতে হবে।"
2995
 
2996
- #: src/admin.php:858
2997
  msgid "Update quota count"
2998
  msgstr " প্রাপ্য সংখ্যা হালনাগাদ"
2999
 
3000
- #: src/admin.php:857
3001
  msgid "Counting..."
3002
  msgstr "গণনা করা হচ্ছে..."
3003
 
3004
- #: src/admin.php:856
3005
  msgid "Disconnecting..."
3006
  msgstr "সংযোগ বিচ্ছিন্ন করা হচ্ছে..."
3007
 
3008
- #: src/admin.php:854
3009
  msgid "Connecting..."
3010
  msgstr "সংযোগ করা হচ্ছে..."
3011
 
@@ -3031,7 +3035,7 @@ msgstr "আপনি এখান থেকে আরও প্রাপ্য
3031
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3032
  msgstr "%s ইরোর: আপনার যথেষ্ট প্রাপ্য(%s) নেই আর্কাইভটি(%s) আপলোড করার জন্য।"
3033
 
3034
- #: src/admin.php:855, src/methods/updraftvault.php:392,
3035
  #: src/methods/updraftvault.php:450
3036
  msgid "Disconnect"
3037
  msgstr "সংযোগ বিচ্ছিন্ন করুন"
@@ -3149,15 +3153,15 @@ msgstr "এই অনুমতি ছাড়া আপনি সরাসরি U
3149
  msgid "Allow download"
3150
  msgstr "ডাউনলোড এর অনুমতি দিন"
3151
 
3152
- #: src/includes/class-remote-send.php:313
3153
  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."
3154
  msgstr ""
3155
 
3156
- #: src/admin.php:864, src/includes/class-remote-send.php:298
3157
  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."
3158
  msgstr ""
3159
 
3160
- #: src/includes/class-remote-send.php:540
3161
  msgid "Existing keys"
3162
  msgstr ""
3163
 
@@ -3169,27 +3173,27 @@ msgstr "আপনার নতুন চাবি:"
3169
  msgid "You must copy and paste this key now - it cannot be shown again."
3170
  msgstr ""
3171
 
3172
- #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:437
3173
  msgid "Key created successfully."
3174
  msgstr "চাবি সফলভাবে তৈরি করা হয়েছে।"
3175
 
3176
- #: src/includes/class-remote-send.php:420
3177
  msgid "A key with this name already exists; you must use a unique name."
3178
  msgstr ""
3179
 
3180
- #: src/includes/class-remote-send.php:344
3181
  msgid "Also send this backup to the active remote storage locations"
3182
  msgstr ""
3183
 
3184
- #: src/includes/class-remote-send.php:309
3185
  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."
3186
  msgstr ""
3187
 
3188
- #: src/includes/class-remote-send.php:265
3189
  msgid "site not found"
3190
  msgstr "সাইট খুঁজে পাওয়া যায় নি"
3191
 
3192
- #: src/includes/class-remote-send.php:250
3193
  msgid "Backup data will be sent to:"
3194
  msgstr "ব্যাক তথ্য পাঠানো হবে:"
3195
 
@@ -3209,7 +3213,7 @@ msgstr "ব্যাকআপ তৈরি করেছেন %s"
3209
  msgid "This storage method does not allow downloading"
3210
  msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
3211
 
3212
- #: src/admin.php:4165
3213
  msgid "(backup set imported from remote location)"
3214
  msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
3215
 
@@ -3231,24 +3235,24 @@ msgstr ""
3231
  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."
3232
  msgstr ""
3233
 
3234
- #: src/admin.php:871, src/includes/class-remote-send.php:326
3235
  msgid "Testing connection..."
3236
  msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
3237
 
3238
- #: src/admin.php:868,
3239
  #: src/templates/wp-admin/settings/existing-backups-table.php:161
3240
  msgid "Deleting..."
3241
  msgstr "মুছে ফেলা হচ্ছে..."
3242
 
3243
- #: src/admin.php:867
3244
  msgid "key name"
3245
  msgstr "চাবির(কি) নাম"
3246
 
3247
- #: src/admin.php:865
3248
  msgid "Please give this key a name (e.g. indicate the site it is for):"
3249
  msgstr "এই চাবিকাঠির একটি নাম দিন (e.g. indicate the site it is for):"
3250
 
3251
- #: src/admin.php:862
3252
  msgid "Creating..."
3253
  msgstr "তৈরি করা হচ্ছে..."
3254
 
@@ -3272,42 +3276,42 @@ msgstr ""
3272
  msgid "Send a backup to another site"
3273
  msgstr ""
3274
 
3275
- #: src/admin.php:872, src/includes/class-remote-send.php:357,
3276
- #: src/includes/class-remote-send.php:519
3277
  msgid "Send"
3278
  msgstr "পাঠান"
3279
 
3280
- #: src/admin.php:863, src/includes/class-remote-send.php:513
3281
  msgid "Send to site:"
3282
  msgstr ""
3283
 
3284
- #: src/includes/class-remote-send.php:511
3285
  msgid "No receiving sites have yet been added."
3286
  msgstr "কোন প্রাপ্তির সাইট এখনো যোগ হয়নি"
3287
 
3288
- #: src/includes/class-remote-send.php:492
3289
  msgid "It is for sending backups to the following site: "
3290
  msgstr ""
3291
 
3292
- #: src/includes/class-remote-send.php:492
3293
  msgid "The key was successfully added."
3294
  msgstr ""
3295
 
3296
- #: src/includes/class-remote-send.php:476
3297
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
3298
  msgstr ""
3299
 
3300
- #: src/includes/class-remote-send.php:465,
3301
- #: src/includes/class-remote-send.php:467,
3302
- #: src/includes/class-remote-send.php:471
3303
  msgid "The entered key was corrupt - please try again."
3304
  msgstr ""
3305
 
3306
- #: src/includes/class-remote-send.php:463
3307
  msgid "The entered key was the wrong length - please try again."
3308
  msgstr ""
3309
 
3310
- #: src/includes/class-remote-send.php:453
3311
  msgid "key"
3312
  msgstr "চাবি"
3313
 
@@ -3343,19 +3347,19 @@ msgstr ""
3343
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3344
  msgstr ""
3345
 
3346
- #: src/admin.php:861
3347
  msgid "Resetting..."
3348
  msgstr ""
3349
 
3350
- #: src/addons/migrator.php:1745, src/admin.php:860
3351
  msgid "Add site"
3352
  msgstr "সাইট যুক্ত করুন"
3353
 
3354
- #: src/admin.php:859
3355
  msgid "Adding..."
3356
  msgstr "যুক্ত করা হচ্ছে..."
3357
 
3358
- #: src/udaddons/options.php:294
3359
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
3360
  msgstr ""
3361
 
@@ -3363,15 +3367,15 @@ msgstr ""
3363
  msgid "To use this backup, your database server needs to support the %s character set."
3364
  msgstr ""
3365
 
3366
- #: src/udaddons/updraftplus-addons.php:939
3367
  msgid "go here to change your password on updraftplus.com."
3368
  msgstr "আপনার updraftplus.com এর পাসওয়ার্ডটি পরিবর্তন করতে এখানে যান।"
3369
 
3370
- #: src/udaddons/updraftplus-addons.php:939
3371
  msgid "If you have forgotten your password "
3372
  msgstr "আপনি যদি আপনার পাসওয়ার্ডটি ভুলে গিয়ে থাকেন"
3373
 
3374
- #: src/udaddons/updraftplus-addons.php:938
3375
  msgid "Go here to re-enter your password."
3376
  msgstr "এখানে যান আপনার পাসওয়ার্ডটি পুনরাই দিতে।"
3377
 
@@ -3379,7 +3383,7 @@ msgstr "এখানে যান আপনার পাসওয়ার্ডট
3379
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3380
  msgstr ""
3381
 
3382
- #: src/admin.php:851, src/admin.php:877, src/admin.php:878
3383
  msgid "You have made changes to your settings, and not saved."
3384
  msgstr ""
3385
 
@@ -3392,7 +3396,7 @@ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you
3392
  msgstr ""
3393
 
3394
  #: src/addons/azure.php:605, src/addons/onedrive.php:1148,
3395
- #: src/includes/class-remote-send.php:313
3396
  msgid "For longer help, including screenshots, follow this link."
3397
  msgstr ""
3398
 
@@ -3585,18 +3589,18 @@ msgstr ""
3585
 
3586
  #: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
3587
  #: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
3588
- #: src/udaddons/updraftplus-addons.php:889,
3589
- #: src/udaddons/updraftplus-addons.php:903
3590
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
3591
  msgstr ""
3592
 
3593
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3594
- #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
3595
  msgid "It appears that your web server's IP Address (%s) is blocked."
3596
  msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
3597
 
3598
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3599
- #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:903
3600
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
3601
  msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
3602
 
@@ -3638,7 +3642,7 @@ msgstr ""
3638
  msgid "(at same time as files backup)"
3639
  msgstr ""
3640
 
3641
- #: src/admin.php:3701
3642
  msgid "No backup has been completed"
3643
  msgstr ""
3644
 
@@ -3667,7 +3671,7 @@ msgstr "প্রাক বিক্রয় প্রায়শই জিজ
3667
  msgid "Full feature list"
3668
  msgstr "সম্পূর্ণ বৈশিষ্ট্যের তালিকা"
3669
 
3670
- #: src/addons/autobackup.php:1075
3671
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3672
  msgstr ""
3673
 
@@ -3681,7 +3685,7 @@ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - o
3681
  msgid "or"
3682
  msgstr "অথবা"
3683
 
3684
- #: src/admin.php:845
3685
  msgid "You did not select any components to restore. Please select at least one, and then try again."
3686
  msgstr ""
3687
 
@@ -3712,7 +3716,7 @@ msgstr ""
3712
  msgid "Check this box to have a basic report sent to"
3713
  msgstr ""
3714
 
3715
- #: src/admin.php:3715
3716
  msgctxt "i.e. Non-automatic"
3717
  msgid "Manual"
3718
  msgstr ""
@@ -3730,7 +3734,7 @@ msgstr "লক সেটিং পরিবর্তন করুন"
3730
  msgid "Any other file/directory on your server that you wish to backup"
3731
  msgstr ""
3732
 
3733
- #: src/admin.php:2609
3734
  msgid "For even more features and personal support, check out "
3735
  msgstr ""
3736
 
@@ -3738,8 +3742,8 @@ msgstr ""
3738
  msgid "Database decryption phrase"
3739
  msgstr "ডাটাবেস ডিক্রিপশন শব্দগুচ্ছ"
3740
 
3741
- #: src/addons/autobackup.php:157, src/addons/autobackup.php:1021,
3742
- #: src/admin.php:850
3743
  msgid "Automatic backup before update"
3744
  msgstr "আপডেট করার আগে স্বয়ংক্রিয় ব্যাকআপ"
3745
 
@@ -3820,11 +3824,11 @@ msgstr ""
3820
  msgid "(learn more about this significant option)"
3821
  msgstr ""
3822
 
3823
- #: src/udaddons/options.php:237
3824
  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."
3825
  msgstr ""
3826
 
3827
- #: src/admin.php:3207, src/admin.php:4276
3828
  msgid "View Log"
3829
  msgstr ""
3830
 
@@ -3843,7 +3847,7 @@ msgstr ""
3843
  msgid "and retain this many scheduled backups"
3844
  msgstr ""
3845
 
3846
- #: src/admin.php:3671
3847
  msgid "incremental backup; base backup: %s"
3848
  msgstr ""
3849
 
@@ -3856,16 +3860,16 @@ msgstr ""
3856
  msgid "Upload files into UpdraftPlus."
3857
  msgstr ""
3858
 
3859
- #: src/admin.php:1136, src/includes/class-commands.php:462,
3860
  #: src/templates/wp-admin/settings/take-backup.php:12
3861
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
3862
  msgstr ""
3863
 
3864
- #: src/class-updraftplus.php:4123
3865
  msgid "Backup label:"
3866
  msgstr ""
3867
 
3868
- #: src/addons/backblaze.php:205, src/admin.php:2111
3869
  msgid "Error: unexpected file read fail"
3870
  msgstr ""
3871
 
@@ -3885,27 +3889,27 @@ msgstr ""
3885
  msgid "Your label for this backup (optional)"
3886
  msgstr ""
3887
 
3888
- #: src/methods/googledrive.php:1192
3889
  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."
3890
  msgstr ""
3891
 
3892
- #: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:942
3893
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
3894
  msgstr ""
3895
 
3896
- #: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:938
3897
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
3898
  msgstr ""
3899
 
3900
- #: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:804
3901
  msgid "You need to supply both an email address and a password"
3902
  msgstr ""
3903
 
3904
- #: src/class-updraftplus.php:4142
3905
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3906
  msgstr ""
3907
 
3908
- #: src/class-updraftplus.php:4142
3909
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3910
  msgstr ""
3911
 
@@ -3942,19 +3946,19 @@ msgstr ""
3942
  msgid "You need to connect to receive future updates to UpdraftPlus."
3943
  msgstr ""
3944
 
3945
- #: src/class-updraftplus.php:4115
3946
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3947
  msgstr ""
3948
 
3949
- #: src/class-updraftplus.php:4115
3950
  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."
3951
  msgstr ""
3952
 
3953
- #: src/class-updraftplus.php:4115
3954
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3955
  msgstr ""
3956
 
3957
- #: src/class-updraftplus.php:4115
3958
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3959
  msgstr ""
3960
 
@@ -3983,7 +3987,7 @@ msgstr ""
3983
  msgid "UpdraftPlus is on social media - check us out!"
3984
  msgstr ""
3985
 
3986
- #: src/addons/wp-cli.php:907, src/admin.php:4464
3987
  msgid "Why am I seeing this?"
3988
  msgstr "আমি কেন এটি দেখছি?"
3989
 
@@ -3997,15 +4001,15 @@ msgstr ""
3997
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
3998
  msgstr ""
3999
 
4000
- #: src/admin.php:2048, src/admin.php:2060, src/includes/class-commands.php:833
4001
  msgid "Start backup"
4002
  msgstr "ব্যাকআপ শুরু করুন"
4003
 
4004
- #: src/class-updraftplus.php:4086, src/restorer.php:1446
4005
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4006
  msgstr ""
4007
 
4008
- #: src/admin.php:3569
4009
  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."
4010
  msgstr ""
4011
 
@@ -4013,11 +4017,11 @@ msgstr ""
4013
  msgid "Unless you have a problem, you can completely ignore everything here."
4014
  msgstr ""
4015
 
4016
- #: src/admin.php:2286
4017
  msgid "This file could not be uploaded"
4018
  msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
4019
 
4020
- #: src/admin.php:2249
4021
  msgid "You will find more information about this in the Settings section."
4022
  msgstr ""
4023
 
@@ -4045,21 +4049,21 @@ msgstr ""
4045
  msgid "Full backup"
4046
  msgstr ""
4047
 
4048
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4049
  msgid "now proceeding with the updates..."
4050
  msgstr ""
4051
 
4052
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4053
  msgid "(view log...)"
4054
  msgstr ""
4055
 
4056
- #: src/addons/autobackup.php:543, src/addons/autobackup.php:545
4057
  msgid "Backup succeeded"
4058
  msgstr ""
4059
 
4060
  #: src/addons/incremental.php:237, src/addons/incremental.php:238,
4061
  #: src/addons/incremental.php:239, src/addons/incremental.php:240,
4062
- #: src/admin.php:3716, src/admin.php:3717, src/admin.php:3718,
4063
  #: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
4064
  msgid "Every %s hours"
4065
  msgstr ""
@@ -4110,7 +4114,7 @@ msgstr ""
4110
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4111
  msgstr ""
4112
 
4113
- #: src/methods/googledrive.php:1199
4114
  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."
4115
  msgstr ""
4116
 
@@ -4134,11 +4138,11 @@ msgstr ""
4134
  msgid "Free disk space in account:"
4135
  msgstr ""
4136
 
4137
- #: src/admin.php:4898, src/templates/wp-admin/settings/take-backup.php:50
4138
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4139
  msgstr ""
4140
 
4141
- #: src/admin.php:817, src/admin.php:1916,
4142
  #: src/includes/deprecated-actions.php:29,
4143
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4144
  #: src/templates/wp-admin/settings/tab-backups.php:21,
@@ -4146,15 +4150,15 @@ msgstr ""
4146
  msgid "Existing Backups"
4147
  msgstr ""
4148
 
4149
- #: src/admin.php:1141
4150
  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."
4151
  msgstr ""
4152
 
4153
- #: src/admin.php:1141
4154
  msgid "To make a backup, just press the Backup Now button."
4155
  msgstr ""
4156
 
4157
- #: src/admin.php:1141
4158
  msgid "Welcome to UpdraftPlus!"
4159
  msgstr ""
4160
 
@@ -4226,25 +4230,25 @@ msgstr ""
4226
  msgid "user"
4227
  msgstr ""
4228
 
4229
- #: src/class-updraftplus.php:1790
4230
  msgid "External database (%s)"
4231
  msgstr ""
4232
 
4233
- #: src/methods/googledrive.php:1199
4234
  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."
4235
  msgstr ""
4236
 
4237
- #: src/methods/googledrive.php:494
4238
  msgid "failed to access parent folder"
4239
  msgstr ""
4240
 
4241
  #: src/addons/googlecloud.php:698, src/addons/onedrive.php:907,
4242
- #: src/addons/onedrive.php:918, src/methods/googledrive.php:434,
4243
- #: src/methods/googledrive.php:447
4244
  msgid "However, subsequent access attempts failed:"
4245
  msgstr ""
4246
 
4247
- #: src/addons/wp-cli.php:437, src/admin.php:4032
4248
  msgid "External database"
4249
  msgstr ""
4250
 
@@ -4276,7 +4280,7 @@ msgstr ""
4276
  msgid "use UpdraftPlus Premium"
4277
  msgstr ""
4278
 
4279
- #: src/class-updraftplus.php:3966
4280
  msgid "Decryption failed. The database file is encrypted."
4281
  msgstr ""
4282
 
@@ -4331,7 +4335,7 @@ msgstr ""
4331
  msgid "Tenant"
4332
  msgstr ""
4333
 
4334
- #: src/addons/wp-cli.php:800, src/admin.php:4586, src/admin.php:5342,
4335
  #: src/methods/openstack2.php:144,
4336
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
4337
  #: src/templates/wp-admin/settings/tab-backups.php:27,
@@ -4411,37 +4415,37 @@ msgid "%s error - failed to access the container"
4411
  msgstr ""
4412
 
4413
  #: src/addons/googlecloud.php:1108, src/addons/onedrive.php:1248,
4414
- #: src/methods/dropbox.php:668, src/methods/googledrive.php:1281
4415
  msgid "Account holder's name: %s."
4416
  msgstr ""
4417
 
4418
- #: src/methods/googledrive.php:1258
4419
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4420
  msgstr ""
4421
 
4422
- #: src/methods/googledrive.php:1245
4423
  msgid "It is an ID number internal to Google Drive"
4424
  msgstr ""
4425
 
4426
- #: src/methods/googledrive.php:1245
4427
  msgid "<strong>This is NOT a folder name</strong>."
4428
  msgstr ""
4429
 
4430
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1240,
4431
- #: src/methods/googledrive.php:1251
4432
  msgid "Folder"
4433
  msgstr ""
4434
 
4435
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:451,
4436
- #: src/methods/googledrive.php:1152
4437
  msgid "%s download: failed: file not found"
4438
  msgstr ""
4439
 
4440
- #: src/addons/googlecloud.php:718, src/methods/googledrive.php:467
4441
  msgid "Name: %s."
4442
  msgstr ""
4443
 
4444
- #: src/methods/googledrive.php:208
4445
  msgid "Google Drive list files: failed to access parent folder"
4446
  msgstr ""
4447
 
@@ -4477,7 +4481,7 @@ msgstr ""
4477
  msgid "Failed to unpack the archive"
4478
  msgstr ""
4479
 
4480
- #: src/class-updraftplus.php:1365
4481
  msgid "Error - failed to download the file"
4482
  msgstr ""
4483
 
@@ -4502,8 +4506,8 @@ msgstr ""
4502
  msgid "password/key"
4503
  msgstr ""
4504
 
4505
- #: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:866,
4506
- #: src/admin.php:5190, src/templates/wp-admin/settings/temporary-clone.php:63
4507
  msgid "Key"
4508
  msgstr ""
4509
 
@@ -4519,24 +4523,24 @@ msgstr ""
4519
  msgid "SCP/SFTP password/key"
4520
  msgstr ""
4521
 
4522
- #: src/addons/wp-cli.php:449, src/admin.php:4076
4523
  msgid "Files backup (created by %s)"
4524
  msgstr ""
4525
 
4526
- #: src/addons/wp-cli.php:449, src/admin.php:4076
4527
  msgid "Files and database WordPress backup (created by %s)"
4528
  msgstr ""
4529
 
4530
- #: src/addons/importer.php:276, src/admin.php:4070,
4531
  #: src/includes/class-backup-history.php:435
4532
  msgid "Backup created by: %s."
4533
  msgstr ""
4534
 
4535
- #: src/addons/wp-cli.php:431, src/admin.php:4030
4536
  msgid "Database (created by %s)"
4537
  msgstr ""
4538
 
4539
- #: src/addons/wp-cli.php:429, src/admin.php:4024, src/admin.php:4072
4540
  msgid "unknown source"
4541
  msgstr ""
4542
 
@@ -4551,32 +4555,32 @@ msgstr ""
4551
  msgid "Upload backup files"
4552
  msgstr ""
4553
 
4554
- #: src/admin.php:2301
4555
  msgid "This backup was created by %s, and can be imported."
4556
  msgstr ""
4557
 
4558
- #: src/admin.php:1170
4559
  msgid "Read this page for a guide to possible causes and how to fix it."
4560
  msgstr ""
4561
 
4562
- #: src/admin.php:1170
4563
  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."
4564
  msgstr ""
4565
 
4566
- #: src/admin.php:829, src/includes/class-backup-history.php:442
4567
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
4568
  msgstr ""
4569
 
4570
- #: src/admin.php:828
4571
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
4572
  msgstr ""
4573
 
4574
- #: src/admin.php:828, src/admin.php:829,
4575
  #: src/includes/class-backup-history.php:442
4576
  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))."
4577
  msgstr ""
4578
 
4579
- #: src/admin.php:4073, src/includes/class-wpadmin-commands.php:162,
4580
  #: src/restorer.php:1975
4581
  msgid "Backup created by unknown source (%s) - cannot be restored."
4582
  msgstr ""
@@ -4606,7 +4610,7 @@ msgstr ""
4606
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
4607
  msgstr ""
4608
 
4609
- #: src/admin.php:795
4610
  msgid "Rescanning remote and local storage for backup sets..."
4611
  msgstr ""
4612
 
@@ -4636,7 +4640,7 @@ msgstr ""
4636
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4637
  msgstr ""
4638
 
4639
- #: src/addons/morefiles.php:476, src/admin.php:3829
4640
  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."
4641
  msgstr ""
4642
 
@@ -4665,7 +4669,7 @@ msgstr ""
4665
  msgid "Backup created by:"
4666
  msgstr ""
4667
 
4668
- #: src/udaddons/options.php:479
4669
  msgid "Available to claim on this site"
4670
  msgstr ""
4671
 
@@ -4752,12 +4756,12 @@ msgstr ""
4752
  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)"
4753
  msgstr ""
4754
 
4755
- #: src/udaddons/updraftplus-addons.php:474,
4756
- #: src/udaddons/updraftplus-addons.php:510
4757
  msgid "Errors occurred:"
4758
  msgstr ""
4759
 
4760
- #: src/addons/wp-cli.php:664, src/admin.php:4506
4761
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
4762
  msgstr ""
4763
 
@@ -4781,7 +4785,7 @@ msgstr ""
4781
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
4782
  msgstr ""
4783
 
4784
- #: src/admin.php:1145, src/class-updraftplus.php:847
4785
  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)"
4786
  msgstr ""
4787
 
@@ -4794,7 +4798,7 @@ msgstr ""
4794
  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."
4795
  msgstr ""
4796
 
4797
- #: src/addons/moredatabase.php:144, src/admin.php:1640
4798
  msgid "Messages:"
4799
  msgstr ""
4800
 
@@ -4960,27 +4964,27 @@ msgstr ""
4960
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4961
  msgstr ""
4962
 
4963
- #: src/admin.php:843, src/central/bootstrap.php:565
4964
  msgid "Create"
4965
  msgstr ""
4966
 
4967
- #: src/admin.php:804
4968
  msgid "Trying..."
4969
  msgstr ""
4970
 
4971
- #: src/admin.php:803
4972
  msgid "The new user's RackSpace console password is (this will not be shown again):"
4973
  msgstr ""
4974
 
4975
- #: src/addons/wp-cli.php:797, src/admin.php:814, src/admin.php:4584
4976
  msgid "Error data:"
4977
  msgstr ""
4978
 
4979
- #: src/admin.php:4487
4980
  msgid "Backup does not exist in the backup history"
4981
  msgstr ""
4982
 
4983
- #: src/admin.php:3143
4984
  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."
4985
  msgstr ""
4986
 
@@ -5020,11 +5024,11 @@ msgstr ""
5020
  msgid "Email reports"
5021
  msgstr ""
5022
 
5023
- #: src/class-updraftplus.php:1798, src/class-updraftplus.php:1803
5024
  msgid "%s checksum: %s"
5025
  msgstr ""
5026
 
5027
- #: src/class-updraftplus.php:1734, src/class-updraftplus.php:1736
5028
  msgid "files: %s"
5029
  msgstr ""
5030
 
@@ -5036,7 +5040,7 @@ msgstr ""
5036
  msgid "Debugging information"
5037
  msgstr ""
5038
 
5039
- #: src/addons/reporting.php:223, src/admin.php:3990
5040
  msgid "Uploaded to:"
5041
  msgstr ""
5042
 
@@ -5081,7 +5085,7 @@ msgstr ""
5081
  msgid "%s authentication"
5082
  msgstr ""
5083
 
5084
- #: src/addons/onedrive.php:864, src/class-updraftplus.php:531,
5085
  #: src/methods/dropbox.php:240, src/methods/dropbox.php:753,
5086
  #: src/methods/dropbox.php:775, src/methods/dropbox.php:790,
5087
  #: src/methods/dropbox.php:803, src/methods/dropbox.php:946
@@ -5108,7 +5112,7 @@ msgstr ""
5108
  msgid "Your site's admin email address (%s) will be used."
5109
  msgstr ""
5110
 
5111
- #: src/admin.php:853, src/admin.php:2874, src/methods/updraftvault.php:319,
5112
  #: src/methods/updraftvault.php:362,
5113
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5114
  msgid "Connect"
@@ -5118,15 +5122,15 @@ msgstr ""
5118
  msgid "For more reporting features, use the Reporting add-on."
5119
  msgstr ""
5120
 
5121
- #: src/class-updraftplus.php:4047
5122
  msgid "(version: %s)"
5123
  msgstr ""
5124
 
5125
- #: src/admin.php:792
5126
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5127
  msgstr ""
5128
 
5129
- #: src/addons/reporting.php:527, src/admin.php:791
5130
  msgid "When the Email storage method is enabled, also send the backup"
5131
  msgstr ""
5132
 
@@ -5166,7 +5170,7 @@ msgstr ""
5166
  msgid "Files (database backup has not completed)"
5167
  msgstr ""
5168
 
5169
- #: src/admin.php:332, src/backup.php:1044
5170
  msgid "Files and database"
5171
  msgstr ""
5172
 
@@ -5190,39 +5194,39 @@ msgstr ""
5190
  msgid "UpdraftPlus warning:"
5191
  msgstr ""
5192
 
5193
- #: src/udaddons/options.php:485
5194
  msgid "(or connect using the form on this page if you have already purchased it)"
5195
  msgstr ""
5196
 
5197
- #: src/udaddons/options.php:473
5198
  msgid "please follow this link to update the plugin in order to activate it"
5199
  msgstr ""
5200
 
5201
- #: src/udaddons/options.php:470
5202
  msgid "please follow this link to update the plugin in order to get it"
5203
  msgstr ""
5204
 
5205
- #: src/udaddons/options.php:460, src/udaddons/options.php:462
5206
  msgid "latest"
5207
  msgstr ""
5208
 
5209
- #: src/udaddons/options.php:458
5210
  msgid "Your version: %s"
5211
  msgstr ""
5212
 
5213
- #: src/udaddons/options.php:456, src/udaddons/options.php:456
5214
  msgid "You've got it"
5215
  msgstr ""
5216
 
5217
- #: src/udaddons/options.php:417
5218
  msgid "UpdraftPlus Support"
5219
  msgstr ""
5220
 
5221
- #: src/udaddons/options.php:357
5222
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
5223
  msgstr ""
5224
 
5225
- #: src/udaddons/options.php:346, src/udaddons/updraftplus-addons.php:315
5226
  msgid "UpdraftPlus Addons"
5227
  msgstr ""
5228
 
@@ -5231,24 +5235,24 @@ msgid "An update is available for UpdraftPlus - please follow this link to get i
5231
  msgstr ""
5232
 
5233
  #: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
5234
- #: src/udaddons/updraftplus-addons.php:949
5235
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
5236
  msgstr ""
5237
 
5238
- #: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:945
5239
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
5240
  msgstr ""
5241
 
5242
  #: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
5243
- #: src/udaddons/updraftplus-addons.php:908
5244
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
5245
  msgstr ""
5246
 
5247
- #: src/udaddons/updraftplus-addons.php:831
5248
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
5249
  msgstr ""
5250
 
5251
- #: src/udaddons/updraftplus-addons.php:829
5252
  msgid "We failed to successfully connect to UpdraftPlus.Com"
5253
  msgstr ""
5254
 
@@ -5259,11 +5263,11 @@ msgstr ""
5259
  msgid "Reporting"
5260
  msgstr ""
5261
 
5262
- #: src/admin.php:5187
5263
  msgid "Options (raw)"
5264
  msgstr ""
5265
 
5266
- #: src/addons/reporting.php:525, src/admin.php:790
5267
  msgid "Send a report only when there are warnings/errors"
5268
  msgstr ""
5269
 
@@ -5279,79 +5283,79 @@ msgstr ""
5279
  msgid "See also the \"More Files\" add-on from our shop."
5280
  msgstr ""
5281
 
5282
- #: src/backup.php:3424, src/class-updraftplus.php:860
5283
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
5284
  msgstr ""
5285
 
5286
- #: src/class-updraftplus.php:844
5287
  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)"
5288
  msgstr ""
5289
 
5290
- #: src/udaddons/options.php:508
5291
  msgid "Manage Addons"
5292
  msgstr ""
5293
 
5294
- #: src/udaddons/options.php:486, src/udaddons/options.php:486
5295
  msgid "Buy It"
5296
  msgstr ""
5297
 
5298
- #: src/udaddons/options.php:485
5299
  msgid "Get it from the UpdraftPlus.Com Store"
5300
  msgstr ""
5301
 
5302
- #: src/udaddons/options.php:479, src/udaddons/options.php:481
5303
  msgid "activate it on this site"
5304
  msgstr ""
5305
 
5306
- #: src/udaddons/options.php:481
5307
  msgid "You have an inactive purchase"
5308
  msgstr ""
5309
 
5310
- #: src/udaddons/options.php:473
5311
  msgid "Assigned to this site"
5312
  msgstr ""
5313
 
5314
- #: src/udaddons/options.php:470
5315
  msgid "Available for this site (via your all-addons purchase)"
5316
  msgstr ""
5317
 
5318
- #: src/udaddons/options.php:464
5319
  msgid "(apparently a pre-release or withdrawn release)"
5320
  msgstr ""
5321
 
5322
- #: src/udaddons/options.php:419
5323
  msgid "Go here"
5324
  msgstr ""
5325
 
5326
- #: src/udaddons/options.php:419
5327
  msgid "Need to get support?"
5328
  msgstr ""
5329
 
5330
- #: src/udaddons/options.php:401
5331
  msgid "An error occurred when trying to retrieve your add-ons."
5332
  msgstr ""
5333
 
5334
- #: src/udaddons/options.php:296
5335
  msgid "An unknown response was received. Response was:"
5336
  msgstr ""
5337
 
5338
- #: src/udaddons/options.php:295
5339
  msgid "Claim not granted - your account login details were wrong"
5340
  msgstr ""
5341
 
5342
- #: src/udaddons/options.php:293
5343
  msgid "Please wait whilst we make the claim..."
5344
  msgstr ""
5345
 
5346
- #: src/udaddons/options.php:247
5347
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
5348
  msgstr ""
5349
 
5350
- #: src/udaddons/options.php:240
5351
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
5352
  msgstr ""
5353
 
5354
- #: src/udaddons/options.php:236
5355
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
5356
  msgstr ""
5357
 
@@ -5359,19 +5363,19 @@ msgstr ""
5359
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
5360
  msgstr ""
5361
 
5362
- #: src/admin.php:2872
5363
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
5364
  msgstr ""
5365
 
5366
- #: src/admin.php:2948
5367
  msgid "Forgotten your details?"
5368
  msgstr ""
5369
 
5370
- #: src/admin.php:2861
5371
  msgid "Not yet got an account (it's free)? Go get one!"
5372
  msgstr ""
5373
 
5374
- #: src/admin.php:2927
5375
  msgid "Connect with your UpdraftPlus.Com account"
5376
  msgstr ""
5377
 
@@ -5413,7 +5417,7 @@ msgstr ""
5413
  msgid "Your web-server does not have the %s module installed."
5414
  msgstr ""
5415
 
5416
- #: src/addons/googlecloud.php:1074, src/methods/googledrive.php:1270
5417
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
5418
  msgstr ""
5419
 
@@ -5422,15 +5426,15 @@ msgstr ""
5422
  msgid "Drop backup files here"
5423
  msgstr ""
5424
 
5425
- #: src/admin.php:802
5426
  msgid "The web server returned an error code (try again, or check your web server logs)"
5427
  msgstr ""
5428
 
5429
- #: src/admin.php:800
5430
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
5431
  msgstr ""
5432
 
5433
- #: src/addons/wp-cli.php:115, src/admin.php:797
5434
  msgid "If you exclude both the database and the files, then you have excluded everything!"
5435
  msgstr ""
5436
 
@@ -5442,11 +5446,11 @@ msgstr ""
5442
  msgid "Remote Storage Options"
5443
  msgstr ""
5444
 
5445
- #: src/addons/autobackup.php:338, src/addons/autobackup.php:432
5446
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
5447
  msgstr ""
5448
 
5449
- #: src/addons/autobackup.php:298, src/addons/autobackup.php:1080
5450
  msgid "Remember this choice for next time (you will still have the chance to change it)"
5451
  msgstr ""
5452
 
@@ -5459,15 +5463,15 @@ msgstr ""
5459
  msgid "You can send a backup to more than one destination with an add-on."
5460
  msgstr ""
5461
 
5462
- #: src/admin.php:3414
5463
  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."
5464
  msgstr ""
5465
 
5466
- #: src/admin.php:3281
5467
  msgid "(%s%%, file %s of %s)"
5468
  msgstr ""
5469
 
5470
- #: src/addons/autobackup.php:299, src/addons/autobackup.php:1085,
5471
  #: src/addons/lockadmin.php:160
5472
  msgid "Read more about how this works..."
5473
  msgstr ""
@@ -5500,15 +5504,15 @@ msgstr ""
5500
  msgid "Backup is of: %s."
5501
  msgstr ""
5502
 
5503
- #: src/admin.php:892
5504
  msgid "%s settings test result:"
5505
  msgstr ""
5506
 
5507
- #: src/admin.php:4138, src/admin.php:4140
5508
  msgid "(Not finished)"
5509
  msgstr ""
5510
 
5511
- #: src/admin.php:4140
5512
  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."
5513
  msgstr ""
5514
 
@@ -5520,73 +5524,73 @@ msgstr ""
5520
  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)."
5521
  msgstr ""
5522
 
5523
- #: src/admin.php:3382
5524
  msgid "Job ID: %s"
5525
  msgstr ""
5526
 
5527
- #: src/admin.php:3362
5528
  msgid "last activity: %ss ago"
5529
  msgstr ""
5530
 
5531
- #: src/admin.php:3361
5532
  msgid "next resumption: %d (after %ss)"
5533
  msgstr ""
5534
 
5535
- #: src/admin.php:3344, src/central/bootstrap.php:444,
5536
  #: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
5537
  #: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
5538
  msgid "Unknown"
5539
  msgstr ""
5540
 
5541
- #: src/admin.php:3295
5542
  msgid "Backup finished"
5543
  msgstr ""
5544
 
5545
- #: src/admin.php:3290
5546
  msgid "Waiting until scheduled time to retry because of errors"
5547
  msgstr ""
5548
 
5549
- #: src/admin.php:3286
5550
  msgid "Pruning old backup sets"
5551
  msgstr ""
5552
 
5553
- #: src/admin.php:3273
5554
  msgid "Uploading files to remote storage"
5555
  msgstr ""
5556
 
5557
- #: src/admin.php:3342
5558
  msgid "Encrypted database"
5559
  msgstr ""
5560
 
5561
- #: src/admin.php:3334
5562
  msgid "Encrypting database"
5563
  msgstr ""
5564
 
5565
- #: src/admin.php:3308
5566
  msgid "Created database backup"
5567
  msgstr ""
5568
 
5569
- #: src/admin.php:3321
5570
  msgid "table: %s"
5571
  msgstr ""
5572
 
5573
- #: src/admin.php:3319
5574
  msgid "Creating database backup"
5575
  msgstr ""
5576
 
5577
- #: src/admin.php:3264
5578
  msgid "Created file backup zips"
5579
  msgstr ""
5580
 
5581
- #: src/admin.php:3251
5582
  msgid "Creating file backup zips"
5583
  msgstr ""
5584
 
5585
- #: src/admin.php:3246
5586
  msgid "Backup begun"
5587
  msgstr ""
5588
 
5589
- #: src/admin.php:1149
5590
  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."
5591
  msgstr ""
5592
 
@@ -5602,11 +5606,11 @@ msgstr ""
5602
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
5603
  msgstr ""
5604
 
5605
- #: src/class-updraftplus.php:3055
5606
  msgid "The backup has not finished; a resumption is scheduled"
5607
  msgstr ""
5608
 
5609
- #: src/class-updraftplus.php:2076
5610
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
5611
  msgstr ""
5612
 
@@ -5615,56 +5619,56 @@ msgstr ""
5615
  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)."
5616
  msgstr ""
5617
 
5618
- #: src/admin.php:2636
5619
  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)."
5620
  msgstr ""
5621
 
5622
- #: src/addons/autobackup.php:1099, src/admin.php:846
5623
  msgid "Proceed with update"
5624
  msgstr ""
5625
 
5626
- #: src/addons/autobackup.php:1092
5627
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
5628
  msgstr ""
5629
 
5630
- #: src/addons/autobackup.php:139, src/addons/autobackup.php:1041
5631
  msgid "UpdraftPlus Automatic Backups"
5632
  msgstr ""
5633
 
5634
- #: src/addons/autobackup.php:524
5635
  msgid "Errors have occurred:"
5636
  msgstr ""
5637
 
5638
- #: src/addons/autobackup.php:496
5639
  msgid "Creating backup with UpdraftPlus..."
5640
  msgstr ""
5641
 
5642
- #: src/addons/autobackup.php:441, src/addons/autobackup.php:571,
5643
- #: src/addons/autobackup.php:622
5644
  msgid "Automatic Backup"
5645
  msgstr ""
5646
 
5647
- #: src/addons/autobackup.php:432
5648
  msgid "Creating database backup with UpdraftPlus..."
5649
  msgstr ""
5650
 
5651
- #: src/addons/autobackup.php:398
5652
  msgid "themes"
5653
  msgstr ""
5654
 
5655
- #: src/addons/autobackup.php:391
5656
  msgid "plugins"
5657
  msgstr ""
5658
 
5659
- #: src/addons/autobackup.php:342, src/addons/autobackup.php:439
5660
  msgid "Starting automatic backup..."
5661
  msgstr ""
5662
 
5663
- #: src/addons/autobackup.php:338
5664
  msgid "Creating %s and database backup with UpdraftPlus..."
5665
  msgstr ""
5666
 
5667
- #: src/addons/autobackup.php:296
5668
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
5669
  msgstr ""
5670
 
@@ -5695,84 +5699,84 @@ msgstr ""
5695
  msgid "Support"
5696
  msgstr "সহায়তা"
5697
 
5698
- #: src/class-updraftplus.php:4370
5699
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
5700
  msgstr ""
5701
 
5702
- #: src/class-updraftplus.php:4362
5703
  msgid "This database backup is missing core WordPress tables: %s"
5704
  msgstr ""
5705
 
5706
- #: src/class-updraftplus.php:4108
5707
  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."
5708
  msgstr ""
5709
 
5710
- #: src/class-updraftplus.php:4107, src/class-updraftplus.php:4114
5711
  msgid "%s version: %s"
5712
  msgstr ""
5713
 
5714
- #: src/class-updraftplus.php:3983
5715
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
5716
  msgstr ""
5717
 
5718
- #: src/addons/autobackup.php:1067, src/admin.php:974,
5719
  #: src/includes/updraftplus-notices.php:171
5720
  msgid "Be safe with an automatic backup"
5721
  msgstr ""
5722
 
5723
- #: src/admin.php:2589
5724
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
5725
  msgstr ""
5726
 
5727
- #: src/admin.php:838
5728
  msgid "The file was uploaded."
5729
  msgstr ""
5730
 
5731
- #: src/admin.php:837
5732
  msgid "Unknown server response status:"
5733
  msgstr ""
5734
 
5735
- #: src/admin.php:836
5736
  msgid "Unknown server response:"
5737
  msgstr ""
5738
 
5739
- #: src/admin.php:835
5740
  msgid "This decryption key will be attempted:"
5741
  msgstr ""
5742
 
5743
- #: src/admin.php:834
5744
  msgid "Follow this link to attempt decryption and download the database file to your computer."
5745
  msgstr ""
5746
 
5747
- #: src/admin.php:833
5748
  msgid "Upload error"
5749
  msgstr ""
5750
 
5751
- #: src/admin.php:832
5752
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
5753
  msgstr ""
5754
 
5755
- #: src/admin.php:831
5756
  msgid "Upload error:"
5757
  msgstr ""
5758
 
5759
- #: src/admin.php:830
5760
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
5761
  msgstr ""
5762
 
5763
- #: src/admin.php:821
5764
  msgid "Download to your computer"
5765
  msgstr ""
5766
 
5767
- #: src/admin.php:820
5768
  msgid "Delete from your web server"
5769
  msgstr ""
5770
 
5771
- #: src/admin.php:4110
5772
  msgid "You appear to be missing one or more archives from this multi-archive set."
5773
  msgstr ""
5774
 
5775
- #: src/admin.php:4107
5776
  msgid "(%d archive(s) in set)."
5777
  msgstr ""
5778
 
@@ -5784,15 +5788,15 @@ msgstr ""
5784
  msgid "Error: the server sent us a response (JSON) which we did not understand."
5785
  msgstr ""
5786
 
5787
- #: src/admin.php:811
5788
  msgid "Warnings:"
5789
  msgstr ""
5790
 
5791
- #: src/admin.php:810
5792
  msgid "Error: the server sent an empty response."
5793
  msgstr ""
5794
 
5795
- #: src/admin.php:2315
5796
  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?"
5797
  msgstr ""
5798
 
@@ -5866,7 +5870,7 @@ msgstr ""
5866
  msgid "Looking for %s archive: file name: %s"
5867
  msgstr ""
5868
 
5869
- #: src/addons/wp-cli.php:784, src/admin.php:4568
5870
  msgid "Final checks"
5871
  msgstr ""
5872
 
@@ -5878,11 +5882,11 @@ msgstr ""
5878
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5879
  msgstr ""
5880
 
5881
- #: src/admin.php:3815
5882
  msgid "Your wp-content directory server path: %s"
5883
  msgstr ""
5884
 
5885
- #: src/admin.php:827
5886
  msgid "Raw backup history"
5887
  msgstr ""
5888
 
@@ -5890,7 +5894,7 @@ msgstr ""
5890
  msgid "Show raw backup and file list"
5891
  msgstr ""
5892
 
5893
- #: src/admin.php:809
5894
  msgid "Processing files - please wait..."
5895
  msgstr ""
5896
 
@@ -5899,11 +5903,11 @@ msgstr ""
5899
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
5900
  msgstr ""
5901
 
5902
- #: src/class-updraftplus.php:3991
5903
  msgid "Failed to open database file."
5904
  msgstr ""
5905
 
5906
- #: src/admin.php:5152
5907
  msgid "Known backups (raw)"
5908
  msgstr ""
5909
 
@@ -5921,17 +5925,17 @@ msgstr ""
5921
 
5922
  #: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
5923
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
5924
- #: src/admin.php:1149, src/admin.php:2594, src/backup.php:3431,
5925
- #: src/class-updraftplus.php:4230, src/class-updraftplus.php:4230,
5926
  #: src/updraftplus.php:157
5927
  msgid "Go here for more information."
5928
  msgstr ""
5929
 
5930
- #: src/admin.php:808
5931
  msgid "Some files are still downloading or being processed - please wait."
5932
  msgstr ""
5933
 
5934
- #: src/class-updraftplus.php:4078, src/class-updraftplus.php:4098
5935
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
5936
  msgstr ""
5937
 
@@ -5973,7 +5977,7 @@ msgstr ""
5973
 
5974
  #: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
5975
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
5976
- #: src/methods/googledrive.php:1112, src/methods/openstack-base.php:455,
5977
  #: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
5978
  #: src/methods/stream-base.php:335
5979
  msgid "%s Error"
@@ -5983,7 +5987,7 @@ msgstr ""
5983
  msgid "%s error - failed to upload file"
5984
  msgstr ""
5985
 
5986
- #: src/class-updraftplus.php:1254, src/methods/cloudfiles.php:211
5987
  msgid "%s error - failed to re-assemble chunks"
5988
  msgstr ""
5989
 
@@ -5998,24 +6002,24 @@ msgid "%s authentication failed"
5998
  msgstr ""
5999
 
6000
  #: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
6001
- #: src/admin.php:2286, src/admin.php:2307, src/admin.php:2315,
6002
- #: src/class-updraftplus.php:996, src/class-updraftplus.php:1002,
6003
- #: src/class-updraftplus.php:3964, src/class-updraftplus.php:3966,
6004
- #: src/class-updraftplus.php:4131, src/class-updraftplus.php:4138,
6005
- #: src/class-updraftplus.php:4209, src/methods/googledrive.php:395,
6006
  #: src/methods/s3.php:341
6007
  msgid "Error: %s"
6008
  msgstr ""
6009
 
6010
- #: src/admin.php:3734
6011
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6012
  msgstr ""
6013
 
6014
- #: src/admin.php:3732
6015
  msgid "Backup directory specified does <b>not</b> exist."
6016
  msgstr ""
6017
 
6018
- #: src/admin.php:3396, src/admin.php:3683
6019
  msgid "Warning: %s"
6020
  msgstr ""
6021
 
@@ -6039,11 +6043,11 @@ msgstr ""
6039
  msgid "Warnings encountered:"
6040
  msgstr ""
6041
 
6042
- #: src/class-updraftplus.php:3039
6043
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6044
  msgstr ""
6045
 
6046
- #: src/class-updraftplus.php:873
6047
  msgid "Your free disk space is very low - only %s Mb remain"
6048
  msgstr ""
6049
 
@@ -6095,7 +6099,7 @@ msgstr ""
6095
  msgid "Please supply the requested information, and then continue."
6096
  msgstr ""
6097
 
6098
- #: src/class-updraftplus.php:4149, src/restorer.php:2233
6099
  msgid "Site information:"
6100
  msgstr ""
6101
 
@@ -6103,11 +6107,11 @@ msgstr ""
6103
  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."
6104
  msgstr ""
6105
 
6106
- #: src/admin.php:2589, src/class-updraftplus.php:4142, src/restorer.php:2647
6107
  msgid "Warning:"
6108
  msgstr ""
6109
 
6110
- #: src/class-updraftplus.php:4131, src/class-updraftplus.php:4134,
6111
  #: src/restorer.php:530
6112
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6113
  msgstr ""
@@ -6116,27 +6120,27 @@ msgstr ""
6116
  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."
6117
  msgstr ""
6118
 
6119
- #: src/addons/azure.php:601, src/admin.php:3907,
6120
  #: src/methods/updraftvault.php:306
6121
  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."
6122
  msgstr ""
6123
 
6124
- #: src/admin.php:847, src/includes/updraftplus-tour.php:89
6125
  msgid "Close"
6126
  msgstr ""
6127
 
6128
- #: src/addons/autobackup.php:344, src/addons/autobackup.php:436,
6129
- #: src/admin.php:801, src/methods/remotesend.php:69,
6130
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:228,
6131
  #: src/methods/remotesend.php:245, src/methods/remotesend.php:293
6132
  msgid "Unexpected response:"
6133
  msgstr ""
6134
 
6135
- #: src/addons/reporting.php:523, src/admin.php:796
6136
  msgid "To send to more than one address, separate each address with a comma."
6137
  msgstr ""
6138
 
6139
- #: src/admin.php:825
6140
  msgid "PHP information"
6141
  msgstr ""
6142
 
@@ -6160,7 +6164,7 @@ msgstr ""
6160
  msgid "Also delete from remote storage"
6161
  msgstr ""
6162
 
6163
- #: src/admin.php:3085
6164
  msgid "Latest UpdraftPlus.com news:"
6165
  msgstr ""
6166
 
@@ -6188,7 +6192,7 @@ msgstr ""
6188
  msgid "News"
6189
  msgstr ""
6190
 
6191
- #: src/admin.php:1693, src/includes/class-wpadmin-commands.php:506
6192
  msgid "Backup set not found"
6193
  msgstr ""
6194
 
@@ -6210,7 +6214,7 @@ msgstr ""
6210
  msgid "Blog link"
6211
  msgstr ""
6212
 
6213
- #: src/admin.php:891
6214
  msgid "Testing %s Settings..."
6215
  msgstr ""
6216
 
@@ -6219,11 +6223,11 @@ msgstr ""
6219
  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."
6220
  msgstr ""
6221
 
6222
- #: src/admin.php:1165
6223
  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."
6224
  msgstr ""
6225
 
6226
- #: src/admin.php:1165
6227
  msgid "Notice"
6228
  msgstr ""
6229
 
@@ -6231,11 +6235,11 @@ msgstr ""
6231
  msgid "Errors encountered:"
6232
  msgstr ""
6233
 
6234
- #: src/admin.php:793
6235
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
6236
  msgstr ""
6237
 
6238
- #: src/admin.php:807
6239
  msgid "Begun looking for this entity"
6240
  msgstr ""
6241
 
@@ -6259,7 +6263,7 @@ msgstr ""
6259
  msgid "Time taken (seconds):"
6260
  msgstr ""
6261
 
6262
- #: src/addons/migrator.php:1302, src/admin.php:812
6263
  msgid "Errors:"
6264
  msgstr ""
6265
 
@@ -6358,7 +6362,7 @@ msgid "Directory path"
6358
  msgstr ""
6359
 
6360
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
6361
- #: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2943,
6362
  #: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
6363
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
6364
  msgid "Password"
@@ -6426,8 +6430,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
6426
  msgstr ""
6427
 
6428
  #: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
6429
- #: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3462,
6430
- #: src/admin.php:3498, src/admin.php:3508, src/methods/addon-base-v2.php:313,
6431
  #: src/methods/stream-base.php:356
6432
  msgid "Failed"
6433
  msgstr ""
@@ -6452,7 +6456,7 @@ msgstr ""
6452
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
6453
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
6454
  #: src/methods/addon-base-v2.php:285, src/methods/ftp.php:42,
6455
- #: src/methods/googledrive.php:194, src/methods/googledrive.php:196,
6456
  #: src/methods/remotesend.php:278, src/methods/stream-base.php:27,
6457
  #: src/methods/stream-base.php:163, src/methods/stream-base.php:169,
6458
  #: src/methods/stream-base.php:203, src/methods/stream-base.php:278
@@ -6649,8 +6653,8 @@ msgstr ""
6649
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
6650
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
6651
  #: src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530,
6652
- #: src/addons/webdav.php:253, src/admin.php:867,
6653
- #: src/includes/class-remote-send.php:453, src/methods/addon-base-v2.php:305,
6654
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
6655
  #: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
6656
  #: src/methods/ftp.php:412, src/methods/ftp.php:416,
@@ -6692,11 +6696,11 @@ msgstr ""
6692
  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."
6693
  msgstr ""
6694
 
6695
- #: src/admin.php:890, src/methods/backup-module.php:315
6696
  msgid "Test %s Settings"
6697
  msgstr ""
6698
 
6699
- #: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
6700
  #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
6701
  msgid "Error opening local file: Failed to download"
6702
  msgstr ""
@@ -6713,8 +6717,8 @@ msgid "%s Error: Failed to upload"
6713
  msgstr ""
6714
 
6715
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
6716
- #: src/class-updraftplus.php:1139, src/methods/cloudfiles.php:130,
6717
- #: src/methods/googledrive.php:1026, src/methods/googledrive.php:1031
6718
  msgid "%s Error: Failed to open local file"
6719
  msgstr ""
6720
 
@@ -6730,59 +6734,59 @@ msgstr ""
6730
  msgid "Cloud Files authentication failed"
6731
  msgstr ""
6732
 
6733
- #: src/methods/googledrive.php:1265
6734
  msgid "Authenticate with Google"
6735
  msgstr ""
6736
 
6737
  #: src/addons/googlecloud.php:1027, src/addons/onedrive.php:1181,
6738
- #: src/methods/googledrive.php:1229
6739
  msgid "Client Secret"
6740
  msgstr ""
6741
 
6742
- #: src/addons/googlecloud.php:1022, src/methods/googledrive.php:1226
6743
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
6744
  msgstr ""
6745
 
6746
  #: src/addons/googlecloud.php:1019, src/addons/onedrive.php:1177,
6747
- #: src/methods/googledrive.php:1225
6748
  msgid "Client ID"
6749
  msgstr ""
6750
 
6751
- #: src/methods/googledrive.php:1199
6752
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
6753
  msgstr ""
6754
 
6755
- #: src/addons/googlecloud.php:997, src/methods/googledrive.php:1199
6756
  msgid "Select 'Web Application' as the application type."
6757
  msgstr ""
6758
 
6759
- #: src/addons/googlecloud.php:995, src/methods/googledrive.php:1197
6760
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
6761
  msgstr ""
6762
 
6763
  #: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
6764
- #: src/addons/googlecloud.php:866, src/methods/googledrive.php:572,
6765
- #: src/methods/googledrive.php:573, src/methods/googledrive.php:583,
6766
- #: src/methods/googledrive.php:584
6767
  msgid "Account is not authorized."
6768
  msgstr ""
6769
 
6770
- #: src/methods/googledrive.php:494, src/methods/googledrive.php:540,
6771
- #: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
6772
  #: src/methods/stream-base.php:219
6773
  msgid "Failed to upload to %s"
6774
  msgstr ""
6775
 
6776
- #: src/methods/googledrive.php:523
6777
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
6778
  msgstr ""
6779
 
6780
- #: src/methods/googledrive.php:616, src/methods/googledrive.php:652
6781
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
6782
  msgstr ""
6783
 
6784
  #: src/addons/googlecloud.php:718, src/addons/onedrive.php:939,
6785
- #: src/methods/googledrive.php:467
6786
  msgid "you have authenticated your %s account."
6787
  msgstr ""
6788
 
@@ -6790,21 +6794,21 @@ msgstr ""
6790
  #: src/addons/onedrive.php:939, src/addons/sftp.php:591,
6791
  #: src/addons/sftp.php:595, src/addons/wp-cli.php:515,
6792
  #: src/methods/addon-base-v2.php:327, src/methods/cloudfiles.php:575,
6793
- #: src/methods/googledrive.php:467, src/methods/openstack-base.php:530,
6794
  #: src/methods/s3.php:1155, src/methods/stream-base.php:372
6795
  msgid "Success"
6796
  msgstr ""
6797
 
6798
  #: src/addons/onedrive.php:893, src/methods/dropbox.php:844,
6799
- #: src/methods/dropbox.php:853, src/methods/googledrive.php:431
6800
  msgid "Your %s quota usage: %s %% used, %s available"
6801
  msgstr ""
6802
 
6803
- #: src/addons/googlecloud.php:444, src/methods/googledrive.php:401
6804
  msgid "Authorization failed"
6805
  msgstr "অনুমোদন ব্যর্থ"
6806
 
6807
- #: src/addons/googlecloud.php:436, src/methods/googledrive.php:393
6808
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
6809
  msgstr ""
6810
 
@@ -6827,8 +6831,8 @@ msgstr ""
6827
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
6828
  msgstr ""
6829
 
6830
- #: src/admin.php:3466, src/admin.php:3501, src/admin.php:3505,
6831
- #: src/includes/class-remote-send.php:326,
6832
  #: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
6833
  #: src/restorer.php:2888, src/restorer.php:2993
6834
  msgid "OK"
@@ -6846,13 +6850,13 @@ msgstr ""
6846
  msgid "will restore as:"
6847
  msgstr ""
6848
 
6849
- #: src/class-updraftplus.php:4120, src/restorer.php:2215,
6850
  #: src/restorer.php:2304, src/restorer.php:2330
6851
  msgid "Old table prefix:"
6852
  msgstr ""
6853
 
6854
  #: src/addons/reporting.php:72, src/addons/reporting.php:181,
6855
- #: src/backup.php:1135, src/class-updraftplus.php:4047
6856
  msgid "Backup of:"
6857
  msgstr ""
6858
 
@@ -6940,39 +6944,39 @@ msgstr ""
6940
  msgid "Archive is expected to be size:"
6941
  msgstr ""
6942
 
6943
- #: src/admin.php:4516
6944
  msgid "If making a request for support, please include this information:"
6945
  msgstr ""
6946
 
6947
- #: src/admin.php:4515
6948
  msgid "ABORT: Could not find the information on which entities to restore."
6949
  msgstr ""
6950
 
6951
- #: src/addons/wp-cli.php:647, src/admin.php:4494
6952
  msgid "UpdraftPlus Restoration: Progress"
6953
  msgstr ""
6954
 
6955
- #: src/admin.php:4486
6956
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
6957
  msgstr ""
6958
 
6959
- #: src/admin.php:4168
6960
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
6961
  msgstr ""
6962
 
6963
- #: src/admin.php:4266
6964
  msgid "Delete this backup set"
6965
  msgstr ""
6966
 
6967
- #: src/admin.php:3919
6968
  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."
6969
  msgstr ""
6970
 
6971
- #: src/admin.php:3916
6972
  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."
6973
  msgstr ""
6974
 
6975
- #: src/admin.php:3914
6976
  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)."
6977
  msgstr ""
6978
 
@@ -7013,19 +7017,19 @@ msgstr ""
7013
  msgid "Use the server's SSL certificates"
7014
  msgstr ""
7015
 
7016
- #: src/admin.php:3736
7017
  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."
7018
  msgstr ""
7019
 
7020
- #: src/admin.php:3736
7021
  msgid "or, to reset this option"
7022
  msgstr ""
7023
 
7024
- #: src/admin.php:3736
7025
  msgid "Follow this link to attempt to create the directory and set the permissions"
7026
  msgstr ""
7027
 
7028
- #: src/admin.php:3728
7029
  msgid "Backup directory specified is writable, which is good."
7030
  msgstr ""
7031
 
@@ -7057,16 +7061,16 @@ msgstr ""
7057
  msgid "Advanced / Debugging Settings"
7058
  msgstr ""
7059
 
7060
- #: src/admin.php:824
7061
  msgid "Requesting start of backup..."
7062
  msgstr ""
7063
 
7064
- #: src/addons/morefiles.php:311, src/admin.php:841
7065
  msgid "Cancel"
7066
  msgstr "বাতিল"
7067
 
7068
  #: src/addons/incremental.php:235, src/addons/reporting.php:245,
7069
- #: src/admin.php:4002
7070
  msgid "None"
7071
  msgstr "কোনটিই না"
7072
 
@@ -7082,7 +7086,7 @@ msgstr ""
7082
  msgid "Database encryption phrase"
7083
  msgstr ""
7084
 
7085
- #: src/admin.php:2933, src/templates/wp-admin/settings/form-contents.php:255,
7086
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7087
  msgid "Email"
7088
  msgstr ""
@@ -7095,7 +7099,7 @@ msgstr ""
7095
  msgid "Exclude these:"
7096
  msgstr ""
7097
 
7098
- #: src/admin.php:3815
7099
  msgid "Any other directories found inside wp-content"
7100
  msgstr ""
7101
 
@@ -7111,46 +7115,46 @@ msgstr ""
7111
  msgid "To fix the time at which a backup should take place,"
7112
  msgstr ""
7113
 
7114
- #: src/addons/incremental.php:244, src/admin.php:3722
7115
  msgid "Monthly"
7116
  msgstr "মাসিক"
7117
 
7118
- #: src/addons/incremental.php:243, src/admin.php:3721
7119
  msgid "Fortnightly"
7120
  msgstr "পাক্ষিক"
7121
 
7122
- #: src/addons/incremental.php:242, src/admin.php:3720
7123
  msgid "Weekly"
7124
  msgstr "সাপ্তাহিক"
7125
 
7126
- #: src/addons/incremental.php:241, src/admin.php:3719
7127
  msgid "Daily"
7128
  msgstr ""
7129
 
7130
- #: src/admin.php:849, src/admin.php:3697
7131
  msgid "Download log file"
7132
  msgstr "লগ ফাইল ডাউনলোড করুন"
7133
 
7134
- #: src/admin.php:3569
7135
  msgid "The folder exists, but your webserver does not have permission to write to it."
7136
  msgstr ""
7137
 
7138
- #: src/admin.php:3564
7139
  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"
7140
  msgstr ""
7141
 
7142
- #: src/admin.php:3550
7143
  msgid "The request to the filesystem to create the directory failed."
7144
  msgstr ""
7145
 
7146
- #: src/admin.php:842, src/admin.php:3459, src/admin.php:3493,
7147
- #: src/admin.php:4266, src/includes/class-remote-send.php:543,
7148
  #: src/templates/wp-admin/settings/existing-backups-table.php:155,
7149
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7150
  msgid "Delete"
7151
  msgstr "মুছুন"
7152
 
7153
- #: src/admin.php:3413
7154
  msgid "show log"
7155
  msgstr "লগ দেখান"
7156
 
@@ -7211,7 +7215,7 @@ msgstr "না"
7211
  msgid "Yes"
7212
  msgstr "হ্যাঁ"
7213
 
7214
- #: src/admin.php:5364, src/admin.php:5368,
7215
  #: src/templates/wp-admin/advanced/site-info.php:45,
7216
  #: src/templates/wp-admin/advanced/site-info.php:51,
7217
  #: src/templates/wp-admin/advanced/site-info.php:58,
@@ -7251,7 +7255,7 @@ msgstr ""
7251
  msgid "Do read this helpful article of useful things to know before restoring."
7252
  msgstr ""
7253
 
7254
- #: src/class-updraftplus.php:4081
7255
  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"
7256
  msgstr ""
7257
 
@@ -7292,7 +7296,7 @@ msgstr ""
7292
  msgid "Delete backup set"
7293
  msgstr ""
7294
 
7295
- #: src/admin.php:823
7296
  msgid "Download error: the server sent us a response which we did not understand."
7297
  msgstr ""
7298
 
@@ -7301,22 +7305,22 @@ msgstr ""
7301
  #: src/addons/migrator.php:1268, src/addons/migrator.php:1317,
7302
  #: src/addons/migrator.php:1555, src/addons/s3-enhanced.php:164,
7303
  #: src/addons/s3-enhanced.php:169, src/addons/s3-enhanced.php:171,
7304
- #: src/addons/sftp.php:911, src/addons/webdav.php:203, src/admin.php:89,
7305
- #: src/admin.php:815, src/includes/class-remote-send.php:265,
7306
- #: src/includes/class-remote-send.php:292,
7307
- #: src/includes/class-remote-send.php:298,
7308
- #: src/includes/class-remote-send.php:361,
7309
- #: src/includes/class-remote-send.php:420,
7310
- #: src/includes/class-remote-send.php:461,
7311
- #: src/includes/class-remote-send.php:471,
7312
- #: src/includes/class-remote-send.php:476, src/methods/remotesend.php:74,
7313
  #: src/methods/remotesend.php:242, src/methods/remotesend.php:298,
7314
  #: src/methods/updraftvault.php:527, src/restorer.php:228,
7315
  #: src/restorer.php:256, src/restorer.php:1921
7316
  msgid "Error:"
7317
  msgstr ""
7318
 
7319
- #: src/admin.php:806
7320
  msgid "calculating..."
7321
  msgstr ""
7322
 
@@ -7339,15 +7343,15 @@ msgstr ""
7339
  msgid "This is a count of the contents of your Updraft directory"
7340
  msgstr ""
7341
 
7342
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:194,
7343
- #: src/methods/googledrive.php:196, src/methods/googledrive.php:467,
7344
- #: src/methods/googledrive.php:494, src/methods/googledrive.php:523,
7345
- #: src/methods/googledrive.php:530, src/methods/googledrive.php:540,
7346
- #: src/methods/googledrive.php:546, src/methods/googledrive.php:548,
7347
- #: src/methods/googledrive.php:1185, src/methods/googledrive.php:1192,
7348
- #: src/methods/googledrive.php:1192, src/methods/googledrive.php:1225,
7349
- #: src/methods/googledrive.php:1229, src/methods/googledrive.php:1240,
7350
- #: src/methods/googledrive.php:1251
7351
  msgid "Google Drive"
7352
  msgstr "গুগোল ড্রাইভ"
7353
 
@@ -7366,7 +7370,7 @@ msgstr "অপেরা ওযেব ব্রাউজার"
7366
  msgid "More tasks:"
7367
  msgstr "আরও টাস্ক:"
7368
 
7369
- #: src/admin.php:3112
7370
  msgid "Download most recently modified log file"
7371
  msgstr ""
7372
 
@@ -7374,18 +7378,18 @@ msgstr ""
7374
  msgid "(Nothing yet logged)"
7375
  msgstr ""
7376
 
7377
- #: src/addons/autobackup.php:339, src/addons/autobackup.php:434,
7378
- #: src/admin.php:3068, src/admin.php:3074,
7379
  #: src/templates/wp-admin/settings/take-backup.php:64
7380
  msgid "Last log message"
7381
  msgstr ""
7382
 
7383
- #: src/addons/migrator.php:271, src/admin.php:661, src/admin.php:848,
7384
- #: src/admin.php:4168
7385
  msgid "Restore"
7386
  msgstr "পুনঃস্থাপন"
7387
 
7388
- #: src/admin.php:840, src/templates/wp-admin/settings/take-backup.php:50
7389
  msgid "Backup Now"
7390
  msgstr ""
7391
 
@@ -7394,8 +7398,8 @@ msgid "Time now"
7394
  msgstr ""
7395
 
7396
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
7397
- #: src/addons/wp-cli.php:431, src/admin.php:342, src/admin.php:3977,
7398
- #: src/admin.php:4030, src/includes/class-remote-send.php:330,
7399
  #: src/includes/class-wpadmin-commands.php:157,
7400
  #: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
7401
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
@@ -7404,7 +7408,7 @@ msgstr ""
7404
  msgid "Database"
7405
  msgstr ""
7406
 
7407
- #: src/admin.php:332, src/admin.php:5159,
7408
  #: src/templates/wp-admin/settings/take-backup.php:23
7409
  msgid "Files"
7410
  msgstr ""
@@ -7413,12 +7417,12 @@ msgstr ""
7413
  msgid "Next scheduled backups"
7414
  msgstr ""
7415
 
7416
- #: src/admin.php:311
7417
  msgid "At the same time as the files backup"
7418
  msgstr ""
7419
 
7420
- #: src/admin.php:301, src/admin.php:322, src/admin.php:329, src/admin.php:374,
7421
- #: src/admin.php:405
7422
  msgid "Nothing currently scheduled"
7423
  msgstr ""
7424
 
@@ -7430,15 +7434,15 @@ msgstr ""
7430
  msgid "JavaScript warning"
7431
  msgstr ""
7432
 
7433
- #: src/admin.php:826, src/admin.php:3149
7434
  msgid "Delete Old Directories"
7435
  msgstr ""
7436
 
7437
- #: src/admin.php:2636
7438
  msgid "Current limit is:"
7439
  msgstr ""
7440
 
7441
- #: src/admin.php:2611
7442
  msgid "Your backup has been restored."
7443
  msgstr ""
7444
 
@@ -7454,69 +7458,69 @@ msgstr "প্রধান ডেভেলপার এর হোমপেজে
7454
  msgid "UpdraftPlus.Com"
7455
  msgstr ""
7456
 
7457
- #: src/admin.php:5051
7458
  msgid "Your settings have been wiped."
7459
  msgstr ""
7460
 
7461
- #: src/admin.php:2571
7462
  msgid "Backup directory successfully created."
7463
  msgstr ""
7464
 
7465
- #: src/admin.php:2564
7466
  msgid "Backup directory could not be created"
7467
  msgstr ""
7468
 
7469
- #: src/admin.php:3429
7470
  msgid "Old directory removal failed for some reason. You may want to do this manually."
7471
  msgstr ""
7472
 
7473
- #: src/admin.php:3427
7474
  msgid "Old directories successfully removed."
7475
  msgstr ""
7476
 
7477
- #: src/admin.php:3424, src/admin.php:3424
7478
  msgid "Remove old directories"
7479
  msgstr ""
7480
 
7481
  #: src/addons/migrator.php:340, src/addons/migrator.php:355,
7482
- #: src/admin.php:2512, src/admin.php:2522, src/admin.php:2531,
7483
- #: src/admin.php:2573, src/admin.php:3431
7484
  msgid "Return to UpdraftPlus Configuration"
7485
  msgstr ""
7486
 
7487
- #: src/admin.php:819, src/admin.php:2512, src/admin.php:2522,
7488
- #: src/admin.php:2531, src/admin.php:2573, src/admin.php:3431,
7489
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7490
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7491
  msgid "Actions"
7492
  msgstr ""
7493
 
7494
- #: src/admin.php:2407
7495
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
7496
  msgstr ""
7497
 
7498
- #: src/admin.php:2307
7499
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
7500
  msgstr ""
7501
 
7502
- #: src/admin.php:2203
7503
  msgid "No local copy present."
7504
  msgstr ""
7505
 
7506
- #: src/admin.php:2200
7507
  msgid "Download in progress"
7508
  msgstr "ডাউনলোড হচ্ছে"
7509
 
7510
- #: src/admin.php:818, src/admin.php:2189
7511
  msgid "File ready."
7512
  msgstr "ফাইল তৈরি।"
7513
 
7514
- #: src/admin.php:2170
7515
  msgid "Download failed"
7516
  msgstr ""
7517
 
7518
- #: src/addons/wp-cli.php:518, src/admin.php:816,
7519
- #: src/class-updraftplus.php:1297, src/class-updraftplus.php:1341,
7520
  #: src/includes/class-filesystem-functions.php:368,
7521
  #: src/includes/class-storage-methods-interface.php:324,
7522
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
@@ -7526,42 +7530,42 @@ msgstr ""
7526
  msgid "Error"
7527
  msgstr ""
7528
 
7529
- #: src/admin.php:1957
7530
  msgid "Could not find that job - perhaps it has already finished?"
7531
  msgstr ""
7532
 
7533
- #: src/admin.php:1949
7534
  msgid "Job deleted"
7535
  msgstr ""
7536
 
7537
- #: src/admin.php:2048, src/includes/class-commands.php:833
7538
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
7539
  msgstr ""
7540
 
7541
- #: src/admin.php:893
7542
  msgid "Nothing yet logged"
7543
  msgstr ""
7544
 
7545
- #: src/admin.php:1161
7546
  msgid "Please consult this FAQ if you have problems backing up."
7547
  msgstr ""
7548
 
7549
- #: src/admin.php:1161
7550
  msgid "Your website is hosted using the %s web server."
7551
  msgstr ""
7552
 
7553
- #: src/admin.php:1157
7554
  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."
7555
  msgstr ""
7556
 
7557
- #: src/admin.php:1153
7558
  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."
7559
  msgstr ""
7560
 
7561
- #: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1145,
7562
- #: src/admin.php:1149, src/admin.php:1153, src/admin.php:1157,
7563
- #: src/admin.php:1161, src/admin.php:1170, src/admin.php:3907,
7564
- #: src/admin.php:3914, src/admin.php:3916, src/admin.php:5342,
7565
  #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
7566
  #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
7567
  #: src/methods/s3.php:859, src/methods/s3.php:863,
@@ -7572,11 +7576,11 @@ msgstr ""
7572
  msgid "Warning"
7573
  msgstr "সতর্কতা"
7574
 
7575
- #: src/admin.php:1090
7576
  msgid "Add-Ons / Pro Support"
7577
  msgstr "অ্যাড অন / প্রো সাপোর্ট"
7578
 
7579
- #: src/admin.php:677, src/admin.php:1088, src/admin.php:2798
7580
  msgid "Settings"
7581
  msgstr "সেটিংস"
7582
 
@@ -7596,8 +7600,8 @@ msgstr ""
7596
  msgid "Like UpdraftPlus and can spare one minute?"
7597
  msgstr ""
7598
 
7599
- #: src/addons/azure.php:268, src/class-updraftplus.php:3769,
7600
- #: src/methods/googledrive.php:1112, src/methods/s3.php:341
7601
  msgid "File not found"
7602
  msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
7603
 
@@ -7605,12 +7609,12 @@ msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
7605
  msgid "The decryption key used:"
7606
  msgstr ""
7607
 
7608
- #: src/class-updraftplus.php:3976,
7609
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
7610
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
7611
  msgstr ""
7612
 
7613
- #: src/class-updraftplus.php:3964,
7614
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
7615
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
7616
  msgstr ""
@@ -7619,15 +7623,15 @@ msgstr ""
7619
  msgid "Could not open the backup file for writing"
7620
  msgstr ""
7621
 
7622
- #: src/class-updraftplus.php:3531
7623
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
7624
  msgstr ""
7625
 
7626
- #: src/class-updraftplus.php:3515
7627
  msgid "Could not read the directory"
7628
  msgstr "ডিরেক্টরিটি পড়া যায়নি"
7629
 
7630
- #: src/admin.php:2249, src/backup.php:1359
7631
  msgid "Backup directory (%s) is not writable, or does not exist."
7632
  msgstr ""
7633
 
@@ -7635,11 +7639,11 @@ msgstr ""
7635
  msgid "WordPress backup is complete"
7636
  msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
7637
 
7638
- #: src/class-updraftplus.php:3051
7639
  msgid "The backup attempt has finished, apparently unsuccessfully"
7640
  msgstr ""
7641
 
7642
- #: src/class-updraftplus.php:3033
7643
  msgid "The backup apparently succeeded and is now complete"
7644
  msgstr ""
7645
 
@@ -7647,37 +7651,37 @@ msgstr ""
7647
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
7648
  msgstr ""
7649
 
7650
- #: src/class-updraftplus.php:2733
7651
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
7652
  msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
7653
 
7654
- #: src/class-updraftplus.php:1850
7655
  msgid "Others"
7656
  msgstr "অন্যান্য"
7657
 
7658
- #: src/addons/multisite.php:500, src/class-updraftplus.php:1835
7659
  msgid "Uploads"
7660
  msgstr "আপলোডসমূহ"
7661
 
7662
- #: src/class-updraftplus.php:1834
7663
  msgid "Themes"
7664
  msgstr "থিমসমূহ"
7665
 
7666
- #: src/class-updraftplus.php:1833
7667
  msgid "Plugins"
7668
  msgstr "প্লাগইন"
7669
 
7670
- #: src/class-updraftplus.php:623
7671
  msgid "No log files were found."
7672
  msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
7673
 
7674
- #: src/admin.php:2119, src/admin.php:2123, src/class-updraftplus.php:618
7675
  msgid "The log file could not be read."
7676
  msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
7677
 
7678
- #: src/admin.php:1190, src/admin.php:1211, src/admin.php:1230,
7679
- #: src/class-updraftplus.php:583, src/class-updraftplus.php:618,
7680
- #: src/class-updraftplus.php:623, src/class-updraftplus.php:628
7681
  msgid "UpdraftPlus notice:"
7682
  msgstr "UpdraftPlus নোটিশ:"
7683
 
11
  "Language: bn\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/admin.php:5374
15
+ msgid "Clone region:"
16
+ msgstr ""
17
+
18
  #: src/udaddons/updraftplus-addons.php:268,
19
  #: src/udaddons/updraftplus-addons.php:280
20
  msgid "go here"
29
  msgid "Authentication"
30
  msgstr ""
31
 
32
+ #: src/admin.php:926
33
  msgid "You must select at least one remote storage destination to upload this backup set to."
34
  msgstr ""
35
 
49
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
50
  msgstr ""
51
 
52
+ #: src/admin.php:953
53
  msgid "UpdraftClone key is required."
54
  msgstr ""
55
 
56
+ #: src/admin.php:944
57
  msgid "The preparation of the clone data has been aborted."
58
  msgstr ""
59
 
73
  msgid "Your database user does not have permission to drop tables"
74
  msgstr ""
75
 
76
+ #: src/admin.php:2962
77
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
78
  msgstr ""
79
 
241
  msgid "WordPress installed"
242
  msgstr ""
243
 
244
+ #: src/admin.php:5428
245
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
246
  msgstr ""
247
 
248
+ #: src/admin.php:3828
249
  msgid "Exclude these from"
250
  msgstr ""
251
 
252
+ #: src/admin.php:952
253
  msgid "The exclusion rule which you are trying to add already exists"
254
  msgstr ""
255
 
256
+ #: src/admin.php:951
257
  msgid "Please enter a valid file name prefix"
258
  msgstr ""
259
 
260
+ #: src/admin.php:950
261
  msgid "Please enter characters that begin the filename which you would like to exclude"
262
  msgstr ""
263
 
264
+ #: src/admin.php:949
265
  msgid "Please enter a valid file extension"
266
  msgstr ""
267
 
268
+ #: src/admin.php:948
269
  msgid "Please enter a file extension, like zip"
270
  msgstr ""
271
 
272
+ #: src/admin.php:947
273
  msgid "Please select a file/folder which you would like to exclude"
274
  msgstr ""
275
 
276
+ #: src/admin.php:946
277
  msgid "Are you sure you want to remove this exclusion rule?"
278
  msgstr ""
279
 
297
  msgid "failed to upload file to %s (see log file for more)"
298
  msgstr ""
299
 
300
+ #: src/admin.php:5424
301
  msgid "Dashboard:"
302
  msgstr ""
303
 
304
+ #: src/admin.php:5423
305
  msgid "Front page:"
306
  msgstr ""
307
 
308
+ #: src/admin.php:5422
309
  msgid "Your clone has started and will be available at the following URLs once it is ready."
310
  msgstr ""
311
 
317
  msgid "Current clones"
318
  msgstr ""
319
 
320
+ #: src/class-updraftplus.php:2992
321
  msgid "Your clone will now deploy this data to re-create your site."
322
  msgstr ""
323
 
324
+ #: src/admin.php:943
325
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
326
  msgstr ""
327
 
367
  msgid "Unable to get renew date"
368
  msgstr ""
369
 
370
+ #: src/admin.php:906
371
  msgid "The backup was aborted"
372
  msgstr ""
373
 
621
  msgid "You can buy more temporary clone tokens here."
622
  msgstr ""
623
 
624
+ #: src/admin.php:5379
625
  msgid "Forbid non-administrators to login to WordPress on your clone"
626
  msgstr ""
627
 
637
  msgid "Other great plugins"
638
  msgstr ""
639
 
640
+ #: src/admin.php:5426, src/admin.php:5429
641
  msgid "You can find your temporary clone information in your updraftplus.com account here."
642
  msgstr ""
643
 
644
+ #: src/class-updraftplus.php:4177
645
  msgid "Choose a default for each table"
646
  msgstr ""
647
 
648
+ #: src/admin.php:3276
649
  msgid "Sending files to remote site"
650
  msgstr ""
651
 
652
+ #: src/admin.php:3271
653
  msgid "Clone server being provisioned and booted (can take several minutes)"
654
  msgstr ""
655
 
656
+ #: src/admin.php:942
657
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
658
  msgstr ""
659
 
661
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
662
  msgstr ""
663
 
664
+ #: src/admin.php:2798
665
  msgid "Backup / Restore"
666
  msgstr ""
667
 
668
+ #: src/admin.php:663
669
  msgid "Backup"
670
  msgstr ""
671
 
737
  msgid "More information here."
738
  msgstr ""
739
 
740
+ #: src/admin.php:671, src/admin.php:2799
741
  msgid "Migrate / Clone"
742
  msgstr ""
743
 
744
+ #: src/admin.php:3036, src/admin.php:3961,
745
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
746
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
747
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
763
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
764
  msgstr ""
765
 
766
+ #: src/class-updraftplus.php:188
767
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
768
  msgstr ""
769
 
770
+ #: src/admin.php:5402
771
  msgid "(current version)"
772
  msgstr ""
773
 
774
+ #: src/admin.php:3738
775
  msgid "press here"
776
  msgstr ""
777
 
778
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
779
+ #: src/methods/googledrive.php:1214
780
  msgid "this privacy policy"
781
  msgstr ""
782
 
783
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
784
+ #: src/methods/googledrive.php:1214
785
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
786
  msgstr ""
787
 
805
  msgid "Available temporary clone tokens:"
806
  msgstr ""
807
 
808
+ #: src/admin.php:2886, src/includes/class-commands.php:901,
809
  #: src/includes/class-commands.php:949,
810
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
811
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
824
  msgid "I consent to %s"
825
  msgstr ""
826
 
827
+ #: src/admin.php:2984,
828
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
829
  msgid "One Time Password (check your OTP app to get this password)"
830
  msgstr ""
873
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
874
  msgstr ""
875
 
876
+ #: src/admin.php:5344
877
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
878
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
879
  msgstr[0] ""
880
  msgstr[1] ""
881
 
882
+ #: src/admin.php:940
883
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
884
  msgstr ""
885
 
886
+ #: src/admin.php:939
887
  msgid "You can also close this wizard."
888
  msgstr ""
889
 
890
+ #: src/admin.php:938
891
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
892
  msgstr ""
893
 
894
+ #: src/admin.php:937
895
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
896
  msgstr ""
897
 
898
+ #: src/admin.php:936
899
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
900
  msgstr ""
901
 
902
+ #: src/admin.php:935
903
  msgid "Perhaps you would want to login instead."
904
  msgstr ""
905
 
906
+ #: src/admin.php:934
907
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
908
  msgstr ""
909
 
910
+ #: src/admin.php:933
911
  msgid "An email is required and needs to be in a valid format."
912
  msgstr ""
913
 
914
+ #: src/admin.php:932
915
  msgid "Both email and password fields are required."
916
  msgstr ""
917
 
918
+ #: src/admin.php:931
919
  msgid "Registration successful."
920
  msgstr ""
921
 
922
+ #: src/admin.php:930, src/admin.php:931
923
  msgid "Please follow this link to open %s in a new window."
924
  msgstr ""
925
 
926
+ #: src/admin.php:930
927
  msgid "Login successful."
928
  msgstr ""
929
 
930
+ #: src/admin.php:929,
931
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
932
  msgid "UpdraftCentral Cloud"
933
  msgstr ""
934
 
935
+ #: src/admin.php:489
936
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
937
  msgstr ""
938
 
939
+ #: src/admin.php:488
940
  msgid "Dismiss all UpdraftPlus news"
941
  msgstr ""
942
 
943
+ #: src/admin.php:487
944
  msgid "UpdraftPlus News"
945
  msgstr ""
946
 
964
  msgid "Azure Account"
965
  msgstr ""
966
 
967
+ #: src/admin.php:928
968
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
969
  msgstr ""
970
 
976
  msgid "Upload backup"
977
  msgstr ""
978
 
979
+ #: src/admin.php:4248
980
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
981
  msgstr ""
982
 
983
+ #: src/admin.php:927
984
  msgid "(already uploaded)"
985
  msgstr ""
986
 
987
+ #: src/admin.php:925
988
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
989
  msgstr ""
990
 
991
+ #: src/admin.php:846, src/admin.php:4248
992
  msgid "Upload"
993
  msgstr ""
994
 
995
+ #: src/addons/reporting.php:529, src/admin.php:796
996
  msgid "Only email the database backup"
997
  msgstr ""
998
 
1062
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1063
  msgstr ""
1064
 
1065
+ #: src/includes/class-remote-send.php:438
1066
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1067
  msgstr ""
1068
 
1094
  msgid "Thank you for installing UpdraftPlus!"
1095
  msgstr ""
1096
 
1097
+ #: src/includes/class-remote-send.php:532
1098
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1099
  msgstr ""
1100
 
1122
  msgid "Ensure you are logged into the correct account before continuing."
1123
  msgstr ""
1124
 
1125
+ #: src/admin.php:4986
1126
  msgid "Remote storage method and instance id are required for authentication."
1127
  msgstr ""
1128
 
1129
+ #: src/admin.php:4982
1130
  msgid "authentication error"
1131
  msgstr ""
1132
 
1154
  msgid "Delete these settings"
1155
  msgstr ""
1156
 
1157
+ #: src/addons/morestorage.php:81, src/admin.php:924
1158
  msgid "Currently disabled"
1159
  msgstr ""
1160
 
1161
+ #: src/addons/morestorage.php:81, src/admin.php:923
1162
  msgid "Currently enabled"
1163
  msgstr ""
1164
 
1204
  msgstr[0] ""
1205
  msgstr[1] ""
1206
 
1207
+ #: src/class-updraftplus.php:4154
1208
  msgid "Your chosen replacement collation"
1209
  msgstr ""
1210
 
1211
+ #: src/class-updraftplus.php:4131
1212
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1213
  msgstr ""
1214
 
1215
+ #: src/class-updraftplus.php:4131
1216
  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."
1217
  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."
1218
  msgstr[0] ""
1280
  msgid "Requested table character set (%s) is not present - changing to %s."
1281
  msgstr ""
1282
 
1283
+ #: src/class-updraftplus.php:4107
1284
  msgid "Your chosen character set to use instead:"
1285
  msgstr ""
1286
 
1287
+ #: src/class-updraftplus.php:4097
1288
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1289
  msgstr ""
1290
 
1291
+ #: src/class-updraftplus.php:4097
1292
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1293
  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."
1294
  msgstr[0] ""
1338
  msgid "You now need to copy the key below and enter it at your %s."
1339
  msgstr ""
1340
 
1341
+ #: src/admin.php:918
1342
  msgid "Please enter a valid URL e.g http://example.com"
1343
  msgstr ""
1344
 
1378
  msgid "Account ID"
1379
  msgstr ""
1380
 
1381
+ #: src/class-updraftplus.php:3936
1382
  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."
1383
  msgstr ""
1384
 
1385
+ #: src/class-updraftplus.php:3934, src/class-updraftplus.php:3936
1386
  msgid "the migrator add-on"
1387
  msgstr ""
1388
 
1389
+ #: src/class-updraftplus.php:3934
1390
  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."
1391
  msgstr ""
1392
 
1393
+ #: src/class-updraftplus.php:3932
1394
  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."
1395
  msgstr ""
1396
 
1397
+ #: src/class-updraftplus.php:3927
1398
  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."
1399
  msgstr ""
1400
 
1401
+ #: src/methods/googledrive.php:1283
1402
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1403
  msgstr ""
1404
 
1406
  msgid "Follow this link to remove these settings for %s."
1407
  msgstr ""
1408
 
1409
+ #: src/admin.php:897
1410
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1411
  msgstr ""
1412
 
1413
+ #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2133,
1414
+ #: src/class-updraftplus.php:2198,
1415
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1416
  msgid "A PHP fatal error (%s) has occurred: %s"
1417
  msgstr ""
1418
 
1419
+ #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2124,
1420
+ #: src/class-updraftplus.php:2191,
1421
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1422
  msgid "A PHP exception (%s) has occurred: %s"
1423
  msgstr ""
1471
  msgid "Instant and secure logon with a wave of your phone."
1472
  msgstr ""
1473
 
1474
+ #: src/admin.php:5192
1475
  msgid "Value"
1476
  msgstr ""
1477
 
1478
+ #: src/admin.php:1781
1479
  msgid "Did not know how to delete from this cloud service."
1480
  msgstr ""
1481
 
1491
  msgid "Cloud Files"
1492
  msgstr ""
1493
 
1494
+ #: src/admin.php:4934
1495
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1496
  msgstr ""
1497
 
1498
+ #: src/admin.php:4893
1499
  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."
1500
  msgstr ""
1501
 
1512
  msgid "Extra database"
1513
  msgstr ""
1514
 
1515
+ #: src/admin.php:4104
1516
  msgid "Press here to download or browse"
1517
  msgstr ""
1518
 
1519
+ #: src/admin.php:1334, src/admin.php:1344
1520
  msgid "Error: invalid path"
1521
  msgstr ""
1522
 
1523
+ #: src/admin.php:1133
1524
  msgid "An error occurred when fetching storage module options: "
1525
  msgstr ""
1526
 
1527
+ #: src/admin.php:915
1528
  msgid "Loading log file"
1529
  msgstr ""
1530
 
1531
+ #: src/admin.php:914
1532
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1533
  msgstr ""
1534
 
1535
+ #: src/admin.php:913
1536
  msgid "Search"
1537
  msgstr ""
1538
 
1539
+ #: src/admin.php:912
1540
  msgid "Select a file to view information about it"
1541
  msgstr ""
1542
 
1543
+ #: src/admin.php:911
1544
  msgid "Browsing zip file"
1545
  msgstr ""
1546
 
1547
+ #: src/admin.php:878
1548
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1549
  msgstr ""
1550
 
1551
+ #: src/admin.php:824
1552
  msgid "Browse contents"
1553
  msgstr ""
1554
 
1556
  msgid "Skipped tables:"
1557
  msgstr ""
1558
 
1559
+ #: src/class-updraftplus.php:4232
1560
  msgid "This database backup has the following WordPress tables excluded: %s"
1561
  msgstr ""
1562
 
1563
+ #: src/admin.php:3022
1564
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1565
  msgstr ""
1566
 
1567
+ #: src/admin.php:3022
1568
  msgid "All WordPress tables will be backed up."
1569
  msgstr ""
1570
 
1571
+ #: src/admin.php:910
1572
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1573
  msgstr ""
1574
 
1575
+ #: src/admin.php:910
1576
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1577
  msgstr ""
1578
 
1579
+ #: src/admin.php:910
1580
  msgid "The available memory on the server."
1581
  msgstr ""
1582
 
1583
+ #: src/admin.php:910
1584
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1585
  msgstr ""
1586
 
1587
+ #: src/admin.php:910
1588
  msgid "The file failed to upload. Please check the following:"
1589
  msgstr ""
1590
 
1591
+ #: src/admin.php:909
1592
  msgid "HTTP code:"
1593
  msgstr ""
1594
 
1595
+ #: src/addons/wp-cli.php:109, src/admin.php:801
1596
  msgid "You have chosen to backup a database, but no tables have been selected"
1597
  msgstr ""
1598
 
1742
  msgid "Free"
1743
  msgstr ""
1744
 
1745
+ #: src/admin.php:486
1746
  msgid "UpdraftPlus"
1747
  msgstr ""
1748
 
2017
  msgid "Backup of: %s"
2018
  msgstr ""
2019
 
2020
+ #: src/methods/googledrive.php:278
2021
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2022
  msgstr ""
2023
 
2041
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2042
  msgstr ""
2043
 
2044
+ #: src/admin.php:1864
2045
  msgid "Remote files deleted:"
2046
  msgstr ""
2047
 
2048
+ #: src/admin.php:1863
2049
  msgid "Local files deleted:"
2050
  msgstr ""
2051
 
2053
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2054
  msgstr ""
2055
 
2056
+ #: src/admin.php:908
2057
  msgid "remote files deleted"
2058
  msgstr ""
2059
 
2060
+ #: src/admin.php:904
2061
  msgid "Complete"
2062
  msgstr ""
2063
 
2064
+ #: src/admin.php:903
2065
  msgid "Do you want to carry out the import?"
2066
  msgstr ""
2067
 
2068
+ #: src/admin.php:902
2069
  msgid "Which was exported on:"
2070
  msgstr ""
2071
 
2072
+ #: src/admin.php:901
2073
  msgid "This will import data from:"
2074
  msgstr ""
2075
 
2076
+ #: src/admin.php:900
2077
  msgid "Importing..."
2078
  msgstr ""
2079
 
2080
+ #: src/admin.php:896
2081
  msgid "You have not yet selected a file to import."
2082
  msgstr ""
2083
 
2084
+ #: src/admin.php:880
2085
  msgid "Your export file will be of your displayed settings, not your saved ones."
2086
  msgstr ""
2087
 
2088
+ #: src/admin.php:91
2089
  msgid "template not found"
2090
  msgstr ""
2091
 
2101
  msgid "Account is not authorized (%s)."
2102
  msgstr ""
2103
 
2104
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947
2105
  msgid "Your IP address:"
2106
  msgstr "আপনার আইপি অ্যাড্রেসঃ"
2107
 
2108
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947,
2109
+ #: src/udaddons/updraftplus-addons.php:961
2110
  msgid "To remove any block, please go here."
2111
  msgstr "কোন ব্লক সরাতে এখানে যান।"
2112
 
2113
+ #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:932
2114
  msgid "An error response was received; HTTP code:"
2115
  msgstr ""
2116
 
2126
  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"
2127
  msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
2128
 
2129
+ #: src/admin.php:2609
2130
  msgid "To fix this problem go here."
2131
  msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
2132
 
2133
+ #: src/admin.php:2609
2134
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2135
  msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
2136
 
2137
+ #: src/admin.php:864
2138
  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."
2139
  msgstr "আপনার পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল নেই, যার ফলে এটা বেশ কয়েক মিনিট সময় নিতে পারে। তারপরও যদি কিছু না ঘটে, তবে অপেক্ষাকৃত ছোট \"key size\" ব্যাবহার করুন। অথবা আপনার হোস্টিং কোম্পানিকে জিজ্ঞাস করুন কিভাবে পিএইচপি ইনস্টলের ওপেন এসএসএল (SSL) মডিউল চালু করতে হয়।"
2140
 
2162
  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."
2163
  msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ করার মাধ্যমে সৃষ্ট। আপনি যদি বিস্তারিত না জানেন, তাহলে আপনার WebDAV প্রোভাইডারকে জিজ্ঞেস করুন।"
2164
 
2165
+ #: src/udaddons/updraftplus-addons.php:964
2166
  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."
2167
  msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
2168
 
2256
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2257
  msgstr ""
2258
 
2259
+ #: src/methods/googledrive.php:538
2260
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2261
  msgstr "আপলোড সফল হবে নাঃ যেকোন একটি ফাইলের %s লিমিট হচ্ছে %s, যেখনে এই ফাইলের সাইজ হচ্ছে %s GB (%d bytes)"
2262
 
2277
  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."
2278
  msgstr ""
2279
 
2280
+ #: src/class-updraftplus.php:1739
2281
  msgid "Size: %s MB"
2282
  msgstr "সাইজঃ %s MB"
2283
 
2285
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2286
  msgstr ""
2287
 
2288
+ #: src/class-updraftplus.php:3953, src/restorer.php:1446
2289
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2290
  msgstr ""
2291
 
2307
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2308
  msgstr "এই সাইটের জন্য কোন ভল্ট কানেকশন পাওয়া যায়নি (এটা কি স্থানান্তর করা হয়েছে?), দয়া করে ডিসকানেক্ট করে আবার কানেক্ট করুন।"
2309
 
2310
+ #: src/class-updraftplus.php:584, src/class-updraftplus.php:629
2311
  msgid "The given file was not found, or could not be read."
2312
  msgstr "প্রদত্ত ফাইল পাওয়া যায়নি অথবা পড়া সম্ভব হয়নি।"
2313
 
2391
  msgid "UpdraftCentral Connection"
2392
  msgstr ""
2393
 
2394
+ #: src/backup.php:1042, src/class-updraftplus.php:2973
2395
  msgid "The backup was aborted by the user"
2396
  msgstr ""
2397
 
2398
+ #: src/admin.php:4929
2399
  msgid "Your settings have been saved."
2400
  msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
2401
 
2402
+ #: src/admin.php:4009
2403
  msgid "Total backup size:"
2404
  msgstr ""
2405
 
2406
+ #: src/admin.php:3416
2407
  msgid "stop"
2408
  msgstr ""
2409
 
2410
+ #: src/admin.php:905, src/admin.php:3209
2411
  msgid "The backup has finished running"
2412
  msgstr ""
2413
 
2433
  msgid "calculate"
2434
  msgstr "গণনা করুন"
2435
 
2436
+ #: src/admin.php:879
2437
  msgid "You should save your changes to ensure that they are used for making your backup."
2438
  msgstr ""
2439
 
2440
+ #: src/admin.php:872
2441
  msgid "We requested to delete the file, but could not understand the server's response"
2442
  msgstr ""
2443
 
2444
+ #: src/admin.php:871
2445
  msgid "Please enter a valid URL"
2446
  msgstr "দয়া করে সঠিক URL প্রবেশ করান"
2447
 
2448
+ #: src/admin.php:854
2449
  msgid "Saving..."
2450
  msgstr "সংরক্ষণ হচ্ছে..."
2451
 
2452
+ #: src/admin.php:815
2453
  msgid "Error: the server sent us a response which we did not understand."
2454
  msgstr ""
2455
 
2456
+ #: src/admin.php:807
2457
  msgid "Fetching..."
2458
  msgstr "আনা হচ্ছে..."
2459
 
2469
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2470
  msgstr ""
2471
 
2472
+ #: src/class-updraftplus.php:4005, src/restorer.php:2227
2473
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2474
  msgstr ""
2475
 
2476
+ #: src/class-updraftplus.php:4001
2477
  msgid "Please read this link for important information on this process."
2478
  msgstr ""
2479
 
2480
+ #: src/class-updraftplus.php:4001
2481
  msgid "It will be imported as a new site."
2482
  msgstr ""
2483
 
2484
+ #: src/admin.php:2842, src/templates/wp-admin/notices/horizontal-notice.php:16,
2485
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2486
  msgid "Dismiss"
2487
  msgstr "খারিজ"
2488
 
2489
+ #: src/admin.php:891
2490
  msgid "Please fill in the required information."
2491
  msgstr ""
2492
 
2547
  msgid "Call WordPress action:"
2548
  msgstr ""
2549
 
2550
+ #: src/admin.php:3032
2551
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2552
  msgstr ""
2553
 
2579
  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)."
2580
  msgstr ""
2581
 
2582
+ #: src/admin.php:4803
2583
  msgid "Send this backup to remote storage"
2584
  msgstr ""
2585
 
2586
+ #: src/admin.php:4801
2587
  msgid "Check out UpdraftPlus Vault."
2588
  msgstr ""
2589
 
2590
+ #: src/admin.php:4801
2591
  msgid "Not got any remote storage?"
2592
  msgstr ""
2593
 
2594
+ #: src/admin.php:4801
2595
  msgid "settings"
2596
  msgstr "সেটিংস"
2597
 
2598
+ #: src/admin.php:4801
2599
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2600
  msgstr ""
2601
 
2602
+ #: src/admin.php:3030
2603
  msgid "Include any files in the backup"
2604
  msgstr ""
2605
 
2606
+ #: src/admin.php:3014
2607
  msgid "Include the database in the backup"
2608
  msgstr ""
2609
 
2610
+ #: src/admin.php:2841
2611
  msgid "Continue restoration"
2612
  msgstr ""
2613
 
2614
+ #: src/admin.php:2836
2615
  msgid "You have an unfinished restoration operation, begun %s ago."
2616
  msgstr ""
2617
 
2618
+ #: src/admin.php:2835
2619
  msgid "Unfinished restoration"
2620
  msgstr ""
2621
 
2622
+ #: src/admin.php:2833
2623
  msgid "%s minutes, %s seconds"
2624
  msgstr ""
2625
 
2626
+ #: src/admin.php:2699
2627
  msgid "Backup Contents And Schedule"
2628
  msgstr ""
2629
 
2630
+ #: src/admin.php:2802
2631
  msgid "Premium / Extensions"
2632
  msgstr ""
2633
 
2634
+ #: src/admin.php:2476, src/admin.php:2485
2635
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2636
  msgstr ""
2637
 
2638
+ #: src/addons/morefiles.php:71, src/admin.php:877
2639
  msgctxt "(verb)"
2640
  msgid "Download"
2641
  msgstr ""
2642
 
2643
+ #: src/admin.php:800
2644
  msgid "You have chosen to backup files, but no file entities have been selected"
2645
  msgstr ""
2646
 
2647
+ #: src/admin.php:695
2648
  msgid "Extensions"
2649
  msgstr ""
2650
 
2651
+ #: src/admin.php:687, src/admin.php:2801
2652
  msgid "Advanced Tools"
2653
  msgstr ""
2654
 
2767
  msgid "Could not access container"
2768
  msgstr ""
2769
 
2770
+ #: src/class-updraftplus.php:2992
2771
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
2772
  msgstr ""
2773
 
2897
  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)."
2898
  msgstr ""
2899
 
2900
+ #: src/admin.php:1862
2901
  msgid "Backup sets removed:"
2902
  msgstr ""
2903
 
2904
+ #: src/admin.php:890
2905
  msgid "Processing..."
2906
  msgstr ""
2907
 
2908
+ #: src/admin.php:888
2909
  msgid "For backups older than"
2910
  msgstr ""
2911
 
2912
+ #: src/admin.php:887
2913
  msgid "week(s)"
2914
  msgstr ""
2915
 
2916
+ #: src/admin.php:886
2917
  msgid "hour(s)"
2918
  msgstr ""
2919
 
2920
+ #: src/admin.php:885
2921
  msgid "day(s)"
2922
  msgstr ""
2923
 
2924
+ #: src/admin.php:884
2925
  msgid "in the month"
2926
  msgstr ""
2927
 
2928
+ #: src/admin.php:883
2929
  msgid "day"
2930
  msgstr ""
2931
 
2949
  msgid "You do not currently have any UpdraftPlus Vault quota"
2950
  msgstr ""
2951
 
2952
+ #: src/class-updraftplus.php:4076
2953
  msgid "You must upgrade MySQL to be able to use this database."
2954
  msgstr ""
2955
 
2956
+ #: src/class-updraftplus.php:4076
2957
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
2958
  msgstr ""
2959
 
2960
+ #: src/admin.php:2594
2961
  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."
2962
  msgstr ""
2963
 
2985
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
2986
  msgstr ""
2987
 
2988
+ #: src/admin.php:1192
2989
  msgid "Go to the remote storage settings in order to connect."
2990
  msgstr ""
2991
 
2992
+ #: src/admin.php:1192
2993
  msgid "%s has been chosen for remote storage, but you are not currently connected."
2994
  msgstr ""
2995
 
2997
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
2998
  msgstr "পেমেন্ট ইউএস ডলার, ইউরো বা GB pounds sterling এর মাধ্যমে কার্ড বা পেপ্যাল এর দ্বারা করতে হবে।"
2999
 
3000
+ #: src/admin.php:860
3001
  msgid "Update quota count"
3002
  msgstr " প্রাপ্য সংখ্যা হালনাগাদ"
3003
 
3004
+ #: src/admin.php:859
3005
  msgid "Counting..."
3006
  msgstr "গণনা করা হচ্ছে..."
3007
 
3008
+ #: src/admin.php:858
3009
  msgid "Disconnecting..."
3010
  msgstr "সংযোগ বিচ্ছিন্ন করা হচ্ছে..."
3011
 
3012
+ #: src/admin.php:856
3013
  msgid "Connecting..."
3014
  msgstr "সংযোগ করা হচ্ছে..."
3015
 
3035
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3036
  msgstr "%s ইরোর: আপনার যথেষ্ট প্রাপ্য(%s) নেই আর্কাইভটি(%s) আপলোড করার জন্য।"
3037
 
3038
+ #: src/admin.php:857, src/methods/updraftvault.php:392,
3039
  #: src/methods/updraftvault.php:450
3040
  msgid "Disconnect"
3041
  msgstr "সংযোগ বিচ্ছিন্ন করুন"
3153
  msgid "Allow download"
3154
  msgstr "ডাউনলোড এর অনুমতি দিন"
3155
 
3156
+ #: src/includes/class-remote-send.php:314
3157
  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."
3158
  msgstr ""
3159
 
3160
+ #: src/admin.php:866, src/includes/class-remote-send.php:299
3161
  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."
3162
  msgstr ""
3163
 
3164
+ #: src/includes/class-remote-send.php:541
3165
  msgid "Existing keys"
3166
  msgstr ""
3167
 
3173
  msgid "You must copy and paste this key now - it cannot be shown again."
3174
  msgstr ""
3175
 
3176
+ #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:438
3177
  msgid "Key created successfully."
3178
  msgstr "চাবি সফলভাবে তৈরি করা হয়েছে।"
3179
 
3180
+ #: src/includes/class-remote-send.php:421
3181
  msgid "A key with this name already exists; you must use a unique name."
3182
  msgstr ""
3183
 
3184
+ #: src/includes/class-remote-send.php:345
3185
  msgid "Also send this backup to the active remote storage locations"
3186
  msgstr ""
3187
 
3188
+ #: src/includes/class-remote-send.php:310
3189
  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."
3190
  msgstr ""
3191
 
3192
+ #: src/includes/class-remote-send.php:266
3193
  msgid "site not found"
3194
  msgstr "সাইট খুঁজে পাওয়া যায় নি"
3195
 
3196
+ #: src/includes/class-remote-send.php:251
3197
  msgid "Backup data will be sent to:"
3198
  msgstr "ব্যাক তথ্য পাঠানো হবে:"
3199
 
3213
  msgid "This storage method does not allow downloading"
3214
  msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
3215
 
3216
+ #: src/admin.php:4167
3217
  msgid "(backup set imported from remote location)"
3218
  msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
3219
 
3235
  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."
3236
  msgstr ""
3237
 
3238
+ #: src/admin.php:873, src/includes/class-remote-send.php:327
3239
  msgid "Testing connection..."
3240
  msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
3241
 
3242
+ #: src/admin.php:870,
3243
  #: src/templates/wp-admin/settings/existing-backups-table.php:161
3244
  msgid "Deleting..."
3245
  msgstr "মুছে ফেলা হচ্ছে..."
3246
 
3247
+ #: src/admin.php:869
3248
  msgid "key name"
3249
  msgstr "চাবির(কি) নাম"
3250
 
3251
+ #: src/admin.php:867
3252
  msgid "Please give this key a name (e.g. indicate the site it is for):"
3253
  msgstr "এই চাবিকাঠির একটি নাম দিন (e.g. indicate the site it is for):"
3254
 
3255
+ #: src/admin.php:864
3256
  msgid "Creating..."
3257
  msgstr "তৈরি করা হচ্ছে..."
3258
 
3276
  msgid "Send a backup to another site"
3277
  msgstr ""
3278
 
3279
+ #: src/admin.php:874, src/includes/class-remote-send.php:358,
3280
+ #: src/includes/class-remote-send.php:520
3281
  msgid "Send"
3282
  msgstr "পাঠান"
3283
 
3284
+ #: src/admin.php:865, src/includes/class-remote-send.php:514
3285
  msgid "Send to site:"
3286
  msgstr ""
3287
 
3288
+ #: src/includes/class-remote-send.php:512
3289
  msgid "No receiving sites have yet been added."
3290
  msgstr "কোন প্রাপ্তির সাইট এখনো যোগ হয়নি"
3291
 
3292
+ #: src/includes/class-remote-send.php:493
3293
  msgid "It is for sending backups to the following site: "
3294
  msgstr ""
3295
 
3296
+ #: src/includes/class-remote-send.php:493
3297
  msgid "The key was successfully added."
3298
  msgstr ""
3299
 
3300
+ #: src/includes/class-remote-send.php:477
3301
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
3302
  msgstr ""
3303
 
3304
+ #: src/includes/class-remote-send.php:466,
3305
+ #: src/includes/class-remote-send.php:468,
3306
+ #: src/includes/class-remote-send.php:472
3307
  msgid "The entered key was corrupt - please try again."
3308
  msgstr ""
3309
 
3310
+ #: src/includes/class-remote-send.php:464
3311
  msgid "The entered key was the wrong length - please try again."
3312
  msgstr ""
3313
 
3314
+ #: src/includes/class-remote-send.php:454
3315
  msgid "key"
3316
  msgstr "চাবি"
3317
 
3347
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3348
  msgstr ""
3349
 
3350
+ #: src/admin.php:863
3351
  msgid "Resetting..."
3352
  msgstr ""
3353
 
3354
+ #: src/addons/migrator.php:1745, src/admin.php:862
3355
  msgid "Add site"
3356
  msgstr "সাইট যুক্ত করুন"
3357
 
3358
+ #: src/admin.php:861
3359
  msgid "Adding..."
3360
  msgstr "যুক্ত করা হচ্ছে..."
3361
 
3362
+ #: src/udaddons/options.php:298
3363
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
3364
  msgstr ""
3365
 
3367
  msgid "To use this backup, your database server needs to support the %s character set."
3368
  msgstr ""
3369
 
3370
+ #: src/udaddons/updraftplus-addons.php:997
3371
  msgid "go here to change your password on updraftplus.com."
3372
  msgstr "আপনার updraftplus.com এর পাসওয়ার্ডটি পরিবর্তন করতে এখানে যান।"
3373
 
3374
+ #: src/udaddons/updraftplus-addons.php:997
3375
  msgid "If you have forgotten your password "
3376
  msgstr "আপনি যদি আপনার পাসওয়ার্ডটি ভুলে গিয়ে থাকেন"
3377
 
3378
+ #: src/udaddons/updraftplus-addons.php:996
3379
  msgid "Go here to re-enter your password."
3380
  msgstr "এখানে যান আপনার পাসওয়ার্ডটি পুনরাই দিতে।"
3381
 
3383
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3384
  msgstr ""
3385
 
3386
+ #: src/admin.php:853, src/admin.php:879, src/admin.php:880
3387
  msgid "You have made changes to your settings, and not saved."
3388
  msgstr ""
3389
 
3396
  msgstr ""
3397
 
3398
  #: src/addons/azure.php:605, src/addons/onedrive.php:1148,
3399
+ #: src/includes/class-remote-send.php:314
3400
  msgid "For longer help, including screenshots, follow this link."
3401
  msgstr ""
3402
 
3589
 
3590
  #: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
3591
  #: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
3592
+ #: src/udaddons/updraftplus-addons.php:947,
3593
+ #: src/udaddons/updraftplus-addons.php:961
3594
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
3595
  msgstr ""
3596
 
3597
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3598
+ #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:961
3599
  msgid "It appears that your web server's IP Address (%s) is blocked."
3600
  msgstr "আপনার ওয়েব সার্ভার এর আইপি ঠিকানা (%s) ব্লক করা হয়ছে বলে মনে হচ্ছে।"
3601
 
3602
  #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3603
+ #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:961
3604
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
3605
  msgstr "UpdraftPlus.com 'অ্যাকসেস অস্বীকার' প্রতিক্রিয়া পাঠিয়েছে।"
3606
 
3642
  msgid "(at same time as files backup)"
3643
  msgstr ""
3644
 
3645
+ #: src/admin.php:3703
3646
  msgid "No backup has been completed"
3647
  msgstr ""
3648
 
3671
  msgid "Full feature list"
3672
  msgstr "সম্পূর্ণ বৈশিষ্ট্যের তালিকা"
3673
 
3674
+ #: src/addons/autobackup.php:1080
3675
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3676
  msgstr ""
3677
 
3685
  msgid "or"
3686
  msgstr "অথবা"
3687
 
3688
+ #: src/admin.php:847
3689
  msgid "You did not select any components to restore. Please select at least one, and then try again."
3690
  msgstr ""
3691
 
3716
  msgid "Check this box to have a basic report sent to"
3717
  msgstr ""
3718
 
3719
+ #: src/admin.php:3717
3720
  msgctxt "i.e. Non-automatic"
3721
  msgid "Manual"
3722
  msgstr ""
3734
  msgid "Any other file/directory on your server that you wish to backup"
3735
  msgstr ""
3736
 
3737
+ #: src/admin.php:2611
3738
  msgid "For even more features and personal support, check out "
3739
  msgstr ""
3740
 
3742
  msgid "Database decryption phrase"
3743
  msgstr "ডাটাবেস ডিক্রিপশন শব্দগুচ্ছ"
3744
 
3745
+ #: src/addons/autobackup.php:157, src/addons/autobackup.php:1026,
3746
+ #: src/admin.php:852
3747
  msgid "Automatic backup before update"
3748
  msgstr "আপডেট করার আগে স্বয়ংক্রিয় ব্যাকআপ"
3749
 
3824
  msgid "(learn more about this significant option)"
3825
  msgstr ""
3826
 
3827
+ #: src/udaddons/options.php:241
3828
  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."
3829
  msgstr ""
3830
 
3831
+ #: src/admin.php:3209, src/admin.php:4278
3832
  msgid "View Log"
3833
  msgstr ""
3834
 
3847
  msgid "and retain this many scheduled backups"
3848
  msgstr ""
3849
 
3850
+ #: src/admin.php:3673
3851
  msgid "incremental backup; base backup: %s"
3852
  msgstr ""
3853
 
3860
  msgid "Upload files into UpdraftPlus."
3861
  msgstr ""
3862
 
3863
+ #: src/admin.php:1138, src/includes/class-commands.php:462,
3864
  #: src/templates/wp-admin/settings/take-backup.php:12
3865
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
3866
  msgstr ""
3867
 
3868
+ #: src/class-updraftplus.php:3990
3869
  msgid "Backup label:"
3870
  msgstr ""
3871
 
3872
+ #: src/addons/backblaze.php:205, src/admin.php:2113
3873
  msgid "Error: unexpected file read fail"
3874
  msgstr ""
3875
 
3889
  msgid "Your label for this backup (optional)"
3890
  msgstr ""
3891
 
3892
+ #: src/methods/googledrive.php:1200
3893
  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."
3894
  msgstr ""
3895
 
3896
+ #: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:1000
3897
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
3898
  msgstr ""
3899
 
3900
+ #: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:996
3901
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
3902
  msgstr ""
3903
 
3904
+ #: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:862
3905
  msgid "You need to supply both an email address and a password"
3906
  msgstr ""
3907
 
3908
+ #: src/class-updraftplus.php:4009
3909
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3910
  msgstr ""
3911
 
3912
+ #: src/class-updraftplus.php:4009
3913
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3914
  msgstr ""
3915
 
3946
  msgid "You need to connect to receive future updates to UpdraftPlus."
3947
  msgstr ""
3948
 
3949
+ #: src/class-updraftplus.php:3982
3950
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3951
  msgstr ""
3952
 
3953
+ #: src/class-updraftplus.php:3982
3954
  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."
3955
  msgstr ""
3956
 
3957
+ #: src/class-updraftplus.php:3982
3958
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3959
  msgstr ""
3960
 
3961
+ #: src/class-updraftplus.php:3982
3962
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3963
  msgstr ""
3964
 
3987
  msgid "UpdraftPlus is on social media - check us out!"
3988
  msgstr ""
3989
 
3990
+ #: src/addons/wp-cli.php:907, src/admin.php:4466
3991
  msgid "Why am I seeing this?"
3992
  msgstr "আমি কেন এটি দেখছি?"
3993
 
4001
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
4002
  msgstr ""
4003
 
4004
+ #: src/admin.php:2050, src/admin.php:2062, src/includes/class-commands.php:833
4005
  msgid "Start backup"
4006
  msgstr "ব্যাকআপ শুরু করুন"
4007
 
4008
+ #: src/class-updraftplus.php:3953, src/restorer.php:1446
4009
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4010
  msgstr ""
4011
 
4012
+ #: src/admin.php:3571
4013
  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."
4014
  msgstr ""
4015
 
4017
  msgid "Unless you have a problem, you can completely ignore everything here."
4018
  msgstr ""
4019
 
4020
+ #: src/admin.php:2288
4021
  msgid "This file could not be uploaded"
4022
  msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
4023
 
4024
+ #: src/admin.php:2251
4025
  msgid "You will find more information about this in the Settings section."
4026
  msgstr ""
4027
 
4049
  msgid "Full backup"
4050
  msgstr ""
4051
 
4052
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4053
  msgid "now proceeding with the updates..."
4054
  msgstr ""
4055
 
4056
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4057
  msgid "(view log...)"
4058
  msgstr ""
4059
 
4060
+ #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4061
  msgid "Backup succeeded"
4062
  msgstr ""
4063
 
4064
  #: src/addons/incremental.php:237, src/addons/incremental.php:238,
4065
  #: src/addons/incremental.php:239, src/addons/incremental.php:240,
4066
+ #: src/admin.php:3718, src/admin.php:3719, src/admin.php:3720,
4067
  #: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
4068
  msgid "Every %s hours"
4069
  msgstr ""
4114
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4115
  msgstr ""
4116
 
4117
+ #: src/methods/googledrive.php:1207
4118
  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."
4119
  msgstr ""
4120
 
4138
  msgid "Free disk space in account:"
4139
  msgstr ""
4140
 
4141
+ #: src/admin.php:4900, src/templates/wp-admin/settings/take-backup.php:50
4142
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
4143
  msgstr ""
4144
 
4145
+ #: src/admin.php:819, src/admin.php:1918,
4146
  #: src/includes/deprecated-actions.php:29,
4147
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4148
  #: src/templates/wp-admin/settings/tab-backups.php:21,
4150
  msgid "Existing Backups"
4151
  msgstr ""
4152
 
4153
+ #: src/admin.php:1143
4154
  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."
4155
  msgstr ""
4156
 
4157
+ #: src/admin.php:1143
4158
  msgid "To make a backup, just press the Backup Now button."
4159
  msgstr ""
4160
 
4161
+ #: src/admin.php:1143
4162
  msgid "Welcome to UpdraftPlus!"
4163
  msgstr ""
4164
 
4230
  msgid "user"
4231
  msgstr ""
4232
 
4233
+ #: src/class-updraftplus.php:1736
4234
  msgid "External database (%s)"
4235
  msgstr ""
4236
 
4237
+ #: src/methods/googledrive.php:1207
4238
  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."
4239
  msgstr ""
4240
 
4241
+ #: src/methods/googledrive.php:502
4242
  msgid "failed to access parent folder"
4243
  msgstr ""
4244
 
4245
  #: src/addons/googlecloud.php:698, src/addons/onedrive.php:907,
4246
+ #: src/addons/onedrive.php:918, src/methods/googledrive.php:442,
4247
+ #: src/methods/googledrive.php:455
4248
  msgid "However, subsequent access attempts failed:"
4249
  msgstr ""
4250
 
4251
+ #: src/addons/wp-cli.php:437, src/admin.php:4034
4252
  msgid "External database"
4253
  msgstr ""
4254
 
4280
  msgid "use UpdraftPlus Premium"
4281
  msgstr ""
4282
 
4283
+ #: src/class-updraftplus.php:3833
4284
  msgid "Decryption failed. The database file is encrypted."
4285
  msgstr ""
4286
 
4335
  msgid "Tenant"
4336
  msgstr ""
4337
 
4338
+ #: src/addons/wp-cli.php:800, src/admin.php:4588, src/admin.php:5344,
4339
  #: src/methods/openstack2.php:144,
4340
  #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
4341
  #: src/templates/wp-admin/settings/tab-backups.php:27,
4415
  msgstr ""
4416
 
4417
  #: src/addons/googlecloud.php:1108, src/addons/onedrive.php:1248,
4418
+ #: src/methods/dropbox.php:668, src/methods/googledrive.php:1289
4419
  msgid "Account holder's name: %s."
4420
  msgstr ""
4421
 
4422
+ #: src/methods/googledrive.php:1266
4423
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4424
  msgstr ""
4425
 
4426
+ #: src/methods/googledrive.php:1253
4427
  msgid "It is an ID number internal to Google Drive"
4428
  msgstr ""
4429
 
4430
+ #: src/methods/googledrive.php:1253
4431
  msgid "<strong>This is NOT a folder name</strong>."
4432
  msgstr ""
4433
 
4434
+ #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1248,
4435
+ #: src/methods/googledrive.php:1259
4436
  msgid "Folder"
4437
  msgstr ""
4438
 
4439
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:451,
4440
+ #: src/methods/googledrive.php:1160
4441
  msgid "%s download: failed: file not found"
4442
  msgstr ""
4443
 
4444
+ #: src/addons/googlecloud.php:718, src/methods/googledrive.php:475
4445
  msgid "Name: %s."
4446
  msgstr ""
4447
 
4448
+ #: src/methods/googledrive.php:216
4449
  msgid "Google Drive list files: failed to access parent folder"
4450
  msgstr ""
4451
 
4481
  msgid "Failed to unpack the archive"
4482
  msgstr ""
4483
 
4484
+ #: src/class-updraftplus.php:1366
4485
  msgid "Error - failed to download the file"
4486
  msgstr ""
4487
 
4506
  msgid "password/key"
4507
  msgstr ""
4508
 
4509
+ #: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:868,
4510
+ #: src/admin.php:5192, src/templates/wp-admin/settings/temporary-clone.php:63
4511
  msgid "Key"
4512
  msgstr ""
4513
 
4523
  msgid "SCP/SFTP password/key"
4524
  msgstr ""
4525
 
4526
+ #: src/addons/wp-cli.php:449, src/admin.php:4078
4527
  msgid "Files backup (created by %s)"
4528
  msgstr ""
4529
 
4530
+ #: src/addons/wp-cli.php:449, src/admin.php:4078
4531
  msgid "Files and database WordPress backup (created by %s)"
4532
  msgstr ""
4533
 
4534
+ #: src/addons/importer.php:276, src/admin.php:4072,
4535
  #: src/includes/class-backup-history.php:435
4536
  msgid "Backup created by: %s."
4537
  msgstr ""
4538
 
4539
+ #: src/addons/wp-cli.php:431, src/admin.php:4032
4540
  msgid "Database (created by %s)"
4541
  msgstr ""
4542
 
4543
+ #: src/addons/wp-cli.php:429, src/admin.php:4026, src/admin.php:4074
4544
  msgid "unknown source"
4545
  msgstr ""
4546
 
4555
  msgid "Upload backup files"
4556
  msgstr ""
4557
 
4558
+ #: src/admin.php:2303
4559
  msgid "This backup was created by %s, and can be imported."
4560
  msgstr ""
4561
 
4562
+ #: src/admin.php:1172
4563
  msgid "Read this page for a guide to possible causes and how to fix it."
4564
  msgstr ""
4565
 
4566
+ #: src/admin.php:1172
4567
  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."
4568
  msgstr ""
4569
 
4570
+ #: src/admin.php:831, src/includes/class-backup-history.php:442
4571
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
4572
  msgstr ""
4573
 
4574
+ #: src/admin.php:830
4575
  msgid "However, UpdraftPlus archives are standard zip/SQL files - so if you are sure that your file has the right format, then you can rename it to match that pattern."
4576
  msgstr ""
4577
 
4578
+ #: src/admin.php:830, src/admin.php:831,
4579
  #: src/includes/class-backup-history.php:442
4580
  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))."
4581
  msgstr ""
4582
 
4583
+ #: src/admin.php:4075, src/includes/class-wpadmin-commands.php:162,
4584
  #: src/restorer.php:1975
4585
  msgid "Backup created by unknown source (%s) - cannot be restored."
4586
  msgstr ""
4610
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
4611
  msgstr ""
4612
 
4613
+ #: src/admin.php:797
4614
  msgid "Rescanning remote and local storage for backup sets..."
4615
  msgstr ""
4616
 
4640
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4641
  msgstr ""
4642
 
4643
+ #: src/addons/morefiles.php:476, src/admin.php:3831
4644
  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."
4645
  msgstr ""
4646
 
4669
  msgid "Backup created by:"
4670
  msgstr ""
4671
 
4672
+ #: src/udaddons/options.php:483
4673
  msgid "Available to claim on this site"
4674
  msgstr ""
4675
 
4756
  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)"
4757
  msgstr ""
4758
 
4759
+ #: src/udaddons/updraftplus-addons.php:479,
4760
+ #: src/udaddons/updraftplus-addons.php:568
4761
  msgid "Errors occurred:"
4762
  msgstr ""
4763
 
4764
+ #: src/addons/wp-cli.php:664, src/admin.php:4508
4765
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
4766
  msgstr ""
4767
 
4785
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
4786
  msgstr ""
4787
 
4788
+ #: src/admin.php:1147, src/class-updraftplus.php:848
4789
  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)"
4790
  msgstr ""
4791
 
4798
  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."
4799
  msgstr ""
4800
 
4801
+ #: src/addons/moredatabase.php:144, src/admin.php:1642
4802
  msgid "Messages:"
4803
  msgstr ""
4804
 
4964
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4965
  msgstr ""
4966
 
4967
+ #: src/admin.php:845, src/central/bootstrap.php:565
4968
  msgid "Create"
4969
  msgstr ""
4970
 
4971
+ #: src/admin.php:806
4972
  msgid "Trying..."
4973
  msgstr ""
4974
 
4975
+ #: src/admin.php:805
4976
  msgid "The new user's RackSpace console password is (this will not be shown again):"
4977
  msgstr ""
4978
 
4979
+ #: src/addons/wp-cli.php:797, src/admin.php:816, src/admin.php:4586
4980
  msgid "Error data:"
4981
  msgstr ""
4982
 
4983
+ #: src/admin.php:4489
4984
  msgid "Backup does not exist in the backup history"
4985
  msgstr ""
4986
 
4987
+ #: src/admin.php:3145
4988
  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."
4989
  msgstr ""
4990
 
5024
  msgid "Email reports"
5025
  msgstr ""
5026
 
5027
+ #: src/class-updraftplus.php:1744, src/class-updraftplus.php:1749
5028
  msgid "%s checksum: %s"
5029
  msgstr ""
5030
 
5031
+ #: src/class-updraftplus.php:1680, src/class-updraftplus.php:1682
5032
  msgid "files: %s"
5033
  msgstr ""
5034
 
5040
  msgid "Debugging information"
5041
  msgstr ""
5042
 
5043
+ #: src/addons/reporting.php:223, src/admin.php:3992
5044
  msgid "Uploaded to:"
5045
  msgstr ""
5046
 
5085
  msgid "%s authentication"
5086
  msgstr ""
5087
 
5088
+ #: src/addons/onedrive.php:864, src/class-updraftplus.php:532,
5089
  #: src/methods/dropbox.php:240, src/methods/dropbox.php:753,
5090
  #: src/methods/dropbox.php:775, src/methods/dropbox.php:790,
5091
  #: src/methods/dropbox.php:803, src/methods/dropbox.php:946
5112
  msgid "Your site's admin email address (%s) will be used."
5113
  msgstr ""
5114
 
5115
+ #: src/admin.php:855, src/admin.php:2876, src/methods/updraftvault.php:319,
5116
  #: src/methods/updraftvault.php:362,
5117
  #: src/templates/wp-admin/settings/temporary-clone.php:82
5118
  msgid "Connect"
5122
  msgid "For more reporting features, use the Reporting add-on."
5123
  msgstr ""
5124
 
5125
+ #: src/class-updraftplus.php:3914
5126
  msgid "(version: %s)"
5127
  msgstr ""
5128
 
5129
+ #: src/admin.php:794
5130
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
5131
  msgstr ""
5132
 
5133
+ #: src/addons/reporting.php:527, src/admin.php:793
5134
  msgid "When the Email storage method is enabled, also send the backup"
5135
  msgstr ""
5136
 
5170
  msgid "Files (database backup has not completed)"
5171
  msgstr ""
5172
 
5173
+ #: src/admin.php:334, src/backup.php:1044
5174
  msgid "Files and database"
5175
  msgstr ""
5176
 
5194
  msgid "UpdraftPlus warning:"
5195
  msgstr ""
5196
 
5197
+ #: src/udaddons/options.php:489
5198
  msgid "(or connect using the form on this page if you have already purchased it)"
5199
  msgstr ""
5200
 
5201
+ #: src/udaddons/options.php:477
5202
  msgid "please follow this link to update the plugin in order to activate it"
5203
  msgstr ""
5204
 
5205
+ #: src/udaddons/options.php:474
5206
  msgid "please follow this link to update the plugin in order to get it"
5207
  msgstr ""
5208
 
5209
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
5210
  msgid "latest"
5211
  msgstr ""
5212
 
5213
+ #: src/udaddons/options.php:462
5214
  msgid "Your version: %s"
5215
  msgstr ""
5216
 
5217
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
5218
  msgid "You've got it"
5219
  msgstr ""
5220
 
5221
+ #: src/udaddons/options.php:421
5222
  msgid "UpdraftPlus Support"
5223
  msgstr ""
5224
 
5225
+ #: src/udaddons/options.php:361
5226
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
5227
  msgstr ""
5228
 
5229
+ #: src/udaddons/options.php:350, src/udaddons/updraftplus-addons.php:315
5230
  msgid "UpdraftPlus Addons"
5231
  msgstr ""
5232
 
5235
  msgstr ""
5236
 
5237
  #: src/methods/updraftvault.php:709, src/methods/updraftvault.php:724,
5238
+ #: src/udaddons/updraftplus-addons.php:1007
5239
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
5240
  msgstr ""
5241
 
5242
+ #: src/methods/updraftvault.php:721, src/udaddons/updraftplus-addons.php:1003
5243
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
5244
  msgstr ""
5245
 
5246
  #: src/includes/updraftplus-login.php:58, src/methods/updraftvault.php:682,
5247
+ #: src/udaddons/updraftplus-addons.php:966
5248
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
5249
  msgstr ""
5250
 
5251
+ #: src/udaddons/updraftplus-addons.php:889
5252
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
5253
  msgstr ""
5254
 
5255
+ #: src/udaddons/updraftplus-addons.php:887
5256
  msgid "We failed to successfully connect to UpdraftPlus.Com"
5257
  msgstr ""
5258
 
5263
  msgid "Reporting"
5264
  msgstr ""
5265
 
5266
+ #: src/admin.php:5189
5267
  msgid "Options (raw)"
5268
  msgstr ""
5269
 
5270
+ #: src/addons/reporting.php:525, src/admin.php:792
5271
  msgid "Send a report only when there are warnings/errors"
5272
  msgstr ""
5273
 
5283
  msgid "See also the \"More Files\" add-on from our shop."
5284
  msgstr ""
5285
 
5286
+ #: src/backup.php:3424, src/class-updraftplus.php:861
5287
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
5288
  msgstr ""
5289
 
5290
+ #: src/class-updraftplus.php:845
5291
  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)"
5292
  msgstr ""
5293
 
5294
+ #: src/udaddons/options.php:512
5295
  msgid "Manage Addons"
5296
  msgstr ""
5297
 
5298
+ #: src/udaddons/options.php:490, src/udaddons/options.php:490
5299
  msgid "Buy It"
5300
  msgstr ""
5301
 
5302
+ #: src/udaddons/options.php:489
5303
  msgid "Get it from the UpdraftPlus.Com Store"
5304
  msgstr ""
5305
 
5306
+ #: src/udaddons/options.php:483, src/udaddons/options.php:485
5307
  msgid "activate it on this site"
5308
  msgstr ""
5309
 
5310
+ #: src/udaddons/options.php:485
5311
  msgid "You have an inactive purchase"
5312
  msgstr ""
5313
 
5314
+ #: src/udaddons/options.php:477
5315
  msgid "Assigned to this site"
5316
  msgstr ""
5317
 
5318
+ #: src/udaddons/options.php:474
5319
  msgid "Available for this site (via your all-addons purchase)"
5320
  msgstr ""
5321
 
5322
+ #: src/udaddons/options.php:468
5323
  msgid "(apparently a pre-release or withdrawn release)"
5324
  msgstr ""
5325
 
5326
+ #: src/udaddons/options.php:423
5327
  msgid "Go here"
5328
  msgstr ""
5329
 
5330
+ #: src/udaddons/options.php:423
5331
  msgid "Need to get support?"
5332
  msgstr ""
5333
 
5334
+ #: src/udaddons/options.php:405
5335
  msgid "An error occurred when trying to retrieve your add-ons."
5336
  msgstr ""
5337
 
5338
+ #: src/udaddons/options.php:300
5339
  msgid "An unknown response was received. Response was:"
5340
  msgstr ""
5341
 
5342
+ #: src/udaddons/options.php:299
5343
  msgid "Claim not granted - your account login details were wrong"
5344
  msgstr ""
5345
 
5346
+ #: src/udaddons/options.php:297
5347
  msgid "Please wait whilst we make the claim..."
5348
  msgstr ""
5349
 
5350
+ #: src/udaddons/options.php:251
5351
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
5352
  msgstr ""
5353
 
5354
+ #: src/udaddons/options.php:244
5355
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
5356
  msgstr ""
5357
 
5358
+ #: src/udaddons/options.php:240
5359
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
5360
  msgstr ""
5361
 
5363
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
5364
  msgstr ""
5365
 
5366
+ #: src/admin.php:2874
5367
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
5368
  msgstr ""
5369
 
5370
+ #: src/admin.php:2950
5371
  msgid "Forgotten your details?"
5372
  msgstr ""
5373
 
5374
+ #: src/admin.php:2863
5375
  msgid "Not yet got an account (it's free)? Go get one!"
5376
  msgstr ""
5377
 
5378
+ #: src/admin.php:2929
5379
  msgid "Connect with your UpdraftPlus.Com account"
5380
  msgstr ""
5381
 
5417
  msgid "Your web-server does not have the %s module installed."
5418
  msgstr ""
5419
 
5420
+ #: src/addons/googlecloud.php:1074, src/methods/googledrive.php:1278
5421
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
5422
  msgstr ""
5423
 
5426
  msgid "Drop backup files here"
5427
  msgstr ""
5428
 
5429
+ #: src/admin.php:804
5430
  msgid "The web server returned an error code (try again, or check your web server logs)"
5431
  msgstr ""
5432
 
5433
+ #: src/admin.php:802
5434
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
5435
  msgstr ""
5436
 
5437
+ #: src/addons/wp-cli.php:115, src/admin.php:799
5438
  msgid "If you exclude both the database and the files, then you have excluded everything!"
5439
  msgstr ""
5440
 
5446
  msgid "Remote Storage Options"
5447
  msgstr ""
5448
 
5449
+ #: src/addons/autobackup.php:343, src/addons/autobackup.php:437
5450
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
5451
  msgstr ""
5452
 
5453
+ #: src/addons/autobackup.php:303, src/addons/autobackup.php:1085
5454
  msgid "Remember this choice for next time (you will still have the chance to change it)"
5455
  msgstr ""
5456
 
5463
  msgid "You can send a backup to more than one destination with an add-on."
5464
  msgstr ""
5465
 
5466
+ #: src/admin.php:3416
5467
  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."
5468
  msgstr ""
5469
 
5470
+ #: src/admin.php:3283
5471
  msgid "(%s%%, file %s of %s)"
5472
  msgstr ""
5473
 
5474
+ #: src/addons/autobackup.php:304, src/addons/autobackup.php:1090,
5475
  #: src/addons/lockadmin.php:160
5476
  msgid "Read more about how this works..."
5477
  msgstr ""
5504
  msgid "Backup is of: %s."
5505
  msgstr ""
5506
 
5507
+ #: src/admin.php:894
5508
  msgid "%s settings test result:"
5509
  msgstr ""
5510
 
5511
+ #: src/admin.php:4140, src/admin.php:4142
5512
  msgid "(Not finished)"
5513
  msgstr ""
5514
 
5515
+ #: src/admin.php:4142
5516
  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."
5517
  msgstr ""
5518
 
5524
  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)."
5525
  msgstr ""
5526
 
5527
+ #: src/admin.php:3384
5528
  msgid "Job ID: %s"
5529
  msgstr ""
5530
 
5531
+ #: src/admin.php:3364
5532
  msgid "last activity: %ss ago"
5533
  msgstr ""
5534
 
5535
+ #: src/admin.php:3363
5536
  msgid "next resumption: %d (after %ss)"
5537
  msgstr ""
5538
 
5539
+ #: src/admin.php:3346, src/central/bootstrap.php:444,
5540
  #: src/central/bootstrap.php:451, src/methods/updraftvault.php:410,
5541
  #: src/methods/updraftvault.php:444, src/methods/updraftvault.php:529
5542
  msgid "Unknown"
5543
  msgstr ""
5544
 
5545
+ #: src/admin.php:3297
5546
  msgid "Backup finished"
5547
  msgstr ""
5548
 
5549
+ #: src/admin.php:3292
5550
  msgid "Waiting until scheduled time to retry because of errors"
5551
  msgstr ""
5552
 
5553
+ #: src/admin.php:3288
5554
  msgid "Pruning old backup sets"
5555
  msgstr ""
5556
 
5557
+ #: src/admin.php:3275
5558
  msgid "Uploading files to remote storage"
5559
  msgstr ""
5560
 
5561
+ #: src/admin.php:3344
5562
  msgid "Encrypted database"
5563
  msgstr ""
5564
 
5565
+ #: src/admin.php:3336
5566
  msgid "Encrypting database"
5567
  msgstr ""
5568
 
5569
+ #: src/admin.php:3310
5570
  msgid "Created database backup"
5571
  msgstr ""
5572
 
5573
+ #: src/admin.php:3323
5574
  msgid "table: %s"
5575
  msgstr ""
5576
 
5577
+ #: src/admin.php:3321
5578
  msgid "Creating database backup"
5579
  msgstr ""
5580
 
5581
+ #: src/admin.php:3266
5582
  msgid "Created file backup zips"
5583
  msgstr ""
5584
 
5585
+ #: src/admin.php:3253
5586
  msgid "Creating file backup zips"
5587
  msgstr ""
5588
 
5589
+ #: src/admin.php:3248
5590
  msgid "Backup begun"
5591
  msgstr ""
5592
 
5593
+ #: src/admin.php:1151
5594
  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."
5595
  msgstr ""
5596
 
5606
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
5607
  msgstr ""
5608
 
5609
+ #: src/class-updraftplus.php:3002
5610
  msgid "The backup has not finished; a resumption is scheduled"
5611
  msgstr ""
5612
 
5613
+ #: src/class-updraftplus.php:2022
5614
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
5615
  msgstr ""
5616
 
5619
  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)."
5620
  msgstr ""
5621
 
5622
+ #: src/admin.php:2638
5623
  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)."
5624
  msgstr ""
5625
 
5626
+ #: src/addons/autobackup.php:1104, src/admin.php:848
5627
  msgid "Proceed with update"
5628
  msgstr ""
5629
 
5630
+ #: src/addons/autobackup.php:1097
5631
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
5632
  msgstr ""
5633
 
5634
+ #: src/addons/autobackup.php:139, src/addons/autobackup.php:1046
5635
  msgid "UpdraftPlus Automatic Backups"
5636
  msgstr ""
5637
 
5638
+ #: src/addons/autobackup.php:529
5639
  msgid "Errors have occurred:"
5640
  msgstr ""
5641
 
5642
+ #: src/addons/autobackup.php:501
5643
  msgid "Creating backup with UpdraftPlus..."
5644
  msgstr ""
5645
 
5646
+ #: src/addons/autobackup.php:446, src/addons/autobackup.php:576,
5647
+ #: src/addons/autobackup.php:627
5648
  msgid "Automatic Backup"
5649
  msgstr ""
5650
 
5651
+ #: src/addons/autobackup.php:437
5652
  msgid "Creating database backup with UpdraftPlus..."
5653
  msgstr ""
5654
 
5655
+ #: src/addons/autobackup.php:403
5656
  msgid "themes"
5657
  msgstr ""
5658
 
5659
+ #: src/addons/autobackup.php:396
5660
  msgid "plugins"
5661
  msgstr ""
5662
 
5663
+ #: src/addons/autobackup.php:347, src/addons/autobackup.php:444
5664
  msgid "Starting automatic backup..."
5665
  msgstr ""
5666
 
5667
+ #: src/addons/autobackup.php:343
5668
  msgid "Creating %s and database backup with UpdraftPlus..."
5669
  msgstr ""
5670
 
5671
+ #: src/addons/autobackup.php:301
5672
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
5673
  msgstr ""
5674
 
5699
  msgid "Support"
5700
  msgstr "সহায়তা"
5701
 
5702
+ #: src/class-updraftplus.php:4237
5703
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
5704
  msgstr ""
5705
 
5706
+ #: src/class-updraftplus.php:4229
5707
  msgid "This database backup is missing core WordPress tables: %s"
5708
  msgstr ""
5709
 
5710
+ #: src/class-updraftplus.php:3975
5711
  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."
5712
  msgstr ""
5713
 
5714
+ #: src/class-updraftplus.php:3974, src/class-updraftplus.php:3981
5715
  msgid "%s version: %s"
5716
  msgstr ""
5717
 
5718
+ #: src/class-updraftplus.php:3850
5719
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
5720
  msgstr ""
5721
 
5722
+ #: src/addons/autobackup.php:1072, src/admin.php:976,
5723
  #: src/includes/updraftplus-notices.php:171
5724
  msgid "Be safe with an automatic backup"
5725
  msgstr ""
5726
 
5727
+ #: src/admin.php:2591
5728
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
5729
  msgstr ""
5730
 
5731
+ #: src/admin.php:840
5732
  msgid "The file was uploaded."
5733
  msgstr ""
5734
 
5735
+ #: src/admin.php:839
5736
  msgid "Unknown server response status:"
5737
  msgstr ""
5738
 
5739
+ #: src/admin.php:838
5740
  msgid "Unknown server response:"
5741
  msgstr ""
5742
 
5743
+ #: src/admin.php:837
5744
  msgid "This decryption key will be attempted:"
5745
  msgstr ""
5746
 
5747
+ #: src/admin.php:836
5748
  msgid "Follow this link to attempt decryption and download the database file to your computer."
5749
  msgstr ""
5750
 
5751
+ #: src/admin.php:835
5752
  msgid "Upload error"
5753
  msgstr ""
5754
 
5755
+ #: src/admin.php:834
5756
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
5757
  msgstr ""
5758
 
5759
+ #: src/admin.php:833
5760
  msgid "Upload error:"
5761
  msgstr ""
5762
 
5763
+ #: src/admin.php:832
5764
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
5765
  msgstr ""
5766
 
5767
+ #: src/admin.php:823
5768
  msgid "Download to your computer"
5769
  msgstr ""
5770
 
5771
+ #: src/admin.php:822
5772
  msgid "Delete from your web server"
5773
  msgstr ""
5774
 
5775
+ #: src/admin.php:4112
5776
  msgid "You appear to be missing one or more archives from this multi-archive set."
5777
  msgstr ""
5778
 
5779
+ #: src/admin.php:4109
5780
  msgid "(%d archive(s) in set)."
5781
  msgstr ""
5782
 
5788
  msgid "Error: the server sent us a response (JSON) which we did not understand."
5789
  msgstr ""
5790
 
5791
+ #: src/admin.php:813
5792
  msgid "Warnings:"
5793
  msgstr ""
5794
 
5795
+ #: src/admin.php:812
5796
  msgid "Error: the server sent an empty response."
5797
  msgstr ""
5798
 
5799
+ #: src/admin.php:2317
5800
  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?"
5801
  msgstr ""
5802
 
5870
  msgid "Looking for %s archive: file name: %s"
5871
  msgstr ""
5872
 
5873
+ #: src/addons/wp-cli.php:784, src/admin.php:4570
5874
  msgid "Final checks"
5875
  msgstr ""
5876
 
5882
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5883
  msgstr ""
5884
 
5885
+ #: src/admin.php:3817
5886
  msgid "Your wp-content directory server path: %s"
5887
  msgstr ""
5888
 
5889
+ #: src/admin.php:829
5890
  msgid "Raw backup history"
5891
  msgstr ""
5892
 
5894
  msgid "Show raw backup and file list"
5895
  msgstr ""
5896
 
5897
+ #: src/admin.php:811
5898
  msgid "Processing files - please wait..."
5899
  msgstr ""
5900
 
5903
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
5904
  msgstr ""
5905
 
5906
+ #: src/class-updraftplus.php:3858
5907
  msgid "Failed to open database file."
5908
  msgstr ""
5909
 
5910
+ #: src/admin.php:5154
5911
  msgid "Known backups (raw)"
5912
  msgstr ""
5913
 
5925
 
5926
  #: src/addons/googlecloud.php:1034, src/addons/migrator.php:490,
5927
  #: src/addons/migrator.php:493, src/addons/migrator.php:496,
5928
+ #: src/admin.php:1151, src/admin.php:2596, src/backup.php:3431,
5929
+ #: src/class-updraftplus.php:4097, src/class-updraftplus.php:4097,
5930
  #: src/updraftplus.php:157
5931
  msgid "Go here for more information."
5932
  msgstr ""
5933
 
5934
+ #: src/admin.php:810
5935
  msgid "Some files are still downloading or being processed - please wait."
5936
  msgstr ""
5937
 
5938
+ #: src/class-updraftplus.php:3945, src/class-updraftplus.php:3965
5939
  msgid "This backup set is from a different site (%s) - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
5940
  msgstr ""
5941
 
5977
 
5978
  #: src/addons/azure.php:268, src/methods/addon-base-v2.php:219,
5979
  #: src/methods/cloudfiles.php:383, src/methods/cloudfiles.php:400,
5980
+ #: src/methods/googledrive.php:1120, src/methods/openstack-base.php:455,
5981
  #: src/methods/stream-base.php:297, src/methods/stream-base.php:304,
5982
  #: src/methods/stream-base.php:335
5983
  msgid "%s Error"
5987
  msgid "%s error - failed to upload file"
5988
  msgstr ""
5989
 
5990
+ #: src/class-updraftplus.php:1255, src/methods/cloudfiles.php:211
5991
  msgid "%s error - failed to re-assemble chunks"
5992
  msgstr ""
5993
 
6002
  msgstr ""
6003
 
6004
  #: src/addons/googlecloud.php:438, src/addons/migrator.php:587,
6005
+ #: src/admin.php:2288, src/admin.php:2309, src/admin.php:2317,
6006
+ #: src/class-updraftplus.php:997, src/class-updraftplus.php:1003,
6007
+ #: src/class-updraftplus.php:3831, src/class-updraftplus.php:3833,
6008
+ #: src/class-updraftplus.php:3998, src/class-updraftplus.php:4005,
6009
+ #: src/class-updraftplus.php:4076, src/methods/googledrive.php:403,
6010
  #: src/methods/s3.php:341
6011
  msgid "Error: %s"
6012
  msgstr ""
6013
 
6014
+ #: src/admin.php:3736
6015
  msgid "Backup directory specified exists, but is <b>not</b> writable."
6016
  msgstr ""
6017
 
6018
+ #: src/admin.php:3734
6019
  msgid "Backup directory specified does <b>not</b> exist."
6020
  msgstr ""
6021
 
6022
+ #: src/admin.php:3398, src/admin.php:3685
6023
  msgid "Warning: %s"
6024
  msgstr ""
6025
 
6043
  msgid "Warnings encountered:"
6044
  msgstr ""
6045
 
6046
+ #: src/class-updraftplus.php:2986
6047
  msgid "The backup apparently succeeded (with warnings) and is now complete"
6048
  msgstr ""
6049
 
6050
+ #: src/class-updraftplus.php:874
6051
  msgid "Your free disk space is very low - only %s Mb remain"
6052
  msgstr ""
6053
 
6099
  msgid "Please supply the requested information, and then continue."
6100
  msgstr ""
6101
 
6102
+ #: src/class-updraftplus.php:4016, src/restorer.php:2233
6103
  msgid "Site information:"
6104
  msgstr ""
6105
 
6107
  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."
6108
  msgstr ""
6109
 
6110
+ #: src/admin.php:2591, src/class-updraftplus.php:4009, src/restorer.php:2647
6111
  msgid "Warning:"
6112
  msgstr ""
6113
 
6114
+ #: src/class-updraftplus.php:3998, src/class-updraftplus.php:4001,
6115
  #: src/restorer.php:530
6116
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
6117
  msgstr ""
6120
  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."
6121
  msgstr ""
6122
 
6123
+ #: src/addons/azure.php:601, src/admin.php:3909,
6124
  #: src/methods/updraftvault.php:306
6125
  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."
6126
  msgstr ""
6127
 
6128
+ #: src/admin.php:849, src/includes/updraftplus-tour.php:89
6129
  msgid "Close"
6130
  msgstr ""
6131
 
6132
+ #: src/addons/autobackup.php:349, src/addons/autobackup.php:441,
6133
+ #: src/admin.php:803, src/methods/remotesend.php:69,
6134
  #: src/methods/remotesend.php:77, src/methods/remotesend.php:228,
6135
  #: src/methods/remotesend.php:245, src/methods/remotesend.php:293
6136
  msgid "Unexpected response:"
6137
  msgstr ""
6138
 
6139
+ #: src/addons/reporting.php:523, src/admin.php:798
6140
  msgid "To send to more than one address, separate each address with a comma."
6141
  msgstr ""
6142
 
6143
+ #: src/admin.php:827
6144
  msgid "PHP information"
6145
  msgstr ""
6146
 
6164
  msgid "Also delete from remote storage"
6165
  msgstr ""
6166
 
6167
+ #: src/admin.php:3087
6168
  msgid "Latest UpdraftPlus.com news:"
6169
  msgstr ""
6170
 
6192
  msgid "News"
6193
  msgstr ""
6194
 
6195
+ #: src/admin.php:1695, src/includes/class-wpadmin-commands.php:506
6196
  msgid "Backup set not found"
6197
  msgstr ""
6198
 
6214
  msgid "Blog link"
6215
  msgstr ""
6216
 
6217
+ #: src/admin.php:893
6218
  msgid "Testing %s Settings..."
6219
  msgstr ""
6220
 
6223
  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."
6224
  msgstr ""
6225
 
6226
+ #: src/admin.php:1167
6227
  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."
6228
  msgstr ""
6229
 
6230
+ #: src/admin.php:1167
6231
  msgid "Notice"
6232
  msgstr ""
6233
 
6235
  msgid "Errors encountered:"
6236
  msgstr ""
6237
 
6238
+ #: src/admin.php:795
6239
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
6240
  msgstr ""
6241
 
6242
+ #: src/admin.php:809
6243
  msgid "Begun looking for this entity"
6244
  msgstr ""
6245
 
6263
  msgid "Time taken (seconds):"
6264
  msgstr ""
6265
 
6266
+ #: src/addons/migrator.php:1302, src/admin.php:814
6267
  msgid "Errors:"
6268
  msgstr ""
6269
 
6362
  msgstr ""
6363
 
6364
  #: src/addons/lockadmin.php:171, src/addons/moredatabase.php:241,
6365
+ #: src/addons/sftp.php:459, src/addons/webdav.php:193, src/admin.php:2945,
6366
  #: src/methods/openstack2.php:164, src/methods/updraftvault.php:361,
6367
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:50
6368
  msgid "Password"
6430
  msgstr ""
6431
 
6432
  #: src/addons/googlecloud.php:776, src/addons/googlecloud.php:810,
6433
+ #: src/addons/googlecloud.php:816, src/addons/sftp.php:553, src/admin.php:3464,
6434
+ #: src/admin.php:3500, src/admin.php:3510, src/methods/addon-base-v2.php:313,
6435
  #: src/methods/stream-base.php:356
6436
  msgid "Failed"
6437
  msgstr ""
6456
  #: src/methods/addon-base-v2.php:74, src/methods/addon-base-v2.php:115,
6457
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
6458
  #: src/methods/addon-base-v2.php:285, src/methods/ftp.php:42,
6459
+ #: src/methods/googledrive.php:202, src/methods/googledrive.php:204,
6460
  #: src/methods/remotesend.php:278, src/methods/stream-base.php:27,
6461
  #: src/methods/stream-base.php:163, src/methods/stream-base.php:169,
6462
  #: src/methods/stream-base.php:203, src/methods/stream-base.php:278
6653
  #: src/addons/migrator.php:337, src/addons/moredatabase.php:89,
6654
  #: src/addons/moredatabase.php:91, src/addons/moredatabase.php:93,
6655
  #: src/addons/sftp.php:522, src/addons/sftp.php:526, src/addons/sftp.php:530,
6656
+ #: src/addons/webdav.php:253, src/admin.php:869,
6657
+ #: src/includes/class-remote-send.php:454, src/methods/addon-base-v2.php:305,
6658
  #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles-new.php:189,
6659
  #: src/methods/cloudfiles.php:519, src/methods/cloudfiles.php:524,
6660
  #: src/methods/ftp.php:412, src/methods/ftp.php:416,
6696
  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."
6697
  msgstr ""
6698
 
6699
+ #: src/admin.php:892, src/methods/backup-module.php:315
6700
  msgid "Test %s Settings"
6701
  msgstr ""
6702
 
6703
+ #: src/class-updraftplus.php:1298, src/class-updraftplus.php:1342,
6704
  #: src/methods/cloudfiles.php:383, src/methods/stream-base.php:297
6705
  msgid "Error opening local file: Failed to download"
6706
  msgstr ""
6717
  msgstr ""
6718
 
6719
  #: src/addons/googlecloud.php:201, src/addons/googlecloud.php:206,
6720
+ #: src/class-updraftplus.php:1140, src/methods/cloudfiles.php:130,
6721
+ #: src/methods/googledrive.php:1034, src/methods/googledrive.php:1039
6722
  msgid "%s Error: Failed to open local file"
6723
  msgstr ""
6724
 
6734
  msgid "Cloud Files authentication failed"
6735
  msgstr ""
6736
 
6737
+ #: src/methods/googledrive.php:1273
6738
  msgid "Authenticate with Google"
6739
  msgstr ""
6740
 
6741
  #: src/addons/googlecloud.php:1027, src/addons/onedrive.php:1181,
6742
+ #: src/methods/googledrive.php:1237
6743
  msgid "Client Secret"
6744
  msgstr ""
6745
 
6746
+ #: src/addons/googlecloud.php:1022, src/methods/googledrive.php:1234
6747
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
6748
  msgstr ""
6749
 
6750
  #: src/addons/googlecloud.php:1019, src/addons/onedrive.php:1177,
6751
+ #: src/methods/googledrive.php:1233
6752
  msgid "Client ID"
6753
  msgstr ""
6754
 
6755
+ #: src/methods/googledrive.php:1207
6756
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
6757
  msgstr ""
6758
 
6759
+ #: src/addons/googlecloud.php:997, src/methods/googledrive.php:1207
6760
  msgid "Select 'Web Application' as the application type."
6761
  msgstr ""
6762
 
6763
+ #: src/addons/googlecloud.php:995, src/methods/googledrive.php:1205
6764
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
6765
  msgstr ""
6766
 
6767
  #: src/addons/googlecloud.php:507, src/addons/googlecloud.php:508,
6768
+ #: src/addons/googlecloud.php:866, src/methods/googledrive.php:580,
6769
+ #: src/methods/googledrive.php:581, src/methods/googledrive.php:591,
6770
+ #: src/methods/googledrive.php:592
6771
  msgid "Account is not authorized."
6772
  msgstr ""
6773
 
6774
+ #: src/methods/googledrive.php:502, src/methods/googledrive.php:548,
6775
+ #: src/methods/googledrive.php:554, src/methods/googledrive.php:556,
6776
  #: src/methods/stream-base.php:219
6777
  msgid "Failed to upload to %s"
6778
  msgstr ""
6779
 
6780
+ #: src/methods/googledrive.php:531
6781
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
6782
  msgstr ""
6783
 
6784
+ #: src/methods/googledrive.php:624, src/methods/googledrive.php:660
6785
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
6786
  msgstr ""
6787
 
6788
  #: src/addons/googlecloud.php:718, src/addons/onedrive.php:939,
6789
+ #: src/methods/googledrive.php:475
6790
  msgid "you have authenticated your %s account."
6791
  msgstr ""
6792
 
6794
  #: src/addons/onedrive.php:939, src/addons/sftp.php:591,
6795
  #: src/addons/sftp.php:595, src/addons/wp-cli.php:515,
6796
  #: src/methods/addon-base-v2.php:327, src/methods/cloudfiles.php:575,
6797
+ #: src/methods/googledrive.php:475, src/methods/openstack-base.php:530,
6798
  #: src/methods/s3.php:1155, src/methods/stream-base.php:372
6799
  msgid "Success"
6800
  msgstr ""
6801
 
6802
  #: src/addons/onedrive.php:893, src/methods/dropbox.php:844,
6803
+ #: src/methods/dropbox.php:853, src/methods/googledrive.php:439
6804
  msgid "Your %s quota usage: %s %% used, %s available"
6805
  msgstr ""
6806
 
6807
+ #: src/addons/googlecloud.php:444, src/methods/googledrive.php:409
6808
  msgid "Authorization failed"
6809
  msgstr "অনুমোদন ব্যর্থ"
6810
 
6811
+ #: src/addons/googlecloud.php:436, src/methods/googledrive.php:401
6812
  msgid "No refresh token was received from Google. This often means that you entered your client secret wrongly, or that you have not yet re-authenticated (below) since correcting it. Re-check it, then follow the link to authenticate again. Finally, if that does not work, then use expert mode to wipe all your settings, create a new Google client ID/secret, and start again."
6813
  msgstr ""
6814
 
6831
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
6832
  msgstr ""
6833
 
6834
+ #: src/admin.php:3468, src/admin.php:3503, src/admin.php:3507,
6835
+ #: src/includes/class-remote-send.php:327,
6836
  #: src/includes/class-storage-methods-interface.php:315, src/restorer.php:226,
6837
  #: src/restorer.php:2888, src/restorer.php:2993
6838
  msgid "OK"
6850
  msgid "will restore as:"
6851
  msgstr ""
6852
 
6853
+ #: src/class-updraftplus.php:3987, src/restorer.php:2215,
6854
  #: src/restorer.php:2304, src/restorer.php:2330
6855
  msgid "Old table prefix:"
6856
  msgstr ""
6857
 
6858
  #: src/addons/reporting.php:72, src/addons/reporting.php:181,
6859
+ #: src/backup.php:1135, src/class-updraftplus.php:3914
6860
  msgid "Backup of:"
6861
  msgstr ""
6862
 
6944
  msgid "Archive is expected to be size:"
6945
  msgstr ""
6946
 
6947
+ #: src/admin.php:4518
6948
  msgid "If making a request for support, please include this information:"
6949
  msgstr ""
6950
 
6951
+ #: src/admin.php:4517
6952
  msgid "ABORT: Could not find the information on which entities to restore."
6953
  msgstr ""
6954
 
6955
+ #: src/addons/wp-cli.php:647, src/admin.php:4496
6956
  msgid "UpdraftPlus Restoration: Progress"
6957
  msgstr ""
6958
 
6959
+ #: src/admin.php:4488
6960
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
6961
  msgstr ""
6962
 
6963
+ #: src/admin.php:4170
6964
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
6965
  msgstr ""
6966
 
6967
+ #: src/admin.php:4268
6968
  msgid "Delete this backup set"
6969
  msgstr ""
6970
 
6971
+ #: src/admin.php:3921
6972
  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."
6973
  msgstr ""
6974
 
6975
+ #: src/admin.php:3918
6976
  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."
6977
  msgstr ""
6978
 
6979
+ #: src/admin.php:3916
6980
  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)."
6981
  msgstr ""
6982
 
7017
  msgid "Use the server's SSL certificates"
7018
  msgstr ""
7019
 
7020
+ #: src/admin.php:3738
7021
  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."
7022
  msgstr ""
7023
 
7024
+ #: src/admin.php:3738
7025
  msgid "or, to reset this option"
7026
  msgstr ""
7027
 
7028
+ #: src/admin.php:3738
7029
  msgid "Follow this link to attempt to create the directory and set the permissions"
7030
  msgstr ""
7031
 
7032
+ #: src/admin.php:3730
7033
  msgid "Backup directory specified is writable, which is good."
7034
  msgstr ""
7035
 
7061
  msgid "Advanced / Debugging Settings"
7062
  msgstr ""
7063
 
7064
+ #: src/admin.php:826
7065
  msgid "Requesting start of backup..."
7066
  msgstr ""
7067
 
7068
+ #: src/addons/morefiles.php:311, src/admin.php:843
7069
  msgid "Cancel"
7070
  msgstr "বাতিল"
7071
 
7072
  #: src/addons/incremental.php:235, src/addons/reporting.php:245,
7073
+ #: src/admin.php:4004
7074
  msgid "None"
7075
  msgstr "কোনটিই না"
7076
 
7086
  msgid "Database encryption phrase"
7087
  msgstr ""
7088
 
7089
+ #: src/admin.php:2935, src/templates/wp-admin/settings/form-contents.php:255,
7090
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7091
  msgid "Email"
7092
  msgstr ""
7099
  msgid "Exclude these:"
7100
  msgstr ""
7101
 
7102
+ #: src/admin.php:3817
7103
  msgid "Any other directories found inside wp-content"
7104
  msgstr ""
7105
 
7115
  msgid "To fix the time at which a backup should take place,"
7116
  msgstr ""
7117
 
7118
+ #: src/addons/incremental.php:244, src/admin.php:3724
7119
  msgid "Monthly"
7120
  msgstr "মাসিক"
7121
 
7122
+ #: src/addons/incremental.php:243, src/admin.php:3723
7123
  msgid "Fortnightly"
7124
  msgstr "পাক্ষিক"
7125
 
7126
+ #: src/addons/incremental.php:242, src/admin.php:3722
7127
  msgid "Weekly"
7128
  msgstr "সাপ্তাহিক"
7129
 
7130
+ #: src/addons/incremental.php:241, src/admin.php:3721
7131
  msgid "Daily"
7132
  msgstr ""
7133
 
7134
+ #: src/admin.php:851, src/admin.php:3699
7135
  msgid "Download log file"
7136
  msgstr "লগ ফাইল ডাউনলোড করুন"
7137
 
7138
+ #: src/admin.php:3571
7139
  msgid "The folder exists, but your webserver does not have permission to write to it."
7140
  msgstr ""
7141
 
7142
+ #: src/admin.php:3566
7143
  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"
7144
  msgstr ""
7145
 
7146
+ #: src/admin.php:3552
7147
  msgid "The request to the filesystem to create the directory failed."
7148
  msgstr ""
7149
 
7150
+ #: src/admin.php:844, src/admin.php:3461, src/admin.php:3495,
7151
+ #: src/admin.php:4268, src/includes/class-remote-send.php:544,
7152
  #: src/templates/wp-admin/settings/existing-backups-table.php:155,
7153
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
7154
  msgid "Delete"
7155
  msgstr "মুছুন"
7156
 
7157
+ #: src/admin.php:3415
7158
  msgid "show log"
7159
  msgstr "লগ দেখান"
7160
 
7215
  msgid "Yes"
7216
  msgstr "হ্যাঁ"
7217
 
7218
+ #: src/admin.php:5366, src/admin.php:5370,
7219
  #: src/templates/wp-admin/advanced/site-info.php:45,
7220
  #: src/templates/wp-admin/advanced/site-info.php:51,
7221
  #: src/templates/wp-admin/advanced/site-info.php:58,
7255
  msgid "Do read this helpful article of useful things to know before restoring."
7256
  msgstr ""
7257
 
7258
+ #: src/class-updraftplus.php:3948
7259
  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"
7260
  msgstr ""
7261
 
7296
  msgid "Delete backup set"
7297
  msgstr ""
7298
 
7299
+ #: src/admin.php:825
7300
  msgid "Download error: the server sent us a response which we did not understand."
7301
  msgstr ""
7302
 
7305
  #: src/addons/migrator.php:1268, src/addons/migrator.php:1317,
7306
  #: src/addons/migrator.php:1555, src/addons/s3-enhanced.php:164,
7307
  #: src/addons/s3-enhanced.php:169, src/addons/s3-enhanced.php:171,
7308
+ #: src/addons/sftp.php:911, src/addons/webdav.php:203, src/admin.php:91,
7309
+ #: src/admin.php:817, src/includes/class-remote-send.php:266,
7310
+ #: src/includes/class-remote-send.php:293,
7311
+ #: src/includes/class-remote-send.php:299,
7312
+ #: src/includes/class-remote-send.php:362,
7313
+ #: src/includes/class-remote-send.php:421,
7314
+ #: src/includes/class-remote-send.php:462,
7315
+ #: src/includes/class-remote-send.php:472,
7316
+ #: src/includes/class-remote-send.php:477, src/methods/remotesend.php:74,
7317
  #: src/methods/remotesend.php:242, src/methods/remotesend.php:298,
7318
  #: src/methods/updraftvault.php:527, src/restorer.php:228,
7319
  #: src/restorer.php:256, src/restorer.php:1921
7320
  msgid "Error:"
7321
  msgstr ""
7322
 
7323
+ #: src/admin.php:808
7324
  msgid "calculating..."
7325
  msgstr ""
7326
 
7343
  msgid "This is a count of the contents of your Updraft directory"
7344
  msgstr ""
7345
 
7346
+ #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:202,
7347
+ #: src/methods/googledrive.php:204, src/methods/googledrive.php:475,
7348
+ #: src/methods/googledrive.php:502, src/methods/googledrive.php:531,
7349
+ #: src/methods/googledrive.php:538, src/methods/googledrive.php:548,
7350
+ #: src/methods/googledrive.php:554, src/methods/googledrive.php:556,
7351
+ #: src/methods/googledrive.php:1193, src/methods/googledrive.php:1200,
7352
+ #: src/methods/googledrive.php:1200, src/methods/googledrive.php:1233,
7353
+ #: src/methods/googledrive.php:1237, src/methods/googledrive.php:1248,
7354
+ #: src/methods/googledrive.php:1259
7355
  msgid "Google Drive"
7356
  msgstr "গুগোল ড্রাইভ"
7357
 
7370
  msgid "More tasks:"
7371
  msgstr "আরও টাস্ক:"
7372
 
7373
+ #: src/admin.php:3114
7374
  msgid "Download most recently modified log file"
7375
  msgstr ""
7376
 
7378
  msgid "(Nothing yet logged)"
7379
  msgstr ""
7380
 
7381
+ #: src/addons/autobackup.php:344, src/addons/autobackup.php:439,
7382
+ #: src/admin.php:3070, src/admin.php:3076,
7383
  #: src/templates/wp-admin/settings/take-backup.php:64
7384
  msgid "Last log message"
7385
  msgstr ""
7386
 
7387
+ #: src/addons/migrator.php:271, src/admin.php:663, src/admin.php:850,
7388
+ #: src/admin.php:4170
7389
  msgid "Restore"
7390
  msgstr "পুনঃস্থাপন"
7391
 
7392
+ #: src/admin.php:842, src/templates/wp-admin/settings/take-backup.php:50
7393
  msgid "Backup Now"
7394
  msgstr ""
7395
 
7398
  msgstr ""
7399
 
7400
  #: src/addons/moredatabase.php:242, src/addons/reporting.php:260,
7401
+ #: src/addons/wp-cli.php:431, src/admin.php:344, src/admin.php:3979,
7402
+ #: src/admin.php:4032, src/includes/class-remote-send.php:331,
7403
  #: src/includes/class-wpadmin-commands.php:157,
7404
  #: src/includes/class-wpadmin-commands.php:521, src/restorer.php:354,
7405
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:74,
7408
  msgid "Database"
7409
  msgstr ""
7410
 
7411
+ #: src/admin.php:334, src/admin.php:5161,
7412
  #: src/templates/wp-admin/settings/take-backup.php:23
7413
  msgid "Files"
7414
  msgstr ""
7417
  msgid "Next scheduled backups"
7418
  msgstr ""
7419
 
7420
+ #: src/admin.php:313
7421
  msgid "At the same time as the files backup"
7422
  msgstr ""
7423
 
7424
+ #: src/admin.php:303, src/admin.php:324, src/admin.php:331, src/admin.php:376,
7425
+ #: src/admin.php:407
7426
  msgid "Nothing currently scheduled"
7427
  msgstr ""
7428
 
7434
  msgid "JavaScript warning"
7435
  msgstr ""
7436
 
7437
+ #: src/admin.php:828, src/admin.php:3151
7438
  msgid "Delete Old Directories"
7439
  msgstr ""
7440
 
7441
+ #: src/admin.php:2638
7442
  msgid "Current limit is:"
7443
  msgstr ""
7444
 
7445
+ #: src/admin.php:2613
7446
  msgid "Your backup has been restored."
7447
  msgstr ""
7448
 
7458
  msgid "UpdraftPlus.Com"
7459
  msgstr ""
7460
 
7461
+ #: src/admin.php:5053
7462
  msgid "Your settings have been wiped."
7463
  msgstr ""
7464
 
7465
+ #: src/admin.php:2573
7466
  msgid "Backup directory successfully created."
7467
  msgstr ""
7468
 
7469
+ #: src/admin.php:2566
7470
  msgid "Backup directory could not be created"
7471
  msgstr ""
7472
 
7473
+ #: src/admin.php:3431
7474
  msgid "Old directory removal failed for some reason. You may want to do this manually."
7475
  msgstr ""
7476
 
7477
+ #: src/admin.php:3429
7478
  msgid "Old directories successfully removed."
7479
  msgstr ""
7480
 
7481
+ #: src/admin.php:3426, src/admin.php:3426
7482
  msgid "Remove old directories"
7483
  msgstr ""
7484
 
7485
  #: src/addons/migrator.php:340, src/addons/migrator.php:355,
7486
+ #: src/admin.php:2514, src/admin.php:2524, src/admin.php:2533,
7487
+ #: src/admin.php:2575, src/admin.php:3433
7488
  msgid "Return to UpdraftPlus Configuration"
7489
  msgstr ""
7490
 
7491
+ #: src/admin.php:821, src/admin.php:2514, src/admin.php:2524,
7492
+ #: src/admin.php:2533, src/admin.php:2575, src/admin.php:3433,
7493
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7494
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7495
  msgid "Actions"
7496
  msgstr ""
7497
 
7498
+ #: src/admin.php:2409
7499
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
7500
  msgstr ""
7501
 
7502
+ #: src/admin.php:2309
7503
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
7504
  msgstr ""
7505
 
7506
+ #: src/admin.php:2205
7507
  msgid "No local copy present."
7508
  msgstr ""
7509
 
7510
+ #: src/admin.php:2202
7511
  msgid "Download in progress"
7512
  msgstr "ডাউনলোড হচ্ছে"
7513
 
7514
+ #: src/admin.php:820, src/admin.php:2191
7515
  msgid "File ready."
7516
  msgstr "ফাইল তৈরি।"
7517
 
7518
+ #: src/admin.php:2172
7519
  msgid "Download failed"
7520
  msgstr ""
7521
 
7522
+ #: src/addons/wp-cli.php:518, src/admin.php:818,
7523
+ #: src/class-updraftplus.php:1298, src/class-updraftplus.php:1342,
7524
  #: src/includes/class-filesystem-functions.php:368,
7525
  #: src/includes/class-storage-methods-interface.php:324,
7526
  #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98,
7530
  msgid "Error"
7531
  msgstr ""
7532
 
7533
+ #: src/admin.php:1959
7534
  msgid "Could not find that job - perhaps it has already finished?"
7535
  msgstr ""
7536
 
7537
+ #: src/admin.php:1951
7538
  msgid "Job deleted"
7539
  msgstr ""
7540
 
7541
+ #: src/admin.php:2050, src/includes/class-commands.php:833
7542
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
7543
  msgstr ""
7544
 
7545
+ #: src/admin.php:895
7546
  msgid "Nothing yet logged"
7547
  msgstr ""
7548
 
7549
+ #: src/admin.php:1163
7550
  msgid "Please consult this FAQ if you have problems backing up."
7551
  msgstr ""
7552
 
7553
+ #: src/admin.php:1163
7554
  msgid "Your website is hosted using the %s web server."
7555
  msgstr ""
7556
 
7557
+ #: src/admin.php:1159
7558
  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."
7559
  msgstr ""
7560
 
7561
+ #: src/admin.php:1155
7562
  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."
7563
  msgstr ""
7564
 
7565
+ #: src/addons/azure.php:601, src/addons/migrator.php:945, src/admin.php:1147,
7566
+ #: src/admin.php:1151, src/admin.php:1155, src/admin.php:1159,
7567
+ #: src/admin.php:1163, src/admin.php:1172, src/admin.php:3909,
7568
+ #: src/admin.php:3916, src/admin.php:3918, src/admin.php:5344,
7569
  #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
7570
  #: src/methods/ftp.php:330, src/methods/openstack-base.php:571,
7571
  #: src/methods/s3.php:859, src/methods/s3.php:863,
7576
  msgid "Warning"
7577
  msgstr "সতর্কতা"
7578
 
7579
+ #: src/admin.php:1092
7580
  msgid "Add-Ons / Pro Support"
7581
  msgstr "অ্যাড অন / প্রো সাপোর্ট"
7582
 
7583
+ #: src/admin.php:679, src/admin.php:1090, src/admin.php:2800
7584
  msgid "Settings"
7585
  msgstr "সেটিংস"
7586
 
7600
  msgid "Like UpdraftPlus and can spare one minute?"
7601
  msgstr ""
7602
 
7603
+ #: src/addons/azure.php:268, src/class-updraftplus.php:3636,
7604
+ #: src/methods/googledrive.php:1120, src/methods/s3.php:341
7605
  msgid "File not found"
7606
  msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
7607
 
7609
  msgid "The decryption key used:"
7610
  msgstr ""
7611
 
7612
+ #: src/class-updraftplus.php:3843,
7613
  #: src/includes/class-updraftplus-encryption.php:354, src/restorer.php:781
7614
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
7615
  msgstr ""
7616
 
7617
+ #: src/class-updraftplus.php:3831,
7618
  #: src/includes/class-updraftplus-encryption.php:336, src/restorer.php:768
7619
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
7620
  msgstr ""
7623
  msgid "Could not open the backup file for writing"
7624
  msgstr ""
7625
 
7626
+ #: src/class-updraftplus.php:3408
7627
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
7628
  msgstr ""
7629
 
7630
+ #: src/class-updraftplus.php:3392
7631
  msgid "Could not read the directory"
7632
  msgstr "ডিরেক্টরিটি পড়া যায়নি"
7633
 
7634
+ #: src/admin.php:2251, src/backup.php:1359
7635
  msgid "Backup directory (%s) is not writable, or does not exist."
7636
  msgstr ""
7637
 
7639
  msgid "WordPress backup is complete"
7640
  msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
7641
 
7642
+ #: src/class-updraftplus.php:2998
7643
  msgid "The backup attempt has finished, apparently unsuccessfully"
7644
  msgstr ""
7645
 
7646
+ #: src/class-updraftplus.php:2980
7647
  msgid "The backup apparently succeeded and is now complete"
7648
  msgstr ""
7649
 
7651
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
7652
  msgstr ""
7653
 
7654
+ #: src/class-updraftplus.php:2680
7655
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
7656
  msgstr "ব্যাকআপ ডিরেক্টরিতে ফাইল তৈরি করা সম্ভব হয় নি। ব্যাকআপ বন্ধ হয়ে গিয়্যেছে - আপনার UpdraftPlus সেটিংস দেখুন।"
7657
 
7658
+ #: src/class-updraftplus.php:1796
7659
  msgid "Others"
7660
  msgstr "অন্যান্য"
7661
 
7662
+ #: src/addons/multisite.php:500, src/class-updraftplus.php:1781
7663
  msgid "Uploads"
7664
  msgstr "আপলোডসমূহ"
7665
 
7666
+ #: src/class-updraftplus.php:1780
7667
  msgid "Themes"
7668
  msgstr "থিমসমূহ"
7669
 
7670
+ #: src/class-updraftplus.php:1779
7671
  msgid "Plugins"
7672
  msgstr "প্লাগইন"
7673
 
7674
+ #: src/class-updraftplus.php:624
7675
  msgid "No log files were found."
7676
  msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
7677
 
7678
+ #: src/admin.php:2121, src/admin.php:2125, src/class-updraftplus.php:619
7679
  msgid "The log file could not be read."
7680
  msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
7681
 
7682
+ #: src/admin.php:1192, src/admin.php:1213, src/admin.php:1232,
7683
+ #: src/class-updraftplus.php:584, src/class-updraftplus.php:619,
7684
+ #: src/class-updraftplus.php:624, src/class-updraftplus.php:629
7685
  msgid "UpdraftPlus notice:"
7686
  msgstr "UpdraftPlus নোটিশ:"
7687
 
languages/updraftplus-bs_BA.po CHANGED
@@ -11,6 +11,10 @@ msgstr ""
11
  "Language: bs_BA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
14
  #: src/udaddons/updraftplus-addons.php:268,
15
  #: src/udaddons/updraftplus-addons.php:280
16
  msgid "go here"
@@ -25,7 +29,7 @@ msgstr ""
25
  msgid "Authentication"
26
  msgstr ""
27
 
28
- #: src/admin.php:924
29
  msgid "You must select at least one remote storage destination to upload this backup set to."
30
  msgstr ""
31
 
@@ -45,11 +49,11 @@ msgstr ""
45
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
46
  msgstr ""
47
 
48
- #: src/admin.php:951
49
  msgid "UpdraftClone key is required."
50
  msgstr ""
51
 
52
- #: src/admin.php:942
53
  msgid "The preparation of the clone data has been aborted."
54
  msgstr ""
55
 
@@ -69,7 +73,7 @@ msgstr ""
69
  msgid "Your database user does not have permission to drop tables"
70
  msgstr ""
71
 
72
- #: src/admin.php:2960
73
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
74
  msgstr ""
75
 
@@ -237,39 +241,39 @@ msgstr ""
237
  msgid "WordPress installed"
238
  msgstr ""
239
 
240
- #: src/admin.php:5422
241
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
242
  msgstr ""
243
 
244
- #: src/admin.php:3826
245
  msgid "Exclude these from"
246
  msgstr ""
247
 
248
- #: src/admin.php:950
249
  msgid "The exclusion rule which you are trying to add already exists"
250
  msgstr ""
251
 
252
- #: src/admin.php:949
253
  msgid "Please enter a valid file name prefix"
254
  msgstr ""
255
 
256
- #: src/admin.php:948
257
  msgid "Please enter characters that begin the filename which you would like to exclude"
258
  msgstr ""
259
 
260
- #: src/admin.php:947
261
  msgid "Please enter a valid file extension"
262
  msgstr ""
263
 
264
- #: src/admin.php:946
265
  msgid "Please enter a file extension, like zip"
266
  msgstr ""
267
 
268
- #: src/admin.php:945
269
  msgid "Please select a file/folder which you would like to exclude"
270
  msgstr ""
271
 
272
- #: src/admin.php:944
273
  msgid "Are you sure you want to remove this exclusion rule?"
274
  msgstr ""
275
 
@@ -293,15 +297,15 @@ msgstr ""
293
  msgid "failed to upload file to %s (see log file for more)"
294
  msgstr ""
295
 
296
- #: src/admin.php:5418
297
  msgid "Dashboard:"
298
  msgstr ""
299
 
300
- #: src/admin.php:5417
301
  msgid "Front page:"
302
  msgstr ""
303
 
304
- #: src/admin.php:5416
305
  msgid "Your clone has started and will be available at the following URLs once it is ready."
306
  msgstr ""
307
 
@@ -313,11 +317,11 @@ msgstr ""
313
  msgid "Current clones"
314
  msgstr ""
315
 
316
- #: src/class-updraftplus.php:3045
317
  msgid "Your clone will now deploy this data to re-create your site."
318
  msgstr ""
319
 
320
- #: src/admin.php:941
321
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
322
  msgstr ""
323
 
@@ -363,7 +367,7 @@ msgstr ""
363
  msgid "Unable to get renew date"
364
  msgstr ""
365
 
366
- #: src/admin.php:904
367
  msgid "The backup was aborted"
368
  msgstr ""
369
 
@@ -617,7 +621,7 @@ msgstr ""
617
  msgid "You can buy more temporary clone tokens here."
618
  msgstr ""
619
 
620
- #: src/admin.php:5373
621
  msgid "Forbid non-administrators to login to WordPress on your clone"
622
  msgstr ""
623
 
@@ -633,23 +637,23 @@ msgstr ""
633
  msgid "Other great plugins"
634
  msgstr ""
635
 
636
- #: src/admin.php:5420, src/admin.php:5423
637
  msgid "You can find your temporary clone information in your updraftplus.com account here."
638
  msgstr ""
639
 
640
- #: src/class-updraftplus.php:4310
641
  msgid "Choose a default for each table"
642
  msgstr ""
643
 
644
- #: src/admin.php:3274
645
  msgid "Sending files to remote site"
646
  msgstr ""
647
 
648
- #: src/admin.php:3269
649
  msgid "Clone server being provisioned and booted (can take several minutes)"
650
  msgstr ""
651
 
652
- #: src/admin.php:940
653
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
654
  msgstr ""
655
 
@@ -657,11 +661,11 @@ msgstr ""
657
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
658
  msgstr ""
659
 
660
- #: src/admin.php:2796
661
  msgid "Backup / Restore"
662
  msgstr ""
663
 
664
- #: src/admin.php:661
665
  msgid "Backup"
666
  msgstr ""
667
 
@@ -733,11 +737,11 @@ msgstr ""
733
  msgid "More information here."
734
  msgstr ""
735
 
736
- #: src/admin.php:669, src/admin.php:2797
737
  msgid "Migrate / Clone"
738
  msgstr ""
739
 
740
- #: src/admin.php:3034, src/admin.php:3959,
741
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
742
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
743
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
@@ -759,25 +763,25 @@ msgstr ""
759
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
760
  msgstr ""
761
 
762
- #: src/class-updraftplus.php:187
763
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
764
  msgstr ""
765
 
766
- #: src/admin.php:5396
767
  msgid "(current version)"
768
  msgstr ""
769
 
770
- #: src/admin.php:3736
771
  msgid "press here"
772
  msgstr ""
773
 
774
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
775
- #: src/methods/googledrive.php:1206
776
  msgid "this privacy policy"
777
  msgstr ""
778
 
779
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
780
- #: src/methods/googledrive.php:1206
781
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
782
  msgstr ""
783
 
@@ -801,7 +805,7 @@ msgstr ""
801
  msgid "Available temporary clone tokens:"
802
  msgstr ""
803
 
804
- #: src/admin.php:2884, src/includes/class-commands.php:901,
805
  #: src/includes/class-commands.php:949,
806
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
807
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
@@ -820,7 +824,7 @@ msgstr ""
820
  msgid "I consent to %s"
821
  msgstr ""
822
 
823
- #: src/admin.php:2982,
824
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
825
  msgid "One Time Password (check your OTP app to get this password)"
826
  msgstr ""
@@ -869,75 +873,75 @@ msgstr ""
869
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
870
  msgstr ""
871
 
872
- #: src/admin.php:5342
873
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
874
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
875
  msgstr[0] ""
876
  msgstr[1] ""
877
  msgstr[2] ""
878
 
879
- #: src/admin.php:938
880
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
881
  msgstr ""
882
 
883
- #: src/admin.php:937
884
  msgid "You can also close this wizard."
885
  msgstr ""
886
 
887
- #: src/admin.php:936
888
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
889
  msgstr ""
890
 
891
- #: src/admin.php:935
892
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
893
  msgstr ""
894
 
895
- #: src/admin.php:934
896
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
897
  msgstr ""
898
 
899
- #: src/admin.php:933
900
  msgid "Perhaps you would want to login instead."
901
  msgstr ""
902
 
903
- #: src/admin.php:932
904
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
905
  msgstr ""
906
 
907
- #: src/admin.php:931
908
  msgid "An email is required and needs to be in a valid format."
909
  msgstr ""
910
 
911
- #: src/admin.php:930
912
  msgid "Both email and password fields are required."
913
  msgstr ""
914
 
915
- #: src/admin.php:929
916
  msgid "Registration successful."
917
  msgstr ""
918
 
919
- #: src/admin.php:928, src/admin.php:929
920
  msgid "Please follow this link to open %s in a new window."
921
  msgstr ""
922
 
923
- #: src/admin.php:928
924
  msgid "Login successful."
925
  msgstr ""
926
 
927
- #: src/admin.php:927,
928
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
929
  msgid "UpdraftCentral Cloud"
930
  msgstr ""
931
 
932
- #: src/admin.php:487
933
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
934
  msgstr ""
935
 
936
- #: src/admin.php:486
937
  msgid "Dismiss all UpdraftPlus news"
938
  msgstr ""
939
 
940
- #: src/admin.php:485
941
  msgid "UpdraftPlus News"
942
  msgstr ""
943
 
@@ -961,7 +965,7 @@ msgstr ""
961
  msgid "Azure Account"
962
  msgstr ""
963
 
964
- #: src/admin.php:926
965
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
966
  msgstr ""
967
 
@@ -973,23 +977,23 @@ msgstr ""
973
  msgid "Upload backup"
974
  msgstr ""
975
 
976
- #: src/admin.php:4246
977
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
978
  msgstr ""
979
 
980
- #: src/admin.php:925
981
  msgid "(already uploaded)"
982
  msgstr ""
983
 
984
- #: src/admin.php:923
985
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
986
  msgstr ""
987
 
988
- #: src/admin.php:844, src/admin.php:4246
989
  msgid "Upload"
990
  msgstr ""
991
 
992
- #: src/addons/reporting.php:529, src/admin.php:794
993
  msgid "Only email the database backup"
994
  msgstr ""
995
 
@@ -1059,7 +1063,7 @@ msgstr ""
1059
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1060
  msgstr ""
1061
 
1062
- #: src/includes/class-remote-send.php:437
1063
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1064
  msgstr ""
1065
 
@@ -1091,7 +1095,7 @@ msgstr ""
1091
  msgid "Thank you for installing UpdraftPlus!"
1092
  msgstr ""
1093
 
1094
- #: src/includes/class-remote-send.php:531
1095
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1096
  msgstr ""
1097
 
@@ -1119,11 +1123,11 @@ msgstr ""
1119
  msgid "Ensure you are logged into the correct account before continuing."
1120
  msgstr ""
1121
 
1122
- #: src/admin.php:4984
1123
  msgid "Remote storage method and instance id are required for authentication."
1124
  msgstr ""
1125
 
1126
- #: src/admin.php:4980
1127
  msgid "authentication error"
1128
  msgstr ""
1129
 
@@ -1151,11 +1155,11 @@ msgstr ""
1151
  msgid "Delete these settings"
1152
  msgstr ""
1153
 
1154
- #: src/addons/morestorage.php:81, src/admin.php:922
1155
  msgid "Currently disabled"
1156
  msgstr ""
1157
 
1158
- #: src/addons/morestorage.php:81, src/admin.php:921
1159
  msgid "Currently enabled"
1160
  msgstr ""
1161
 
@@ -1202,15 +1206,15 @@ msgstr[0] ""
1202
  msgstr[1] ""
1203
  msgstr[2] ""
1204
 
1205
- #: src/class-updraftplus.php:4287
1206
  msgid "Your chosen replacement collation"
1207
  msgstr ""
1208
 
1209
- #: src/class-updraftplus.php:4264
1210
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1211
  msgstr ""
1212
 
1213
- #: src/class-updraftplus.php:4264
1214
  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."
1215
  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."
1216
  msgstr[0] ""
@@ -1280,15 +1284,15 @@ msgstr[2] ""
1280
  msgid "Requested table character set (%s) is not present - changing to %s."
1281
  msgstr ""
1282
 
1283
- #: src/class-updraftplus.php:4240
1284
  msgid "Your chosen character set to use instead:"
1285
  msgstr ""
1286
 
1287
- #: src/class-updraftplus.php:4230
1288
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1289
  msgstr ""
1290
 
1291
- #: src/class-updraftplus.php:4230
1292
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1293
  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."
1294
  msgstr[0] ""
@@ -1339,7 +1343,7 @@ msgstr ""
1339
  msgid "You now need to copy the key below and enter it at your %s."
1340
  msgstr ""
1341
 
1342
- #: src/admin.php:916
1343
  msgid "Please enter a valid URL e.g http://example.com"
1344
  msgstr ""
1345
 
@@ -1379,27 +1383,27 @@ msgstr ""
1379
  msgid "Account ID"
1380
  msgstr ""
1381
 
1382
- #: src/class-updraftplus.php:4069
1383
  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."
1384
  msgstr ""
1385
 
1386
- #: src/class-updraftplus.php:4067, src/class-updraftplus.php:4069
1387
  msgid "the migrator add-on"
1388
  msgstr ""
1389
 
1390
- #: src/class-updraftplus.php:4067
1391
  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."
1392
  msgstr ""
1393
 
1394
- #: src/class-updraftplus.php:4065
1395
  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."
1396
  msgstr ""
1397
 
1398
- #: src/class-updraftplus.php:4060
1399
  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."
1400
  msgstr ""
1401
 
1402
- #: src/methods/googledrive.php:1275
1403
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1404
  msgstr ""
1405
 
@@ -1407,18 +1411,18 @@ msgstr ""
1407
  msgid "Follow this link to remove these settings for %s."
1408
  msgstr ""
1409
 
1410
- #: src/admin.php:895
1411
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1412
  msgstr ""
1413
 
1414
- #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2187,
1415
- #: src/class-updraftplus.php:2252,
1416
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1417
  msgid "A PHP fatal error (%s) has occurred: %s"
1418
  msgstr ""
1419
 
1420
- #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2178,
1421
- #: src/class-updraftplus.php:2245,
1422
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1423
  msgid "A PHP exception (%s) has occurred: %s"
1424
  msgstr ""
@@ -1472,11 +1476,11 @@ msgstr ""
1472
  msgid "Instant and secure logon with a wave of your phone."
1473
  msgstr ""
1474
 
1475
- #: src/admin.php:5190
1476
  msgid "Value"
1477
  msgstr ""
1478
 
1479
- #: src/admin.php:1779
1480
  msgid "Did not know how to delete from this cloud service."
1481
  msgstr ""
1482
 
@@ -1492,11 +1496,11 @@ msgstr ""
1492
  msgid "Cloud Files"
1493
  msgstr ""
1494
 
1495
- #: src/admin.php:4932
1496
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1497
  msgstr ""
1498
 
1499
- #: src/admin.php:4891
1500
  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."
1501
  msgstr ""
1502
 
@@ -1513,43 +1517,43 @@ msgstr ""
1513
  msgid "Extra database"
1514
  msgstr ""
1515
 
1516
- #: src/admin.php:4102
1517
  msgid "Press here to download or browse"
1518
  msgstr ""
1519
 
1520
- #: src/admin.php:1332, src/admin.php:1342
1521
  msgid "Error: invalid path"
1522
  msgstr ""
1523
 
1524
- #: src/admin.php:1131
1525
  msgid "An error occurred when fetching storage module options: "
1526
  msgstr ""
1527
 
1528
- #: src/admin.php:913
1529
  msgid "Loading log file"
1530
  msgstr ""
1531
 
1532
- #: src/admin.php:912
1533
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1534
  msgstr ""
1535
 
1536
- #: src/admin.php:911
1537
  msgid "Search"
1538
  msgstr ""
1539
 
1540
- #: src/admin.php:910
1541
  msgid "Select a file to view information about it"
1542
  msgstr ""
1543
 
1544
- #: src/admin.php:909
1545
  msgid "Browsing zip file"
1546
  msgstr ""
1547
 
1548
- #: src/admin.php:876
1549
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1550
  msgstr ""
1551
 
1552
- #: src/admin.php:822
1553
  msgid "Browse contents"
1554
  msgstr ""
1555
 
@@ -1557,43 +1561,43 @@ msgstr ""
1557
  msgid "Skipped tables:"
1558
  msgstr ""
1559
 
1560
- #: src/class-updraftplus.php:4365
1561
  msgid "This database backup has the following WordPress tables excluded: %s"
1562
  msgstr ""
1563
 
1564
- #: src/admin.php:3020
1565
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1566
  msgstr ""
1567
 
1568
- #: src/admin.php:3020
1569
  msgid "All WordPress tables will be backed up."
1570
  msgstr ""
1571
 
1572
- #: src/admin.php:908
1573
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1574
  msgstr ""
1575
 
1576
- #: src/admin.php:908
1577
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1578
  msgstr ""
1579
 
1580
- #: src/admin.php:908
1581
  msgid "The available memory on the server."
1582
  msgstr ""
1583
 
1584
- #: src/admin.php:908
1585
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1586
  msgstr ""
1587
 
1588
- #: src/admin.php:908
1589
  msgid "The file failed to upload. Please check the following:"
1590
  msgstr ""
1591
 
1592
- #: src/admin.php:907
1593
  msgid "HTTP code:"
1594
  msgstr ""
1595
 
1596
- #: src/addons/wp-cli.php:109, src/admin.php:799
1597
  msgid "You have chosen to backup a database, but no tables have been selected"
1598
  msgstr ""
1599
 
@@ -1743,7 +1747,7 @@ msgstr ""
1743
  msgid "Free"
1744
  msgstr ""
1745
 
1746
- #: src/admin.php:484
1747
  msgid "UpdraftPlus"
1748
  msgstr ""
1749
 
@@ -2018,7 +2022,7 @@ msgstr ""
2018
  msgid "Backup of: %s"
2019
  msgstr ""
2020
 
2021
- #: src/methods/googledrive.php:270
2022
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2023
  msgstr ""
2024
 
@@ -2042,11 +2046,11 @@ msgstr ""
2042
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2043
  msgstr ""
2044
 
2045
- #: src/admin.php:1862
2046
  msgid "Remote files deleted:"
2047
  msgstr ""
2048
 
2049
- #: src/admin.php:1861
2050
  msgid "Local files deleted:"
2051
  msgstr ""
2052
 
@@ -2054,39 +2058,39 @@ msgstr ""
2054
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2055
  msgstr ""
2056
 
2057
- #: src/admin.php:906
2058
  msgid "remote files deleted"
2059
  msgstr ""
2060
 
2061
- #: src/admin.php:902
2062
  msgid "Complete"
2063
  msgstr ""
2064
 
2065
- #: src/admin.php:901
2066
  msgid "Do you want to carry out the import?"
2067
  msgstr ""
2068
 
2069
- #: src/admin.php:900
2070
  msgid "Which was exported on:"
2071
  msgstr ""
2072
 
2073
- #: src/admin.php:899
2074
  msgid "This will import data from:"
2075
  msgstr ""
2076
 
2077
- #: src/admin.php:898
2078
  msgid "Importing..."
2079
  msgstr ""
2080
 
2081
- #: src/admin.php:894
2082
  msgid "You have not yet selected a file to import."
2083
  msgstr ""
2084
 
2085
- #: src/admin.php:878
2086
  msgid "Your export file will be of your displayed settings, not your saved ones."
2087
  msgstr ""
2088
 
2089
- #: src/admin.php:89
2090
  msgid "template not found"
2091
  msgstr ""
2092
 
@@ -2102,16 +2106,16 @@ msgstr ""
2102
  msgid "Account is not authorized (%s)."
2103
  msgstr ""
2104
 
2105
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889
2106
  msgid "Your IP address:"
2107
  msgstr ""
2108
 
2109
- #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:889,
2110
- #: src/udaddons/updraftplus-addons.php:903
2111
  msgid "To remove any block, please go here."
2112
  msgstr ""
2113
 
2114
- #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:874
2115
  msgid "An error response was received; HTTP code:"
2116
  msgstr ""
2117
 
@@ -2127,15 +2131,15 @@ msgstr ""
2127
  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"
2128
  msgstr ""
2129
 
2130
- #: src/admin.php:2607
2131
  msgid "To fix this problem go here."
2132
  msgstr ""
2133
 
2134
- #: src/admin.php:2607
2135
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2136
  msgstr ""
2137
 
2138
- #: src/admin.php:862
2139
  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."
2140
  msgstr ""
2141
 
@@ -2163,7 +2167,7 @@ msgstr ""
2163
  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."
2164
  msgstr ""
2165
 
2166
- #: src/udaddons/updraftplus-addons.php:906
2167
  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."
2168
  msgstr ""
2169
 
@@ -2257,7 +2261,7 @@ msgstr ""
2257
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2258
  msgstr ""
2259
 
2260
- #: src/methods/googledrive.php:530
2261
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2262
  msgstr ""
2263
 
@@ -2278,7 +2282,7 @@ msgstr ""
2278
  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."
2279
  msgstr ""
2280
 
2281
- #: src/class-updraftplus.php:1793
2282
  msgid "Size: %s MB"
2283
  msgstr ""
2284
 
@@ -2286,7 +2290,7 @@ msgstr ""
2286
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2287
  msgstr ""
2288
 
2289
- #: src/class-updraftplus.php:4086, src/restorer.php:1446
2290
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2291
  msgstr ""
2292
 
@@ -2308,7 +2312,7 @@ msgstr ""
2308
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2309
  msgstr ""
2310
 
2311
- #: src/class-updraftplus.php:583, src/class-updraftplus.php:628
2312
  msgid "The given file was not found, or could not be read."
2313
  msgstr ""
2314
 
@@ -2392,23 +2396,23 @@ msgstr ""
2392
  msgid "UpdraftCentral Connection"
2393
  msgstr ""
2394
 
2395
- #: src/backup.php:1042, src/class-updraftplus.php:3026
2396
  msgid "The backup was aborted by the user"
2397
  msgstr ""
2398
 
2399
- #: src/admin.php:4927
2400
  msgid "Your settings have been saved."
2401
  msgstr ""
2402
 
2403
- #: src/admin.php:4007
2404
  msgid "Total backup size:"
2405
  msgstr ""
2406
 
2407
- #: src/admin.php:3414
2408
  msgid "stop"
2409
  msgstr ""
2410
 
2411
- #: src/admin.php:903, src/admin.php:3207
2412
  msgid "The backup has finished running"
2413
  msgstr ""
2414
 
@@ -2434,27 +2438,27 @@ msgstr ""
2434
  msgid "calculate"
2435
  msgstr ""
2436
 
2437
- #: src/admin.php:877
2438
  msgid "You should save your changes to ensure that they are used for making your backup."
2439
  msgstr ""
2440
 
2441
- #: src/admin.php:870
2442
  msgid "We requested to delete the file, but could not understand the server's response"
2443
  msgstr ""
2444
 
2445
- #: src/admin.php:869
2446
  msgid "Please enter a valid URL"
2447
  msgstr ""
2448
 
2449
- #: src/admin.php:852
2450
  msgid "Saving..."
2451
  msgstr ""
2452
 
2453
- #: src/admin.php:813
2454
  msgid "Error: the server sent us a response which we did not understand."
2455
  msgstr ""
2456
 
2457
- #: src/admin.php:805
2458
  msgid "Fetching..."
2459
  msgstr ""
2460
 
@@ -2470,24 +2474,24 @@ msgstr ""
2470
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2471
  msgstr ""
2472
 
2473
- #: src/class-updraftplus.php:4138, src/restorer.php:2227
2474
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2475
  msgstr ""
2476
 
2477
- #: src/class-updraftplus.php:4134
2478
  msgid "Please read this link for important information on this process."
2479
  msgstr ""
2480
 
2481
- #: src/class-updraftplus.php:4134
2482
  msgid "It will be imported as a new site."
2483
  msgstr ""
2484
 
2485
- #: src/admin.php:2840, src/templates/wp-admin/notices/horizontal-notice.php:16,
2486
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2487
  msgid "Dismiss"
2488
  msgstr ""
2489
 
2490
- #: src/admin.php:889
2491
  msgid "Please fill in the required information."
2492
  msgstr ""
2493
 
@@ -2548,7 +2552,7 @@ msgstr ""
2548
  msgid "Call WordPress action:"
2549
  msgstr ""
2550
 
2551
- #: src/admin.php:3030
2552
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2553
  msgstr ""
2554
 
@@ -2580,76 +2584,76 @@ msgstr ""
2580
  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)."
2581
  msgstr ""
2582
 
2583
- #: src/admin.php:4801
2584
  msgid "Send this backup to remote storage"
2585
  msgstr ""
2586
 
2587
- #: src/admin.php:4799
2588
  msgid "Check out UpdraftPlus Vault."
2589
  msgstr ""
2590
 
2591
- #: src/admin.php:4799
2592
  msgid "Not got any remote storage?"
2593
  msgstr ""
2594
 
2595
- #: src/admin.php:4799
2596
  msgid "settings"
2597
  msgstr ""
2598
 
2599
- #: src/admin.php:4799
2600
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2601
  msgstr ""
2602
 
2603
- #: src/admin.php:3028
2604
  msgid "Include any files in the backup"
2605
  msgstr ""
2606
 
2607
- #: src/admin.php:3012
2608
  msgid "Include the database in the backup"
2609
  msgstr ""
2610
 
2611
- #: src/admin.php:2839
2612
  msgid "Continue restoration"
2613
  msgstr ""
2614
 
2615
- #: src/admin.php:2834
2616
  msgid "You have an unfinished restoration operation, begun %s ago."
2617
  msgstr ""
2618
 
2619
- #: src/admin.php:2833
11
  "Language: bs_BA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/admin.php:5374
15
+ msgid "Clone region:"
16
+ msgstr ""
17
+
18
  #: src/udaddons/updraftplus-addons.php:268,
19
  #: src/udaddons/updraftplus-addons.php:280
20
  msgid "go here"
29
  msgid "Authentication"
30
  msgstr ""
31
 
32
+ #: src/admin.php:926
33
  msgid "You must select at least one remote storage destination to upload this backup set to."
34
  msgstr ""
35
 
49
  msgid "Found SET NAMES %s, but changing to %s as suggested by WPDB::determine_charset()."
50
  msgstr ""
51
 
52
+ #: src/admin.php:953
53
  msgid "UpdraftClone key is required."
54
  msgstr ""
55
 
56
+ #: src/admin.php:944
57
  msgid "The preparation of the clone data has been aborted."
58
  msgstr ""
59
 
73
  msgid "Your database user does not have permission to drop tables"
74
  msgstr ""
75
 
76
+ #: src/admin.php:2962
77
  msgid "Ask WordPress to update UpdraftPlus automatically when an update is available"
78
  msgstr ""
79
 
241
  msgid "WordPress installed"
242
  msgstr ""
243
 
244
+ #: src/admin.php:5428
245
  msgid "Your clone has started, network information is not yet available but will be displayed here and at your updraftplus.com account once it is ready."
246
  msgstr ""
247
 
248
+ #: src/admin.php:3828
249
  msgid "Exclude these from"
250
  msgstr ""
251
 
252
+ #: src/admin.php:952
253
  msgid "The exclusion rule which you are trying to add already exists"
254
  msgstr ""
255
 
256
+ #: src/admin.php:951
257
  msgid "Please enter a valid file name prefix"
258
  msgstr ""
259
 
260
+ #: src/admin.php:950
261
  msgid "Please enter characters that begin the filename which you would like to exclude"
262
  msgstr ""
263
 
264
+ #: src/admin.php:949
265
  msgid "Please enter a valid file extension"
266
  msgstr ""
267
 
268
+ #: src/admin.php:948
269
  msgid "Please enter a file extension, like zip"
270
  msgstr ""
271
 
272
+ #: src/admin.php:947
273
  msgid "Please select a file/folder which you would like to exclude"
274
  msgstr ""
275
 
276
+ #: src/admin.php:946
277
  msgid "Are you sure you want to remove this exclusion rule?"
278
  msgstr ""
279
 
297
  msgid "failed to upload file to %s (see log file for more)"
298
  msgstr ""
299
 
300
+ #: src/admin.php:5424
301
  msgid "Dashboard:"
302
  msgstr ""
303
 
304
+ #: src/admin.php:5423
305
  msgid "Front page:"
306
  msgstr ""
307
 
308
+ #: src/admin.php:5422
309
  msgid "Your clone has started and will be available at the following URLs once it is ready."
310
  msgstr ""
311
 
317
  msgid "Current clones"
318
  msgstr ""
319
 
320
+ #: src/class-updraftplus.php:2992
321
  msgid "Your clone will now deploy this data to re-create your site."
322
  msgstr ""
323
 
324
+ #: src/admin.php:943
325
  msgid "The clone has been provisioned, and its data has been sent to it. Once the clone has finished deploying it, you will receive an email."
326
  msgstr ""
327
 
367
  msgid "Unable to get renew date"
368
  msgstr ""
369
 
370
+ #: src/admin.php:906
371
  msgid "The backup was aborted"
372
  msgstr ""
373
 
621
  msgid "You can buy more temporary clone tokens here."
622
  msgstr ""
623
 
624
+ #: src/admin.php:5379
625
  msgid "Forbid non-administrators to login to WordPress on your clone"
626
  msgstr ""
627
 
637
  msgid "Other great plugins"
638
  msgstr ""
639
 
640
+ #: src/admin.php:5426, src/admin.php:5429
641
  msgid "You can find your temporary clone information in your updraftplus.com account here."
642
  msgstr ""
643
 
644
+ #: src/class-updraftplus.php:4177
645
  msgid "Choose a default for each table"
646
  msgstr ""
647
 
648
+ #: src/admin.php:3276
649
  msgid "Sending files to remote site"
650
  msgstr ""
651
 
652
+ #: src/admin.php:3271
653
  msgid "Clone server being provisioned and booted (can take several minutes)"
654
  msgstr ""
655
 
656
+ #: src/admin.php:942
657
  msgid "Warning: you have selected a lower version than your currently installed version. This may fail if you have components that are incompatible with earlier versions."
658
  msgstr ""
659
 
661
  msgid "To import a backup set, go to the \"Existing Backups\" section in the \"Backup/Restore\" tab"
662
  msgstr ""
663
 
664
+ #: src/admin.php:2798
665
  msgid "Backup / Restore"
666
  msgstr ""
667
 
668
+ #: src/admin.php:663
669
  msgid "Backup"
670
  msgstr ""
671
 
737
  msgid "More information here."
738
  msgstr ""
739
 
740
+ #: src/admin.php:671, src/admin.php:2799
741
  msgid "Migrate / Clone"
742
  msgstr ""
743
 
744
+ #: src/admin.php:3036, src/admin.php:3961,
745
  #: src/templates/wp-admin/settings/existing-backups-table.php:73,
746
  #: src/templates/wp-admin/settings/existing-backups-table.php:76
747
  msgid "Only allow this backup to be deleted manually (i.e. keep it even if retention limits are hit)."
763
  msgid "Run this command to see the log file for this restoration (needed for any support requests)."
764
  msgstr ""
765
 
766
+ #: src/class-updraftplus.php:188
767
  msgid "A version of UpdraftPlus is already installed. WordPress will only allow you to install your new version after first de-installing the existing one. That is safe - all your settings and backups will be retained. So, go to the \"Plugins\" page, de-activate and de-install UpdraftPlus, and then try again."
768
  msgstr ""
769
 
770
+ #: src/admin.php:5402
771
  msgid "(current version)"
772
  msgstr ""
773
 
774
+ #: src/admin.php:3738
775
  msgid "press here"
776
  msgstr ""
777
 
778
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
779
+ #: src/methods/googledrive.php:1214
780
  msgid "this privacy policy"
781
  msgstr ""
782
 
783
  #: src/addons/onedrive.php:1157, src/methods/dropbox.php:586,
784
+ #: src/methods/googledrive.php:1214
785
  msgid "Please read %s for use of our %s authorization app (none of your backup data is sent to us)."
786
  msgstr ""
787
 
805
  msgid "Available temporary clone tokens:"
806
  msgstr ""
807
 
808
+ #: src/admin.php:2886, src/includes/class-commands.php:901,
809
  #: src/includes/class-commands.php:949,
810
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
811
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
824
  msgid "I consent to %s"
825
  msgstr ""
826
 
827
+ #: src/admin.php:2984,
828
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:56
829
  msgid "One Time Password (check your OTP app to get this password)"
830
  msgstr ""
873
  msgid "An error has occurred while processing your request. The server might be busy or you have lost your connection to the internet at the time of the request. Please try again later."
874
  msgstr ""
875
 
876
+ #: src/admin.php:5344
877
  msgid "The file %s has a \"byte order mark\" (BOM) at its beginning."
878
  msgid_plural "The files %s have a \"byte order mark\" (BOM) at their beginning."
879
  msgstr[0] ""
880
  msgstr[1] ""
881
  msgstr[2] ""
882
 
883
+ #: src/admin.php:940
884
  msgid "For future control of all your UpdraftCentral connections, go to the \"Advanced Tools\" tab."
885
  msgstr ""
886
 
887
+ #: src/admin.php:939
888
  msgid "You can also close this wizard."
889
  msgstr ""
890
 
891
+ #: src/admin.php:938
892
  msgid "You need to read and accept the UpdraftCentral Cloud data and privacy policies before you can proceed."
893
  msgstr ""
894
 
895
+ #: src/admin.php:937
896
  msgid "Please wait while you are redirected to UpdraftCentral Cloud."
897
  msgstr ""
898
 
899
+ #: src/admin.php:936
900
  msgid "Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud."
901
  msgstr ""
902
 
903
+ #: src/admin.php:935
904
  msgid "Perhaps you would want to login instead."
905
  msgstr ""
906
 
907
+ #: src/admin.php:934
908
  msgid "Trouble connecting? Try using an alternative method in the advanced security options."
909
  msgstr ""
910
 
911
+ #: src/admin.php:933
912
  msgid "An email is required and needs to be in a valid format."
913
  msgstr ""
914
 
915
+ #: src/admin.php:932
916
  msgid "Both email and password fields are required."
917
  msgstr ""
918
 
919
+ #: src/admin.php:931
920
  msgid "Registration successful."
921
  msgstr ""
922
 
923
+ #: src/admin.php:930, src/admin.php:931
924
  msgid "Please follow this link to open %s in a new window."
925
  msgstr ""
926
 
927
+ #: src/admin.php:930
928
  msgid "Login successful."
929
  msgstr ""
930
 
931
+ #: src/admin.php:929,
932
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:9
933
  msgid "UpdraftCentral Cloud"
934
  msgstr ""
935
 
936
+ #: src/admin.php:489
937
  msgid "Are you sure you want to dismiss all UpdraftPlus news forever?"
938
  msgstr ""
939
 
940
+ #: src/admin.php:488
941
  msgid "Dismiss all UpdraftPlus news"
942
  msgstr ""
943
 
944
+ #: src/admin.php:487
945
  msgid "UpdraftPlus News"
946
  msgstr ""
947
 
965
  msgid "Azure Account"
966
  msgstr ""
967
 
968
+ #: src/admin.php:928
969
  msgid "Please specify the Microsoft OneDrive folder name, not the URL."
970
  msgstr ""
971
 
977
  msgid "Upload backup"
978
  msgstr ""
979
 
980
+ #: src/admin.php:4248
981
  msgid "After pressing this button, you can select where to upload your backup from a list of your currently saved remote storage locations"
982
  msgstr ""
983
 
984
+ #: src/admin.php:927
985
  msgid "(already uploaded)"
986
  msgstr ""
987
 
988
+ #: src/admin.php:925
989
  msgid "Local backup upload has started; please check the current status tab to see the upload progress"
990
  msgstr ""
991
 
992
+ #: src/admin.php:846, src/admin.php:4248
993
  msgid "Upload"
994
  msgstr ""
995
 
996
+ #: src/addons/reporting.php:529, src/admin.php:796
997
  msgid "Only email the database backup"
998
  msgstr ""
999
 
1063
  msgid "Keys for a site are created in the section \"receive a backup from a remote site\"."
1064
  msgstr ""
1065
 
1066
+ #: src/includes/class-remote-send.php:438
1067
  msgid "You must copy and paste this key on the sending site now - it cannot be shown again."
1068
  msgstr ""
1069
 
1095
  msgid "Thank you for installing UpdraftPlus!"
1096
  msgstr ""
1097
 
1098
+ #: src/includes/class-remote-send.php:532
1099
  msgid "No keys to allow remote sites to send backup data here have yet been created."
1100
  msgstr ""
1101
 
1123
  msgid "Ensure you are logged into the correct account before continuing."
1124
  msgstr ""
1125
 
1126
+ #: src/admin.php:4986
1127
  msgid "Remote storage method and instance id are required for authentication."
1128
  msgstr ""
1129
 
1130
+ #: src/admin.php:4982
1131
  msgid "authentication error"
1132
  msgstr ""
1133
 
1155
  msgid "Delete these settings"
1156
  msgstr ""
1157
 
1158
+ #: src/addons/morestorage.php:81, src/admin.php:924
1159
  msgid "Currently disabled"
1160
  msgstr ""
1161
 
1162
+ #: src/addons/morestorage.php:81, src/admin.php:923
1163
  msgid "Currently enabled"
1164
  msgstr ""
1165
 
1206
  msgstr[1] ""
1207
  msgstr[2] ""
1208
 
1209
+ #: src/class-updraftplus.php:4154
1210
  msgid "Your chosen replacement collation"
1211
  msgstr ""
1212
 
1213
+ #: src/class-updraftplus.php:4131
1214
  msgid "You can choose another suitable collation instead and continue with the restoration (at your own risk)."
1215
  msgstr ""
1216
 
1217
+ #: src/class-updraftplus.php:4131
1218
  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."
1219
  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."
1220
  msgstr[0] ""
1284
  msgid "Requested table character set (%s) is not present - changing to %s."
1285
  msgstr ""
1286
 
1287
+ #: src/class-updraftplus.php:4107
1288
  msgid "Your chosen character set to use instead:"
1289
  msgstr ""
1290
 
1291
+ #: src/class-updraftplus.php:4097
1292
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
1293
  msgstr ""
1294
 
1295
+ #: src/class-updraftplus.php:4097
1296
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
1297
  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."
1298
  msgstr[0] ""
1343
  msgid "You now need to copy the key below and enter it at your %s."
1344
  msgstr ""
1345
 
1346
+ #: src/admin.php:918
1347
  msgid "Please enter a valid URL e.g http://example.com"
1348
  msgstr ""
1349
 
1383
  msgid "Account ID"
1384
  msgstr ""
1385
 
1386
+ #: src/class-updraftplus.php:3936
1387
  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."
1388
  msgstr ""
1389
 
1390
+ #: src/class-updraftplus.php:3934, src/class-updraftplus.php:3936
1391
  msgid "the migrator add-on"
1392
  msgstr ""
1393
 
1394
+ #: src/class-updraftplus.php:3934
1395
  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."
1396
  msgstr ""
1397
 
1398
+ #: src/class-updraftplus.php:3932
1399
  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."
1400
  msgstr ""
1401
 
1402
+ #: src/class-updraftplus.php:3927
1403
  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."
1404
  msgstr ""
1405
 
1406
+ #: src/methods/googledrive.php:1283
1407
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
1408
  msgstr ""
1409
 
1411
  msgid "Follow this link to remove these settings for %s."
1412
  msgstr ""
1413
 
1414
+ #: src/admin.php:897
1415
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
1416
  msgstr ""
1417
 
1418
+ #: src/backup.php:456, src/backup.php:2140, src/class-updraftplus.php:2133,
1419
+ #: src/class-updraftplus.php:2198,
1420
  #: src/includes/class-storage-methods-interface.php:373, src/restorer.php:384
1421
  msgid "A PHP fatal error (%s) has occurred: %s"
1422
  msgstr ""
1423
 
1424
+ #: src/backup.php:450, src/backup.php:2131, src/class-updraftplus.php:2124,
1425
+ #: src/class-updraftplus.php:2191,
1426
  #: src/includes/class-storage-methods-interface.php:364, src/restorer.php:370
1427
  msgid "A PHP exception (%s) has occurred: %s"
1428
  msgstr ""
1476
  msgid "Instant and secure logon with a wave of your phone."
1477
  msgstr ""
1478
 
1479
+ #: src/admin.php:5192
1480
  msgid "Value"
1481
  msgstr ""
1482
 
1483
+ #: src/admin.php:1781
1484
  msgid "Did not know how to delete from this cloud service."
1485
  msgstr ""
1486
 
1496
  msgid "Cloud Files"
1497
  msgstr ""
1498
 
1499
+ #: src/admin.php:4934
1500
  msgid "Your settings failed to save. Please refresh the settings page and try again"
1501
  msgstr ""
1502
 
1503
+ #: src/admin.php:4893
1504
  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."
1505
  msgstr ""
1506
 
1517
  msgid "Extra database"
1518
  msgstr ""
1519
 
1520
+ #: src/admin.php:4104
1521
  msgid "Press here to download or browse"
1522
  msgstr ""
1523
 
1524
+ #: src/admin.php:1334, src/admin.php:1344
1525
  msgid "Error: invalid path"
1526
  msgstr ""
1527
 
1528
+ #: src/admin.php:1133
1529
  msgid "An error occurred when fetching storage module options: "
1530
  msgstr ""
1531
 
1532
+ #: src/admin.php:915
1533
  msgid "Loading log file"
1534
  msgstr ""
1535
 
1536
+ #: src/admin.php:914
1537
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
1538
  msgstr ""
1539
 
1540
+ #: src/admin.php:913
1541
  msgid "Search"
1542
  msgstr ""
1543
 
1544
+ #: src/admin.php:912
1545
  msgid "Select a file to view information about it"
1546
  msgstr ""
1547
 
1548
+ #: src/admin.php:911
1549
  msgid "Browsing zip file"
1550
  msgstr ""
1551
 
1552
+ #: src/admin.php:878
1553
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
1554
  msgstr ""
1555
 
1556
+ #: src/admin.php:824
1557
  msgid "Browse contents"
1558
  msgstr ""
1559
 
1561
  msgid "Skipped tables:"
1562
  msgstr ""
1563
 
1564
+ #: src/class-updraftplus.php:4232
1565
  msgid "This database backup has the following WordPress tables excluded: %s"
1566
  msgstr ""
1567
 
1568
+ #: src/admin.php:3022
1569
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
1570
  msgstr ""
1571
 
1572
+ #: src/admin.php:3022
1573
  msgid "All WordPress tables will be backed up."
1574
  msgstr ""
1575
 
1576
+ #: src/admin.php:910
1577
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
1578
  msgstr ""
1579
 
1580
+ #: src/admin.php:910
1581
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
1582
  msgstr ""
1583
 
1584
+ #: src/admin.php:910
1585
  msgid "The available memory on the server."
1586
  msgstr ""
1587
 
1588
+ #: src/admin.php:910
1589
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
1590
  msgstr ""
1591
 
1592
+ #: src/admin.php:910
1593
  msgid "The file failed to upload. Please check the following:"
1594
  msgstr ""
1595
 
1596
+ #: src/admin.php:909
1597
  msgid "HTTP code:"
1598
  msgstr ""
1599
 
1600
+ #: src/addons/wp-cli.php:109, src/admin.php:801
1601
  msgid "You have chosen to backup a database, but no tables have been selected"
1602
  msgstr ""
1603
 
1747
  msgid "Free"
1748
  msgstr ""
1749
 
1750
+ #: src/admin.php:486
1751
  msgid "UpdraftPlus"
1752
  msgstr ""
1753
 
2022
  msgid "Backup of: %s"
2023
  msgstr ""
2024
 
2025
+ #: src/methods/googledrive.php:278
2026
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
2027
  msgstr ""
2028
 
2046
  msgid "You have selected a remote storage option which has an authorization step to complete:"
2047
  msgstr ""
2048
 
2049
+ #: src/admin.php:1864
2050
  msgid "Remote files deleted:"
2051
  msgstr ""
2052
 
2053
+ #: src/admin.php:1863
2054
  msgid "Local files deleted:"
2055
  msgstr ""
2056
 
2058
  msgid "Follow this link to authorize access to your %s account (you will not be able to backup to %s without it)."
2059
  msgstr ""
2060
 
2061
+ #: src/admin.php:908
2062
  msgid "remote files deleted"
2063
  msgstr ""
2064
 
2065
+ #: src/admin.php:904
2066
  msgid "Complete"
2067
  msgstr ""
2068
 
2069
+ #: src/admin.php:903
2070
  msgid "Do you want to carry out the import?"
2071
  msgstr ""
2072
 
2073
+ #: src/admin.php:902
2074
  msgid "Which was exported on:"
2075
  msgstr ""
2076
 
2077
+ #: src/admin.php:901
2078
  msgid "This will import data from:"
2079
  msgstr ""
2080
 
2081
+ #: src/admin.php:900
2082
  msgid "Importing..."
2083
  msgstr ""
2084
 
2085
+ #: src/admin.php:896
2086
  msgid "You have not yet selected a file to import."
2087
  msgstr ""
2088
 
2089
+ #: src/admin.php:880
2090
  msgid "Your export file will be of your displayed settings, not your saved ones."
2091
  msgstr ""
2092
 
2093
+ #: src/admin.php:91
2094
  msgid "template not found"
2095
  msgstr ""
2096
 
2106
  msgid "Account is not authorized (%s)."
2107
  msgstr ""
2108
 
2109
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947
2110
  msgid "Your IP address:"
2111
  msgstr ""
2112
 
2113
+ #: src/addons/onedrive.php:693, src/udaddons/updraftplus-addons.php:947,
2114
+ #: src/udaddons/updraftplus-addons.php:961
2115
  msgid "To remove any block, please go here."
2116
  msgstr ""
2117
 
2118
+ #: src/addons/onedrive.php:678, src/udaddons/updraftplus-addons.php:932
2119
  msgid "An error response was received; HTTP code:"
2120
  msgstr ""
2121
 
2131
  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"
2132
  msgstr ""
2133
 
2134
+ #: src/admin.php:2609
2135
  msgid "To fix this problem go here."
2136
  msgstr ""
2137
 
2138
+ #: src/admin.php:2609
2139
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2140
  msgstr ""
2141
 
2142
+ #: src/admin.php:864
2143
  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."
2144
  msgstr ""
2145
 
2167
  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."
2168
  msgstr ""
2169
 
2170
+ #: src/udaddons/updraftplus-addons.php:964
2171
  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."
2172
  msgstr ""
2173
 
2261
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create key\":"
2262
  msgstr ""
2263
 
2264
+ #: src/methods/googledrive.php:538
2265
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
2266
  msgstr ""
2267
 
2282
  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."
2283
  msgstr ""
2284
 
2285
+ #: src/class-updraftplus.php:1739
2286
  msgid "Size: %s MB"
2287
  msgstr ""
2288
 
2290
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
2291
  msgstr ""
2292
 
2293
+ #: src/class-updraftplus.php:3953, src/restorer.php:1446
2294
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
2295
  msgstr ""
2296
 
2312
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2313
  msgstr ""
2314
 
2315
+ #: src/class-updraftplus.php:584, src/class-updraftplus.php:629
2316
  msgid "The given file was not found, or could not be read."
2317
  msgstr ""
2318
 
2396
  msgid "UpdraftCentral Connection"
2397
  msgstr ""
2398
 
2399
+ #: src/backup.php:1042, src/class-updraftplus.php:2973
2400
  msgid "The backup was aborted by the user"
2401
  msgstr ""
2402
 
2403
+ #: src/admin.php:4929
2404
  msgid "Your settings have been saved."
2405
  msgstr ""
2406
 
2407
+ #: src/admin.php:4009
2408
  msgid "Total backup size:"
2409
  msgstr ""
2410
 
2411
+ #: src/admin.php:3416
2412
  msgid "stop"
2413
  msgstr ""
2414
 
2415
+ #: src/admin.php:905, src/admin.php:3209
2416
  msgid "The backup has finished running"
2417
  msgstr ""
2418
 
2438
  msgid "calculate"
2439
  msgstr ""
2440
 
2441
+ #: src/admin.php:879
2442
  msgid "You should save your changes to ensure that they are used for making your backup."
2443
  msgstr ""
2444
 
2445
+ #: src/admin.php:872
2446
  msgid "We requested to delete the file, but could not understand the server's response"
2447
  msgstr ""
2448
 
2449
+ #: src/admin.php:871
2450
  msgid "Please enter a valid URL"
2451
  msgstr ""
2452
 
2453
+ #: src/admin.php:854
2454
  msgid "Saving..."
2455
  msgstr ""
2456
 
2457
+ #: src/admin.php:815
2458
  msgid "Error: the server sent us a response which we did not understand."
2459
  msgstr ""
2460
 
2461
+ #: src/admin.php:807
2462
  msgid "Fetching..."
2463
  msgstr ""
2464
 
2474
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2475
  msgstr ""
2476
 
2477
+ #: src/class-updraftplus.php:4005, src/restorer.php:2227
2478
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
2479
  msgstr ""
2480
 
2481
+ #: src/class-updraftplus.php:4001
2482
  msgid "Please read this link for important information on this process."
2483
  msgstr ""
2484
 
2485
+ #: src/class-updraftplus.php:4001
2486
  msgid "It will be imported as a new site."
2487
  msgstr ""
2488
 
2489
+ #: src/admin.php:2842, src/templates/wp-admin/notices/horizontal-notice.php:16,
2490
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2491
  msgid "Dismiss"
2492
  msgstr ""
2493
 
2494
+ #: src/admin.php:891
2495
  msgid "Please fill in the required information."
2496
  msgstr ""
2497
 
2552
  msgid "Call WordPress action:"
2553
  msgstr ""
2554
 
2555
+ #: src/admin.php:3032
2556
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2557
  msgstr ""
2558
 
2584
  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)."
2585
  msgstr ""
2586
 
2587
+ #: src/admin.php:4803
2588
  msgid "Send this backup to remote storage"
2589
  msgstr ""
2590
 
2591
+ #: src/admin.php:4801
2592
  msgid "Check out UpdraftPlus Vault."
2593
  msgstr ""
2594
 
2595
+ #: src/admin.php:4801
2596
  msgid "Not got any remote storage?"
2597
  msgstr ""
2598
 
2599
+ #: src/admin.php:4801
2600
  msgid "settings"
2601
  msgstr ""
2602
 
2603
+ #: src/admin.php:4801
2604
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
2605
  msgstr ""
2606
 
2607
+ #: src/admin.php:3030
2608
  msgid "Include any files in the backup"
2609
  msgstr ""
2610
 
2611
+ #: src/admin.php:3014
2612
  msgid "Include the database in the backup"
2613
  msgstr ""
2614
 
2615
+ #: src/admin.php:2841
2616
  msgid "Continue restoration"
2617
  msgstr ""
2618
 
2619
+ #: src/admin.php:2836
2620
  msgid "You have an unfinished restoration operation, begun %s ago."
2621
  msgstr ""
2622
 
2623
+ #: src/admin.php: