UpdraftPlus WordPress Backup Plugin - Version 1.16.7

Version Description

  • 11/Mar/2019
Download this release

Release Info

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

Code changes from version 1.16.6 to 1.16.7

admin.php CHANGED
@@ -23,6 +23,8 @@ class UpdraftPlus_Admin {
23
 
24
  private $regions = array('London', 'New York', 'San Francisco', 'Amsterdam', 'Singapore', 'Frankfurt', 'Toronto', 'Bangalore');
25
 
 
 
26
  /**
27
  * Constructor
28
  */
@@ -225,6 +227,20 @@ class UpdraftPlus_Admin {
225
  }
226
 
227
  if ($this->disk_space_check(1048576*35) === false) add_action('all_admin_notices', array($this, 'show_admin_warning_diskspace'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  }
229
 
230
  private function setup_all_admin_notices_udonly($service, $override = false) {// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.Found -- Filter use
@@ -444,6 +460,8 @@ class UpdraftPlus_Admin {
444
  // Ajax for settings import and export
445
  add_action('wp_ajax_updraft_importsettings', array($this, 'updraft_ajax_importsettings'));
446
 
 
 
447
  // UpdraftPlus templates
448
  $this->register_template_directories();
449
 
@@ -500,11 +518,7 @@ class UpdraftPlus_Admin {
500
  if (UpdraftPlus_Options::admin_page() != $pagenow || empty($_REQUEST['page']) || 'updraftplus' != $_REQUEST['page']) return;
501
  $this->setup_all_admin_notices_udonly($service);
502
 
503
- /**
504
- * Initialise checkout embed
505
- */
506
  global $updraftplus_checkout_embed;
507
-
508
  if (!class_exists('Updraft_Checkout_Embed')) include_once UPDRAFTPLUS_DIR.'/includes/checkout-embed/class-udp-checkout-embed.php';
509
 
510
  // Create an empty list (usefull for testing, thanks to the filter bellow)
@@ -518,7 +532,6 @@ class UpdraftPlus_Admin {
518
 
519
  $checkout_embed_products = apply_filters('updraftplus_checkout_embed_products', $checkout_embed_products);
520
 
521
- // Instanciate Checkout Embed
522
  if (!empty($checkout_embed_products)) {
523
  $updraftplus_checkout_embed = new Updraft_Checkout_Embed(
524
  'updraftplus', // plugin name
@@ -541,6 +554,10 @@ class UpdraftPlus_Admin {
541
  }
542
  UpdraftPlus_Options::update_updraft_option('updraftplus_version', $updraftplus->version);
543
  }
 
 
 
 
544
  }
545
 
546
  /**
@@ -955,11 +972,15 @@ class UpdraftPlus_Admin {
955
  'already_uploaded' => __('(already uploaded)', 'updraftplus'),
956
  'onedrive_folder_url_warning' => __('Please specify the Microsoft OneDrive folder name, not the URL.', 'updraftplus'),
957
  'updraftcentral_cloud' => __('UpdraftCentral Cloud', 'updraftplus'),
 
 
958
  'login_successful' => __('Login successful.', 'updraftplus').' '.__('Please follow this link to open %s in a new window.', 'updraftplus'),
 
959
  'registration_successful' => __('Registration successful.', 'updraftplus').' '.__('Please follow this link to open %s in a new window.', 'updraftplus'),
960
  'username_password_required' => __('Both email and password fields are required.', 'updraftplus'),
961
  'valid_email_required' => __('An email is required and needs to be in a valid format.', 'updraftplus'),
962
  'trouble_connecting' => __('Trouble connecting? Try using an alternative method in the advanced security options.', 'updraftplus'),
 
963
  'perhaps_login' => __('Perhaps you would want to login instead.', 'updraftplus'),
964
  'generating_key' => __('Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud.', 'updraftplus'),
965
  'updraftcentral_cloud_redirect' => __('Please wait while you are redirected to UpdraftCentral Cloud.', 'updraftplus'),
@@ -2574,7 +2595,7 @@ class UpdraftPlus_Admin {
2574
  }
2575
  $pval = $updraftplus->have_addons ? 1 : 0;
2576
 
2577
- echo '<strong>'.__('Actions', 'updraftplus').':</strong> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&updraft_restore_success='.$s_val.'&pval='.$pval.'">'.__('Return to UpdraftPlus Configuration', 'updraftplus').'</a>';
2578
  return;
2579
 
2580
  } elseif (is_wp_error($backup_success)) {
@@ -2584,7 +2605,7 @@ class UpdraftPlus_Admin {
2584
  $updraftplus->log_wp_error($backup_success);
2585
  $updraftplus->log('Restore failed');
2586
  $updraftplus->list_errors();
2587
- echo '<strong>'.__('Actions', 'updraftplus').':</strong> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus Configuration', 'updraftplus').'</a>';
2588
  return;
2589
  } elseif (false === $backup_success) {
2590
  // This means, "not yet - but stay on the page because we may be able to do it later, e.g. if the user types in the requested information"
@@ -2593,7 +2614,7 @@ class UpdraftPlus_Admin {
2593
  echo '</p>';
2594
  $updraftplus->log("Restore failed");
2595
  $updraftplus->list_errors();
2596
- echo '<strong>'.__('Actions', 'updraftplus').':</strong> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus Configuration', 'updraftplus').'</a>';
2597
  return;
2598
  }
2599
  }
@@ -2635,16 +2656,12 @@ class UpdraftPlus_Admin {
2635
  } elseif (false !== $created) {
2636
  echo '<p>'.__('Backup directory successfully created.', 'updraftplus').'</p><br>';
2637
  }
2638
- echo '<b>'.__('Actions', 'updraftplus').':</b> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus Configuration', 'updraftplus').'</a>';
2639
  return;
2640
  }
2641
 
2642
  echo '<div id="updraft_backup_started" class="updated updraft-hidden" style="display:none;"></div>';
2643
 
2644
- if (isset($_POST['action']) && 'updraft_wipesettings' == $_POST['action']) {
2645
- $this->updraft_wipe_settings();
2646
- }
2647
-
2648
  // This opens a div
2649
  $this->settings_header();
2650
  ?>
@@ -3023,13 +3040,28 @@ class UpdraftPlus_Admin {
3023
  <?php
3024
  if ('updraftplus-addons' == $option_page) {
3025
  ?>
3026
- <tr>
3027
  <th></th>
3028
  <td>
3029
  <label>
3030
  <input type="checkbox" id="<?php echo $option_page; ?>_options_auto_updates" tabindex="2" data-updraft_settings_test="updraft_auto_updates" name="<?php echo $option_page; ?>_options[updraft_auto_update]" value="1" <?php if (UpdraftPlus_Options::get_updraft_option('updraft_auto_updates')) echo 'checked="checked"'; ?> />
3031
  <?php _e('Ask WordPress to update UpdraftPlus automatically when an update is available', 'updraftplus');?>
3032
  </label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3033
  </td>
3034
  </tr>
3035
  <?php
@@ -3482,7 +3514,7 @@ class UpdraftPlus_Admin {
3482
  } else {
3483
  echo '<p>',__('Old directory removal failed for some reason. You may want to do this manually.', 'updraftplus').'</p><br>';
3484
  }
3485
- if ($show_return) echo '<b>'.__('Actions', 'updraftplus').':</b> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus Configuration', 'updraftplus').'</a>';
3486
  }
3487
 
3488
  /**
@@ -3492,7 +3524,7 @@ class UpdraftPlus_Admin {
3492
  */
3493
  private function delete_old_dirs() {
3494
  global $wp_filesystem, $updraftplus;
3495
- $credentials = request_filesystem_credentials(wp_nonce_url(UpdraftPlus_Options::admin_page_url()."?page=updraftplus&action=updraft_delete_old_dirs", 'updraftplus-credentialtest-nonce'));
3496
  WP_Filesystem($credentials);
3497
  if ($wp_filesystem->errors->get_error_code()) {
3498
  foreach ($wp_filesystem->errors->get_error_messages() as $message) show_message($message);
@@ -5407,4 +5439,46 @@ ENDHERE;
5407
 
5408
  return $version;
5409
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5410
  }
23
 
24
  private $regions = array('London', 'New York', 'San Francisco', 'Amsterdam', 'Singapore', 'Frankfurt', 'Toronto', 'Bangalore');
25
 
26
+ private $storage_service_without_settings;
27
+
28
  /**
29
  * Constructor
30
  */
227
  }
228
 
229
  if ($this->disk_space_check(1048576*35) === false) add_action('all_admin_notices', array($this, 'show_admin_warning_diskspace'));
230
+
231
+ $all_services = UpdraftPlus_Storage_Methods_Interface::get_enabled_storage_objects_and_ids($updraftplus->get_canonical_service_list());
232
+ $this->storage_service_without_settings = array();
233
+ foreach ($all_services as $method => $sinfo) {
234
+ if (empty($sinfo['object']) || empty($sinfo['instance_settings']) || !is_callable(array($sinfo['object'], 'options_exist'))) continue;
235
+ foreach ($sinfo['instance_settings'] as $opt) {
236
+ if (!$sinfo['object']->options_exist($opt)) {
237
+ $this->storage_service_without_settings[] = $updraftplus->backup_methods[$method];
238
+ }
239
+ }
240
+ }
241
+ if (!empty($this->storage_service_without_settings)) {
242
+ add_action('all_admin_notices', array($this, 'show_admin_warning_if_remote_storage_settting_are_empty'));
243
+ }
244
  }
245
 
246
  private function setup_all_admin_notices_udonly($service, $override = false) {// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.Found -- Filter use
460
  // Ajax for settings import and export
461
  add_action('wp_ajax_updraft_importsettings', array($this, 'updraft_ajax_importsettings'));
462
 
463
+ add_filter('heartbeat_received', array($this, 'process_status_in_heartbeat'), 10, 2);
464
+
465
  // UpdraftPlus templates
466
  $this->register_template_directories();
467
 
518
  if (UpdraftPlus_Options::admin_page() != $pagenow || empty($_REQUEST['page']) || 'updraftplus' != $_REQUEST['page']) return;
519
  $this->setup_all_admin_notices_udonly($service);
520
 
 
 
 
521
  global $updraftplus_checkout_embed;
 
522
  if (!class_exists('Updraft_Checkout_Embed')) include_once UPDRAFTPLUS_DIR.'/includes/checkout-embed/class-udp-checkout-embed.php';
523
 
524
  // Create an empty list (usefull for testing, thanks to the filter bellow)
532
 
533
  $checkout_embed_products = apply_filters('updraftplus_checkout_embed_products', $checkout_embed_products);
534
 
 
535
  if (!empty($checkout_embed_products)) {
536
  $updraftplus_checkout_embed = new Updraft_Checkout_Embed(
537
  'updraftplus', // plugin name
554
  }
555
  UpdraftPlus_Options::update_updraft_option('updraftplus_version', $updraftplus->version);
556
  }
557
+
558
+ if (isset($_POST['action']) && 'updraft_wipesettings' == $_POST['action'] && isset($_POST['nonce']) && UpdraftPlus_Options::user_can_manage()) {
559
+ if (wp_verify_nonce($_POST['nonce'], 'updraftplus-wipe-setting-nonce')) $this->updraft_wipe_settings();
560
+ }
561
  }
562
 
563
  /**
972
  'already_uploaded' => __('(already uploaded)', 'updraftplus'),
973
  'onedrive_folder_url_warning' => __('Please specify the Microsoft OneDrive folder name, not the URL.', 'updraftplus'),
974
  'updraftcentral_cloud' => __('UpdraftCentral Cloud', 'updraftplus'),
975
+ 'udc_cloud_connected' => __('Connected. Requesting UpdraftCentral Key.', 'updraftplus'),
976
+ 'udc_cloud_key_created' => __('Key created. Adding site to UpdraftCentral Cloud.', 'updraftplus'),
977
  'login_successful' => __('Login successful.', 'updraftplus').' '.__('Please follow this link to open %s in a new window.', 'updraftplus'),
978
+ 'login_successful_short' => __('Login successful; reloading information.', 'updraftplus'),
979
  'registration_successful' => __('Registration successful.', 'updraftplus').' '.__('Please follow this link to open %s in a new window.', 'updraftplus'),
980
  'username_password_required' => __('Both email and password fields are required.', 'updraftplus'),
981
  'valid_email_required' => __('An email is required and needs to be in a valid format.', 'updraftplus'),
982
  'trouble_connecting' => __('Trouble connecting? Try using an alternative method in the advanced security options.', 'updraftplus'),
983
+ 'checking_tfa_code' => __('Verifying one-time password...', 'updraftplus'),
984
  'perhaps_login' => __('Perhaps you would want to login instead.', 'updraftplus'),
985
  'generating_key' => __('Please wait while the system generates and registers an encryption key for your website with UpdraftCentral Cloud.', 'updraftplus'),
986
  'updraftcentral_cloud_redirect' => __('Please wait while you are redirected to UpdraftCentral Cloud.', 'updraftplus'),
2595
  }
2596
  $pval = $updraftplus->have_addons ? 1 : 0;
2597
 
2598
+ echo '<strong>'.__('Actions', 'updraftplus').':</strong> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&updraft_restore_success='.$s_val.'&pval='.$pval.'">'.__('Return to UpdraftPlus configuration', 'updraftplus').'</a>';
2599
  return;
2600
 
2601
  } elseif (is_wp_error($backup_success)) {
2605
  $updraftplus->log_wp_error($backup_success);
2606
  $updraftplus->log('Restore failed');
2607
  $updraftplus->list_errors();
2608
+ echo '<strong>'.__('Actions', 'updraftplus').':</strong> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus configuration', 'updraftplus').'</a>';
2609
  return;
2610
  } elseif (false === $backup_success) {
2611
  // This means, "not yet - but stay on the page because we may be able to do it later, e.g. if the user types in the requested information"
2614
  echo '</p>';
2615
  $updraftplus->log("Restore failed");
2616
  $updraftplus->list_errors();
2617
+ echo '<strong>'.__('Actions', 'updraftplus').':</strong> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus configuration', 'updraftplus').'</a>';
2618
  return;
2619
  }
2620
  }
2656
  } elseif (false !== $created) {
2657
  echo '<p>'.__('Backup directory successfully created.', 'updraftplus').'</p><br>';
2658
  }
2659
+ echo '<b>'.__('Actions', 'updraftplus').':</b> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus configuration', 'updraftplus').'</a>';
2660
  return;
2661
  }
2662
 
2663
  echo '<div id="updraft_backup_started" class="updated updraft-hidden" style="display:none;"></div>';
2664
 
 
 
 
 
2665
  // This opens a div
2666
  $this->settings_header();
2667
  ?>
3040
  <?php
3041
  if ('updraftplus-addons' == $option_page) {
3042
  ?>
3043
+ <tr class="non_tfa_fields">
3044
  <th></th>
3045
  <td>
3046
  <label>
3047
  <input type="checkbox" id="<?php echo $option_page; ?>_options_auto_updates" tabindex="2" data-updraft_settings_test="updraft_auto_updates" name="<?php echo $option_page; ?>_options[updraft_auto_update]" value="1" <?php if (UpdraftPlus_Options::get_updraft_option('updraft_auto_updates')) echo 'checked="checked"'; ?> />
3048
  <?php _e('Ask WordPress to update UpdraftPlus automatically when an update is available', 'updraftplus');?>
3049
  </label>
3050
+ <?php
3051
+ $our_keys = UpdraftPlus_Options::get_updraft_option('updraft_central_localkeys');
3052
+ if (!is_array($our_keys)) $our_keys = array();
3053
+
3054
+ if (empty($our_keys)) :
3055
+ ?>
3056
+ <p class="<?php echo $option_page; ?>-connect-to-udc">
3057
+ <label>
3058
+ <input type="checkbox" id="<?php echo $option_page; ?>_options_auto_udc_connect" tabindex="2" name="<?php echo $option_page; ?>_options[updraft_auto_udc_connect]" value="1" checked="checked" />
3059
+ <?php _e('Add this website to UpdraftCentral (remote, centralised control) - free for up to 5 sites.', 'updraftplus'); ?> <a target="_blank" href="https://updraftcentral.com"><?php _e('Learn more about UpdraftCentral', 'updraftplus'); ?></a>
3060
+ </label>
3061
+ </p>
3062
+
3063
+ <?php endif; ?>
3064
+
3065
  </td>
3066
  </tr>
3067
  <?php
3514
  } else {
3515
  echo '<p>',__('Old directory removal failed for some reason. You may want to do this manually.', 'updraftplus').'</p><br>';
3516
  }
3517
+ if ($show_return) echo '<b>'.__('Actions', 'updraftplus').':</b> <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus">'.__('Return to UpdraftPlus configuration', 'updraftplus').'</a>';
3518
  }
3519
 
3520
  /**
3524
  */
3525
  private function delete_old_dirs() {
3526
  global $wp_filesystem, $updraftplus;
3527
+ $credentials = request_filesystem_credentials(wp_nonce_url(UpdraftPlus_Options::admin_page_url()."?page=updraftplus&action=updraft_delete_old_dirs", 'updraftplus-credentialtest-nonce', 'updraft_delete_old_dirs_nonce'));
3528
  WP_Filesystem($credentials);
3529
  if ($wp_filesystem->errors->get_error_code()) {
3530
  foreach ($wp_filesystem->errors->get_error_messages() as $message) show_message($message);
5439
 
5440
  return $version;
5441
  }
5442
+
5443
+ /**
5444
+ * Show remote storage settings are empty warning
5445
+ */
5446
+ public function show_admin_warning_if_remote_storage_settting_are_empty() {
5447
+ if ((isset($_REQUEST['page']) && 'updraftplus' == $_REQUEST['page']) || (defined('DOING_AJAX') && DOING_AJAX)) {
5448
+ $this->show_admin_warning(sprintf(__('You have requested saving to remote storage (%s), but without entering any settings for that storage.', 'updraftplus'), implode(', ', $this->storage_service_without_settings)), 'error');
5449
+ } else {
5450
+ $this->show_admin_warning('UpdraftPlus: '.sprintf(__('You have requested saving to remote storage (%s), but without entering any settings for that storage.', 'updraftplus'), implode(', ', $this->storage_service_without_settings)).' <a href="'.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&amp;tab=settings">'.__('Return to UpdraftPlus configuration', 'updraftplus').'</a>', 'error');
5451
+ }
5452
+ }
5453
+
5454
+ /**
5455
+ * Receive Heartbeat data and respond.
5456
+ *
5457
+ * Processes data received via a Heartbeat request, and returns additional data to pass back to the front end.
5458
+ *
5459
+ * @param array $response - Heartbeat response data to pass back to front end.
5460
+ * @param array $data - Data received from the front end (unslashed).
5461
+ */
5462
+ public function process_status_in_heartbeat($response, $data) {
5463
+ if (!is_array($response) || empty($data['updraftplus'])) return $response;
5464
+ try {
5465
+ $response['updraftplus'] = $this->get_activejobs_list(UpdraftPlus_Manipulation_Functions::wp_unslash($data['updraftplus']));
5466
+ } catch (Exception $e) {
5467
+ $log_message = 'PHP Fatal Exception error ('.get_class($e).') has occurred during get active job list. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
5468
+ error_log($log_message);
5469
+ $response['updraftplus'] = array(
5470
+ 'fatal_error' => true,
5471
+ 'fatal_error_message' => $log_message
5472
+ );
5473
+ // @codingStandardsIgnoreLine
5474
+ } catch (Error $e) {
5475
+ $log_message = 'PHP Fatal error ('.get_class($e).') has occurred during get active job list. Error Message: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
5476
+ error_log($log_message);
5477
+ $response['updraftplus'] = array(
5478
+ 'fatal_error' => true,
5479
+ 'fatal_error_message' => $log_message
5480
+ );
5481
+ }
5482
+ return $response;
5483
+ }
5484
  }
backup.php CHANGED
@@ -1548,15 +1548,10 @@ class UpdraftPlus_Backup {
1548
  if (empty($this->skipped_tables)) $this->skipped_tables = array();
1549
 
1550
  // whichdb could be an int in which case to get the name of the database and the array key use the name from dbinfo
1551
- if ('wp' !== $whichdb) {
1552
- $key = $dbinfo['name'];
1553
- } else {
1554
- $key = $whichdb;
1555
- }
1556
 
1557
- if (empty($this->skipped_tables[$key])) $this->skipped_tables[$key] = '';
1558
- if ('' != $this->skipped_tables[$key]) $this->skipped_tables[$key] .= ',';
1559
- $this->skipped_tables[$key] .= $table;
1560
 
1561
  $total_tables--;
1562
  } else {
@@ -2076,11 +2071,11 @@ class UpdraftPlus_Backup {
2076
  $this->stow("# Hostname: ".$this->dbinfo['host']."\n");
2077
  $this->stow("# Database: ".UpdraftPlus_Manipulation_Functions::backquote($this->dbinfo['name'])."\n");
2078
 
2079
- if (!empty($this->skipped_tables)) {
2080
  if ('wp' == $this->whichdb) {
2081
- $this->stow("# Skipped tables: " . $this->skipped_tables[$this->whichdb]."\n");
2082
  } elseif (isset($this->skipped_tables[$this->dbinfo['name']])) {
2083
- $this->stow("# Skipped tables: " . $this->skipped_tables[$this->dbinfo['name']]."\n");
2084
  }
2085
  }
2086
 
1548
  if (empty($this->skipped_tables)) $this->skipped_tables = array();
1549
 
1550
  // whichdb could be an int in which case to get the name of the database and the array key use the name from dbinfo
1551
+ $key = ('wp' === $whichdb) ? 'wp' : $dbinfo['name'];
 
 
 
 
1552
 
1553
+ if (empty($this->skipped_tables[$key])) $this->skipped_tables[$key] = array();
1554
+ $this->skipped_tables[$key][] = $table;
 
1555
 
1556
  $total_tables--;
1557
  } else {
2071
  $this->stow("# Hostname: ".$this->dbinfo['host']."\n");
2072
  $this->stow("# Database: ".UpdraftPlus_Manipulation_Functions::backquote($this->dbinfo['name'])."\n");
2073
 
2074
+ if (!empty($this->skipped_tables[$this->whichdb])) {
2075
  if ('wp' == $this->whichdb) {
2076
+ $this->stow("# Skipped tables: " . implode(', ', $this->skipped_tables['wp'])."\n");
2077
  } elseif (isset($this->skipped_tables[$this->dbinfo['name']])) {
2078
+ $this->stow("# Skipped tables: " . implode(', ', $this->skipped_tables[$this->dbinfo['name']])."\n");
2079
  }
2080
  }
2081
 
central/bootstrap.php CHANGED
@@ -255,7 +255,7 @@ class UpdraftPlus_UpdraftCentral_Main {
255
  if ('__updraftpluscom' != $where_send) {
256
  $created['keys_guide'] .= '<div class="updraftcentral_wizard_success"><p>'.sprintf(__('You now need to copy the key below and enter it at your %s.', 'updraftplus'), '<a href="'.$where_send.'" target="_blank">UpdraftCentral dashboard</a>').'</p><p>'.__('At your UpdraftCentral dashboard you should press the "Add Site" button then paste the key in the input box.', 'updraftplus').'</p><p>'.sprintf(__('Detailed instructions for this can be found at %s', 'updraftplus'), '<a target="_blank" href="https://updraftplus.com/updraftcentral-how-to-add-a-site/">UpdraftPlus.com</a>').'</p></div>';
257
  } else {
258
- $created['keys_guide'] .= '<div class="updraftcentral_wizard_success"><p>'. sprintf(__('You can now control this site via your UpdraftCentral dashboard at %s.', 'updraftplus'), '<a target="_blank" href="http://updraftplus.com/my-account/remote-control/">UpdraftPlus.com</a>').'</p></div>';
259
  }
260
  }
261
 
@@ -337,7 +337,7 @@ class UpdraftPlus_UpdraftCentral_Main {
337
  // This option allows the key to be sent to the other side via a known-secure channel (e.g. http over SSL), rather than potentially allowing it to travel over an unencrypted channel (e.g. http back to the user's browser). As such, if specified, it is compulsory for it to work.
338
 
339
  $updraftplus->register_wp_http_option_hooks();
340
-
341
  $sent_key = wp_remote_post(
342
  $post_it,
343
  $post_options
255
  if ('__updraftpluscom' != $where_send) {
256
  $created['keys_guide'] .= '<div class="updraftcentral_wizard_success"><p>'.sprintf(__('You now need to copy the key below and enter it at your %s.', 'updraftplus'), '<a href="'.$where_send.'" target="_blank">UpdraftCentral dashboard</a>').'</p><p>'.__('At your UpdraftCentral dashboard you should press the "Add Site" button then paste the key in the input box.', 'updraftplus').'</p><p>'.sprintf(__('Detailed instructions for this can be found at %s', 'updraftplus'), '<a target="_blank" href="https://updraftplus.com/updraftcentral-how-to-add-a-site/">UpdraftPlus.com</a>').'</p></div>';
257
  } else {
258
+ $created['keys_guide'] .= '<div class="updraftcentral_wizard_success"><p>'. sprintf(__('You can now control this site via your UpdraftCentral dashboard at %s.', 'updraftplus'), '<a target="_blank" href="https://updraftplus.com/my-account/updraftcentral-remote-control/">UpdraftPlus.com</a>').'</p></div>';
259
  }
260
  }
261
 
337
  // This option allows the key to be sent to the other side via a known-secure channel (e.g. http over SSL), rather than potentially allowing it to travel over an unencrypted channel (e.g. http back to the user's browser). As such, if specified, it is compulsory for it to work.
338
 
339
  $updraftplus->register_wp_http_option_hooks();
340
+
341
  $sent_key = wp_remote_post(
342
  $post_it,
343
  $post_options
class-updraftplus.php CHANGED
@@ -2102,7 +2102,7 @@ class UpdraftPlus {
2102
 
2103
  if (empty($useful_checkin) || $useful_checkin < $last_resumption) {
2104
  $this->log(sprintf('The current run is resumption number %d, and there was nothing useful done on the last run (last useful run: %s) - will not schedule a further attempt until we see something useful happening this time', $resumption_no, $useful_checkin));
2105
- // Internally, we do actually scheduled a resumption; but only in order to be able to nice handle and log the failure, which otherwise may not be logged
2106
  $this->jobdata_set('fail_on_resume', $next_resumption);
2107
  $schedule_resumption = 1;
2108
  } else {
@@ -3008,8 +3008,10 @@ class UpdraftPlus {
3008
  }
3009
  } else {
3010
  if ($this->newresumption_scheduled) {
3011
- $this->log("There were errors in the uploads, so the 'resume' event is remaining scheduled");
3012
- $this->jobdata_set('jobstatus', 'resumingforerrors');
 
 
3013
  }
3014
  // 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.
3015
  if (isset($this->error_count_before_cloud_backup) && 0 === $this->error_count_before_cloud_backup) {
@@ -3066,7 +3068,13 @@ class UpdraftPlus {
3066
  do_action('updraftplus_remotesend_upload_complete');
3067
  }
3068
  if ($do_cleanup) $delete_jobdata = apply_filters('updraftplus_backup_complete', $delete_jobdata);
3069
- } elseif (false == $this->newresumption_scheduled) {
 
 
 
 
 
 
3070
  $send_an_email = true;
3071
  $final_message = __('The backup attempt has finished, apparently unsuccessfully', 'updraftplus');
3072
  if (!empty($clone_job)) $this->get_updraftplus_clone()->clone_failed_delete(array('clone_id' => $clone_id, 'secret_token' => $secret_token));
2102
 
2103
  if (empty($useful_checkin) || $useful_checkin < $last_resumption) {
2104
  $this->log(sprintf('The current run is resumption number %d, and there was nothing useful done on the last run (last useful run: %s) - will not schedule a further attempt until we see something useful happening this time', $resumption_no, $useful_checkin));
2105
+ // Internally, we do actually schedule a resumption; but only in order to be able to nicely handle and log the failure, which otherwise may not be logged
2106
  $this->jobdata_set('fail_on_resume', $next_resumption);
2107
  $schedule_resumption = 1;
2108
  } else {
3008
  }
3009
  } else {
3010
  if ($this->newresumption_scheduled) {
3011
+ if ($this->current_resumption + 1 != $this->jobdata_get('fail_on_resume')) {
3012
+ $this->log("There were errors in the uploads, so the 'resume' event is remaining scheduled");
3013
+ $this->jobdata_set('jobstatus', 'resumingforerrors');
3014
+ }
3015
  }
3016
  // 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.
3017
  if (isset($this->error_count_before_cloud_backup) && 0 === $this->error_count_before_cloud_backup) {
3068
  do_action('updraftplus_remotesend_upload_complete');
3069
  }
3070
  if ($do_cleanup) $delete_jobdata = apply_filters('updraftplus_backup_complete', $delete_jobdata);
3071
+ } elseif (false == $this->newresumption_scheduled || $this->current_resumption + 1 == $this->jobdata_get('fail_on_resume')) {
3072
+
3073
+ if ($this->current_resumption + 1 == $this->jobdata_get('fail_on_resume')) {
3074
+ $this->log("The resumption is being cancelled, as it was only scheduled to enable error reporting, which can be performed now");
3075
+ wp_clear_scheduled_hook('updraft_backup_resume', array($this->current_resumption + 1, $this->nonce));
3076
+ }
3077
+
3078
  $send_an_email = true;
3079
  $final_message = __('The backup attempt has finished, apparently unsuccessfully', 'updraftplus');
3080
  if (!empty($clone_job)) $this->get_updraftplus_clone()->clone_failed_delete(array('clone_id' => $clone_id, 'secret_token' => $secret_token));
css/updraftplus-admin.css CHANGED
@@ -1465,14 +1465,22 @@ ul.updraft_premium_description_list li:last-child::after {
1465
 
1466
  .updraftplus_com_login_status, .updraftplus_com_key_status {
1467
  display: none;
1468
- border-left-color: #DC3232 !important;
1469
  background: #FFF;
1470
  border-left: 4px solid #FFF;
 
1471
  box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
1472
  margin: 5px 0 15px 0;
1473
  padding: 5px 12px;
1474
  }
1475
 
 
 
 
 
 
 
 
 
1476
  .updraft_feat_table {
1477
  border: none;
1478
  border-collapse: collapse;
@@ -2789,6 +2797,7 @@ div#updraft-wrap a {
2789
 
2790
  .updraftplus_spinner.spinner.visible {
2791
  visibility: visible;
 
2792
  }
2793
 
2794
  .updraftcentral_cloud_notices .updraftplus_spinner {
1465
 
1466
  .updraftplus_com_login_status, .updraftplus_com_key_status {
1467
  display: none;
 
1468
  background: #FFF;
1469
  border-left: 4px solid #FFF;
1470
+ border-left-color: #DC3232;
1471
  box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
1472
  margin: 5px 0 15px 0;
1473
  padding: 5px 12px;
1474
  }
1475
 
1476
+ .updraftplus_com_login_status.success {
1477
+ border-left-color: green;
1478
+ }
1479
+
1480
+ #updraft-wrap strong.success {
1481
+ color: green;
1482
+ }
1483
+
1484
  .updraft_feat_table {
1485
  border: none;
1486
  border-collapse: collapse;
2797
 
2798
  .updraftplus_spinner.spinner.visible {
2799
  visibility: visible;
2800
+ width: auto;
2801
  }
2802
 
2803
  .updraftcentral_cloud_notices .updraftplus_spinner {
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;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}.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;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.incremental-backups-only{display:none}.incremental-free-only{display:none}.incremental-free-only p{padding:5px;background:rgba(255,0,0,0.06);border:1px solid #bfbfbf}#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,.existing-backups-table .backup_date_label span>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__action{position:relative;text-align:center}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase;margin-bottom:7px}.updraft_premium_cta a.button.button-primary.button-hero+small{display:block;max-width:100%;text-align:center;color:#afafaf}.updraft_premium_cta a.button.button-primary.button-hero+small .dashicons{width:12px;height:12px}.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}section.premium-upgrade-purchase-success{padding:2em;background:#fafafa;text-align:center;box-shadow:0 14px 40px rgba(0,0,0,0.1)}section.premium-upgrade-purchase-success h3{font-size:2em;color:green}section.premium-upgrade-purchase-success h3 .dashicons{display:block;margin:0 auto;font-size:60px;width:60px;height:60px;border-radius:50%;background:green;color:#FFF;margin-bottom:20px}section.premium-upgrade-purchase-success h3 .dashicons::before{display:inline-block;margin-left:-4px;margin-top:2px}section.premium-upgrade-purchase-success p{font-size:120%}.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}#updraft-wrap .dashicons.dashicons-adapt-size{line-height:inherit;font-size:inherit}#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size){vertical-align:middle;margin-top:-3px}.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,.existing-backups-table .backup_date_label span>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}.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;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.incremental-backups-only{display:none}.incremental-free-only{display:none}.incremental-free-only p{padding:5px;background:rgba(255,0,0,0.06);border:1px solid #bfbfbf}#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,.existing-backups-table .backup_date_label span>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__action{position:relative;text-align:center}.updraft_premium_cta a.button.button-primary.button-hero{font-size:1.3em;letter-spacing:.03rem;text-transform:uppercase;margin-bottom:7px}.updraft_premium_cta a.button.button-primary.button-hero+small{display:block;max-width:100%;text-align:center;color:#afafaf}.updraft_premium_cta a.button.button-primary.button-hero+small .dashicons{width:12px;height:12px}.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;background:#FFF;border-left:4px solid #FFF;border-left-color:#dc3232;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px 0;padding:5px 12px}.updraftplus_com_login_status.success{border-left-color:green}#updraft-wrap strong.success{color:green}.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}section.premium-upgrade-purchase-success{padding:2em;background:#fafafa;text-align:center;box-shadow:0 14px 40px rgba(0,0,0,0.1)}section.premium-upgrade-purchase-success h3{font-size:2em;color:green}section.premium-upgrade-purchase-success h3 .dashicons{display:block;margin:0 auto;font-size:60px;width:60px;height:60px;border-radius:50%;background:green;color:#FFF;margin-bottom:20px}section.premium-upgrade-purchase-success h3 .dashicons::before{display:inline-block;margin-left:-4px;margin-top:2px}section.premium-upgrade-purchase-success p{font-size:120%}.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}#updraft-wrap .dashicons.dashicons-adapt-size{line-height:inherit;font-size:inherit}#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size){vertical-align:middle;margin-top:-3px}.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;width:auto}.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,.existing-backups-table .backup_date_label span>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,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;;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,sBAAwB;KAAxB,wBAAwB;CACxB,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,kCAAkC;CAClC,0BAA0B;CAC1B;;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,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,0BAA0B;CAC1B,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;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,oBAAoB;CACpB,mBAAmB;CACnB,6CAA6C;CAC7C;;AAED;CACC,eAAe;CACf,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;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,uBAAuB;CACvB,iBAAiB;CACjB;;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}\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\tjustify-content: center;\n\talign-items: center;\n}\n\n.incremental-backups-only {\n\tdisplay: none;\n}\n\n.incremental-free-only {\n\tdisplay: none;\n}\n\n.incremental-free-only p {\n\tpadding: 5px;\n\tbackground: rgba(255, 0, 0, 0.06);\n\tborder: 1px solid #BFBFBF;\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, .existing-backups-table .backup_date_label span > 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__action {\n\tposition: relative;\n\ttext-align: center;\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\tmargin-bottom: 7px;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small {\n\tdisplay: block;\n\tmax-width: 100%;\n\ttext-align: center;\n\tcolor: #AFAFAF;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small .dashicons {\n\twidth: 12px;\n\theight: 12px;\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\nsection.premium-upgrade-purchase-success {\n\tpadding: 2em;\n\tbackground: #FAFAFA;\n\ttext-align: center;\n\tbox-shadow: 0px 14px 40px rgba(0, 0, 0, 0.1);\n}\n\nsection.premium-upgrade-purchase-success h3 {\n\tfont-size: 2em;\n\tcolor: green;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons {\n\tdisplay: block;\n\tmargin: 0 auto;\n\tfont-size: 60px;\n\twidth: 60px;\n\theight: 60px;\n\tborder-radius: 50%;\n\tbackground: green;\n\tcolor: #FFF;\n\tmargin-bottom: 20px;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons::before {\n\tdisplay: inline-block;\n\tmargin-left: -4px;\n\tmargin-top: 2px;\n}\n\nsection.premium-upgrade-purchase-success p {\n\tfont-size: 120%;\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#updraft-wrap .dashicons.dashicons-adapt-size {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size) {\n\tvertical-align: middle;\n\tmargin-top: -3px;\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, .existing-backups-table .backup_date_label span > 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;;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,sBAAwB;KAAxB,wBAAwB;CACxB,uBAAoB;KAApB,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd;;AAED;CACC,aAAa;CACb,kCAAkC;CAClC,0BAA0B;CAC1B;;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,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,wBAAwB;CACxB,0BAA0B;CAC1B,mBAAmB;CACnB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB,mBAAmB;CACnB,eAAe;CACf;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;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,iBAAiB;CACjB,4BAA4B;CAC5B,2BAA2B;CAC3B,uCAAuC;CACvC,qBAAqB;CACrB,kBAAkB;CAClB;;AAED;CACC,yBAAyB;CACzB;;AAED;CACC,aAAa;CACb;;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,oBAAoB;CACpB,mBAAmB;CACnB,6CAA6C;CAC7C;;AAED;CACC,eAAe;CACf,aAAa;CACb;;AAED;CACC,eAAe;CACf,eAAe;CACf,gBAAgB;CAChB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,kBAAkB;CAClB,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;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,uBAAuB;CACvB,iBAAiB;CACjB;;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,YAAY;CACZ;;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}\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\tjustify-content: center;\n\talign-items: center;\n}\n\n.incremental-backups-only {\n\tdisplay: none;\n}\n\n.incremental-free-only {\n\tdisplay: none;\n}\n\n.incremental-free-only p {\n\tpadding: 5px;\n\tbackground: rgba(255, 0, 0, 0.06);\n\tborder: 1px solid #BFBFBF;\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, .existing-backups-table .backup_date_label span > 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__action {\n\tposition: relative;\n\ttext-align: center;\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\tmargin-bottom: 7px;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small {\n\tdisplay: block;\n\tmax-width: 100%;\n\ttext-align: center;\n\tcolor: #AFAFAF;\n}\n\n.updraft_premium_cta a.button.button-primary.button-hero + small .dashicons {\n\twidth: 12px;\n\theight: 12px;\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\tbackground: #FFF;\n\tborder-left: 4px solid #FFF;\n\tborder-left-color: #DC3232;\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.updraftplus_com_login_status.success {\n\tborder-left-color: green;\n}\n\n#updraft-wrap strong.success {\n\tcolor: green;\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\nsection.premium-upgrade-purchase-success {\n\tpadding: 2em;\n\tbackground: #FAFAFA;\n\ttext-align: center;\n\tbox-shadow: 0px 14px 40px rgba(0, 0, 0, 0.1);\n}\n\nsection.premium-upgrade-purchase-success h3 {\n\tfont-size: 2em;\n\tcolor: green;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons {\n\tdisplay: block;\n\tmargin: 0 auto;\n\tfont-size: 60px;\n\twidth: 60px;\n\theight: 60px;\n\tborder-radius: 50%;\n\tbackground: green;\n\tcolor: #FFF;\n\tmargin-bottom: 20px;\n}\n\nsection.premium-upgrade-purchase-success h3 .dashicons::before {\n\tdisplay: inline-block;\n\tmargin-left: -4px;\n\tmargin-top: 2px;\n}\n\nsection.premium-upgrade-purchase-success p {\n\tfont-size: 120%;\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#updraft-wrap .dashicons.dashicons-adapt-size {\n\tline-height: inherit;\n\tfont-size: inherit;\n}\n\n#updraft-wrap .button span.dashicons:not(.dashicons-adapt-size) {\n\tvertical-align: middle;\n\tmargin-top: -3px;\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\twidth: auto;\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, .existing-backups-table .backup_date_label span > 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"]}
includes/Google/autoload.php CHANGED
@@ -30,4 +30,9 @@ function google_api_php_client_autoload_updraftplus($className)
30
  }
31
  }
32
 
33
- spl_autoload_register('google_api_php_client_autoload_updraftplus');
 
 
 
 
 
30
  }
31
  }
32
 
33
+ if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
34
+ // Use the 'prepend' parameter; if other tools have registered autoloaders for incompatible versions of the Google SDK, ours should still get loaded first (since we only register our autoloader late, immediately before using it).
35
+ spl_autoload_register('google_api_php_client_autoload_updraftplus', true, true);
36
+ } else {
37
+ spl_autoload_register('google_api_php_client_autoload_updraftplus');
38
+ }
includes/class-commands.php CHANGED
@@ -463,9 +463,9 @@ class UpdraftPlus_Commands {
463
  case 'backupnow_modal_contents':
464
  $updraft_dir = $updraftplus->backups_dir_location();
465
  if (!UpdraftPlus_Filesystem_Functions::really_is_writable($updraft_dir)) {
466
- $output = array('error' => true, 'html' => __("The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option).", 'updraftplus'));
467
  } else {
468
- $output = array('html' => $updraftplus_admin->backupnow_modal_contents());
469
  }
470
  break;
471
 
@@ -770,7 +770,7 @@ class UpdraftPlus_Commands {
770
  if (false === ($updraftplus_admin = $this->_load_ud_admin()) || false === ($updraftplus = $this->_load_ud())) return new WP_Error('no_updraftplus');
771
 
772
  global $updraftplus_addons2;
773
-
774
  $options = $updraftplus_addons2->get_option(UDADDONS2_SLUG.'_options');
775
  $new_options = $data['data'];
776
 
@@ -801,7 +801,6 @@ class UpdraftPlus_Commands {
801
  UpdraftPlus_Options::update_updraft_option('updraft_auto_updates', 0);
802
  }
803
  }
804
-
805
  if ($result) {
806
  return array(
807
  'success' => true
463
  case 'backupnow_modal_contents':
464
  $updraft_dir = $updraftplus->backups_dir_location();
465
  if (!UpdraftPlus_Filesystem_Functions::really_is_writable($updraft_dir)) {
466
+ $output = array('error' => true, 'html' => __("The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option).", 'updraftplus'));
467
  } else {
468
+ $output = array('html' => $updraftplus_admin->backupnow_modal_contents(), 'backupnow_file_entities' => apply_filters('updraftplus_backupnow_file_entities', array()), 'incremental_installed' => apply_filters('updraftplus_incremental_addon_installed', false));
469
  }
470
  break;
471
 
770
  if (false === ($updraftplus_admin = $this->_load_ud_admin()) || false === ($updraftplus = $this->_load_ud())) return new WP_Error('no_updraftplus');
771
 
772
  global $updraftplus_addons2;
773
+
774
  $options = $updraftplus_addons2->get_option(UDADDONS2_SLUG.'_options');
775
  $new_options = $data['data'];
776
 
801
  UpdraftPlus_Options::update_updraft_option('updraft_auto_updates', 0);
802
  }
803
  }
 
804
  if ($result) {
805
  return array(
806
  'success' => true
includes/class-storage-methods-interface.php CHANGED
@@ -336,25 +336,25 @@ class UpdraftPlus_Storage_Methods_Interface {
336
  /**
337
  * Downloads a specified file into UD's directory
338
  *
339
- * @param String $file The basename of the file
340
- * @param UpdraftPlus_BackupModule $object The object of the service to use to download with.
341
  *
342
  * @return Boolean - Whether the operation succeeded. Inherited from the storage module's download() method. N.B. At the time of writing it looks like not all modules necessarily return true upon success; but false can be relied upon for detecting failure.
343
  */
344
- private static function download_file($file, $object) {
345
 
346
  global $updraftplus;
347
 
348
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
349
 
350
- $service = $object->get_id();
351
 
352
  $updraftplus->log("Requested file from remote service: $service: $file");
353
 
354
- if (method_exists($object, 'download')) {
355
 
356
  try {
357
- return $object->download($file);
358
  } catch (Exception $e) {
359
  $log_message = 'Exception ('.get_class($e).') occurred during download: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
360
  error_log($log_message);
336
  /**
337
  * Downloads a specified file into UD's directory
338
  *
339
+ * @param String $file The basename of the file
340
+ * @param UpdraftPlus_BackupModule $service_object The object of the service to use to download with.
341
  *
342
  * @return Boolean - Whether the operation succeeded. Inherited from the storage module's download() method. N.B. At the time of writing it looks like not all modules necessarily return true upon success; but false can be relied upon for detecting failure.
343
  */
344
+ private static function download_file($file, $service_object) {
345
 
346
  global $updraftplus;
347
 
348
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
349
 
350
+ $service = $service_object->get_id();
351
 
352
  $updraftplus->log("Requested file from remote service: $service: $file");
353
 
354
+ if (method_exists($service_object, 'download')) {
355
 
356
  try {
357
+ return $service_object->download($file);
358
  } catch (Exception $e) {
359
  $log_message = 'Exception ('.get_class($e).') occurred during download: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
360
  error_log($log_message);
includes/class-updraft-dashboard-news.php CHANGED
@@ -190,8 +190,7 @@ class Updraft_Dashboard_News {
190
  wp_dashboard_primary_output('dashboard_primary', $feeds);
191
  $original_formatted_news = ob_get_clean();
192
  $formatted_news = preg_replace('/<a(.+?)>(.+?)<\/a>/i', "<a$1>".$this->translations['item_prefix'].": $2</a>", $original_formatted_news);
193
- $formatted_news = str_replace('<li>', '<li class="'.$this->slug.'_dashboard_news_item">', $formatted_news);
194
- $formatted_news = str_replace('</li>', '<a href="'.UpdraftPlus::get_current_clean_url().'" class="dashicons dashicons-no-alt" title="'.esc_attr($this->translations['dismiss_tooltip']).'" onClick="'.$this->slug.'_dismiss_dashboard_news(); return false;" style="float: right; box-shadow: none;"></li></a>', $formatted_news);
195
  set_transient($this->slug.'_dashboard_news', $formatted_news, 43200); // 12 hours
196
 
197
  return $formatted_news;
190
  wp_dashboard_primary_output('dashboard_primary', $feeds);
191
  $original_formatted_news = ob_get_clean();
192
  $formatted_news = preg_replace('/<a(.+?)>(.+?)<\/a>/i', "<a$1>".$this->translations['item_prefix'].": $2</a>", $original_formatted_news);
193
+ $formatted_news = str_replace('<li>', '<li class="'.$this->slug.'_dashboard_news_item">'.'<a href="'.UpdraftPlus::get_current_clean_url().'" class="dashicons dashicons-no-alt" title="'.esc_attr($this->translations['dismiss_tooltip']).'" onClick="'.$this->slug.'_dismiss_dashboard_news(); return false;" style="float: right; box-shadow: none; margin-left: 5px;"></a>', $formatted_news);
 
194
  set_transient($this->slug.'_dashboard_news', $formatted_news, 43200); // 12 hours
195
 
196
  return $formatted_news;
includes/updraft-admin-common.js CHANGED
@@ -712,29 +712,27 @@ function updraft_backupnow_inpage_go(success_callback, onlythisfileentity, extra
712
  updraft_inpage_hasbegun = 0;
713
  updraft_backupnow_go(backupnow_nodb, backupnow_nofiles, backupnow_nocloud, onlythisfileentity, extradata, label, '');
714
  }
715
- var updraftplus_activejobs_list_fatal_error_alert = true;
716
- function updraft_activejobs_update(force) {
717
-
718
- var $ = jQuery;
719
-
720
- var timenow = (new Date).getTime();
721
- if (false == force && timenow < updraft_activejobs_nextupdate) { return; }
722
- updraft_activejobs_nextupdate = timenow + 5500;
723
  var downloaders = '';
724
- $('.ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader').each(function(x,y) {
725
- var dat = $(y).data('downloaderfor');
726
  if (typeof dat == 'object') {
727
  if (downloaders != '') { downloaders = downloaders + ':'; }
728
  downloaders = downloaders + dat.base + ',' + dat.nonce + ',' + dat.what + ',' + dat.index;
729
  }
730
  });
 
 
 
 
731
 
732
  var gdata = {
733
- downloaders: downloaders
734
  }
735
 
736
  try {
737
- if ($("#updraft-poplog").dialog("isOpen")) {
738
  gdata.log_fetch = 1;
739
  gdata.log_nonce = updraft_poplog_log_nonce;
740
  gdata.log_pointer = updraft_poplog_log_pointer
@@ -742,227 +740,30 @@ function updraft_activejobs_update(force) {
742
  } catch (err) {
743
  console.log(err);
744
  }
745
-
746
- if (updraft_activejobslist_backupnownonce_only && typeof updraft_backupnow_nonce !== 'undefined' && updraft_backupnow_nonce != '') {
747
  gdata.thisjobonly = updraft_backupnow_nonce;
748
  }
749
 
750
- updraft_send_command('activejobs_list', gdata, function(resp, status, response) {
751
-
752
- try {
753
-
754
- // if (repeat) { setTimeout(function(){updraft_activejobs_update(true);}, nexttimer);}
755
- if (resp.hasOwnProperty('l')) {
756
- if (resp.l) {
757
- $('#updraft_lastlogmessagerow').show();
758
- $('#updraft_lastlogcontainer').html(resp.l);
759
- } else {
760
- $('#updraft_lastlogmessagerow').hide();
761
- $('#updraft_lastlogcontainer').html('('+updraftlion.nothing_yet_logged+')');
762
- }
763
- }
764
-
765
- var lastactivity = -1;
766
-
767
- // Requested start of backup text
768
- var requeststart_el = $('.updraft_requeststart');
769
- if (resp.j && requeststart_el.length && requeststart_el.data('remove')) {
770
- requeststart_el.remove();
771
- }
772
-
773
- // Parse response to add classes before inserting it, to avoid unwanted artifacts
774
- var $list_prepare = $(resp.j);
775
- $list_prepare.find('.updraft_jobtimings').each(function(ind, element) {
776
- var $el = $(element);
777
- if ($el.data('jobid')) {
778
- var jobid = $el.data('jobid');
779
- var job_row = $el.closest('.updraft_row');
780
- if (updraft_aborted_jobs[jobid]) {
781
- job_row.hide();
782
- }
783
- }
784
- });
785
-
786
-
787
-
788
- $('#updraft_activejobsrow').html($list_prepare);
789
-
790
- var $clone_jobs = $list_prepare.find('.job-id[data-isclone="1"]');
791
-
792
- if ($clone_jobs.length > 0) {
793
- if ($('.updraftclone_action_box .updraftclone_network_info').length == 0 && $('#updraft_activejobsrow .job-id .updraft_clone_url').length > 0) {
794
- var clone_url = $('#updraft_activejobsrow .job-id .updraft_clone_url').data('clone_url');
795
-
796
- updraft_send_command('get_clone_network_info', { clone_url: clone_url }, function(response) {
797
- if (response.hasOwnProperty('html')) {
798
- $('.updraftclone_action_box').html(response.html);
799
- }
800
- });
801
- }
802
-
803
- $('#updraft_clone_activejobsrow').empty();
804
- $clone_jobs.each(function(ind, element) {
805
- var $el = $(element);
806
- $el.closest('.updraft_row')
807
- // .clone() // Clone allows to have the job on both tabs
808
- .appendTo($('#updraft_clone_activejobsrow'));
809
- });
810
- }
811
-
812
- $('#updraft_activejobs .updraft_jobtimings').each(function(ind, element) {
813
- var $el = $(element);
814
- // lastactivity, nextresumption, nextresumptionafter
815
- if ($el.data('lastactivity') && $el.data('jobid')) {
816
- var jobid = $el.data('jobid');
817
- var new_lastactivity = $el.data('lastactivity');
818
- if (lastactivity == -1 || new_lastactivity < lastactivity) { lastactivity = new_lastactivity; }
819
- var nextresumptionafter = $el.data('nextresumptionafter');
820
- var nextresumption = $el.data('nextresumption');
821
- // console.log("Job ID: "+jobid+", Next resumption: "+nextresumption+", Next resumption after: "+nextresumptionafter+", Last activity: "+new_lastactivity);
822
- // Milliseconds
823
- timenow = (new Date).getTime();
824
- if (new_lastactivity > 50 && nextresumption >0 && nextresumptionafter < -30 && timenow > updraft_last_forced_when+100000 && (updraft_last_forced_jobid != jobid || nextresumption != updraft_last_forced_resumption)) {
825
- updraft_last_forced_resumption = nextresumption;
826
- updraft_last_forced_jobid = jobid;
827
- updraft_last_forced_when = timenow;
828
- console.log('UpdraftPlus: force resumption: job_id='+jobid+', resumption='+nextresumption);
829
- updraft_send_command('forcescheduledresumption', {
830
- resumption: nextresumption,
831
- job_id: jobid
832
- }, function(response) {
833
- console.log(response);
834
- }, { json_parse: false, alert_on_error: false });
835
- }
836
- }
837
- });
838
-
839
- timenow = (new Date).getTime();
840
- updraft_activejobs_nextupdate = timenow + 180000;
841
- // More rapid updates needed if a) we are on the main console, or b) a downloader is open (which can only happen on the restore console)
842
- if ((updraft_page_is_visible == 1 && 'backups' == updraft_console_focussed_tab)) {
843
- if (lastactivity > -1) {
844
- if (lastactivity < 5) {
845
- updraft_activejobs_nextupdate = timenow + 1750;
846
- } else {
847
- updraft_activejobs_nextupdate = timenow + 5000;
848
- }
849
- } else if (lastlog_lastdata == response) {
850
- updraft_activejobs_nextupdate = timenow + 7500;
851
- } else {
852
- updraft_activejobs_nextupdate = timenow + 1750;
853
- }
854
- }
855
-
856
- if ($clone_jobs.length > 0) updraft_activejobs_nextupdate = timenow + 6000;
857
-
858
- lastlog_lastdata = response;
859
-
860
- if (resp.j != null && resp.j != '') {
861
- $('#updraft_activejobsrow').show();
862
- if ($clone_jobs.length > 0) $('#updraft_clone_activejobsrow').show();
863
-
864
- if (gdata.hasOwnProperty('thisjobonly') && !updraft_inpage_hasbegun && $('#updraft-jobid-'+gdata.thisjobonly).length) {
865
- updraft_inpage_hasbegun = 1;
866
- console.log('UpdraftPlus: the start of the requested backup job has been detected');
867
- } else if (!updraft_inpage_hasbegun && updraft_activejobslist_backupnownonce_only && $('.updraft_jobtimings.isautobackup').length) {
868
- autobackup_nonce = $('.updraft_jobtimings.isautobackup').first().data('jobid');
869
- if (autobackup_nonce) {
870
- updraft_inpage_hasbegun = 1;
871
- updraft_backupnow_nonce = autobackup_nonce;
872
- gdata.thisjobonly = autobackup_nonce;
873
- console.log('UpdraftPlus: the start of the requested backup job has been detected; id: '+autobackup_nonce);
874
- }
875
- } else if (updraft_inpage_hasbegun == 1 && $('#updraft-jobid-'+gdata.thisjobonly+'.updraft_finished').length) {
876
- // This block used to be a straightforward 'if'... switching to 'else if' ensures that it cannot fire on the same run. (If the backup hasn't started, it may be detected as finished before to it began, on an overloaded server if there's a race).
877
- // Don't reset to 0 - this will cause the 'began' event to be detected again
878
- updraft_inpage_hasbegun = 2;
879
- // var updraft_inpage_modal_buttons = {};
880
- // updraft_inpage_modal_buttons[updraftlion.close] = function() {
881
- // $(this).dialog("close");
882
- // };
883
- // $('#updraft-backupnow-inpage-modal').dialog('option', 'buttons', updraft_inpage_modal_buttons);
884
- console.log('UpdraftPlus: the end of the requested backup job has been detected');
885
- if (updraft_activejobs_update_timer) clearInterval(updraft_activejobs_update_timer);
886
- if (typeof updraft_inpage_success_callback !== 'undefined' && updraft_inpage_success_callback != '') {
887
- // Move on to next page
888
- updraft_inpage_success_callback.call(false);
889
- } else {
890
- $('#updraft-backupnow-inpage-modal').dialog('close');
891
- }
892
- }
893
- if ('' == lastlog_jobs) {
894
- setTimeout(function() {
895
- $('#updraft_backup_started').slideUp();}, 3500);
896
- }
897
-
898
- // detect manual backup
899
- if (gdata.hasOwnProperty('thisjobonly') && updraft_backupnow_nonce && gdata.thisjobonly === updraft_backupnow_nonce) {
900
- $('.updraft_requeststart').remove();
901
-
902
- var thisjob = $('#updraft-jobid-'+updraft_backupnow_nonce);
903
- // detect manual backup end
904
- if (thisjob.is('.updraft_finished')) {
905
- // reset current job vars
906
- updraft_activejobslist_backupnownonce_only = 0;
907
- // Aborted jobs
908
- if (updraft_aborted_jobs[updraft_backupnow_nonce]) {
909
- // remove deleted job from deleted jobs list
910
- updraft_aborted_jobs = updraft_aborted_jobs.filter(function(val, index) {
911
- return val != updraft_backupnow_nonce;
912
- });
913
- } else {
914
-
915
- if (updraft_active_job_is_clone(updraft_backupnow_nonce)) {
916
- // A clone job is complete
917
- updraft_show_success_modal(updraftlion.clone_backup_complete);
918
- updraft_clone_jobs = updraft_clone_jobs.filter(function(val) {
919
- return val != updraft_backupnow_nonce;
920
- });
921
- } else {
922
- // A normal manual backup is complete
923
- updraft_show_success_modal(updraftlion.backup_complete);
924
- }
925
- }
926
- updraft_backupnow_nonce = '';
927
- // Force fetch active jobs
928
- updraft_activejobs_update(true);
929
 
930
- }
931
- }
932
- } else {
933
- if (!$('#updraft_activejobsrow').is(':hidden')) {
934
- // Backup has now apparently finished - hide the row. If using this for detecting a finished job, be aware that it may never have shown in the first place - so you'll need more than this.
935
- if (typeof lastbackup_laststatus != 'undefined') { updraft_showlastbackup(); }
936
- updraft_updatehistory(0, 0);
937
- $('#updraft_activejobsrow').hide();
938
- }
939
- }
940
- lastlog_jobs = resp.j;
941
-
942
- // Download status
943
- if (resp.ds != null && resp.ds != '') {
944
- updraft_downloader_status_update(resp.ds, response);
945
- }
946
 
947
- if (resp.u != null && resp.u != '' && $("#updraft-poplog").dialog("isOpen")) {
948
- var log_append_array = resp.u;
949
- if (log_append_array.nonce == updraft_poplog_log_nonce) {
950
- updraft_poplog_log_pointer = log_append_array.pointer;
951
- if (log_append_array.log != null && log_append_array.log != '') {
952
- var oldscroll = $('#updraft-poplog').scrollTop();
953
- $('#updraft-poplog-content').append(log_append_array.log);
954
- if (updraft_poplog_lastscroll == oldscroll || updraft_poplog_lastscroll == -1) {
955
- $('#updraft-poplog').scrollTop($('#updraft-poplog-content').prop("scrollHeight"));
956
- updraft_poplog_lastscroll = $('#updraft-poplog').scrollTop();
957
- }
958
- }
959
- }
960
- }
961
- } catch (err) {
962
- console.log(updraftlion.unexpectedresponse+' '+response);
963
- console.log(err);
964
- }
965
- }, { type: 'GET', error_callback: function(response, status, error_code, resp) {
966
  if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
967
  console.error(resp.fatal_error_message);
968
  if (true === updraftplus_activejobs_list_fatal_error_alert) {
@@ -1585,8 +1386,10 @@ function updraft_downloader(base, backup_timestamp, what, whicharea, set_content
1585
  // var data = jQuery('#updraft-navtab-backups-content .uddownloadform_'+what+'_'+backup_timestamp+'_'+set_contents[i]).serialize();
1586
  var nonce = jQuery('#updraft-navtab-backups-content .uddownloadform_'+what+'_'+backup_timestamp+'_'+set_contents[0]).data('wp_nonce').toString();
1587
 
1588
- jQuery(whicharea).append('<div class="updraftplus_downloader_container_'+what+' postbox"></div>');
1589
- jQuery('.updraftplus_downloader_container_'+what).append('<strong style="clear:left; padding: 8px; margin-top: 4px;">'+updraftlion.download+' '+what+' ('+prdate+'):</strong>');
 
 
1590
 
1591
  for (var i = 0; i < set_contents.length; i++) {
1592
  // Create somewhere for the status to be found
@@ -1784,7 +1587,7 @@ function updraft_downloader_status(base, nonce, what, findex) {
1784
  return;
1785
  }
1786
 
1787
- function updraft_downloader_status_update(download_status, response) {
1788
 
1789
  var cancel_repeat = 0;
1790
 
@@ -1855,11 +1658,11 @@ function updraft_downloader_status_update(download_status, response) {
1855
  jQuery(stid_selector + '_st').remove();
1856
  }
1857
  }
1858
- // dlstatus_lastlog = response;
1859
  } else if (dstatus.m != null) {
1860
  jQuery(stid_selector + ' .raw').html(dstatus.m);
1861
  } else {
1862
- jQuery(stid_selector + ' .raw').html(updraftlion.jsonnotunderstood + ' (' + response + ')');
1863
  cancel_repeat = 1;
1864
  }
1865
  });
@@ -2078,12 +1881,14 @@ jQuery(document).ready(function($) {
2078
  var email = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email').val();
2079
  var password = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password').val();
2080
  var auto_update = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates').is(':checked') ? 1: 0;
 
2081
  var options = {
2082
  email: email,
2083
  password: password,
2084
- auto_update: auto_update
 
2085
  };
2086
- updraftplus_com_login_submit(options);
2087
  });
2088
 
2089
  $('#updraft-navtab-addons-content .wrap').on('keydown', '.updraftplus_com_login input', function (e) {
@@ -2092,12 +1897,14 @@ jQuery(document).ready(function($) {
2092
  var email = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email').val();
2093
  var password = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password').val();
2094
  var auto_update = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates').is(':checked') ? 1: 0;
 
2095
  var options = {
2096
  email: email,
2097
  password: password,
2098
- auto_update: auto_update
 
2099
  };
2100
- updraftplus_com_login_submit(options);
2101
  }
2102
  });
2103
 
@@ -2286,22 +2093,208 @@ jQuery(document).ready(function($) {
2286
  });
2287
  });
2288
 
2289
- /**
2290
- * This function will send an AJAX request to the backend to check the users credentials, then it will either inform the user of any errors or if there are none it will submit the form.
2291
- *
2292
- * @param {array} options - an array that includes the users email and password
2293
- */
2294
- function updraftplus_com_login_submit(options) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2295
  $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html('').hide();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2296
  updraft_send_command('updraftplus_com_login_submit', {
2297
  data: options,
2298
  }, function (response) {
2299
  if (response.hasOwnProperty('success')) {
2300
- $('#updraft-navtab-addons-content .wrap .updraftplus_com_login').submit();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2301
  } else if (response.hasOwnProperty('error')) {
 
2302
  $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html(response.message).show();
2303
  }
2304
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2305
  }
2306
 
2307
  /**
@@ -4680,6 +4673,9 @@ jQuery(document).ready(function($) {
4680
  $('#updraftcentral_keys_content').html(data.keys_table);
4681
  }
4682
 
 
 
 
4683
  $redirect_lnk = '<a href="'+updraftlion.current_clean_url+'" class="updraftcentral_cloud_redirect_link">'+updraftlion.updraftcentral_cloud+'</a>';
4684
  $close_lnk = '<a href="'+updraftlion.current_clean_url+'" class="updraftcentral_cloud_close_link">'+updraftlion.close_wizard+'</a>';
4685
  $(modal).find('.updraftcentral_cloud_notices').html(message.replace('%s', $redirect_lnk)+' '+$close_lnk+'<br/><br/>'+updraftlion.control_udc_connections);
@@ -4815,4 +4811,246 @@ jQuery(document).ready(function($) {
4815
  updraftcentral_cloud_prepare_data_and_send(modal);
4816
  }
4817
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4818
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
712
  updraft_inpage_hasbegun = 0;
713
  updraft_backupnow_go(backupnow_nodb, backupnow_nofiles, backupnow_nocloud, onlythisfileentity, extradata, label, '');
714
  }
715
+
716
+ function updraft_get_downloaders() {
 
 
 
 
 
 
717
  var downloaders = '';
718
+ jQuery('.ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader').each(function(x,y) {
719
+ var dat = jQuery(y).data('downloaderfor');
720
  if (typeof dat == 'object') {
721
  if (downloaders != '') { downloaders = downloaders + ':'; }
722
  downloaders = downloaders + dat.base + ',' + dat.nonce + ',' + dat.what + ',' + dat.index;
723
  }
724
  });
725
+ return downloaders;
726
+ }
727
+
728
+ function updraft_poll_get_parameters() {
729
 
730
  var gdata = {
731
+ downloaders: updraft_get_downloaders()
732
  }
733
 
734
  try {
735
+ if (jQuery('#updraft-poplog').dialog('isOpen')) {
736
  gdata.log_fetch = 1;
737
  gdata.log_nonce = updraft_poplog_log_nonce;
738
  gdata.log_pointer = updraft_poplog_log_pointer
740
  } catch (err) {
741
  console.log(err);
742
  }
743
+
744
+ if (updraft_activejobslist_backupnownonce_only && typeof updraft_backupnow_nonce !== 'undefined' && '' != updraft_backupnow_nonce) {
745
  gdata.thisjobonly = updraft_backupnow_nonce;
746
  }
747
 
748
+ return gdata;
749
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
750
 
751
+ var updraftplus_activejobs_list_fatal_error_alert = true;
752
+ function updraft_activejobs_update(force) {
753
+
754
+ var $ = jQuery;
755
+
756
+ var timenow = (new Date).getTime();
757
+ if (false == force && timenow < updraft_activejobs_nextupdate) { return; }
758
+ updraft_activejobs_nextupdate = timenow + 5500;
759
+
760
+ var gdata = updraft_poll_get_parameters();
 
 
 
 
 
 
761
 
762
+ updraft_send_command('activejobs_list', gdata, function(resp, status, response_raw) {
763
+ updraft_process_status_check(resp, response_raw, gdata);
764
+ }, {
765
+ type: 'GET',
766
+ error_callback: function(response, status, error_code, resp) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
767
  if (typeof resp !== 'undefined' && resp.hasOwnProperty('fatal_error')) {
768
  console.error(resp.fatal_error_message);
769
  if (true === updraftplus_activejobs_list_fatal_error_alert) {
1386
  // var data = jQuery('#updraft-navtab-backups-content .uddownloadform_'+what+'_'+backup_timestamp+'_'+set_contents[i]).serialize();
1387
  var nonce = jQuery('#updraft-navtab-backups-content .uddownloadform_'+what+'_'+backup_timestamp+'_'+set_contents[0]).data('wp_nonce').toString();
1388
 
1389
+ if (!jQuery('.updraftplus_downloader_container_'+what).length) {
1390
+ jQuery(whicharea).append('<div class="updraftplus_downloader_container_' + what + ' postbox"></div>');
1391
+ jQuery('.updraftplus_downloader_container_' + what).append('<strong style="clear:left; padding: 8px; margin-top: 4px;">' + updraftlion.download + ' ' + what + ' (' + prdate + '):</strong>');
1392
+ }
1393
 
1394
  for (var i = 0; i < set_contents.length; i++) {
1395
  // Create somewhere for the status to be found
1587
  return;
1588
  }
1589
 
1590
+ function updraft_downloader_status_update(download_status, response_raw) {
1591
 
1592
  var cancel_repeat = 0;
1593
 
1658
  jQuery(stid_selector + '_st').remove();
1659
  }
1660
  }
1661
+ // dlstatus_lastlog = response_raw;
1662
  } else if (dstatus.m != null) {
1663
  jQuery(stid_selector + ' .raw').html(dstatus.m);
1664
  } else {
1665
+ jQuery(stid_selector + ' .raw').html(updraftlion.jsonnotunderstood + ' (' + response_raw + ')');
1666
  cancel_repeat = 1;
1667
  }
1668
  });
1881
  var email = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email').val();
1882
  var password = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password').val();
1883
  var auto_update = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates').is(':checked') ? 1: 0;
1884
+ var auto_udc_connect = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_udc_connect').is(':checked') ? 1: 0;
1885
  var options = {
1886
  email: email,
1887
  password: password,
1888
+ auto_update: auto_update,
1889
+ auto_udc_connect: auto_udc_connect
1890
  };
1891
+ updraftplus_com_login.submit(options);
1892
  });
1893
 
1894
  $('#updraft-navtab-addons-content .wrap').on('keydown', '.updraftplus_com_login input', function (e) {
1897
  var email = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email').val();
1898
  var password = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password').val();
1899
  var auto_update = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates').is(':checked') ? 1: 0;
1900
+ var auto_udc_connect = $('#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_udc_connect').is(':checked') ? 1: 0;
1901
  var options = {
1902
  email: email,
1903
  password: password,
1904
+ auto_update: auto_update,
1905
+ auto_udc_connect: auto_udc_connect
1906
  };
1907
+ updraftplus_com_login.submit(options);
1908
  }
1909
  });
1910
 
2093
  });
2094
  });
2095
 
2096
+ // Create a updraftplus_com_login object, to store functions and variables
2097
+ var updraftplus_com_login = {};
2098
+
2099
+ updraftplus_com_login.set_status = function(status) {
2100
+ $('#updraft-navtab-addons-content .wrap').find('.updraftplus_spinner.spinner').text(status);
2101
+ }
2102
+
2103
+ updraftplus_com_login.show_loader = function() {
2104
+ $('#updraft-navtab-addons-content .wrap').find('.updraftplus_spinner.spinner').addClass('visible');
2105
+ $('#updraft-navtab-addons-content .wrap').find('.ud_connectsubmit').prop('disabled', 'disabled');
2106
+ }
2107
+
2108
+ updraftplus_com_login.hide_loader = function() {
2109
+ $('#updraft-navtab-addons-content .wrap').find('.updraftplus_spinner.spinner').removeClass('visible').text(updraftlion.processing);
2110
+ $('#updraft-navtab-addons-content .wrap').find('.ud_connectsubmit').removeProp('disabled');
2111
+ }
2112
+
2113
+ /*
2114
+ This function will send an AJAX request to the backend to check the users credentials, then it will either inform the user of any errors or if there are none it will submit the form.
2115
+ @param {array} options - an array that includes the users email and password
2116
+ */
2117
+
2118
+ updraftplus_com_login.submit = function(options) {
2119
+
2120
  $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html('').hide();
2121
+
2122
+ if (this.stage) {
2123
+ switch (this.stage) {
2124
+ case 'connect_udc':
2125
+ case 'connect_udc_TFA':
2126
+ // update data in object
2127
+ var email = $('#updraftplus-addons_options_email').val();
2128
+ var password = $('#updraftplus-addons_options_password').val();
2129
+ this.login_data.email = email;
2130
+ this.login_data.password = password;
2131
+ // connect_udc again
2132
+ this.connect_udc();
2133
+ break;
2134
+ case 'create_key':
2135
+ this.create_key();
2136
+ break;
2137
+ default:
2138
+ this.stage = null;
2139
+ updraftplus_com_login.submit();
2140
+ break;
2141
+ }
2142
+
2143
+ return;
2144
+ }
2145
+
2146
+ this.set_status(updraftlion.connecting);
2147
+ this.show_loader();
2148
+
2149
  updraft_send_command('updraftplus_com_login_submit', {
2150
  data: options,
2151
  }, function (response) {
2152
  if (response.hasOwnProperty('success')) {
2153
+
2154
+ // logged in was successful, so create a key if the checkbox was checked.
2155
+ if ($('#updraftplus-addons_options_auto_udc_connect').is(':checked')) {
2156
+
2157
+ this.login_data = {
2158
+ email: options.email,
2159
+ password: options.password,
2160
+ i_consent: 1,
2161
+ two_factor_code: ''
2162
+ };
2163
+
2164
+ // CREATE KEY
2165
+ updraftplus_com_login.create_key();
2166
+
2167
+ } else {
2168
+ updraftplus_com_login.hide_loader();
2169
+ $('#updraft-navtab-addons-content .wrap .updraftplus_com_login').submit();
2170
+ }
2171
  } else if (response.hasOwnProperty('error')) {
2172
+ updraftplus_com_login.hide_loader();
2173
  $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html(response.message).show();
2174
  }
2175
+ }.bind(this));
2176
+ }
2177
+
2178
+ updraftplus_com_login.create_key = function() {
2179
+
2180
+ this.stage = 'create_key';
2181
+
2182
+ this.set_status(updraftlion.udc_cloud_connected);
2183
+ this.show_loader();
2184
+
2185
+ var command_data = {
2186
+ where_send: '__updraftpluscom',
2187
+ key_description: '',
2188
+ key_size: null,
2189
+ mothership_firewalled: 0
2190
+ };
2191
+
2192
+ // updraftcentral_cloud_show_spinner(modal);
2193
+ updraft_send_command('updraftcentral_create_key', command_data, function(response) {
2194
+ // updraftcentral_cloud_hide_spinner(modal);
2195
+ try {
2196
+ var data = ud_parse_json(response);
2197
+ if (data.hasOwnProperty('error')) {
2198
+ console.log(data);
2199
+ return;
2200
+ }
2201
+
2202
+ if (data.hasOwnProperty('bundle')) {
2203
+
2204
+ console.log('bundle', data.bundle);
2205
+
2206
+ this.login_data.key = data.bundle,
2207
+ this.stage = 'connect_udc';
2208
+
2209
+ updraftplus_com_login.connect_udc();
2210
+
2211
+ } else {
2212
+ if (data.hasOwnProperty('r')) {
2213
+ $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html(updraftlion.trouble_connecting).show();
2214
+ alert(data.r);
2215
+ } else {
2216
+ $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html(updraftlion.trouble_connecting).show();
2217
+ console.log(data);
2218
+ }
2219
+ updraftplus_com_login.hide_loader();
2220
+ }
2221
+ } catch (err) {
2222
+ console.log(err);
2223
+ updraftplus_com_login.hide_loader();
2224
+ }
2225
+ }.bind(this), { json_parse: false });
2226
+
2227
+ }
2228
+
2229
+ updraftplus_com_login.connect_udc = function() {
2230
+
2231
+ var container = $('#updraft-navtab-addons-content .wrap');
2232
+
2233
+ updraftplus_com_login.set_status(updraftlion.udc_cloud_key_created);
2234
+ updraftplus_com_login.show_loader();
2235
+
2236
+ if ('connect_udc_TFA' == this.stage) {
2237
+ this.login_data.two_factor_code = container.find('input#updraftplus-addons_options_two_factor_code').val();
2238
+ updraftplus_com_login.set_status(updraftlion.checking_tfa_code);
2239
+ }
2240
+
2241
+ var login_data = { form_data: this.login_data };
2242
+ login_data.form_data.addons_options_connect = 1;
2243
+
2244
+ // Final step, connect UDC with the Key and all.
2245
+ updraft_send_command('process_updraftcentral_login', login_data, function(login_response) {
2246
+ try {
2247
+
2248
+ var data = ud_parse_json(login_response);
2249
+
2250
+ if (data.hasOwnProperty('error')) {
2251
+ if ('incorrect_password' === data.code) {
2252
+ container.find('.tfa_fields').hide();
2253
+ container.find('.non_tfa_fields').show();
2254
+ container.find('input#updraftplus-addons_options_two_factor_code').val('');
2255
+ container.find('input#updraftplus-addons_options_password').val('').focus();
2256
+ }
2257
+ if ('no_key_found' === data.code) {
2258
+ this.stage = 'create_key';
2259
+ }
2260
+
2261
+ $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html(data.message).show();
2262
+ $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').find('a').attr('target', '_blank');
2263
+ console.log(data);
2264
+ updraftplus_com_login.hide_loader();
2265
+ return;
2266
+ }
2267
+
2268
+ if (data.hasOwnProperty('tfa_enabled') && true == data.tfa_enabled) {
2269
+ $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html('').hide();
2270
+ container.find('.non_tfa_fields').hide();
2271
+ container.find('.tfa_fields').show();
2272
+ container.find('input#updraftplus-addons_options_two_factor_code').focus();
2273
+ this.stage = 'connect_udc_TFA';
2274
+ }
2275
+
2276
+ if ('authenticated' === data.status) {
2277
+ container.find('.non_tfa_fields').hide();
2278
+ container.find('.tfa_fields').hide();
2279
+ container.find('.updraft-after-form-table').hide();
2280
+
2281
+ this.stage = null;
2282
+
2283
+ $('#updraft-navtab-addons-content .wrap .updraftplus_com_login_status').html(updraftlion.login_successful_short).show().addClass('success');
2284
+
2285
+ // submit the form (to reload the page).
2286
+ setTimeout(function() {
2287
+ $('#updraft-navtab-addons-content .wrap form.updraftplus_com_login').submit();
2288
+ }, 1000);
2289
+ }
2290
+
2291
+ } catch (err) {
2292
+ console.log(err);
2293
+ }
2294
+ updraftplus_com_login.hide_loader();
2295
+ }.bind(this), { json_parse: false });
2296
+
2297
+
2298
  }
2299
 
2300
  /**
4673
  $('#updraftcentral_keys_content').html(data.keys_table);
4674
  }
4675
 
4676
+ // Remove the option in the Extensions tab
4677
+ $('.updraftplus-addons-connect-to-udc').remove();
4678
+
4679
  $redirect_lnk = '<a href="'+updraftlion.current_clean_url+'" class="updraftcentral_cloud_redirect_link">'+updraftlion.updraftcentral_cloud+'</a>';
4680
  $close_lnk = '<a href="'+updraftlion.current_clean_url+'" class="updraftcentral_cloud_close_link">'+updraftlion.close_wizard+'</a>';
4681
  $(modal).find('.updraftcentral_cloud_notices').html(message.replace('%s', $redirect_lnk)+' '+$close_lnk+'<br/><br/>'+updraftlion.control_udc_connections);
4811
  updraftcentral_cloud_prepare_data_and_send(modal);
4812
  }
4813
  });
4814
+
4815
+ var heartbeat_last_parameters = {};
4816
+
4817
+ $(document).on('heartbeat-send', function(event, heartbeat_data) {
4818
+ heartbeat_last_parameters = updraft_poll_get_parameters();
4819
+ heartbeat_data.updraftplus = heartbeat_last_parameters;
4820
+ });
4821
+
4822
+ $(document).on('heartbeat-tick', function(event, heartbeat_data) {
4823
+ if (null === heartbeat_data || !heartbeat_data.hasOwnProperty('updraftplus')) return;
4824
+ var resp = heartbeat_data.updraftplus;
4825
+ var response_raw = JSON.stringify(resp);
4826
+ // We do somewhat assume that there can't be overlapping heartbeat calls - they should be far enough apart to make that very unlikely (and even if it happened, it is unlikely to cause any trouble)
4827
+ updraft_process_status_check(resp, response_raw, heartbeat_last_parameters);
4828
+ });
4829
  });
4830
+
4831
+ /**
4832
+ * Process a status check result
4833
+ *
4834
+ * @param {Object} resp - the response after being parsed
4835
+ * @param {String} response_raw - the raw response
4836
+ * @param {Object} original_parameters - the original parameters used to make the check
4837
+ *
4838
+ * @returns {void}
4839
+ */
4840
+ function updraft_process_status_check(resp, response_raw, original_parameters) {
4841
+
4842
+ if (resp.hasOwnProperty('fatal_error')) {
4843
+ console.error(resp.fatal_error_message);
4844
+ if (true === updraftplus_activejobs_list_fatal_error_alert) {
4845
+ updraftplus_activejobs_list_fatal_error_alert = false;
4846
+ alert(this.alert_done + ' ' +resp.fatal_error_message);
4847
+ }
4848
+ return;
4849
+ }
4850
+
4851
+ try {
4852
+ if (resp.hasOwnProperty('l')) {
4853
+ if (resp.l) {
4854
+ jQuery('#updraft_lastlogmessagerow').show();
4855
+ jQuery('#updraft_lastlogcontainer').html(resp.l);
4856
+ } else {
4857
+ jQuery('#updraft_lastlogmessagerow').hide();
4858
+ jQuery('#updraft_lastlogcontainer').html('('+updraftlion.nothing_yet_logged+')');
4859
+ }
4860
+ }
4861
+
4862
+ var lastactivity = -1;
4863
+
4864
+ // Requested start of backup text
4865
+ var requeststart_el = jQuery('.updraft_requeststart');
4866
+ if (resp.j && requeststart_el.length && requeststart_el.data('remove')) {
4867
+ requeststart_el.remove();
4868
+ }
4869
+
4870
+ // Parse response to add classes before inserting it, to avoid unwanted artifacts
4871
+ var $list_prepare = jQuery(resp.j);
4872
+ $list_prepare.find('.updraft_jobtimings').each(function(ind, element) {
4873
+ var $el = jQuery(element);
4874
+ if ($el.data('jobid')) {
4875
+ var jobid = $el.data('jobid');
4876
+ var job_row = $el.closest('.updraft_row');
4877
+ if (updraft_aborted_jobs[jobid]) {
4878
+ job_row.hide();
4879
+ }
4880
+ }
4881
+ });
4882
+
4883
+ jQuery('#updraft_activejobsrow').html($list_prepare);
4884
+
4885
+ var $clone_jobs = $list_prepare.find('.job-id[data-isclone="1"]');
4886
+
4887
+ if ($clone_jobs.length > 0) {
4888
+ if (jQuery('.updraftclone_action_box .updraftclone_network_info').length == 0 && jQuery('#updraft_activejobsrow .job-id .updraft_clone_url').length > 0) {
4889
+ var clone_url = jQuery('#updraft_activejobsrow .job-id .updraft_clone_url').data('clone_url');
4890
+
4891
+ updraft_send_command('get_clone_network_info', { clone_url: clone_url }, function(response) {
4892
+ if (response.hasOwnProperty('html')) {
4893
+ jQuery('.updraftclone_action_box').html(response.html);
4894
+ }
4895
+ });
4896
+ }
4897
+
4898
+ jQuery('#updraft_clone_activejobsrow').empty();
4899
+ $clone_jobs.each(function(ind, element) {
4900
+ var $el = jQuery(element);
4901
+ $el.closest('.updraft_row')
4902
+ // .clone() // Clone allows to have the job on both tabs
4903
+ .appendTo(jQuery('#updraft_clone_activejobsrow'));
4904
+ });
4905
+ }
4906
+
4907
+ jQuery('#updraft_activejobs .updraft_jobtimings').each(function(ind, element) {
4908
+ var $el = jQuery(element);
4909
+ // lastactivity, nextresumption, nextresumptionafter
4910
+ if ($el.data('lastactivity') && $el.data('jobid')) {
4911
+ var jobid = $el.data('jobid');
4912
+ var new_lastactivity = $el.data('lastactivity');
4913
+ if (lastactivity == -1 || new_lastactivity < lastactivity) { lastactivity = new_lastactivity; }
4914
+ var nextresumptionafter = $el.data('nextresumptionafter');
4915
+ var nextresumption = $el.data('nextresumption');
4916
+
4917
+ // Milliseconds
4918
+ timenow = (new Date).getTime();
4919
+ if (new_lastactivity > 50 && nextresumption >0 && nextresumptionafter < -30 && timenow > updraft_last_forced_when+100000 && (updraft_last_forced_jobid != jobid || nextresumption != updraft_last_forced_resumption)) {
4920
+ updraft_last_forced_resumption = nextresumption;
4921
+ updraft_last_forced_jobid = jobid;
4922
+ updraft_last_forced_when = timenow;
4923
+ console.log('UpdraftPlus: force resumption: job_id='+jobid+', resumption='+nextresumption);
4924
+ updraft_send_command('forcescheduledresumption', {
4925
+ resumption: nextresumption,
4926
+ job_id: jobid
4927
+ }, function(response) {
4928
+ console.log(response);
4929
+ }, { json_parse: false, alert_on_error: false });
4930
+ }
4931
+ }
4932
+ });
4933
+
4934
+ timenow = (new Date).getTime();
4935
+ updraft_activejobs_nextupdate = timenow + 180000;
4936
+ // More rapid updates needed if a) we are on the main console, or b) a downloader is open (which can only happen on the restore console)
4937
+ if ((updraft_page_is_visible == 1 && 'backups' == updraft_console_focussed_tab)) {
4938
+ if (lastactivity > -1) {
4939
+ if (lastactivity < 5) {
4940
+ updraft_activejobs_nextupdate = timenow + 1750;
4941
+ } else {
4942
+ updraft_activejobs_nextupdate = timenow + 5000;
4943
+ }
4944
+ } else if (lastlog_lastdata == response_raw) {
4945
+ updraft_activejobs_nextupdate = timenow + 7500;
4946
+ } else {
4947
+ updraft_activejobs_nextupdate = timenow + 1750;
4948
+ }
4949
+ }
4950
+
4951
+ if ($clone_jobs.length > 0) updraft_activejobs_nextupdate = timenow + 6000;
4952
+
4953
+ lastlog_lastdata = response_raw;
4954
+
4955
+ if (resp.j != null && resp.j != '') {
4956
+ jQuery('#updraft_activejobsrow').show();
4957
+ if ($clone_jobs.length > 0) jQuery('#updraft_clone_activejobsrow').show();
4958
+
4959
+ if (original_parameters.hasOwnProperty('thisjobonly') && !updraft_inpage_hasbegun && jQuery('#updraft-jobid-'+original_parameters.thisjobonly).length) {
4960
+ updraft_inpage_hasbegun = 1;
4961
+ console.log('UpdraftPlus: the start of the requested backup job has been detected');
4962
+ } else if (!updraft_inpage_hasbegun && updraft_activejobslist_backupnownonce_only && jQuery('.updraft_jobtimings.isautobackup').length) {
4963
+ autobackup_nonce = jQuery('.updraft_jobtimings.isautobackup').first().data('jobid');
4964
+ if (autobackup_nonce) {
4965
+ updraft_inpage_hasbegun = 1;
4966
+ updraft_backupnow_nonce = autobackup_nonce;
4967
+ original_parameters.thisjobonly = autobackup_nonce;
4968
+ console.log('UpdraftPlus: the start of the requested backup job has been detected; id: '+autobackup_nonce);
4969
+ }
4970
+ } else if (updraft_inpage_hasbegun == 1 && jQuery('#updraft-jobid-'+original_parameters.thisjobonly+'.updraft_finished').length) {
4971
+ // This block used to be a straightforward 'if'... switching to 'else if' ensures that it cannot fire on the same run. (If the backup hasn't started, it may be detected as finished before to it began, on an overloaded server if there's a race).
4972
+ // Don't reset to 0 - this will cause the 'began' event to be detected again
4973
+ updraft_inpage_hasbegun = 2;
4974
+
4975
+ console.log('UpdraftPlus: the end of the requested backup job has been detected');
4976
+ if (updraft_activejobs_update_timer) clearInterval(updraft_activejobs_update_timer);
4977
+ if (typeof updraft_inpage_success_callback !== 'undefined' && updraft_inpage_success_callback != '') {
4978
+ // Move on to next page
4979
+ updraft_inpage_success_callback.call(false);
4980
+ } else {
4981
+ jQuery('#updraft-backupnow-inpage-modal').dialog('close');
4982
+ }
4983
+ }
4984
+ if ('' == lastlog_jobs) {
4985
+ setTimeout(function() {
4986
+ jQuery('#updraft_backup_started').slideUp();}, 3500);
4987
+ }
4988
+
4989
+ // detect manual backup
4990
+ if (original_parameters.hasOwnProperty('thisjobonly') && updraft_backupnow_nonce && original_parameters.thisjobonly === updraft_backupnow_nonce) {
4991
+ jQuery('.updraft_requeststart').remove();
4992
+
4993
+ var thisjob = jQuery('#updraft-jobid-'+updraft_backupnow_nonce);
4994
+ // detect manual backup end
4995
+ if (thisjob.is('.updraft_finished')) {
4996
+ // reset current job vars
4997
+ updraft_activejobslist_backupnownonce_only = 0;
4998
+ // Aborted jobs
4999
+ if (updraft_aborted_jobs[updraft_backupnow_nonce]) {
5000
+ // remove deleted job from deleted jobs list
5001
+ updraft_aborted_jobs = updraft_aborted_jobs.filter(function(val, index) {
5002
+ return val != updraft_backupnow_nonce;
5003
+ });
5004
+ } else {
5005
+
5006
+ if (updraft_active_job_is_clone(updraft_backupnow_nonce)) {
5007
+ // A clone job is complete
5008
+ updraft_show_success_modal(updraftlion.clone_backup_complete);
5009
+ updraft_clone_jobs = updraft_clone_jobs.filter(function(val) {
5010
+ return val != updraft_backupnow_nonce;
5011
+ });
5012
+ } else {
5013
+ // A normal manual backup is complete
5014
+ updraft_show_success_modal(updraftlion.backup_complete);
5015
+ }
5016
+ }
5017
+ updraft_backupnow_nonce = '';
5018
+ // Force fetch active jobs
5019
+ updraft_activejobs_update(true);
5020
+
5021
+ }
5022
+ }
5023
+ } else {
5024
+ if (!jQuery('#updraft_activejobsrow').is(':hidden')) {
5025
+ // Backup has now apparently finished - hide the row. If using this for detecting a finished job, be aware that it may never have shown in the first place - so you'll need more than this.
5026
+ if (typeof lastbackup_laststatus != 'undefined') { updraft_showlastbackup(); }
5027
+ updraft_updatehistory(0, 0);
5028
+ jQuery('#updraft_activejobsrow').hide();
5029
+ }
5030
+ }
5031
+ lastlog_jobs = resp.j;
5032
+
5033
+ // Download status
5034
+ if (resp.ds != null && resp.ds != '') {
5035
+ updraft_downloader_status_update(resp.ds, response_raw);
5036
+ }
5037
+
5038
+ if (resp.u != null && resp.u != '' && jQuery("#updraft-poplog").dialog("isOpen")) {
5039
+ var log_append_array = resp.u;
5040
+ if (log_append_array.nonce == updraft_poplog_log_nonce) {
5041
+ updraft_poplog_log_pointer = log_append_array.pointer;
5042
+ if (log_append_array.log != null && log_append_array.log != '') {
5043
+ var oldscroll = jQuery('#updraft-poplog').scrollTop();
5044
+ jQuery('#updraft-poplog-content').append(log_append_array.log);
5045
+ if (updraft_poplog_lastscroll == oldscroll || updraft_poplog_lastscroll == -1) {
5046
+ jQuery('#updraft-poplog').scrollTop(jQuery('#updraft-poplog-content').prop("scrollHeight"));
5047
+ updraft_poplog_lastscroll = jQuery('#updraft-poplog').scrollTop();
5048
+ }
5049
+ }
5050
+ }
5051
+ }
5052
+ } catch (err) {
5053
+ console.log(updraftlion.unexpectedresponse+' '+response_raw);
5054
+ console.log(err);
5055
+ }
5056
+ }
includes/updraft-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 u in e)o[u]=e[u];else o.action_data=e;var d={type:r.type,url:ajaxurl,data:o,success:function(t,e){if(r.json_parse){try{var n=ud_parse_json(t)}catch(o){return"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&&(d.timeout=r.timeout),jQuery.ajax(d)}function updraft_delete(t,e,a){jQuery("#updraft_delete_timestamp").val(t),jQuery("#updraft_delete_nonce").val(e),a?jQuery("#updraft-delete-remote-section, #updraft_delete_remote").removeAttr("disabled").show():jQuery("#updraft-delete-remote-section, #updraft_delete_remote").hide().attr("disabled","disabled"),t.indexOf(",")>-1?(jQuery("#updraft_delete_question_singular").hide(),jQuery("#updraft_delete_question_plural").show()):(jQuery("#updraft_delete_question_plural").hide(),jQuery("#updraft_delete_question_singular").show()),jQuery("#updraft-delete-modal").dialog("open")}function updraft_remote_storage_tab_activation(t){jQuery(".updraftplusmethod").hide(),jQuery(".remote-tab").data("active",!1),jQuery(".remote-tab").removeClass("nav-tab-active"),jQuery(".updraftplusmethod."+t).show(),jQuery(".remote-tab-"+t).data("active",!0),jQuery(".remote-tab-"+t).addClass("nav-tab-active")}function updraft_check_overduecrons(){updraft_send_command("check_overdue_crons",null,function(t){t&&t.hasOwnProperty("m")&&jQuery("#updraft-insert-admin-warning").html(t.m)},{alert_on_error:!1})}function updraft_remote_storage_tabs_setup(){var t=0,e=jQuery(".updraft_servicecheckbox:checked");jQuery(e).each(function(a,r){var n=jQuery(r).val();"updraft_servicecheckbox_none"!=jQuery(r).attr("id")&&t++,jQuery(".remote-tab-"+n).show(),a==jQuery(e).length-1&&updraft_remote_storage_tab_activation(n)}),t>0?(jQuery(".updraftplusmethod.none").hide(),jQuery("#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 u={method:t};jQuery("#updraft-navtab-settings-content "+n+" input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test"),r=jQuery(e).attr("type");if(a){r||(console.log("UpdraftPlus: settings test input item with no type found"),console.log(e),r="text");var n=null;"checkbox"==r?n=jQuery(e).is(":checked")?1:0:"text"==r||"password"==r?n=jQuery(e).val():(console.log("UpdraftPlus: settings test input item with unrecognised type ("+r+") found"),console.log(e)),u[a]=n}}),jQuery("#updraft-navtab-settings-content "+n+" textarea[data-updraft_settings_test], #updraft-navtab-settings-content "+n+" select[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test");u[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",u,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,u)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))},{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 u="updraft_send_command: error: "+e+" ("+a+")";console.log(u),alert(u),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 u=jQuery(this).data("key");e&&(e+=","),e+=u;var d=jQuery(this).find(".updraftplus-remove").data("hasremote");d&&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,]+)",u=new RegExp(o),d=t.match(u);d?(jQuery(r).removeAttr("disabled").data("howmany",d[1]).parent().show(),e++,"db"==n&&(e+=4.5),jQuery(r).is(":checked")&&jQuery("#updraft_restorer_"+n+"options").show()):jQuery(r).attr("disabled","disabled").parent().hide()});var a=t.match(/dbcrypted=1/);a?(jQuery("#updraft_restore_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(t){t="undefined"==typeof t?"new":t,0==jQuery("#updraftplus_incremental_backup_link").data("incremental")&&"incremental"==t?(jQuery("#updraft-backupnow-modal .incremental-free-only").show(),t="new"):jQuery("#updraft-backupnow-modal .incremental-backups-only").hide(),jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed&&!window.confirm(updraftlion.unsavedsettingsbackup)||(jQuery("#backupnow_label").val(""),"incremental"==t?(update_file_entities_checkboxes(!0,impossible_increment_entities),jQuery("#backupnow_includedb").prop("checked",!1),jQuery("#backupnow_includefiles").prop("checked",!0),jQuery("#backupnow_includefiles_label").text(updraftlion.files_incremental_backup),jQuery("#updraft-backupnow-modal .new-backups-only").hide(),jQuery("#updraft-backupnow-modal .incremental-backups-only").show()):(update_file_entities_checkboxes(!1,impossible_increment_entities),jQuery("#backupnow_includedb").prop("checked",!0),jQuery("#backupnow_includefiles_label").text(updraftlion.files_new_backup),jQuery("#updraft-backupnow-modal .new-backups-only").show(),jQuery("#updraft-backupnow-modal .incremental-backups-only").hide()),jQuery("#updraft-backupnow-modal").data("backup-type",t),jQuery("#updraft-backupnow-modal").dialog("open"))}function update_file_entities_checkboxes(t,e){t?jQuery(e).each(function(t,e){jQuery("#backupnow_files_updraft_include_"+e).prop("checked",!1),jQuery("#backupnow_files_updraft_include_"+e).prop("disabled",!0)}):jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(t){var e=jQuery(this).attr("name");if("updraft_include_"==e.substring(0,16)){var a=e.substring(16);jQuery("#backupnow_files_updraft_include_"+a).prop("disabled",!1),jQuery(this).is(":checked")&&jQuery("#backupnow_files_updraft_include_"+a).prop("checked",!0)}})}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,u){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,u="undefined"==typeof u?updraftlion.automaticbackupbeforeupdate:u,updraft_console_focussed_tab="backups",updraft_inpage_success_callback=t,updraft_activejobs_update_timer=setInterval(function(){updraft_activejobs_update(!1)},1250);var d={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",d),jQuery("#updraft_inpage_prebackup").hide(),s&&jQuery("#updraft-backupnow-inpage-modal").dialog("open"),jQuery("#updraft_inpage_backup").show(),updraft_activejobslist_backupnownonce_only=1,updraft_inpage_hasbegun=0,updraft_backupnow_go(r,n,o,e,a,u,"")}function updraft_activejobs_update(t){var e=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 u=-1,d=e(".updraft_requeststart");t.j&&d.length&&d.data("remove")&&d.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"),d=n.data("lastactivity");(u==-1||d<u)&&(u=d);var s=n.data("nextresumptionafter"),i=n.data("nextresumption");a=(new Date).getTime(),d>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=u>-1?u<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)),update_backupnow_modal(t),t.hasOwnProperty("backupnow_file_entities")&&(impossible_increment_entities=t.backupnow_file_entities),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 update_backupnow_modal(t){t.hasOwnProperty("modal_afterfileoptions")&&jQuery(".backupnow_modal_afterfileoptions").html(t.modal_afterfileoptions)}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 u=updraft_interval_month_val===!1?1:updraft_interval_month_val;u-=1,jQuery(a+" option:eq("+u+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var d=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+d+")").prop("selected",!0)}}}function updraft_check_same_times(){var t=0,e=jQuery("#updraft-navtab-settings-content .updraft_interval").val();"manual"==e?jQuery("#updraft-navtab-settings-content .updraft_files_timings").hide():jQuery("#updraft-navtab-settings-content .updraft_files_timings").show(),"weekly"==e||"fortnightly"==e||"monthly"==e?(updraft_intervals_monthly_or_not("updraft_startday_files",e),jQuery("#updraft-navtab-settings-content #updraft_startday_files").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_files").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_files").hide());var a=jQuery("#updraft-navtab-settings-content .updraft_interval_database").val();"manual"==a&&(t=1,jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide()),"weekly"==a||"fortnightly"==a||"monthly"==a?(updraft_intervals_monthly_or_not("updraft_startday_db",a),jQuery("#updraft-navtab-settings-content #updraft_startday_db").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_db").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_db").hide()),a==e?(jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide(),0==t?jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").show():jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide()):(jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide(),0==t&&jQuery("#updraft-navtab-settings-content .updraft_db_timings").show())}function updraft_activejobs_delete(t){updraft_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,u){"string"!=typeof n&&(n=n.toString()),jQuery(".ud_downloadstatus").show();var n=n.split(","),d=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+" ("+d+"):</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>'),
2
- 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())}u=!!u;var f={type:a,timestamp:e,findex:n},m={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:s,timeout:1e4,async:u};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 u=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),u}catch(a){throw console.log("UpdraftPlus: Exception when trying to parse JSON (2)"),a}}throw"UpdraftPlus: could not parse the JSON"}function updraft_restorer_checkstage2(t){var e=jQuery("#ud_downloadstatus2 .file").length;return e>0?void(t&&alert(updraftlion.stilldownloading)):(jQuery("#updraft-restore-modal-stage2a").html(updraftlion.processing),void updraft_send_command("restore_alldownloaded",{timestamp:jQuery("#updraft_restore_timestamp").val(),restoreopts:jQuery("#updraft_restore_form").serialize()},function(t,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);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(u){console.log(u),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(u){console.log(a),console.log(u),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 u=(new Date).getTime(),d=jQuery(o).data("lasttimebegan"),s=u-d;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,u){var d={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};if(""!=r&&(d.onlythisfileentity=r),""!=u&&(d.onlythesetableentities=u),d.always_keep="undefined"!=typeof n.always_keep?n.always_keep:0,delete n.always_keep,d.incremental="undefined"!=typeof n.incremental?n.incremental:0,delete n.incremental,!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",d,function(t){return t.hasOwnProperty("error")?(jQuery(".updraft_requeststart").remove(),void alert(t.error)):(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)),void setTimeout(function(){updraft_activejobs_update(!0)},500))})}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var impossible_increment_entities,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]+/),u=a.url.match(/findex=\d+/),d=a.url.match(/base=[a-z_]+/);if(u=u instanceof Array?parseInt(u[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",d=d instanceof Array?d[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=d&&""!=o&&n>0){var s=d+n+"_"+o+"_"+u;jQuery("."+s+" .raw").html("<strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode)}}else a.url.search("subaction=restore_alldownloaded")>=0&&jQuery("#updraft-restore-modal-stage2a").append("<br><strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode+": "+r)}),jQuery(document).ready(function(t){function e(e){t('.expertmode .advanced_settings_container .advanced_tools:not(".'+e+'")').hide(),t(".expertmode .advanced_settings_container .advanced_tools."+e).fadeIn("slow"),t(".expertmode .advanced_settings_container .advanced_tools_button:not(#"+e+")").removeClass("active"),t(".expertmode .advanced_settings_container .advanced_tools_button#"+e).addClass("active")}function a(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 u(t){var e=Handlebars.compile(updraftlion.remote_storage_templates[t]),a=updraftlion.remote_storage_options[t]["default"];a.instance_id="s-"+d(32),a.instance_enabled=1;var r=e(a);jQuery(r).hide().insertAfter("."+t+"_add_instance_container:first").show("slow")}function d(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,u=a,d=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,u+=t.backup_local,d+=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,u,d,s)}else if("success"==t.result){setTimeout(function(){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp()},500),update_backupnow_modal(t),t.hasOwnProperty("backupnow_file_entities")&&(impossible_increment_entities=t.backupnow_file_entities),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,u+=t.backup_local,d+=t.backup_remote,s+=t.backup_sets,setTimeout(function(){alert(t.set_message+" "+s+"\n"+t.local_message+" "+u+"\n"+t.remote_message+" "+d)},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(document).on("udp/checkout/done",function(e,a){a.hasOwnProperty("product")&&"updraftpremium"===a.product&&"complete"===a.status&&(t(".premium-upgrade-purchase-success").show(),t(".updraft_feat_table").closest("section").hide(),t(".updraft_premium_cta__action").hide())}),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 u=id_split[1];"undefined"==typeof e[u]&&(e[u]=[]),e[u][o]=this.value}});var a="",r="@",n="/",o=":",u=":";for(var d in e)(e[d].host.indexOf("@")>=0||""===e[d].host)&&(r=""),e[d].host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e[d].path.indexOf("/")&&""!==e[d].path||(n=""),""!==e[d].user&&""!==e[d].pass||(o=""),""!==e[d].host&&""!==e[d].port||(u=""),a=e[d].webdav+e[d].user+o+e[d].pass+r+encodeURIComponent(e[d].host)+u+e[d].port+n+e[d].path,t("#updraft_webdav_url_"+d).val(a)}),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,u={email:r,password:n,auto_update:o};a(u)}),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,u={email:r,password:n,auto_update:o};a(u)}}),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(),u=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .temporary_clone_terms_and_conditions").is(":checked")?1:0,d={form_data:{email:a,password:n,two_factor_code:o,consent:u}};a&&n?r(d):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(),u=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_login .temporary_clone_terms_and_conditions").is(":checked")?1:0,d={form_data:{email:a,password:n,two_factor_code:o,consent:u}};a&&n?r(d):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={
3
- 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(),u=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_wp_options").val(),d=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_region_options").val(),s=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_updraftclone_branch").val(),i=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_updraftplus_branch").val(),l=t(".updraftplus_clone_admin_login_options").is(":checked"),p={form_data:{clone_id:a,secret_token:r,install_info:{php_version:n,wp_version:u,region:d,admin_only:l,updraftclone_branch:"undefined"==typeof s?"":s,updraftplus_branch:"undefined"==typeof i?"":i}}};updraft_send_command("process_updraftplus_clone_create",p,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");u(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&&u(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 u=jQuery(o).data("howmany"),d=jQuery(o).val();if((1==r||2==r&&"db"!=d)&&("wpcore"!=d&&(u=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),d="wpcore"),"wpcore"!=d||0==a){var s=[d,u];e.push(s),"wpcore"==d&&(a=1)}}}),1==t){if(1==updraft_restore_stage){jQuery("#updraft-restore-modal-stage1").slideUp("slow"),jQuery("#updraft-restore-modal-stage2").show(),updraft_restore_stage=2;var n=jQuery(".updraft_restore_date").first().text(),o=e,u=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:u},function(t){if(t.hasOwnProperty("downloads")&&(console.log("UpdraftPlus: items which still require downloading follow"),o=t.downloads,console.log(o)),0==o.length)updraft_restorer_checkstage2(0);else for(var e=0;e<o.length;e++)updraft_downloader("udrestoredlstatus_",u,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1,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(d){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(d),alert(updraftlion.jsonnotunderstood)}}else if(2==updraft_restore_stage)updraft_restorer_checkstage2(1);else if(3==updraft_restore_stage){var s=1;if(jQuery("#updraft_restoreoptions_ui input.required").each(function(t){if(0!=s){var e=jQuery(this).val();if(""==e)alert(updraftlion.pleasefillinrequired),s=0;else if(""!=jQuery(this).attr("pattern")){var a=jQuery(this).attr("pattern"),r=new RegExp(a,"g");r.test(e)||(alert(jQuery(this).data("invalidpattern")),s=0)}}}),!s)return;var i=jQuery("#updraft_restoreoptions_ui select, #updraft_restoreoptions_ui input").serialize();console.log("Restore options: "+i),jQuery("#updraft_restorer_restore_options").val(i),jQuery("#updraft-restore-modal-stage2a").html(updraftlion.restore_proceeding),jQuery("#updraft_restore_form").submit(),updraft_restore_stage=4}}else alert(updraftlion.youdidnotselectany)},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 k={};k[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,o="incremental"==jQuery("#updraft-backupnow-modal").data("backup-type")?1:0;if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var u=backupnow_whichfiles_checked("");return""==u&&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,u,{always_keep:n,incremental:o},jQuery("#backupnow_label").val(),r))},k[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:k,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 u=jQuery("#updraft_exclude_prefix_field").val();if(""==u)return void alert(updraftlion.exclude_type_prefix_msg);if(!u.match(/^\s*[a-z-_\d,\s]+\s*$/i))return void alert(updraftlion.exclude_prefix_error_msg);e="prefix:"+u;break;default:return}var d=jQuery("#updraft_exclude_modal_for").val();if(updraft_is_unique_exclude_rule(e,d)){var s='<div class="updraft_exclude_entity_wrapper"><input type="text" class="updraft_exclude_entity_field updraft_include_'+d+'_exclude_entity" name="updraft_include_'+d+'_exclude_entity[]" value="'+e+'" data-val="'+e+'" data-include-backup-file="'+d+'" readonly="readonly"><a href="#" class="updraft_exclude_entity_edit dashicons dashicons-edit" data-include-backup-file="'+d+'"></a><a href="#" class="updraft_exclude_entity_update dashicons dashicons-yes" data-include-backup-file="'+d+'" style="display: none;"></a><a href="#" class="updraft_exclude_entity_delete dashicons dashicons-no" data-include-backup-file="'+d+'"></a></div>';jQuery('.updraft_exclude_entity_container[data-include-backup-file="'+d+'"]').append(s),updraft_exclude_entity_update(d),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(j){console.log(j)}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("fileid"),a=jQuery(this).data("jobid");e?updraft_popuplog(e):a?updraft_popuplog(a):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"),u=jQuery(this).data("prettydate"),d=!0;updraft_downloader(e,a,r,n,o,u,d)}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("dblclick",".updraft_existingbackup_date",function(t){t.preventDefault();var e=jQuery(this).data("rawbackup");null!=e&&""!=e&&updraft_html_modal(e,updraftlion.raw,780,500)})}),jQuery(document).ready(function(t){var e="#updraft-navtab-settings-content ";t(e+"#remote-storage-holder").on("click",".updraftvault_backtostart",function(a){a.preventDefault(),t(e+"#updraftvault_settings_showoptions").slideUp(),t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").slideUp(),t(e+"#updraftvault_settings_default").slideDown()}),t(e).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 u="updraft_send_command: error: "+r+" ("+n+")";console.log(u),alert(u),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")
4
- },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 u="updraft_send_command: error: "+r+" ("+n+")";console.log(u),alert(u),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{var u="updraft_send_command: error: "+r+" ("+n+")";console.log(u),alert(u),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]),u=!0;for(var d in updraftlion.remote_storage_options[n])if("default"!==d){var s=updraftlion.remote_storage_options[n][d];s.first_instance=u,"undefined"==typeof s.instance_enabled&&(s.instance_enabled=1),r+=o(s),u=!1}}else r+=updraftlion.remote_storage_templates[n];t("#remote-storage-holder").append(r).ready(function(){t(".updraftplusmethod").not(".none").hide(),updraft_remote_storage_tabs_setup(),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 u=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:u,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(u){return console.log(u),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 u=new Image;u.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,u){if("function"==typeof o){var d=t(u).find("#updraftcentral_cloud_form"),s=d.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(u),updraft_send_command("updraftcentral_create_key",i,function(e){r(u);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(u).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,d=["existing_user_email","email_exists"];return-1!==t.inArray(e.code,d)&&(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"),u(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"),u(o,data,updraftlion.login_successful))}catch(d){console.log(d)}},{json_parse:!1})}function u(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 d(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 u=a.find('.updraftcentral-data-consent > input[name="i_consent"]').is(":checked");return u?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 u=t(a).find("#updraft_central_keysize").val(),d=t(a).find("#updraft_central_firewalled").is(":checked")?1:0;e(u,d,function(e){var u=t(a).find("#updraftcentral_cloud_form"),d=u.find('.form_hidden_fields input[name="key"]');0===d.length&&u.find(".form_hidden_fields").append('<input type="hidden" name="key" value="'+e+'">');var s=u.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");d(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(t){t="undefined"==typeof t?"new":t,0==jQuery("#updraftplus_incremental_backup_link").data("incremental")&&"incremental"==t?(jQuery("#updraft-backupnow-modal .incremental-free-only").show(),t="new"):jQuery("#updraft-backupnow-modal .incremental-backups-only").hide(),jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed&&!window.confirm(updraftlion.unsavedsettingsbackup)||(jQuery("#backupnow_label").val(""),"incremental"==t?(update_file_entities_checkboxes(!0,impossible_increment_entities),jQuery("#backupnow_includedb").prop("checked",!1),jQuery("#backupnow_includefiles").prop("checked",!0),jQuery("#backupnow_includefiles_label").text(updraftlion.files_incremental_backup),jQuery("#updraft-backupnow-modal .new-backups-only").hide(),jQuery("#updraft-backupnow-modal .incremental-backups-only").show()):(update_file_entities_checkboxes(!1,impossible_increment_entities),jQuery("#backupnow_includedb").prop("checked",!0),jQuery("#backupnow_includefiles_label").text(updraftlion.files_new_backup),jQuery("#updraft-backupnow-modal .new-backups-only").show(),jQuery("#updraft-backupnow-modal .incremental-backups-only").hide()),jQuery("#updraft-backupnow-modal").data("backup-type",t),jQuery("#updraft-backupnow-modal").dialog("open"))}function update_file_entities_checkboxes(t,e){t?jQuery(e).each(function(t,e){jQuery("#backupnow_files_updraft_include_"+e).prop("checked",!1),jQuery("#backupnow_files_updraft_include_"+e).prop("disabled",!0)}):jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(t){var e=jQuery(this).attr("name");if("updraft_include_"==e.substring(0,16)){var a=e.substring(16);jQuery("#backupnow_files_updraft_include_"+a).prop("disabled",!1),jQuery(this).is(":checked")&&jQuery("#backupnow_files_updraft_include_"+a).prop("checked",!0)}})}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_get_downloaders(){var t="";return jQuery(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(e,a){var r=jQuery(a).data("downloaderfor");"object"==typeof r&&(""!=t&&(t+=":"),t=t+r.base+","+r.nonce+","+r.what+","+r.index)}),t}function updraft_poll_get_parameters(){var t={downloaders:updraft_get_downloaders()};try{jQuery("#updraft-poplog").dialog("isOpen")&&(t.log_fetch=1,t.log_nonce=updraft_poplog_log_nonce,t.log_pointer=updraft_poplog_log_pointer)}catch(e){console.log(e)}return updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(t.thisjobonly=updraft_backupnow_nonce),t}function updraft_activejobs_update(t){var e=(jQuery,(new Date).getTime());if(!(0==t&&e<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=e+5500;var a=updraft_poll_get_parameters();updraft_send_command("activejobs_list",a,function(t,e,r){updraft_process_status_check(t,r,a)},{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)),update_backupnow_modal(t),t.hasOwnProperty("backupnow_file_entities")&&(impossible_increment_entities=t.backupnow_file_entities),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 update_backupnow_modal(t){t.hasOwnProperty("modal_afterfileoptions")&&jQuery(".backupnow_modal_afterfileoptions").html(t.modal_afterfileoptions)}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(".updraftplus_downloader_container_"+a).length||(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);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>";
2
+ 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,u.incremental="undefined"!=typeof n.incremental?n.incremental:0,delete n.incremental,!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){return t.hasOwnProperty("error")?(jQuery(".updraft_requeststart").remove(),void alert(t.error)):(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)),void setTimeout(function(){updraft_activejobs_update(!0)},500))})}function updraft_process_status_check(t,e,a){if(t.hasOwnProperty("fatal_error"))return console.error(t.fatal_error_message),void(!0===updraftplus_activejobs_list_fatal_error_alert&&(updraftplus_activejobs_list_fatal_error_alert=!1,alert(this.alert_done+" "+t.fatal_error_message)));try{t.hasOwnProperty("l")&&(t.l?(jQuery("#updraft_lastlogmessagerow").show(),jQuery("#updraft_lastlogcontainer").html(t.l)):(jQuery("#updraft_lastlogmessagerow").hide(),jQuery("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var r=-1,n=jQuery(".updraft_requeststart");t.j&&n.length&&n.data("remove")&&n.remove();var o=jQuery(t.j);o.find(".updraft_jobtimings").each(function(t,e){var a=jQuery(e);if(a.data("jobid")){var r=a.data("jobid"),n=a.closest(".updraft_row");updraft_aborted_jobs[r]&&n.hide()}}),jQuery("#updraft_activejobsrow").html(o);var d=o.find('.job-id[data-isclone="1"]');if(d.length>0){if(0==jQuery(".updraftclone_action_box .updraftclone_network_info").length&&jQuery("#updraft_activejobsrow .job-id .updraft_clone_url").length>0){var u=jQuery("#updraft_activejobsrow .job-id .updraft_clone_url").data("clone_url");updraft_send_command("get_clone_network_info",{clone_url:u},function(t){t.hasOwnProperty("html")&&jQuery(".updraftclone_action_box").html(t.html)})}jQuery("#updraft_clone_activejobsrow").empty(),d.each(function(t,e){var a=jQuery(e);a.closest(".updraft_row").appendTo(jQuery("#updraft_clone_activejobsrow"))})}if(jQuery("#updraft_activejobs .updraft_jobtimings").each(function(t,e){var a=jQuery(e);if(a.data("lastactivity")&&a.data("jobid")){var n=a.data("jobid"),o=a.data("lastactivity");(r==-1||o<r)&&(r=o);var d=a.data("nextresumptionafter"),u=a.data("nextresumption");timenow=(new Date).getTime(),o>50&&u>0&&d<-30&&timenow>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=n||u!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=u,updraft_last_forced_jobid=n,updraft_last_forced_when=timenow,console.log("UpdraftPlus: force resumption: job_id="+n+", resumption="+u),updraft_send_command("forcescheduledresumption",{resumption:u,job_id:n},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),timenow=(new Date).getTime(),updraft_activejobs_nextupdate=timenow+18e4,1==updraft_page_is_visible&&"backups"==updraft_console_focussed_tab&&(updraft_activejobs_nextupdate=r>-1?r<5?timenow+1750:timenow+5e3:lastlog_lastdata==e?timenow+7500:timenow+1750),d.length>0&&(updraft_activejobs_nextupdate=timenow+6e3),lastlog_lastdata=e,null!=t.j&&""!=t.j){if(jQuery("#updraft_activejobsrow").show(),d.length>0&&jQuery("#updraft_clone_activejobsrow").show(),a.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+a.thisjobonly).length?(updraft_inpage_hasbegun=1,console.log("UpdraftPlus: the start of the requested backup job has been detected")):!updraft_inpage_hasbegun&&updraft_activejobslist_backupnownonce_only&&jQuery(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=jQuery(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,a.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+a.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):jQuery("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){jQuery("#updraft_backup_started").slideUp()},3500),a.hasOwnProperty("thisjobonly")&&updraft_backupnow_nonce&&a.thisjobonly===updraft_backupnow_nonce){jQuery(".updraft_requeststart").remove();var s=jQuery("#updraft-jobid-"+updraft_backupnow_nonce);s.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 jQuery("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),updraft_updatehistory(0,0),jQuery("#updraft_activejobsrow").hide());if(lastlog_jobs=t.j,null!=t.ds&&""!=t.ds&&updraft_downloader_status_update(t.ds,e),null!=t.u&&""!=t.u&&jQuery("#updraft-poplog").dialog("isOpen")){var i=t.u;if(i.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=i.pointer,null!=i.log&&""!=i.log)){var l=jQuery("#updraft-poplog").scrollTop();jQuery("#updraft-poplog-content").append(i.log),updraft_poplog_lastscroll!=l&&updraft_poplog_lastscroll!=-1||(jQuery("#updraft-poplog").scrollTop(jQuery("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=jQuery("#updraft-poplog").scrollTop())}}}catch(p){console.log(updraftlion.unexpectedresponse+" "+e),console.log(p)}}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var impossible_increment_entities,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-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 r(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 n(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 o(t){var e=Handlebars.compile(updraftlion.remote_storage_templates[t]),a=updraftlion.remote_storage_options[t]["default"];a.instance_id="s-"+d(32),a.instance_enabled=1;var r=e(a);jQuery(r).hide().insertAfter("."+t+"_add_instance_container:first").show("slow")}function d(t){for(var e="",a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=0;r<t;r++)e+=a.charAt(Math.floor(Math.random()*a.length));return e}function u(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(),s()))}function s(){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 i(e,a,r,n){jQuery("#updraft-delete-modal").dialog("close");var o=e,d=a,u=r,s=n,l=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),i(o,d,u,s)}else if("success"==t.result){setTimeout(function(){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp()},500),update_backupnow_modal(t),t.hasOwnProperty("backupnow_file_entities")&&(impossible_increment_entities=t.backupnow_file_entities),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<l.length;a++){var r=l[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 l(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 p(){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 _(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 c(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 f(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 m(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(document).on("udp/checkout/done",function(e,a){a.hasOwnProperty("product")&&"updraftpremium"===a.product&&"complete"===a.status&&(t(".premium-upgrade-purchase-success").show(),t(".updraft_feat_table").closest("section").hide(),t(".updraft_premium_cta__action").hide())}),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 g=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||g.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 a=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email").val(),r=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password").val(),n=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates").is(":checked")?1:0,o=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_udc_connect").is(":checked")?1:0,d={email:a,password:r,auto_update:n,auto_udc_connect:o};h.submit(d)}),t("#updraft-navtab-addons-content .wrap").on("keydown",".updraftplus_com_login input",function(e){if(13==e.which){e.preventDefault();var a=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_email").val(),r=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_password").val(),n=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_updates").is(":checked")?1:0,o=t("#updraft-navtab-addons-content .wrap .updraftplus_com_login #updraftplus-addons_options_auto_udc_connect").is(":checked")?1:0,d={email:a,password:r,auto_update:n,auto_udc_connect:o};h.submit(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 r=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:r,password:n,two_factor_code:o,consent:d}};r&&n?a(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 r=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:r,password:n,two_factor_code:o,consent:d}};r&&n?a(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(),n=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content .updraftplus_com_key .temporary_clone_terms_and_conditions").is(":checked")?1:0,o={
3
+ form_data:{clone_key:a,consent:n}};a?r(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(),n=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:n}};a?r(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"),o=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("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_updraftclone_branch").val(),i=t("#updraft-navtab-migrate-content .updraft_migrate_widget_module_content #updraftplus_clone_updraftplus_branch").val(),l=t(".updraftplus_clone_admin_login_options").is(":checked"),p={form_data:{clone_id:a,secret_token:r,install_info:{php_version:o,wp_version:d,region:u,admin_only:l,updraftclone_branch:"undefined"==typeof s?"":s,updraftplus_branch:"undefined"==typeof i?"":i}}};updraft_send_command("process_updraftplus_clone_create",p,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"),n(a,r,e.url,e.key))}catch(o){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(o)}})});var h={};h.set_status=function(e){t("#updraft-navtab-addons-content .wrap").find(".updraftplus_spinner.spinner").text(e)},h.show_loader=function(){t("#updraft-navtab-addons-content .wrap").find(".updraftplus_spinner.spinner").addClass("visible"),t("#updraft-navtab-addons-content .wrap").find(".ud_connectsubmit").prop("disabled","disabled")},h.hide_loader=function(){t("#updraft-navtab-addons-content .wrap").find(".updraftplus_spinner.spinner").removeClass("visible").text(updraftlion.processing),t("#updraft-navtab-addons-content .wrap").find(".ud_connectsubmit").removeProp("disabled")},h.submit=function(e){if(t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html("").hide(),this.stage)switch(this.stage){case"connect_udc":case"connect_udc_TFA":var a=t("#updraftplus-addons_options_email").val(),r=t("#updraftplus-addons_options_password").val();this.login_data.email=a,this.login_data.password=r,this.connect_udc();break;case"create_key":this.create_key();break;default:this.stage=null,h.submit()}else this.set_status(updraftlion.connecting),this.show_loader(),updraft_send_command("updraftplus_com_login_submit",{data:e},function(a){a.hasOwnProperty("success")?t("#updraftplus-addons_options_auto_udc_connect").is(":checked")?(this.login_data={email:e.email,password:e.password,i_consent:1,two_factor_code:""},h.create_key()):(h.hide_loader(),t("#updraft-navtab-addons-content .wrap .updraftplus_com_login").submit()):a.hasOwnProperty("error")&&(h.hide_loader(),t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html(a.message).show())}.bind(this))},h.create_key=function(){this.stage="create_key",this.set_status(updraftlion.udc_cloud_connected),this.show_loader();var e={where_send:"__updraftpluscom",key_description:"",key_size:null,mothership_firewalled:0};updraft_send_command("updraftcentral_create_key",e,function(e){try{var a=ud_parse_json(e);if(a.hasOwnProperty("error"))return void console.log(a);a.hasOwnProperty("bundle")?(console.log("bundle",a.bundle),this.login_data.key=a.bundle,this.stage="connect_udc",h.connect_udc()):(a.hasOwnProperty("r")?(t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html(updraftlion.trouble_connecting).show(),alert(a.r)):(t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html(updraftlion.trouble_connecting).show(),console.log(a)),h.hide_loader())}catch(r){console.log(r),h.hide_loader()}}.bind(this),{json_parse:!1})},h.connect_udc=function(){var e=t("#updraft-navtab-addons-content .wrap");h.set_status(updraftlion.udc_cloud_key_created),h.show_loader(),"connect_udc_TFA"==this.stage&&(this.login_data.two_factor_code=e.find("input#updraftplus-addons_options_two_factor_code").val(),h.set_status(updraftlion.checking_tfa_code));var a={form_data:this.login_data};a.form_data.addons_options_connect=1,updraft_send_command("process_updraftcentral_login",a,function(a){try{var r=ud_parse_json(a);if(r.hasOwnProperty("error"))return"incorrect_password"===r.code&&(e.find(".tfa_fields").hide(),e.find(".non_tfa_fields").show(),e.find("input#updraftplus-addons_options_two_factor_code").val(""),e.find("input#updraftplus-addons_options_password").val("").focus()),"no_key_found"===r.code&&(this.stage="create_key"),t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html(r.message).show(),t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").find("a").attr("target","_blank"),console.log(r),void h.hide_loader();r.hasOwnProperty("tfa_enabled")&&1==r.tfa_enabled&&(t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html("").hide(),e.find(".non_tfa_fields").hide(),e.find(".tfa_fields").show(),e.find("input#updraftplus-addons_options_two_factor_code").focus(),this.stage="connect_udc_TFA"),"authenticated"===r.status&&(e.find(".non_tfa_fields").hide(),e.find(".tfa_fields").hide(),e.find(".updraft-after-form-table").hide(),this.stage=null,t("#updraft-navtab-addons-content .wrap .updraftplus_com_login_status").html(updraftlion.login_successful_short).show().addClass("success"),setTimeout(function(){t("#updraft-navtab-addons-content .wrap form.updraftplus_com_login").submit()},1e3))}catch(n){console.log(n)}h.hide_loader()}.bind(this),{json_parse:!1})},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");o(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&&o(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(){u(!1)}),u(!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(),s()}),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(){i(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,o="incremental"==jQuery("#updraft-backupnow-modal").data("backup-type")?1:0;if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var d=backupnow_whichfiles_checked("");return""==d&&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,d,{always_keep:n,incremental:o},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&&l(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&&p()}catch(k){console.log(k)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),_(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),_(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){
4
+ 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("fileid"),a=jQuery(this).data("jobid");e?updraft_popuplog(e):a?updraft_popuplog(a):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");c(e,a,r)}),"initiate_restore"==f("udaction")){var Q=f("entities"),x=f("backup_timestamp"),O=f("showdata");c(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?m(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{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),t(".updraftplus-addons-connect-to-udc").remove(),$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)});var l={};t(document).on("heartbeat-send",function(t,e){l=updraft_poll_get_parameters(),e.updraftplus=l}),t(document).on("heartbeat-tick",function(t,e){if(null!==e&&e.hasOwnProperty("updraftplus")){var a=e.updraftplus,r=JSON.stringify(a);updraft_process_status_check(a,r,l)}})});
includes/updraft-notices.php CHANGED
@@ -127,7 +127,7 @@ abstract class Updraft_Notices {
127
  // If a seasonal advert can't be returned then we will return a random advert
128
 
129
  // Here we give a 25% chance for the rate advert to be returned before selecting a random advert from the entire collection which also includes the rate advert
130
- if (0 == rand(0, 3)) return $available_notices['rate'];
131
 
132
  /*
133
  Using shuffle here as something like rand which produces a random number and uses that as the array index fails, this is because in future an advert may not be numbered and could have a string as its key which will then cause errors.
127
  // If a seasonal advert can't be returned then we will return a random advert
128
 
129
  // Here we give a 25% chance for the rate advert to be returned before selecting a random advert from the entire collection which also includes the rate advert
130
+ if (0 == rand(0, 3) && isset($available_notices['rate'])) return $available_notices['rate'];
131
 
132
  /*
133
  Using shuffle here as something like rand which produces a random number and uses that as the array index fails, this is because in future an advert may not be numbered and could have a string as its key which will then cause errors.
includes/updraftcentral.php CHANGED
@@ -49,6 +49,11 @@ class UpdraftPlus_UpdraftCentral_Cloud extends UpdraftPlus_Login {
49
  if (is_a($updraftplus_updraftcentral_main, 'UpdraftPlus_UpdraftCentral_Main')) {
50
  $response['keys_table'] = $updraftplus_updraftcentral_main->get_keys_table();
51
  }
 
 
 
 
 
52
  } else {
53
  if ('error' === $response['status']) {
54
  $response = array(
49
  if (is_a($updraftplus_updraftcentral_main, 'UpdraftPlus_UpdraftCentral_Main')) {
50
  $response['keys_table'] = $updraftplus_updraftcentral_main->get_keys_table();
51
  }
52
+
53
+ if (!empty($data['addons_options_connect']) && class_exists('UpdraftPlus_Options')) {
54
+ UpdraftPlus_Options::update_updraft_option('updraftplus_com_and_udc_connection_success', 1, false);
55
+ }
56
+
57
  } else {
58
  if ('error' === $response['status']) {
59
  $response = array(
includes/updraftclone/temporary-clone-restore.php CHANGED
@@ -24,6 +24,8 @@ class UpdraftPlus_Temporary_Clone_Restore {
24
 
25
  $state_file = trailingslashit($updraftplus->backups_dir_location()). 'ready_for_restore';
26
 
 
 
27
  if ($job_id) {
28
  file_put_contents($state_file, $job_id);
29
  } else {
24
 
25
  $state_file = trailingslashit($updraftplus->backups_dir_location()). 'ready_for_restore';
26
 
27
+ error_log("UpdraftPlus_Temporary_Clone_Restore::clone_ready_for_restore($job_id): touching flag file");
28
+
29
  if ($job_id) {
30
  file_put_contents($state_file, $job_id);
31
  } else {
includes/updraftplus-login.php CHANGED
@@ -36,7 +36,6 @@ abstract class UpdraftPlus_Login {
36
  */
37
  protected function send_remote_request($data, $action) {
38
  global $updraftplus;
39
-
40
  $result = wp_remote_post($updraftplus->get_url('mothership').'/?udm_action='.$action,
41
  array(
42
  'timeout' => 20,
36
  */
37
  protected function send_remote_request($data, $action) {
38
  global $updraftplus;
 
39
  $result = wp_remote_post($updraftplus->get_url('mothership').'/?udm_action='.$action,
40
  array(
41
  'timeout' => 20,
includes/updraftplus-notices.php CHANGED
@@ -175,10 +175,13 @@ class UpdraftPlus_Notices extends Updraft_Notices {
175
  ),
176
  'autobackup' => array(
177
  'prefix' => '',
178
- 'title' => __('Be safe with an automatic backup', 'updraftplus'),
179
- 'text' => __('UpdraftPlus Premium can automatically backup your plugins/themes/database before you update, without you needing to remember.', 'updraftplus'),
 
 
180
  'image' => 'addons-images/autobackup.png',
181
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
 
182
  'button_meta' => 'updraftplus',
183
  'dismiss_time' => 'dismissautobackup',
184
  'supported_positions' => $this->autobackup_bottom_or_report,
@@ -412,6 +415,8 @@ class UpdraftPlus_Notices extends Updraft_Notices {
412
  $template_file = 'report.php';
413
  } elseif ('report-plain' == $position) {
414
  $template_file = 'report-plain.php';
 
 
415
  } else {
416
  $template_file = 'horizontal-notice.php';
417
  }
175
  ),
176
  'autobackup' => array(
177
  'prefix' => '',
178
+ 'title' => __('Make updates easy with UpdraftPlus', 'updraftplus'),
179
+ 'text' => __('Be safe', 'updraftplus') . ' - ' . $this->url_start(true, 'updraftplus.com/shop/updraftplus-premium/') . 'UpdraftPlus Premium' . $this->url_end(true, 'updraftplus.com/shop/updraftplus-premium/') . ' ' . __('backs up automatically when you update plugins, themes or core', 'updraftplus'),
180
+ 'text2' => __('Save time', 'updraftplus') . ' - ' . $this->url_start(true, 'wordpress.org/plugins/stops-core-theme-and-plugin-updates/') . 'Easy Updates Manager' . $this->url_end(true, 'wordpress.org/plugins/stops-core-theme-and-plugin-updates/') . ' ' . __('handles updates automatically as you want them', 'updraftplus'),
181
+ 'text3' => __('Many sites?', 'updraftplus') . ' - ' . $this->url_start(true, 'updraftplus.com/updraftcentral/') . 'UpdraftCentral' . $this->url_end(true, 'updraftplus.com/updraftcentral/') . ' ' . __('manages all your WordPress sites at once from one place', 'updraftplus'),
182
  'image' => 'addons-images/autobackup.png',
183
  'button_link' => 'https://updraftplus.com/landing/updraftplus-premium',
184
+ 'campaign' => 'autobackup',
185
  'button_meta' => 'updraftplus',
186
  'dismiss_time' => 'dismissautobackup',
187
  'supported_positions' => $this->autobackup_bottom_or_report,
415
  $template_file = 'report.php';
416
  } elseif ('report-plain' == $position) {
417
  $template_file = 'report-plain.php';
418
+ } elseif ('autobackup' == $position) {
419
+ $template_file = 'autobackup-notice.php';
420
  } else {
421
  $template_file = 'horizontal-notice.php';
422
  }
languages/updraftplus-ja.mo CHANGED
Binary file
languages/updraftplus-ja.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-12-15 11:42:30+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -519,7 +519,7 @@ msgstr ""
519
 
520
  #: src/includes/updraftplus-tour.php:134, src/includes/updraftplus-tour.php:138
521
  msgid "Save"
522
- msgstr ""
523
 
524
  #: src/includes/updraftplus-tour.php:131
525
  msgid "Look through the other settings here, making any changes you’d like."
@@ -615,7 +615,7 @@ msgstr ""
615
 
616
  #: src/includes/updraftplus-tour.php:86
617
  msgid "Back"
618
- msgstr ""
619
 
620
  #: src/includes/class-commands.php:893
621
  msgid "You can buy more temporary clone tokens here."
@@ -667,7 +667,7 @@ msgstr ""
667
 
668
  #: src/admin.php:663
669
  msgid "Backup"
670
- msgstr ""
671
 
672
  #: src/addons/wp-cli.php:408
673
  msgid "Latest full backup found; identifier:"
@@ -795,7 +795,7 @@ msgstr ""
795
 
796
  #: src/addons/incremental.php:236, src/updraftplus.php:99
797
  msgid "Every hour"
798
- msgstr ""
799
 
800
  #: src/includes/class-commands.php:900
801
  msgid "Create clone"
@@ -810,15 +810,15 @@ msgstr ""
810
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
811
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
812
  msgid "Processing"
813
- msgstr ""
814
 
815
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:70
816
  msgid "Connect to UpdraftCentral Cloud"
817
- msgstr ""
818
 
819
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
820
  msgid "UpdraftPlus.Com account terms and policies"
821
- msgstr ""
822
 
823
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
824
  msgid "I consent to %s"
@@ -989,7 +989,7 @@ msgstr ""
989
 
990
  #: src/admin.php:846, src/admin.php:4248
991
  msgid "Upload"
992
- msgstr ""
993
 
994
  #: src/addons/reporting.php:529, src/admin.php:796
995
  msgid "Only email the database backup"
@@ -1299,7 +1299,7 @@ msgstr ""
1299
 
1300
  #: src/central/bootstrap.php:527, src/includes/updraftplus-tour.php:85
1301
  msgid "Next"
1302
- msgstr ""
1303
 
1304
  #: src/central/bootstrap.php:513
1305
  msgid "an account"
@@ -1609,7 +1609,7 @@ msgstr ""
1609
 
1610
  #: src/templates/wp-admin/advanced/wipe-settings.php:11
1611
  msgid "UpdraftPlus Tour"
1612
- msgstr ""
1613
 
1614
  #: src/templates/wp-admin/settings/tab-addons.php:232
1615
  msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
@@ -1750,7 +1750,7 @@ msgstr "推奨: WP-Optimize でデータベースを最適化してください
1750
  #: src/templates/wp-admin/notices/report-plain.php:33,
1751
  #: src/templates/wp-admin/notices/report.php:30
1752
  msgid "Read more"
1753
- msgstr "もっと読み込む"
1754
 
1755
  #: src/includes/updraftplus-notices.php:182
1756
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
@@ -1775,7 +1775,7 @@ msgstr ""
1775
  #: src/addons/morefiles.php:297, src/addons/morefiles.php:317,
1776
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
1777
  msgid "Edit"
1778
- msgstr ""
1779
 
1780
  #: src/addons/morefiles.php:280
1781
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
@@ -2336,7 +2336,7 @@ msgstr "ユーザーとしてこのサイトにアクセス:"
2336
 
2337
  #: src/central/bootstrap.php:477
2338
  msgid "Details"
2339
- msgstr "説明"
2340
 
2341
  #: src/central/bootstrap.php:476
2342
  msgid "Key description"
@@ -2479,7 +2479,7 @@ msgstr "新しいサイトとしてインポートされます。"
2479
  #: src/admin.php:2842, src/templates/wp-admin/notices/horizontal-notice.php:16,
2480
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2481
  msgid "Dismiss"
2482
- msgstr "非表示にする"
2483
 
2484
  #: src/admin.php:891
2485
  msgid "Please fill in the required information."
@@ -2641,7 +2641,7 @@ msgstr "あなたは、バックアップファイルに選択しましたが、
2641
 
2642
  #: src/admin.php:695
2643
  msgid "Extensions"
2644
- msgstr "追加機能"
2645
 
2646
  #: src/admin.php:687, src/admin.php:2801
2647
  msgid "Advanced Tools"
@@ -4590,7 +4590,7 @@ msgstr "未知のソース(%s)によって作成されたバックアップ
4590
 
4591
  #: src/restorer.php:1259, src/restorer.php:1307
4592
  msgid "The WordPress content folder (wp-content) was not found in this zip file."
4593
- msgstr "圧縮されたフォルダにコンテントフォルダー (wp-content) がありませんでした。"
4594
 
4595
  #: src/restorer.php:1113
4596
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
@@ -4965,7 +4965,7 @@ msgstr "認証に失敗しました (認証情報 credentials をご確認くだ
4965
  #: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
4966
  #: src/udaddons/options.php:229
4967
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4968
- msgstr "UpdraftPlus.com への接続中にエラーが発生しました。"
4969
 
4970
  #: src/admin.php:845, src/central/bootstrap.php:565
4971
  msgid "Create"
@@ -5187,7 +5187,7 @@ msgstr ""
5187
 
5188
  #: src/options.php:208
5189
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
5190
- msgstr "UpdraftPlus Premium もしくは マルチサイトアドオンの追加機能で WordPress マルチサイトをサポートしています。"
5191
 
5192
  #: src/options.php:208
5193
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
@@ -6234,7 +6234,7 @@ msgstr "UpdraftPlus・デバッグ・モードがオンになっています。
6234
 
6235
  #: src/admin.php:1167
6236
  msgid "Notice"
6237
- msgstr "注意"
6238
 
6239
  #: src/backup.php:1061
6240
  msgid "Errors encountered:"
@@ -6439,7 +6439,7 @@ msgstr "失敗:私たちは、そのディレクトリにファイルを配置
6439
  #: src/admin.php:3500, src/admin.php:3510, src/methods/addon-base-v2.php:313,
6440
  #: src/methods/stream-base.php:356
6441
  msgid "Failed"
6442
- msgstr "失敗しました"
6443
 
6444
  #: src/addons/webdav.php:169
6445
  msgid "WebDAV URL"
@@ -6628,7 +6628,7 @@ msgstr "%sのアップロード:マルチパートアップロードのため
6628
 
6629
  #: src/methods/email.php:92
6630
  msgid "Note:"
6631
- msgstr "備考:"
6632
 
6633
  #: src/methods/email.php:45
6634
  msgid "WordPress Backup"
@@ -6833,7 +6833,7 @@ msgstr "%s のサポートはアドオンで利用可能になります"
6833
  #: src/methods/addon-not-yet-present.php:68,
6834
  #: src/methods/addon-not-yet-present.php:75
6835
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
6836
- msgstr "UpdraftPlus %s アドオンがインストールされていません。 - %sから取得する"
6837
 
6838
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:126,
6839
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:127
@@ -6853,7 +6853,7 @@ msgstr "テーブル接頭辞を変更した : それによって変更された
6853
 
6854
  #: src/addons/migrator.php:1317, src/restorer.php:2784
6855
  msgid "the database query being run was:"
6856
- msgstr "実行したデータベすクエリー :"
6857
 
6858
  #: src/restorer.php:2454
6859
  msgid "will restore as:"
@@ -6998,7 +6998,7 @@ msgstr "サーバーの PHP に必要なモジュール(%s) がありません
6998
 
6999
  #: src/templates/wp-admin/settings/form-contents.php:373
7000
  msgid "Save Changes"
7001
- msgstr "変更の保存"
7002
 
7003
  #: src/templates/wp-admin/settings/form-contents.php:345
7004
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
@@ -7100,7 +7100,7 @@ msgstr "データベース暗号化フレーズ"
7100
  #: src/admin.php:2935, src/templates/wp-admin/settings/form-contents.php:255,
7101
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7102
  msgid "Email"
7103
- msgstr "メールアドレス"
7104
 
7105
  #: src/templates/wp-admin/settings/form-contents.php:147
7106
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
@@ -7506,7 +7506,7 @@ msgstr "UpdraftPlus 設定に戻る"
7506
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7507
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7508
  msgid "Actions"
7509
- msgstr "アクション"
7510
 
7511
  #: src/admin.php:2409
7512
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
@@ -7674,7 +7674,7 @@ msgstr "その他"
7674
 
7675
  #: src/addons/multisite.php:500, src/class-updraftplus.php:1781
7676
  msgid "Uploads"
7677
- msgstr "アップロードファイル"
7678
 
7679
  #: src/class-updraftplus.php:1780
7680
  msgid "Themes"
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2019-02-27 16:20:58+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
519
 
520
  #: src/includes/updraftplus-tour.php:134, src/includes/updraftplus-tour.php:138
521
  msgid "Save"
522
+ msgstr "保存"
523
 
524
  #: src/includes/updraftplus-tour.php:131
525
  msgid "Look through the other settings here, making any changes you’d like."
615
 
616
  #: src/includes/updraftplus-tour.php:86
617
  msgid "Back"
618
+ msgstr "戻る"
619
 
620
  #: src/includes/class-commands.php:893
621
  msgid "You can buy more temporary clone tokens here."
667
 
668
  #: src/admin.php:663
669
  msgid "Backup"
670
+ msgstr "バックアップ"
671
 
672
  #: src/addons/wp-cli.php:408
673
  msgid "Latest full backup found; identifier:"
795
 
796
  #: src/addons/incremental.php:236, src/updraftplus.php:99
797
  msgid "Every hour"
798
+ msgstr "毎時間"
799
 
800
  #: src/includes/class-commands.php:900
801
  msgid "Create clone"
810
  #: src/templates/wp-admin/settings/temporary-clone.php:83,
811
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:71
812
  msgid "Processing"
813
+ msgstr "処理中"
814
 
815
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:70
816
  msgid "Connect to UpdraftCentral Cloud"
817
+ msgstr "UpdraftCentral クラウドに接続"
818
 
819
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
820
  msgid "UpdraftPlus.Com account terms and policies"
821
+ msgstr "UpdraftPlus.Comアカウントの利用規約とポリシー"
822
 
823
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
824
  msgid "I consent to %s"
989
 
990
  #: src/admin.php:846, src/admin.php:4248
991
  msgid "Upload"
992
+ msgstr "アップロード"
993
 
994
  #: src/addons/reporting.php:529, src/admin.php:796
995
  msgid "Only email the database backup"
1299
 
1300
  #: src/central/bootstrap.php:527, src/includes/updraftplus-tour.php:85
1301
  msgid "Next"
1302
+ msgstr "次へ"
1303
 
1304
  #: src/central/bootstrap.php:513
1305
  msgid "an account"
1609
 
1610
  #: src/templates/wp-admin/advanced/wipe-settings.php:11
1611
  msgid "UpdraftPlus Tour"
1612
+ msgstr "UpdraftPlus ツアー"
1613
 
1614
  #: src/templates/wp-admin/settings/tab-addons.php:232
1615
  msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
1750
  #: src/templates/wp-admin/notices/report-plain.php:33,
1751
  #: src/templates/wp-admin/notices/report.php:30
1752
  msgid "Read more"
1753
+ msgstr "続きを読む"
1754
 
1755
  #: src/includes/updraftplus-notices.php:182
1756
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
1775
  #: src/addons/morefiles.php:297, src/addons/morefiles.php:317,
1776
  #: src/templates/wp-admin/settings/file-backup-exclude.php:11
1777
  msgid "Edit"
1778
+ msgstr "編集"
1779
 
1780
  #: src/addons/morefiles.php:280
1781
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
2336
 
2337
  #: src/central/bootstrap.php:477
2338
  msgid "Details"
2339
+ msgstr "詳細"
2340
 
2341
  #: src/central/bootstrap.php:476
2342
  msgid "Key description"
2479
  #: src/admin.php:2842, src/templates/wp-admin/notices/horizontal-notice.php:16,
2480
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
2481
  msgid "Dismiss"
2482
+ msgstr "非表示"
2483
 
2484
  #: src/admin.php:891
2485
  msgid "Please fill in the required information."
2641
 
2642
  #: src/admin.php:695
2643
  msgid "Extensions"
2644
+ msgstr "拡張機能"
2645
 
2646
  #: src/admin.php:687, src/admin.php:2801
2647
  msgid "Advanced Tools"
4590
 
4591
  #: src/restorer.php:1259, src/restorer.php:1307
4592
  msgid "The WordPress content folder (wp-content) was not found in this zip file."
4593
+ msgstr "このzipファイル内にWordpressのコンテントフォルダー (wp-content) が見付かりません。"
4594
 
4595
  #: src/restorer.php:1113
4596
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
4965
  #: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
4966
  #: src/udaddons/options.php:229
4967
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4968
+ msgstr "UpdraftPlus.com への接続中に不明なエラーが発生しました。"
4969
 
4970
  #: src/admin.php:845, src/central/bootstrap.php:565
4971
  msgid "Create"
5187
 
5188
  #: src/options.php:208
5189
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
5190
+ msgstr "WordPress マルチサイトをサポートは、UpdraftPlus Premium または マルチサイトアドオンによる追加機能です。"
5191
 
5192
  #: src/options.php:208
5193
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
6234
 
6235
  #: src/admin.php:1167
6236
  msgid "Notice"
6237
+ msgstr "通知"
6238
 
6239
  #: src/backup.php:1061
6240
  msgid "Errors encountered:"
6439
  #: src/admin.php:3500, src/admin.php:3510, src/methods/addon-base-v2.php:313,
6440
  #: src/methods/stream-base.php:356
6441
  msgid "Failed"
6442
+ msgstr "失敗"
6443
 
6444
  #: src/addons/webdav.php:169
6445
  msgid "WebDAV URL"
6628
 
6629
  #: src/methods/email.php:92
6630
  msgid "Note:"
6631
+ msgstr "注:"
6632
 
6633
  #: src/methods/email.php:45
6634
  msgid "WordPress Backup"
6833
  #: src/methods/addon-not-yet-present.php:68,
6834
  #: src/methods/addon-not-yet-present.php:75
6835
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
6836
+ msgstr "UpdraftPlus %s アドオンがインストールされていません。 - %sから取得できます"
6837
 
6838
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:126,
6839
  #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:127
6853
 
6854
  #: src/addons/migrator.php:1317, src/restorer.php:2784
6855
  msgid "the database query being run was:"
6856
+ msgstr "実行したデータベースクエリー :"
6857
 
6858
  #: src/restorer.php:2454
6859
  msgid "will restore as:"
6998
 
6999
  #: src/templates/wp-admin/settings/form-contents.php:373
7000
  msgid "Save Changes"
7001
+ msgstr "変更を保存"
7002
 
7003
  #: src/templates/wp-admin/settings/form-contents.php:345
7004
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
7100
  #: src/admin.php:2935, src/templates/wp-admin/settings/form-contents.php:255,
7101
  #: src/templates/wp-admin/settings/updraftcentral-connect.php:44
7102
  msgid "Email"
7103
+ msgstr "メール"
7104
 
7105
  #: src/templates/wp-admin/settings/form-contents.php:147
7106
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
7506
  #: src/templates/wp-admin/settings/existing-backups-table.php:19,
7507
  #: src/templates/wp-admin/settings/existing-backups-table.php:139
7508
  msgid "Actions"
7509
+ msgstr "操作"
7510
 
7511
  #: src/admin.php:2409
7512
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
7674
 
7675
  #: src/addons/multisite.php:500, src/class-updraftplus.php:1781
7676
  msgid "Uploads"
7677
+ msgstr "アップロード"
7678
 
7679
  #: src/class-updraftplus.php:1780
7680
  msgid "Themes"
languages/updraftplus-nb_NO.mo DELETED
Binary file
languages/updraftplus-nb_NO.po DELETED
@@ -1,7691 +0,0 @@
1
- # Translation of UpdraftPlus in Norwegian (Bokmål)
2
- # This file is distributed under the same license as the UpdraftPlus package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2019-01-17 21:34:57+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/2.3.1\n"
11
- "Language: nb_NO\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"
21
- msgstr ""
22
-
23
- #: src/udaddons/updraftplus-addons.php:268,
24
- #: src/udaddons/updraftplus-addons.php:280
25
- msgid "If you have already renewed, then you need to allocate a licence to this site - %s"
26
- msgstr ""
27
-
28
- #: src/addons/onedrive.php:864
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
-
36
- #: src/templates/wp-admin/settings/form-contents.php:350
37
- msgid "Read more about Easy Updates Manager"
38
- msgstr ""
39
-
40
- #: src/templates/wp-admin/settings/temporary-clone.php:68
41
- msgid "You can find out more about clone keys here."
42
- msgstr ""
43
-
44
- #: src/templates/wp-admin/settings/temporary-clone.php:57
45
- msgid "Or, use an UpdraftClone key"
46
- msgstr ""
47
-
48
- #: src/restorer.php:2493
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
-
60
- #: src/addons/azure.php:646
61
- msgid "Azure Government"
62
- msgstr ""
63
-
64
- #: src/templates/wp-admin/settings/form-contents.php:350
65
- msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
66
- msgstr ""
67
-
68
- #: src/templates/wp-admin/settings/form-contents.php:349
69
- msgid "Automatic updates"
70
- msgstr ""
71
-
72
- #: src/restorer.php:2092, src/restorer.php:2134
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
-
80
- #: src/addons/googlecloud.php:997
81
- msgid "You must add the following as the authorized redirect URI (under \"More Options\") when asked"
82
- msgstr ""
83
-
84
- #: src/addons/googlecloud.php:991
85
- msgid "%s does not allow authorization of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
86
- msgstr ""
87
-
88
- #: src/addons/googlecloud.php:57
89
- msgid "Frankfurt"
90
- msgstr ""
91
-
92
- #: src/addons/googlecloud.php:56
93
- msgid "London"
94
- msgstr ""
95
-
96
- #: src/addons/googlecloud.php:55
97
- msgid "Belgium"
98
- msgstr ""
99
-
100
- #: src/addons/googlecloud.php:54
101
- msgid "Sydney"
102
- msgstr ""
103
-
104
- #: src/addons/googlecloud.php:53
105
- msgid "Singapore"
106
- msgstr ""
107
-
108
- #: src/addons/googlecloud.php:52
109
- msgid "Tokyo"
110
- msgstr ""
111
-
112
- #: src/addons/googlecloud.php:51
113
- msgid "Taiwan"
114
- msgstr ""
115
-
116
- #: src/addons/googlecloud.php:50
117
- msgid "Oregon"
118
- msgstr ""
119
-
120
- #: src/addons/googlecloud.php:49
121
- msgid "North Virginia"
122
- msgstr ""
123
-
124
- #: src/addons/googlecloud.php:48
125
- msgid "South Carolina"
126
- msgstr ""
127
-
128
- #: src/addons/googlecloud.php:47
129
- msgid "Iowa"
130
- msgstr ""
131
-
132
- #: src/includes/class-commands.php:949
133
- msgid "The creation of your data for creating the clone should now begin. N.B. You will be charged one token once the clone is ready. If the clone fails to boot, then no token will be taken."
134
- msgstr ""
135
-
136
- #: src/templates/wp-admin/settings/file-backup-exclude.php:11
137
- msgid "Confirm change"
138
- msgstr ""
139
-
140
- #: src/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php:3,
141
- #: src/templates/wp-admin/settings/file-backup-exclude.php:18
142
- msgid "Add an exclusion rule"
143
- msgstr ""
144
-
145
- #: src/templates/wp-admin/settings/exclude-modal.php:59
146
- msgid "Type a file prefix"
147
- msgstr ""
148
-
149
- #: src/templates/wp-admin/settings/exclude-modal.php:56,
150
- #: src/templates/wp-admin/settings/exclude-modal.php:58
151
- msgid "All files beginning with these characters"
152
- msgstr ""
153
-
154
- #: src/templates/wp-admin/settings/exclude-modal.php:47
155
- msgid "Type an extension like zip"
156
- msgstr ""
157
-
158
- #: src/templates/wp-admin/settings/exclude-modal.php:28
159
- msgid "Select a file/folder which you would like to exclude"
160
- msgstr ""
161
-
162
- #: src/templates/wp-admin/settings/exclude-modal.php:15
163
- msgid "All files beginning with given characters"
164
- msgstr ""
165
-
166
- #: src/templates/wp-admin/settings/exclude-modal.php:12,
167
- #: src/templates/wp-admin/settings/exclude-modal.php:44,
168
- #: src/templates/wp-admin/settings/exclude-modal.php:46
169
- msgid "All files with this extension"
170
- msgstr ""
171
-
172
- #: src/templates/wp-admin/settings/exclude-modal.php:9,
173
- #: src/templates/wp-admin/settings/exclude-modal.php:22
174
- msgid "File/directory"
175
- msgstr ""
176
-
177
- #: src/templates/wp-admin/settings/exclude-modal.php:6
178
- msgid "Select a way to exclude files or directories from the backup"
179
- msgstr ""
180
-
181
- #: src/templates/wp-admin/settings/exclude-modal.php:2
182
- msgid "Exclude files/directories"
183
- msgstr ""
184
-
185
- #: src/includes/updraftclone/temporary-clone-status.php:422
186
- msgid "To read FAQs/documentation about UpdraftClone, go here."
187
- msgstr ""
188
-
189
- #: src/includes/updraftclone/temporary-clone-status.php:421
190
- msgid "your UpdraftPlus.com account"
191
- msgstr ""
192
-
193
- #: src/includes/updraftclone/temporary-clone-status.php:421
194
- msgid "You can check the progress here or in %s"
195
- msgstr ""
196
-
197
- #: src/includes/updraftclone/temporary-clone-status.php:421
198
- msgid "Your UpdraftClone is still setting up."
199
- msgstr ""
200
-
201
- #: src/includes/updraftclone/temporary-clone-status.php:378
202
- msgid "%s archives remain"
203
- msgstr ""
204
-
205
- #: src/includes/updraftclone/temporary-clone-status.php:378
206
- msgid "The site data has all been received, and its import has begun."
207
- msgstr ""
208
-
209
- #: src/includes/updraftclone/temporary-clone-status.php:373
210
- msgid "The sending of the site data has begun. So far %s data archives totalling %s have been received"
211
- msgstr ""
212
-
213
- #: src/includes/updraftclone/temporary-clone-status.php:369
214
- msgid "WordPress installed; now awaiting the site data to be sent."
215
- msgstr ""
216
-
217
- #: src/includes/updraftclone/temporary-clone-status.php:94
218
- msgid "Clone ready"
219
- msgstr ""
220
-
221
- #: src/includes/updraftclone/temporary-clone-status.php:86
222
- msgid "Site data has been deployed"
223
- msgstr ""
224
-
225
- #: src/includes/updraftclone/temporary-clone-status.php:84,
226
- #: src/includes/updraftclone/temporary-clone-status.php:347
227
- msgid "Deploying site data"
228
- msgstr ""
229
-
230
- #: src/includes/updraftclone/temporary-clone-status.php:75
231
- msgid "Site data received"
232
- msgstr ""
233
-
234
- #: src/includes/updraftclone/temporary-clone-status.php:73,
235
- #: src/includes/updraftclone/temporary-clone-status.php:344
236
- msgid "Receiving site data"
237
- msgstr ""
238
-
239
- #: src/includes/updraftclone/temporary-clone-status.php:66,
240
- #: src/includes/updraftclone/temporary-clone-status.php:341
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
-
280
- #: src/templates/wp-admin/advanced/site-info.php:104
281
- msgid "log results to console"
282
- msgstr ""
283
-
284
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:42
285
- msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
286
- msgstr ""
287
-
288
- #: src/templates/wp-admin/settings/temporary-clone.php:41
289
- msgid "To create a temporary clone you need credit in your account."
290
- msgstr ""
291
-
292
- #: src/templates/wp-admin/settings/temporary-clone.php:22
293
- msgid "Read FAQs here."
294
- msgstr ""
295
-
296
- #: src/methods/dropbox.php:305, src/methods/dropbox.php:321
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
-
312
- #: src/includes/class-commands.php:906
313
- msgid "manage"
314
- msgstr ""
315
-
316
- #: src/includes/class-commands.php:906
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
-
328
- #: src/addons/migrator.php:1745
329
- msgid "Site key"
330
- msgstr ""
331
-
332
- #: src/addons/migrator.php:1736
333
- msgid "Add a site"
334
- msgstr ""
335
-
336
- #: src/addons/migrator.php:229, src/addons/migrator.php:1731,
337
- #: src/addons/migrator.php:1752
338
- msgid "back"
339
- msgstr ""
340
-
341
- #: src/addons/migrator.php:195
342
- msgid "Read this article to see step-by-step how it's done."
343
- msgstr ""
344
-
345
- #: src/addons/migrator.php:189,
346
- #: src/templates/wp-admin/settings/migrator-no-migrator.php:6
347
- msgid "Migrate (create a copy of a site on hosting you control)"
348
- msgstr ""
349
-
350
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:42
351
- msgid "Manage your clones"
352
- msgstr ""
353
-
354
- #: src/templates/wp-admin/settings/existing-backups-table.php:158
355
- msgid "Use ctrl / cmd + press to select several items"
356
- msgstr "Bruk Ctrl/Cmd + museklikk for å velge flere elementer"
357
-
358
- #: src/methods/dreamobjects.php:20
359
- msgid "Closing 1st October 2018"
360
- msgstr ""
361
-
362
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:41
363
- msgid "Your clone will renew on:"
364
- msgstr ""
365
-
366
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:32
367
- msgid "Unable to get renew date"
368
- msgstr ""
369
-
370
- #: src/admin.php:906
371
- msgid "The backup was aborted"
372
- msgstr ""
373
-
374
- #: src/addons/onedrive.php:1197
375
- msgid "OneDrive Germany"
376
- msgstr ""
377
-
378
- #: src/addons/onedrive.php:1196
379
- msgid "OneDrive International"
380
- msgstr ""
381
-
382
- #: src/addons/onedrive.php:1193
383
- msgid "Account type"
384
- msgstr ""
385
-
386
- #: src/templates/wp-admin/settings/temporary-clone.php:56,
387
- #: src/templates/wp-admin/settings/temporary-clone.php:76
388
- msgid "I accept the UpdraftClone terms and conditions"
389
- msgstr ""
390
-
391
- #: src/templates/wp-admin/settings/temporary-clone.php:56
392
- msgid "Not got an account? Get one by buying some tokens here."
393
- msgstr ""
394
-
395
- #: src/templates/wp-admin/settings/temporary-clone.php:22,
396
- #: src/templates/wp-admin/settings/temporary-clone.php:41,
397
- #: src/templates/wp-admin/settings/temporary-clone.php:54
398
- msgid "You can buy UpdraftClone tokens from our shop, here."
399
- msgstr ""
400
-
401
- #: src/templates/wp-admin/settings/temporary-clone.php:54
402
- msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
403
- msgstr ""
404
-
405
- #: src/templates/wp-admin/settings/temporary-clone.php:32
406
- msgid "If you want, test upgrading to a different PHP or WP version."
407
- msgstr ""
408
-
409
- #: src/templates/wp-admin/settings/temporary-clone.php:32
410
- msgid "Flexible"
411
- msgstr ""
412
-
413
- #: src/templates/wp-admin/settings/temporary-clone.php:31
414
- msgid "Takes just the time needed to create a backup and send it."
415
- msgstr ""
416
-
417
- #: src/templates/wp-admin/settings/temporary-clone.php:31
418
- msgid "Fast"
419
- msgstr ""
420
-
421
- #: src/templates/wp-admin/settings/temporary-clone.php:30
422
- msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
423
- msgstr ""
424
-
425
- #: src/templates/wp-admin/settings/temporary-clone.php:30
426
- msgid "Secure"
427
- msgstr ""
428
-
429
- #: src/templates/wp-admin/settings/temporary-clone.php:29
430
- msgid "Runs on capacity from a leading cloud computing provider."
431
- msgstr ""
432
-
433
- #: src/templates/wp-admin/settings/temporary-clone.php:29
434
- msgid "Reliable"
435
- msgstr ""
436
-
437
- #: src/templates/wp-admin/settings/temporary-clone.php:28
438
- msgid "Press the buttons... UpdraftClone does the work."
439
- msgstr ""
440
-
441
- #: src/templates/wp-admin/settings/temporary-clone.php:28
442
- msgid "Easy"
443
- msgstr ""
444
-
445
- #: src/templates/wp-admin/settings/temporary-clone.php:22
446
- msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test things on your live site, you can UpdraftClone it, and then throw away your clone when done."
447
- msgstr ""
448
-
449
- #: src/templates/wp-admin/settings/temporary-clone.php:10,
450
- #: src/templates/wp-admin/settings/temporary-clone.php:39
451
- msgid "Create a temporary clone on our servers (UpdraftClone)"
452
- msgstr ""
453
-
454
- #: src/templates/wp-admin/settings/tab-addons.php:23
455
- msgid "WooCommerce plugins"
456
- msgstr ""
457
-
458
- #: src/templates/wp-admin/advanced/wipe-settings.php:13
459
- msgid "Reset tour"
460
- msgstr ""
461
-
462
- #: src/templates/wp-admin/advanced/wipe-settings.php:12
463
- msgid "Press this button to take a tour of the plugin."
464
- msgstr ""
465
-
466
- #: src/includes/updraftplus-tour.php:232
467
- msgid "Take Tour"
468
- msgstr ""
469
-
470
- #: src/includes/updraftplus-tour.php:182
471
- msgid "Log in here to enable all the features you have access to."
472
- msgstr ""
473
-
474
- #: src/includes/updraftplus-tour.php:181
475
- msgid "Connect to updraftplus.com"
476
- msgstr ""
477
-
478
- #: src/includes/updraftplus-tour.php:172
479
- msgid "Thank you for taking the tour. You are now all set to use UpdraftPlus!"
480
- msgstr ""
481
-
482
- #: src/includes/updraftplus-tour.php:160
483
- msgctxt "Translators: UpdraftVault is a product name and should not be translated."
484
- msgid "To get started with UpdraftVault, select one of the options below:"
485
- msgstr ""
486
-
487
- #: src/includes/updraftplus-tour.php:156,
488
- #: src/includes/updraftplus-tour.php:174, src/includes/updraftplus-tour.php:185
489
- msgid "Finish"
490
- msgstr ""
491
-
492
- #: src/includes/updraftplus-tour.php:153
493
- msgid "UpdraftPlus Premium has many more exciting features!"
494
- msgstr ""
495
-
496
- #: src/includes/updraftplus-tour.php:152
497
- msgid "UpdraftPlus Premium and addons"
498
- msgstr ""
499
-
500
- #: src/includes/updraftplus-tour.php:150, src/includes/updraftplus-tour.php:179
501
- msgid "Thank you for taking the tour."
502
- msgstr ""
503
-
504
- #: src/includes/updraftplus-tour.php:145
505
- msgid "Do you have a few more WordPress sites you want to backup? If yes you can save hours by controlling all your backups in one place from UpdraftCentral."
506
- msgstr ""
507
-
508
- #: src/includes/updraftplus-tour.php:144
509
- msgid "Control all your backups in one place"
510
- msgstr ""
511
-
512
- #: src/includes/updraftplus-tour.php:139
513
- msgid "Congratulations, your settings have successfully been saved."
514
- msgstr ""
515
-
516
- #: src/includes/updraftplus-tour.php:135
517
- msgid "Press here to save your settings."
518
- msgstr ""
519
-
520
- #: src/includes/updraftplus-tour.php:134, src/includes/updraftplus-tour.php:138
521
- msgid "Save"
522
- msgstr ""
523
-
524
- #: src/includes/updraftplus-tour.php:131
525
- msgid "Look through the other settings here, making any changes you’d like."
526
- msgstr ""
527
-
528
- #: src/includes/updraftplus-tour.php:130
529
- msgid "More settings"
530
- msgstr ""
531
-
532
- #: src/includes/updraftplus-tour.php:126,
533
- #: src/includes/updraftplus-tour.php:153,
534
- #: src/templates/wp-admin/settings/temporary-clone.php:22
535
- msgid "Find out more here."
536
- msgstr ""
537
-
538
- #: src/includes/updraftplus-tour.php:125
539
- msgid "UpdraftVault is our remote storage which works seamlessly with UpdraftPlus."
540
- msgstr ""
541
-
542
- #: src/includes/updraftplus-tour.php:122
543
- msgid "Now select a remote storage destination to protect against server-wide threats. If not, your backups remain on the same server as your site."
544
- msgstr ""
545
-
546
- #: src/includes/updraftplus-tour.php:118
547
- msgid "Choose the schedule that you want your backups to run on."
548
- msgstr ""
549
-
550
- #: src/includes/updraftplus-tour.php:117
551
- msgid "Choose your backup schedule"
552
- msgstr ""
553
-
554
- #: src/includes/updraftplus-tour.php:113
555
- msgid "Congratulations! Your first backup is running."
556
- msgstr ""
557
-
558
- #: src/includes/updraftplus-tour.php:109, src/includes/updraftplus-tour.php:114
559
- msgid "Go to settings"
560
- msgstr ""
561
-
562
- #: src/includes/updraftplus-tour.php:108, src/includes/updraftplus-tour.php:113
563
- msgctxt "Translators: %s is a bold tag."
564
- msgid "But to avoid server-wide threats backup regularly to remote cloud storage in %s settings %s"
565
- msgstr ""
566
-
567
- #: src/includes/updraftplus-tour.php:108
568
- msgid "Press here to run a manual backup."
569
- msgstr ""
570
-
571
- #: src/includes/updraftplus-tour.php:107, src/includes/updraftplus-tour.php:112
572
- msgid "Creating your first backup"
573
- msgstr ""
574
-
575
- #: src/includes/updraftplus-tour.php:104
576
- msgid "Select what you want to backup"
577
- msgstr ""
578
-
579
- #: src/includes/updraftplus-tour.php:103
580
- msgid "Manual backup options"
581
- msgstr ""
582
-
583
- #: src/includes/updraftplus-tour.php:100
584
- msgctxt "updraftplus"
585
- msgid "To make a simple backup to your server, press this button. Or to setup regular backups and remote storage, go to %s settings %s"
586
- msgstr ""
587
-
588
- #: src/includes/updraftplus-tour.php:99
589
- msgid "Your first backup"
590
- msgstr ""
591
-
592
- #: src/includes/updraftplus-tour.php:95
593
- msgid "Press here to start!"
594
- msgstr ""
595
-
596
- #: src/includes/updraftplus-tour.php:92
597
- msgid "the world’s most trusted backup plugin!"
598
- msgstr ""
599
-
600
- #: src/includes/updraftplus-tour.php:92
601
- msgid "Welcome to UpdraftPlus"
602
- msgstr ""
603
-
604
- #: src/includes/updraftplus-tour.php:91
605
- msgid "UpdraftPlus settings"
606
- msgstr ""
607
-
608
- #: src/includes/updraftplus-tour.php:88
609
- msgid "End tour"
610
- msgstr ""
611
-
612
- #: src/includes/updraftplus-tour.php:87
613
- msgid "Skip this step"
614
- msgstr ""
615
-
616
- #: src/includes/updraftplus-tour.php:86
617
- msgid "Back"
618
- msgstr ""
619
-
620
- #: src/includes/class-commands.php:893
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
-
628
- #: src/templates/wp-admin/settings/temporary-clone.php:35
629
- msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
630
- msgstr ""
631
-
632
- #: src/templates/wp-admin/settings/tab-addons.php:247
633
- msgid "Premium / Find out more"
634
- msgstr ""
635
-
636
- #: src/templates/wp-admin/settings/tab-addons.php:22
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
-
660
- #: src/addons/migrator.php:233
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 "Backup og gjenoppretting"
667
-
668
- #: src/admin.php:663
669
- msgid "Backup"
670
- msgstr "Backup"
671
-
672
- #: src/addons/wp-cli.php:408
673
- msgid "Latest full backup found; identifier:"
674
- msgstr ""
675
-
676
- #: src/addons/wp-cli.php:407
677
- msgid "No previous full backup found."
678
- msgstr ""
679
-
680
- #: src/templates/wp-admin/settings/existing-backups-table.php:89
681
- msgid "Remote storage: %s"
682
- msgstr ""
683
-
684
- #: src/addons/wp-cli.php:88
685
- msgid "No previous backup found to add an increment to."
686
- msgstr ""
687
-
688
- #: src/restorer.php:2499
689
- msgid "Requested character set (%s) is not present - changing to %s."
690
- msgstr ""
691
-
692
- #: src/includes/updraftclone/temporary-clone-user-notice.php:32
693
- msgid "Allow only administrators to log in"
694
- msgstr ""
695
-
696
- #: src/includes/updraftclone/temporary-clone-user-notice.php:31
697
- msgid "You can forbid non-admins logins to this cloned site by checking the checkbox below"
698
- msgstr ""
699
-
700
- #: src/includes/updraftclone/temporary-clone-user-notice.php:30
701
- msgid "UpdraftPlus temporary clone user login settings:"
702
- msgstr ""
703
-
704
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:39
705
- msgid "Welcome to your UpdraftClone (temporary clone)"
706
- msgstr ""
707
-
708
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:38
709
- msgid "Refresh connection"
710
- msgstr ""
711
-
712
- #: src/addons/reporting.php:495
713
- msgid "Log all messages to syslog"
714
- msgstr ""
715
-
716
- #: src/addons/sftp.php:601, src/addons/sftp.php:603
717
- msgid "The server's RSA key %s fingerprint: %s."
718
- msgstr ""
719
-
720
- #: src/addons/sftp.php:597
721
- msgid "Failed: We are unable to match the fingerprint. However, we were able to log in and move to the indicated directory and successfully create a file in that location."
722
- msgstr ""
723
-
724
- #: src/addons/sftp.php:478
725
- msgid "MD5 (128-bit) fingerprint, in hex format - should have the same length and general appearance as this (colons optional): 73:51:43:b1:b5:fc:8b:b7:0a:3a:a9:b1:0f:69:73:a8. Using a fingerprint is not essential, but you are not secure against %s if you do not use one"
726
- msgstr ""
727
-
728
- #: src/addons/sftp.php:475
729
- msgid "RSA fingerprint"
730
- msgstr ""
731
-
732
- #: src/addons/sftp.php:82
733
- msgid "Fingerprints don't match."
734
- msgstr ""
735
-
736
- #: src/templates/wp-admin/settings/migrator-no-migrator.php:17
737
- msgid "More information here."
738
- msgstr ""
739
-
740
- #: src/admin.php:671, src/admin.php:2799
741
- msgid "Migrate / Clone"
742
- msgstr "Migrere og klone"
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)."
748
- msgstr ""
749
-
750
- #: src/addons/wp-cli.php:834
751
- msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
752
- msgstr ""
753
-
754
- #: src/addons/wp-cli.php:793
755
- msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
756
- msgstr ""
757
-
758
- #: src/addons/wp-cli.php:739, src/addons/wp-cli.php:743
759
- msgid "This is not an incremental backup"
760
- msgstr ""
761
-
762
- #: src/addons/wp-cli.php:665
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
-
788
- #: src/addons/incremental.php:270
789
- msgid "Tell me more"
790
- msgstr ""
791
-
792
- #: src/addons/incremental.php:258
793
- msgid "And then add an incremental backup"
794
- msgstr ""
795
-
796
- #: src/addons/incremental.php:236, src/updraftplus.php:99
797
- msgid "Every hour"
798
- msgstr ""
799
-
800
- #: src/includes/class-commands.php:900
801
- msgid "Create clone"
802
- msgstr ""
803
-
804
- #: src/includes/class-commands.php:892, src/includes/class-commands.php:937
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
812
- msgid "Processing"
813
- msgstr ""
814
-
815
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:70
816
- msgid "Connect to UpdraftCentral Cloud"
817
- msgstr ""
818
-
819
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
820
- msgid "UpdraftPlus.Com account terms and policies"
821
- msgstr ""
822
-
823
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
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 ""
831
-
832
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:46
833
- msgid "Login or register with this email address"
834
- msgstr ""
835
-
836
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:34
837
- msgid "If not, then choose your details and a new account will be registered."
838
- msgstr ""
839
-
840
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:33
841
- msgid "If you already have an updraftplus.com account, then enter the details below."
842
- msgstr ""
843
-
844
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:31
845
- msgid "Add this website to your UpdraftCentral Cloud dashboard at updraftplus.com."
846
- msgstr ""
847
-
848
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:29
849
- msgid "Login or register for UpdraftCentral Cloud"
850
- msgstr ""
851
-
852
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:20
853
- msgid "Go here to connect it."
854
- msgstr ""
855
-
856
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:20
857
- msgid "Or if you prefer to self-host, then you can get the self-hosted version here."
858
- msgstr ""
859
-
860
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:17
861
- msgid "Connect this site to UpdraftCentral Cloud"
862
- msgstr ""
863
-
864
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:14
865
- msgid "If you have a few sites, it'll save hours. It's free to use or try up to 5 sites."
866
- msgstr ""
867
-
868
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:12
869
- msgid "Backup, update and manage all your WordPress sites from one dashboard"
870
- msgstr ""
871
-
872
- #: src/includes/updraftcentral.php:21, src/includes/updraftplus-clone.php:21
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
-
947
- #: src/addons/wp-cli.php:553
948
- msgid "Migration key created:"
949
- msgstr ""
950
-
951
- #: src/addons/wp-cli.php:543
952
- msgid "Missing parameters"
953
- msgstr ""
954
-
955
- #: src/addons/azure.php:645
956
- msgid "Azure Germany"
957
- msgstr ""
958
-
959
- #: src/addons/azure.php:644
960
- msgid "Azure Global"
961
- msgstr ""
962
-
963
- #: src/addons/azure.php:641
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
-
971
- #: src/templates/wp-admin/settings/upload-backups-modal.php:4
972
- msgid "Select the remote storage destinations you want to upload this backup set to"
973
- msgstr ""
974
-
975
- #: src/templates/wp-admin/settings/upload-backups-modal.php:3
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
-
999
- #: src/addons/reporting.php:529
1000
- msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
1001
- msgstr ""
1002
-
1003
- #: src/addons/reporting.php:529
1004
- msgid "Use this option to only send database backups when sending to email, and skip other components."
1005
- msgstr ""
1006
-
1007
- #: src/addons/migrator.php:275
1008
- msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
1009
- msgstr ""
1010
-
1011
- #: src/addons/incremental.php:72
1012
- msgid "Increments exist at: %s"
1013
- msgstr ""
1014
-
1015
- #: src/addons/incremental.php:70, src/addons/incremental.php:72
1016
- msgid "(latest increment: %s)"
1017
- msgstr ""
1018
-
1019
- #: src/addons/s3-enhanced.php:374
1020
- msgid "Europe (Paris)"
1021
- msgstr ""
1022
-
1023
- #: src/templates/wp-admin/settings/tab-addons.php:154
1024
- msgid "WP-CLI commands to take, list and delete backups."
1025
- msgstr ""
1026
-
1027
- #: src/templates/wp-admin/settings/tab-addons.php:153
1028
- msgid "WP-CLI support"
1029
- msgstr ""
1030
-
1031
- #: src/templates/wp-admin/settings/tab-addons.php:152
1032
- msgid "WP CLI"
1033
- msgstr ""
1034
-
1035
- #: src/addons/wp-cli.php:265
1036
- msgid "Invalid Job Id"
1037
- msgstr ""
1038
-
1039
- #: src/addons/wp-cli.php:205
1040
- msgid "Backup has been started successfully. You can see the last log message by running the following command: \"%s\""
1041
- msgstr ""
1042
-
1043
- #: src/addons/wp-cli.php:195
1044
- msgid "Recently started backup job id: %s"
1045
- msgstr ""
1046
-
1047
- #: src/addons/wp-cli.php:100, src/addons/wp-cli.php:509,
1048
- #: src/addons/wp-cli.php:631, src/addons/wp-cli.php:719,
1049
- #: src/addons/wp-cli.php:742
1050
- msgid "The given value for the '%s' option is not valid"
1051
- msgstr ""
1052
-
1053
- #: src/addons/migrator.php:1755
1054
- msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
1055
- msgstr ""
1056
-
1057
- #: src/addons/migrator.php:1741
1058
- msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
1059
- msgstr ""
1060
-
1061
- #: src/addons/migrator.php:1741
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
-
1069
- #: src/templates/wp-admin/advanced/lock-admin.php:14
1070
- msgid "This functionality has been disabled by the site administrator."
1071
- msgstr ""
1072
-
1073
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
1074
- msgid "Simple and secure login with a wave of your phone."
1075
- msgstr ""
1076
-
1077
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
1078
- msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
1079
- msgstr ""
1080
-
1081
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
1082
- msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
1083
- msgstr ""
1084
-
1085
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
1086
- msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
1087
- msgstr ""
1088
-
1089
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
1090
- msgid "Super-charge and secure your WordPress site with our other top plugins:"
1091
- msgstr ""
1092
-
1093
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
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
-
1101
- #: src/restorer.php:534
1102
- msgid "Failed to read from the working directory."
1103
- msgstr ""
1104
-
1105
- #: src/restorer.php:533
1106
- msgid "Failed to find a manifest file in the backup."
1107
- msgstr ""
1108
-
1109
- #: src/restorer.php:532
1110
- msgid "Failed to read the manifest file from backup."
1111
- msgstr ""
1112
-
1113
- #: src/includes/class-wpadmin-commands.php:217
1114
- msgid "Select your incremental restore point"
1115
- msgstr ""
1116
-
1117
- #: src/addons/morefiles.php:67
1118
- msgid "(None configured)"
1119
- msgstr ""
1120
-
1121
- #: src/methods/backup-module.php:541
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
-
1133
- #: src/addons/multisite.php:44, src/options.php:38
1134
- msgid "(Nothing has been logged yet)"
1135
- msgstr ""
1136
-
1137
- #: src/addons/migrator.php:439
1138
- msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
1139
- msgstr ""
1140
-
1141
- #: src/addons/migrator.php:428
1142
- msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use below search and replace so that the non-https links are automatically replaced."
1143
- msgstr ""
1144
-
1145
- #: src/addons/migrator.php:417
1146
- msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use below search and replace to search/replace the site address so that the site can be visited without https."
1147
- msgstr ""
1148
-
1149
- #: src/addons/morestorage.php:104
1150
- msgid "Add another %s account..."
1151
- msgstr ""
1152
-
1153
- #: src/addons/morestorage.php:83
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
-
1165
- #: src/templates/wp-admin/settings/tab-addons.php:30
1166
- msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
1167
- msgstr ""
1168
-
1169
- #: src/templates/wp-admin/settings/tab-addons.php:30
1170
- msgid "You are currently using the free version of UpdraftPlus."
1171
- msgstr ""
1172
-
1173
- #: src/templates/wp-admin/settings/tab-addons.php:26
1174
- msgid "Get it here"
1175
- msgstr ""
1176
-
1177
- #: src/methods/stream-base.php:323
1178
- msgid "Download chunk size successfully changed to %d"
1179
- msgstr ""
1180
-
1181
- #: src/methods/stream-base.php:320
1182
- msgid "Download chunk size failed to change to %d"
1183
- msgstr ""
1184
-
1185
- #: src/includes/updraftplus-notices.php:202
1186
- msgid "With Metaslider, you can easily add style and flare with beautifully-designed sliders."
1187
- msgstr ""
1188
-
1189
- #: src/includes/updraftplus-notices.php:193
1190
- msgid "No more forgotten passwords. Find out more about our revolutionary new WordPress plugin"
1191
- msgstr ""
1192
-
1193
- #: src/templates/wp-admin/settings/existing-backups-table.php:87
1194
- msgid "remote site"
1195
- msgstr ""
1196
-
1197
- #: src/addons/backblaze.php:475
1198
- msgid "Invalid bucket name"
1199
- msgstr ""
1200
-
1201
- #: src/restorer.php:2448
1202
- msgid "Requested table collation (%1$s) is not present - changing to %2$s."
1203
- msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
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] ""
1219
- msgstr[1] ""
1220
-
1221
- #: src/addons/migrator.php:561
1222
- msgid "Database restoration options:"
1223
- msgstr ""
1224
-
1225
- #: src/addons/migrator.php:406
1226
- msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
1227
- msgstr ""
1228
-
1229
- #: src/addons/azure.php:637
1230
- msgid "%s Prefix"
1231
- msgstr ""
1232
-
1233
- #: src/addons/azure.php:632
1234
- msgid "%s Container"
1235
- msgstr ""
1236
-
1237
- #: src/addons/azure.php:627
1238
- msgid "%s Key"
1239
- msgstr ""
1240
-
1241
- #: src/addons/azure.php:623
1242
- msgid "%s Account Name"
1243
- msgstr ""
1244
-
1245
- #: src/addons/googlecloud.php:692
1246
- msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
1247
- msgstr ""
1248
-
1249
- #: src/addons/googlecloud.php:690
1250
- msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
1251
- msgstr ""
1252
-
1253
- #: src/central/bootstrap.php:526
1254
- msgid "URL for the site of your UpdraftCentral dashboard"
1255
- msgstr ""
1256
-
1257
- #: src/central/bootstrap.php:524
1258
- msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
1259
- msgstr ""
1260
-
1261
- #: src/central/bootstrap.php:521
1262
- msgid "A website where you have installed %s"
1263
- msgstr ""
1264
-
1265
- #: src/central/bootstrap.php:519
1266
- msgid "Self-hosted dashboard"
1267
- msgstr ""
1268
-
1269
- #: src/central/bootstrap.php:256
1270
- msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
1271
- msgstr ""
1272
-
1273
- #: src/addons/migrator.php:945
1274
- msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
1275
- msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
1276
- msgstr[0] ""
1277
- msgstr[1] ""
1278
-
1279
- #: src/restorer.php:2398
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] ""
1295
- msgstr[1] ""
1296
-
1297
- #: src/central/bootstrap.php:602
1298
- msgid "Create another key"
1299
- msgstr ""
1300
-
1301
- #: src/central/bootstrap.php:533
1302
- msgid "UpdraftCentral dashboard connection details"
1303
- msgstr ""
1304
-
1305
- #: src/central/bootstrap.php:527, src/includes/updraftplus-tour.php:85
1306
- msgid "Next"
1307
- msgstr ""
1308
-
1309
- #: src/central/bootstrap.php:513
1310
- msgid "an account"
1311
- msgstr ""
1312
-
1313
- #: src/central/bootstrap.php:513
1314
- msgid "i.e. if you have %s there"
1315
- msgstr ""
1316
-
1317
- #: src/central/bootstrap.php:502
1318
- msgid "Connect this site to an UpdraftCentral dashboard found at..."
1319
- msgstr ""
1320
-
1321
- #: src/central/bootstrap.php:471
1322
- msgid "Manage existing keys (%d)..."
1323
- msgstr ""
1324
-
1325
- #: src/central/bootstrap.php:421
1326
- msgid "There are no UpdraftCentral dashboards that can currently control this site."
1327
- msgstr ""
1328
-
1329
- #: src/central/bootstrap.php:258
1330
- msgid "You can now control this site via your UpdraftCentral dashboard at %s."
1331
- msgstr ""
1332
-
1333
- #: src/central/bootstrap.php:256
1334
- msgid "Detailed instructions for this can be found at %s"
1335
- msgstr ""
1336
-
1337
- #: src/central/bootstrap.php:256
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
-
1345
- #: src/addons/backblaze.php:661
1346
- msgid "There are limits upon which path-names are valid. Spaces are not allowed."
1347
- msgstr ""
1348
-
1349
- #: src/addons/backblaze.php:660
1350
- msgid "some/path"
1351
- msgstr ""
1352
-
1353
- #: src/addons/backblaze.php:660
1354
- msgid "Bucket name"
1355
- msgstr ""
1356
-
1357
- #: src/addons/backblaze.php:659
1358
- msgid "Backup path"
1359
- msgstr ""
1360
-
1361
- #: src/addons/backblaze.php:654
1362
- msgid "Application key"
1363
- msgstr ""
1364
-
1365
- #: src/addons/backblaze.php:649, src/addons/backblaze.php:649
1366
- msgid "here"
1367
- msgstr ""
1368
-
1369
- #: src/addons/backblaze.php:649
1370
- msgid "Get these settings from %s, or sign up %s."
1371
- msgstr ""
1372
-
1373
- #: src/addons/backblaze.php:453
1374
- msgid "Account Key"
1375
- msgstr ""
1376
-
1377
- #: src/addons/backblaze.php:452, src/addons/backblaze.php:647
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
-
1405
- #: src/methods/backup-module.php:595
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 ""
1424
-
1425
- #: src/addons/googlecloud.php:54
1426
- msgid "South-east Australia"
1427
- msgstr ""
1428
-
1429
- #: src/addons/googlecloud.php:53
1430
- msgid "South-east Asia"
1431
- msgstr ""
1432
-
1433
- #: src/addons/googlecloud.php:52
1434
- msgid "North-east Asia"
1435
- msgstr ""
1436
-
1437
- #: src/udaddons/options.php:119
1438
- msgid "Your web server's version of PHP is too old (%s) - UpdraftPlus expects at least %s. You can try it, but don't be surprised if it does not work. To fix this problem, contact your web hosting company"
1439
- msgstr ""
1440
-
1441
- #: src/templates/wp-admin/settings/take-backup.php:76
1442
- msgid "Remote storage authentication"
1443
- msgstr ""
1444
-
1445
- #: src/templates/wp-admin/settings/tab-addons.php:126
1446
- msgid "Network and multisite"
1447
- msgstr ""
1448
-
1449
- #: src/templates/wp-admin/settings/tab-addons.php:74
1450
- msgid "Migrator"
1451
- msgstr ""
1452
-
1453
- #: src/templates/wp-admin/settings/tab-addons.php:178
1454
- msgid "Additional storage"
1455
- msgstr ""
1456
-
1457
- #: src/includes/updraftplus-tour.php:121,
1458
- #: src/templates/wp-admin/settings/tab-addons.php:61
1459
- msgid "Remote storage"
1460
- msgstr ""
1461
-
1462
- #: src/templates/wp-admin/settings/form-contents.php:191
1463
- msgid "Select Files"
1464
- msgstr ""
1465
-
1466
- #: src/methods/cloudfiles.php:476
1467
- msgid "Rackspace Storage Region"
1468
- msgstr ""
1469
-
1470
- #: src/includes/updraftplus-notices.php:193
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
-
1482
- #: src/addons/sftp.php:792
1483
- msgid "Encrypted login failed; trying non-encrypted"
1484
- msgstr ""
1485
-
1486
- #: src/addons/azure.php:595
1487
- msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
1488
- msgstr ""
1489
-
1490
- #: src/methods/cloudfiles.php:495
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
-
1502
- #: src/methods/updraftvault.php:71,
1503
- #: src/templates/wp-admin/settings/tab-addons.php:243
1504
- msgid "UpdraftVault"
1505
- msgstr ""
1506
-
1507
- #: src/includes/class-wpadmin-commands.php:529
1508
- msgid "archive"
1509
- msgstr ""
1510
-
1511
- #: src/includes/class-wpadmin-commands.php:520
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
-
1555
- #: src/restorer.php:2219
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
-
1599
- #: src/addons/moredatabase.php:414
1600
- msgid "tables"
1601
- msgstr ""
1602
-
1603
- #: src/addons/moredatabase.php:413
1604
- msgid "WordPress database"
1605
- msgstr ""
1606
-
1607
- #: src/addons/moredatabase.php:406
1608
- msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
1609
- msgstr ""
1610
-
1611
- #: src/templates/wp-admin/settings/tab-addons.php:246
1612
- msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
1613
- msgstr ""
1614
-
1615
- #: src/templates/wp-admin/advanced/wipe-settings.php:11
1616
- msgid "UpdraftPlus Tour"
1617
- msgstr ""
1618
-
1619
- #: src/templates/wp-admin/settings/tab-addons.php:232
1620
- msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
1621
- msgstr ""
1622
-
1623
- #: src/templates/wp-admin/settings/tab-addons.php:219
1624
- msgid "Some backup plugins can't restore a backup, so Premium allows you to restore backups from other plugins."
1625
- msgstr ""
1626
-
1627
- #: src/templates/wp-admin/settings/tab-addons.php:217,
1628
- #: src/templates/wp-admin/settings/tab-addons.php:218
1629
- msgid "Importer"
1630
- msgstr ""
1631
-
1632
- #: src/templates/wp-admin/settings/tab-addons.php:206
1633
- msgid "Tidy things up for clients and remove all adverts for our other products."
1634
- msgstr ""
1635
-
1636
- #: src/templates/wp-admin/settings/tab-addons.php:204,
1637
- #: src/templates/wp-admin/settings/tab-addons.php:205
1638
- msgid "No ads"
1639
- msgstr ""
1640
-
1641
- #: src/templates/wp-admin/settings/tab-addons.php:193
1642
- msgid "Sophisticated reporting and emailing capabilities."
1643
- msgstr ""
1644
-
1645
- #: src/templates/wp-admin/settings/tab-addons.php:167
1646
- msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
1647
- msgstr ""
1648
-
1649
- #: src/templates/wp-admin/settings/tab-addons.php:165,
1650
- #: src/templates/wp-admin/settings/tab-addons.php:166
1651
- msgid "More database options"
1652
- msgstr ""
1653
-
1654
- #: src/templates/wp-admin/settings/tab-addons.php:141
1655
- msgid "Set exact times to create or delete backups."
1656
- msgstr ""
1657
-
1658
- #: src/templates/wp-admin/settings/tab-addons.php:139,
1659
- #: src/templates/wp-admin/settings/tab-addons.php:140
1660
- msgid "Backup time and scheduling"
1661
- msgstr ""
1662
-
1663
- #: src/templates/wp-admin/settings/tab-addons.php:128
1664
- msgid "Backup WordPress multisites (i.e, networks), securely."
1665
- msgstr ""
1666
-
1667
- #: src/templates/wp-admin/settings/tab-addons.php:127
1668
- msgid "Network / multisite"
1669
- msgstr ""
1670
-
1671
- #: src/templates/wp-admin/settings/tab-addons.php:115
1672
- msgid "Backup WordPress core and non-WP files and databases."
1673
- msgstr ""
1674
-
1675
- #: src/templates/wp-admin/settings/tab-addons.php:102
1676
- msgid "Automatically backs up your website before any updates to plugins, themes and WordPress core."
1677
- msgstr ""
1678
-
1679
- #: src/templates/wp-admin/settings/tab-addons.php:100,
1680
- #: src/templates/wp-admin/settings/tab-addons.php:101
1681
- msgid "Pre-update backups"
1682
- msgstr ""
1683
-
1684
- #: src/templates/wp-admin/settings/tab-addons.php:89
1685
- msgid "Provides expert help and support from the developers whenever you need it."
1686
- msgstr ""
1687
-
1688
- #: src/templates/wp-admin/settings/tab-addons.php:88
1689
- msgid "Fast, personal support"
1690
- msgstr ""
1691
-
1692
- #: src/templates/wp-admin/settings/tab-addons.php:76
1693
- msgid "UpdraftPlus Migrator clones your WordPress site and moves it to a new domain directly and simply."
1694
- msgstr ""
1695
-
1696
- #: src/templates/wp-admin/settings/tab-addons.php:75
1697
- msgid "Cloning and migration"
1698
- msgstr ""
1699
-
1700
- #: src/templates/wp-admin/settings/tab-addons.php:180
1701
- msgid "Get enhanced versions of the free remote storage options (Dropbox, Google Drive & S3) and even more remote storage options like OneDrive, SFTP, Azure, WebDAV and more with UpdraftPlus Premium."
1702
- msgstr ""
1703
-
1704
- #: src/templates/wp-admin/settings/tab-addons.php:179
1705
- msgid "Additional and enhanced remote storage locations"
1706
- msgstr ""
1707
-
1708
- #: src/templates/wp-admin/settings/tab-addons.php:63
1709
- msgid "To avoid server-wide risks, always backup to remote cloud storage. UpdraftPlus free includes Dropbox, Google Drive, Amazon S3, Rackspace and more."
1710
- msgstr ""
1711
-
1712
- #: src/templates/wp-admin/settings/tab-addons.php:62
1713
- msgid "Backup to remote storage locations"
1714
- msgstr ""
1715
-
1716
- #: src/templates/wp-admin/settings/tab-addons.php:56,
1717
- #: src/templates/wp-admin/settings/tab-addons.php:264
1718
- msgid "Upgrade now"
1719
- msgstr ""
1720
-
1721
- #: src/templates/wp-admin/settings/tab-addons.php:53,
1722
- #: src/templates/wp-admin/settings/tab-addons.php:261
1723
- msgid "Installed"
1724
- msgstr ""
1725
-
1726
- #: src/templates/wp-admin/settings/tab-addons.php:43,
1727
- #: src/templates/wp-admin/settings/tab-addons.php:65,
1728
- #: src/templates/wp-admin/settings/tab-addons.php:78,
1729
- #: src/templates/wp-admin/settings/tab-addons.php:91,
1730
- #: src/templates/wp-admin/settings/tab-addons.php:104,
1731
- #: src/templates/wp-admin/settings/tab-addons.php:117,
1732
- #: src/templates/wp-admin/settings/tab-addons.php:130,
1733
- #: src/templates/wp-admin/settings/tab-addons.php:143,
1734
- #: src/templates/wp-admin/settings/tab-addons.php:156,
1735
- #: src/templates/wp-admin/settings/tab-addons.php:169,
1736
- #: src/templates/wp-admin/settings/tab-addons.php:182,
1737
- #: src/templates/wp-admin/settings/tab-addons.php:195,
1738
- #: src/templates/wp-admin/settings/tab-addons.php:208,
1739
- #: src/templates/wp-admin/settings/tab-addons.php:221,
1740
- #: src/templates/wp-admin/settings/tab-addons.php:234,
1741
- #: src/templates/wp-admin/settings/tab-addons.php:251
1742
- msgid "Free"
1743
- msgstr ""
1744
-
1745
- #: src/admin.php:486
1746
- msgid "UpdraftPlus"
1747
- msgstr ""
1748
-
1749
- #: src/templates/wp-admin/settings/form-contents.php:215
1750
- msgid "Recommended: optimize your database with WP-Optimize."
1751
- msgstr ""
1752
-
1753
- #: src/templates/wp-admin/notices/bottom-notice.php:31,
1754
- #: src/templates/wp-admin/notices/horizontal-notice.php:42,
1755
- #: src/templates/wp-admin/notices/report-plain.php:33,
1756
- #: src/templates/wp-admin/notices/report.php:30
1757
- msgid "Read more"
1758
- msgstr ""
1759
-
1760
- #: src/includes/updraftplus-notices.php:182
1761
- msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
1762
- msgstr ""
1763
-
1764
- #: src/addons/morefiles.php:319
1765
- msgid "Please choose a file or directory"
1766
- msgstr ""
1767
-
1768
- #: src/addons/morefiles.php:312
1769
- msgid "Confirm"
1770
- msgstr ""
1771
-
1772
- #: src/addons/morefiles.php:307, src/addons/morefiles.php:307
1773
- msgid "Go up a directory"
1774
- msgstr ""
1775
-
1776
- #: src/addons/morefiles.php:304
1777
- msgid "Add directory..."
1778
- msgstr ""
1779
-
1780
- #: src/addons/morefiles.php:297, src/addons/morefiles.php:317,
1781
- #: src/templates/wp-admin/settings/file-backup-exclude.php:11
1782
- msgid "Edit"
1783
- msgstr ""
1784
-
1785
- #: src/addons/morefiles.php:280
1786
- msgid "If using it, select a path from the directory tree below and then press confirm selection."
1787
- msgstr ""
1788
-
1789
- #: src/addons/s3-enhanced.php:375
1790
- msgid "Europe (Frankfurt)"
1791
- msgstr ""
1792
-
1793
- #: src/addons/s3-enhanced.php:373
1794
- msgid "Europe (London)"
1795
- msgstr ""
1796
-
1797
- #: src/addons/s3-enhanced.php:372
1798
- msgid "Europe (Ireland)"
1799
- msgstr ""
1800
-
1801
- #: src/includes/updraftplus-tour.php:142,
1802
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
1803
- msgid "UpdraftCentral"
1804
- msgstr ""
1805
-
1806
- #: src/templates/wp-admin/notices/horizontal-notice.php:6
1807
- msgid "notice image"
1808
- msgstr ""
1809
-
1810
- #: src/templates/wp-admin/notices/bottom-notice.php:29,
1811
- #: src/templates/wp-admin/notices/horizontal-notice.php:40,
1812
- #: src/templates/wp-admin/notices/report-plain.php:31,
1813
- #: src/templates/wp-admin/notices/report.php:28
1814
- msgid "Go there"
1815
- msgstr ""
1816
-
1817
- #: src/templates/wp-admin/notices/bottom-notice.php:27,
1818
- #: src/templates/wp-admin/notices/horizontal-notice.php:38,
1819
- #: src/templates/wp-admin/notices/report-plain.php:29,
1820
- #: src/templates/wp-admin/notices/report.php:26
1821
- msgid "Sign up"
1822
- msgstr ""
1823
-
1824
- #: src/templates/wp-admin/notices/bottom-notice.php:25,
1825
- #: src/templates/wp-admin/notices/horizontal-notice.php:36,
1826
- #: src/templates/wp-admin/notices/report-plain.php:27,
1827
- #: src/templates/wp-admin/notices/report.php:24
1828
- msgid "Get Premium"
1829
- msgstr ""
1830
-
1831
- #: src/templates/wp-admin/notices/bottom-notice.php:23,
1832
- #: src/templates/wp-admin/notices/horizontal-notice.php:34,
1833
- #: src/templates/wp-admin/notices/report-plain.php:25,
1834
- #: src/templates/wp-admin/notices/report.php:22
1835
- msgid "Review UpdraftPlus"
1836
- msgstr ""
1837
-
1838
- #: src/templates/wp-admin/notices/bottom-notice.php:21,
1839
- #: src/templates/wp-admin/notices/horizontal-notice.php:32,
1840
- #: src/templates/wp-admin/notices/report-plain.php:23,
1841
- #: src/templates/wp-admin/notices/report.php:20
1842
- msgid "Get UpdraftCentral"
1843
- msgstr ""
1844
-
1845
- #: src/templates/wp-admin/advanced/site-info.php:91
1846
- msgid "Apache modules"
1847
- msgstr ""
1848
-
1849
- #: src/includes/updraftplus-notices.php:264
1850
- msgid "Summer sale - 20% off UpdraftPlus Premium until July 31st"
1851
- msgstr ""
1852
-
1853
- #: src/includes/updraftplus-notices.php:251
1854
- msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
1855
- msgstr ""
1856
-
1857
- #: src/includes/updraftplus-notices.php:238
1858
- msgid "Happy New Year - 20% off UpdraftPlus Premium until January 14th"
1859
- msgstr ""
1860
-
1861
- #: src/includes/updraftplus-notices.php:225
1862
- msgid "Christmas sale - 20% off UpdraftPlus Premium until December 25th"
1863
- msgstr ""
1864
-
1865
- #: src/includes/updraftplus-notices.php:213,
1866
- #: src/includes/updraftplus-notices.php:226,
1867
- #: src/includes/updraftplus-notices.php:239,
1868
- #: src/includes/updraftplus-notices.php:252,
1869
- #: src/includes/updraftplus-notices.php:265
1870
- msgid "To benefit, use this discount code:"
1871
- msgstr ""
1872
-
1873
- #: src/includes/updraftplus-notices.php:212
1874
- msgid "Black Friday - 20% off UpdraftPlus Premium until November 30th"
1875
- msgstr ""
1876
-
1877
- #: src/includes/updraftplus-notices.php:172
1878
- msgid "UpdraftPlus Premium can automatically backup your plugins/themes/database before you update, without you needing to remember."
1879
- msgstr ""
1880
-
1881
- #: src/includes/updraftplus-notices.php:151,
1882
- #: src/includes/updraftplus-notices.php:161
1883
- msgid "UpdraftPlus Blog - get up-to-date news and offers"
1884
- msgstr ""
1885
-
1886
- #: src/includes/updraftplus-notices.php:141
1887
- msgid "UpdraftPlus Newsletter"
1888
- msgstr ""
1889
-
1890
- #: src/includes/updraftplus-notices.php:112
1891
- msgid "Control all your WordPress installations from one place using UpdraftCentral remote site management!"
1892
- msgstr ""
1893
-
1894
- #: src/includes/updraftplus-notices.php:111
1895
- msgid "Do you use UpdraftPlus on multiple sites?"
1896
- msgstr ""
1897
-
1898
- #: src/includes/updraftplus-notices.php:92
1899
- msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
1900
- msgstr ""
1901
-
1902
- #: src/includes/updraftplus-notices.php:91
1903
- msgid "Introducing UpdraftCentral"
1904
- msgstr ""
1905
-
1906
- #: src/includes/updraftplus-notices.php:82
1907
- msgid "Copy your site to another domain directly. Includes find-and-replace tool for database references."
1908
- msgstr ""
1909
-
1910
- #: src/includes/updraftplus-notices.php:81
1911
- msgid "easily migrate or clone your site in minutes"
1912
- msgstr ""
1913
-
1914
- #: src/includes/updraftplus-notices.php:72
1915
- msgid "Add SFTP to send your data securely, lock settings and encrypt your database backups for extra security."
1916
- msgstr ""
1917
-
1918
- #: src/includes/updraftplus-notices.php:71
1919
- msgid "secure your backups"
1920
- msgstr ""
1921
-
1922
- #: src/includes/updraftplus-notices.php:62
1923
- msgid "Secure multisite installation, advanced reporting and much more."
1924
- msgstr ""
1925
-
1926
- #: src/includes/updraftplus-notices.php:61
1927
- msgid "advanced options"
1928
- msgstr ""
1929
-
1930
- #: src/includes/updraftplus-notices.php:52
1931
- msgid "Enhanced storage options for Dropbox, Google Drive and S3. Plus many more options."
1932
- msgstr ""
1933
-
1934
- #: src/includes/updraftplus-notices.php:51
1935
- msgid "enhanced remote storage options"
1936
- msgstr ""
1937
-
1938
- #: src/includes/updraftplus-notices.php:42
1939
- msgid "The ultimately secure and convenient place to store your backups."
1940
- msgstr ""
1941
-
1942
- #: src/includes/updraftplus-notices.php:41,
1943
- #: src/templates/wp-admin/settings/tab-addons.php:244
1944
- msgid "UpdraftVault storage"
1945
- msgstr ""
1946
-
1947
- #: src/includes/updraftplus-notices.php:32
1948
- msgid "Enjoy professional, fast, and friendly help whenever you need it with Premium."
1949
- msgstr ""
1950
-
1951
- #: src/includes/updraftplus-notices.php:30,
1952
- #: src/includes/updraftplus-notices.php:40,
1953
- #: src/includes/updraftplus-notices.php:50,
1954
- #: src/includes/updraftplus-notices.php:60,
1955
- #: src/includes/updraftplus-notices.php:70,
1956
- #: src/includes/updraftplus-notices.php:80
1957
- msgid "UpdraftPlus Premium:"
1958
- msgstr ""
1959
-
1960
- #: src/templates/wp-admin/settings/migrator-no-migrator.php:13
1961
- msgid "Then, try out our \"Migrator\" add-on which can perform a direct site-to-site migration. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
1962
- msgstr ""
1963
-
1964
- #: src/addons/s3-enhanced.php:371
1965
- msgid "Canada Central"
1966
- msgstr ""
1967
-
1968
- #: src/templates/wp-admin/advanced/tools-menu.php:22
1969
- msgid "Site size"
1970
- msgstr ""
1971
-
1972
- #: src/templates/wp-admin/advanced/tools-menu.php:10,
1973
- #: src/templates/wp-admin/settings/tab-addons.php:230,
1974
- #: src/templates/wp-admin/settings/tab-addons.php:231
1975
- msgid "Lock settings"
1976
- msgstr ""
1977
-
1978
- #: src/templates/wp-admin/advanced/site-info.php:5,
1979
- #: src/templates/wp-admin/advanced/tools-menu.php:6
1980
- msgid "Site information"
1981
- msgstr ""
1982
-
1983
- #: src/templates/wp-admin/advanced/search-replace.php:9
1984
- msgid "For the ability to migrate websites, upgrade to UpdraftPlus Premium."
1985
- msgstr ""
1986
-
1987
- #: src/templates/wp-admin/advanced/export-settings.php:15
1988
- msgid "Import settings"
1989
- msgstr ""
1990
-
1991
- #: src/templates/wp-admin/advanced/export-settings.php:12
1992
- msgid "You can also import previously-exported settings. This tool will replace all your saved settings."
1993
- msgstr ""
1994
-
1995
- #: src/templates/wp-admin/advanced/export-settings.php:9
1996
- msgid "Export settings"
1997
- msgstr ""
1998
-
1999
- #: src/templates/wp-admin/advanced/export-settings.php:7
2000
- msgid "including any passwords"
2001
- msgstr ""
2002
-
2003
- #: src/templates/wp-admin/advanced/export-settings.php:7
2004
- msgid "Here, you can export your UpdraftPlus settings (%s), either for using on another site, or to keep as a backup. This tool will export what is currently in the settings tab."
2005
- msgstr ""
2006
-
2007
- #: src/templates/wp-admin/advanced/export-settings.php:5,
2008
- #: src/templates/wp-admin/advanced/tools-menu.php:26
2009
- msgid "Export / import settings"
2010
- msgstr ""
2011
-
2012
- #: src/restorer.php:2450
2013
- msgid "Processing table (%s)"
2014
- msgstr ""
2015
-
2016
- #: src/restorer.php:2185
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
-
2024
- #: src/methods/dropbox.php:790
2025
- msgid "%s de-authentication"
2026
- msgstr ""
2027
-
2028
- #: src/methods/dropbox.php:636
2029
- msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
2030
- msgstr ""
2031
-
2032
- #: src/central/bootstrap.php:597
2033
- msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
2034
- msgstr ""
2035
-
2036
- #: src/backup.php:1740
2037
- msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
2038
- msgstr ""
2039
-
2040
- #: src/templates/wp-admin/settings/take-backup.php:77
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
-
2052
- #: src/methods/backup-module.php:549
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
-
2092
- #: src/addons/s3-enhanced.php:367
2093
- msgid "US East (Ohio)"
2094
- msgstr ""
2095
-
2096
- #: src/addons/onedrive.php:1125
2097
- msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
2098
- msgstr ""
2099
-
2100
- #: src/addons/onedrive.php:733
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
-
2117
- #: src/includes/class-commands.php:401
2118
- msgid "%s add-on not found"
2119
- msgstr ""
2120
-
2121
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:54
2122
- msgid "or to restore manually"
2123
- msgstr ""
2124
-
2125
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:54
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
-
2141
- #: src/addons/webdav.php:216
2142
- msgid "Path"
2143
- msgstr ""
2144
-
2145
- #: src/addons/webdav.php:211
2146
- msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
2147
- msgstr ""
2148
-
2149
- #: src/addons/webdav.php:203
2150
- msgid "Enter any path in the field below."
2151
- msgstr ""
2152
-
2153
- #: src/addons/webdav.php:203
2154
- msgid "A host name cannot contain a slash."
2155
- msgstr ""
2156
-
2157
- #: src/addons/webdav.php:178
2158
- msgid "Protocol (SSL or not)"
2159
- msgstr ""
2160
-
2161
- #: src/addons/webdav.php:173
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
-
2169
- #: src/methods/s3.php:1144
2170
- msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
2171
- msgstr ""
2172
-
2173
- #: src/methods/s3.php:128
2174
- msgid "No settings were found - please go to the Settings tab and check your settings"
2175
- msgstr ""
2176
-
2177
- #: src/templates/wp-admin/settings/form-contents.php:114
2178
- msgid "Backup using %s?"
2179
- msgstr ""
2180
-
2181
- #: src/addons/s3-enhanced.php:379
2182
- msgid "Asia Pacific (Mumbai)"
2183
- msgstr ""
2184
-
2185
- #: src/addons/s3-enhanced.php:67
2186
- msgid "Standard (infrequent access)"
2187
- msgstr ""
2188
-
2189
- #: src/templates/wp-admin/settings/header.php:26
2190
- msgid "FAQs"
2191
- msgstr ""
2192
-
2193
- #: src/central/bootstrap.php:554
2194
- msgid "More information..."
2195
- msgstr "Mer informasjon..."
2196
-
2197
- #: src/central/bootstrap.php:553
2198
- msgid "Use the alternative method for making a connection with the dashboard."
2199
- msgstr "Bruk denne alternative metoden for å koble til kontrollpanelet."
2200
-
2201
- #: src/central/bootstrap.php:458
2202
- msgid "Key size: %d bits"
2203
- msgstr "Nøkkelstørrelse: %d bits"
2204
-
2205
- #: src/central/bootstrap.php:453
2206
- msgid "Public key was sent to:"
2207
- msgstr "Offentlig nøkkel ble sendt til:"
2208
-
2209
- #: src/backup.php:2353
2210
- msgid "Failed to open directory (check the file permissions and ownership): %s"
2211
- msgstr "Kunne ikke åpne mappen \"%s\". Vennligst undersøk mappens tillatelser og eierskap."
2212
-
2213
- #: src/backup.php:2331
2214
- msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
2215
- msgstr "%s: Filen kan ikke leses. Den kunne dermed ikke sikkerhetskopieres. Vennligst sjekk filens tillatelser og eierskap."
2216
-
2217
- #: src/addons/migrator.php:1768
2218
- msgid "Create key"
2219
- msgstr "Opprett nøkkel"
2220
-
2221
- #: src/addons/migrator.php:1765, src/central/bootstrap.php:547
2222
- msgid "slower, strongest"
2223
- msgstr "tregere, sterkest"
2224
-
2225
- #: src/addons/migrator.php:1764, src/central/bootstrap.php:546
2226
- msgid "recommended"
2227
- msgstr "anbefalt"
2228
-
2229
- #: src/addons/migrator.php:1764, src/central/bootstrap.php:546
2230
- msgid "%s bytes"
2231
- msgstr "%s byte"
2232
-
2233
- #: src/addons/migrator.php:1763, src/central/bootstrap.php:545
2234
- msgid "faster (possibility for slow PHP installs)"
2235
- msgstr "raskere (mulighet for trege PHP-installasjoner)"
2236
-
2237
- #: src/addons/migrator.php:1762, src/central/bootstrap.php:544
2238
- msgid "easy to break, fastest"
2239
- msgstr "lett å ødelegge, raskest"
2240
-
2241
- #: src/addons/migrator.php:1762, src/addons/migrator.php:1763,
2242
- #: src/addons/migrator.php:1765, src/central/bootstrap.php:544,
2243
- #: src/central/bootstrap.php:545, src/central/bootstrap.php:547
2244
- msgid "%s bits"
2245
- msgstr "%s bits"
2246
-
2247
- #: src/addons/migrator.php:1760, src/central/bootstrap.php:542
2248
- msgid "Encryption key size:"
2249
- msgstr "Størrelse på krypteringsnøkkel:"
2250
-
2251
- #: src/addons/migrator.php:1758
2252
- msgid "Enter your chosen name"
2253
- msgstr "Fyll inn ditt valgte navn"
2254
-
2255
- #: src/addons/migrator.php:1757
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 "Opplastingen forventes å feile: %s-begrensningen for enhver enkeltstående fil er %s, mens denne filen er %s GB (%d byte)"
2262
-
2263
- #: src/methods/ftp.php:440
2264
- msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
2265
- msgstr "Dette forårsakes noen ganger av en brannmur. Du kan forsøke å skru av SSL i avanserte innstillinger og prøve igjen."
2266
-
2267
- #: src/methods/ftp.php:412
2268
- msgid "login"
2269
- msgstr "Logg inn"
2270
-
2271
- #: src/addons/reporting.php:527, src/addons/reporting.php:527,
2272
- #: src/addons/reporting.php:529, src/methods/email.php:100
2273
- msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
2274
- msgstr "Vær oppmerksom på at e-postservere som regel har størrelsesbegrensninger – typisk rundt %s MB. Sikkerhetskopier som er større enn eventuelle størrelsesbegrensninger, vil sannsynligvis ikke komme frem."
2275
-
2276
- #: src/methods/email.php:30
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 "Denne sikkerhetskopien er %s MB stor. Få e-postservere støtter så store vedlegg, så sikkerhetskopien kan sannsynligvis ikke gjennomføres. Hvis dette ikke fungerer, kan du forsøke å sende sikkerhetskopien til en annen form for fjernlagring."
2279
-
2280
- #: src/class-updraftplus.php:1739
2281
- msgid "Size: %s MB"
2282
- msgstr "Størrelse: %s MB"
2283
-
2284
- #: src/templates/wp-admin/settings/form-contents.php:309
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 "UpdraftPlus deler opp sikkerhetskopier som er større enn denne filstørrelsen. Standardverdien er %s megabyte. Sørg for at du har litt sikkerhetsmargin hvis webhotellet ditt har en hard størrelsesgrense – for eksempel 2 GB-grensen på noen 32-bit-servere og -filsystemer."
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 "Du burde aktivere %s slik at pene permalenker (for eksempel %s) kan fungere."
2291
-
2292
- #: src/templates/wp-admin/settings/form-contents.php:103
2293
- msgid "(tap on an icon to select or unselect)"
2294
- msgstr "(trykk på et ikon for å velge eller velge bort)"
2295
-
2296
- #: src/methods/updraftvault.php:333, src/methods/updraftvault.php:339,
2297
- #: src/methods/updraftvault.php:345
2298
- msgid "%s per year"
2299
- msgstr "%s per år"
2300
-
2301
- #: src/methods/updraftvault.php:332, src/methods/updraftvault.php:338,
2302
- #: src/methods/updraftvault.php:344
2303
- msgid "or (annual discount)"
2304
- msgstr "eller (årlig rabatt)"
2305
-
2306
- #: src/methods/updraftvault.php:261
2307
- msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2308
- msgstr "Ingen Vault-tilkoblingen ble funnet for denne siden. Har den blitt flyttet? Vennligst koble fra og koble til på nytt."
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 "Den gitte filen ble ikke funnet eller kunne ikke leses."
2313
-
2314
- #: src/central/bootstrap.php:595
2315
- msgid "UpdraftCentral (Remote Control)"
2316
- msgstr "UpdraftCentral (fjernkontroll)"
2317
-
2318
- #: src/central/bootstrap.php:584
2319
- msgid "View recent UpdraftCentral log events"
2320
- msgstr "Vis nylige logghendelser fra UpdraftCentral"
2321
-
2322
- #: src/central/bootstrap.php:536
2323
- msgid "Enter any description"
2324
- msgstr "Fyll inn en hvilken som helst beskrivelse"
2325
-
2326
- #: src/central/bootstrap.php:535
2327
- msgid "Description"
2328
- msgstr "Beskrivelse"
2329
-
2330
- #: src/central/bootstrap.php:463
2331
- msgid "Delete..."
2332
- msgstr "Slett..."
2333
-
2334
- #: src/central/bootstrap.php:456
2335
- msgid "Created:"
2336
- msgstr "Opprettet:"
2337
-
2338
- #: src/central/bootstrap.php:453
2339
- msgid "Access this site as user:"
2340
- msgstr "Få tilgang til denne siden som bruker:"
2341
-
2342
- #: src/central/bootstrap.php:477
2343
- msgid "Details"
2344
- msgstr "Detaljer"
2345
-
2346
- #: src/central/bootstrap.php:476
2347
- msgid "Key description"
2348
- msgstr "Nøkkelbeskrivelse"
2349
-
2350
- #: src/central/bootstrap.php:349, src/central/bootstrap.php:360
2351
- msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
2352
- msgstr "En nøkkel ble opprettet, men forsøket på å registrere den med %s feilet. Vennligst forsøk igjen senere."
2353
-
2354
- #: src/central/bootstrap.php:219
2355
- msgid "An invalid URL was entered"
2356
- msgstr "En ugyldig nettadresse ble fylt inn"
2357
-
2358
- #: src/central/bootstrap.php:83
2359
- msgid "Close..."
2360
- msgstr "Lukk..."
2361
-
2362
- #: src/central/bootstrap.php:75
2363
- msgid "This connection appears to already have been made."
2364
- msgstr "Det ser ut som du allerede er koblet til."
2365
-
2366
- #: src/central/bootstrap.php:72
2367
- msgid "You must visit this link in the same browser and login session as you created the key in."
2368
- msgstr "Du må besøke denne lenken i den samme nettleseren og sesjonen som du opprettet nøkkelen i."
2369
-
2370
- #: src/central/bootstrap.php:68
2371
- msgid "You must visit this URL in the same browser and login session as you created the key in."
2372
- msgstr "Du må besøke denne nettadressen i den samme nettleseren og sesjonen som du opprettet nøkkelen i."
2373
-
2374
- #: src/central/bootstrap.php:68
2375
- msgid "You are not logged into this WordPress site in your web browser."
2376
- msgstr "Du er ikke logget inn på denne WordPress-siden i nettleseren din."
2377
-
2378
- #: src/central/bootstrap.php:65
2379
- msgid "The key referred to was unknown."
2380
- msgstr "Den oppgitte nøkkelen er ukjent."
2381
-
2382
- #: src/central/bootstrap.php:62
2383
- msgid "A new UpdraftCentral connection has not been made."
2384
- msgstr "Kunne ikke koble til UpdraftCentral."
2385
-
2386
- #: src/central/bootstrap.php:60
2387
- msgid "An UpdraftCentral connection has been made successfully."
2388
- msgstr "Tilkoblingen til UpdraftCentral ble opprettet."
2389
-
2390
- #: src/central/bootstrap.php:57
2391
- msgid "UpdraftCentral Connection"
2392
- msgstr "Tilkobling til UpdraftCentral"
2393
-
2394
- #: src/backup.php:1042, src/class-updraftplus.php:2973
2395
- msgid "The backup was aborted by the user"
2396
- msgstr "Sikkerhetskopien ble avbrutt av brukeren"
2397
-
2398
- #: src/admin.php:4929
2399
- msgid "Your settings have been saved."
2400
- msgstr "Dine innstillinger er lagret."
2401
-
2402
- #: src/admin.php:4009
2403
- msgid "Total backup size:"
2404
- msgstr "Total størrelse på sikkerhetskopien:"
2405
-
2406
- #: src/admin.php:3416
2407
- msgid "stop"
2408
- msgstr "stoppe"
2409
-
2410
- #: src/admin.php:905, src/admin.php:3209
2411
- msgid "The backup has finished running"
2412
- msgstr "Denne sikkerhetskopieringen er fullført"
2413
-
2414
- #: src/templates/wp-admin/advanced/tools-menu.php:30,
2415
- #: src/templates/wp-admin/advanced/wipe-settings.php:5,
2416
- #: src/templates/wp-admin/advanced/wipe-settings.php:9
2417
- msgid "Wipe settings"
2418
- msgstr "Wipe-innstillinger"
2419
-
2420
- #: src/templates/wp-admin/advanced/site-info.php:102
2421
- msgid "reset"
2422
- msgstr "nullstill"
2423
-
2424
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:14
2425
- msgid "these backup sets"
2426
- msgstr "disse kopisettene"
2427
-
2428
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:11
2429
- msgid "this backup set"
2430
- msgstr "dette kopisettet"
2431
-
2432
- #: src/includes/class-filesystem-functions.php:72
2433
- msgid "calculate"
2434
- msgstr "beregne"
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 "Du burde lagre endringene dine for å forsikre deg om at de benyttes ved neste sikkerhetskopi."
2439
-
2440
- #: src/admin.php:872
2441
- msgid "We requested to delete the file, but could not understand the server's response"
2442
- msgstr "Vi forespurte sletting av filen, men forstod ikke svaret fra tjeneren"
2443
-
2444
- #: src/admin.php:871
2445
- msgid "Please enter a valid URL"
2446
- msgstr "Vennligst fyll inn en gyldig nettadresse"
2447
-
2448
- #: src/admin.php:854
2449
- msgid "Saving..."
2450
- msgstr "Lagrer …"
2451
-
2452
- #: src/admin.php:815
2453
- msgid "Error: the server sent us a response which we did not understand."
2454
- msgstr "Feil: Serveren sendte en respons som UpdraftPlus ikke forstod."
2455
-
2456
- #: src/admin.php:807
2457
- msgid "Fetching..."
2458
- msgstr "Henter..."
2459
-
2460
- #: src/addons/s3-enhanced.php:376
2461
- msgid "Asia Pacific (Seoul)"
2462
- msgstr "Asia, Stillehavet (Seoul)"
2463
-
2464
- #: src/restorer.php:2208
2465
- msgid "Uploads URL:"
2466
- msgstr "Opplastingsadresse:"
2467
-
2468
- #: src/addons/onedrive.php:63
2469
- msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2470
- msgstr "Den nødvendige %s PHP-modulen er ikke installert; Spør leverandøren av webhotellet ditt om å aktivere den."
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 "Hvis du vil importere en vanlig WordPress installasjon til en flersteds installasjon krever %s."
2475
-
2476
- #: src/class-updraftplus.php:4001
2477
- msgid "Please read this link for important information on this process."
2478
- msgstr "Vennligst les denne linken for å få viktig informasjon om denne prosessen."
2479
-
2480
- #: src/class-updraftplus.php:4001
2481
- msgid "It will be imported as a new site."
2482
- msgstr "Det vil bli importert som et nytt område."
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 "Avbryt"
2488
-
2489
- #: src/admin.php:891
2490
- msgid "Please fill in the required information."
2491
- msgstr "Fyll ut den nødvendige informasjonen."
2492
-
2493
- #: src/addons/multisite.php:619
2494
- msgid "Read more..."
2495
- msgstr "Les mer..."
2496
-
2497
- #: src/addons/multisite.php:610
2498
- msgid "may include some site-wide data"
2499
- msgstr "kan inkludere noen data fra hele nettstedet"
2500
-
2501
- #: src/addons/multisite.php:605
2502
- msgid "All sites"
2503
- msgstr "Alle nettsteder"
2504
-
2505
- #: src/addons/multisite.php:601
2506
- msgid "Which site to restore"
2507
- msgstr "Hvilket nettsted skal gjenopprettes"
2508
-
2509
- #: src/addons/migrator.php:631, src/addons/migrator.php:632
2510
- msgid "Error when creating new site at your chosen address:"
2511
- msgstr "Feil ved oppretting av nye nettstedet på din valgte adresse:"
2512
-
2513
- #: src/addons/migrator.php:573
2514
- msgid "Required information for restoring this backup was not given (%s)"
2515
- msgstr "Nødvendig informasjon for å gjenopprette denne sikkerhetskopien ble ikke gitt (%s)"
2516
-
2517
- #: src/addons/migrator.php:525
2518
- msgid "Attribute imported content to user"
2519
- msgstr "Tilskriver importert innhold til brukeren"
2520
-
2521
- #: src/addons/migrator.php:515, src/addons/migrator.php:517
2522
- msgid "You must use lower-case letters or numbers for the site path, only."
2523
- msgstr "Du kan kun bruke små bokstaver eller tall for dette nettstedets bane."
2524
-
2525
- #: src/addons/migrator.php:503
2526
- msgid "This feature is not compatible with %s"
2527
- msgstr "Denne funksjonen er ikke kompatibel med %s"
2528
-
2529
- #: src/addons/migrator.php:501, src/addons/migrator.php:503
2530
- msgid "Importing a single site into a multisite install"
2531
- msgstr "Importere et enkelt nettsted i en flersteds installasjon"
2532
-
2533
- #: src/addons/migrator.php:493
2534
- msgid "other content from wp-content"
2535
- msgstr "annet innhold fra wp-content"
2536
-
2537
- #: src/addons/migrator.php:490
2538
- msgid "WordPress core"
2539
- msgstr "WordPress Kjerne"
2540
-
2541
- #: src/addons/migrator.php:490, src/addons/migrator.php:493,
2542
- #: src/addons/migrator.php:496
2543
- msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
2544
- msgstr "Du valgte at %s skal tas med i gjenopprettelsen - dette kan ikke / bør ikke gjøres ved import av ett enkelt nettsted til et nettverk."
2545
-
2546
- #: src/templates/wp-admin/advanced/site-info.php:100
2547
- msgid "Call WordPress action:"
2548
- msgstr "Kall WordPress handling:"
2549
-
2550
- #: src/admin.php:3032
2551
- msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2552
- msgstr "Dine lagrede innstillinger vil påvirke hva som blir sikkerhetskopiert - f.eks ekskluderte filer."
2553
-
2554
- #: src/restorer.php:211
2555
- msgid "Skipping: this archive was already restored."
2556
- msgstr "Hopper over: dette arkivet var allerede gjenopprettet."
2557
-
2558
- #: src/templates/wp-admin/settings/form-contents.php:140
2559
- msgid "File Options"
2560
- msgstr "Filalternativer"
2561
-
2562
- #: src/templates/wp-admin/settings/form-contents.php:93
2563
- msgid "Sending Your Backup To Remote Storage"
2564
- msgstr "Sender Din Sikkerhetskopi Til Ekstern Lagringsplass"
2565
-
2566
- #: src/templates/wp-admin/settings/form-contents.php:58
2567
- msgid "Database backup schedule"
2568
- msgstr "Tidsplan for sikkerhetskopiering av database"
2569
-
2570
- #: src/templates/wp-admin/settings/form-contents.php:22
2571
- msgid "Files backup schedule"
2572
- msgstr "Tidsplan for sikkerhetskopiering av filer"
2573
-
2574
- #: src/templates/wp-admin/advanced/wipe-settings.php:6
2575
- msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
2576
- msgstr "Du må da måtte legge inn alle innstillingene på nytt. Du kan også gjøre dette før deaktivering / avinstallering av UpdraftPlus hvis du ønsker det."
2577
-
2578
- #: src/templates/wp-admin/advanced/wipe-settings.php:6
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 "Denne knappen vil slette alle UpdraftPlus innstillinger og informasjon om fremgang for sikkerhetskopier under behandling (men ikke noen av dine eksisterende sikkerhetskopier fra sky lagring)."
2581
-
2582
- #: src/admin.php:4803
2583
- msgid "Send this backup to remote storage"
2584
- msgstr "Send denne sikkerhetskopien til ekstern lagringsplass"
2585
-
2586
- #: src/admin.php:4801
2587
- msgid "Check out UpdraftPlus Vault."
2588
- msgstr "Sjekk ut UpdraftPlus Hvelv."
2589
-
2590
- #: src/admin.php:4801
2591
- msgid "Not got any remote storage?"
2592
- msgstr "Mangler du ekstern lagringsplass ?"
2593
-
2594
- #: src/admin.php:4801
2595
- msgid "settings"
2596
- msgstr "innstillinger"
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 "Sikkerhetskopien vil ikke bli sendt til ekstern lagring - ingenting er lagret i %s"
2601
-
2602
- #: src/admin.php:3030
2603
- msgid "Include any files in the backup"
2604
- msgstr "Inkluder eventuelle filer i sikkerhetskopien"
2605
-
2606
- #: src/admin.php:3014
2607
- msgid "Include the database in the backup"
2608
- msgstr "Inkluder databasen i sikkerhetskopien"
2609
-
2610
- #: src/admin.php:2841
2611
- msgid "Continue restoration"
2612
- msgstr "Fortsett å gjenopprette"
2613
-
2614
- #: src/admin.php:2836
2615
- msgid "You have an unfinished restoration operation, begun %s ago."
2616
- msgstr "Du har en uferdig gjenopprettelse, påbegynt for %s siden"
2617
-
2618
- #: src/admin.php:2835
2619
- msgid "Unfinished restoration"
2620
- msgstr "Uferdige gjenopprettelser"
2621
-
2622
- #: src/admin.php:2833
2623
- msgid "%s minutes, %s seconds"
2624
- msgstr "%s minutter, %s sekunder"
2625
-
2626
- #: src/admin.php:2699
2627
- msgid "Backup Contents And Schedule"
2628
- msgstr "Innhold Sikkerhetskopiering og Tidsplan"
2629
-
2630
- #: src/admin.php:2802
2631
- msgid "Premium / Extensions"
2632
- msgstr "Premium og utvidelser"
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 "Tilstrekkelig informasjon om den pågående gjenopprettingen ble ikke funnet."
2637
-
2638
- #: src/addons/morefiles.php:71, src/admin.php:877
2639
- msgctxt "(verb)"
2640
- msgid "Download"
2641
- msgstr "Last ned"
2642
-
2643
- #: src/admin.php:800
2644
- msgid "You have chosen to backup files, but no file entities have been selected"
2645
- msgstr "Du har valgt å sikkerhetskopiere filer, men ingen filer er valgt"
2646
-
2647
- #: src/admin.php:695
2648
- msgid "Extensions"
2649
- msgstr "Utvidelser"
2650
-
2651
- #: src/admin.php:687, src/admin.php:2801
2652
- msgid "Advanced Tools"
2653
- msgstr "Avanserte innstillinger"
2654
-
2655
- #: src/addons/googlecloud.php:1055
2656
- msgid "Bucket location"
2657
- msgstr "Skuffens plasering"
2658
-
2659
- #: src/addons/googlecloud.php:1050
2660
- msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
2661
- msgstr "Vær oppmerksom på at Google ikke støtter enhver oppbevaring på hvert sted - du bør lese Google sin dokumentasjon for å lære om gjeldende tilgjengelighet."
2662
-
2663
- #: src/addons/googlecloud.php:1050, src/addons/googlecloud.php:1063
2664
- msgid "This setting applies only when a new bucket is being created."
2665
- msgstr "Denne innstillingen gjelder bare når en ny skuffe blir opprettet."
2666
-
2667
- #: src/addons/googlecloud.php:1039
2668
- msgid "You must use a bucket name that is unique, for all %s users."
2669
- msgstr "Du må bruke et skuffenavn som er unikt, for alle %s brukere."
2670
-
2671
- #: src/addons/googlecloud.php:985
2672
- msgid "Do not confuse %s with %s - they are separate things."
2673
- msgstr "Ikke ta feil av %s og %s - de er separate ting."
2674
-
2675
- #: src/addons/googlecloud.php:312
2676
- msgid "You do not have access to this bucket"
2677
- msgstr "Du har ikke adgang til denne skuffen"
2678
-
2679
- #: src/addons/googlecloud.php:55, src/addons/googlecloud.php:56,
2680
- #: src/addons/googlecloud.php:57
2681
- msgid "Western Europe"
2682
- msgstr "Europa"
2683
-
2684
- #: src/addons/googlecloud.php:51
2685
- msgid "Eastern Asia-Pacific"
2686
- msgstr "Øst-Asia"
2687
-
2688
- #: src/addons/googlecloud.php:50
2689
- msgid "Western United States"
2690
- msgstr "Vestlige USA"
2691
-
2692
- #: src/addons/googlecloud.php:48, src/addons/googlecloud.php:49
2693
- msgid "Eastern United States"
2694
- msgstr "Østlige USA"
2695
-
2696
- #: src/addons/googlecloud.php:47
2697
- msgid "Central United States"
2698
- msgstr "Mellom-Amerika"
2699
-
2700
- #: src/addons/googlecloud.php:46
2701
- msgid "European Union"
2702
- msgstr "European Union"
2703
-
2704
- #: src/addons/googlecloud.php:45
2705
- msgid "Asia Pacific"
2706
- msgstr "Asia Pacific"
2707
-
2708
- #: src/addons/googlecloud.php:44, src/addons/googlecloud.php:45,
2709
- #: src/addons/googlecloud.php:46
2710
- msgid "multi-region location"
2711
- msgstr "multiregional plassering"
2712
-
2713
- #: src/addons/googlecloud.php:44
2714
- msgid "United States"
2715
- msgstr "USA"
2716
-
2717
- #: src/addons/googlecloud.php:40
2718
- msgid "Nearline"
2719
- msgstr "Nearline"
2720
-
2721
- #: src/addons/googlecloud.php:39
2722
- msgid "Durable reduced availability"
2723
- msgstr "Durable reduced availability"
2724
-
2725
- #: src/addons/googlecloud.php:38, src/addons/s3-enhanced.php:66
2726
- msgid "Standard"
2727
- msgstr "Standard"
2728
-
2729
- #: src/addons/azure.php:638
2730
- msgid "container"
2731
- msgstr "beholder"
2732
-
2733
- #: src/addons/azure.php:638
2734
- msgid "You can enter the path of any %s virtual folder you wish to use here."
2735
- msgstr "Du kan skrive inn banen til en eventuell %s virtuell mappe du ønsker å bruke her."
2736
-
2737
- #: src/addons/azure.php:637
2738
- msgid "optional"
2739
- msgstr "Valgfri"
2740
-
2741
- #: src/addons/azure.php:633
2742
- msgid "See Microsoft's guidelines on container naming by following this link."
2743
- msgstr "Se Microsoft's retningslinjer om navngiving av beholdere ved å følge denne linken."
2744
-
2745
- #: src/addons/azure.php:633
2746
- msgid "Enter the path of the %s you wish to use here."
2747
- msgstr "Skriv inn banen til %s som du ønsker å bruke her."
2748
-
2749
- #: src/addons/azure.php:624
2750
- msgid "This is not your Azure login - see the instructions if needing more guidance."
2751
- msgstr "Dette er ikke din Azure pålogging - Se instruksjonene hvis du trenger mer hjelp."
2752
-
2753
- #: src/addons/azure.php:623, src/addons/azure.php:627,
2754
- #: src/addons/azure.php:632, src/addons/azure.php:637
2755
- msgid "Azure"
2756
- msgstr "Azure"
2757
-
2758
- #: src/addons/azure.php:604
2759
- msgid "Create Azure credentials in your Azure developer console."
2760
- msgstr "Opprett Azure legitimasjon i din Azure utvikler konsoll."
2761
-
2762
- #: src/addons/azure.php:563
2763
- msgid "Could not create the container"
2764
- msgstr "Kunne ikke opprette beholder"
2765
-
2766
- #: src/addons/azure.php:413
2767
- msgid "Could not access container"
2768
- msgstr "Ingen tilgang til beholderen"
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 "For å fullføre overføringen / kloningen, bør du nå logge deg på det eksterne siden og gjenopprette sikkerhetskopi settet."
2773
-
2774
- #: src/backup.php:1792
2775
- msgid "the options table was not found"
2776
- msgstr "Innstillingstabellen ble ikke funnet"
2777
-
2778
- #: src/backup.php:1790
2779
- msgid "no options or sitemeta table was found"
2780
- msgstr "Ingen innstillings eller metatabeller ble funnet"
2781
-
2782
- #: src/backup.php:1790, src/backup.php:1792
2783
- msgid "The database backup appears to have failed"
2784
- msgstr "Sikkerhetskopiering av databasen ser ut til å ha feilet"
2785
-
2786
- #: src/backup.php:1662
2787
- msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
2788
- msgstr "Katalogen for sikkerhetskopiene er ikke skrivbar (eller diskplass er full) - sikkerhetskopien av databasen er forventet å feile snart."
2789
-
2790
- #: src/templates/wp-admin/advanced/site-info.php:56
2791
- msgid "required for some remote storage providers"
2792
- msgstr "nødvendig for noen leverandører av ekstern lagring"
2793
-
2794
- #: src/templates/wp-admin/advanced/site-info.php:56
2795
- msgid "Not installed"
2796
- msgstr "Ikke installert"
2797
-
2798
- #: src/addons/googlecloud.php:1042, src/addons/s3-enhanced.php:63
2799
- msgid "Storage class"
2800
- msgstr "Storage class"
2801
-
2802
- #: src/addons/googlecloud.php:1039
2803
- msgid "See Google's guidelines on bucket naming by following this link."
2804
- msgstr "Se Google's retningslinjer om navngiving av skuffer ved å følge denne linken."
2805
-
2806
- #: src/addons/googlecloud.php:1039
2807
- msgid "Enter the name of the %s bucket you wish to use here."
2808
- msgstr "Skriv inn navnet på %s skuffen du ønsker å bruke her."
2809
-
2810
- #: src/addons/googlecloud.php:1038
2811
- msgid "Bucket"
2812
- msgstr "Skuffe"
2813
-
2814
- #: src/addons/googlecloud.php:1034
2815
- msgid "Otherwise, you can leave it blank."
2816
- msgstr "Hvis ikke, lar du denne være blank."
2817
-
2818
- #: src/addons/googlecloud.php:1034
2819
- msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
2820
- msgstr "N.B. Dette er bare nødvendig hvis du ikke allerede har opprettet skuffen, og du ønsker UpdraftPlus å opprette den for deg."
2821
-
2822
- #: src/addons/googlecloud.php:1034
2823
- msgid "Enter the ID of the %s project you wish to use here."
2824
- msgstr "Skriv inn ID'en til %s prosjektet du ønsker å bruke her"
2825
-
2826
- #: src/addons/googlecloud.php:997
2827
- msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
2828
- msgstr "Følg denne linken til din Google API-konsoll, og der aktiverer du Storage API og opprett en klient-ID i API Access delen."
2829
-
2830
- #: src/addons/googlecloud.php:908
2831
- msgid "You must enter a project ID in order to be able to create a new bucket."
2832
- msgstr "Du må angi en prosjekt ID for å kunne opprette en ny skuffe."
2833
-
2834
- #: src/addons/googlecloud.php:1032
2835
- msgid "Project ID"
2836
- msgstr "Prosjekt ID"
2837
-
2838
- #: src/addons/googlecloud.php:759
2839
- msgid "You must save and authenticate before you can test your settings."
2840
- msgstr "Du må lagre og godkjenne før du kan teste dine innstillinger."
2841
-
2842
- #: src/addons/googlecloud.php:541
2843
- msgid "Have not yet obtained an access token from Google - you need to authorize or re-authorize your connection to Google Cloud."
2844
- msgstr ""
2845
-
2846
- #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
2847
- #: src/addons/googlecloud.php:897, src/addons/googlecloud.php:947
2848
- msgid "You do not have access to this bucket."
2849
- msgstr "Du har ikke rettigheter til denne skuffen."
2850
-
2851
- #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
2852
- #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
2853
- #: src/addons/googlecloud.php:718, src/addons/googlecloud.php:897,
2854
- #: src/addons/googlecloud.php:947, src/addons/googlecloud.php:991,
2855
- #: src/addons/googlecloud.php:991, src/addons/googlecloud.php:1019,
2856
- #: src/addons/googlecloud.php:1027, src/addons/googlecloud.php:1039
2857
- msgid "Google Cloud"
2858
- msgstr "Google Sky"
2859
-
2860
- #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
2861
- #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:897,
2862
- #: src/addons/googlecloud.php:947
2863
- msgid "%s Service Exception."
2864
- msgstr "%s Serviceunntak"
2865
-
2866
- #: src/updraftplus.php:157
2867
- msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
2868
- msgstr "Du har ikke UpdraftPlus fullstendig installert - vennligst avinstaller og installer det på nytt. Mest sannsynlig feilet WordPress ved kopiering av plugin-filer."
2869
-
2870
- #: src/restorer.php:1216
2871
- msgid "Deferring..."
2872
- msgstr "Utsetter..."
2873
-
2874
- #: src/templates/wp-admin/settings/form-contents.php:87
2875
- msgid "or to configure more complex schedules"
2876
- msgstr "eller konfigurere mer komplekse tidsplaner"
2877
-
2878
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:11,
2879
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:14
2880
- msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
2881
- msgstr "Er du sikker på at du vil fjerne %s fra UpdraftPlus?"
2882
-
2883
- #: src/templates/wp-admin/settings/existing-backups-table.php:157
2884
- msgid "Deselect"
2885
- msgstr "Velg ingen"
2886
-
2887
- #: src/templates/wp-admin/settings/existing-backups-table.php:156
2888
- msgid "Select all"
2889
- msgstr "Velg alle"
2890
-
2891
- #: src/templates/wp-admin/settings/existing-backups-table.php:154
2892
- msgid "Actions upon selected backups"
2893
- msgstr "Handlinger for valgte sikkerhetskopier"
2894
-
2895
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:56,
2896
- #: src/templates/wp-admin/settings/tab-backups.php:60
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 "Trykk her for å se i dine fjernlagrings metoder etter eksisterende backupsett (fra noen av sidene, hvis de er lagret i samme mappe)."
2899
-
2900
- #: src/admin.php:1862
2901
- msgid "Backup sets removed:"
2902
- msgstr ""
2903
-
2904
- #: src/admin.php:890
2905
- msgid "Processing..."
2906
- msgstr "Behandler..."
2907
-
2908
- #: src/admin.php:888
2909
- msgid "For backups older than"
2910
- msgstr "For sikkerhetskopier eldre enn"
2911
-
2912
- #: src/admin.php:887
2913
- msgid "week(s)"
2914
- msgstr "uke(r)"
2915
-
2916
- #: src/admin.php:886
2917
- msgid "hour(s)"
2918
- msgstr "time(r)"
2919
-
2920
- #: src/admin.php:885
2921
- msgid "day(s)"
2922
- msgstr "dag(er)"
2923
-
2924
- #: src/admin.php:884
2925
- msgid "in the month"
2926
- msgstr "i måneden"
2927
-
2928
- #: src/admin.php:883
2929
- msgid "day"
2930
- msgstr "dag"
2931
-
2932
- #: src/addons/morestorage.php:30
2933
- msgid "(as many as you like)"
2934
- msgstr "(så mange du vil)"
2935
-
2936
- #: src/addons/fixtime.php:306, src/addons/fixtime.php:311
2937
- msgid "Add an additional retention rule..."
2938
- msgstr "Legg til en ekstra oppbevaringsregel..."
2939
-
2940
- #: src/restorer.php:2805
2941
- msgid "This database needs to be deployed on MySQL version %s or later."
2942
- msgstr "Denne databasen krever MySQL versjon %s eller nyere."
2943
-
2944
- #: src/restorer.php:2805
2945
- msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
2946
- msgstr "Dette problemet er forårsaket ved å prøve å gjenopprette en database på en svært gammel MySQL versjon som er uforenlig med kildedatabasen."
2947
-
2948
- #: src/methods/updraftvault.php:707
2949
- msgid "You do not currently have any UpdraftPlus Vault quota"
2950
- msgstr "Du har ikke for øyeblikket noen UpdraftPlus hvelv kvote"
2951
-
2952
- #: src/class-updraftplus.php:4076
2953
- msgid "You must upgrade MySQL to be able to use this database."
2954
- msgstr "Du må oppgradere MySQL for å kunne bruke denne databasen."
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 "Sikkerhetskopien benytter MySQL funksjoner som ikke er støttet den gamle versjonen av MySQL (%s) som dette nettstedet kjører på."
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 "UpdraftPlus katalogen i wp-content/plugins har mellomrom i seg; WordPress liker ikke dette. Du bør endre navnet på katalogen til wp-content/plugins/updraftplus for å løse dette problemet."
2963
-
2964
- #: src/methods/updraftvault.php:365
2965
- msgid "Don't know your email address, or forgotten your password?"
2966
- msgstr "Husker du ikke din e-postadresse, eller glemt passordet ditt?"
2967
-
2968
- #: src/methods/updraftvault.php:358
2969
- msgid "Enter your UpdraftPlus.Com email / password here to connect:"
2970
- msgstr "Skriv inn din UpdraftPlus.Com e-post / passord her for å koble til:"
2971
-
2972
- #: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
2973
- msgid "Read the FAQs here."
2974
- msgstr "Her finner du ofte stilte spørsmål."
2975
-
2976
- #: src/addons/s3-enhanced.php:73
2977
- msgid "Check this box to use Amazon's server-side encryption"
2978
- msgstr "Huk av denne boksen for å bruke Amazon's server kryptering"
2979
-
2980
- #: src/addons/s3-enhanced.php:72
2981
- msgid "Server-side encryption"
2982
- msgstr "Server kryptering"
2983
-
2984
- #: src/methods/updraftvault.php:715
2985
- msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
2986
- msgstr "Hvis du har glemt passordet ditt, så gå her for å endre passord på updraftplus.com."
2987
-
2988
- #: src/admin.php:1192
2989
- msgid "Go to the remote storage settings in order to connect."
2990
- msgstr "Gå til innstillingene for eksterne lagring for å koble til."
2991
-
2992
- #: src/admin.php:1192
2993
- msgid "%s has been chosen for remote storage, but you are not currently connected."
2994
- msgstr "%s har blitt valgt for ekstern lagring, men du er for tiden ikke tilkoblet."
2995
-
2996
- #: src/methods/updraftvault.php:348
2997
- msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
2998
- msgstr "Betalinger kan gjøres i amerikanske dollar, euro eller britiske pund, via kort eller PayPal."
2999
-
3000
- #: src/admin.php:860
3001
- msgid "Update quota count"
3002
- msgstr "Oppdaterer kvoten"
3003
-
3004
- #: src/admin.php:859
3005
- msgid "Counting..."
3006
- msgstr "Teller..."
3007
-
3008
- #: src/admin.php:858
3009
- msgid "Disconnecting..."
3010
- msgstr "Kobler fra..."
3011
-
3012
- #: src/admin.php:856
3013
- msgid "Connecting..."
3014
- msgstr "Kobler til..."
3015
-
3016
- #: src/methods/updraftvault.php:468, src/methods/updraftvault.php:542
3017
- msgid "Refresh current status"
3018
- msgstr "Oppdatere gjeldende status"
3019
-
3020
- #: src/methods/updraftvault.php:466, src/methods/updraftvault.php:482,
3021
- #: src/methods/updraftvault.php:484, src/methods/updraftvault.php:542
3022
- msgid "Get more quota"
3023
- msgstr "Få mer lagringsplass"
3024
-
3025
- #: src/methods/updraftvault.php:463, src/methods/updraftvault.php:479,
3026
- #: src/methods/updraftvault.php:523
3027
- msgid "Current use:"
3028
- msgstr "Nåværende bruk:"
3029
-
3030
- #: src/methods/updraftvault.php:458
3031
- msgid "You can get more quota here"
3032
- msgstr "Du kan få mer lagringsplass her"
3033
-
3034
- #: src/methods/updraftvault.php:458
3035
- msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3036
- msgstr "%s Feil: du har for lite lagringsplass tilgjengelig (%s) for å laste opp dette arkivet (%s)."
3037
-
3038
- #: src/admin.php:857, src/methods/updraftvault.php:392,
3039
- #: src/methods/updraftvault.php:450
3040
- msgid "Disconnect"
3041
- msgstr "Frakoble"
3042
-
3043
- #: src/methods/updraftvault.php:389, src/methods/updraftvault.php:442
3044
- msgid "Quota:"
3045
- msgstr "Kvote:"
3046
-
3047
- #: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
3048
- msgid "Vault owner"
3049
- msgstr "Hvelv eier"
3050
-
3051
- #: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
3052
- msgid "Well done - there's nothing more needed to set up."
3053
- msgstr "Godt gjort - det er ikke noe mer som trengs å sette opp."
3054
-
3055
- #: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
3056
- msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
3057
- msgstr "Dette stedet er <strong>tilkoblet</strong> UpdraftPlus Hvelvet."
3058
-
3059
- #: src/methods/updraftvault.php:394, src/methods/updraftvault.php:436
3060
- msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
3061
- msgstr "Du er <strong>ikke tilkoblet</strong> til UpdraftPlus Hvelvet."
3062
-
3063
- #: src/methods/updraftvault.php:365
3064
- msgid "Go here for help"
3065
- msgstr "Gå hit for å få hjelp"
3066
-
3067
- #: src/methods/updraftvault.php:360
3068
- msgid "E-mail"
3069
- msgstr "E-post"
3070
-
3071
- #: src/central/bootstrap.php:570, src/methods/updraftvault.php:354,
3072
- #: src/methods/updraftvault.php:368,
3073
- #: src/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php:4
3074
- msgid "Back..."
3075
- msgstr "Tilbake..."
3076
-
3077
- #: src/methods/updraftvault.php:348
3078
- msgid "Subscriptions can be cancelled at any time."
3079
- msgstr "Abonnement kan avbrytes når som helst."
3080
-
3081
- #: src/methods/updraftvault.php:331, src/methods/updraftvault.php:337,
3082
- #: src/methods/updraftvault.php:343
3083
- msgid "%s per quarter"
3084
- msgstr "%s pr. kvartal"
3085
-
3086
- #: src/central/bootstrap.php:597, src/methods/updraftvault.php:322,
3087
- #: src/methods/updraftvault.php:351
3088
- msgid "Read more about it here."
3089
- msgstr "Les mer om det her."
3090
-
3091
- #: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
3092
- msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
3093
- msgstr "UpdraftPlus Hvelv er bygget på toppen av Amazon's verdensledende datasentre, med redundant datalagring for å oppnå 99,999999999% pålitelighet."
3094
-
3095
- #: src/methods/updraftvault.php:318
3096
- msgid "Already purchased space?"
3097
- msgstr "Allerede kjøpt plass?"
3098
-
3099
- #: src/methods/updraftvault.php:315
3100
- msgid "Show the options"
3101
- msgstr "Vis instillingene"
3102
-
3103
- #: src/methods/updraftvault.php:314
3104
- msgid "First time user?"
3105
- msgstr "Førstegangs bruker?"
3106
-
3107
- #: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
3108
- msgid "Press a button to get started."
3109
- msgstr "Trykk på en knapp for å komme i gang."
3110
-
3111
- #: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
3112
- msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
3113
- msgstr "UpdraftPlus Hvelv bringer deg lagringsplass som er <strong>pålitelig, enkel å bruke og tiil en god pris</strong>."
3114
-
3115
- #: src/methods/updraftvault.php:256
3116
- msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
3117
- msgstr "Ditt UpdraftPlus Vault abonnement er ikke blitt fornyet, og utsettelsesperioden er utløpt. Om noen få dager, vil de lagrede dataene bli fjernet permanent. Hvis du ikke ønsker at dette skal skje, så bør du fornye så snart som mulig."
3118
-
3119
- #: src/methods/updraftvault.php:253
3120
- msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
3121
- msgstr "Betaling for ditt UpdraftPlus Vault abonnement har forfalt. Du er innenfor de dagene av utsettelsesperioden før det vil bli suspendert, og du vil miste din kvote og tilgang til data som er lagret i den. Vennligst fornye så snart som mulig!"
3122
-
3123
- #: src/methods/updraftvault.php:250
3124
- msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
3125
- msgstr "Ditt UpdraftPlus Premium kjøp er over et år gammelt. Du bør fornye umiddelbart for å unngå å miste de 12 månedene med gratis lagringsplass som du får for å være en aktiv UpdraftPlus Premium kunde."
3126
-
3127
- #: src/methods/updraftvault.php:99
3128
- msgid "Updraft Vault"
3129
- msgstr "Updraft Hvelv"
3130
-
3131
- #: src/addons/azure.php:443, src/addons/backblaze.php:528,
3132
- #: src/addons/googlecloud.php:843, src/methods/s3.php:1172
3133
- msgid "Delete failed:"
3134
- msgstr "Sletting feilet:"
3135
-
3136
- #: src/backup.php:3431
3137
- msgid "The zip engine returned the message: %s."
3138
- msgstr "ZIP returnerte meldingen: %s"
3139
-
3140
- #: src/addons/s3-enhanced.php:400
3141
- msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
3142
- msgstr "Uten denne tillatelsen, kan UpdraftPlus ikke slette sikkerhetskopier - du bør også sette dine 'beholder' innstillinger svært høy for å hindre feil ved sletting."
3143
-
3144
- #: src/addons/s3-enhanced.php:398
3145
- msgid "Allow deletion"
3146
- msgstr "Tillat sletting"
3147
-
3148
- #: src/addons/s3-enhanced.php:396
3149
- msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
3150
- msgstr "Uten denne tillatelsen, kan du ikke direkte laste ned eller gjenopprette ved hjelp av UpdraftPlus, og vil i stedet trenge å besøke AWS hjemmeside."
3151
-
3152
- #: src/addons/s3-enhanced.php:394
3153
- msgid "Allow download"
3154
- msgstr "Tillat nedlasting"
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 "Hvis sending direkte fra nettsted til nettsted ikke fungerer for deg, så er det tre andre metoder - prøv en av disse i stedet."
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 "Du bør sjekke at det eksterne nettstedet er online, ikke har brannmur, ikke har sikkerhetsmoduler som kan blokkere tilgang, har UpdraftPlus versjon %s eller senere aktiv, og at nøklene har blitt skrevet inn riktig."
3163
-
3164
- #: src/includes/class-remote-send.php:541
3165
- msgid "Existing keys"
3166
- msgstr "Eksisterende nøkler"
3167
-
3168
- #: src/addons/migrator.php:1773
3169
- msgid "Your new key:"
3170
- msgstr "Din nye nøkkel:"
3171
-
3172
- #: src/central/bootstrap.php:403
3173
- msgid "You must copy and paste this key now - it cannot be shown again."
3174
- msgstr "Du må kopiere og lime inn denne nøkkelen nå - den kan ikke bli vist igjen."
3175
-
3176
- #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:438
3177
- msgid "Key created successfully."
3178
- msgstr "Nøkkel opprettet."
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 "En nøkkel med dette navnet finnes allerede; du må bruke et unikt navn."
3183
-
3184
- #: src/includes/class-remote-send.php:345
3185
- msgid "Also send this backup to the active remote storage locations"
3186
- msgstr "I tillegg, send denne sikkerhetskopien til de aktive eksterne lagringsplasseringene"
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 "Nettadressen du sender til (%s) ser ut som et lokalt utviklings nettsted. Hvis du sender fra et eksternt nettverk, er det sannsynlig at en brannmur vil blokkere dette."
3191
-
3192
- #: src/includes/class-remote-send.php:266
3193
- msgid "site not found"
3194
- msgstr "siden ble ikke funnet"
3195
-
3196
- #: src/includes/class-remote-send.php:251
3197
- msgid "Backup data will be sent to:"
3198
- msgstr "Sikkerhetskopien vil bli sendt til:"
3199
-
3200
- #: src/addons/migrator.php:230
3201
- msgid "Restore an existing backup set onto this site"
3202
- msgstr "Gjenopprett et eksisterende sikkerhetskopisett på dette nettstedet"
3203
-
3204
- #: src/addons/migrator.php:236
3205
- msgid "This site has no backups to restore from yet."
3206
- msgstr "Dette nettstedet har ingen sikkerhetskopi å gjenopprette fra enda."
3207
-
3208
- #: src/addons/reporting.php:172
3209
- msgid "Backup made by %s"
3210
- msgstr "Sikkerhetskopi ble laget av %s"
3211
-
3212
- #: src/methods/addon-base-v2.php:188
3213
- msgid "This storage method does not allow downloading"
3214
- msgstr "Denne lagringsmetoden tillater ikke nedlasting"
3215
-
3216
- #: src/admin.php:4167
3217
- msgid "(backup set imported from remote location)"
3218
- msgstr "(backupsettet ble importert fra den eksterne plasseringen)"
3219
-
3220
- #: src/addons/wp-cli.php:373,
3221
- #: src/templates/wp-admin/settings/existing-backups-table.php:102
3222
- msgid "Site"
3223
- msgstr "Nettsted"
3224
-
3225
- #: src/addons/wp-cli.php:371,
3226
- #: src/templates/wp-admin/settings/existing-backups-table.php:101
3227
- msgid "Backup sent to remote site - not available for download."
3228
- msgstr "Sikkerhetskopien ble sendt til den eksterne siden. Den er ikke tilgjengelig for nedlasting."
3229
-
3230
- #: src/includes/class-wpadmin-commands.php:137
3231
- msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
3232
- msgstr "Du burde forsikre deg om at dette settet med sikkerhetskopier virkelig tilhører denne siden før du gjenoppretter. Ikke bruk et kopisett fra en urelatert webside."
3233
-
3234
- #: src/includes/class-wpadmin-commands.php:137
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 "Dette settet med sikkerhetskopier ble ikke gjenkjent av UpdraftPlus som tilhørende denne WordPress-installasjonen. Den ser heller ut til å ha blitt hentet fra ekstern lagring, eller sendt fra en ekstern side."
3237
-
3238
- #: src/admin.php:873, src/includes/class-remote-send.php:327
3239
- msgid "Testing connection..."
3240
- msgstr "Tester tilkobling..."
3241
-
3242
- #: src/admin.php:870,
3243
- #: src/templates/wp-admin/settings/existing-backups-table.php:161
3244
- msgid "Deleting..."
3245
- msgstr "Sletter..."
3246
-
3247
- #: src/admin.php:869
3248
- msgid "key name"
3249
- msgstr "nøkkelnavn"
3250
-
3251
- #: src/admin.php:867
3252
- msgid "Please give this key a name (e.g. indicate the site it is for):"
3253
- msgstr "Vennligst gi denne nøkkelen et navn. Du kan for eksempel bruke navnet på siden nøkkelen tilhører."
3254
-
3255
- #: src/admin.php:864
3256
- msgid "Creating..."
3257
- msgstr "Oppretter..."
3258
-
3259
- #: src/addons/migrator.php:1753
3260
- msgid "Receive a backup from a remote site"
3261
- msgstr ""
3262
-
3263
- #: src/addons/migrator.php:1745
3264
- msgid "Paste key here"
3265
- msgstr "Lim inn nøkkel her"
3266
-
3267
- #: src/addons/migrator.php:1741
3268
- msgid "How do I get a site's key?"
3269
- msgstr "Hvordan får jeg nøkkelen fra et nettsted?"
3270
-
3271
- #: src/addons/migrator.php:1741
3272
- msgid "To add a site as a destination for sending to, enter that site's key below."
3273
- msgstr "For å legge til et nettsted som en destinasjon, angir du nettstedets nøkkel under."
3274
-
3275
- #: src/addons/migrator.php:1732
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 "Send"
3283
-
3284
- #: src/admin.php:865, src/includes/class-remote-send.php:514
3285
- msgid "Send to site:"
3286
- msgstr "Send til nettsted:"
3287
-
3288
- #: src/includes/class-remote-send.php:512
3289
- msgid "No receiving sites have yet been added."
3290
- msgstr "Ingen mottagene nettsteder er blitt lagt til enda."
3291
-
3292
- #: src/includes/class-remote-send.php:493
3293
- msgid "It is for sending backups to the following site: "
3294
- msgstr "Den er for å sende sikkerhetskopier til følgende nettsted:"
3295
-
3296
- #: src/includes/class-remote-send.php:493
3297
- msgid "The key was successfully added."
3298
- msgstr "Nøkkelen ble lagt til."
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 "Den angitte nøkkelen tilhører ikke et eksternt nettstad (den hører til dette nettstedet)."
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 "Den utfylte nøkkelen var korrupt. Vennligst prøv igjen."
3309
-
3310
- #: src/includes/class-remote-send.php:464
3311
- msgid "The entered key was the wrong length - please try again."
3312
- msgstr "Den utfylte nøkkelen har feil lengde. Vennligst prøv igjen."
3313
-
3314
- #: src/includes/class-remote-send.php:454
3315
- msgid "key"
3316
- msgstr "nøkkel"
3317
-
3318
- #: src/methods/ftp.php:379
3319
- msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
3320
- msgstr "Nesten alle FTP-servere ønsker passivmodus, men hvis du trenger aktivmodus fjerner du haken her."
3321
-
3322
- #: src/methods/ftp.php:377
3323
- msgid "Passive mode"
3324
- msgstr "Passivmodus"
3325
-
3326
- #: src/methods/ftp.php:372
3327
- msgid "Remote path"
3328
- msgstr "Ekstern bane"
3329
-
3330
- #: src/methods/ftp.php:367
3331
- msgid "FTP password"
3332
- msgstr "FTP-passord"
3333
-
3334
- #: src/methods/ftp.php:362
3335
- msgid "FTP login"
3336
- msgstr "FTP-brukernavn"
3337
-
3338
- #: src/methods/ftp.php:357
3339
- msgid "FTP server"
3340
- msgstr "FTP-server"
3341
-
3342
- #: src/addons/migrator.php:194
3343
- msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
3344
- msgstr "UpdraftPlus Migratoren modifiserer gjenopprettingen for å tilpasse de sikkerhetskopierte dataene til det nye nettstedet."
3345
-
3346
- #: src/addons/migrator.php:194
3347
- msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3348
- msgstr "En \"migrering\" er til syvende og sist det samme som en restaurering - men ved hjelp av sikkerhetskopien som du importerer fra et annet nettsted."
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 "Legg til nettsted"
3357
-
3358
- #: src/admin.php:861
3359
- msgid "Adding..."
3360
- msgstr "Legger til..."
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 "Kravet ble ikke godkjent. Kanskje du har benyttet kjøpet et annet sted eller nedlastingen har løpt ut?"
3365
-
3366
- #: src/restorer.php:2807
3367
- msgid "To use this backup, your database server needs to support the %s character set."
3368
- msgstr "For å benytte denne sikkerhetskopien må databaseserveren støtte tegnsettet %s."
3369
-
3370
- #: src/udaddons/updraftplus-addons.php:997
3371
- msgid "go here to change your password on updraftplus.com."
3372
- msgstr "gå hit for å endre passordet ditt på updraftplus.com."
3373
-
3374
- #: src/udaddons/updraftplus-addons.php:997
3375
- msgid "If you have forgotten your password "
3376
- msgstr "Hvis du har glemt passordet ditt"
3377
-
3378
- #: src/udaddons/updraftplus-addons.php:996
3379
- msgid "Go here to re-enter your password."
3380
- msgstr "Gå hit for å fylle inn passordet ditt på nytt."
3381
-
3382
- #: src/addons/migrator.php:271
3383
- msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3384
- msgstr "Etter å ha trykket på denne knappen vil du bli gitt valget om å velge hvilke komponenter du ønsker å migrere."
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 "Du har foretatt endringer uten å lagre."
3389
-
3390
- #: src/addons/onedrive.php:1188
3391
- msgid "N.B. %s is not case-sensitive."
3392
- msgstr "NB: %s skiller ikke mellom store og små bokstaver."
3393
-
3394
- #: src/addons/onedrive.php:1178
3395
- msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
3396
- msgstr "Hvis OneDrive senere viser meldingen «unathourized_client», fylte du ikke inn gyldig klient-ID her."
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 "For utvidet hjelp med skjermbilder, følg denne linken."
3402
-
3403
- #: src/addons/onedrive.php:1141
3404
- msgid "Create OneDrive credentials in your OneDrive developer console."
3405
- msgstr "Opprett OneDrive-kredentialer i utviklerkonsollen til OneDrive."
3406
-
3407
- #: src/addons/onedrive.php:1133
3408
- msgid "You must add the following as the authorized redirect URI in your OneDrive console (under \"API Settings\") when asked"
3409
- msgstr ""
3410
-
3411
- #: src/addons/azure.php:593
3412
- msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
3413
- msgstr ""
3414
-
3415
- #: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
3416
- msgid "authorization failed:"
3417
- msgstr ""
3418
-
3419
- #: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
3420
- #: src/addons/onedrive.php:1181
3421
- msgid "OneDrive"
3422
- msgstr "OneDrive"
3423
-
3424
- #: src/addons/onedrive.php:724
3425
- msgid "Please re-authorize the connection to your %s account."
3426
- msgstr "Vennligst autorisér tilkoblingen til %s-kontoen på nytt."
3427
-
3428
- #: src/methods/email.php:96
3429
- msgid "configure it here"
3430
- msgstr "tilpass den her"
3431
-
3432
- #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3433
- #: src/methods/updraftvault.php:680
3434
- msgid "To remove the block, please go here."
3435
- msgstr "For å fjerne blokkeringen, gå hit."
3436
-
3437
- #: src/addons/s3-enhanced.php:477
3438
- msgid "Do remember to save your settings."
3439
- msgstr "Husk å lagre innstillingene dine."
3440
-
3441
- #: src/addons/s3-enhanced.php:477
3442
- msgid "You are now using a IAM user account to access your bucket."
3443
- msgstr "Du bruker nå en IAM-konto for å koble til beholderen din."
3444
-
3445
- #: src/addons/s3-enhanced.php:392
3446
- msgid "S3 bucket"
3447
- msgstr "S3-beholder"
3448
-
3449
- #: src/addons/s3-enhanced.php:382
3450
- msgid "China (Beijing) (restricted)"
3451
- msgstr "Kina (Beijing) (begrenset)"
3452
-
3453
- #: src/addons/s3-enhanced.php:381
3454
- msgid "South America (Sao Paulo)"
3455
- msgstr "Sør-Amerika (Sao Paulo)"
3456
-
3457
- #: src/addons/s3-enhanced.php:380
3458
- msgid "Asia Pacific (Tokyo)"
3459
- msgstr "Asia, Stillehavet (Tokyo)"
3460
-
3461
- #: src/addons/s3-enhanced.php:378
3462
- msgid "Asia Pacific (Sydney)"
3463
- msgstr "Asia, Stillehavet (Sydney)"
3464
-
3465
- #: src/addons/s3-enhanced.php:377
3466
- msgid "Asia Pacific (Singapore)"
3467
- msgstr "Asia, Stillehavet (Singapore)"
3468
-
3469
- #: src/addons/s3-enhanced.php:370
3470
- msgid "US Government West (restricted)"
3471
- msgstr "USA, myndigheter, vest (begrenset)"
3472
-
3473
- #: src/addons/s3-enhanced.php:369
3474
- msgid "US West (N. California)"
3475
- msgstr "USA, vestkysten (Nord-California)"
3476
-
3477
- #: src/addons/s3-enhanced.php:368
3478
- msgid "US West (Oregon)"
3479
- msgstr "USA, vestkysten (Oregon)"
3480
-
3481
- #: src/addons/s3-enhanced.php:366
3482
- msgid "US Standard (default)"
3483
- msgstr "USA standard"
3484
-
3485
- #: src/addons/s3-enhanced.php:362
3486
- msgid "S3 storage region"
3487
- msgstr "Lagringsområde for S3"
3488
-
3489
- #: src/addons/s3-enhanced.php:360
3490
- msgid "New IAM username"
3491
- msgstr "Nytt IAM-brukernavn"
3492
-
3493
- #: src/addons/s3-enhanced.php:359
3494
- msgid "Admin secret key"
3495
- msgstr "Hemmelig nøkkel for administrasjon"
3496
-
3497
- #: src/addons/s3-enhanced.php:358
3498
- msgid "Admin access key"
3499
- msgstr "Administrasjonstilgangsnøkkel"
3500
-
3501
- #: src/addons/s3-enhanced.php:351
3502
- msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
3503
- msgstr "Deretter vil disse begrensede tilgangskredentialene bli brukt istedenfor å bruke dine administrative nøkler."
3504
-
3505
- #: src/addons/s3-enhanced.php:351
3506
- msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
3507
- msgstr "Disse vil bli brukt til å opprette et nytt par med bruker og nøkkel med en IAM-policy vedlagt hvilken vil kun tillate tilgang til den valgte bøtten."
3508
-
3509
- #: src/addons/s3-enhanced.php:351
3510
- msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
3511
- msgstr "Fyll inn dine administrative Amazon S3-tilgangsnøkler og hemmelige nøkler. Dette må være et nøkkelpar med nok rettigheter til å opprette brukere og bøtter. Fyll også inn et unikt brukernavn til denne nye brukeren og et bøttenavn."
3512
-
3513
- #: src/addons/s3-enhanced.php:429
3514
- msgid "Create new IAM user and S3 bucket"
3515
- msgstr "Opprett ny IAM-bruker og S3-bøtte"
3516
-
3517
- #: src/addons/s3-enhanced.php:337
3518
- msgid "Secret Key: %s"
3519
- msgstr "Hemmelig nøkkel: %s"
3520
-
3521
- #: src/addons/s3-enhanced.php:337
3522
- msgid "Access Key: %s"
3523
- msgstr "Tilgangsnøkkel: %s"
3524
-
3525
- #: src/addons/s3-enhanced.php:325
3526
- msgid "Failed to apply User Policy"
3527
- msgstr "Klarte ikke sette i verk brukerpolicy"
3528
-
3529
- #: src/addons/s3-enhanced.php:266, src/addons/s3-enhanced.php:270
3530
- msgid "Operation to create user Access Key failed"
3531
- msgstr "Klarte ikke opprette tilgangsnøkkel for bruker"
3532
-
3533
- #: src/addons/s3-enhanced.php:264
3534
- msgid "Failed to create user Access Key"
3535
- msgstr "Klarte ikke opprette tilgangsnøkkel for bruker"
3536
-
3537
- #: src/addons/s3-enhanced.php:244, src/addons/s3-enhanced.php:247,
3538
- #: src/addons/s3-enhanced.php:251
3539
- msgid "IAM operation failed (%s)"
3540
- msgstr "IAM-operasjonen feilet. %s"
3541
-
3542
- #: src/addons/s3-enhanced.php:242
3543
- msgid "Conflict: that user already exists"
3544
- msgstr "Konflikt: Den brukeren eksisterer allerede"
3545
-
3546
- #: src/addons/s3-enhanced.php:214
3547
- msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another AWS user may already have taken your name)."
3548
- msgstr "Feil: Vi kunne ikke få tilgang til eller opprette en slik bøtte. Vennligst se over tilgangskredentialene dine, og hvis de er riktige, prøv et annet bøttenavn (ettersom en annen AWS-bruker allerede kan ha tatt navnet ditt)."
3549
-
3550
- #: src/addons/s3-enhanced.php:168
3551
- msgid "AWS authentication failed"
3552
- msgstr "AWS-godkjenning feilet"
3553
-
3554
- #: src/addons/s3-enhanced.php:161
3555
- msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
3556
- msgstr "Kan ikke opprette ny AWS-bruker siden det gamle AWS-verktøysettet benyttes."
3557
-
3558
- #: src/addons/s3-enhanced.php:134
3559
- msgid "You need to enter a bucket"
3560
- msgstr "Du må fylle inn en bøtte"
3561
-
3562
- #: src/addons/s3-enhanced.php:130
3563
- msgid "You need to enter a new IAM username"
3564
- msgstr "Du må fylle inn et nytt IAM-brukernavn."
3565
-
3566
- #: src/addons/s3-enhanced.php:126
3567
- msgid "You need to enter an admin secret key"
3568
- msgstr "Du må fylle inn en hemmlig nøkkel for administrering."
3569
-
3570
- #: src/addons/s3-enhanced.php:122
3571
- msgid "You need to enter an admin access key"
3572
- msgstr "Du må fylle inn en administrasjonsnøkkel."
3573
-
3574
- #: src/addons/s3-enhanced.php:95
3575
- msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
3576
- msgstr "Hvis du har en AWS-adminbruker, så kan du bruke denne veilederen for å raskt lage en ny AWS-bruker (IAM) med tilgang til bare denne bøtten (istedenfor hele kontoen)."
3577
-
3578
- #: src/methods/s3.php:923
3579
- msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
3580
- msgstr "For å lage en ny IAM-subbruker og tilgangsnøkkel som bare har tilgang til denne bøtten, bruk denne utvidelsen."
3581
-
3582
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
3583
- msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world's most popular backup plugin."
3584
- msgstr ""
3585
-
3586
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
3587
- msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
3588
- msgstr "Nyheter om UpdraftPlus, treningsmateriale av høy kvalitet for WordPress-utviklere og nettredaktører, og generelle WordPress-nyheter. Du kan kansellere nyhetsbrevet når som helst."
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 "Det betyr sannsynligvis at du deler webserver med en hacket webside som har blitt benyttet i tidligere angrep."
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 "Det ser ut til at IP-adressen til webserveren din, %s, er blokkert."
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 avbrøt tilkoblingsforsøket. Årsaken er «ingen tilgang»."
3606
-
3607
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
3608
- msgid "Premium WooCommerce plugins"
3609
- msgstr "Premium-versjoner av WooCommerce-utvidelsene"
3610
-
3611
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
3612
- msgid "Free two-factor security plugin"
3613
- msgstr "Utvidelse for to-stegs-autentisering."
3614
-
3615
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
3616
- msgid "More quality plugins"
3617
- msgstr ""
3618
-
3619
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
3620
- msgid "Go to the shop."
3621
- msgstr "Gå til nettbuttiken."
3622
-
3623
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
3624
- msgid "Compare with the free version"
3625
- msgstr "Sammenligne med gratisversjonen."
3626
-
3627
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
3628
- #: src/templates/wp-admin/settings/tab-addons.php:46
3629
- msgid "UpdraftPlus Premium"
3630
- msgstr "UpdraftPlus Premium"
3631
-
3632
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
3633
- msgid "Free Newsletter"
3634
- msgstr "Nyhetsbrev"
3635
-
3636
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
3637
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
3638
- msgid "Dismiss (for %s months)"
3639
- msgstr "Skjul beskjeden de neste %s månedene."
3640
-
3641
- #: src/addons/fixtime.php:448
3642
- msgid "(at same time as files backup)"
3643
- msgstr "(samtidig som sikkerhetskopieringen av filer)"
3644
-
3645
- #: src/admin.php:3703
3646
- msgid "No backup has been completed"
3647
- msgstr "Ingen sikkerhetskopiering er fullført"
3648
-
3649
- #: src/templates/wp-admin/settings/header.php:21
3650
- msgid "Newsletter sign-up"
3651
- msgstr "Abonnér på nyhetsbrev"
3652
-
3653
- #: src/includes/updraftplus-notices.php:142
3654
- msgid "Follow this link to sign up for the UpdraftPlus newsletter."
3655
- msgstr "Følg denne linken for å abonnere på nyhetsbrev fra UpdraftPlus."
3656
-
3657
- #: src/templates/wp-admin/settings/tab-addons.php:113,
3658
- #: src/templates/wp-admin/settings/tab-addons.php:114
3659
- msgid "Backup non-WordPress files and databases"
3660
- msgstr ""
3661
-
3662
- #: src/templates/wp-admin/settings/tab-addons.php:20
3663
- msgid "Ask a pre-sales question"
3664
- msgstr "Still et spørsmål før salg"
3665
-
3666
- #: src/templates/wp-admin/settings/tab-addons.php:19
3667
- msgid "Pre-sales FAQs"
3668
- msgstr "Ofte stilte spørsmål før salg"
3669
-
3670
- #: src/templates/wp-admin/settings/tab-addons.php:18
3671
- msgid "Full feature list"
3672
- msgstr "Fullstendig funksjonsliste"
3673
-
3674
- #: src/addons/autobackup.php:1080
3675
- msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3676
- msgstr "Sikkerhetskopiér utvidelser, temaer og WordPress-databasen med UpdraftPlus før oppdatering."
3677
-
3678
- #: src/methods/s3.php:179, src/methods/s3.php:180, src/methods/s3.php:181,
3679
- #: src/methods/s3.php:189, src/methods/s3.php:190, src/methods/s3.php:191
3680
- msgid "%s Error: Failed to initialise"
3681
- msgstr "%s-feil. Klarte ikke starte opp."
3682
-
3683
- #: src/templates/wp-admin/settings/form-contents.php:190
3684
- msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
3685
- msgid "or"
3686
- msgstr "eller"
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 "Du valgte ingen komponenter for gjenoppretting. Velg minst én og prøv igjen."
3691
-
3692
- #: src/addons/sftp.php:470
3693
- msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
3694
- msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
3695
- msgstr "Du kan bruke godkjenningsnøkler i formatene PKCS1 (PEM-header: BEGIN RSA PRIVATE KEY), XML og PuTTY."
3696
-
3697
- #: src/addons/sftp.php:420
3698
- msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
3699
- msgstr "Gjenopptakelse av uferdige opplastinger støttes med SFTP, men ikke med SCP. Bruker du SCP må du derfor sørge for at PHP-innstillingene på serveren tillater at prosesser kjører lenge nok til at opplastingene kan fullføres."
3700
-
3701
- #: src/methods/openstack2.php:190
3702
- msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
3703
- msgid "tenant"
3704
- msgstr "klient"
3705
-
3706
- #: src/methods/openstack2.php:139
3707
- msgctxt "Keystone and swauth are technical terms which cannot be translated"
3708
- msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
3709
- msgstr "Det trengs v2-godkjenning (Keystone); v1 (Swauth) støttes ikke."
3710
-
3711
- #: src/templates/wp-admin/settings/form-contents.php:260
3712
- msgid "your site's admin address"
3713
- msgstr "Adressen til kontrollpanelet"
3714
-
3715
- #: src/templates/wp-admin/settings/form-contents.php:260
3716
- msgid "Check this box to have a basic report sent to"
3717
- msgstr "Huk av her for å sende en enkel rapport til"
3718
-
3719
- #: src/admin.php:3717
3720
- msgctxt "i.e. Non-automatic"
3721
- msgid "Manual"
3722
- msgstr "Manuell"
3723
-
3724
- #: src/restorer.php:2784
3725
- msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
3726
- msgid "An error (%s) occurred:"
3727
- msgstr "En feil (%s) oppstod:"
3728
-
3729
- #: src/addons/lockadmin.php:191
3730
- msgid "Change Lock Settings"
3731
- msgstr "Endre låseinnstillinger"
3732
-
3733
- #: src/addons/morefiles.php:258
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 "For flere funksjoner og personlig kundestøtte, besøk"
3740
-
3741
- #: src/addons/moredatabase.php:59
3742
- msgid "Database decryption phrase"
3743
- msgstr "Dekrypteringsfrase for databasen"
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 "Automatisk sikkerhetskopi før oppdatering"
3749
-
3750
- #: src/addons/autobackup.php:122
3751
- msgid "WordPress core (only)"
3752
- msgstr "(Kun) Wordpress-kjerne"
3753
-
3754
- #: src/addons/lockadmin.php:243
3755
- msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
3756
- msgstr "For opplåsningssupport, vennligst henvend deg til den som administrerer UpdraftPlus for deg."
3757
-
3758
- #: src/addons/lockadmin.php:234
3759
- msgid "To access the UpdraftPlus settings, please enter your unlock password"
3760
- msgstr "Skriv inn passordet ditt for å få tilgang til innstillingene for UpdraftPlus."
3761
-
3762
- #: src/addons/lockadmin.php:231
3763
- msgid "Password incorrect"
3764
- msgstr "Feil passord"
3765
-
3766
- #: src/addons/lockadmin.php:219, src/addons/lockadmin.php:225
3767
- msgid "Unlock"
3768
- msgstr "Lås opp"
3769
-
3770
- #: src/addons/lockadmin.php:189
3771
- msgid "Otherwise, the default link will be shown."
3772
- msgstr "Ellers vil standardlinken vises."
3773
-
3774
- #: src/addons/lockadmin.php:189
3775
- msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
3776
- msgstr "Alle som ser denne låseskjermen, vil bli vist denne linken for supporthenvendelser. Skriv inn en URL eller en epostadresse."
3777
-
3778
- #: src/addons/lockadmin.php:189
3779
- msgid "Support URL"
3780
- msgstr "Nettadresse til support"
3781
-
3782
- #: src/addons/lockadmin.php:187
3783
- msgid "Require password again after"
3784
- msgstr "Be om passord på nytt etter"
3785
-
3786
- #: src/addons/lockadmin.php:178, src/addons/lockadmin.php:179
3787
- msgid "%s weeks"
3788
- msgstr "%s uker"
3789
-
3790
- #: src/addons/lockadmin.php:177
3791
- msgid "1 week"
3792
- msgstr "én uke"
3793
-
3794
- #: src/addons/lockadmin.php:175, src/addons/lockadmin.php:176
3795
- msgid "%s hours"
3796
- msgstr "%s timer"
3797
-
3798
- #: src/addons/lockadmin.php:174
3799
- msgid "1 hour"
3800
- msgstr "én time"
3801
-
3802
- #: src/addons/lockadmin.php:163
3803
- msgid "Please make sure that you have made a note of the password!"
3804
- msgstr "Husk å notere passordet!"
3805
-
3806
- #: src/addons/lockadmin.php:156,
3807
- #: src/templates/wp-admin/advanced/lock-admin.php:8
3808
- msgid "Lock access to the UpdraftPlus settings page"
3809
- msgstr "Lås tilgangen til innstillingssiden for UpdraftPlus."
3810
-
3811
- #: src/addons/lockadmin.php:129
3812
- msgid "The admin password has been changed."
3813
- msgstr "Administratorpassordet har blitt forandret."
3814
-
3815
- #: src/addons/lockadmin.php:127
3816
- msgid "An admin password has been set."
3817
- msgstr "Et administratorpassord har nå blitt angitt."
3818
-
3819
- #: src/addons/lockadmin.php:125
3820
- msgid "The admin password has now been removed."
3821
- msgstr "Administratorpassordet ble fjernet."
3822
-
3823
- #: src/addons/morefiles.php:141
3824
- msgid "(learn more about this significant option)"
3825
- msgstr "(lær mer om denne viktige innstillingen)"
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 "Etter at du har hentet alle utvidelsene dine, kan du tømme passordfeltet nederst på siden. Det vil ikke hindre oppdatering av utvidelsene. Du må imidlertid la e-postadressen stå."
3830
-
3831
- #: src/admin.php:3209, src/admin.php:4278
3832
- msgid "View Log"
3833
- msgstr "Vis logg"
3834
-
3835
- #: src/templates/wp-admin/settings/existing-backups-table.php:18,
3836
- #: src/templates/wp-admin/settings/existing-backups-table.php:97
3837
- msgid "Backup data (click to download)"
3838
- msgstr "Innhold (trykk for å laste ned)"
3839
-
3840
- #: src/templates/wp-admin/settings/existing-backups-table.php:17,
3841
- #: src/templates/wp-admin/settings/existing-backups-table.php:64
3842
- msgid "Backup date"
3843
- msgstr "Sikkerhetskopieringsdato"
3844
-
3845
- #: src/templates/wp-admin/settings/form-contents.php:42,
3846
- #: src/templates/wp-admin/settings/form-contents.php:75
3847
- msgid "and retain this many scheduled backups"
3848
- msgstr "og behold dette antallet planlagte sikkerhetskopier"
3849
-
3850
- #: src/admin.php:3673
3851
- msgid "incremental backup; base backup: %s"
3852
- msgstr "Inkrementell sikkerhetskopiering; Grunnleggende sikkerhetskopi: %s"
3853
-
3854
- #: src/templates/wp-admin/advanced/lock-admin.php:19
3855
- msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
3856
- msgstr "For å kunne låse tilgangen til UpdraftPlus-innstillingene med et passord, må du oppgradere til Premium."
3857
-
3858
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:69,
3859
- #: src/templates/wp-admin/settings/tab-backups.php:71
3860
- msgid "Upload files into UpdraftPlus."
3861
- msgstr "Last opp filer til UpdraftPlus."
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 "Du kan ikke lage gjenopprettingskopier. Gjenopprettingsmappen din er ikke skrivbar. Gå til innstillingsfanen og finn den aktuelle innstillingen."
3867
-
3868
- #: src/class-updraftplus.php:3990
3869
- msgid "Backup label:"
3870
- msgstr "Gjenopprettingsmerkelapp:"
3871
-
3872
- #: src/addons/backblaze.php:205, src/admin.php:2113
3873
- msgid "Error: unexpected file read fail"
3874
- msgstr "Uventet feil ved lesing av fil"
3875
-
3876
- #: src/backup.php:3437
3877
- msgid "check your log for more details."
3878
- msgstr "Sjekk loggen dersom du ønsker mer informasjon."
3879
-
3880
- #: src/backup.php:3435
3881
- msgid "your web hosting account appears to be full; please see: %s"
3882
- msgstr "Skylagringskontoen din ser ut til å være full. Se følgende link for mer informasjon: %s"
3883
-
3884
- #: src/backup.php:3433
3885
- msgid "A zip error occurred"
3886
- msgstr "Det oppstod en zip-feil"
3887
-
3888
- #: src/addons/reporting.php:67
3889
- msgid "Your label for this backup (optional)"
3890
- msgstr "Merkelapp for denne sikkerhetskopien (valgfritt)"
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 "%s tillater ikke autorisering av sider som ligger direkte på en IP-adresse. Du må forandre din sides adresse til et domene (%s) før du kan bruke %s for lagring."
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 "Du skrev inn en epostadresse som ikke ble gjenkjent av UpdraftPlus.com."
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 "E-postadressen er riktig, men passordet ble ikke gjenkjent av UpdraftPlus.com."
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 "Du må oppgi både en epostadresse og et passord."
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 "Hvis du ønsker å gjenopprette en sikkerhetskopi som inneholder en flersideinstallasjon av Wordpress, må du først sette opp nåværende installasjon som flerside."
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 "Sikkerhetskopien din inneholder en Wordpress-installasjon med flere websider. Kun den første siden i nettverket vil være tilgjengelig."
3915
-
3916
- #: src/addons/migrator.php:1252
3917
- msgid "already done"
3918
- msgstr "allerede gjort"
3919
-
3920
- #: src/addons/migrator.php:1209
3921
- msgid "skipped (not in list)"
3922
- msgstr "hoppet over (ikke i listen)"
3923
-
3924
- #: src/addons/migrator.php:1209, src/addons/migrator.php:1252,
3925
- #: src/addons/migrator.php:1386
3926
- msgid "Search and replacing table:"
3927
- msgstr "Søk og erstatt-tabell:"
3928
-
3929
- #: src/addons/migrator.php:387
3930
- msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
3931
- msgstr "Skriv inn en kommaseparert liste; eller la den stå tom for alle tabeller."
3932
-
3933
- #: src/addons/migrator.php:387
3934
- msgid "These tables only"
3935
- msgstr "Bare disse tabellene"
3936
-
3937
- #: src/addons/migrator.php:386
3938
- msgid "Rows per batch"
3939
- msgstr "Rader per parti"
3940
-
3941
- #: src/udaddons/options.php:98
3942
- msgid "You have not yet connected with your UpdraftPlus.Com account."
3943
- msgstr "Du har ennå ikke koblet til din UpdraftPlus.Com konto."
3944
-
3945
- #: src/udaddons/options.php:96, src/udaddons/options.php:98
3946
- msgid "You need to connect to receive future updates to UpdraftPlus."
3947
- msgstr "Du må koble til for å motta fremtidige oppdateringer av UpdraftPlus."
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 "Eventuelle forespørsler om støtte vedrørende %s bør tas opp med din webhotell leverandør."
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 "Du bør kun fortsette hvis du ikke kan oppdatere gjeldende server og er sikker (eller villig til å risikere) at plugins / themes / etc. er kompatible med den eldre %s versjonen."
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 "Dette er betydelig nyere enn den serveren der du nå gjenoppretter til (versjon %s)."
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 "Nettstedet i denne sikkerhetskopien ble kjørt på en webserver med versjon %s av %s."
3964
-
3965
- #: src/includes/updraftplus-notices.php:133,
3966
- #: src/includes/updraftplus-notices.php:134
3967
- msgid "LinkedIn"
3968
- msgstr "LinkedIn"
3969
-
3970
- #: src/includes/updraftplus-notices.php:133,
3971
- #: src/includes/updraftplus-notices.php:134
3972
- msgid "Google+"
3973
- msgstr "Google+"
3974
-
3975
- #: src/includes/updraftplus-notices.php:133,
3976
- #: src/includes/updraftplus-notices.php:134
3977
- msgid "Facebook"
3978
- msgstr "Facebook"
3979
-
3980
- #: src/includes/updraftplus-notices.php:133,
3981
- #: src/includes/updraftplus-notices.php:134,
3982
- #: src/templates/wp-admin/settings/header.php:16
3983
- msgid "Twitter"
3984
- msgstr "Twitter"
3985
-
3986
- #: src/includes/updraftplus-notices.php:132
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 "Hvorfor ser jeg dette?"
3993
-
3994
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
3995
- #: src/templates/wp-admin/settings/tab-backups.php:59
3996
- msgid "The location of this directory is set in the expert settings, in the Settings tab."
3997
- msgstr "Plasseringen til denne mappen er satt i ekspertinnstillinger i kategorien Innstillinger."
3998
-
3999
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
4000
- #: src/templates/wp-admin/settings/tab-backups.php:59
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 "Trykk her for å se i UpdraftPlus mappen (på ditt webhotell) for eventuelle nye sikkerhetskopier som du har lastet opp."
4003
-
4004
- #: src/admin.php:2050, src/admin.php:2062, src/includes/class-commands.php:833
4005
- msgid "Start backup"
4006
- msgstr "Start sikkerhetskopiering"
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 "Du bruker %s webserver, men det ser ikke ut som du har %s modulen lastet."
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 "Du må gi UpdraftPlus skrivetillatelse til mappen. Dersom du ikke vet hvordan du gjør det, kan du ta kontakt med ISP-en som leverer webhotellet ditt."
4015
-
4016
- #: src/templates/wp-admin/advanced/advanced-tools.php:6
4017
- msgid "Unless you have a problem, you can completely ignore everything here."
4018
- msgstr "Med mindre det har oppstått et problem, kan du se bort ifra det som står her."
4019
-
4020
- #: src/admin.php:2288
4021
- msgid "This file could not be uploaded"
4022
- msgstr "Denne filen kunne ikke lastes opp"
4023
-
4024
- #: src/admin.php:2251
4025
- msgid "You will find more information about this in the Settings section."
4026
- msgstr "Du finner mer informasjon om dette i innstillingsseksjonen."
4027
-
4028
- #: src/addons/importer.php:78
4029
- msgid "Supported backup plugins: %s"
4030
- msgstr "Støttede backup plugins: %s"
4031
-
4032
- #: src/addons/importer.php:78
4033
- msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognized - please follow this link."
4034
- msgstr ""
4035
-
4036
- #: src/templates/wp-admin/advanced/site-info.php:44
4037
- msgid "Memory limit"
4038
- msgstr "Minnegrense "
4039
-
4040
- #: src/includes/class-filesystem-functions.php:233, src/restorer.php:2006
4041
- msgid "restoration"
4042
- msgstr "gjenoppretting"
4043
-
4044
- #: src/backup.php:1037
4045
- msgid "Incremental"
4046
- msgstr "Inkrementell"
4047
-
4048
- #: src/backup.php:1037
4049
- msgid "Full backup"
4050
- msgstr "Fullstendig sikkerhetskopi"
4051
-
4052
- #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4053
- msgid "now proceeding with the updates..."
4054
- msgstr "fortsetter nå med oppdateringen"
4055
-
4056
- #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4057
- msgid "(view log...)"
4058
- msgstr "(se logg...)"
4059
-
4060
- #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4061
- msgid "Backup succeeded"
4062
- msgstr "Sikkerhetskopi fullført"
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 "Hver %s time"
4070
-
4071
- #: src/addons/migrator.php:903, src/addons/migrator.php:905
4072
- msgid "search and replace"
4073
- msgstr "søk og erstatt"
4074
-
4075
- #: src/addons/migrator.php:389
4076
- msgid "Go"
4077
- msgstr "Kjør"
4078
-
4079
- #: src/addons/migrator.php:378
4080
- msgid "A search/replace cannot be undone - are you sure you want to do this?"
4081
- msgstr "Et søk / erstatt kan ikke gjøres om - er du sikker på at du vil gjøre dette?"
4082
-
4083
- #: src/addons/migrator.php:377
4084
- msgid "This can easily destroy your site; so, use it with care!"
4085
- msgstr "Dette kan lett ødelegge ditt nettsted; så bruk det med omhu!"
4086
-
4087
- #: src/addons/migrator.php:333, src/addons/migrator.php:385
4088
- msgid "Replace with"
4089
- msgstr "Erstatt med"
4090
-
4091
- #: src/addons/migrator.php:332, src/addons/migrator.php:384
4092
- msgid "Search for"
4093
- msgstr "Søk etter"
4094
-
4095
- #: src/addons/migrator.php:331, src/addons/migrator.php:376,
4096
- #: src/templates/wp-admin/advanced/search-replace.php:7,
4097
- #: src/templates/wp-admin/advanced/tools-menu.php:18
4098
- msgid "Search / replace database"
4099
- msgstr "Søk / erstatt database"
4100
-
4101
- #: src/addons/migrator.php:337
4102
- msgid "search term"
4103
- msgstr "søkeord"
4104
-
4105
- #: src/restorer.php:2812
4106
- msgid "Too many database errors have occurred - aborting"
4107
- msgstr "For mange databasefeil har forekommet - avbryter"
4108
-
4109
- #: src/backup.php:1103
4110
- msgid "read more at %s"
4111
- msgstr "les mer på %s"
4112
-
4113
- #: src/backup.php:1103
4114
- msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4115
- msgstr "E-post rapporter som er opprettet av UpdraftPlus (gratis utgave) bringer deg de siste UpdraftPlus.com nyhetene"
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 "N.B. Hvis du installerer UpdraftPlus på flere WordPress nettsteder, så kan du ikke gjenbruke prosjektet; du må opprette et nytt i Google-API-konsollen for hvert nettsted."
4120
-
4121
- #: src/includes/class-backup-history.php:69
4122
- msgid "You have not yet made any backups."
4123
- msgstr "Du har ikke opprettet noen sikkerhetskopier ennå. "
4124
-
4125
- #: src/templates/wp-admin/settings/form-contents.php:152
4126
- msgid "Database Options"
4127
- msgstr "Database"
4128
-
4129
- #: src/templates/wp-admin/advanced/site-info.php:95
4130
- msgid "Plugins for debugging:"
4131
- msgstr "Utvidelser for feilsøkning:"
4132
-
4133
- #: src/templates/wp-admin/advanced/site-info.php:74
4134
- msgid "%s (%s used)"
4135
- msgstr "%s (%s brukt)"
4136
-
4137
- #: src/templates/wp-admin/advanced/site-info.php:74
4138
- msgid "Free disk space in account:"
4139
- msgstr "Ledig lagringsplass på kontoen:"
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 "Denne knappen er deaktivert fordi sikkerhetskopi mappen er skrivebeskyttet (se innstillingene)."
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,
4149
- #: src/templates/wp-admin/settings/tab-backups.php:44
4150
- msgid "Existing Backups"
4151
- msgstr "Sikkerhetskopier"
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 "Konfigurér sikkerhetskopieringen i innstillingene."
4156
-
4157
- #: src/admin.php:1143
4158
- msgid "To make a backup, just press the Backup Now button."
4159
- msgstr "Trykk på «kopiér nå» for å lage en sikkerhetskopi."
4160
-
4161
- #: src/admin.php:1143
4162
- msgid "Welcome to UpdraftPlus!"
4163
- msgstr "Velkommen til UpdraftPlus!"
4164
-
4165
- #: src/addons/moredatabase.php:318
4166
- msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
4167
- msgstr "Hvis du skriver inn tekst her, blir det brukt for å kryptere sikkerhetskopiene av databaser (Rijndael kryptering brukes). <strong> Lagre en egen kopi av dette og ikke mist det, ellers vil <em>alle</em> sikkerhetskopiene være ubrukelig. </strong> Dette er også nøkkelen som brukes for å dekryptere sikkerhetskopiene fra dette admin-grensesnitt (så hvis du endrer det, så vil den automatisk dekryptering ikke fungere før du endrer det tilbake)."
4168
-
4169
- #: src/addons/moredatabase.php:257
4170
- msgid "Testing..."
4171
- msgstr "Tester..."
4172
-
4173
- #: src/addons/moredatabase.php:244
4174
- msgid "Test connection..."
4175
- msgstr "Test tilkobling..."
4176
-
4177
- #: src/addons/moredatabase.php:243
4178
- msgid "Table prefix"
4179
- msgstr "Tabell prefiks"
4180
-
4181
- #: src/addons/moredatabase.php:237
4182
- msgid "Backup external database"
4183
- msgstr "Sikkerhetskopi ekstern database"
4184
-
4185
- #: src/addons/moredatabase.php:177
4186
- msgid "Add an external database to backup..."
4187
- msgstr "Legg til en ekstern database i sikkerhetskopien ..."
4188
-
4189
- #: src/addons/moredatabase.php:173
4190
- msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
4191
- msgstr "Hvis databasen inneholder ekstra tabeller som ikke er en del av dette WordPress nettstedet (du vet om dette er tilfelle), aktivere dette valget for å sikkerhetskopiere de også."
4192
-
4193
- #: src/addons/moredatabase.php:172
4194
- msgid "Backup non-WordPress tables contained in the same database as WordPress"
4195
- msgstr "Sikkerhetskopier tabeller som IKKE er WordPress tabeller, men som finnes i den samme databasen som WordPress"
4196
-
4197
- #: src/addons/moredatabase.php:172
4198
- msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
4199
- msgstr "Dette valget vil føre til at tabeller lagret i MySQL-databasen som ikke tilhører WordPress (identifisert av at de mangler den konfigurerte WordPress prefiksen,%s) også vil bli sikkerhetskopiert."
4200
-
4201
- #: src/addons/moredatabase.php:157
4202
- msgid "Connection failed."
4203
- msgstr "Tilkobling mislyktes."
4204
-
4205
- #: src/addons/moredatabase.php:155
4206
- msgid "Connection succeeded."
4207
- msgstr "Tilkobling var vellykket."
4208
-
4209
- #: src/addons/moredatabase.php:137
4210
- msgid "%s total table(s) found; %s with the indicated prefix."
4211
- msgstr "%s totalt antall tabell(er) funnet; %s med den with the indicated prefix."
4212
-
4213
- #: src/addons/moredatabase.php:131
4214
- msgid "%s table(s) found."
4215
- msgstr "%s tabell(er) funnet."
4216
-
4217
- #: src/addons/moredatabase.php:104
4218
- msgid "database connection attempt failed"
4219
- msgstr "tilkoblingsforsøk til databasen mislyktes"
4220
-
4221
- #: src/addons/moredatabase.php:93
4222
- msgid "database name"
4223
- msgstr "databasenavn"
4224
-
4225
- #: src/addons/moredatabase.php:91
4226
- msgid "host"
4227
- msgstr "vert"
4228
-
4229
- #: src/addons/moredatabase.php:89
4230
- msgid "user"
4231
- msgstr "bruker"
4232
-
4233
- #: src/class-updraftplus.php:1736
4234
- msgid "External database (%s)"
4235
- msgstr "Ekstern database (%s)"
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 "Følg denne linken til din Google API konsoll, og der aktiverer du Drive API og lager en klient-ID i API tilgangsdelen."
4240
-
4241
- #: src/methods/googledrive.php:502
4242
- msgid "failed to access parent folder"
4243
- msgstr "klarte å få tilgang til foreldremappen"
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 "Men etterfølgende forsøk feilet:"
4250
-
4251
- #: src/addons/wp-cli.php:437, src/admin.php:4034
4252
- msgid "External database"
4253
- msgstr "Ekstern database"
4254
-
4255
- #: src/templates/wp-admin/settings/form-contents.php:304
4256
- msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
4257
- msgstr "Dette vil også føre til at feilmeldinger fra alle andre utvidelser vil bli vist på denne siden - du bør ikke bli overrasket over å se disse."
4258
-
4259
- #: src/templates/wp-admin/settings/form-contents.php:233
4260
- msgid "Backup more databases"
4261
- msgstr ""
4262
-
4263
- #: src/templates/wp-admin/settings/form-contents.php:192
4264
- msgid "First, enter the decryption key"
4265
- msgstr "Først, skriv inn dekrypteringsnøkkelen"
4266
-
4267
- #: src/templates/wp-admin/settings/form-contents.php:175
4268
- msgid "You can manually decrypt an encrypted database here."
4269
- msgstr "Du kan manuelt dekryptere en kryptert database her."
4270
-
4271
- #: src/templates/wp-admin/settings/form-contents.php:161
4272
- msgid "It can also backup external databases."
4273
- msgstr "Den kan også sikkerhetskopiere eksterne databaser."
4274
-
4275
- #: src/templates/wp-admin/settings/form-contents.php:161
4276
- msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
4277
- msgstr "Ønsker du å ikke bli spionert på? UpdraftPlus Premium kan kryptere sikkerhetskopien av databasen."
4278
-
4279
- #: src/templates/wp-admin/settings/form-contents.php:87
4280
- msgid "use UpdraftPlus Premium"
4281
- msgstr "bruk UpdraftPlus Premium"
4282
-
4283
- #: src/class-updraftplus.php:3833
4284
- msgid "Decryption failed. The database file is encrypted."
4285
- msgstr "Dekryptering mislyktes. Database filen er kryptert."
4286
-
4287
- #: src/includes/class-wpadmin-commands.php:149
4288
- msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
4289
- msgstr "Bare WordPress databasen kan bli gjenopprettet; du må behandle den eksterne databasen manuelt."
4290
-
4291
- #: src/restorer.php:2284, src/restorer.php:2753, src/restorer.php:2794,
4292
- #: src/restorer.php:2807
4293
- msgid "An error occurred on the first %s command - aborting run"
4294
- msgstr "Det oppstod en feil på den første %s kommandoen - avbryter kjøring"
4295
-
4296
- #: src/addons/moredatabase.php:112, src/backup.php:1603
4297
- msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
4298
- msgstr "Tilkobling mislyktes: sjekk dine påloggings detaljer, at databasetjeneren er oppe, og at nettverksforbindelsen ikke har brannmur."
4299
-
4300
- #: src/backup.php:1603
4301
- msgid "database connection attempt failed."
4302
- msgstr "database tilkoblingsforsøk mislyktes."
4303
-
4304
- #: src/addons/migrator.php:1140
4305
- msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
4306
- msgstr "Advarsel::databasens hoved URL (%s) er annerledes enn hva vi forventet (%s)"
4307
-
4308
- #: src/addons/google-enhanced.php:78
4309
- msgid "In %s, path names are case sensitive."
4310
- msgstr "I %s skiller banenavnene mellom store og små bokstaver."
4311
-
4312
- #: src/addons/azure.php:638, src/addons/google-enhanced.php:76,
4313
- #: src/addons/onedrive.php:1188
4314
- msgid "If you leave it blank, then the backup will be placed in the root of your %s"
4315
- msgstr "Hvis du lar det stå tomt, så vil sikkerhetskopien vil bli plassert i roten av %s"
4316
-
4317
- #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1039,
4318
- #: src/addons/onedrive.php:1188
4319
- msgid "e.g. %s"
4320
- msgstr "f.eks %s"
4321
-
4322
- #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1188
4323
- msgid "Enter the path of the %s folder you wish to use here."
4324
- msgstr "Fyll inn banen til %s-mappen du ønsker å bruke her."
4325
-
4326
- #: src/methods/openstack2.php:170
4327
- msgid "Container"
4328
- msgstr "plassholder"
4329
-
4330
- #: src/methods/openstack2.php:153
4331
- msgid "Leave this blank, and a default will be chosen."
4332
- msgstr "La dette stå tomt og en standard vil bli valgt."
4333
-
4334
- #: src/methods/openstack2.php:144
4335
- msgid "Tenant"
4336
- msgstr "Leier"
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,
4342
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:14
4343
- msgid "Follow this link for more information"
4344
- msgstr "Følg denne linken for mer informasjon"
4345
-
4346
- #: src/methods/openstack2.php:136, src/methods/openstack2.php:195
4347
- msgid "authentication URI"
4348
- msgstr "autentiserings URL"
4349
-
4350
- #: src/methods/openstack2.php:120
4351
- msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
4352
- msgstr "Få påloggingsdetaljer fra din Openstack Swift leverandør, og deretter velger du beholder-navnet som skal brukes til lagring. Denne beholderen vil bli opprettet for deg hvis den ikke allerede finnes."
4353
-
4354
- #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225
4355
- msgid "Failed to download %s"
4356
- msgstr "Klarte ikke å laste ned %s"
4357
-
4358
- #: src/methods/addon-base-v2.php:219
4359
- msgid "Failed to download"
4360
- msgstr "Klarte ikke å laste ned"
4361
-
4362
- #: src/methods/addon-base-v2.php:125
4363
- msgid "failed to list files"
4364
- msgstr "klarte ikke å liste filer"
4365
-
4366
- #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98
4367
- msgid "Failed to upload %s"
4368
- msgstr "Kunne ikke laste opp %s"
4369
-
4370
- #: src/methods/dropbox.php:806, src/methods/dropbox.php:808
4371
- msgid "Success:"
4372
- msgstr "Velykket:"
4373
-
4374
- #: src/methods/backup-module.php:546
4375
- msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
4376
- msgstr "<strong> Etter </strong> at du har lagret innstillingene (ved å klikke på \"Lagre endringer\" nedenfor), kom så tilbake hit en gang til og klikk på denne linken for å fullføre godkjenningen med %s."
4377
-
4378
- #: src/addons/onedrive.php:1212, src/methods/dropbox.php:615
4379
- msgid "(You appear to be already authenticated)."
4380
- msgstr "(Det ser ut som du allerede er godkjent)."
4381
-
4382
- #: src/methods/dropbox.php:611
4383
- msgid "Dropbox"
4384
- msgstr "Dropbox"
4385
-
4386
- #: src/addons/onedrive.php:1205, src/methods/dropbox.php:611
4387
- msgid "Authenticate with %s"
4388
- msgstr "Godkjenn med %s"
4389
-
4390
- #: src/methods/cloudfiles.php:400, src/methods/openstack-base.php:455
4391
- msgid "Error downloading remote file: Failed to download"
4392
- msgstr "Feil ved nedlasting av ekstern fil: Klarte ikke å laste ned"
4393
-
4394
- #: src/methods/openstack-base.php:526, src/methods/openstack-base.php:531
4395
- msgid "Region: %s"
4396
- msgstr "Område: %s"
4397
-
4398
- #: src/methods/openstack-base.php:525
4399
- msgid "%s error - we accessed the container, but failed to create a file within it"
4400
- msgstr "%s feil - vi fikk tilgang til beholderen, men klarte ikke opprette en fil i den"
4401
-
4402
- #: src/methods/openstack-base.php:441
4403
- msgid "The %s object was not found"
4404
- msgstr "Det %s objektet ble ikke funnet"
4405
-
4406
- #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:364,
4407
- #: src/methods/openstack-base.php:433
4408
- msgid "Could not access %s container"
4409
- msgstr "Klarte ikke få tilgang til %s beholder"
4410
-
4411
- #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:123,
4412
- #: src/methods/openstack-base.php:130, src/methods/openstack-base.php:356,
4413
- #: src/methods/openstack-base.php:421
4414
- msgid "%s error - failed to access the container"
4415
- msgstr "%s feil - fikk ikke tilgang til beholderen"
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 "Kontoeierens navn er %s."
4421
-
4422
- #: src/methods/googledrive.php:1266
4423
- msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4424
- msgstr "For å få tilgang til å sette et egendefinert mappenavn, bruk UpdraftPlus Premium."
4425
-
4426
- #: src/methods/googledrive.php:1253
4427
- msgid "It is an ID number internal to Google Drive"
4428
- msgstr "Det er et ID nummer internt i Google Drive"
4429
-
4430
- #: src/methods/googledrive.php:1253
4431
- msgid "<strong>This is NOT a folder name</strong>."
4432
- msgstr "<strong>Dette er IKKE et mappenavn</strong>."
4433
-
4434
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1248,
4435
- #: src/methods/googledrive.php:1259
4436
- msgid "Folder"
4437
- msgstr "Mappe"
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 "%s nedlasting: feilet: fil ikke funnet"
4443
-
4444
- #: src/addons/googlecloud.php:718, src/methods/googledrive.php:475
4445
- msgid "Name: %s."
4446
- msgstr "Navn: %s."
4447
-
4448
- #: src/methods/googledrive.php:216
4449
- msgid "Google Drive list files: failed to access parent folder"
4450
- msgstr "Google Disk list filer: fikk ikke tilgang til overordnet mappe"
4451
-
4452
- #: src/methods/addon-not-yet-present.php:99, src/methods/insufficient.php:121
4453
- msgid "Your %s version: %s."
4454
- msgstr "Din %s versjon: %s."
4455
-
4456
- #: src/methods/addon-not-yet-present.php:98, src/methods/insufficient.php:120
4457
- msgid "You will need to ask your web hosting company to upgrade."
4458
- msgstr "Du må be din webhotell leverandør oppgradere."
4459
-
4460
- #: src/methods/addon-not-yet-present.php:19, src/methods/insufficient.php:21
4461
- msgid "This remote storage method (%s) requires PHP %s or later."
4462
- msgstr "Denne metoden for fjernlagring (%s) behøver PHP %s eller senere."
4463
-
4464
- #: src/templates/wp-admin/advanced/site-info.php:100
4465
- msgid "Call"
4466
- msgstr "Kall"
4467
-
4468
- #: src/templates/wp-admin/advanced/site-info.php:98,
4469
- #: src/templates/wp-admin/advanced/site-info.php:98
4470
- msgid "Fetch"
4471
- msgstr "Hent"
4472
-
4473
- #: src/addons/migrator.php:501,
4474
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
4475
- #: src/templates/wp-admin/settings/form-contents.php:182,
4476
- #: src/templates/wp-admin/settings/tab-backups.php:74
4477
- msgid "This feature requires %s version %s or later"
4478
- msgstr "Denne funksjonen krever %s versjon %s eller senere"
4479
-
4480
- #: src/restorer.php:531
4481
- msgid "Failed to unpack the archive"
4482
- msgstr "Klarte ikke pakke ut arkivet"
4483
-
4484
- #: src/class-updraftplus.php:1366
4485
- msgid "Error - failed to download the file"
4486
- msgstr "Feil - klarte ikke å laste ned filen"
4487
-
4488
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
4489
- #: src/templates/wp-admin/settings/tab-backups.php:59
4490
- msgid "Rescan local folder for new backup sets"
4491
- msgstr "Nytt søk i lokal mappe etter nye sikkerhetskopier"
4492
-
4493
- #: src/udaddons/updraftplus-addons.php:259
4494
- msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
4495
- msgstr "Du bør oppdatere UpdraftPlus slik at du er sikker på å ha en versjon som er kompabilitetstestet."
4496
-
4497
- #: src/udaddons/updraftplus-addons.php:259
4498
- msgid "It has been tested up to version %s."
4499
- msgstr "Den har blitt testet opp til versjon %s."
4500
-
4501
- #: src/udaddons/updraftplus-addons.php:259
4502
- msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
4503
- msgstr "Den installerte versjonen av UpdraftPlus er ikke testet mot din versjon av WordPress (%s)."
4504
-
4505
- #: src/addons/sftp.php:530
4506
- msgid "password/key"
4507
- msgstr "Passord/nøkkel"
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 "Nøkkel"
4513
-
4514
- #: src/addons/sftp.php:462
4515
- msgid "Your login may be either password or key-based - you only need to enter one, not both."
4516
- msgstr "Din innlogging kan være enten passord eller nøkkelbasert - du trenger bare oppgi en, ikke begge."
4517
-
4518
- #: src/addons/sftp.php:343
4519
- msgid "The key provided was not in a valid format, or was corrupt."
4520
- msgstr "Nøkkelen du oppgav var ikke i rett format, eller var korrupt."
4521
-
4522
- #: src/addons/sftp.php:49
4523
- msgid "SCP/SFTP password/key"
4524
- msgstr "SCP/SFTP passord/nøkkel"
4525
-
4526
- #: src/addons/wp-cli.php:449, src/admin.php:4078
4527
- msgid "Files backup (created by %s)"
4528
- msgstr "Fil Sikkerhetskopi (generert av %s)"
4529
-
4530
- #: src/addons/wp-cli.php:449, src/admin.php:4078
4531
- msgid "Files and database WordPress backup (created by %s)"
4532
- msgstr "Fil og database WordPress sikkerhetskopi (generert av %s)"
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 "Sikkerhetskopi generert av: %s."
4538
-
4539
- #: src/addons/wp-cli.php:431, src/admin.php:4032
4540
- msgid "Database (created by %s)"
4541
- msgstr "Database (generert av %s)"
4542
-
4543
- #: src/addons/wp-cli.php:429, src/admin.php:4026, src/admin.php:4074
4544
- msgid "unknown source"
4545
- msgstr "ukjent kilde"
4546
-
4547
- #: src/templates/wp-admin/advanced/site-info.php:104,
4548
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:56,
4549
- #: src/templates/wp-admin/settings/tab-backups.php:60
4550
- msgid "Rescan remote storage"
4551
- msgstr "Nytt søk i fjernlager"
4552
-
4553
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:51,
4554
- #: src/templates/wp-admin/settings/tab-backups.php:55
4555
- msgid "Upload backup files"
4556
- msgstr "Last opp sikkerhetskopifiler"
4557
-
4558
- #: src/admin.php:2303
4559
- msgid "This backup was created by %s, and can be imported."
4560
- msgstr "Denne sikkerhetskopien ble generert av %s, og kan bli importert."
4561
-
4562
- #: src/admin.php:1172
4563
- msgid "Read this page for a guide to possible causes and how to fix it."
4564
- msgstr "Dette er en veiledning til mulige årsaker og hvordan man kan løse problemet."
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 "Wordpress har %d forfalte oppgaver. Med mindre dette er en side under utvikling, betyr det sannsynligvis at planleggeren i Wordpress-installasjonen din ikke fungerer."
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 "Hvis denne sikkerhetskopien er laget av en annen Wordpress-utvidelse, kan det være du kan importere den med UpdraftPlus Premium."
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 "UpdraftPlus er imidlertid vanlige zip- og SQL-filer, så hvis du er sikker på at filen din har det riktige formatet, kan du gi den et navn som følger det mønsteret."
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 "Denne filen ser ikke ut til å være en sikkerhetskopi laget av UpdraftPlus. Sikkerhetskopiene er zip- eller gz-filer og har navn som følger mønsteret «backup_[tidspunkt]_[sidenavn]_[kode]_[type].[zip eller gz]»."
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 "Sikkerhetskopien er laget av den ukjente kilden %s. Den kan ikke gjenopprettes."
4587
-
4588
- #: src/restorer.php:1259, src/restorer.php:1307
4589
- msgid "The WordPress content folder (wp-content) was not found in this zip file."
4590
- msgstr "Fant ikke Wordpress-mappen wp-content i denne zip-filen."
4591
-
4592
- #: src/restorer.php:1113
4593
- msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
4594
- msgstr "UpdraftPlus kan ikke håndtere denne typen sikkerhetskopi."
4595
-
4596
- #: src/methods/dropbox.php:377
4597
- msgid "%s returned an unexpected HTTP response: %s"
4598
- msgstr "%s returnerte en uventet HTTP-respons: %s"
4599
-
4600
- #: src/addons/sftp.php:1060
4601
- msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
4602
- msgstr "Denne tilgangsmetoden - %s - støtter ikke opplisting av filer."
4603
-
4604
- #: src/addons/backblaze.php:580, src/methods/cloudfiles.php:234,
4605
- #: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
4606
- msgid "No settings were found"
4607
- msgstr "Fant ingen innstillinger."
4608
-
4609
- #: src/includes/class-backup-history.php:610
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 "En eller flere sikkerhetskopier har blitt hentet etter gjennomsøking av fjernlagringen. Disse sikkerhetskopiene vil ikke slettes selv om periodisk sletting er aktivert. Hvis du vil slette dem, må du gjøre det manuelt."
4612
-
4613
- #: src/admin.php:797
4614
- msgid "Rescanning remote and local storage for backup sets..."
4615
- msgstr "Skanner på nytt etter sikkerhetskopier i lokal- og fjernlagring..."
4616
-
4617
- #: src/addons/googlecloud.php:1042, src/addons/googlecloud.php:1055,
4618
- #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
4619
- msgid "(Read more)"
4620
- msgstr "(Les mer)"
4621
-
4622
- #: src/addons/reporting.php:496
4623
- msgid "Log all messages to syslog (only server admins are likely to want this)"
4624
- msgstr "Send alle meldinger til syslog. (Det er som regel bare til nytte for serveradministratorer.)"
4625
-
4626
- #: src/addons/morefiles.php:538
4627
- msgid "No backup of location: there was nothing found to back up"
4628
- msgstr ""
4629
-
4630
- #: src/addons/moredatabase.php:236, src/addons/morefiles.php:297,
4631
- #: src/addons/morefiles.php:318
4632
- msgid "Remove"
4633
- msgstr "Fjern"
4634
-
4635
- #: src/methods/s3.php:873
4636
- msgid "Other %s FAQs."
4637
- msgstr "Andre ofte stilte spørsmål for %s."
4638
-
4639
- #: src/templates/wp-admin/settings/form-contents.php:304
4640
- msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4641
- msgstr "Motta eposter med mer informasjon om sikkerhetskopieringene. Nyttig hvis noe går galt."
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 "Separér flere filer eller mapper med komma. For instanser på toppnivå kan du bruke «*» som jokertegn på begynnelsen eller slutten av banen."
4646
-
4647
- #: src/includes/class-filesystem-functions.php:233, src/methods/ftp.php:330,
4648
- #: src/restorer.php:2006
4649
- msgid "Your hosting company must enable these functions before %s can work."
4650
- msgstr "Webhotelleverandøren din må aktivere disse funksjonene for at %s skal fungere."
4651
-
4652
- #: src/includes/class-filesystem-functions.php:233, src/methods/ftp.php:330
4653
- msgid "Your web server's PHP installation has these functions disabled: %s."
4654
- msgstr "PHP-installasjonen på webserveren din har disse funksjonene deaktivert: %s"
4655
-
4656
- #: src/methods/ftp.php:327
4657
- msgid "encrypted FTP (explicit encryption)"
4658
- msgstr "kryptert FTP (eksplisitt kryptering)"
4659
-
4660
- #: src/methods/ftp.php:326
4661
- msgid "encrypted FTP (implicit encryption)"
4662
- msgstr "kryptert FTP (implisert kryptering)"
4663
-
4664
- #: src/methods/ftp.php:325
4665
- msgid "regular non-encrypted FTP"
4666
- msgstr "vanlig ikke-kryptert FTP"
4667
-
4668
- #: src/restorer.php:2192
4669
- msgid "Backup created by:"
4670
- msgstr "Sikkerhetskopi opprettet av:"
4671
-
4672
- #: src/udaddons/options.php:483
4673
- msgid "Available to claim on this site"
4674
- msgstr "Kan hentes på denne siden"
4675
-
4676
- #: src/udaddons/updraftplus-addons.php:288
4677
- msgid "To maintain your access to support, please renew."
4678
- msgstr "For å fortsatt ha tilgang til support, må du fornye abonnementet ditt."
4679
-
4680
- #: src/udaddons/updraftplus-addons.php:288
4681
- msgid "Your paid access to UpdraftPlus support will soon expire."
4682
- msgstr "Ditt abonnement på kundestøtte går snart ut."
4683
-
4684
- #: src/udaddons/updraftplus-addons.php:286
4685
- msgid "To regain your access, please renew."
4686
- msgstr "For å få tilgang igjen, må du fornye abonnementet ditt."
4687
-
4688
- #: src/udaddons/updraftplus-addons.php:286
4689
- msgid "Your paid access to UpdraftPlus support has expired."
4690
- msgstr "Abonnementet på kundestøtte har løpt ut."
4691
-
4692
- #: src/udaddons/updraftplus-addons.php:278
4693
- msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
4694
- msgstr "Ditt abonnement på oppdateringer går snart ut."
4695
-
4696
- #: src/udaddons/updraftplus-addons.php:276,
4697
- #: src/udaddons/updraftplus-addons.php:278
4698
- msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
4699
- msgstr "For å beholde tilgang, i tillegg til oppdateringer og kundestøtte, må du fornye abonnementet ditt."
4700
-
4701
- #: src/udaddons/updraftplus-addons.php:276
4702
- msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
4703
- msgstr "Ditt abonnement på oppdateringer for %s i %s-utvidelsene på denne siden løper snart ut."
4704
-
4705
- #: src/udaddons/updraftplus-addons.php:272
4706
- msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
4707
- msgstr "Ditt abonnement på oppdateringer for %s-utvidelser på denne siden har løpt ut."
4708
-
4709
- #: src/udaddons/updraftplus-addons.php:266,
4710
- #: src/udaddons/updraftplus-addons.php:272
4711
- msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
4712
- msgstr "For å få tilgang til oppdateringer og kundestøtte igjen må du fornøye abonnementet ditt."
4713
-
4714
- #: src/udaddons/updraftplus-addons.php:266
4715
- msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
4716
- msgstr "Abonnementet på oppdateringer har løpt ut. Du vil ikke lenger motta oppdateringer."
4717
-
4718
- #: src/udaddons/updraftplus-addons.php:228
4719
- msgid "Dismiss from main dashboard (for %s weeks)"
4720
- msgstr "Skjul fra kontrollpanelet i %s uker"
4721
-
4722
- #: src/includes/class-filesystem-functions.php:284
4723
- msgid "The attempt to undo the double-compression succeeded."
4724
- msgstr "Dobbelkomprimeringen ble opphevet."
4725
-
4726
- #: src/includes/class-filesystem-functions.php:260,
4727
- #: src/includes/class-filesystem-functions.php:282
4728
- msgid "The attempt to undo the double-compression failed."
4729
- msgstr "Forsøket på å oppheve dobbelkomprimeringen mislyktes."
4730
-
4731
- #: src/includes/class-filesystem-functions.php:253
4732
- msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
4733
- msgstr "Det ser ut som databasefilen har blitt dobbelkomprimert. Det kan være websiden du lastet den ned fra hadde en feilkonfigurert server."
4734
-
4735
- #: src/includes/class-wpadmin-commands.php:328
4736
- msgid "Constants"
4737
- msgstr "Konstanter"
4738
-
4739
- #: src/backup.php:1840
4740
- msgid "Failed to open database file for reading:"
4741
- msgstr "Klarte ikke lese databasefilen:"
4742
-
4743
- #: src/backup.php:1651
4744
- msgid "No database tables found"
4745
- msgstr "Ingen tabeller ble funnet i databasen"
4746
-
4747
- #: src/backup.php:1649
4748
- msgid "please wait for the rescheduled attempt"
4749
- msgstr "vennligst vent på det nye planlagte forsøket"
4750
-
4751
- #: src/addons/reporting.php:218
4752
- msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
4753
- msgstr "Vær klar over at disse advarslene er kun for informasjon - backup prosessen stopper ikke. I stedet gir de informasjon som kan være nyttig for deg eller de gir deg indikasjon på årsaken til problemer dersom backup ikke ble fullført."
4754
-
4755
- #: src/addons/onedrive.php:112, src/methods/dropbox.php:267
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 "Kontoen er full: din %s konto har bare %d bytes tilgjengelig, mens filen som skal lastes opp har %d bytes gjenstående (total størrelse: %d bytes)"
4758
-
4759
- #: src/udaddons/updraftplus-addons.php:479,
4760
- #: src/udaddons/updraftplus-addons.php:568
4761
- msgid "Errors occurred:"
4762
- msgstr "Feil har oppstått:"
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 "Følg denen linken for å laste ned loggfilen for gjenskaping (nødvendig for support henvendelser)."
4767
-
4768
- #: src/templates/wp-admin/settings/form-contents.php:345
4769
- msgid "See this FAQ also."
4770
- msgstr "Se også denne FAQ,"
4771
-
4772
- #: src/templates/wp-admin/settings/form-contents.php:134
4773
- msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
4774
- msgstr "Hvis du ikke velger \"remote storage\" så vil backupene forbli på web serveren. Dette anbales ikke (dersom du ikke planlegger å kopiere dem til din datamaskin), siden det å miste web serveren vil medføre at du mister både nettstedet og backupen på samme tid."
4775
-
4776
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:34
4777
- msgid "Retrieving (if necessary) and preparing backup files..."
4778
- msgstr "Henter (hvis nødvendig) og forbereder backup filene..."
4779
-
4780
- #: src/includes/class-wpadmin-commands.php:133
4781
- msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
4782
- msgstr "PHP instillingene på denne web tjeneren tillater bare %s sekunder kjøretid for PHP, og tillater samtidig ikke at denne begrensningen økes. Dersom du har store mengder data som skal importeres og gjenopprettingen får et tidsavbrudd må du be din web hosting leverandør om å øke denne begrensningen eller forsøke gjenoppretting i deler."
4783
-
4784
- #: src/restorer.php:1106
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 "Mapper fra en tidligere gjenoppretting ble funnet (vennligst benytt \"Slett gamle mapper\" knapper for å slette de før du prøver på nytt): %s"
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 "Tidsbegrensningen for WordPress plugins er veldig lav (%s sekunder) - du anbefales å øke denne for å for å hindre feil forsårsaket av tidsavbrudd. Ta kontakt med din web hosting leverandør for mer hjelp. Anbefalt verdi for max_execution_time PHP er %s sekunder eller høyere."
4791
-
4792
- #: src/addons/migrator.php:304
4793
- msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
4794
- msgstr "Denne plugin er deaktivert: %s: aktiver den på nytt (manuelt) når du er klar."
4795
-
4796
- #: src/addons/sftp.php:814, src/addons/sftp.php:817,
4797
- #: src/includes/ftp.class.php:58, src/includes/ftp.class.php:61
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 "Oppkoblingen til %s fikk et tidsavbrudd. Dersom du har oppgitt server korrekt skyldes dette normalt at det er en brannmur som sperrer for oppkoblingen. Sjekk med din web hosting leverandør."
4800
-
4801
- #: src/addons/moredatabase.php:144, src/admin.php:1642
4802
- msgid "Messages:"
4803
- msgstr "Meldinger:"
4804
-
4805
- #: src/restorer.php:2647
4806
- msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
4807
- msgstr "En SQL linje som er større en maksimal pakkestørrelse (og som samtidig ikke kan splittes) ble funnet. Denne linjen vil ikke bli prosessert og blir dermed utelatt: %s"
4808
-
4809
- #: src/restorer.php:853
4810
- msgid "The directory does not exist"
4811
- msgstr "Biblioteket finnes ikke"
4812
-
4813
- #: src/addons/cloudfiles-enhanced.php:292
4814
- msgid "New User's Email Address"
4815
- msgstr "Epost adresse for ny bruker"
4816
-
4817
- #: src/addons/cloudfiles-enhanced.php:289
4818
- msgid "New User's Username"
4819
- msgstr "Brukernavn for ny bruker"
4820
-
4821
- #: src/addons/cloudfiles-enhanced.php:286
4822
- msgid "Admin API Key"
4823
- msgstr "Admin API Key"
4824
-
4825
- #: src/addons/cloudfiles-enhanced.php:283
4826
- msgid "Admin Username"
4827
- msgstr "Admin brukernavn"
4828
-
4829
- #: src/addons/cloudfiles-enhanced.php:278
4830
- msgid "US or UK Rackspace Account"
4831
- msgstr "US eller UK Rackspace konto"
4832
-
4833
- #: src/addons/cloudfiles-enhanced.php:270
4834
- msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
4835
- msgstr "Skriv inn ditt admin brukernavn/API key for Rackspace (slik at Rackspace kan sjekke dine rettigheter for å opprette nye brukere), og deretter skriv inn et nytt (unikt) brukernavn og epost adresse for den nye brukeren samt et \"container\" navn."
4836
-
4837
- #: src/addons/cloudfiles-enhanced.php:267
4838
- msgid "Create new API user and container"
4839
- msgstr "Opprett nt API bruker og \"container\""
4840
-
4841
- #: src/addons/cloudfiles-enhanced.php:199
4842
- msgid "API Key: %s"
4843
- msgstr "API Key: %s"
4844
-
4845
- #: src/addons/cloudfiles-enhanced.php:199
4846
- msgid "Password: %s"
4847
- msgstr "Passord: %s"
4848
-
4849
- #: src/addons/cloudfiles-enhanced.php:199, src/addons/s3-enhanced.php:337
4850
- msgid "Username: %s"
4851
- msgstr "Brukernavn: %s"
4852
-
4853
- #: src/addons/cloudfiles-enhanced.php:158,
4854
- #: src/addons/cloudfiles-enhanced.php:161,
4855
- #: src/addons/cloudfiles-enhanced.php:165,
4856
- #: src/addons/cloudfiles-enhanced.php:177,
4857
- #: src/addons/cloudfiles-enhanced.php:184,
4858
- #: src/addons/cloudfiles-enhanced.php:188
4859
- msgid "Cloud Files operation failed (%s)"
4860
- msgstr "Cloud Files operasjonen misslyktes (%s)"
4861
-
4862
- #: src/addons/cloudfiles-enhanced.php:156
4863
- msgid "Conflict: that user or email address already exists"
4864
- msgstr "Det har oppstått en konflikt: brukeren eller epost adressen eksisterer allerede"
4865
-
4866
- #: src/addons/cloudfiles-enhanced.php:89
4867
- msgid "You need to enter a valid new email address"
4868
- msgstr "Du må taste inn en gyldig ny epost adresse"
4869
-
4870
- #: src/addons/cloudfiles-enhanced.php:85
4871
- msgid "You need to enter a container"
4872
- msgstr "Du må taste inn en \"container\""
4873
-
4874
- #: src/addons/cloudfiles-enhanced.php:82
4875
- msgid "You need to enter a new username"
4876
- msgstr "Du må taste inn et nytt brukernavn"
4877
-
4878
- #: src/addons/cloudfiles-enhanced.php:79
4879
- msgid "You need to enter an admin API key"
4880
- msgstr "Du må taste inn en admin API nøkkel"
4881
-
4882
- #: src/addons/cloudfiles-enhanced.php:76
4883
- msgid "You need to enter an admin username"
4884
- msgstr "Du må taste inn et admin brukernavn"
4885
-
4886
- #: src/addons/cloudfiles-enhanced.php:62
4887
- msgid "Create a new API user with access to only this container (rather than your whole account)"
4888
- msgstr "Opprett en ny API bruker med tilgang til bare denne \"container\" (i stedet for hele kontoen din)"
4889
-
4890
- #: src/addons/cloudfiles-enhanced.php:31
4891
- msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
4892
- msgstr "Legger til utvidede kapabiliteter for Rackspace Cloud Files brukere"
4893
-
4894
- #: src/addons/cloudfiles-enhanced.php:30
4895
- msgid "Rackspace Cloud Files, enhanced"
4896
- msgstr "Rackspace Cloud Files, utvidet"
4897
-
4898
- #: src/addons/cloudfiles-enhanced.php:299, src/methods/cloudfiles-new.php:147,
4899
- #: src/methods/cloudfiles.php:492
4900
- msgid "Cloud Files Container"
4901
- msgstr "Cloud Files Container"
4902
-
4903
- #: src/methods/cloudfiles-new.php:142, src/methods/cloudfiles.php:487
4904
- msgid "Cloud Files API Key"
4905
- msgstr "Cloud Files API Key"
4906
-
4907
- #: src/methods/cloudfiles-new.php:137
4908
- msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
4909
- msgstr "For å opprette en new Rackspace API \"sub-user\" og API key som had tilgang tip bare dette Rackspace \"container\", bruk dette tillegget."
4910
-
4911
- #: src/methods/cloudfiles-new.php:134
4912
- msgid "Cloud Files Username"
4913
- msgstr "Cloud Files brukernavn"
4914
-
4915
- #: src/addons/cloudfiles-enhanced.php:47, src/methods/cloudfiles-new.php:166
4916
- msgid "London (LON)"
4917
- msgstr "London (LON)"
4918
-
4919
- #: src/addons/cloudfiles-enhanced.php:46, src/methods/cloudfiles-new.php:165
4920
- msgid "Hong Kong (HKG)"
4921
- msgstr "Hong Kong (HKG)"
4922
-
4923
- #: src/addons/cloudfiles-enhanced.php:45, src/methods/cloudfiles-new.php:164
4924
- msgid "Northern Virginia (IAD)"
4925
- msgstr "Northern Virginia (IAD)"
4926
-
4927
- #: src/addons/cloudfiles-enhanced.php:44, src/methods/cloudfiles-new.php:163
4928
- msgid "Chicago (ORD)"
4929
- msgstr "Chicago (ORD)"
4930
-
4931
- #: src/addons/cloudfiles-enhanced.php:43, src/methods/cloudfiles-new.php:162
4932
- msgid "Sydney (SYD)"
4933
- msgstr "Sydney (SYD)"
4934
-
4935
- #: src/addons/cloudfiles-enhanced.php:42, src/methods/cloudfiles-new.php:161
4936
- msgid "Dallas (DFW) (default)"
4937
- msgstr "Dallas (DFW) (standard)"
4938
-
4939
- #: src/addons/cloudfiles-enhanced.php:295, src/methods/cloudfiles-new.php:124
4940
- msgid "Cloud Files Storage Region"
4941
- msgstr "Cloud Files Storage Region"
4942
-
4943
- #: src/methods/cloudfiles-new.php:117
4944
- msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
4945
- msgstr "Kontoer opprettet på rackspacecloud.com er US-kontoer; kontoer opprettet på rackspace.co.uk er UK-kontoer"
4946
-
4947
- #: src/methods/cloudfiles-new.php:115
4948
- msgid "US or UK-based Rackspace Account"
4949
- msgstr "US eller UK-basert Rackspace konto"
4950
-
4951
- #: src/addons/cloudfiles-enhanced.php:279, src/methods/cloudfiles-new.php:115
4952
- msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
4953
- msgstr "Kontoer opprettet på rackspacecloud.com er US-kontoer; kontoer opprettet på rackspace.co.uk er UK-kontoer."
4954
-
4955
- #: src/addons/cloudfiles-enhanced.php:154, src/addons/s3-enhanced.php:240,
4956
- #: src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:484,
4957
- #: src/methods/openstack-base.php:486, src/methods/openstack-base.php:507,
4958
- #: src/methods/openstack2.php:33
4959
- msgid "Authorisation failed (check your credentials)"
4960
- msgstr "Autorisasjon feilet (sjekk dine tillatelser)"
4961
-
4962
- #: src/includes/class-commands.php:789, src/methods/updraftvault.php:630,
4963
- #: src/udaddons/options.php:229
4964
- msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
4965
- msgstr "En ukjent feil oppstod ved oppretting av forbindelse til UpdraftPlus.Com"
4966
-
4967
- #: src/admin.php:845, src/central/bootstrap.php:565
4968
- msgid "Create"
4969
- msgstr "Opprett"
4970
-
4971
- #: src/admin.php:806
4972
- msgid "Trying..."
4973
- msgstr "Prøver..."
4974
-
4975
- #: src/admin.php:805
4976
- msgid "The new user's RackSpace console password is (this will not be shown again):"
4977
- msgstr "Den nye brukerens RackSpace konsoll passord er (dette vil ikke synes igjen):"
4978
-
4979
- #: src/addons/wp-cli.php:797, src/admin.php:816, src/admin.php:4586
4980
- msgid "Error data:"
4981
- msgstr "Feil data:"
4982
-
4983
- #: src/admin.php:4489
4984
- msgid "Backup does not exist in the backup history"
4985
- msgstr "Backup finnes ikke i backup historien"
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 "Din WordPress installasjon har gamle kataloger fra tilstanden før du gjenskapte/migrerte (teknisk informasjon: disse er merket med -old). Trykk denne knappen for å slette disse så snart du har verifisert at gjenopprettingen er fullført."
4990
-
4991
- #: src/restorer.php:2259
4992
- msgid "Split line to avoid exceeding maximum packet size"
4993
- msgstr "Linjen er splittet for å forhindre at maksimum pakkestørrelse overstiges."
4994
-
4995
- #: src/restorer.php:2139
4996
- msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
4997
- msgstr "Din database bruker har ikke tillatelse til \"drop tables\". Vi vil forsøke å gjenskape ved å tømme tabellene; dette vil normalt virke så lenge du gjenskaper fra en WordPress versjon med den samme database strukturen (%s)"
4998
-
4999
- #: src/restorer.php:528
5000
- msgid "Could not move the files into place. Check your file permissions."
5001
- msgstr "Kan ikke flyttte filene på plass. Sjekk dine fil tillatelser."
5002
-
5003
- #: src/restorer.php:527
5004
- msgid "Could not move new files into place. Check your wp-content/upgrade folder."
5005
- msgstr "Klarer ikke å flytte nye filer på plass. Sjekk wp-content/upgrade mappen."
5006
-
5007
- #: src/restorer.php:525
5008
- msgid "Could not move old files out of the way."
5009
- msgstr "Klarer ikke å flytte gamle data."
5010
-
5011
- #: src/restorer.php:521
5012
- msgid "Moving old data out of the way..."
5013
- msgstr "Flytter gamle data..."
5014
-
5015
- #: src/addons/reporting.php:481
5016
- msgid "Add another address..."
5017
- msgstr "Skriv inn en annen adresse...."
5018
-
5019
- #: src/addons/reporting.php:466
5020
- msgid "Enter addresses here to have a report sent to them when a backup job finishes."
5021
- msgstr "Skriv inn addressen her for å sende en rapport til dem når backup jobben er fullført."
5022
-
5023
- #: src/addons/reporting.php:440
5024
- msgid "Email reports"
5025
- msgstr "Epost rapporter"
5026
-
5027
- #: src/class-updraftplus.php:1744, src/class-updraftplus.php:1749
5028
- msgid "%s checksum: %s"
5029
- msgstr "%s-kontrollsum: %s"
5030
-
5031
- #: src/class-updraftplus.php:1680, src/class-updraftplus.php:1682
5032
- msgid "files: %s"
5033
- msgstr "filer: %s"
5034
-
5035
- #: src/addons/reporting.php:392
5036
- msgid "Use the \"Reporting\" section to configure the email addresses to be used."
5037
- msgstr "Bruke \"Rapportering\" seksjonen for å konfigurere epost adressene som skal benyttes."
5038
-
5039
- #: src/addons/reporting.php:268
5040
- msgid "Debugging information"
5041
- msgstr "Debugging informasjon"
5042
-
5043
- #: src/addons/reporting.php:223, src/admin.php:3992
5044
- msgid "Uploaded to:"
5045
- msgstr "Opplastet til:"
5046
-
5047
- #: src/addons/reporting.php:222
5048
- msgid "Time taken:"
5049
- msgstr "Tidsforbruk:"
5050
-
5051
- #: src/addons/reporting.php:213
5052
- msgid "Warnings"
5053
- msgstr "Advarsler"
5054
-
5055
- #: src/addons/reporting.php:198
5056
- msgid "Errors"
5057
- msgstr "Feil"
5058
-
5059
- #: src/addons/reporting.php:195
5060
- msgid "Errors / warnings:"
5061
- msgstr "Feil / advarsler:"
5062
-
5063
- #: src/addons/morefiles.php:129, src/addons/morefiles.php:130,
5064
- #: src/addons/reporting.php:184
5065
- msgid "Contains:"
5066
- msgstr "Inneholder:"
5067
-
5068
- #: src/addons/reporting.php:183
5069
- msgid "Backup began:"
5070
- msgstr "Backup startet:"
5071
-
5072
- #: src/addons/reporting.php:171
5073
- msgid "Backup Report"
5074
- msgstr "Backup rapport"
5075
-
5076
- #: src/addons/reporting.php:166
5077
- msgid "%d hours, %d minutes, %d seconds"
5078
- msgstr "%d timer, %d minutter, %d sekunder"
5079
-
5080
- #: src/addons/reporting.php:152
5081
- msgid "%d errors, %d warnings"
5082
- msgstr "%d feil, %d advarsler"
5083
-
5084
- #: src/methods/dropbox.php:753, src/methods/dropbox.php:775
5085
- msgid "%s authentication"
5086
- msgstr "%s-autentisering"
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
5092
- msgid "%s error: %s"
5093
- msgstr "%s feil: %s"
5094
-
5095
- #: src/addons/googlecloud.php:984, src/methods/dropbox.php:577
5096
- msgid "%s logo"
5097
- msgstr "%s logo"
5098
-
5099
- #: src/methods/dropbox.php:286
5100
- msgid "did not return the expected response - check your log file for more details"
5101
- msgstr ""
5102
-
5103
- #: src/methods/s3.php:312
5104
- msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
5105
- msgstr "Den obligatoriske %s PHP modulen er ikke installert - be din web hosting leverandør om å gjøre den tilgjengelig"
5106
-
5107
- #: src/methods/email.php:97
5108
- msgid "For more options, use the \"%s\" add-on."
5109
- msgstr "For flere valg, benytt deg av \"%s\" tillegget."
5110
-
5111
- #: src/methods/email.php:96
5112
- msgid "Your site's admin email address (%s) will be used."
5113
- msgstr "Din site admin´s epostadresse (%s) vil benyttes."
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"
5119
- msgstr "Koble til"
5120
-
5121
- #: src/templates/wp-admin/settings/form-contents.php:262
5122
- msgid "For more reporting features, use the Reporting add-on."
5123
- msgstr "For flere rapportering funksjoner, benytt Rapportering tillegget."
5124
-
5125
- #: src/class-updraftplus.php:3914
5126
- msgid "(version: %s)"
5127
- msgstr "(versjon: %s)"
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 "Vær oppmerksom på at e-postservere som regel har størrelsesbegrensninger - typisk rundt %s Mb. Sikkerhetskopier større enn dét vil sannsynligvis ikke komme frem."
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
-
5137
- #: src/addons/reporting.php:182, src/backup.php:1138
5138
- msgid "Latest status:"
5139
- msgstr "Siste status:"
5140
-
5141
- #: src/backup.php:1137
5142
- msgid "Backup contains:"
5143
- msgstr "Sikkerhetskopien inneholder:"
5144
-
5145
- #: src/backup.php:1094
5146
- msgid "Backed up: %s"
5147
- msgstr "Dette har blitt sikkerhetskopiert: %s"
5148
-
5149
- #: src/addons/reporting.php:265, src/backup.php:1088
5150
- msgid "The log file has been attached to this email."
5151
- msgstr "Loggfilen har blitt lagt ved denne e-posten."
5152
-
5153
- #: src/backup.php:1052
5154
- msgid "Unknown/unexpected error - please raise a support request"
5155
- msgstr "Det oppstod en ukjent eller uventet feil. Send en henvendelse til kundestøtten vår."
5156
-
5157
- #: src/backup.php:1049
5158
- msgid "Database only (files were not part of this particular schedule)"
5159
- msgstr "Det har kun blitt tatt sikkerhetskopi av databasen, så det er ingen filer her."
5160
-
5161
- #: src/backup.php:1049
5162
- msgid "Database (files backup has not completed)"
5163
- msgstr "Database (sikkerhetskopiering av filer er ikke ferdig ennå)"
5164
-
5165
- #: src/backup.php:1046
5166
- msgid "Files only (database was not part of this particular schedule)"
5167
- msgstr "Bare filer (database var ikke en del av denne planlagte sikkerhetskopieringen)"
5168
-
5169
- #: src/backup.php:1046
5170
- msgid "Files (database backup has not completed)"
5171
- msgstr "Filer (sikkerhetskopiering av databasen er ennå ikke ferdig)"
5172
-
5173
- #: src/admin.php:334, src/backup.php:1044
5174
- msgid "Files and database"
5175
- msgstr "Filer og database"
5176
-
5177
- #: src/options.php:208
5178
- msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
5179
- msgstr "(Dette gjelder alle utvidelser for sikkerhetskopiering med mindre de eksplisitt har blitt kodet med flersidekompatibilitet.)"
5180
-
5181
- #: src/options.php:208
5182
- msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to backup (and hence access the data, including passwords, from) and restore (including with customized modifications, e.g. changed passwords) <strong>the entire network</strong>."
5183
- msgstr ""
5184
-
5185
- #: src/options.php:208
5186
- msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
5187
- msgstr "Flersideinstallasjon av Wordpress støttes i UpdraftPlus Premium eller med utvidelsen for flersidestøtte."
5188
-
5189
- #: src/options.php:208
5190
- msgid "This is a WordPress multi-site (a.k.a. network) installation."
5191
- msgstr "Dette er en flersideinstallasjon av Wordpress."
5192
-
5193
- #: src/options.php:208
5194
- msgid "UpdraftPlus warning:"
5195
- msgstr "Advarsel:"
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 "(eller koble til ved hjelp av skjemaet på denne siden dersom du allerede har kjøpt det)"
5200
-
5201
- #: src/udaddons/options.php:477
5202
- msgid "please follow this link to update the plugin in order to activate it"
5203
- msgstr "vennligst følg denne linken for å oppdatere og aktivere utvidelsen"
5204
-
5205
- #: src/udaddons/options.php:474
5206
- msgid "please follow this link to update the plugin in order to get it"
5207
- msgstr "vennligst følg denne linken for å installere og oppdatere utvidelsen"
5208
-
5209
- #: src/udaddons/options.php:464, src/udaddons/options.php:466
5210
- msgid "latest"
5211
- msgstr "det er nyeste versjon"
5212
-
5213
- #: src/udaddons/options.php:462
5214
- msgid "Your version: %s"
5215
- msgstr "Du har versjon %s"
5216
-
5217
- #: src/udaddons/options.php:460, src/udaddons/options.php:460
5218
- msgid "You've got it"
5219
- msgstr "Du har det"
5220
-
5221
- #: src/udaddons/options.php:421
5222
- msgid "UpdraftPlus Support"
5223
- msgstr "Kundestøtte for UpdraftPlus"
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 "En oppdatering som inneholder utvidelsene dine er tilgjengelig for UpdraftPlus. Følg denne linken for å laste den ned."
5228
-
5229
- #: src/udaddons/options.php:350, src/udaddons/updraftplus-addons.php:315
5230
- msgid "UpdraftPlus Addons"
5231
- msgstr "Utvidelser til UpdraftPlus"
5232
-
5233
- #: src/udaddons/options.php:90
5234
- msgid "An update is available for UpdraftPlus - please follow this link to get it."
5235
- msgstr "En oppdatering er tilgjengelig for UpdraftPlus. Følg denne linken for å laste den ned."
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 "updraftplus.com sendte en respons, men den var ikke mulig å tolke."
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 "E-postadressen og passordet stemmer ikke."
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 "updraftplus.com sendte tilbake et svar som vi ikke kunne tolke (data: %s)"
5250
-
5251
- #: src/udaddons/updraftplus-addons.php:889
5252
- msgid "UpdraftPlus.Com responded, but we did not understand the response"
5253
- msgstr "updraftplus.com svarte, men vi klarte ikke tolke svaret"
5254
-
5255
- #: src/udaddons/updraftplus-addons.php:887
5256
- msgid "We failed to successfully connect to UpdraftPlus.Com"
5257
- msgstr "UpdraftPlus klarte ikke koble til UpdraftPlus.com."
5258
-
5259
- #: src/methods/email.php:97,
5260
- #: src/templates/wp-admin/settings/form-contents.php:243,
5261
- #: src/templates/wp-admin/settings/tab-addons.php:191,
5262
- #: src/templates/wp-admin/settings/tab-addons.php:192
5263
- msgid "Reporting"
5264
- msgstr "Rapportering"
5265
-
5266
- #: src/admin.php:5189
5267
- msgid "Options (raw)"
5268
- msgstr "Innstillinger (ufiltrert)"
5269
-
5270
- #: src/addons/reporting.php:525, src/admin.php:792
5271
- msgid "Send a report only when there are warnings/errors"
5272
- msgstr "Bare send en rapport når det er advarsler eller feil"
5273
-
5274
- #: src/restorer.php:2203
5275
- msgid "Content URL:"
5276
- msgstr "Innholds-URL:"
5277
-
5278
- #: src/restorer.php:525
5279
- msgid "You should check the file ownerships and permissions in your WordPress installation"
5280
- msgstr ""
5281
-
5282
- #: src/templates/wp-admin/settings/form-contents.php:147
5283
- msgid "See also the \"More Files\" add-on from our shop."
5284
- msgstr "Se også utvidelsen «More Files» i nettbutikken vår."
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 "Du har veldig lite plass igjen i fjernlagringskontoen din. Du har bare %s Mb igjen."
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 "Minnet som er tillatt for PHP-prosesser på webserveren din er %s Mb. Det er veldig lavt. Du burde øke mengden for å unngå at UpdraftPlus går i feil. Ta kontakt med webhotelleverandøren din for hjelp."
5293
-
5294
- #: src/udaddons/options.php:512
5295
- msgid "Manage Addons"
5296
- msgstr "Administrér utvidelser"
5297
-
5298
- #: src/udaddons/options.php:490, src/udaddons/options.php:490
5299
- msgid "Buy It"
5300
- msgstr "Kjøp det"
5301
-
5302
- #: src/udaddons/options.php:489
5303
- msgid "Get it from the UpdraftPlus.Com Store"
5304
- msgstr "Skaff det i UpdraftPlus-butikken."
5305
-
5306
- #: src/udaddons/options.php:483, src/udaddons/options.php:485
5307
- msgid "activate it on this site"
5308
- msgstr "aktivér det på denne siden"
5309
-
5310
- #: src/udaddons/options.php:485
5311
- msgid "You have an inactive purchase"
5312
- msgstr "Du har et inaktivt kjøp."
5313
-
5314
- #: src/udaddons/options.php:477
5315
- msgid "Assigned to this site"
5316
- msgstr "Tildelt denne siden"
5317
-
5318
- #: src/udaddons/options.php:474
5319
- msgid "Available for this site (via your all-addons purchase)"
5320
- msgstr "Tilgjengelig for denne siden gjennom ditt kjøp av alle utvidelser"
5321
-
5322
- #: src/udaddons/options.php:468
5323
- msgid "(apparently a pre-release or withdrawn release)"
5324
- msgstr "(tilsynelatende en forhåndsutgivelse eller en tilbaketrukket utgivelse)"
5325
-
5326
- #: src/udaddons/options.php:423
5327
- msgid "Go here"
5328
- msgstr "Gå hit"
5329
-
5330
- #: src/udaddons/options.php:423
5331
- msgid "Need to get support?"
5332
- msgstr "Trenger du kundestøtte?"
5333
-
5334
- #: src/udaddons/options.php:405
5335
- msgid "An error occurred when trying to retrieve your add-ons."
5336
- msgstr "En feil oppstod da vi forsøkte å hente utvidelsene dine."
5337
-
5338
- #: src/udaddons/options.php:300
5339
- msgid "An unknown response was received. Response was:"
5340
- msgstr "En ukjent respons ble mottatt. Responsen var:"
5341
-
5342
- #: src/udaddons/options.php:299
5343
- msgid "Claim not granted - your account login details were wrong"
5344
- msgstr "Henting feilet; innloggingsinformasjonen din stemmer ikke."
5345
-
5346
- #: src/udaddons/options.php:297
5347
- msgid "Please wait whilst we make the claim..."
5348
- msgstr "Vennligst vent mens vi setter kravet ditt ut i livet..."
5349
-
5350
- #: src/udaddons/options.php:251
5351
- msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
5352
- msgstr "Det oppstod feil ved tilkobling til updraftplus.com:"
5353
-
5354
- #: src/udaddons/options.php:244
5355
- msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
5356
- msgstr "<strong>Du er ikke koblet til updraftplus.com.</strong>"
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 "Hvis du nettopp har kjøpt nye utvidelser, kan du trykke her for å oppdatere siden"
5361
-
5362
- #: src/udaddons/options.php:235
5363
- msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
5364
- msgstr "<strong>Du er koblet til updraftplus.com.</strong>"
5365
-
5366
- #: src/admin.php:2874
5367
- msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
5368
- msgstr "Du kan lese om passordsikkerheten på updraftplus.com her."
5369
-
5370
- #: src/admin.php:2950
5371
- msgid "Forgotten your details?"
5372
- msgstr "Har du glemt passordet ditt?"
5373
-
5374
- #: src/admin.php:2863
5375
- msgid "Not yet got an account (it's free)? Go get one!"
5376
- msgstr "Har du ingen konto ennå? Registrér deg nå!"
5377
-
5378
- #: src/admin.php:2929
5379
- msgid "Connect with your UpdraftPlus.Com account"
5380
- msgstr "Koble til kontoen din på updraftplus.com"
5381
-
5382
- #: src/udaddons/options.php:110
5383
- msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
5384
- msgstr "Det ser ut til at du har en utdatert utvidelse installert."
5385
-
5386
- #: src/udaddons/options.php:109
5387
- msgid "Go here to begin installing it."
5388
- msgstr "Trykk her for å starte installasjonen."
5389
-
5390
- #: src/udaddons/options.php:109
5391
- msgid "UpdraftPlus is not yet installed."
5392
- msgstr "UpdraftPlus er ikke installert ennå."
5393
-
5394
- #: src/udaddons/options.php:106
5395
- msgid "Go here to activate it."
5396
- msgstr "Trykk her for å aktivere den."
5397
-
5398
- #: src/udaddons/options.php:105
5399
- msgid "UpdraftPlus is not yet activated."
5400
- msgstr "UpdraftPlus har ikke blitt aktivert ennå."
5401
-
5402
- #: src/udaddons/options.php:96, src/udaddons/options.php:98
5403
- msgid "Go here to connect."
5404
- msgstr "Trykk her for å koble til."
5405
-
5406
- #: src/udaddons/options.php:96
5407
- msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
5408
- msgstr "Du har ikke koblet deg til kontoen din ennå. Det må du gjøre hvis du vil se utvidelsene du har kjøpt."
5409
-
5410
- #: src/addons/moredatabase.php:313,
5411
- #: src/includes/class-updraftplus-encryption.php:148
5412
- msgid "Without it, encryption will be a lot slower."
5413
- msgstr "Uten den modulen vil kryptering skje mye tregere."
5414
-
5415
- #: src/addons/moredatabase.php:313,
5416
- #: src/includes/class-updraftplus-encryption.php:148
5417
- msgid "Your web-server does not have the %s module installed."
5418
- msgstr "Webhotellet ditt har ikke installert %s-modulen."
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 "(<strong>Du ser ut til å allerede være autentisert, </strong> men du kan godt autentisere på nytt dersom det har oppstått et problem.)"
5423
-
5424
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:78,
5425
- #: src/templates/wp-admin/settings/tab-backups.php:80
5426
- msgid "Drop backup files here"
5427
- msgstr "Slipp sikkerhetskopier her."
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 "Webserveren returnerte en feilkode. Prøv igjen eller se over loggen på serveren."
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 "Gjenopprettingen har begynt. Ikke stopp operasjonen eller lukk nettleseren før den er ferdig."
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 "Hvis du ekskluderer både database og filer blir det ingenting igjen!"
5440
-
5441
- #: src/restorer.php:2197
5442
- msgid "Site home:"
5443
- msgstr "Nettstedets hovedside:"
5444
-
5445
- #: src/addons/morestorage.php:138
5446
- msgid "Remote Storage Options"
5447
- msgstr "Innstillinger for fjernlagring"
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 "(du finner som vanlig loggen i innstillingene til UpdraftPlus)..."
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 "Husk dette valget til neste gang (du vil fortsatt ha muligheter til å forandre det)"
5456
-
5457
- #: src/addons/azure.php:420, src/methods/stream-base.php:143,
5458
- #: src/methods/stream-base.php:148
5459
- msgid "Upload failed"
5460
- msgstr "Opplastingen feilet"
5461
-
5462
- #: src/templates/wp-admin/settings/form-contents.php:125
5463
- msgid "You can send a backup to more than one destination with an add-on."
5464
- msgstr "Du kan sende en sikkerhetskopi til mer enn ett mål med en utvidelse."
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 "Indikatoren nedenfor viser bare hvilket steg i prosessen sikkerhetskopieringen er på - ikke hvor mye tid som gjenstår. Ikke stopp sikkerhetskopieringen bare fordi indikatoren ser ut til å stå stille. Det er helt normalt."
5469
-
5470
- #: src/admin.php:3283
5471
- msgid "(%s%%, file %s of %s)"
5472
- msgstr "(%s%%, fil %s av %s)"
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 "Les mer om hvordan dette virker..."
5478
-
5479
- #: src/addons/sftp.php:608
5480
- msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
5481
- msgstr "Feilet: UpdraftPlus klarte å logge inn, men klarte ikke å lage en fil på det aktuelle stedet."
5482
-
5483
- #: src/addons/sftp.php:606
5484
- msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
5485
- msgstr "UpdraftPlus klarte å logge inn og flytte den indikerte mappen, men klarte ikke å opprette en fil der."
5486
-
5487
- #: src/addons/sftp.php:492
5488
- msgid "Use SCP instead of SFTP"
5489
- msgstr "Bruk SCP i stedet for SFTP"
5490
-
5491
- #: src/addons/sftp.php:48
5492
- msgid "SCP/SFTP user setting"
5493
- msgstr "Brukerinnstilling for SCP og SFTP"
5494
-
5495
- #: src/addons/sftp.php:47
5496
- msgid "SCP/SFTP host setting"
5497
- msgstr "Vertsinnstilling for SCP og SFTP"
5498
-
5499
- #: src/methods/email.php:67
5500
- msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
5501
- msgstr "UpdraftPlus klarte ikke sende sikkerhetskopien med e-post. Sikkerhetskopien er sannsynligvis for stor."
5502
-
5503
- #: src/methods/email.php:47
5504
- msgid "Backup is of: %s."
5505
- msgstr "Dette er en sikkerhetskopi av %s."
5506
-
5507
- #: src/admin.php:894
5508
- msgid "%s settings test result:"
5509
- msgstr "Resultat etter testing av innstillingen %s:"
5510
-
5511
- #: src/admin.php:4140, src/admin.php:4142
5512
- msgid "(Not finished)"
5513
- msgstr "(Ikke fullført)"
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 "Hvis du ser flere sikkerhetskopier enn du forventet, er det sannsynligvis fordi sletting av gamle sikkerhetskopier ikke skjer før en ny sikkerhetskopiering er fullført."
5518
-
5519
- #: src/templates/wp-admin/settings/form-contents.php:328
5520
- msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
5521
- msgstr "Ikke plassér den midlertidige mappen på innsiden av «uploads» eller «plugins». Da vil sikkerhetskopieringen bli sirkulær."
5522
-
5523
- #: src/templates/wp-admin/settings/form-contents.php:328
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 "Zip-filene opprettes her til å begynne med. Mappen må kunne skrives til på webserveren. Banen er relativ i forhold til innholdsmappen. Den heter «wp-content» som standard."
5526
-
5527
- #: src/admin.php:3384
5528
- msgid "Job ID: %s"
5529
- msgstr "Kopierings-ID: %s"
5530
-
5531
- #: src/admin.php:3364
5532
- msgid "last activity: %ss ago"
5533
- msgstr "siste aktivitet: %s sekunder siden"
5534
-
5535
- #: src/admin.php:3363
5536
- msgid "next resumption: %d (after %ss)"
5537
- msgstr "neste gjenopptakelse: %d (etter %s sekunder)"
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 "Ukjent"
5544
-
5545
- #: src/admin.php:3297
5546
- msgid "Backup finished"
5547
- msgstr "Sikkerhetskopiering fullført"
5548
-
5549
- #: src/admin.php:3292
5550
- msgid "Waiting until scheduled time to retry because of errors"
5551
- msgstr "Feil oppstod. Venter med å prøve på nytt til neste planlagte tidspunkt."
5552
-
5553
- #: src/admin.php:3288
5554
- msgid "Pruning old backup sets"
5555
- msgstr "Fjern deler av eldre sikkerhetskopier."
5556
-
5557
- #: src/admin.php:3275
5558
- msgid "Uploading files to remote storage"
5559
- msgstr "Laster opp filer til fjernlagring"
5560
-
5561
- #: src/admin.php:3344
5562
- msgid "Encrypted database"
5563
- msgstr "Kryptert database"
5564
-
5565
- #: src/admin.php:3336
5566
- msgid "Encrypting database"
5567
- msgstr "Krypterer database"
5568
-
5569
- #: src/admin.php:3310
5570
- msgid "Created database backup"
5571
- msgstr "Opprettet sikkerhetskopi av databasen"
5572
-
5573
- #: src/admin.php:3323
5574
- msgid "table: %s"
5575
- msgstr "tabell: %s"
5576
-
5577
- #: src/admin.php:3321
5578
- msgid "Creating database backup"
5579
- msgstr "Oppretter sikkerhetskopi av database"
5580
-
5581
- #: src/admin.php:3266
5582
- msgid "Created file backup zips"
5583
- msgstr "Opprettet sikkerhetskopier av filer"
5584
-
5585
- #: src/admin.php:3253
5586
- msgid "Creating file backup zips"
5587
- msgstr "Lager sikkerhetskopier av filer"
5588
-
5589
- #: src/admin.php:3248
5590
- msgid "Backup begun"
5591
- msgstr "Sikkerhetskopieringen har begynt"
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 "Planleggeren er deaktivert gjennom innstillingen «DISABLE_WP_CRON» i Wordpress-installasjonen din. Det kan ikke tas sikkerhetskopier - heller ikke manuelle - med mindre du enten setter opp en prosess som henter planleggeren manuelt eller aktiverer planleggeren igjen."
5596
-
5597
- #: src/restorer.php:1091
5598
- msgid "file"
5599
- msgstr "fil"
5600
-
5601
- #: src/addons/onedrive.php:1186, src/restorer.php:1083
5602
- msgid "folder"
5603
- msgstr "mappe"
5604
-
5605
- #: src/restorer.php:1083, src/restorer.php:1091
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 "UpdraftPlus klarte ikke å opprette en %s i innholdsmappen din. Vennligst se over filtillatelsene dine og aktivér skrivetilgang. (%s)"
5608
-
5609
- #: src/class-updraftplus.php:3002
5610
- msgid "The backup has not finished; a resumption is scheduled"
5611
- msgstr "Sikkerhetskopien ble ikke fullført. En gjenopptakelse har blitt planlagt."
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 "Websiden din besøkes sjelden samtidig som UpdraftPlus ikke mottar de ressursene den håpet på. Se denne siden:"
5616
-
5617
- #: src/addons/onedrive.php:1037,
5618
- #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:118
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 "Autentiseringen mot %s feilet. Årsaken er sannsynligvis noe annet i Wordpress-installasjonen din. Prøv å deaktivere andre utvidelser og bytt til et av standardtemaene. Se spesielt etter komponenter som sender PHP-advarsler og -feil på toppen av koden. Det kan også hjelpe å deaktivere feilsøking."
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 "Minnegrensen for PHP er veldig lav. UpdraftPlus forsøkte å heve grensen uten hell. Utvidelsen kan få problemer dersom minnegresen er lavere enn 64 MB, spesielt hvis du har lastet opp veldig store filer. Noen sider kan imidlertid klare seg med 32 MB. Minnegrensen er en global innstilling som settes av serverleverandøren din."
5625
-
5626
- #: src/addons/autobackup.php:1104, src/admin.php:848
5627
- msgid "Proceed with update"
5628
- msgstr "Fortsett med oppdateringen"
5629
-
5630
- #: src/addons/autobackup.php:1097
5631
- msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
5632
- msgstr "Ikke avbryt etter å ha trykket Fortsett nedenfor - vent til sikkerhetskopien er fullført."
5633
-
5634
- #: src/addons/autobackup.php:139, src/addons/autobackup.php:1046
5635
- msgid "UpdraftPlus Automatic Backups"
5636
- msgstr "UpdraftPlus automatiske sikkerhetskopier"
5637
-
5638
- #: src/addons/autobackup.php:529
5639
- msgid "Errors have occurred:"
5640
- msgstr "Feil har oppstått:"
5641
-
5642
- #: src/addons/autobackup.php:501
5643
- msgid "Creating backup with UpdraftPlus..."
5644
- msgstr "Oppretter sikkerhetskopi med UpdraftPlus..."
5645
-
5646
- #: src/addons/autobackup.php:446, src/addons/autobackup.php:576,
5647
- #: src/addons/autobackup.php:627
5648
- msgid "Automatic Backup"
5649
- msgstr "Automatisk sikkerhetskopi"
5650
-
5651
- #: src/addons/autobackup.php:437
5652
- msgid "Creating database backup with UpdraftPlus..."
5653
- msgstr "Oppretter sikkerhetskopi av databasen med UpdraftPlus... "
5654
-
5655
- #: src/addons/autobackup.php:403
5656
- msgid "themes"
5657
- msgstr "temaer"
5658
-
5659
- #: src/addons/autobackup.php:396
5660
- msgid "plugins"
5661
- msgstr "utvidelser"
5662
-
5663
- #: src/addons/autobackup.php:347, src/addons/autobackup.php:444
5664
- msgid "Starting automatic backup..."
5665
- msgstr "Starter automatisk sikkerhetskopiering..."
5666
-
5667
- #: src/addons/autobackup.php:343
5668
- msgid "Creating %s and database backup with UpdraftPlus..."
5669
- msgstr "Oppretter %s og sikkerhetskopi av databasen..."
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 "Automatisk sikkerhetskopier (der dette er relevant) innstikk, tema og WordPress database med UpdraftPlus før du oppdaterer"
5674
-
5675
- #: src/addons/morefiles.php:243, src/addons/morefiles.php:244
5676
- msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
5677
- msgstr "Hvis du ikke er sikker, burde du avbryte operasjonen. Du kan risikere å ødelegge WordPress-installasjonen."
5678
-
5679
- #: src/addons/morefiles.php:243, src/addons/morefiles.php:244
5680
- msgid "This does not look like a valid WordPress core backup - the file %s was missing."
5681
- msgstr "Dette ser ikke ut som en gyldig sikkerhetskopi av WordPress-kjernen; %s mangler."
5682
-
5683
- #: src/addons/morefiles.php:190
5684
- msgid "Unable to open zip file (%s) - could not pre-scan it to check its integrity."
5685
- msgstr "Klarte ikke åpne zip-filen %s. Integritetssjekken feilet."
5686
-
5687
- #: src/addons/morefiles.php:180
5688
- msgid "Unable to read zip file (%s) - could not pre-scan it to check its integrity."
5689
- msgstr "Klarte ikke å lese zip-filen %s. Integritetssjekken feilet."
5690
-
5691
- #: src/templates/wp-admin/settings/header.php:26
5692
- msgid "More plugins"
5693
- msgstr "Flere utvidelser"
5694
-
5695
- #: src/includes/updraftplus-notices.php:31,
5696
- #: src/templates/wp-admin/settings/header.php:17,
5697
- #: src/templates/wp-admin/settings/tab-addons.php:21,
5698
- #: src/templates/wp-admin/settings/tab-addons.php:87
5699
- msgid "Support"
5700
- msgstr "Kundestøtte"
5701
-
5702
- #: src/class-updraftplus.php:4237
5703
- msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
5704
- msgstr "Fant ikke tabellprefikset for Wordpress-installasjonen din i sikkerhetskopien av databasen."
5705
-
5706
- #: src/class-updraftplus.php:4229
5707
- msgid "This database backup is missing core WordPress tables: %s"
5708
- msgstr "Denne databasekopien mangler følgende tabeller: %s"
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 "Du importerer nå fra en nyere versjon av WordPress - %s - til en eldre en - %s. Det er ikke sikkert at WordPress klarer å håndtere det."
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 "Denne databasen er %s KB. Det er for lite til å være en gyldig WordPress-database."
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 "Du kan beskyttes enda bedre med automatisk sikkerhetskopiering"
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 "Hvis du fremdeles kan lese dette etter siden er ferdig med å laste, er det et JavaScript- eller jQuery-problem med siden."
5730
-
5731
- #: src/admin.php:840
5732
- msgid "The file was uploaded."
5733
- msgstr "Filen ble lastet opp."
5734
-
5735
- #: src/admin.php:839
5736
- msgid "Unknown server response status:"
5737
- msgstr "Ukjent responsstatus fra serveren:"
5738
-
5739
- #: src/admin.php:838
5740
- msgid "Unknown server response:"
5741
- msgstr "Ukjent svar fra serveren:"
5742
-
5743
- #: src/admin.php:837
5744
- msgid "This decryption key will be attempted:"
5745
- msgstr "Forsøker med denne dekrypteringsnøkkelen:"
5746
-
5747
- #: src/admin.php:836
5748
- msgid "Follow this link to attempt decryption and download the database file to your computer."
5749
- msgstr "Følg denne linken for å dekryptere og laste ned databasen."
5750
-
5751
- #: src/admin.php:835
5752
- msgid "Upload error"
5753
- msgstr "Opplastingsfeil"
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 "Filen ser ikke ut til å være en database kryptert av UpdraftPlus. De har endelsen «.gz.crypt» og har filnavn som følger mønsteret «backup_[tidspunkt]_[sidenavn]_[kode]_db.crypt.gz»."
5758
-
5759
- #: src/admin.php:833
5760
- msgid "Upload error:"
5761
- msgstr "Opplastingsfeil:"
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 "(forsikre deg om at zip-filen du forsøker å laste opp er opprettet med UpdraftPlus)"
5766
-
5767
- #: src/admin.php:823
5768
- msgid "Download to your computer"
5769
- msgstr "Last ned til datamaskinen din"
5770
-
5771
- #: src/admin.php:822
5772
- msgid "Delete from your web server"
5773
- msgstr "Slett fra webserveren"
5774
-
5775
- #: src/admin.php:4112
5776
- msgid "You appear to be missing one or more archives from this multi-archive set."
5777
- msgstr "Det ser ut som det mangler en eller flere arkiver i dette flerarkivsettet."
5778
-
5779
- #: src/admin.php:4109
5780
- msgid "(%d archive(s) in set)."
5781
- msgstr "(%d arkiv(er) i denne sikkerhetskopien)."
5782
-
5783
- #: src/templates/wp-admin/settings/form-contents.php:308
5784
- msgid "Split archives every:"
5785
- msgstr "Del opp arkiver hvert"
5786
-
5787
- #: src/addons/moredatabase.php:273
5788
- msgid "Error: the server sent us a response (JSON) which we did not understand."
5789
- msgstr "Serveren sendte en JSON-respons som vi ikke klarte å tolke."
5790
-
5791
- #: src/admin.php:813
5792
- msgid "Warnings:"
5793
- msgstr "Advarsler:"
5794
-
5795
- #: src/admin.php:812
5796
- msgid "Error: the server sent an empty response."
5797
- msgstr "Serveren sendte et tomt svar."
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 "Dette ser ut som en fil laget av UpdraftPlus, men installasjonen kjenner ikke til objekttypen - %s. Kanskje du trenger å installere en utvidelse?"
5802
-
5803
- #: src/includes/class-wpadmin-commands.php:238
5804
- msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
5805
- msgstr "Sikkerhetskopien har blitt prosessert, men med noen feil. Du må kansellere og rette opp eventuelle problemer før du prøver på nytt."
5806
-
5807
- #: src/includes/class-wpadmin-commands.php:236
5808
- msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
5809
- msgstr "Sikkerhetskopien har blitt prosessert, men med noen advarsler. Hvis alt er i orden kan du trykke \"Gjenopprett\" igjen for å fortsette. Ellers bør du avbryte og først rette opp problemene som advarslene viser til før du fortsetter."
5810
-
5811
- #: src/includes/class-wpadmin-commands.php:234
5812
- msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
5813
- msgstr "Sikkerhetskopien har blitt prosessert. Trykk «Gjenopprett» igjen for å fortsette."
5814
-
5815
- #: src/includes/class-wpadmin-commands.php:208
5816
- msgid "This multi-archive backup set appears to have the following archives missing: %s"
5817
- msgstr "Denne sikkerhetskopien ser ut til å mangle følgende pakkefiler: %s"
5818
-
5819
- #: src/includes/class-wpadmin-commands.php:193
5820
- msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
5821
- msgstr "Fant filen %s, men den er %s når vi ventet at den skulle være %s. Den er muligens ødelagt."
5822
-
5823
- #: src/includes/class-wpadmin-commands.php:188
5824
- msgid "File was found, but is zero-sized (you need to re-upload it): %s"
5825
- msgstr "Fant filen %s, men den er tom. Du må laste den opp på nytt."
5826
-
5827
- #: src/includes/class-wpadmin-commands.php:186
5828
- msgid "File not found (you need to upload it): %s"
5829
- msgstr "Fant ikke filen med navnet %s. Du må laste den opp."
5830
-
5831
- #: src/addons/wp-cli.php:611, src/addons/wp-cli.php:612,
5832
- #: src/includes/class-wpadmin-commands.php:114
5833
- msgid "No such backup set exists"
5834
- msgstr "Det finnes ingen sikkerhetskopi av den typen"
5835
-
5836
- #: src/includes/class-storage-methods-interface.php:378
5837
- msgid "The backup archive for this file could not be found. The remote storage method in use (%s) does not allow us to retrieve files. To perform any restoration using UpdraftPlus, you will need to obtain a copy of this file and place it inside UpdraftPlus's working folder"
5838
- msgstr "Fant ikke sikkerhetskopien av filen. Fjernlagringsmetoden som brukes - %s - tillater ikke at vi laster ned filer derfra. For å gjenopprette sikkerhetskopier med UpdraftPlus, må du manuelt hente en kopi av filen og plassere den i arbeidsmappen til UpdraftPlus."
5839
-
5840
- #: src/restorer.php:522
5841
- msgid "Moving unpacked backup into place..."
5842
- msgstr "Flytter oppakket sikkerhetskopi til riktig sted..."
5843
-
5844
- #: src/backup.php:3097, src/backup.php:3380
5845
- msgid "Failed to open the zip file (%s) - %s"
5846
- msgstr "Klarte ikke åpne zip-filen (%s) - %s"
5847
-
5848
- #: src/addons/morefiles.php:168
5849
- msgid "WordPress root directory server path: %s"
5850
- msgstr "Serverbanen til rotkatalogen i WordPress er %s."
5851
-
5852
- #: src/methods/dreamobjects.php:113, src/methods/s3generic.php:104
5853
- msgid "%s end-point"
5854
- msgstr "%s endepunkt"
5855
-
5856
- #: src/methods/s3.php:850
5857
- msgid "... and many more!"
5858
- msgstr "...og mange flere!"
5859
-
5860
- #: src/methods/s3generic.php:61, src/methods/s3generic.php:72,
5861
- #: src/methods/s3generic.php:83
5862
- msgid "S3 (Compatible)"
5863
- msgstr "Kompatibel med S3"
5864
-
5865
- #: src/includes/class-storage-methods-interface.php:287
5866
- msgid "File is not locally present - needs retrieving from remote storage"
5867
- msgstr "Filen finnes ikke lokalt. Den må hentes fra fjernlagringen."
5868
-
5869
- #: src/restorer.php:208
5870
- msgid "Looking for %s archive: file name: %s"
5871
- msgstr "Leter etter arkivet %s: filnavn: %s"
5872
-
5873
- #: src/addons/wp-cli.php:784, src/admin.php:4570
5874
- msgid "Final checks"
5875
- msgstr "Avsluttende kontroller"
5876
-
5877
- #: src/templates/wp-admin/settings/form-contents.php:314
5878
- msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
5879
- msgstr "Huk av her for å slette alle overflødige filer etter sikkerhetskopieringen er ferdig. Det innebærer blant annet at filer som sendes til fjernlagring slettes etter avsending."
5880
-
5881
- #: src/templates/wp-admin/settings/form-contents.php:189
5882
- msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5883
- msgstr "Slipp krypterte databasefiler her for å dekryptere dem. De har filendelsen db.gz.crypt."
5884
-
5885
- #: src/admin.php:3817
5886
- msgid "Your wp-content directory server path: %s"
5887
- msgstr "Banen til «wp-content» er %s."
5888
-
5889
- #: src/admin.php:829
5890
- msgid "Raw backup history"
5891
- msgstr "Ufiltrert kopieringslogg"
5892
-
5893
- #: src/templates/wp-admin/advanced/site-info.php:104
5894
- msgid "Show raw backup and file list"
5895
- msgstr "Vis ubehandlet sikkerhetskopi og liste over filer."
5896
-
5897
- #: src/admin.php:811
5898
- msgid "Processing files - please wait..."
5899
- msgstr "Prosesserer filer. Vennligst vent..."
5900
-
5901
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
5902
- #: src/templates/wp-admin/settings/tab-backups.php:27
5903
- msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
5904
- msgstr "WordPress-installasjonen din har problemer med å produsere ekstra mellomrom. Det kan føre til ødelagte sikkerhetskopier."
5905
-
5906
- #: src/class-updraftplus.php:3858
5907
- msgid "Failed to open database file."
5908
- msgstr "Klarte ikke åpne databasefilen."
5909
-
5910
- #: src/admin.php:5154
5911
- msgid "Known backups (raw)"
5912
- msgstr "Kjente sikkerhetskopier (ufiltrert)"
5913
-
5914
- #: src/restorer.php:1400
5915
- msgid "Files found:"
5916
- msgstr "Fant følgende filer:"
5917
-
5918
- #: src/restorer.php:2385
5919
- msgid "Requested table engine (%s) is not present - changing to MyISAM."
5920
- msgstr "Tabellmotoren %s er ikke tilgjengelig; bytter til MyISAM."
5921
-
5922
- #: src/restorer.php:228
5923
- msgid "file is size:"
5924
- msgstr "filen har denne størrelsen:"
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 "Trykk her for mer informasjon."
5933
-
5934
- #: src/admin.php:810
5935
- msgid "Some files are still downloading or being processed - please wait."
5936
- msgstr "Noen filer lastes fremdeles ned eller prosesseres. Vennligst vent."
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
-
5942
- #: src/addons/fixtime.php:571
5943
- msgid "The time zone used is that from your WordPress settings, in Settings -> General."
5944
- msgstr "Tidssonen hentes fra kategorien «Generelt» i WordPress-innstillingene."
5945
-
5946
- #: src/addons/fixtime.php:571
5947
- msgid "Enter in format HH:MM (e.g. 14:22)."
5948
- msgstr "Fyll inn klokkeslettet i formatet «TT:MM», der «TT» er timer og «MM» er minutter."
5949
-
5950
- #: src/methods/ftp.php:148
5951
- msgid "%s upload failed"
5952
- msgstr "Opplastingen av %s feilet."
5953
-
5954
- #: src/methods/ftp.php:121, src/methods/ftp.php:172, src/methods/ftp.php:276
5955
- msgid "%s login failure"
5956
- msgstr "Innloggingsfeil: %s"
5957
-
5958
- #: src/methods/dropbox.php:481
5959
- msgid "You do not appear to be authenticated with %s"
5960
- msgstr "Du ser ikke ut til å være logget inn i %s."
5961
-
5962
- #: src/methods/dropbox.php:448
5963
- msgid "Failed to access %s when deleting (see log file for more)"
5964
- msgstr "Fikk ikke tilgang til %s mens sletting foregikk. Se loggfilen for mer informasjon."
5965
-
5966
- #: src/methods/dropbox.php:440
5967
- msgid "You do not appear to be authenticated with %s (whilst deleting)"
5968
- msgstr "Du ser ikke ut til å være logget inn med %s. Sletting feilet."
5969
-
5970
- #: src/methods/cloudfiles.php:413
5971
- msgid "Error - failed to download the file from %s"
5972
- msgstr "Klarte ikke laste ned fil fra %s."
5973
-
5974
- #: src/methods/cloudfiles.php:409
5975
- msgid "Error - no such file exists at %s"
5976
- msgstr "Den filen eksisterer ikke i %s"
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"
5984
- msgstr "%s-feil"
5985
-
5986
- #: src/methods/cloudfiles.php:219, src/methods/openstack-base.php:86
5987
- msgid "%s error - failed to upload file"
5988
- msgstr "Klarte ikke laste opp filen til %s."
5989
-
5990
- #: src/class-updraftplus.php:1255, src/methods/cloudfiles.php:211
5991
- msgid "%s error - failed to re-assemble chunks"
5992
- msgstr "%s-feil: Klarte ikke sette sammen delene."
5993
-
5994
- #: src/methods/cloudfiles.php:95, src/methods/cloudfiles.php:99,
5995
- #: src/methods/cloudfiles.php:240, src/methods/cloudfiles.php:286,
5996
- #: src/methods/cloudfiles.php:335, src/methods/cloudfiles.php:339,
5997
- #: src/methods/openstack-base.php:44, src/methods/openstack-base.php:352,
5998
- #: src/methods/openstack-base.php:417, src/methods/openstack-base.php:490,
5999
- #: src/methods/openstack-base.php:493, src/methods/openstack-base.php:511,
6000
- #: src/methods/openstack-base.php:516
6001
- msgid "%s authentication failed"
6002
- msgstr "Klarte ikke logge inn i %s."
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 "Feil: %s"
6013
-
6014
- #: src/admin.php:3736
6015
- msgid "Backup directory specified exists, but is <b>not</b> writable."
6016
- msgstr "Sikkerhetskopieringsmappen finnes, men den er ikke skrivbar."
6017
-
6018
- #: src/admin.php:3734
6019
- msgid "Backup directory specified does <b>not</b> exist."
6020
- msgstr "Mappen for sikkerhetskopiering finnes ikke."
6021
-
6022
- #: src/admin.php:3398, src/admin.php:3685
6023
- msgid "Warning: %s"
6024
- msgstr "Advarsel: %s"
6025
-
6026
- #: src/backup.php:3123
6027
- msgid "A very large file was encountered: %s (size: %s Mb)"
6028
- msgstr "%s er en veldig stor fil på %s MB."
6029
-
6030
- #: src/backup.php:2418
6031
- msgid "%s: unreadable file - could not be backed up"
6032
- msgstr "%s er ikke lesbar og kan derfor ikke sikkerhetskopieres."
6033
-
6034
- #: src/backup.php:1740
6035
- msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
6036
- msgstr "Tabellen %s har %s rader. Det er veldig mange. Vi håper webhotellet ditt har nok ressurser til at hele tabellen kan eksporteres til sikkerhetskopien."
6037
-
6038
- #: src/backup.php:1859
6039
- msgid "An error occurred whilst closing the final database file"
6040
- msgstr "En feil oppstod under lukkingen av den siste databasefilen."
6041
-
6042
- #: src/backup.php:1079
6043
- msgid "Warnings encountered:"
6044
- msgstr "Advarsler:"
6045
-
6046
- #: src/class-updraftplus.php:2986
6047
- msgid "The backup apparently succeeded (with warnings) and is now complete"
6048
- msgstr "Sikkerhetskopieringen er ferdig, men det dukket opp noen advarsler underveis."
6049
-
6050
- #: src/class-updraftplus.php:874
6051
- msgid "Your free disk space is very low - only %s Mb remain"
6052
- msgstr "Du har bare %s MB igjen på webhotellet ditt."
6053
-
6054
- #: src/addons/migrator.php:595
6055
- msgid "New site:"
6056
- msgstr "Ny side:"
6057
-
6058
- #: src/addons/migrator.php:570
6059
- msgid "Migrated site (from UpdraftPlus)"
6060
- msgstr "Migrert side opprettet fra sikkerhetskopi"
6061
-
6062
- #: src/addons/migrator.php:510
6063
- msgid "Enter details for where this new site is to live within your multisite install:"
6064
- msgstr "Spesifiser hvor den nye siden skal være i installasjonen din:"
6065
-
6066
- #: src/addons/migrator.php:509
6067
- msgid "Information needed to continue:"
6068
- msgstr "Trenger følgende informasjon for å fortsette:"
6069
-
6070
- #: src/addons/migrator.php:454
6071
- msgid "Network activating theme:"
6072
- msgstr "Nettverksaktivering av tema:"
6073
-
6074
- #: src/addons/migrator.php:444
6075
- msgid "Processed plugin:"
6076
- msgstr "Prosesserte utvidelsen:"
6077
-
6078
- #: src/addons/sftp.php:75
6079
- msgid "Check your file permissions: Could not successfully create and enter directory:"
6080
- msgstr "Klarte ikke opprette eller åpne denne mappen. Sjekk filtillatelsene dine. Detaljer:"
6081
-
6082
- #: src/addons/sftp.php:37
6083
- msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happening, then go into the \"Expert Options\" (below) and turn off SSL there."
6084
- msgstr ""
6085
-
6086
- #: src/methods/s3.php:859
6087
- msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
6088
- msgstr "PHP-installasjonen på webhotellet ditt mangler modulen %s. Kontakt leverandøren din og spør om de kan aktivere den."
6089
-
6090
- #: src/methods/s3.php:1165
6091
- msgid "Please check your access credentials."
6092
- msgstr "Se over brukernavnet og passordet ditt."
6093
-
6094
- #: src/addons/s3-enhanced.php:215, src/methods/s3.php:1143
6095
- msgid "The error reported by %s was:"
6096
- msgstr "%s rapporterte følgende feil:"
6097
-
6098
- #: src/restorer.php:1916
6099
- msgid "Please supply the requested information, and then continue."
6100
- msgstr "Vennligst oppgi informasjonen det spørres etter."
6101
-
6102
- #: src/class-updraftplus.php:4016, src/restorer.php:2233
6103
- msgid "Site information:"
6104
- msgstr "Sideinformasjon:"
6105
-
6106
- #: src/restorer.php:2095
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 "Databasebrukeren din har ikke tillatelse til å opprette tabeller. Vi vil prøve å gjenopprette ved å tømme tabeller isteden. Det burde fungere så lenge du gjenoppretter fra en WordPress-versjon med samme databasestruktur og den importerte databasen bare inneholder tabeller som allerede finnes på siden du importerer til."
6109
-
6110
- #: src/admin.php:2591, src/class-updraftplus.php:4009, src/restorer.php:2647
6111
- msgid "Warning:"
6112
- msgstr "Advarsel:"
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 "Du kjører en flersideinstallasjon, men sikkerhetskopien er ikke av en flersideinstallasjon."
6118
-
6119
- #: src/restorer.php:197
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 "Hopper over gjenoppretting av WordPress-kjernen når det importeres fra en enkeltside til en flersideinstallasjon. Hvis du har noen nødvendige filer i WordPress-mappen må du hente dem manuelt fra zip-filen."
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 "PHP-installasjonen din mangler den påkrevde modulen %s. Vennligst kontakt webhotelleverandøren din og be dem aktivere den."
6127
-
6128
- #: src/admin.php:849, src/includes/updraftplus-tour.php:89
6129
- msgid "Close"
6130
- msgstr "Lukk"
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 "Uventet svar:"
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 "Separér hver adresse med et komma dersom du ønsker å sende sikkerhetskopien til flere adresser."
6142
-
6143
- #: src/admin.php:827
6144
- msgid "PHP information"
6145
- msgstr "PHP-informasjon"
6146
-
6147
- #: src/templates/wp-admin/advanced/site-info.php:70
6148
- msgid "zip executable found:"
6149
- msgstr "Fant selvkjørende zip-arkiv:"
6150
-
6151
- #: src/templates/wp-admin/advanced/site-info.php:45
6152
- msgid "show PHP information (phpinfo)"
6153
- msgstr "Vis PHP-informasjon fra funksjonen «phpinfo()»."
6154
-
6155
- #: src/templates/wp-admin/settings/migrator-no-migrator.php:9
6156
- msgid "Do you want to migrate or clone/duplicate a site?"
6157
- msgstr "Ønsker du å flytte eller klone en side?"
6158
-
6159
- #: src/templates/wp-admin/settings/existing-backups-table.php:161
6160
- msgid "Please allow time for the communications with the remote storage to complete."
6161
- msgstr ""
6162
-
6163
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:23
6164
- msgid "Also delete from remote storage"
6165
- msgstr "Slett også fra fjernlagring"
6166
-
6167
- #: src/admin.php:3087
6168
- msgid "Latest UpdraftPlus.com news:"
6169
- msgstr "Nyheter fra UpdraftPlus.com:"
6170
-
6171
- #: src/templates/wp-admin/settings/header.php:11,
6172
- #: src/templates/wp-admin/settings/tab-addons.php:47,
6173
- #: src/templates/wp-admin/settings/tab-addons.php:68,
6174
- #: src/templates/wp-admin/settings/tab-addons.php:81,
6175
- #: src/templates/wp-admin/settings/tab-addons.php:94,
6176
- #: src/templates/wp-admin/settings/tab-addons.php:107,
6177
- #: src/templates/wp-admin/settings/tab-addons.php:120,
6178
- #: src/templates/wp-admin/settings/tab-addons.php:133,
6179
- #: src/templates/wp-admin/settings/tab-addons.php:146,
6180
- #: src/templates/wp-admin/settings/tab-addons.php:159,
6181
- #: src/templates/wp-admin/settings/tab-addons.php:172,
6182
- #: src/templates/wp-admin/settings/tab-addons.php:185,
6183
- #: src/templates/wp-admin/settings/tab-addons.php:198,
6184
- #: src/templates/wp-admin/settings/tab-addons.php:211,
6185
- #: src/templates/wp-admin/settings/tab-addons.php:224,
6186
- #: src/templates/wp-admin/settings/tab-addons.php:237,
6187
- #: src/templates/wp-admin/settings/tab-addons.php:254
6188
- msgid "Premium"
6189
- msgstr "Premium"
6190
-
6191
- #: src/templates/wp-admin/settings/header.php:15
6192
- msgid "News"
6193
- msgstr "Nyheter"
6194
-
6195
- #: src/admin.php:1695, src/includes/class-wpadmin-commands.php:506
6196
- msgid "Backup set not found"
6197
- msgstr "Fant ikke sikkerhetskopien"
6198
-
6199
- #: src/backup.php:189
6200
- msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
6201
- msgstr "Klarte ikke ta sikkerhetskopi av %s; den korresponderende mappen %s finnes ikke."
6202
-
6203
- #: src/includes/updraftplus-notices.php:152,
6204
- #: src/includes/updraftplus-notices.php:153,
6205
- #: src/includes/updraftplus-notices.php:162,
6206
- #: src/includes/updraftplus-notices.php:163
6207
- msgid "RSS link"
6208
- msgstr "RSS-adresse"
6209
-
6210
- #: src/includes/updraftplus-notices.php:152,
6211
- #: src/includes/updraftplus-notices.php:153,
6212
- #: src/includes/updraftplus-notices.php:162,
6213
- #: src/includes/updraftplus-notices.php:163
6214
- msgid "Blog link"
6215
- msgstr "Bloggadresse"
6216
-
6217
- #: src/admin.php:893
6218
- msgid "Testing %s Settings..."
6219
- msgstr "Tester %s-innstillinger..."
6220
-
6221
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:69,
6222
- #: src/templates/wp-admin/settings/tab-backups.php:71
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 "Eller så kan du plassere dem manuelt i UpdraftPlus-mappen. Det er vanligvis «wp-content/updraft». Deretter bruker du linken merket «Skann på nytt» over."
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 "Feilsøkingsmodus er aktivert. Det kan være du ser feilsøkingsmeldinger fra både UpdraftPlus og andre installerte utvidelser. Sørg for at meldingen du ser er fra UpdraftPlus før du sender en henvendelse til kundestøtten vår."
6229
-
6230
- #: src/admin.php:1167
6231
- msgid "Notice"
6232
- msgstr "Varsel"
6233
-
6234
- #: src/backup.php:1061
6235
- msgid "Errors encountered:"
6236
- msgstr "Følgende feil oppstod:"
6237
-
6238
- #: src/admin.php:795
6239
- msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
6240
- msgstr "Søker på nytt. Ser etter sikkerhetskopier som du manuelt har lastet opp til den interne lagringsplassen..."
6241
-
6242
- #: src/admin.php:809
6243
- msgid "Begun looking for this entity"
6244
- msgstr "Leter etter enhet..."
6245
-
6246
- #: src/methods/s3.php:482
6247
- msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials.1"
6248
- msgstr ""
6249
-
6250
- #: src/addons/dropbox-folders.php:32
6251
- msgid "Store at"
6252
- msgstr "Lagre i"
6253
-
6254
- #: src/addons/migrator.php:1555
6255
- msgid "\"%s\" has no primary key, manual change needed on row %s."
6256
- msgstr "«%s» har ingen primær nøkkel. Manuell endring trengs på rad %s."
6257
-
6258
- #: src/addons/migrator.php:1429
6259
- msgid "rows: %d"
6260
- msgstr "rader: %d"
6261
-
6262
- #: src/addons/migrator.php:1303
6263
- msgid "Time taken (seconds):"
6264
- msgstr "Tid passert i sekunder:"
6265
-
6266
- #: src/addons/migrator.php:1302, src/admin.php:814
6267
- msgid "Errors:"
6268
- msgstr "Feil:"
6269
-
6270
- #: src/addons/migrator.php:1301
6271
- msgid "SQL update commands run:"
6272
- msgstr "Disse SQL UPDATE-kommandoene ble kjørt:"
6273
-
6274
- #: src/addons/migrator.php:1300
6275
- msgid "Changes made:"
6276
- msgstr "Gjennomførte endringer:"
6277
-
6278
- #: src/addons/migrator.php:1299
6279
- msgid "Rows examined:"
6280
- msgstr "Undersøkte rader:"
6281
-
6282
- #: src/addons/migrator.php:1298
6283
- msgid "Tables examined:"
6284
- msgstr "Undersøkte rader:"
6285
-
6286
- #: src/addons/migrator.php:1187
6287
- msgid "Could not get list of tables"
6288
- msgstr "Klarte ikke hente liste over tabeller."
6289
-
6290
- #: src/addons/migrator.php:1132
6291
- msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
6292
- msgstr "Advarsel: Databasens nettadresse er %s. UpdraftPlus forventet at den ville være %s."
6293
-
6294
- #: src/addons/migrator.php:1121
6295
- msgid "Nothing to do: the site URL is already: %s"
6296
- msgstr "Ingenting å gjøre. Sidens nettadresse er allerede %s"
6297
-
6298
- #: src/addons/migrator.php:1085, src/addons/migrator.php:1089,
6299
- #: src/addons/migrator.php:1093, src/addons/migrator.php:1098,
6300
- #: src/addons/migrator.php:1102, src/addons/migrator.php:1107
6301
- msgid "Error: unexpected empty parameter (%s, %s)"
6302
- msgstr "Uventet tomt parameter (%s, %s)"
6303
-
6304
- #: src/addons/migrator.php:1045
6305
- msgid "Database: search and replace site URL"
6306
- msgstr "Søk og erstatt sidens nettadresse i databasen"
6307
-
6308
- #: src/addons/migrator.php:905, src/addons/migrator.php:1284
6309
- msgid "Failed: we did not understand the result returned by the %s operation."
6310
- msgstr "Vi forstod ikke resultatet fra %s-operasjonen."
6311
-
6312
- #: src/addons/migrator.php:903, src/addons/migrator.php:1282
6313
- msgid "Failed: the %s operation was not able to start."
6314
- msgstr "Klarte ikke sette i gang %s-operasjonen."
6315
-
6316
- #: src/addons/migrator.php:562
6317
- msgid "Search and replace site location in the database (migrate)"
6318
- msgstr "Søk og erstatt sidens nettadresse i databasen"
6319
-
6320
- #: src/addons/migrator.php:562
6321
- msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
6322
- msgstr "Alle referanser til sidens nettadresse i databasen vil erstattes med nåværende adresse som er %s."
6323
-
6324
- #: src/addons/multisite.php:699
6325
- msgid "Blog uploads"
6326
- msgstr "Bloggopplastinger"
6327
-
6328
- #: src/addons/migrator.php:496, src/addons/multisite.php:692
6329
- msgid "Must-use plugins"
6330
- msgstr "Nødvendige utvidelser"
6331
-
6332
- #: src/addons/multisite.php:207
6333
- msgid "Multisite Install"
6334
- msgstr "Flersideinstallasjon"
6335
-
6336
- #: src/addons/fixtime.php:571
6337
- msgid "starting from next time it is"
6338
- msgstr "begynner neste gang det er"
6339
-
6340
- #: src/addons/sftp.php:535
6341
- msgid "Failure: Port must be an integer."
6342
- msgstr "Feil: Porten må angis som et heltall."
6343
-
6344
- #: src/methods/ftp.php:416, src/methods/openstack2.php:185
6345
- msgid "password"
6346
- msgstr "passord"
6347
-
6348
- #: src/addons/sftp.php:526, src/methods/openstack2.php:180
6349
- msgid "username"
6350
- msgstr "brukernavn"
6351
-
6352
- #: src/addons/sftp.php:522
6353
- msgid "host name"
6354
- msgstr "vertsnavn"
6355
-
6356
- #: src/addons/sftp.php:485
6357
- msgid "Where to change directory to after logging in - often this is relative to your home directory."
6358
- msgstr "Hvilken mappe det skal navigeres til etter innlogging. Banen er ofte relativ i forhold til rotkatalogen."
6359
-
6360
- #: src/addons/sftp.php:483
6361
- msgid "Directory path"
6362
- msgstr "Bane til mappe"
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"
6369
- msgstr "Passord"
6370
-
6371
- #: src/addons/sftp.php:445, src/addons/webdav.php:207
6372
- msgid "Port"
6373
- msgstr "Port"
6374
-
6375
- #: src/addons/moredatabase.php:239, src/addons/sftp.php:438,
6376
- #: src/addons/webdav.php:199
6377
- msgid "Host"
6378
- msgstr "Vert"
6379
-
6380
- #: src/addons/sftp.php:287
6381
- msgid "%s Error: Failed to download"
6382
- msgstr "%s-feil: Klarte ikke laste ned"
6383
-
6384
- #: src/addons/sftp.php:567
6385
- msgid "Check your file permissions: Could not successfully create and enter:"
6386
- msgstr "Se over filtillatelsene dine. Klarte ikke opprette og få tilgang til:"
6387
-
6388
- #: src/addons/sftp.php:47, src/addons/sftp.php:48, src/addons/sftp.php:49
6389
- msgid "No %s found"
6390
- msgstr "Fant ingen %s"
6391
-
6392
- #: src/addons/sftp.php:37
6393
- msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
6394
- msgstr "Kryptert FTP er tilgjengelig. UpdraftPlus vil først forsøke kryptert forbindelse. Dersom det ikke fungerer, vil den falle tilbake til ukryptert forbindelse. Du kan også deaktivere kryptering i ekspertinnstillingene. Knappen «Test FTP-tilkobling» angir hvilken tilkoblingstype som er i bruk."
6395
-
6396
- #: src/addons/morefiles.php:705
6397
- msgid "No backup of %s directories: there was nothing found to back up"
6398
- msgstr "Fant ingenting å ta sikkerhetskopi av i %s-mappene."
6399
-
6400
- #: src/addons/morefiles.php:282
6401
- msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
6402
- msgstr ""
6403
-
6404
- #: src/addons/morefiles.php:280
6405
- msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
6406
- msgstr "Ikke aktivér denne innstillingen hvis du ikke vet hva den gjør."
6407
-
6408
- #: src/addons/morefiles.php:259
6409
- msgid "More Files"
6410
- msgstr "Flere filer"
6411
-
6412
- #: src/addons/morefiles.php:167
6413
- msgid "WordPress core (including any additions to your WordPress root directory)"
6414
- msgstr "WordPress-kjerne inkludert alle tillegg i WordPress' rotkatalog"
6415
-
6416
- #: src/addons/morefiles.php:160
6417
- msgid "The above files comprise everything in a WordPress installation."
6418
- msgstr "Filene over omfatter alt i en Wordpress-installasjon."
6419
-
6420
- #: src/addons/morefiles.php:141
6421
- msgid "Over-write wp-config.php"
6422
- msgstr "Overskriv «wp-config.php»"
6423
-
6424
- #: src/addons/morefiles.php:137, src/includes/class-wpadmin-commands.php:523
6425
- msgid "WordPress Core"
6426
- msgstr "WordPress-kjerne"
6427
-
6428
- #: src/methods/addon-base-v2.php:330, src/methods/stream-base.php:375
6429
- msgid "Failed: We were not able to place a file in that directory - please check your credentials."
6430
- msgstr "Vi klarte ikke plassere en fil i den mappen. Se over innloggingsdetaljene dine."
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 "Feilet"
6438
-
6439
- #: src/addons/webdav.php:169
6440
- msgid "WebDAV URL"
6441
- msgstr "WebDAV-adresse"
6442
-
6443
- #: src/methods/stream-base.php:335
6444
- msgid "Local write failed: Failed to download"
6445
- msgstr "Klarte ikke laste ned filen"
6446
-
6447
- #: src/methods/stream-base.php:304
6448
- msgid "Error opening remote file: Failed to download"
6449
- msgstr "Klarte ikke laste ned den fjernlagrede filen"
6450
-
6451
- #: src/methods/stream-base.php:125, src/methods/stream-base.php:129
6452
- msgid "Chunk %s: A %s error occurred"
6453
- msgstr "Parti %s En %s-feil oppstod"
6454
-
6455
- #: src/addons/googlecloud.php:322, src/addons/sftp.php:45,
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
6463
- msgid "No %s settings were found"
6464
- msgstr "Fant ingen innstillinger for %s."
6465
-
6466
- #: src/methods/ftp.php:438
6467
- msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
6468
- msgstr "Vi klarte å logge inn, men vi klarte ikke å lage en fil i den gitte mappen."
6469
-
6470
- #: src/methods/ftp.php:435
6471
- msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
6472
- msgstr "Vi klarte å logge inn og fikk bekreftet at vi har tilgang til å lage filer i den gitte mappen. (Innloggingstype:"
6473
-
6474
- #: src/methods/ftp.php:426
6475
- msgid "Failure: we did not successfully log in with those credentials."
6476
- msgstr "Klarte ikke logge inn med den angitte brukerinformasjonen."
6477
-
6478
- #: src/methods/ftp.php:408
6479
- msgid "Failure: No server details were given."
6480
- msgstr "Du har ikke oppgitt noen serverdetaljer."
6481
-
6482
- #: src/methods/ftp.php:373
6483
- msgid "Needs to already exist"
6484
- msgstr "Må allerede eksistere"
6485
-
6486
- #: src/methods/ftp.php:336
6487
- msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
6488
- msgstr "Vi har en ekstra utvidelse dersom du ønsker kryptering."
6489
-
6490
- #: src/addons/onedrive.php:901, src/methods/dropbox.php:821
6491
- msgid "Your %s account name: %s"
6492
- msgstr "Kontonavnet ditt på %s: %s"
6493
-
6494
- #: src/methods/dropbox.php:811, src/methods/dropbox.php:833
6495
- msgid "though part of the returned information was not as expected - your mileage may vary"
6496
- msgstr "selv om deler av informasjonen som ble sendt tilbake ikke var som forventet, kan kjørelengden din variere"
6497
-
6498
- #: src/methods/dropbox.php:806, src/methods/dropbox.php:808
6499
- msgid "you have authenticated your %s account"
6500
- msgstr "du har autentisert %s-kontoen din"
6501
-
6502
- #: src/methods/dropbox.php:603, src/methods/dropbox.php:605
6503
- msgid "there's an add-on for that."
6504
- msgstr "det finnes en utvidelse for det formålet."
6505
-
6506
- #: src/methods/dropbox.php:603, src/methods/dropbox.php:605
6507
- msgid "If you backup several sites into the same Dropbox and want to organize with sub-folders, then "
6508
- msgstr ""
6509
-
6510
- #: src/methods/dropbox.php:603, src/methods/dropbox.php:605
6511
- msgid "Backups are saved in"
6512
- msgstr "Sikkerhetskopiene lagres i"
6513
-
6514
- #: src/methods/dropbox.php:603, src/methods/dropbox.php:605
6515
- msgid "Need to use sub-folders?"
6516
- msgstr "Trenger du å organisere sikkerhetskopiene i undermapper?"
6517
-
6518
- #: src/methods/dropbox.php:284
6519
- msgid "error: failed to upload file to %s (see log file for more)"
6520
- msgstr "Feil: Klarte ikke laste opp filen til %s. Se loggen for mer informasjon."
6521
-
6522
- #: src/methods/dropbox.php:195
6523
- msgid "error: %s (see log file for more)"
6524
- msgstr ""
6525
-
6526
- #: src/methods/dropbox.php:173, src/methods/dropbox.php:190
6527
- msgid "You do not appear to be authenticated with Dropbox"
6528
- msgstr "Du ser ikke ut til å være logget inn i Dropbox."
6529
-
6530
- #: src/methods/s3.php:1160
6531
- msgid "The communication with %s was not encrypted."
6532
- msgstr "Kommunikasjonen med %s var ukryptert."
6533
-
6534
- #: src/methods/s3.php:1158
6535
- msgid "The communication with %s was encrypted."
6536
- msgstr "Kommunikasjonen med %s var kryptert."
6537
-
6538
- #: src/addons/googlecloud.php:839, src/methods/s3.php:1155
6539
- msgid "We accessed the bucket, and were able to create files within it."
6540
- msgstr "Vi fikk tilgang til kurven og vi klarte å lage filer i den."
6541
-
6542
- #: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
6543
- #: src/methods/s3.php:1153, src/methods/s3.php:1165
6544
- msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
6545
- msgstr "Vi fikk tilgang til kurven, men vi klarte ikke lage en fil i den."
6546
-
6547
- #: src/addons/googlecloud.php:833, src/addons/googlecloud.php:847,
6548
- #: src/methods/s3.php:1153, src/methods/s3.php:1165
6549
- msgid "Failure"
6550
- msgstr "Feil"
6551
-
6552
- #: src/addons/backblaze.php:497, src/methods/s3.php:1141
6553
- msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
6554
- msgstr "Klarte ikke få tilgang til eller opprette kurven. Se over brukerinformasjonen din. Hvis den er riktig, kan du prøve et annet kurvnavn. Det kan være en annen bruker av %s allerede bruker kurvnavnet du oppga."
6555
-
6556
- #: src/addons/s3-enhanced.php:188, src/methods/openstack2.php:150,
6557
- #: src/methods/s3.php:1135
6558
- msgid "Region"
6559
- msgstr "Område"
6560
-
6561
- #: src/addons/googlecloud.php:118, src/addons/googlecloud.php:793,
6562
- #: src/methods/s3.php:1115
6563
- msgid "Failure: No bucket details were given."
6564
- msgstr "Feil: Ingen kurvdetaljer ble oppgitt."
6565
-
6566
- #: src/methods/s3.php:1093
6567
- msgid "API secret"
6568
- msgstr "API-hemmelighet"
6569
-
6570
- #: src/methods/s3.php:941
6571
- msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
6572
- msgstr "Fyll bare inn et kurvnavn eller en kurv og en bane. For eksempel: MinKurv, MinKurv/MinBane"
6573
-
6574
- #: src/methods/s3.php:940
6575
- msgid "%s location"
6576
- msgstr "Plassering for %s"
6577
-
6578
- #: src/methods/s3.php:936
6579
- msgid "%s secret key"
6580
- msgstr "Hemmelig nøkkel for %s"
6581
-
6582
- #: src/methods/s3.php:932
6583
- msgid "%s access key"
6584
- msgstr "Tilgangsnøkkel for %s"
6585
-
6586
- #: src/methods/s3.php:871
6587
- msgid "If you see errors about SSL certificates, then please go here for help."
6588
- msgstr "Hvis du får feil knyttet til SSL-sertifikater, kan du besøke denne siden for å få hjelp."
6589
-
6590
- #: src/methods/s3.php:869
6591
- msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
6592
- msgstr "Hent tilgangsnøkkelen og den hemmelige nøkkelen fra <a href=\"%s\">konsollen for %s</a>. Velg deretter et kurvnavn og eventuelt en bane. Navnet må være helt unikt i forhold til alle andre kurver på %s. Denne kurven vil lages for deg med mindre navnet allerede er i bruk."
6593
-
6594
- #: src/methods/s3.php:598, src/methods/s3.php:671, src/methods/s3.php:776
6595
- msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
6596
- msgstr "%s-feil: Klarte ikke opprette tilkobling til kurven %s. Se over tillatelsene og brukerinformasjonen din."
6597
-
6598
- #: src/methods/s3.php:759, src/methods/s3.php:769, src/methods/s3.php:805
6599
- msgid "%s Error: Failed to download %s. Check your permissions and credentials."
6600
- msgstr "%s-feil: Klarte ikke laste ned %s. Se over tillatelsene og brukerinformasjonen din."
6601
-
6602
- #: src/methods/s3.php:460
6603
- msgid "%s re-assembly error (%s): (see log file for more)"
6604
- msgstr "Gjenopprettingsfeil ved bruk av %s (%s). Se loggen for mer informasjon."
6605
-
6606
- #: src/methods/s3.php:456
6607
- msgid "%s upload (%s): re-assembly failed (see log for more details)"
6608
- msgstr "%s-opplasting (%s): Gjenoppretting feilet. Se loggen for mer informasjon."
6609
-
6610
- #: src/methods/s3.php:440
6611
- msgid "%s chunk %s: upload failed"
6612
- msgstr "%s, del %s: Opplastingen feilet"
6613
-
6614
- #: src/methods/s3.php:430
6615
- msgid "%s error: file %s was shortened unexpectedly"
6616
- msgstr "%s-feil: Filen %s ble på uventet vis forkortet."
6617
-
6618
- #: src/methods/s3.php:408
6619
- msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
6620
- msgstr "%s-opplasting: Fikk ikke tak i «uploadID» for flerdelersopplasting. Se loggen for mer informasjon."
6621
-
6622
- #: src/methods/email.php:92
6623
- msgid "Note:"
6624
- msgstr "Notat:"
6625
-
6626
- #: src/methods/email.php:45
6627
- msgid "WordPress Backup"
6628
- msgstr "Sikkerhetskopi av WordPress"
6629
-
6630
- #: src/methods/cloudfiles.php:575, src/methods/openstack-base.php:530
6631
- msgid "We accessed the container, and were able to create files within it."
6632
- msgstr "Vi fikk tilgang til beholderen og fikk opprettet filer der."
6633
-
6634
- #: src/methods/cloudfiles.php:571
6635
- msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
6636
- msgstr "Det oppstod en feil med Cloud Files. Vi fikk tilgang til beholderen, men klarte ikke opprette en fil der."
6637
-
6638
- #: src/methods/cloudfiles.php:544, src/methods/openstack-base.php:472
6639
- msgid "Failure: No container details were given."
6640
- msgstr "Det ble ikke oppgitt noen detaljer om beholderen."
6641
-
6642
- #: src/addons/moredatabase.php:240, src/addons/sftp.php:452,
6643
- #: src/addons/webdav.php:187, src/methods/cloudfiles-new.php:189,
6644
- #: src/methods/cloudfiles.php:524, src/methods/openstack2.php:158
6645
- msgid "Username"
6646
- msgstr "Brukernavn"
6647
-
6648
- #: src/methods/cloudfiles-new.php:184, src/methods/cloudfiles.php:519,
6649
- #: src/methods/s3.php:1089
6650
- msgid "API key"
6651
- msgstr "API-nøkkel"
6652
-
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,
6661
- #: src/methods/openstack2.php:180, src/methods/openstack2.php:185,
6662
- #: src/methods/openstack2.php:190, src/methods/openstack2.php:195,
6663
- #: src/methods/s3.php:1089, src/methods/s3.php:1093
6664
- msgid "Failure: No %s was given."
6665
- msgstr "Feil: Ingen %s ble gitt."
6666
-
6667
- #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
6668
- #: src/methods/openstack-base.php:571, src/methods/s3.php:863
6669
- msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
6670
- msgstr "UpdraftPlus' modul %s krever %s."
6671
-
6672
- #: src/methods/cloudfiles.php:483
6673
- msgid "Cloud Files username"
6674
- msgstr "Brukernavn hos Cloud Files"
6675
-
6676
- #: src/addons/cloudfiles-enhanced.php:38, src/methods/cloudfiles-new.php:119,
6677
- #: src/methods/cloudfiles.php:467
6678
- msgid "UK"
6679
- msgstr "Storbritannia"
6680
-
6681
- #: src/addons/cloudfiles-enhanced.php:37, src/methods/cloudfiles-new.php:118,
6682
- #: src/methods/cloudfiles.php:466
6683
- msgid "US (default)"
6684
- msgstr "USA (standard)"
6685
-
6686
- #: src/methods/cloudfiles.php:463
6687
- msgid "US or UK Cloud"
6688
- msgstr "Skylagringstjeneste i USA eller Storbritannia"
6689
-
6690
- #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446,
6691
- #: src/methods/openstack2.php:120
6692
- msgid "Also, you should read this important FAQ."
6693
- msgstr "Du burde også lese denne seksjonen med ofte stilte spørsmål."
6694
-
6695
- #: src/methods/cloudfiles-new.php:102, src/methods/cloudfiles.php:446
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 "Hent en API-nøkkel fra <a href=\"https://mycloud.rackspace.com/\">konsollen i Rackspace Cloud</a>. Les instruksjonene <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">her</a> og velg et beholdernavn. Hvis beholderen ikke allerede finnes, vil den opprettes."
6698
-
6699
- #: src/admin.php:892, src/methods/backup-module.php:315
6700
- msgid "Test %s Settings"
6701
- msgstr "Test %s-innstillinger"
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 "Klarte ikke laste ned filen"
6707
-
6708
- #: src/methods/cloudfiles.php:218
6709
- msgid "Cloud Files error - failed to upload file"
6710
- msgstr "Klarte ikke laste opp filen til Cloud Files"
6711
-
6712
- #: src/addons/sftp.php:141, src/addons/sftp.php:153,
6713
- #: src/methods/cloudfiles.php:147, src/methods/cloudfiles.php:189,
6714
- #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:315,
6715
- #: src/methods/s3.php:376, src/methods/s3.php:388, src/methods/s3.php:389
6716
- msgid "%s Error: Failed to upload"
6717
- msgstr "%s-feil: Klarte ikke laste opp"
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 "%s-feil: Klarte ikke åpne den lokale filen"
6724
-
6725
- #: src/methods/cloudfiles.php:103, src/methods/cloudfiles.php:343,
6726
- #: src/methods/cloudfiles.php:355
6727
- msgid "Cloud Files error - failed to create and access the container"
6728
- msgstr "Klarte ikke opprette og få tilgang til beholderen i Cloud Files"
6729
-
6730
- #: src/addons/cloudfiles-enhanced.php:114,
6731
- #: src/addons/cloudfiles-enhanced.php:127,
6732
- #: src/addons/cloudfiles-enhanced.php:131, src/methods/cloudfiles.php:554,
6733
- #: src/methods/cloudfiles.php:557, src/methods/cloudfiles.php:560
6734
- msgid "Cloud Files authentication failed"
6735
- msgstr "Innlogging i Cloud Files feilet"
6736
-
6737
- #: src/methods/googledrive.php:1273
6738
- msgid "Authenticate with Google"
6739
- msgstr "Logg inn i Google"
6740
-
6741
- #: src/addons/googlecloud.php:1027, src/addons/onedrive.php:1181,
6742
- #: src/methods/googledrive.php:1237
6743
- msgid "Client Secret"
6744
- msgstr "Klienthemmelighet"
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 "Hvis Google senere viser meldingen «invalid_client», så er årsaken at du har fylt inn gal klient-ID her."
6749
-
6750
- #: src/addons/googlecloud.php:1019, src/addons/onedrive.php:1177,
6751
- #: src/methods/googledrive.php:1233
6752
- msgid "Client ID"
6753
- msgstr "Klient-ID"
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 "Du må legge til den følgende adressen som tillatt videresendingsadresse under «Flere innstillinger» når du får spørsmål om det."
6758
-
6759
- #: src/addons/googlecloud.php:997, src/methods/googledrive.php:1207
6760
- msgid "Select 'Web Application' as the application type."
6761
- msgstr "Velg «Nettapplikasjon» som applikasjonstype."
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 "For mer detaljert hjelp, følg denne linken."
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 "Du har ikke logget inn."
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 "Klarte ikke laste opp til %s"
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 "%s-kontoen din er full. Den har bare %d bytes igjen, mens filen du forsøkte å laste opp er på %d bytes."
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 "Du har ennå ikke hentet en tilgangstoken fra Google. Du må logge inn på nytt i Google Drive."
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 "Du har logget inn på %s."
6792
-
6793
- #: src/addons/googlecloud.php:718, src/addons/googlecloud.php:839,
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 "Lyktes"
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 "Kvotebenyttelse på %s: %s %% av %s."
6806
-
6807
- #: src/addons/googlecloud.php:444, src/methods/googledrive.php:409
6808
- msgid "Authorization failed"
6809
- msgstr "Klarte ikke logge inn"
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 "Mottok ingen oppfriskningstoken fra Google. Det kan bety at du fylte inn feil klienthemmelighet eller at du ikke har logget inn på nytt siden du korrigerte den. Se over den på nytt og følg deretter linken for å logge inn igjen. Hvis heller ikke det fungerer, kan du bruke ekspertmodus for å fjerne alle innstillingene, generere en ny klient-ID eller klienthemmelighet og begynne om igjen."
6814
-
6815
- #: src/methods/addon-not-yet-present.php:84
6816
- msgid "follow this link to get it"
6817
- msgstr "følg denne linken for å kjøpe den"
6818
-
6819
- #: src/methods/addon-not-yet-present.php:84
6820
- msgid "%s support is available as an add-on"
6821
- msgstr "Kundestøtte for %s er tilgjengelig som en utvidelse"
6822
-
6823
- #: src/methods/addon-not-yet-present.php:28,
6824
- #: src/methods/addon-not-yet-present.php:68,
6825
- #: src/methods/addon-not-yet-present.php:75
6826
- msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
6827
- msgstr "Du har ikke %s-utvidelsen installert. Hent den på %s."
6828
-
6829
- #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:126,
6830
- #: src/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php:127
6831
- msgid "You need to re-authenticate with %s, as your existing credentials are not working."
6832
- msgstr "Du må logge inn på nytt med %s. Brukerinformasjonen din er feil."
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"
6839
- msgstr "OK"
6840
-
6841
- #: src/restorer.php:2882, src/restorer.php:2957
6842
- msgid "Table prefix has changed: changing %s table field(s) accordingly:"
6843
- msgstr "Tabellprefikset har blitt forandret. Endrer %s felter tilsvarende:"
6844
-
6845
- #: src/addons/migrator.php:1317, src/restorer.php:2784
6846
- msgid "the database query being run was:"
6847
- msgstr "databasespørringen som ble kjørt var:"
6848
-
6849
- #: src/restorer.php:2454
6850
- msgid "will restore as:"
6851
- msgstr "vil gjenopprettes som:"
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 "Gammelt tabellprefiks:"
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 "Sikkerhetskopi av:"
6862
-
6863
- #: src/restorer.php:2012
6864
- msgid "Failed to open database file"
6865
- msgstr "Klarte ikke åpne databasefilen"
6866
-
6867
- #: src/restorer.php:1991
6868
- msgid "Failed to find database file"
6869
- msgstr "Klarte ikke finne databasefilen"
6870
-
6871
- #: src/restorer.php:1968
6872
- msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
6873
- msgstr "«safe_mode» er aktivert i serverens PHP-installasjon. Det gjør at tidsavbrudd vil inntreffe oftere. Hvis det skjer, må du manuelt gjenopprette databasefilene med phpMyAdmin eller andre metoder."
6874
-
6875
- #: src/restorer.php:900
6876
- msgid "wp-config.php from backup: restoring (as per user's request)"
6877
- msgstr "Gjenoppretter «wp-config.php» fra sikkerhetskopi"
6878
-
6879
- #: src/restorer.php:893
6880
- msgid "wp-config.php from backup: will restore as wp-config-backup.php"
6881
- msgstr "«wp-config.php» fra sikkerhetskopien vil gjenopprettes som «wp-config-backup.php»."
6882
-
6883
- #: src/restorer.php:776
6884
- msgid "Failed to write out the decrypted database to the filesystem"
6885
- msgstr "Klarte ikke skrive ut den dekrypterte databasen til filsystemet."
6886
-
6887
- #: src/restorer.php:760
6888
- msgid "Failed to create a temporary directory"
6889
- msgstr "Klarte ikke opprette en midlertidig mappe."
6890
-
6891
- #: src/restorer.php:529
6892
- msgid "Failed to delete working directory after restoring."
6893
- msgstr "Klarte ikke slette arbeidsmappen etter gjenopprettingen."
6894
-
6895
- #: src/restorer.php:526
6896
- msgid "Could not delete old directory."
6897
- msgstr "Klarte ikke slette den gamle mappen."
6898
-
6899
- #: src/restorer.php:524
6900
- msgid "Cleaning up rubbish..."
6901
- msgstr "Rydder opp..."
6902
-
6903
- #: src/restorer.php:523
6904
- msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
6905
- msgstr "Gjenoppretter databasen. På større sider kan dette ta lang tid. Hvis gjenopprettingen får et tidsavbrudd, burde du benytte en annen metode. Du kan for eksempel bruke phpMyAdmin. Årsaken til tidsavbrudd er som regel at ISP-en din begrenser ressursbruken på webhotellet ditt."
6906
-
6907
- #: src/restorer.php:520
6908
- msgid "Database successfully decrypted."
6909
- msgstr "Databasen ble dekryptert."
6910
-
6911
- #: src/restorer.php:519
6912
- msgid "Decrypting database (can take a while)..."
6913
- msgstr "Dekrypterer database. Dette kan ta en stund..."
6914
-
6915
- #: src/restorer.php:518
6916
- msgid "Unpacking backup..."
6917
- msgstr "Pakker opp sikkerhetskopi..."
6918
-
6919
- #: src/restorer.php:517
6920
- msgid "Copying this entity failed."
6921
- msgstr "Klarte ikke kopiere enheten."
6922
-
6923
- #: src/restorer.php:516
6924
- msgid "Backup file not available."
6925
- msgstr "Sikkerhetskopien er ikke tilgjengelig."
6926
-
6927
- #: src/restorer.php:515
6928
- msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
6929
- msgstr "UpdraftPlus klarer ikke gjenopprette denne typen enhet direkte. Den må gjenopprettes manuelt."
6930
-
6931
- #: src/restorer.php:234, src/restorer.php:235
6932
- msgid "Could not find one of the files for restoration"
6933
- msgstr "Klarte ikke finne én av filene som skulle gjenopprettes"
6934
-
6935
- #: src/restorer.php:396
6936
- msgid "Error message"
6937
- msgstr "Feilmelding"
6938
-
6939
- #: src/restorer.php:231
6940
- msgid "The backup records do not contain information about the proper size of this file."
6941
- msgstr "Sikkerhetskopien inneholder ikke informasjon om filens virkelige størrelse."
6942
-
6943
- #: src/restorer.php:223
6944
- msgid "Archive is expected to be size:"
6945
- msgstr "Forventer at arkivet har størrelsen:"
6946
-
6947
- #: src/admin.php:4518
6948
- msgid "If making a request for support, please include this information:"
6949
- msgstr "Vennligst legg ved denne informasjonen hvis du kontakter kundestøtte:"
6950
-
6951
- #: src/admin.php:4517
6952
- msgid "ABORT: Could not find the information on which entities to restore."
6953
- msgstr "Klarte ikke finne informasjon om hvilke enheter som skal gjenopprettes."
6954
-
6955
- #: src/addons/wp-cli.php:647, src/admin.php:4496
6956
- msgid "UpdraftPlus Restoration: Progress"
6957
- msgstr "Gjenoppretting: Fremdrift"
6958
-
6959
- #: src/admin.php:4488
6960
- msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
6961
- msgstr "Denne sikkerhetskopien eksisterer ikke i loggen. Gjenopprettingen ble derfor avbrutt. Tidsstempel:"
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 "Etter at du har trykket på denne knappen vil du kunne velge hvilke komponenter du ønsker å gjenopprette."
6966
-
6967
- #: src/admin.php:4268
6968
- msgid "Delete this backup set"
6969
- msgstr "Slett denne sikkerhetskopien"
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 "Overføringer til %s kan krypteres. Hvis du ser noen krypteringsfeil, kan du se under «Ekspertinnstillinger» for flere alternativer."
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 "cURL-modulen i PHP-installasjonen på webserveren din støtter ikke https-tilgang. Vi får ikke tilgang til %s uten denne støtten. Ta kontakt med webhotelleverandøren din."
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
-
6983
- #: src/methods/cloudfiles-new.php:100, src/methods/cloudfiles.php:440,
6984
- #: src/methods/openstack-base.php:571, src/methods/s3.php:863
6985
- msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
6986
- msgstr "PHP-installasjonen på webserveren din mangler den obligatoriske modulen %s. Ta kontakt med leverandøren av webhotellet ditt."
6987
-
6988
- #: src/templates/wp-admin/settings/form-contents.php:373
6989
- msgid "Save Changes"
6990
- msgstr "Lagre forandringer"
6991
-
6992
- #: src/templates/wp-admin/settings/form-contents.php:345
6993
- msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
6994
- msgstr "Dette valget vil senke sikkerhetsnivået i UpdraftPlus. All kryptering vil deaktiveres. Valget vil imidlertid ikke ha noen effekt for lagringstjenester - for eksempel Dropbox - som kun kan brukes med krypterte forbindelser."
6995
-
6996
- #: src/templates/wp-admin/settings/form-contents.php:344
6997
- msgid "Disable SSL entirely where possible"
6998
- msgstr "Deaktivér SSL der det er mulig."
6999
-
7000
- #: src/templates/wp-admin/settings/form-contents.php:340
7001
- msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
7002
- msgstr "Legg imidlertid merke til at ikke alle skylagringstjenester bruker SSL."
7003
-
7004
- #: src/templates/wp-admin/settings/form-contents.php:340
7005
- msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
7006
- msgstr "Velger du dette alternativet, vil sidens sikkerhet bli dårligere. Da kan ikke UpdraftPlus bekrefte identiteten til skylagringstjenester den kobler til. Da brukes SSL kun til kryptering av trafikk, og ikke for autentisering."
7007
-
7008
- #: src/templates/wp-admin/settings/form-contents.php:339
7009
- msgid "Do not verify SSL certificates"
7010
- msgstr "Ikke bekreft SSL-sertifikater"
7011
-
7012
- #: src/templates/wp-admin/settings/form-contents.php:335
7013
- msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
7014
- msgstr "Som standard bruker UpdraftPlus sitt eget lager med SSL-sertifikater for å verifisere eksterne sider. Vi holder dette lageret oppdatert. Hvis du får en SSL-feil, kan du prøve å bruke lageret som er på webserveren din i stedet."
7015
-
7016
- #: src/templates/wp-admin/settings/form-contents.php:334
7017
- msgid "Use the server's SSL certificates"
7018
- msgstr "Bruk serverens SSL-sertifikater"
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 "Hvis det ikke går, kan du bytte tillatelsene på serveren din eller forandre den til en annen mappe som er skrivbar på webhotellet ditt."
7023
-
7024
- #: src/admin.php:3738
7025
- msgid "or, to reset this option"
7026
- msgstr "eller for å nullstille dette valget"
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 "Mappen for sikkerhetskopier er skrivbar. Det er en god ting!"
7035
-
7036
- #: src/templates/wp-admin/settings/form-contents.php:318
7037
- msgid "Backup directory"
7038
- msgstr "Mappe for sikkerhetskopier"
7039
-
7040
- #: src/templates/wp-admin/settings/form-contents.php:313
7041
- msgid "Delete local backup"
7042
- msgstr "Slett lokal sikkerhetskopi"
7043
-
7044
- #: src/templates/wp-admin/settings/form-contents.php:293
7045
- msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
7046
- msgstr "Trykk her for å se flere valg. Anbefales kun hvis du ønsker å løse et bestemt problem."
7047
-
7048
- #: src/templates/wp-admin/settings/form-contents.php:293
7049
- msgid "Show expert settings"
7050
- msgstr "Vis ekspertinnstillinger"
7051
-
7052
- #: src/templates/wp-admin/settings/form-contents.php:292
7053
- msgid "Expert settings"
7054
- msgstr "Ekspertinnstillinger"
7055
-
7056
- #: src/templates/wp-admin/settings/form-contents.php:303
7057
- msgid "Debug mode"
7058
- msgstr "Feilsøkingsmodus"
7059
-
7060
- #: src/templates/wp-admin/settings/form-contents.php:288
7061
- msgid "Advanced / Debugging Settings"
7062
- msgstr "Avanserte innstillinger"
7063
-
7064
- #: src/admin.php:826
7065
- msgid "Requesting start of backup..."
7066
- msgstr "Sender forespørsel om å begynne sikkerhetskopiering..."
7067
-
7068
- #: src/addons/morefiles.php:311, src/admin.php:843
7069
- msgid "Cancel"
7070
- msgstr "Avbryt"
7071
-
7072
- #: src/addons/incremental.php:235, src/addons/reporting.php:245,
7073
- #: src/admin.php:4004
7074
- msgid "None"
7075
- msgstr "Ingen"
7076
-
7077
- #: src/templates/wp-admin/settings/form-contents.php:103
7078
- msgid "Choose your remote storage"
7079
- msgstr "Velg ekstern lagring"
7080
-
7081
- #: src/templates/wp-admin/settings/form-contents.php:178
7082
- msgid "Manually decrypt a database backup file"
7083
- msgstr "Dekryptér en sikkerhetskopi av databasen manuelt"
7084
-
7085
- #: src/templates/wp-admin/settings/form-contents.php:157
7086
- msgid "Database encryption phrase"
7087
- msgstr "Krypteringsfrase for databasen"
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 "E-post"
7093
-
7094
- #: src/templates/wp-admin/settings/form-contents.php:147
7095
- msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
7096
- msgstr "Mappene du ser over er hele installasjonen din, med unntak av Wordpress-kjernen. Den kan du laste ned fra wordpress.org."
7097
-
7098
- #: src/addons/morefiles.php:473
7099
- msgid "Exclude these:"
7100
- msgstr "Utelat:"
7101
-
7102
- #: src/admin.php:3817
7103
- msgid "Any other directories found inside wp-content"
7104
- msgstr "Alle andre mapper inni «wp-content»"
7105
-
7106
- #: src/templates/wp-admin/settings/form-contents.php:144
7107
- msgid "Include in files backup"
7108
- msgstr "Ta med i filkopien"
7109
-
7110
- #: src/templates/wp-admin/settings/form-contents.php:87
7111
- msgid "e.g. if your server is busy at day and you want to run overnight"
7112
- msgstr "for eksempel hvis webserveren din er opptatt på dagtid og du vil at den skal kjøre over natten"
7113
-
7114
- #: src/templates/wp-admin/settings/form-contents.php:87
7115
- msgid "To fix the time at which a backup should take place,"
7116
- msgstr "For å permanent sette tiden når en sikkerhetskopiering skal skje -"
7117
-
7118
- #: src/addons/incremental.php:244, src/admin.php:3724
7119
- msgid "Monthly"
7120
- msgstr "Månedlig"
7121
-
7122
- #: src/addons/incremental.php:243, src/admin.php:3723
7123
- msgid "Fortnightly"
7124
- msgstr "Annenhver uke"
7125
-
7126
- #: src/addons/incremental.php:242, src/admin.php:3722
7127
- msgid "Weekly"
7128
- msgstr "Ukentlig"
7129
-
7130
- #: src/addons/incremental.php:241, src/admin.php:3721
7131
- msgid "Daily"
7132
- msgstr "Daglig"
7133
-
7134
- #: src/admin.php:851, src/admin.php:3699
7135
- msgid "Download log file"
7136
- msgstr "Last ned logg"
7137
-
7138
- #: src/admin.php:3571
7139
- msgid "The folder exists, but your webserver does not have permission to write to it."
7140
- msgstr "Mappen eksisterer, men webserveren din har ikke tillatelse til å skrive til den."
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 "Mappen ble opprettet, men vi måtte endre filtillatelsene dens til 777 (globalt skrivbar) for å kunne skrive til den. Du burde ta kontakt med internettleverandøren din for å forsikre deg om at det ikke skaper problemer."
7145
-
7146
- #: src/admin.php:3552
7147
- msgid "The request to the filesystem to create the directory failed."
7148
- msgstr "Klarte ikke lage mappe."
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 "Slett"
7156
-
7157
- #: src/admin.php:3415
7158
- msgid "show log"
7159
- msgstr "vis logg"
7160
-
7161
- #: src/templates/wp-admin/advanced/wipe-settings.php:9
7162
- msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
7163
- msgstr "Dette valget vil slette alle innstillingene. Er du sikker på at det er dette du vil?"
7164
-
7165
- #: src/templates/wp-admin/advanced/total-size.php:19
7166
- msgid "count"
7167
- msgstr "tell"
7168
-
7169
- #: src/templates/wp-admin/advanced/total-size.php:9
7170
- msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
7171
- msgstr "NB! Dette tallet er basert på det som ble eller ikke ble ekskludert sist gang du lagret innstillingene."
7172
-
7173
- #: src/templates/wp-admin/advanced/total-size.php:6
7174
- msgid "Total (uncompressed) on-disk data:"
7175
- msgstr "Total, ukomprimert datamengde:"
7176
-
7177
- #: src/templates/wp-admin/advanced/site-info.php:66,
7178
- #: src/templates/wp-admin/settings/tab-addons.php:79,
7179
- #: src/templates/wp-admin/settings/tab-addons.php:92,
7180
- #: src/templates/wp-admin/settings/tab-addons.php:105,
7181
- #: src/templates/wp-admin/settings/tab-addons.php:118,
7182
- #: src/templates/wp-admin/settings/tab-addons.php:131,
7183
- #: src/templates/wp-admin/settings/tab-addons.php:144,
7184
- #: src/templates/wp-admin/settings/tab-addons.php:157,
7185
- #: src/templates/wp-admin/settings/tab-addons.php:170,
7186
- #: src/templates/wp-admin/settings/tab-addons.php:183,
7187
- #: src/templates/wp-admin/settings/tab-addons.php:196,
7188
- #: src/templates/wp-admin/settings/tab-addons.php:209,
7189
- #: src/templates/wp-admin/settings/tab-addons.php:222,
7190
- #: src/templates/wp-admin/settings/tab-addons.php:235,
7191
- #: src/templates/wp-admin/settings/tab-addons.php:252
7192
- msgid "No"
7193
- msgstr "Nei"
7194
-
7195
- #: src/templates/wp-admin/advanced/site-info.php:63,
7196
- #: src/templates/wp-admin/advanced/site-info.php:66,
7197
- #: src/templates/wp-admin/settings/tab-addons.php:53,
7198
- #: src/templates/wp-admin/settings/tab-addons.php:66,
7199
- #: src/templates/wp-admin/settings/tab-addons.php:69,
7200
- #: src/templates/wp-admin/settings/tab-addons.php:82,
7201
- #: src/templates/wp-admin/settings/tab-addons.php:95,
7202
- #: src/templates/wp-admin/settings/tab-addons.php:108,
7203
- #: src/templates/wp-admin/settings/tab-addons.php:121,
7204
- #: src/templates/wp-admin/settings/tab-addons.php:134,
7205
- #: src/templates/wp-admin/settings/tab-addons.php:147,
7206
- #: src/templates/wp-admin/settings/tab-addons.php:160,
7207
- #: src/templates/wp-admin/settings/tab-addons.php:173,
7208
- #: src/templates/wp-admin/settings/tab-addons.php:186,
7209
- #: src/templates/wp-admin/settings/tab-addons.php:199,
7210
- #: src/templates/wp-admin/settings/tab-addons.php:212,
7211
- #: src/templates/wp-admin/settings/tab-addons.php:225,
7212
- #: src/templates/wp-admin/settings/tab-addons.php:238,
7213
- #: src/templates/wp-admin/settings/tab-addons.php:255,
7214
- #: src/templates/wp-admin/settings/tab-addons.php:261
7215
- msgid "Yes"
7216
- msgstr "Ja"
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,
7222
- #: src/templates/wp-admin/advanced/site-info.php:59
7223
- msgid "%s version:"
7224
- msgstr "%s-versjon:"
7225
-
7226
- #: src/templates/wp-admin/advanced/site-info.php:43
7227
- msgid "Current memory usage"
7228
- msgstr "Gjeldende minnebruk"
7229
-
7230
- #: src/templates/wp-admin/advanced/site-info.php:42
7231
- msgid "Peak memory usage"
7232
- msgstr "Høyeste minnebruk"
7233
-
7234
- #: src/templates/wp-admin/advanced/site-info.php:31
7235
- msgid "Web server:"
7236
- msgstr "Webserver:"
7237
-
7238
- #: src/templates/wp-admin/settings/take-backup.php:91
7239
- msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
7240
- msgstr "Se nærmere på UpdraftPlus Premium eller den enkeltstående utvidelsen for nettverksinstallasjoner."
7241
-
7242
- #: src/templates/wp-admin/settings/take-backup.php:91
7243
- msgid "Do you need WordPress Multisite support?"
7244
- msgstr "Trenger du støtte til nettverksinstallasjon av WordPress?"
7245
-
7246
- #: src/templates/wp-admin/settings/take-backup.php:87
7247
- msgid "Multisite"
7248
- msgstr "Flerside"
7249
-
7250
- #: src/templates/wp-admin/settings/take-backup.php:82
7251
- msgid "Perform a one-time backup"
7252
- msgstr "Opprett en sikkerhetskopi"
7253
-
7254
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:83
7255
- msgid "Do read this helpful article of useful things to know before restoring."
7256
- msgstr "Les denne artikkelen for å lære om nyttige ting du kan gjøre ved gjenoppretting."
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 "Migrator-utvidelsen kan søke og erstatte URL-er i databasen din dersom du ønsker å bruke UpdraftPlus for å flytte siden din fra en adresse til en annen."
7261
-
7262
- #: src/addons/morefiles.php:137,
7263
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:75
7264
- msgid "%s restoration options:"
7265
- msgstr "%s gjenopprettingsalternativer:"
7266
-
7267
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:68
7268
- msgid "You will need to restore it manually."
7269
- msgstr "Du må gjenopprette den manuelt."
7270
-
7271
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:68
7272
- msgid "The following entity cannot be restored automatically: \"%s\"."
7273
- msgstr "Følgende enhet kan ikke gjenopprettes automatisk: %s"
7274
-
7275
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:54
7276
- msgid "Your web server has PHP's so-called safe_mode active."
7277
- msgstr "Webserveren din har PHPs «safe_mode» aktivert."
7278
-
7279
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:42
7280
- msgid "Choose the components to restore"
7281
- msgstr "Velg hvilke komponenter du ønsker å gjenopprette"
7282
-
7283
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:42
7284
- msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
7285
- msgstr "Gjenoppretting vil erstatte sidens temaer, utvidelser, opplastinger, database og alle andre innholdsmapper. Hva som inkluderes, er avhengig av hva du velger å gjenopprette, og hva som er i sikkerhetskopien."
7286
-
7287
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:30
7288
- msgid "Restore backup from"
7289
- msgstr "Gjenopprett sikkerhetskopi fra"
7290
-
7291
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:29
7292
- msgid "Restore backup"
7293
- msgstr "Gjenopprett sikkerhetskopi"
7294
-
7295
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:8
7296
- msgid "Delete backup set"
7297
- msgstr "Slett sikkerhetskopi."
7298
-
7299
- #: src/admin.php:825
7300
- msgid "Download error: the server sent us a response which we did not understand."
7301
- msgstr "Nedlastningsfeil: serveren sendte en respons som vi ikke forstod."
7302
-
7303
- #: src/addons/backblaze.php:225, src/addons/cloudfiles-enhanced.php:117,
7304
- #: src/addons/migrator.php:890, src/addons/migrator.php:1187,
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 "Feil:"
7322
-
7323
- #: src/admin.php:808
7324
- msgid "calculating..."
7325
- msgstr "regner ut..."
7326
-
7327
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:68,
7328
- #: src/templates/wp-admin/settings/tab-backups.php:70
7329
- msgid "UpdraftPlus - Upload backup files"
7330
- msgstr "UpdraftPlus - Last opp sikkerhetskopier"
7331
-
7332
- #: src/includes/class-filesystem-functions.php:65,
7333
- #: src/templates/wp-admin/advanced/site-info.php:38
7334
- msgid "refresh"
7335
- msgstr "oppdatér"
7336
-
7337
- #: src/includes/class-filesystem-functions.php:86,
7338
- #: src/templates/wp-admin/advanced/site-info.php:38
7339
- msgid "Web-server disk space in use by UpdraftPlus"
7340
- msgstr "Diskplass i bruk av UpdraftPlus"
7341
-
7342
- #: src/includes/class-filesystem-functions.php:86
7343
- msgid "This is a count of the contents of your Updraft directory"
7344
- msgstr "Dette er en opptelling av innholdet i Updraft-mappen din."
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 "Google Disk"
7357
-
7358
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:59,
7359
- #: src/templates/wp-admin/settings/tab-backups.php:63
7360
- msgid "If you are using this, then turn Turbo/Road mode off."
7361
- msgstr "Skru av turbo- eller off-road-modus hvis du bruker Opera."
7362
-
7363
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:59,
7364
- #: src/templates/wp-admin/settings/tab-backups.php:63
7365
- msgid "Opera web browser"
7366
- msgstr "Nettleseren Opera"
7367
-
7368
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:47,
7369
- #: src/templates/wp-admin/settings/tab-backups.php:51
7370
- msgid "More tasks:"
7371
- msgstr "Flere oppgaver:"
7372
-
7373
- #: src/admin.php:3114
7374
- msgid "Download most recently modified log file"
7375
- msgstr "Last ned den siste loggfilen"
7376
-
7377
- #: src/central/bootstrap.php:187
7378
- msgid "(Nothing yet logged)"
7379
- msgstr "Loggen er tom."
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 "Siste loggoppføring"
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 "Gjenopprett"
7391
-
7392
- #: src/admin.php:842, src/templates/wp-admin/settings/take-backup.php:50
7393
- msgid "Backup Now"
7394
- msgstr "Kopiér nå"
7395
-
7396
- #: src/templates/wp-admin/settings/take-backup.php:45
7397
- msgid "Time now"
7398
- msgstr "Tid nå"
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,
7406
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:75,
7407
- #: src/templates/wp-admin/settings/take-backup.php:33
7408
- msgid "Database"
7409
- msgstr "Database"
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 "Filer"
7415
-
7416
- #: src/templates/wp-admin/settings/take-backup.php:18
7417
- msgid "Next scheduled backups"
7418
- msgstr "Planlagte sikkerhetskopier"
7419
-
7420
- #: src/admin.php:313
7421
- msgid "At the same time as the files backup"
7422
- msgstr "På samme tidspunkt som filkopieringen"
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 "Ingenting er planlagt for øyeblikket"
7428
-
7429
- #: src/templates/wp-admin/settings/take-backup.php:5
7430
- msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
7431
- msgstr "Dette administrasjonspanelet bruker mye JavaScript. Enten må du aktivere det i nettleseren din, eller så må du bytte til en annen nettleser som har det aktivert."
7432
-
7433
- #: src/templates/wp-admin/settings/take-backup.php:5
7434
- msgid "JavaScript warning"
7435
- msgstr "Advarsel fra JavaScript"
7436
-
7437
- #: src/admin.php:828, src/admin.php:3151
7438
- msgid "Delete Old Directories"
7439
- msgstr "Slett gamle mapper"
7440
-
7441
- #: src/admin.php:2638
7442
- msgid "Current limit is:"
7443
- msgstr "Gjeldende grense er:"
7444
-
7445
- #: src/admin.php:2613
7446
- msgid "Your backup has been restored."
7447
- msgstr "Sikkerhetskopien din har blitt gjenopprettet."
7448
-
7449
- #: src/templates/wp-admin/settings/header.php:26
7450
- msgid "Version"
7451
- msgstr "Versjon"
7452
-
7453
- #: src/templates/wp-admin/settings/header.php:25
7454
- msgid "Lead developer's homepage"
7455
- msgstr "Utviklerens hjemmeside"
7456
-
7457
- #: src/central/bootstrap.php:511
7458
- msgid "UpdraftPlus.Com"
7459
- msgstr ""
7460
-
7461
- #: src/admin.php:5053
7462
- msgid "Your settings have been wiped."
7463
- msgstr "Innstillingene dine har blitt gjenopprettet."
7464
-
7465
- #: src/admin.php:2573
7466
- msgid "Backup directory successfully created."
7467
- msgstr "Mappe for sikkerhetskopier ble opprettet."
7468
-
7469
- #: src/admin.php:2566
7470
- msgid "Backup directory could not be created"
7471
- msgstr "Klarte ikke opprette mappe for sikkerhetskopier."
7472
-
7473
- #: src/admin.php:3431
7474
- msgid "Old directory removal failed for some reason. You may want to do this manually."
7475
- msgstr "Klarte ikke fjerne gamle mapper. Du kan gjøre dette manuelt."
7476
-
7477
- #: src/admin.php:3429
7478
- msgid "Old directories successfully removed."
7479
- msgstr "Fjernet gamle mapper."
7480
-
7481
- #: src/admin.php:3426, src/admin.php:3426
7482
- msgid "Remove old directories"
7483
- msgstr "Slett gamle mapper"
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 "Gå tilbake til konfigurering"
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 "Handlinger"
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 "Ukjent filformat. Dette ser ikke ut som en kryptert databasefil laget av UpdraftPlus."
7501
-
7502
- #: src/admin.php:2309
7503
- msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
7504
- msgstr "Ukjent filformat; dette ser ikke ut som en fil laget av UpdraftPlus."
7505
-
7506
- #: src/admin.php:2205
7507
- msgid "No local copy present."
7508
- msgstr "Det eksisterer ingen lokal kopi."
7509
-
7510
- #: src/admin.php:2202
7511
- msgid "Download in progress"
7512
- msgstr "Nedlastningen er i gang"
7513
-
7514
- #: src/admin.php:820, src/admin.php:2191
7515
- msgid "File ready."
7516
- msgstr "Filen er klar."
7517
-
7518
- #: src/admin.php:2172
7519
- msgid "Download failed"
7520
- msgstr "Nedlastning feilet"
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,
7527
- #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
7528
- #: src/methods/stream-base.php:219, src/restorer.php:2884,
7529
- #: src/restorer.php:2909, src/restorer.php:2990, src/updraftplus.php:157
7530
- msgid "Error"
7531
- msgstr "Feil"
7532
-
7533
- #: src/admin.php:1959
7534
- msgid "Could not find that job - perhaps it has already finished?"
7535
- msgstr "Klarte ikke finne noen planlagt sikkerhetskopiering. Kanskje har den allerede fullført?"
7536
-
7537
- #: src/admin.php:1951
7538
- msgid "Job deleted"
7539
- msgstr "Slettet jobb"
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 "OK. Du kommer snart til å se aktivitet i «Siste loggoppføring»-feltet under."
7544
-
7545
- #: src/admin.php:895
7546
- msgid "Nothing yet logged"
7547
- msgstr "Ingen loggoppføringer ennå"
7548
-
7549
- #: src/admin.php:1163
7550
- msgid "Please consult this FAQ if you have problems backing up."
7551
- msgstr "Se Ofte stilte spørsmål hvis du har problemer med å sikkerhetskopiere."
7552
-
7553
- #: src/admin.php:1163
7554
- msgid "Your website is hosted using the %s web server."
7555
- msgstr "Websiden din benytter %s som serverprogramvare."
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 "UpdraftPlus støtter ikke WordPress-versjoner lavere enn %s. Det kan være det fungerer allikevel, men kundestøtte er ikke tilgjengelig før du oppdaterer."
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 "Du har mindre enn %s ledig plass på disken UpdraftPlus bruker til å lagre sikkerhetskopier. Det kan hende vi går tom for plass. Ta kontakt med internettleverandøren din for å løse problemet."
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,
7572
- #: src/methods/updraftvault.php:306,
7573
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
7574
- #: src/templates/wp-admin/settings/tab-backups.php:27,
7575
- #: src/udaddons/updraftplus-addons.php:259
7576
- msgid "Warning"
7577
- msgstr "Advarsel"
7578
-
7579
- #: src/admin.php:1092
7580
- msgid "Add-Ons / Pro Support"
7581
- msgstr "Utvidelser"
7582
-
7583
- #: src/admin.php:679, src/admin.php:1090, src/admin.php:2800
7584
- msgid "Settings"
7585
- msgstr "Innstillinger"
7586
-
7587
- #: src/backup.php:261
7588
- msgid "Could not create %s zip. Consult the log file for more information."
7589
- msgstr "Klarte ikke opprette zip-filen %s. Se loggen for mer informasjon."
7590
-
7591
- #: src/backup.php:2298
7592
- msgid "Infinite recursion: consult your log for more information"
7593
- msgstr "Uendelig løkke. Se loggen for mer informasjon."
7594
-
7595
- #: src/includes/updraftplus-notices.php:102
7596
- msgid "Please help UpdraftPlus by giving a positive review at wordpress.org."
7597
- msgstr ""
7598
-
7599
- #: src/includes/updraftplus-notices.php:101
7600
- msgid "Like UpdraftPlus and can spare one minute?"
7601
- msgstr "Liker du UpdraftPlus og har ett minutt til overs?"
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 "Fant ikke filen"
7607
-
7608
- #: src/includes/class-updraftplus-encryption.php:354
7609
- msgid "The decryption key used:"
7610
- msgstr "Dette er dekrypteringsnøkkelen som ble brukt:"
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 "Dekryptering feilet. Du har sannsynligvis gal krypteringsnøkkel."
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 "Dekryptering feilet. Databasefilen er kryptert, men du har ingen krypteringsnøkkel."
7621
-
7622
- #: src/backup.php:2172
7623
- msgid "Could not open the backup file for writing"
7624
- msgstr "Klarte ikke åpne sikkerhetskopien for skriving."
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 "Klarte ikke lagre kopieringshistorie fordi vi har ingen array. Sikkerhetskopieringen feilet sannsynligvis."
7629
-
7630
- #: src/class-updraftplus.php:3392
7631
- msgid "Could not read the directory"
7632
- msgstr "Klarte ikke lese mappe"
7633
-
7634
- #: src/admin.php:2251, src/backup.php:1359
7635
- msgid "Backup directory (%s) is not writable, or does not exist."
7636
- msgstr "Mappen for sikkerhetskopier - %s - er enten ikke mulig å skrive til, eller så finnes den ikke."
7637
-
7638
- #: src/backup.php:1136
7639
- msgid "WordPress backup is complete"
7640
- msgstr "Sikkerhetskopiering fullført"
7641
-
7642
- #: src/class-updraftplus.php:2998
7643
- msgid "The backup attempt has finished, apparently unsuccessfully"
7644
- msgstr "Sikkerhetskopieringen feilet."
7645
-
7646
- #: src/class-updraftplus.php:2980
7647
- msgid "The backup apparently succeeded and is now complete"
7648
- msgstr "Sikkerhetskopieringen er fullført."
7649
-
7650
- #: src/addons/moredatabase.php:388
7651
- msgid "Encryption error occurred when encrypting database. Encryption aborted."
7652
- msgstr "Klarte ikke kryptere databasen."
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 "Klarte ikke å opprette filer i backup folderen. Backup avbrutt - sjekk dine UpdraftPlus innstillinger"
7657
-
7658
- #: src/class-updraftplus.php:1796
7659
- msgid "Others"
7660
- msgstr "Annet"
7661
-
7662
- #: src/addons/multisite.php:500, src/class-updraftplus.php:1781
7663
- msgid "Uploads"
7664
- msgstr "Opplastinger"
7665
-
7666
- #: src/class-updraftplus.php:1780
7667
- msgid "Themes"
7668
- msgstr "Temaer"
7669
-
7670
- #: src/class-updraftplus.php:1779
7671
- msgid "Plugins"
7672
- msgstr "Utvidelser"
7673
-
7674
- #: src/class-updraftplus.php:624
7675
- msgid "No log files were found."
7676
- msgstr "Fant ingen loggfiler."
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 "Loggfilen kunne ikke leses."
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 "Varsel:"
7687
-
7688
- #: src/addons/multisite.php:96, src/addons/multisite.php:736,
7689
- #: src/options.php:74
7690
- msgid "UpdraftPlus Backups"
7691
- msgstr "UpdraftPlus-backup"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/updraftplus-pl_PL.mo DELETED
Binary file
languages/updraftplus-pl_PL.po DELETED
@@ -1,7696 +0,0 @@
1
- # Translation of UpdraftPlus in Polish
2
- # This file is distributed under the same license as the UpdraftPlus package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2018-01-22 20:50:13+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/2.3.1\n"
11
- "Language: pl\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"
21
- msgstr ""
22
-
23
- #: src/udaddons/updraftplus-addons.php:268,
24
- #: src/udaddons/updraftplus-addons.php:280
25
- msgid "If you have already renewed, then you need to allocate a licence to this site - %s"
26
- msgstr ""
27
-
28
- #: src/addons/onedrive.php:864
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
-
36
- #: src/templates/wp-admin/settings/form-contents.php:350
37
- msgid "Read more about Easy Updates Manager"
38
- msgstr ""
39
-
40
- #: src/templates/wp-admin/settings/temporary-clone.php:68
41
- msgid "You can find out more about clone keys here."
42
- msgstr ""
43
-
44
- #: src/templates/wp-admin/settings/temporary-clone.php:57
45
- msgid "Or, use an UpdraftClone key"
46
- msgstr ""
47
-
48
- #: src/restorer.php:2493
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
-
60
- #: src/addons/azure.php:646
61
- msgid "Azure Government"
62
- msgstr ""
63
-
64
- #: src/templates/wp-admin/settings/form-contents.php:350
65
- msgid "Ask WordPress to automatically update UpdraftPlus when it finds an available update."
66
- msgstr ""
67
-
68
- #: src/templates/wp-admin/settings/form-contents.php:349
69
- msgid "Automatic updates"
70
- msgstr ""
71
-
72
- #: src/restorer.php:2092, src/restorer.php:2134
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
-
80
- #: src/addons/googlecloud.php:997
81
- msgid "You must add the following as the authorized redirect URI (under \"More Options\") when asked"
82
- msgstr ""
83
-
84
- #: src/addons/googlecloud.php:991
85
- msgid "%s does not allow authorization of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
86
- msgstr ""
87
-
88
- #: src/addons/googlecloud.php:57
89
- msgid "Frankfurt"
90
- msgstr ""
91
-
92
- #: src/addons/googlecloud.php:56
93
- msgid "London"
94
- msgstr ""
95
-
96
- #: src/addons/googlecloud.php:55
97
- msgid "Belgium"
98
- msgstr ""
99
-
100
- #: src/addons/googlecloud.php:54
101
- msgid "Sydney"
102
- msgstr ""
103
-
104
- #: src/addons/googlecloud.php:53
105
- msgid "Singapore"
106
- msgstr ""
107
-
108
- #: src/addons/googlecloud.php:52
109
- msgid "Tokyo"
110
- msgstr ""
111
-
112
- #: src/addons/googlecloud.php:51
113
- msgid "Taiwan"
114
- msgstr ""
115
-
116
- #: src/addons/googlecloud.php:50
117
- msgid "Oregon"
118
- msgstr ""
119
-
120
- #: src/addons/googlecloud.php:49
121
- msgid "North Virginia"
122
- msgstr ""
123
-
124
- #: src/addons/googlecloud.php:48
125
- msgid "South Carolina"
126
- msgstr ""
127
-
128
- #: src/addons/googlecloud.php:47
129
- msgid "Iowa"
130
- msgstr ""
131
-
132
- #: src/includes/class-commands.php:949
133
- msgid "The creation of your data for creating the clone should now begin. N.B. You will be charged one token once the clone is ready. If the clone fails to boot, then no token will be taken."
134
- msgstr ""
135
-
136
- #: src/templates/wp-admin/settings/file-backup-exclude.php:11
137
- msgid "Confirm change"
138
- msgstr ""
139
-
140
- #: src/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php:3,
141
- #: src/templates/wp-admin/settings/file-backup-exclude.php:18
142
- msgid "Add an exclusion rule"
143
- msgstr ""
144
-
145
- #: src/templates/wp-admin/settings/exclude-modal.php:59
146
- msgid "Type a file prefix"
147
- msgstr ""
148
-
149
- #: src/templates/wp-admin/settings/exclude-modal.php:56,
150
- #: src/templates/wp-admin/settings/exclude-modal.php:58
151
- msgid "All files beginning with these characters"
152
- msgstr ""
153
-
154
- #: src/templates/wp-admin/settings/exclude-modal.php:47
155
- msgid "Type an extension like zip"
156
- msgstr ""
157
-
158
- #: src/templates/wp-admin/settings/exclude-modal.php:28
159
- msgid "Select a file/folder which you would like to exclude"
160
- msgstr ""
161
-
162
- #: src/templates/wp-admin/settings/exclude-modal.php:15
163
- msgid "All files beginning with given characters"
164
- msgstr ""
165
-
166
- #: src/templates/wp-admin/settings/exclude-modal.php:12,
167
- #: src/templates/wp-admin/settings/exclude-modal.php:44,
168
- #: src/templates/wp-admin/settings/exclude-modal.php:46
169
- msgid "All files with this extension"
170
- msgstr ""
171
-
172
- #: src/templates/wp-admin/settings/exclude-modal.php:9,
173
- #: src/templates/wp-admin/settings/exclude-modal.php:22
174
- msgid "File/directory"
175
- msgstr ""
176
-
177
- #: src/templates/wp-admin/settings/exclude-modal.php:6
178
- msgid "Select a way to exclude files or directories from the backup"
179
- msgstr ""
180
-
181
- #: src/templates/wp-admin/settings/exclude-modal.php:2
182
- msgid "Exclude files/directories"
183
- msgstr ""
184
-
185
- #: src/includes/updraftclone/temporary-clone-status.php:422
186
- msgid "To read FAQs/documentation about UpdraftClone, go here."
187
- msgstr ""
188
-
189
- #: src/includes/updraftclone/temporary-clone-status.php:421
190
- msgid "your UpdraftPlus.com account"
191
- msgstr ""
192
-
193
- #: src/includes/updraftclone/temporary-clone-status.php:421
194
- msgid "You can check the progress here or in %s"
195
- msgstr ""
196
-
197
- #: src/includes/updraftclone/temporary-clone-status.php:421
198
- msgid "Your UpdraftClone is still setting up."
199
- msgstr ""
200
-
201
- #: src/includes/updraftclone/temporary-clone-status.php:378
202
- msgid "%s archives remain"
203
- msgstr ""
204
-
205
- #: src/includes/updraftclone/temporary-clone-status.php:378
206
- msgid "The site data has all been received, and its import has begun."
207
- msgstr ""
208
-
209
- #: src/includes/updraftclone/temporary-clone-status.php:373
210
- msgid "The sending of the site data has begun. So far %s data archives totalling %s have been received"
211
- msgstr ""
212
-
213
- #: src/includes/updraftclone/temporary-clone-status.php:369
214
- msgid "WordPress installed; now awaiting the site data to be sent."
215
- msgstr ""
216
-
217
- #: src/includes/updraftclone/temporary-clone-status.php:94
218
- msgid "Clone ready"
219
- msgstr ""
220
-
221
- #: src/includes/updraftclone/temporary-clone-status.php:86
222
- msgid "Site data has been deployed"
223
- msgstr ""
224
-
225
- #: src/includes/updraftclone/temporary-clone-status.php:84,
226
- #: src/includes/updraftclone/temporary-clone-status.php:347
227
- msgid "Deploying site data"
228
- msgstr ""
229
-
230
- #: src/includes/updraftclone/temporary-clone-status.php:75
231
- msgid "Site data received"
232
- msgstr ""
233
-
234
- #: src/includes/updraftclone/temporary-clone-status.php:73,
235
- #: src/includes/updraftclone/temporary-clone-status.php:344
236
- msgid "Receiving site data"
237
- msgstr ""
238
-
239
- #: src/includes/updraftclone/temporary-clone-status.php:66,
240
- #: src/includes/updraftclone/temporary-clone-status.php:341
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
-
280
- #: src/templates/wp-admin/advanced/site-info.php:104
281
- msgid "log results to console"
282
- msgstr ""
283
-
284
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:42
285
- msgid "Each time your clone renews it costs 1 token, which lasts for 1 week. You can shut this clone down at the following link:"
286
- msgstr ""
287
-
288
- #: src/templates/wp-admin/settings/temporary-clone.php:41
289
- msgid "To create a temporary clone you need credit in your account."
290
- msgstr ""
291
-
292
- #: src/templates/wp-admin/settings/temporary-clone.php:22
293
- msgid "Read FAQs here."
294
- msgstr ""
295
-
296
- #: src/methods/dropbox.php:305, src/methods/dropbox.php:321
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
-
312
- #: src/includes/class-commands.php:906
313
- msgid "manage"
314
- msgstr ""
315
-
316
- #: src/includes/class-commands.php:906
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
-
328
- #: src/addons/migrator.php:1745
329
- msgid "Site key"
330
- msgstr ""
331
-
332
- #: src/addons/migrator.php:1736
333
- msgid "Add a site"
334
- msgstr ""
335
-
336
- #: src/addons/migrator.php:229, src/addons/migrator.php:1731,
337
- #: src/addons/migrator.php:1752
338
- msgid "back"
339
- msgstr ""
340
-
341
- #: src/addons/migrator.php:195
342
- msgid "Read this article to see step-by-step how it's done."
343
- msgstr ""
344
-
345
- #: src/addons/migrator.php:189,
346
- #: src/templates/wp-admin/settings/migrator-no-migrator.php:6
347
- msgid "Migrate (create a copy of a site on hosting you control)"
348
- msgstr ""
349
-
350
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:42
351
- msgid "Manage your clones"
352
- msgstr ""
353
-
354
- #: src/templates/wp-admin/settings/existing-backups-table.php:158
355
- msgid "Use ctrl / cmd + press to select several items"
356
- msgstr ""
357
-
358
- #: src/methods/dreamobjects.php:20
359
- msgid "Closing 1st October 2018"
360
- msgstr ""
361
-
362
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:41
363
- msgid "Your clone will renew on:"
364
- msgstr ""
365
-
366
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:32
367
- msgid "Unable to get renew date"
368
- msgstr ""
369
-
370
- #: src/admin.php:906
371
- msgid "The backup was aborted"
372
- msgstr ""
373
-
374
- #: src/addons/onedrive.php:1197
375
- msgid "OneDrive Germany"
376
- msgstr ""
377
-
378
- #: src/addons/onedrive.php:1196
379
- msgid "OneDrive International"
380
- msgstr ""
381
-
382
- #: src/addons/onedrive.php:1193
383
- msgid "Account type"
384
- msgstr ""
385
-
386
- #: src/templates/wp-admin/settings/temporary-clone.php:56,
387
- #: src/templates/wp-admin/settings/temporary-clone.php:76
388
- msgid "I accept the UpdraftClone terms and conditions"
389
- msgstr ""
390
-
391
- #: src/templates/wp-admin/settings/temporary-clone.php:56
392
- msgid "Not got an account? Get one by buying some tokens here."
393
- msgstr ""
394
-
395
- #: src/templates/wp-admin/settings/temporary-clone.php:22,
396
- #: src/templates/wp-admin/settings/temporary-clone.php:41,
397
- #: src/templates/wp-admin/settings/temporary-clone.php:54
398
- msgid "You can buy UpdraftClone tokens from our shop, here."
399
- msgstr ""
400
-
401
- #: src/templates/wp-admin/settings/temporary-clone.php:54
402
- msgid "To create a temporary clone you need: 1) credit in your account and 2) to connect to your account, below."
403
- msgstr ""
404
-
405
- #: src/templates/wp-admin/settings/temporary-clone.php:32
406
- msgid "If you want, test upgrading to a different PHP or WP version."
407
- msgstr ""
408
-
409
- #: src/templates/wp-admin/settings/temporary-clone.php:32
410
- msgid "Flexible"
411
- msgstr ""
412
-
413
- #: src/templates/wp-admin/settings/temporary-clone.php:31
414
- msgid "Takes just the time needed to create a backup and send it."
415
- msgstr ""
416
-
417
- #: src/templates/wp-admin/settings/temporary-clone.php:31
418
- msgid "Fast"
419
- msgstr ""
420
-
421
- #: src/templates/wp-admin/settings/temporary-clone.php:30
422
- msgid "One VPS (Virtual Private Server) per clone, shared with nobody."
423
- msgstr ""
424
-
425
- #: src/templates/wp-admin/settings/temporary-clone.php:30
426
- msgid "Secure"
427
- msgstr ""
428
-
429
- #: src/templates/wp-admin/settings/temporary-clone.php:29
430
- msgid "Runs on capacity from a leading cloud computing provider."
431
- msgstr ""
432
-
433
- #: src/templates/wp-admin/settings/temporary-clone.php:29
434
- msgid "Reliable"
435
- msgstr ""
436
-
437
- #: src/templates/wp-admin/settings/temporary-clone.php:28
438
- msgid "Press the buttons... UpdraftClone does the work."
439
- msgstr ""
440
-
441
- #: src/templates/wp-admin/settings/temporary-clone.php:28
442
- msgid "Easy"
443
- msgstr ""
444
-
445
- #: src/templates/wp-admin/settings/temporary-clone.php:22
446
- msgid "A temporary clone is an instant copy of this website, running on our servers. Rather than test things on your live site, you can UpdraftClone it, and then throw away your clone when done."
447
- msgstr ""
448
-
449
- #: src/templates/wp-admin/settings/temporary-clone.php:10,
450
- #: src/templates/wp-admin/settings/temporary-clone.php:39
451
- msgid "Create a temporary clone on our servers (UpdraftClone)"
452
- msgstr ""
453
-
454
- #: src/templates/wp-admin/settings/tab-addons.php:23
455
- msgid "WooCommerce plugins"
456
- msgstr ""
457
-
458
- #: src/templates/wp-admin/advanced/wipe-settings.php:13
459
- msgid "Reset tour"
460
- msgstr ""
461
-
462
- #: src/templates/wp-admin/advanced/wipe-settings.php:12
463
- msgid "Press this button to take a tour of the plugin."
464
- msgstr ""
465
-
466
- #: src/includes/updraftplus-tour.php:232
467
- msgid "Take Tour"
468
- msgstr ""
469
-
470
- #: src/includes/updraftplus-tour.php:182
471
- msgid "Log in here to enable all the features you have access to."
472
- msgstr ""
473
-
474
- #: src/includes/updraftplus-tour.php:181
475
- msgid "Connect to updraftplus.com"
476
- msgstr ""
477
-
478
- #: src/includes/updraftplus-tour.php:172
479
- msgid "Thank you for taking the tour. You are now all set to use UpdraftPlus!"
480
- msgstr ""
481
-
482
- #: src/includes/updraftplus-tour.php:160
483
- msgctxt "Translators: UpdraftVault is a product name and should not be translated."
484
- msgid "To get started with UpdraftVault, select one of the options below:"
485
- msgstr ""
486
-
487
- #: src/includes/updraftplus-tour.php:156,
488
- #: src/includes/updraftplus-tour.php:174, src/includes/updraftplus-tour.php:185
489
- msgid "Finish"
490
- msgstr ""
491
-
492
- #: src/includes/updraftplus-tour.php:153
493
- msgid "UpdraftPlus Premium has many more exciting features!"
494
- msgstr ""
495
-
496
- #: src/includes/updraftplus-tour.php:152
497
- msgid "UpdraftPlus Premium and addons"
498
- msgstr ""
499
-
500
- #: src/includes/updraftplus-tour.php:150, src/includes/updraftplus-tour.php:179
501
- msgid "Thank you for taking the tour."
502
- msgstr ""
503
-
504
- #: src/includes/updraftplus-tour.php:145
505
- msgid "Do you have a few more WordPress sites you want to backup? If yes you can save hours by controlling all your backups in one place from UpdraftCentral."
506
- msgstr ""
507
-
508
- #: src/includes/updraftplus-tour.php:144
509
- msgid "Control all your backups in one place"
510
- msgstr ""
511
-
512
- #: src/includes/updraftplus-tour.php:139
513
- msgid "Congratulations, your settings have successfully been saved."
514
- msgstr ""
515
-
516
- #: src/includes/updraftplus-tour.php:135
517
- msgid "Press here to save your settings."
518
- msgstr ""
519
-
520
- #: src/includes/updraftplus-tour.php:134, src/includes/updraftplus-tour.php:138
521
- msgid "Save"
522
- msgstr ""
523
-
524
- #: src/includes/updraftplus-tour.php:131
525
- msgid "Look through the other settings here, making any changes you’d like."
526
- msgstr ""
527
-
528
- #: src/includes/updraftplus-tour.php:130
529
- msgid "More settings"
530
- msgstr ""
531
-
532
- #: src/includes/updraftplus-tour.php:126,
533
- #: src/includes/updraftplus-tour.php:153,
534
- #: src/templates/wp-admin/settings/temporary-clone.php:22
535
- msgid "Find out more here."
536
- msgstr ""
537
-
538
- #: src/includes/updraftplus-tour.php:125
539
- msgid "UpdraftVault is our remote storage which works seamlessly with UpdraftPlus."
540
- msgstr ""
541
-
542
- #: src/includes/updraftplus-tour.php:122
543
- msgid "Now select a remote storage destination to protect against server-wide threats. If not, your backups remain on the same server as your site."
544
- msgstr ""
545
-
546
- #: src/includes/updraftplus-tour.php:118
547
- msgid "Choose the schedule that you want your backups to run on."
548
- msgstr ""
549
-
550
- #: src/includes/updraftplus-tour.php:117
551
- msgid "Choose your backup schedule"
552
- msgstr ""
553
-
554
- #: src/includes/updraftplus-tour.php:113
555
- msgid "Congratulations! Your first backup is running."
556
- msgstr ""
557
-
558
- #: src/includes/updraftplus-tour.php:109, src/includes/updraftplus-tour.php:114
559
- msgid "Go to settings"
560
- msgstr ""
561
-
562
- #: src/includes/updraftplus-tour.php:108, src/includes/updraftplus-tour.php:113
563
- msgctxt "Translators: %s is a bold tag."
564
- msgid "But to avoid server-wide threats backup regularly to remote cloud storage in %s settings %s"
565
- msgstr ""
566
-
567
- #: src/includes/updraftplus-tour.php:108
568
- msgid "Press here to run a manual backup."
569
- msgstr ""
570
-
571
- #: src/includes/updraftplus-tour.php:107, src/includes/updraftplus-tour.php:112
572
- msgid "Creating your first backup"
573
- msgstr ""
574
-
575
- #: src/includes/updraftplus-tour.php:104
576
- msgid "Select what you want to backup"
577
- msgstr ""
578
-
579
- #: src/includes/updraftplus-tour.php:103
580
- msgid "Manual backup options"
581
- msgstr ""
582
-
583
- #: src/includes/updraftplus-tour.php:100
584
- msgctxt "updraftplus"
585
- msgid "To make a simple backup to your server, press this button. Or to setup regular backups and remote storage, go to %s settings %s"
586
- msgstr ""
587
-
588
- #: src/includes/updraftplus-tour.php:99
589
- msgid "Your first backup"
590
- msgstr ""
591
-
592
- #: src/includes/updraftplus-tour.php:95
593
- msgid "Press here to start!"
594
- msgstr ""
595
-
596
- #: src/includes/updraftplus-tour.php:92
597
- msgid "the world’s most trusted backup plugin!"
598
- msgstr ""
599
-
600
- #: src/includes/updraftplus-tour.php:92
601
- msgid "Welcome to UpdraftPlus"
602
- msgstr ""
603
-
604
- #: src/includes/updraftplus-tour.php:91
605
- msgid "UpdraftPlus settings"
606
- msgstr ""
607
-
608
- #: src/includes/updraftplus-tour.php:88
609
- msgid "End tour"
610
- msgstr ""
611
-
612
- #: src/includes/updraftplus-tour.php:87
613
- msgid "Skip this step"
614
- msgstr ""
615
-
616
- #: src/includes/updraftplus-tour.php:86
617
- msgid "Back"
618
- msgstr ""
619
-
620
- #: src/includes/class-commands.php:893
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
-
628
- #: src/templates/wp-admin/settings/temporary-clone.php:35
629
- msgid "Temporary clones of WordPress multisite installations are not yet supported. See our documentation on how to carry out a normal migration here"
630
- msgstr ""
631
-
632
- #: src/templates/wp-admin/settings/tab-addons.php:247
633
- msgid "Premium / Find out more"
634
- msgstr ""
635
-
636
- #: src/templates/wp-admin/settings/tab-addons.php:22
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
-
660
- #: src/addons/migrator.php:233
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
-
672
- #: src/addons/wp-cli.php:408
673
- msgid "Latest full backup found; identifier:"
674
- msgstr ""
675
-
676
- #: src/addons/wp-cli.php:407
677
- msgid "No previous full backup found."
678
- msgstr ""
679
-
680
- #: src/templates/wp-admin/settings/existing-backups-table.php:89
681
- msgid "Remote storage: %s"
682
- msgstr ""
683
-
684
- #: src/addons/wp-cli.php:88
685
- msgid "No previous backup found to add an increment to."
686
- msgstr ""
687
-
688
- #: src/restorer.php:2499
689
- msgid "Requested character set (%s) is not present - changing to %s."
690
- msgstr ""
691
-
692
- #: src/includes/updraftclone/temporary-clone-user-notice.php:32
693
- msgid "Allow only administrators to log in"
694
- msgstr ""
695
-
696
- #: src/includes/updraftclone/temporary-clone-user-notice.php:31
697
- msgid "You can forbid non-admins logins to this cloned site by checking the checkbox below"
698
- msgstr ""
699
-
700
- #: src/includes/updraftclone/temporary-clone-user-notice.php:30
701
- msgid "UpdraftPlus temporary clone user login settings:"
702
- msgstr ""
703
-
704
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:39
705
- msgid "Welcome to your UpdraftClone (temporary clone)"
706
- msgstr ""
707
-
708
- #: src/includes/updraftclone/temporary-clone-dash-notice.php:38
709
- msgid "Refresh connection"
710
- msgstr ""
711
-
712
- #: src/addons/reporting.php:495
713
- msgid "Log all messages to syslog"
714
- msgstr ""
715
-
716
- #: src/addons/sftp.php:601, src/addons/sftp.php:603
717
- msgid "The server's RSA key %s fingerprint: %s."
718
- msgstr ""
719
-
720
- #: src/addons/sftp.php:597
721
- msgid "Failed: We are unable to match the fingerprint. However, we were able to log in and move to the indicated directory and successfully create a file in that location."
722
- msgstr ""
723
-
724
- #: src/addons/sftp.php:478
725
- msgid "MD5 (128-bit) fingerprint, in hex format - should have the same length and general appearance as this (colons optional): 73:51:43:b1:b5:fc:8b:b7:0a:3a:a9:b1:0f:69:73:a8. Using a fingerprint is not essential, but you are not secure against %s if you do not use one"
726
- msgstr ""
727
-
728
- #: src/addons/sftp.php:475
729
- msgid "RSA fingerprint"
730
- msgstr ""
731
-
732
- #: src/addons/sftp.php:82
733
- msgid "Fingerprints don't match."
734
- msgstr ""
735
-
736
- #: src/templates/wp-admin/settings/migrator-no-migrator.php:17
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)."
748
- msgstr ""
749
-
750
- #: src/addons/wp-cli.php:834
751
- msgid "You have given the %1$s option. The %1$s is working with \"%2$s\" addon. Get the \"%2$s\" addon: %3$s"
752
- msgstr ""
753
-
754
- #: src/addons/wp-cli.php:793
755
- msgid "Your WordPress install has old directories from its state before you restored/migrated (technical information: these are suffixed with -old)."
756
- msgstr ""
757
-
758
- #: src/addons/wp-cli.php:739, src/addons/wp-cli.php:743
759
- msgid "This is not an incremental backup"
760
- msgstr ""
761
-
762
- #: src/addons/wp-cli.php:665
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
-
788
- #: src/addons/incremental.php:270
789
- msgid "Tell me more"
790
- msgstr ""
791
-
792
- #: src/addons/incremental.php:258
793
- msgid "And then add an incremental backup"
794
- msgstr ""
795
-
796
- #: src/addons/incremental.php:236, src/updraftplus.php:99
797
- msgid "Every hour"
798
- msgstr ""
799
-
800
- #: src/includes/class-commands.php:900
801
- msgid "Create clone"
802
- msgstr ""
803
-
804
- #: src/includes/class-commands.php:892, src/includes/class-commands.php:937
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
812
- msgid "Processing"
813
- msgstr ""
814
-
815
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:70
816
- msgid "Connect to UpdraftCentral Cloud"
817
- msgstr ""
818
-
819
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
820
- msgid "UpdraftPlus.Com account terms and policies"
821
- msgstr ""
822
-
823
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:68
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 ""
831
-
832
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:46
833
- msgid "Login or register with this email address"
834
- msgstr ""
835
-
836
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:34
837
- msgid "If not, then choose your details and a new account will be registered."
838
- msgstr ""
839
-
840
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:33
841
- msgid "If you already have an updraftplus.com account, then enter the details below."
842
- msgstr ""
843
-
844
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:31
845
- msgid "Add this website to your UpdraftCentral Cloud dashboard at updraftplus.com."
846
- msgstr ""
847
-
848
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:29
849
- msgid "Login or register for UpdraftCentral Cloud"
850
- msgstr ""
851
-
852
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:20
853
- msgid "Go here to connect it."
854
- msgstr ""
855
-
856
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:20
857
- msgid "Or if you prefer to self-host, then you can get the self-hosted version here."
858
- msgstr ""
859
-
860
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:17
861
- msgid "Connect this site to UpdraftCentral Cloud"
862
- msgstr ""
863
-
864
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:14
865
- msgid "If you have a few sites, it'll save hours. It's free to use or try up to 5 sites."
866
- msgstr ""
867
-
868
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:12
869
- msgid "Backup, update and manage all your WordPress sites from one dashboard"
870
- msgstr ""
871
-
872
- #: src/includes/updraftcentral.php:21, src/includes/updraftplus-clone.php:21
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
-
948
- #: src/addons/wp-cli.php:553
949
- msgid "Migration key created:"
950
- msgstr ""
951
-
952
- #: src/addons/wp-cli.php:543
953
- msgid "Missing parameters"
954
- msgstr ""
955
-
956
- #: src/addons/azure.php:645
957
- msgid "Azure Germany"
958
- msgstr ""
959
-
960
- #: src/addons/azure.php:644
961
- msgid "Azure Global"
962
- msgstr ""
963
-
964
- #: src/addons/azure.php:641
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
-
972
- #: src/templates/wp-admin/settings/upload-backups-modal.php:4
973
- msgid "Select the remote storage destinations you want to upload this backup set to"
974
- msgstr ""
975
-
976
- #: src/templates/wp-admin/settings/upload-backups-modal.php:3
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
-
1000
- #: src/addons/reporting.php:529
1001
- msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive as a result UpdraftPlus will only send Database backups to email."
1002
- msgstr ""
1003
-
1004
- #: src/addons/reporting.php:529
1005
- msgid "Use this option to only send database backups when sending to email, and skip other components."
1006
- msgstr ""
1007
-
1008
- #: src/addons/migrator.php:275
1009
- msgid "For incremental backups, you will be able to choose which increments to restore at a later stage."
1010
- msgstr ""
1011
-
1012
- #: src/addons/incremental.php:72
1013
- msgid "Increments exist at: %s"
1014
- msgstr ""
1015
-
1016
- #: src/addons/incremental.php:70, src/addons/incremental.php:72
1017
- msgid "(latest increment: %s)"
1018
- msgstr ""
1019
-
1020
- #: src/addons/s3-enhanced.php:374
1021
- msgid "Europe (Paris)"
1022
- msgstr ""
1023
-
1024
- #: src/templates/wp-admin/settings/tab-addons.php:154
1025
- msgid "WP-CLI commands to take, list and delete backups."
1026
- msgstr ""
1027
-
1028
- #: src/templates/wp-admin/settings/tab-addons.php:153
1029
- msgid "WP-CLI support"
1030
- msgstr ""
1031
-
1032
- #: src/templates/wp-admin/settings/tab-addons.php:152
1033
- msgid "WP CLI"
1034
- msgstr ""
1035
-
1036
- #: src/addons/wp-cli.php:265
1037
- msgid "Invalid Job Id"
1038
- msgstr ""
1039
-
1040
- #: src/addons/wp-cli.php:205
1041
- msgid "Backup has been started successfully. You can see the last log message by running the following command: \"%s\""
1042
- msgstr ""
1043
-
1044
- #: src/addons/wp-cli.php:195
1045
- msgid "Recently started backup job id: %s"
1046
- msgstr ""
1047
-
1048
- #: src/addons/wp-cli.php:100, src/addons/wp-cli.php:509,
1049
- #: src/addons/wp-cli.php:631, src/addons/wp-cli.php:719,
1050
- #: src/addons/wp-cli.php:742
1051
- msgid "The given value for the '%s' option is not valid"
1052
- msgstr ""
1053
-
1054
- #: src/addons/migrator.php:1755
1055
- msgid "To allow another site to send a backup to this site, create a key below. When you are shown the key, then press the 'Migrate' button on the other (sending) site, and copy-and-paste the key over there (in the 'Send a backup to another site' section)."
1056
- msgstr ""
1057
-
1058
- #: src/addons/migrator.php:1741
1059
- msgid "So, to get the key for the remote site, open the 'Migrate Site' window on that site, and go to that section."
1060
- msgstr ""
1061
-
1062
- #: src/addons/migrator.php:1741
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
-
1070
- #: src/templates/wp-admin/advanced/lock-admin.php:14
1071
- msgid "This functionality has been disabled by the site administrator."
1072
- msgstr ""
1073
-
1074
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:26
1075
- msgid "Simple and secure login with a wave of your phone."
1076
- msgstr ""
1077
-
1078
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:23
1079
- msgid "Auto-clean your WordPress database so that it runs at maximum efficiency. 800,000 users!"
1080
- msgstr ""
1081
-
1082
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:20
1083
- msgid "Add style and flare easily with beautifully-designed sliders on the #1 WP slider plugin"
1084
- msgstr ""
1085
-
1086
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
1087
- msgid "is a highly efficient way to manage, update and backup multiple websites from one place."
1088
- msgstr ""
1089
-
1090
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:9
1091
- msgid "Super-charge and secure your WordPress site with our other top plugins:"
1092
- msgstr ""
1093
-
1094
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:4
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
-
1102
- #: src/restorer.php:534
1103
- msgid "Failed to read from the working directory."
1104
- msgstr ""
1105
-
1106
- #: src/restorer.php:533
1107
- msgid "Failed to find a manifest file in the backup."
1108
- msgstr ""
1109
-
1110
- #: src/restorer.php:532
1111
- msgid "Failed to read the manifest file from backup."
1112
- msgstr ""
1113
-
1114
- #: src/includes/class-wpadmin-commands.php:217
1115
- msgid "Select your incremental restore point"
1116
- msgstr ""
1117
-
1118
- #: src/addons/morefiles.php:67
1119
- msgid "(None configured)"
1120
- msgstr ""
1121
-
1122
- #: src/methods/backup-module.php:541
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
-
1134
- #: src/addons/multisite.php:44, src/options.php:38
1135
- msgid "(Nothing has been logged yet)"
1136
- msgstr ""
1137
-
1138
- #: src/addons/migrator.php:439
1139
- msgid "you will want to use below search and replace site location in the database (migrate) to search/replace the site address."
1140
- msgstr ""
1141
-
1142
- #: src/addons/migrator.php:428
1143
- msgid "As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use below search and replace so that the non-https links are automatically replaced."
1144
- msgstr ""
1145
-
1146
- #: src/addons/migrator.php:417
1147
- msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use below search and replace to search/replace the site address so that the site can be visited without https."
1148
- msgstr ""
1149
-
1150
- #: src/addons/morestorage.php:104
1151
- msgid "Add another %s account..."
1152
- msgstr ""
1153
-
1154
- #: src/addons/morestorage.php:83
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
-
1166
- #: src/templates/wp-admin/settings/tab-addons.php:30
1167
- msgid "If you have purchased from UpdraftPlus.Com, then follow this link to the installation instructions (particularly step 1)."
1168
- msgstr ""
1169
-
1170
- #: src/templates/wp-admin/settings/tab-addons.php:30
1171
- msgid "You are currently using the free version of UpdraftPlus."
1172
- msgstr ""
1173
-
1174
- #: src/templates/wp-admin/settings/tab-addons.php:26
1175
- msgid "Get it here"
1176
- msgstr ""
1177
-
1178
- #: src/methods/stream-base.php:323
1179
- msgid "Download chunk size successfully changed to %d"
1180
- msgstr ""
1181
-
1182
- #: src/methods/stream-base.php:320
1183
- msgid "Download chunk size failed to change to %d"
1184
- msgstr ""
1185
-
1186
- #: src/includes/updraftplus-notices.php:202
1187
- msgid "With Metaslider, you can easily add style and flare with beautifully-designed sliders."
1188
- msgstr ""
1189
-
1190
- #: src/includes/updraftplus-notices.php:193
1191
- msgid "No more forgotten passwords. Find out more about our revolutionary new WordPress plugin"
1192
- msgstr ""
1193
-
1194
- #: src/templates/wp-admin/settings/existing-backups-table.php:87
1195
- msgid "remote site"
1196
- msgstr ""
1197
-
1198
- #: src/addons/backblaze.php:475
1199
- msgid "Invalid bucket name"
1200
- msgstr ""
1201
-
1202
- #: src/restorer.php:2448
1203
- msgid "Requested table collation (%1$s) is not present - changing to %2$s."
1204
- msgid_plural "Requested table collations (%1$s) are not present - changing to %2$s."
1205
- msgstr[0] ""
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] ""
1221
- msgstr[1] ""
1222
- msgstr[2] ""
1223
-
1224
- #: src/addons/migrator.php:561
1225
- msgid "Database restoration options:"
1226
- msgstr ""
1227
-
1228
- #: src/addons/migrator.php:406
1229
- msgid "This looks like a migration (the backup is from a site with a different address/URL, %s)."
1230
- msgstr ""
1231
-
1232
- #: src/addons/azure.php:637
1233
- msgid "%s Prefix"
1234
- msgstr ""
1235
-
1236
- #: src/addons/azure.php:632
1237
- msgid "%s Container"
1238
- msgstr ""
1239
-
1240
- #: src/addons/azure.php:627
1241
- msgid "%s Key"
1242
- msgstr ""
1243
-
1244
- #: src/addons/azure.php:623
1245
- msgid "%s Account Name"
1246
- msgstr ""
1247
-
1248
- #: src/addons/googlecloud.php:692
1249
- msgid "But no %s settings were found. Please complete all fields in %s settings and save the settings."
1250
- msgstr ""
1251
-
1252
- #: src/addons/googlecloud.php:690
1253
- msgid "But no bucket was defined, so backups may not complete. Please enter a bucket name in the %s settings and save settings."
1254
- msgstr ""
1255
-
1256
- #: src/central/bootstrap.php:526
1257
- msgid "URL for the site of your UpdraftCentral dashboard"
1258
- msgstr ""
1259
-
1260
- #: src/central/bootstrap.php:524
1261
- msgid "Enter the URL where your self-hosted install of UpdraftCentral is located:"
1262
- msgstr ""
1263
-
1264
- #: src/central/bootstrap.php:521
1265
- msgid "A website where you have installed %s"
1266
- msgstr ""
1267
-
1268
- #: src/central/bootstrap.php:519
1269
- msgid "Self-hosted dashboard"
1270
- msgstr ""
1271
-
1272
- #: src/central/bootstrap.php:256
1273
- msgid "At your UpdraftCentral dashboard you should press the \"Add Site\" button then paste the key in the input box."
1274
- msgstr ""
1275
-
1276
- #: src/addons/migrator.php:945
1277
- msgid "Your .htaccess has an old site reference on line number %s. You should remove it manually."
1278
- msgid_plural "Your .htaccess has an old site references on line numbers %s. You should remove them manually."
1279
- msgstr[0] ""
1280
- msgstr[1] ""
1281
- msgstr[2] ""
1282
-
1283
- #: src/restorer.php:2398
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] ""
1299
- msgstr[1] ""
1300
- msgstr[2] ""
1301
-
1302
- #: src/central/bootstrap.php:602
1303
- msgid "Create another key"
1304
- msgstr ""
1305
-
1306
- #: src/central/bootstrap.php:533
1307
- msgid "UpdraftCentral dashboard connection details"
1308
- msgstr ""
1309
-
1310
- #: src/central/bootstrap.php:527, src/includes/updraftplus-tour.php:85
1311
- msgid "Next"
1312
- msgstr ""
1313
-
1314
- #: src/central/bootstrap.php:513
1315
- msgid "an account"
1316
- msgstr ""
1317
-
1318
- #: src/central/bootstrap.php:513
1319
- msgid "i.e. if you have %s there"
1320
- msgstr ""
1321
-
1322
- #: src/central/bootstrap.php:502
1323
- msgid "Connect this site to an UpdraftCentral dashboard found at..."
1324
- msgstr ""
1325
-
1326
- #: src/central/bootstrap.php:471
1327
- msgid "Manage existing keys (%d)..."
1328
- msgstr ""
1329
-
1330
- #: src/central/bootstrap.php:421
1331
- msgid "There are no UpdraftCentral dashboards that can currently control this site."
1332
- msgstr ""
1333
-
1334
- #: src/central/bootstrap.php:258
1335
- msgid "You can now control this site via your UpdraftCentral dashboard at %s."
1336
- msgstr ""
1337
-
1338
- #: src/central/bootstrap.php:256
1339
- msgid "Detailed instructions for this can be found at %s"
1340
- msgstr ""
1341
-
1342
- #: src/central/bootstrap.php:256
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
-
1350
- #: src/addons/backblaze.php:661
1351
- msgid "There are limits upon which path-names are valid. Spaces are not allowed."
1352
- msgstr ""
1353
-
1354
- #: src/addons/backblaze.php:660
1355
- msgid "some/path"
1356
- msgstr ""
1357
-
1358
- #: src/addons/backblaze.php:660
1359
- msgid "Bucket name"
1360
- msgstr ""
1361
-
1362
- #: src/addons/backblaze.php:659
1363
- msgid "Backup path"
1364
- msgstr ""
1365
-
1366
- #: src/addons/backblaze.php:654
1367
- msgid "Application key"
1368
- msgstr ""
1369
-
1370
- #: src/addons/backblaze.php:649, src/addons/backblaze.php:649
1371
- msgid "here"
1372
- msgstr ""
1373
-
1374
- #: src/addons/backblaze.php:649
1375
- msgid "Get these settings from %s, or sign up %s."
1376
- msgstr ""
1377
-
1378
- #: src/addons/backblaze.php:453
1379
- msgid "Account Key"
1380
- msgstr ""
1381
-
1382
- #: src/addons/backblaze.php:452, src/addons/backblaze.php:647
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
-
1410
- #: src/methods/backup-module.php:595
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 ""
1429
-
1430
- #: src/addons/googlecloud.php:54
1431
- msgid "South-east Australia"
1432
- msgstr ""
1433
-
1434
- #: src/addons/googlecloud.php:53
1435
- msgid "South-east Asia"
1436
- msgstr ""
1437
-
1438
- #: src/addons/googlecloud.php:52
1439
- msgid "North-east Asia"
1440
- msgstr ""
1441
-
1442
- #: src/udaddons/options.php:119
1443
- msgid "Your web server's version of PHP is too old (%s) - UpdraftPlus expects at least %s. You can try it, but don't be surprised if it does not work. To fix this problem, contact your web hosting company"
1444
- msgstr ""
1445
-
1446
- #: src/templates/wp-admin/settings/take-backup.php:76
1447
- msgid "Remote storage authentication"
1448
- msgstr ""
1449
-
1450
- #: src/templates/wp-admin/settings/tab-addons.php:126
1451
- msgid "Network and multisite"
1452
- msgstr ""
1453
-
1454
- #: src/templates/wp-admin/settings/tab-addons.php:74
1455
- msgid "Migrator"
1456
- msgstr ""
1457
-
1458
- #: src/templates/wp-admin/settings/tab-addons.php:178
1459
- msgid "Additional storage"
1460
- msgstr ""
1461
-
1462
- #: src/includes/updraftplus-tour.php:121,
1463
- #: src/templates/wp-admin/settings/tab-addons.php:61
1464
- msgid "Remote storage"
1465
- msgstr ""
1466
-
1467
- #: src/templates/wp-admin/settings/form-contents.php:191
1468
- msgid "Select Files"
1469
- msgstr ""
1470
-
1471
- #: src/methods/cloudfiles.php:476
1472
- msgid "Rackspace Storage Region"
1473
- msgstr ""
1474
-
1475
- #: src/includes/updraftplus-notices.php:193
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
-
1487
- #: src/addons/sftp.php:792
1488
- msgid "Encrypted login failed; trying non-encrypted"
1489
- msgstr ""
1490
-
1491
- #: src/addons/azure.php:595
1492
- msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
1493
- msgstr ""
1494
-
1495
- #: src/methods/cloudfiles.php:495
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
-
1507
- #: src/methods/updraftvault.php:71,
1508
- #: src/templates/wp-admin/settings/tab-addons.php:243
1509
- msgid "UpdraftVault"
1510
- msgstr ""
1511
-
1512
- #: src/includes/class-wpadmin-commands.php:529
1513
- msgid "archive"
1514
- msgstr ""
1515
-
1516
- #: src/includes/class-wpadmin-commands.php:520
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
-
1560
- #: src/restorer.php:2219
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
-
1604
- #: src/addons/moredatabase.php:414
1605
- msgid "tables"
1606
- msgstr ""
1607
-
1608
- #: src/addons/moredatabase.php:413
1609
- msgid "WordPress database"
1610
- msgstr ""
1611
-
1612
- #: src/addons/moredatabase.php:406
1613
- msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
1614
- msgstr ""
1615
-
1616
- #: src/templates/wp-admin/settings/tab-addons.php:246
1617
- msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
1618
- msgstr ""
1619
-
1620
- #: src/templates/wp-admin/advanced/wipe-settings.php:11
1621
- msgid "UpdraftPlus Tour"
1622
- msgstr ""
1623
-
1624
- #: src/templates/wp-admin/settings/tab-addons.php:232
1625
- msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
1626
- msgstr ""
1627
-
1628
- #: src/templates/wp-admin/settings/tab-addons.php:219
1629
- msgid "Some backup plugins can't restore a backup, so Premium allows you to restore backups from other plugins."
1630
- msgstr ""
1631
-
1632
- #: src/templates/wp-admin/settings/tab-addons.php:217,
1633
- #: src/templates/wp-admin/settings/tab-addons.php:218
1634
- msgid "Importer"
1635
- msgstr ""
1636
-
1637
- #: src/templates/wp-admin/settings/tab-addons.php:206
1638
- msgid "Tidy things up for clients and remove all adverts for our other products."
1639
- msgstr ""
1640
-
1641
- #: src/templates/wp-admin/settings/tab-addons.php:204,
1642
- #: src/templates/wp-admin/settings/tab-addons.php:205
1643
- msgid "No ads"
1644
- msgstr ""
1645
-
1646
- #: src/templates/wp-admin/settings/tab-addons.php:193
1647
- msgid "Sophisticated reporting and emailing capabilities."
1648
- msgstr ""
1649
-
1650
- #: src/templates/wp-admin/settings/tab-addons.php:167
1651
- msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
1652
- msgstr ""
1653
-
1654
- #: src/templates/wp-admin/settings/tab-addons.php:165,
1655
- #: src/templates/wp-admin/settings/tab-addons.php:166
1656
- msgid "More database options"
1657
- msgstr ""
1658
-
1659
- #: src/templates/wp-admin/settings/tab-addons.php:141
1660
- msgid "Set exact times to create or delete backups."
1661
- msgstr ""
1662
-
1663
- #: src/templates/wp-admin/settings/tab-addons.php:139,
1664
- #: src/templates/wp-admin/settings/tab-addons.php:140
1665
- msgid "Backup time and scheduling"
1666
- msgstr ""
1667
-
1668
- #: src/templates/wp-admin/settings/tab-addons.php:128
1669
- msgid "Backup WordPress multisites (i.e, networks), securely."
1670
- msgstr ""
1671
-
1672
- #: src/templates/wp-admin/settings/tab-addons.php:127
1673
- msgid "Network / multisite"
1674
- msgstr ""
1675
-
1676
- #: src/templates/wp-admin/settings/tab-addons.php:115
1677
- msgid "Backup WordPress core and non-WP files and databases."
1678
- msgstr ""
1679
-
1680
- #: src/templates/wp-admin/settings/tab-addons.php:102
1681
- msgid "Automatically backs up your website before any updates to plugins, themes and WordPress core."
1682
- msgstr ""
1683
-
1684
- #: src/templates/wp-admin/settings/tab-addons.php:100,
1685
- #: src/templates/wp-admin/settings/tab-addons.php:101
1686
- msgid "Pre-update backups"
1687
- msgstr ""
1688
-
1689
- #: src/templates/wp-admin/settings/tab-addons.php:89
1690
- msgid "Provides expert help and support from the developers whenever you need it."
1691
- msgstr ""
1692
-
1693
- #: src/templates/wp-admin/settings/tab-addons.php:88
1694
- msgid "Fast, personal support"
1695
- msgstr ""
1696
-
1697
- #: src/templates/wp-admin/settings/tab-addons.php:76
1698
- msgid "UpdraftPlus Migrator clones your WordPress site and moves it to a new domain directly and simply."
1699
- msgstr ""
1700
-
1701
- #: src/templates/wp-admin/settings/tab-addons.php:75
1702
- msgid "Cloning and migration"
1703
- msgstr ""
1704
-
1705
- #: src/templates/wp-admin/settings/tab-addons.php:180
1706
- msgid "Get enhanced versions of the free remote storage options (Dropbox, Google Drive & S3) and even more remote storage options like OneDrive, SFTP, Azure, WebDAV and more with UpdraftPlus Premium."
1707
- msgstr ""
1708
-
1709
- #: src/templates/wp-admin/settings/tab-addons.php:179
1710
- msgid "Additional and enhanced remote storage locations"
1711
- msgstr ""
1712
-
1713
- #: src/templates/wp-admin/settings/tab-addons.php:63
1714
- msgid "To avoid server-wide risks, always backup to remote cloud storage. UpdraftPlus free includes Dropbox, Google Drive, Amazon S3, Rackspace and more."
1715
- msgstr ""
1716
-
1717
- #: src/templates/wp-admin/settings/tab-addons.php:62
1718
- msgid "Backup to remote storage locations"
1719
- msgstr ""
1720
-
1721
- #: src/templates/wp-admin/settings/tab-addons.php:56,
1722
- #: src/templates/wp-admin/settings/tab-addons.php:264
1723
- msgid "Upgrade now"
1724
- msgstr ""
1725
-
1726
- #: src/templates/wp-admin/settings/tab-addons.php:53,
1727
- #: src/templates/wp-admin/settings/tab-addons.php:261
1728
- msgid "Installed"
1729
- msgstr ""
1730
-
1731
- #: src/templates/wp-admin/settings/tab-addons.php:43,
1732
- #: src/templates/wp-admin/settings/tab-addons.php:65,
1733
- #: src/templates/wp-admin/settings/tab-addons.php:78,
1734
- #: src/templates/wp-admin/settings/tab-addons.php:91,
1735
- #: src/templates/wp-admin/settings/tab-addons.php:104,
1736
- #: src/templates/wp-admin/settings/tab-addons.php:117,
1737
- #: src/templates/wp-admin/settings/tab-addons.php:130,
1738
- #: src/templates/wp-admin/settings/tab-addons.php:143,
1739
- #: src/templates/wp-admin/settings/tab-addons.php:156,
1740
- #: src/templates/wp-admin/settings/tab-addons.php:169,
1741
- #: src/templates/wp-admin/settings/tab-addons.php:182,
1742
- #: src/templates/wp-admin/settings/tab-addons.php:195,
1743
- #: src/templates/wp-admin/settings/tab-addons.php:208,
1744
- #: src/templates/wp-admin/settings/tab-addons.php:221,
1745
- #: src/templates/wp-admin/settings/tab-addons.php:234,
1746
- #: src/templates/wp-admin/settings/tab-addons.php:251
1747
- msgid "Free"
1748
- msgstr ""
1749
-
1750
- #: src/admin.php:486
1751
- msgid "UpdraftPlus"
1752
- msgstr ""
1753
-
1754
- #: src/templates/wp-admin/settings/form-contents.php:215
1755
- msgid "Recommended: optimize your database with WP-Optimize."
1756
- msgstr ""
1757
-
1758
- #: src/templates/wp-admin/notices/bottom-notice.php:31,
1759
- #: src/templates/wp-admin/notices/horizontal-notice.php:42,
1760
- #: src/templates/wp-admin/notices/report-plain.php:33,
1761
- #: src/templates/wp-admin/notices/report.php:30
1762
- msgid "Read more"
1763
- msgstr ""
1764
-
1765
- #: src/includes/updraftplus-notices.php:182
1766
- msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
1767
- msgstr ""
1768
-
1769
- #: src/addons/morefiles.php:319
1770
- msgid "Please choose a file or directory"
1771
- msgstr ""
1772
-
1773
- #: src/addons/morefiles.php:312
1774
- msgid "Confirm"
1775
- msgstr ""
1776
-
1777
- #: src/addons/morefiles.php:307, src/addons/morefiles.php:307
1778
- msgid "Go up a directory"
1779
- msgstr ""
1780
-
1781
- #: src/addons/morefiles.php:304
1782
- msgid "Add directory..."
1783
- msgstr ""
1784
-
1785
- #: src/addons/morefiles.php:297, src/addons/morefiles.php:317,
1786
- #: src/templates/wp-admin/settings/file-backup-exclude.php:11
1787
- msgid "Edit"
1788
- msgstr ""
1789
-
1790
- #: src/addons/morefiles.php:280
1791
- msgid "If using it, select a path from the directory tree below and then press confirm selection."
1792
- msgstr ""
1793
-
1794
- #: src/addons/s3-enhanced.php:375
1795
- msgid "Europe (Frankfurt)"
1796
- msgstr ""
1797
-
1798
- #: src/addons/s3-enhanced.php:373
1799
- msgid "Europe (London)"
1800
- msgstr ""
1801
-
1802
- #: src/addons/s3-enhanced.php:372
1803
- msgid "Europe (Ireland)"
1804
- msgstr ""
1805
-
1806
- #: src/includes/updraftplus-tour.php:142,
1807
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:17
1808
- msgid "UpdraftCentral"
1809
- msgstr ""
1810
-
1811
- #: src/templates/wp-admin/notices/horizontal-notice.php:6
1812
- msgid "notice image"
1813
- msgstr ""
1814
-
1815
- #: src/templates/wp-admin/notices/bottom-notice.php:29,
1816
- #: src/templates/wp-admin/notices/horizontal-notice.php:40,
1817
- #: src/templates/wp-admin/notices/report-plain.php:31,
1818
- #: src/templates/wp-admin/notices/report.php:28
1819
- msgid "Go there"
1820
- msgstr ""
1821
-
1822
- #: src/templates/wp-admin/notices/bottom-notice.php:27,
1823
- #: src/templates/wp-admin/notices/horizontal-notice.php:38,
1824
- #: src/templates/wp-admin/notices/report-plain.php:29,
1825
- #: src/templates/wp-admin/notices/report.php:26
1826
- msgid "Sign up"
1827
- msgstr ""
1828
-
1829
- #: src/templates/wp-admin/notices/bottom-notice.php:25,
1830
- #: src/templates/wp-admin/notices/horizontal-notice.php:36,
1831
- #: src/templates/wp-admin/notices/report-plain.php:27,
1832
- #: src/templates/wp-admin/notices/report.php:24
1833
- msgid "Get Premium"
1834
- msgstr ""
1835
-
1836
- #: src/templates/wp-admin/notices/bottom-notice.php:23,
1837
- #: src/templates/wp-admin/notices/horizontal-notice.php:34,
1838
- #: src/templates/wp-admin/notices/report-plain.php:25,
1839
- #: src/templates/wp-admin/notices/report.php:22
1840
- msgid "Review UpdraftPlus"
1841
- msgstr ""
1842
-
1843
- #: src/templates/wp-admin/notices/bottom-notice.php:21,
1844
- #: src/templates/wp-admin/notices/horizontal-notice.php:32,
1845
- #: src/templates/wp-admin/notices/report-plain.php:23,
1846
- #: src/templates/wp-admin/notices/report.php:20
1847
- msgid "Get UpdraftCentral"
1848
- msgstr ""
1849
-
1850
- #: src/templates/wp-admin/advanced/site-info.php:91
1851
- msgid "Apache modules"
1852
- msgstr ""
1853
-
1854
- #: src/includes/updraftplus-notices.php:264
1855
- msgid "Summer sale - 20% off UpdraftPlus Premium until July 31st"
1856
- msgstr ""
1857
-
1858
- #: src/includes/updraftplus-notices.php:251
1859
- msgid "Spring sale - 20% off UpdraftPlus Premium until April 30th"
1860
- msgstr ""
1861
-
1862
- #: src/includes/updraftplus-notices.php:238
1863
- msgid "Happy New Year - 20% off UpdraftPlus Premium until January 14th"
1864
- msgstr ""
1865
-
1866
- #: src/includes/updraftplus-notices.php:225
1867
- msgid "Christmas sale - 20% off UpdraftPlus Premium until December 25th"
1868
- msgstr ""
1869
-
1870
- #: src/includes/updraftplus-notices.php:213,
1871
- #: src/includes/updraftplus-notices.php:226,
1872
- #: src/includes/updraftplus-notices.php:239,
1873
- #: src/includes/updraftplus-notices.php:252,
1874
- #: src/includes/updraftplus-notices.php:265
1875
- msgid "To benefit, use this discount code:"
1876
- msgstr ""
1877
-
1878
- #: src/includes/updraftplus-notices.php:212
1879
- msgid "Black Friday - 20% off UpdraftPlus Premium until November 30th"
1880
- msgstr ""
1881
-
1882
- #: src/includes/updraftplus-notices.php:172
1883
- msgid "UpdraftPlus Premium can automatically backup your plugins/themes/database before you update, without you needing to remember."
1884
- msgstr ""
1885
-
1886
- #: src/includes/updraftplus-notices.php:151,
1887
- #: src/includes/updraftplus-notices.php:161
1888
- msgid "UpdraftPlus Blog - get up-to-date news and offers"
1889
- msgstr ""
1890
-
1891
- #: src/includes/updraftplus-notices.php:141
1892
- msgid "UpdraftPlus Newsletter"
1893
- msgstr ""
1894
-
1895
- #: src/includes/updraftplus-notices.php:112
1896
- msgid "Control all your WordPress installations from one place using UpdraftCentral remote site management!"
1897
- msgstr ""
1898
-
1899
- #: src/includes/updraftplus-notices.php:111
1900
- msgid "Do you use UpdraftPlus on multiple sites?"
1901
- msgstr ""
1902
-
1903
- #: src/includes/updraftplus-notices.php:92
1904
- msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
1905
- msgstr ""
1906
-
1907
- #: src/includes/updraftplus-notices.php:91
1908
- msgid "Introducing UpdraftCentral"
1909
- msgstr ""
1910
-
1911
- #: src/includes/updraftplus-notices.php:82
1912
- msgid "Copy your site to another domain directly. Includes find-and-replace tool for database references."
1913
- msgstr ""
1914
-
1915
- #: src/includes/updraftplus-notices.php:81
1916
- msgid "easily migrate or clone your site in minutes"
1917
- msgstr ""
1918
-
1919
- #: src/includes/updraftplus-notices.php:72
1920
- msgid "Add SFTP to send your data securely, lock settings and encrypt your database backups for extra security."
1921
- msgstr ""
1922
-
1923
- #: src/includes/updraftplus-notices.php:71
1924
- msgid "secure your backups"
1925
- msgstr ""
1926
-
1927
- #: src/includes/updraftplus-notices.php:62
1928
- msgid "Secure multisite installation, advanced reporting and much more."
1929
- msgstr ""
1930
-
1931
- #: src/includes/updraftplus-notices.php:61
1932
- msgid "advanced options"
1933
- msgstr ""
1934
-
1935
- #: src/includes/updraftplus-notices.php:52
1936
- msgid "Enhanced storage options for Dropbox, Google Drive and S3. Plus many more options."
1937
- msgstr ""
1938
-
1939
- #: src/includes/updraftplus-notices.php:51
1940
- msgid "enhanced remote storage options"
1941
- msgstr ""
1942
-
1943
- #: src/includes/updraftplus-notices.php:42
1944
- msgid "The ultimately secure and convenient place to store your backups."
1945
- msgstr ""
1946
-
1947
- #: src/includes/updraftplus-notices.php:41,
1948
- #: src/templates/wp-admin/settings/tab-addons.php:244
1949
- msgid "UpdraftVault storage"
1950
- msgstr ""
1951
-
1952
- #: src/includes/updraftplus-notices.php:32
1953
- msgid "Enjoy professional, fast, and friendly help whenever you need it with Premium."
1954
- msgstr ""
1955
-
1956
- #: src/includes/updraftplus-notices.php:30,
1957
- #: src/includes/updraftplus-notices.php:40,
1958
- #: src/includes/updraftplus-notices.php:50,
1959
- #: src/includes/updraftplus-notices.php:60,
1960
- #: src/includes/updraftplus-notices.php:70,
1961
- #: src/includes/updraftplus-notices.php:80
1962
- msgid "UpdraftPlus Premium:"
1963
- msgstr ""
1964
-
1965
- #: src/templates/wp-admin/settings/migrator-no-migrator.php:13
1966
- msgid "Then, try out our \"Migrator\" add-on which can perform a direct site-to-site migration. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
1967
- msgstr ""
1968
-
1969
- #: src/addons/s3-enhanced.php:371
1970
- msgid "Canada Central"
1971
- msgstr ""
1972
-
1973
- #: src/templates/wp-admin/advanced/tools-menu.php:22
1974
- msgid "Site size"
1975
- msgstr ""
1976
-
1977
- #: src/templates/wp-admin/advanced/tools-menu.php:10,
1978
- #: src/templates/wp-admin/settings/tab-addons.php:230,
1979
- #: src/templates/wp-admin/settings/tab-addons.php:231
1980
- msgid "Lock settings"
1981
- msgstr ""
1982
-
1983
- #: src/templates/wp-admin/advanced/site-info.php:5,
1984
- #: src/templates/wp-admin/advanced/tools-menu.php:6
1985
- msgid "Site information"
1986
- msgstr "Informacje o stronie"
1987
-
1988
- #: src/templates/wp-admin/advanced/search-replace.php:9
1989
- msgid "For the ability to migrate websites, upgrade to UpdraftPlus Premium."
1990
- msgstr ""
1991
-
1992
- #: src/templates/wp-admin/advanced/export-settings.php:15
1993
- msgid "Import settings"
1994
- msgstr ""
1995
-
1996
- #: src/templates/wp-admin/advanced/export-settings.php:12
1997
- msgid "You can also import previously-exported settings. This tool will replace all your saved settings."
1998
- msgstr ""
1999
-
2000
- #: src/templates/wp-admin/advanced/export-settings.php:9
2001
- msgid "Export settings"
2002
- msgstr ""
2003
-
2004
- #: src/templates/wp-admin/advanced/export-settings.php:7
2005
- msgid "including any passwords"
2006
- msgstr ""
2007
-
2008
- #: src/templates/wp-admin/advanced/export-settings.php:7
2009
- msgid "Here, you can export your UpdraftPlus settings (%s), either for using on another site, or to keep as a backup. This tool will export what is currently in the settings tab."
2010
- msgstr ""
2011
-
2012
- #: src/templates/wp-admin/advanced/export-settings.php:5,
2013
- #: src/templates/wp-admin/advanced/tools-menu.php:26
2014
- msgid "Export / import settings"
2015
- msgstr ""
2016
-
2017
- #: src/restorer.php:2450
2018
- msgid "Processing table (%s)"
2019
- msgstr ""
2020
-
2021
- #: src/restorer.php:2185
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
-
2029
- #: src/methods/dropbox.php:790
2030
- msgid "%s de-authentication"
2031
- msgstr ""
2032
-
2033
- #: src/methods/dropbox.php:636
2034
- msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
2035
- msgstr ""
2036
-
2037
- #: src/central/bootstrap.php:597
2038
- msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
2039
- msgstr ""
2040
-
2041
- #: src/backup.php:1740
2042
- msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
2043
- msgstr ""
2044
-
2045
- #: src/templates/wp-admin/settings/take-backup.php:77
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
-
2057
- #: src/methods/backup-module.php:549
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
-
2097
- #: src/addons/s3-enhanced.php:367
2098
- msgid "US East (Ohio)"
2099
- msgstr ""
2100
-
2101
- #: src/addons/onedrive.php:1125
2102
- msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
2103
- msgstr ""
2104
-
2105
- #: src/addons/onedrive.php:733
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 "Twój adres IP:"
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 "Aby usunąć dowolny blok, przejdź tutaj."
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
-
2122
- #: src/includes/class-commands.php:401
2123
- msgid "%s add-on not found"
2124
- msgstr ""
2125
-
2126
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:54
2127
- msgid "or to restore manually"
2128
- msgstr ""
2129
-
2130
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:54
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 "Zwiększa to prawdopodobieństwo przekroczenia limitu czasu. Zalecamy wyłączenie trybu awaryjnego, lub przywracanie po jednej jednostce."
2133
-
2134
- #: src/admin.php:2609
2135
- msgid "To fix this problem go here."
2136
- msgstr "Aby naprawić ten problem, przejdź tutaj."
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
-
2146
- #: src/addons/webdav.php:216
2147
- msgid "Path"
2148
- msgstr "Ścieżka"
2149
-
2150
- #: src/addons/webdav.php:211
2151
- msgid "Leave this blank to use the default (80 for webdav, 443 for webdavs)"
2152
- msgstr ""
2153
-
2154
- #: src/addons/webdav.php:203
2155
- msgid "Enter any path in the field below."
2156
- msgstr "Podaj dowolną ścieżkę w polu poniżej."
2157
-
2158
- #: src/addons/webdav.php:203
2159
- msgid "A host name cannot contain a slash."
2160
- msgstr "Nazwa hosta nie może zawierać ukośników."
2161
-
2162
- #: src/addons/webdav.php:178
2163
- msgid "Protocol (SSL or not)"
2164
- msgstr "Protokół (SSL lub nie)"
2165
-
2166
- #: src/addons/webdav.php:173
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 "Nie otrzymano danych odpowiedzi. Zazwyczaj przyczyną są problemy z łącznością sieciową (np. firewall wychodzący lub przeładowana sieć) pomiędzy tą stroną, a UpdraftPlus.com."
2173
-
2174
- #: src/methods/s3.php:1144
2175
- msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
2176
- msgstr ""
2177
-
2178
- #: src/methods/s3.php:128
2179
- msgid "No settings were found - please go to the Settings tab and check your settings"
2180
- msgstr "Nie znaleziono ustawień - przejdź do zakładki Ustawienia by sprawdzić swoje ustawienia"
2181
-
2182
- #: src/templates/wp-admin/settings/form-contents.php:114
2183
- msgid "Backup using %s?"
2184
- msgstr ""
2185
-
2186
- #: src/addons/s3-enhanced.php:379
2187
- msgid "Asia Pacific (Mumbai)"
2188
- msgstr ""
2189
-
2190
- #: src/addons/s3-enhanced.php:67
2191
- msgid "Standard (infrequent access)"
2192
- msgstr ""
2193
-
2194
- #: src/templates/wp-admin/settings/header.php:26
2195
- msgid "FAQs"
2196
- msgstr "FAQ"
2197
-
2198
- #: src/central/bootstrap.php:554
2199
- msgid "More information..."
2200
- msgstr "Więcej informacji"
2201
-
2202
- #: src/central/bootstrap.php:553
2203
- msgid "Use the alternative method for making a connection with the dashboard."
2204
- msgstr "Użyj alternatywnej metody nawiązywania połączenia z zapleczem."
2205
-
2206
- #: src/central/bootstrap.php:458
2207
- msgid "Key size: %d bits"
2208
- msgstr "Rozmiar klucza: %d bity(ów)"
2209
-
2210
- #: src/central/bootstrap.php:453
2211
- msgid "Public key was sent to:"
2212
- msgstr "Klucz publiczny został wysłany do:"
2213
-
2214
- #: src/backup.php:2353
2215
- msgid "Failed to open directory (check the file permissions and ownership): %s"
2216
- msgstr "Nie można otworzyć katalogu (sprawdź prawa zapisu do pliku oraz właściciela pliku): %s"
2217
-
2218
- #: src/backup.php:2331
2219
- msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
2220
- msgstr "%s: nieczytelny plik - nie można wykonać jego kopii zapasowej (sprawdź prawa zapisu do pliku oraz właściciela pliku)"
2221
-
2222
- #: src/addons/migrator.php:1768
2223
- msgid "Create key"
2224
- msgstr "Utwórz klucz"
2225
-
2226
- #: src/addons/migrator.php:1765, src/central/bootstrap.php:547
2227
- msgid "slower, strongest"
2228
- msgstr "wolniejsze, mocniejsze"
2229
-
2230
- #: src/addons/migrator.php:1764, src/central/bootstrap.php:546
2231
- msgid "recommended"
2232
- msgstr "rekomendowane"
2233
-
2234
- #: src/addons/migrator.php:1764, src/central/bootstrap.php:546
2235
- msgid "%s bytes"
2236
- msgstr "%s bajtów"
2237
-
2238
- #: src/addons/migrator.php:1763, src/central/bootstrap.php:545
2239
- msgid "faster (possibility for slow PHP installs)"
2240
- msgstr "szybsze (prawdopodobieństwo do spowolnienia instancji PHP)"
2241
-
2242
- #: src/addons/migrator.php:1762, src/central/bootstrap.php:544
2243
- msgid "easy to break, fastest"
2244
- msgstr "łatwe do złamania, szybsze"
2245
-
2246
- #: src/addons/migrator.php:1762, src/addons/migrator.php:1763,
2247
- #: src/addons/migrator.php:1765, src/central/bootstrap.php:544,
2248
- #: src/central/bootstrap.php:545, src/central/bootstrap.php:547
2249
- msgid "%s bits"
2250
- msgstr "%s bity"
2251
-
2252
- #: src/addons/migrator.php:1760, src/central/bootstrap.php:542
2253
- msgid "Encryption key size:"
2254
- msgstr "Rozmiar klucza szyfrującego:"
2255
-
2256
- #: src/addons/migrator.php:1758
2257
- msgid "Enter your chosen name"
2258
- msgstr "Wybierz wybraną przez ciebie nazwę"
2259
-
2260
- #: src/addons/migrator.php:1757
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 "Oczekiwane niepowodzenie wysyłania: %s limit dla pojedynczego pliku jest %s, podczas gdy plik jest %s GB (%d bajty)"
2267
-
2268
- #: src/methods/ftp.php:440
2269
- msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
2270
- msgstr "Czasami jest to spowodowane przez zaporę sieciową - spróbuj wyłączyć SSL w ustawieniach dla ekspertów i spróbuj ponownie."
2271
-
2272
- #: src/methods/ftp.php:412
2273
- msgid "login"
2274
- msgstr "loginu"
2275
-
2276
- #: src/addons/reporting.php:527, src/addons/reporting.php:527,
2277
- #: src/addons/reporting.php:529, src/methods/email.php:100
2278
- msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
2279
- msgstr "Należy pamiętać, że serwery pocztowe mają tendencję ograniczenia rozmiaru plików; zazwyczaj wokół %s MB; Kopie zapasowe większe niż jakiekolwiek limity nie zostaną dostarczone."
2280
-
2281
- #: src/methods/email.php:30
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 "To archiwum kopii zapasowej jest wielkości %s MB - próba wysłania go poprzez e-mail prawdopodobnie się nie uda (tylko kilka serwerów poczty elektronicznej pozwala na załączniki tej wielkości). Jeśli tak, należy przełączyć się na inną metodę zdalnego przechowywania."
2284
-
2285
- #: src/class-updraftplus.php:1739
2286
- msgid "Size: %s MB"
2287
- msgstr "Rozmiar: %s MB"
2288
-
2289
- #: src/templates/wp-admin/settings/form-contents.php:309
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 "UpdraftPlus podzieli archiwa kopii zapasowej, gdy przekroczy tę wielkość pliku. Domyślna wartość to %s megabajtów. Należy uważać, aby pozostawić pewien margines, jeśli serwer internetowy ma stały limit (na przykład 2 GB / 2048 MB limitu na niektórych serwerach 32-bit / systemach plików)."
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 "Powinieneś włączyć %s aby umożliwić tworzenie ładnych odnośników (np.: %s)."
2296
-
2297
- #: src/templates/wp-admin/settings/form-contents.php:103
2298
- msgid "(tap on an icon to select or unselect)"
2299
- msgstr "(kliknij na ikonę w celu wybrania lub odznaczenia)"
2300
-
2301
- #: src/methods/updraftvault.php:333, src/methods/updraftvault.php:339,
2302
- #: src/methods/updraftvault.php:345
2303
- msgid "%s per year"
2304
- msgstr "%s za rok"
2305
-
2306
- #: src/methods/updraftvault.php:332, src/methods/updraftvault.php:338,
2307
- #: src/methods/updraftvault.php:344
2308
- msgid "or (annual discount)"
2309
- msgstr "lub (roczna zniżka)"
2310
-
2311
- #: src/methods/updraftvault.php:261
2312
- msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
2313
- msgstr "Nie zostało znalezione połączenie połączenia Vault dla tej strony (zostało przeniesione?); należy odłączyć i ponownie podłączyć."
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 "Podany plik nie został znaleziony lub nie można go odczytać."
2318
-
2319
- #: src/central/bootstrap.php:595
2320
- msgid "UpdraftCentral (Remote Control)"
2321
- msgstr "UpdraftCentral (Dostęp zdalny)"
2322
-
2323
- #: src/central/bootstrap.php:584
2324
- msgid "View recent UpdraftCentral log events"
2325
- msgstr "Wyświetl ostatnie zdarzenia dziennika UpdraftCentral"
2326
-
2327
- #: src/central/bootstrap.php:536
2328
- msgid "Enter any description"
2329
- msgstr "Wprowadź dowolny opis"
2330
-
2331
- #: src/central/bootstrap.php:535
2332
- msgid "Description"
2333
- msgstr "Opis"
2334
-
2335
- #: src/central/bootstrap.php:463
2336
- msgid "Delete..."
2337
- msgstr "Usuń..."
2338
-
2339
- #: src/central/bootstrap.php:456
2340
- msgid "Created:"
2341
- msgstr "Utworzony:"
2342
-
2343
- #: src/central/bootstrap.php:453
2344
- msgid "Access this site as user:"
2345
- msgstr "Dostęp do tej witryny jako użytkownik"
2346
-
2347
- #: src/central/bootstrap.php:477
2348
- msgid "Details"
2349
- msgstr "Nazwa i Opis"
2350
-
2351
- #: src/central/bootstrap.php:476
2352
- msgid "Key description"
2353
- msgstr "Opis klucza"
2354
-
2355
- #: src/central/bootstrap.php:349, src/central/bootstrap.php:360
2356
- msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
2357
- msgstr "Klucz został utworzony, jednakże próba zarejestrowania go z %s zakończyła się niepowodzeniem - spróbuj ponownie później."
2358
-
2359
- #: src/central/bootstrap.php:219
2360
- msgid "An invalid URL was entered"
2361
- msgstr "Wpisano nieprawidłowy adres URL"
2362
-
2363
- #: src/central/bootstrap.php:83
2364
- msgid "Close..."
2365
- msgstr "Zamknij..."
2366
-
2367
- #: src/central/bootstrap.php:75
2368
- msgid "This connection appears to already have been made."
2369
- msgstr "To połączenie wygląda na już ustanowione."
2370
-
2371
- #: src/central/bootstrap.php:72
2372
- msgid "You must visit this link in the same browser and login session as you created the key in."
2373
- msgstr "Musisz odwiedzić ten odnośnik w tej samej przeglądarce i zalogowanej sesji jak utworzony klucz."
2374
-
2375
- #: src/central/bootstrap.php:68
2376
- msgid "You must visit this URL in the same browser and login session as you created the key in."
2377
- msgstr "Musisz odwiedzić ten adres URL w tej samej przeglądarce i zalogowanej sesji jak utworzony klucz."
2378
-
2379
- #: src/central/bootstrap.php:68
2380
- msgid "You are not logged into this WordPress site in your web browser."
2381
- msgstr "Nie jesteś zalogowany na twojej stronie WordPress w twojej przeglądarce."
2382
-
2383
- #: src/central/bootstrap.php:65
2384
- msgid "The key referred to was unknown."
2385
- msgstr "Nieznany klucz o którym mowa."
2386
-
2387
- #: src/central/bootstrap.php:62
2388
- msgid "A new UpdraftCentral connection has not been made."
2389
- msgstr "Nowe połączenie z UpdraftCentral nie zostało wykonane."
2390
-
2391
- #: src/central/bootstrap.php:60
2392
- msgid "An UpdraftCentral connection has been made successfully."
2393
- msgstr "Połączenie z UpdraftCentral zostało nawiązane z powodzeniem."
2394
-
2395
- #: src/central/bootstrap.php:57
2396
- msgid "UpdraftCentral Connection"
2397
- msgstr "Połączenie UpdraftCentral"
2398
-
2399
- #: src/backup.php:1042, src/class-updraftplus.php:2973
2400
- msgid "The backup was aborted by the user"
2401
- msgstr "Kopia zapasowa została anulowana przez użytkownika"
2402
-
2403
- #: src/admin.php:4929
2404
- msgid "Your settings have been saved."
2405
- msgstr "Twoje ustawienia zostały zapisane"
2406
-
2407
- #: src/admin.php:4009
2408
- msgid "Total backup size:"
2409
- msgstr "Łączny rozmiar kopii zapasowej"
2410
-
2411
- #: src/admin.php:3416
2412
- msgid "stop"
2413
- msgstr "stop"
2414
-
2415
- #: src/admin.php:905, src/admin.php:3209
2416
- msgid "The backup has finished running"
2417
- msgstr "Kopia zapasowa zakończyła działanie"
2418
-
2419
- #: src/templates/wp-admin/advanced/tools-menu.php:30,
2420
- #: src/templates/wp-admin/advanced/wipe-settings.php:5,
2421
- #: src/templates/wp-admin/advanced/wipe-settings.php:9
2422
- msgid "Wipe settings"
2423
- msgstr "Usuń ustawienia"
2424
-
2425
- #: src/templates/wp-admin/advanced/site-info.php:102
2426
- msgid "reset"
2427
- msgstr "Reset"
2428
-
2429
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:14
2430
- msgid "these backup sets"
2431
- msgstr "ustawienia tych kopii"
2432
-
2433
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:11
2434
- msgid "this backup set"
2435
- msgstr "ustawienia tej kopii"
2436
-
2437
- #: src/includes/class-filesystem-functions.php:72
2438
- msgid "calculate"
2439
- msgstr "oblicz"
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 "Należy zapisać zmiany, aby upewnić się, że są one wykorzystane przy tworzeniu kopii zapasowej"
2444
-
2445
- #: src/admin.php:872
2446
- msgid "We requested to delete the file, but could not understand the server's response"
2447
- msgstr "Poprosiliśmy, aby usunąć plik, ale nie mogliśmy zrozumieć odpowiedź z serwera"
2448
-
2449
- #: src/admin.php:871
2450
- msgid "Please enter a valid URL"
2451
- msgstr "Proszę wprowadzić prawidłowy adres URL"
2452
-
2453
- #: src/admin.php:854
2454
- msgid "Saving..."
2455
- msgstr "Zapisywanie..."
2456
-
2457
- #: src/admin.php:815
2458
- msgid "Error: the server sent us a response which we did not understand."
2459
- msgstr "Błąd: serwer wysłał nam odpowiedź, która nie rozumiemy."
2460
-
2461
- #: src/admin.php:807
2462
- msgid "Fetching..."
2463
- msgstr "Pobieranie..."
2464
-
2465
- #: src/addons/s3-enhanced.php:376
2466
- msgid "Asia Pacific (Seoul)"
2467
- msgstr "Azja Pacyfik (Seul)"
2468
-
2469
- #: src/restorer.php:2208
2470
- msgid "Uploads URL:"
2471
- msgstr "Adres URL wysyłania: "
2472
-
2473
- #: src/addons/onedrive.php:63
2474
- msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
2475
- msgstr "Wymagany moduł PHP %s nie jest zainstalowany - poproś swoją firmę hostingową o jego włączenie."
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 "Aby zaimportować zwykłą stronę WordPress w wielu miejscach wymagana instalacji %s."
2480
-
2481
- #: src/class-updraftplus.php:4001
2482
- msgid "Please read this link for important information on this process."
2483
- msgstr "Proszę przeczytać ten odnośnik do ważnych informacji na temat tego procesu."
2484
-
2485
- #: src/class-updraftplus.php:4001
2486
- msgid "It will be imported as a new site."
2487
- msgstr "Będzie zaimportowane jako nowa strona."
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 "Odwołąć"
2493
-
2494
- #: src/admin.php:891
2495
- msgid "Please fill in the required information."
2496
- msgstr "Proszę wypełnić wymagane informacje."
2497
-
2498
- #: src/addons/multisite.php:619
2499
- msgid "Read more..."
2500
- msgstr "Czytaj więcej..."
2501
-
2502
- #: src/addons/multisite.php:610
2503
- msgid "may include some site-wide data"
2504
- msgstr "może zawierać dane dla całego serwisu"
2505
-
2506
- #: src/addons/multisite.php:605
2507
- msgid "All sites"
2508
- msgstr "Wszystkie strony"
2509
-
2510
- #: src/addons/multisite.php:601
2511
- msgid "Which site to restore"
2512
- msgstr "Którą stronę przywrócić"
2513
-
2514
- #: src/addons/migrator.php:631, src/addons/migrator.php:632
2515
- msgid "Error when creating new site at your chosen address:"
2516
- msgstr "Błąd podczas tworzenia nowej strony pod wybranym adresem:"
2517
-
2518
- #: src/addons/migrator.php:573
2519
- msgid "Required information for restoring this backup was not given (%s)"
2520
- msgstr "Wymagana informacja do przywrócenia tej kopii zapasowej nie została przekazana (%s)"
2521
-
2522
- #: src/addons/migrator.php:525
2523
- msgid "Attribute imported content to user"
2524
- msgstr "Przypisz zaimportowaną zawartość do użytkownika"
2525
-
2526
- #: src/addons/migrator.php:515, src/addons/migrator.php:517
2527
- msgid "You must use lower-case letters or numbers for the site path, only."
2528
- msgstr "Musisz użyć tylko małych liter lub cyfr do ścieżki strony."
2529
-
2530
- #: src/addons/migrator.php:503
2531
- msgid "This feature is not compatible with %s"
2532
- msgstr "Ta opcja nie jest kompatybilna z %s"
2533
-
2534
- #: src/addons/migrator.php:501, src/addons/migrator.php:503
2535
- msgid "Importing a single site into a multisite install"
2536
- msgstr "Importowanie pojedynczej strony do sieci witryn"
2537
-
2538
- #: src/addons/migrator.php:493
2539
- msgid "other content from wp-content"
2540
- msgstr "inna zawartość z wp-content"
2541
-
2542
- #: src/addons/migrator.php:490
2543
- msgid "WordPress core"
2544
- msgstr "Baza Wordpress"
2545
-
2546
- #: src/addons/migrator.php:490, src/addons/migrator.php:493,
2547
- #: src/addons/migrator.php:496
2548
- msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
2549
- msgstr "Wybrałeś %s aby był uwzględniony w trakcie przywracania - ta metoda nie może / nie powinna być wykonywana importu pojedynczej strony do sieci witryn."
2550
-
2551
- #: src/templates/wp-admin/advanced/site-info.php:100
2552
- msgid "Call WordPress action:"
2553
- msgstr "Wykonaj czynność WordPress:"
2554
-
2555
- #: src/admin.php:3032
2556
- msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2557
- msgstr "Zapisane ustawienia wpływają na to, co jest kopiowane do kopii zapasowej - np.: wykluczenie plików."
2558
-
2559
- #: src/restorer.php:211
2560
- msgid "Skipping: this archive was already restored."
2561
- msgstr "Pomijanie: To archiwum zostało już przywrócone."
2562
-
2563
- #: src/templates/wp-admin/settings/form-contents.php:140
2564
- msgid "File Options"
2565
- msgstr "Opcje plików"
2566
-
2567
- #: src/templates/wp-admin/settings/form-contents.php:93
2568
- msgid "Sending Your Backup To Remote Storage"
2569
- msgstr "Wysyłanie kopii zapasowej do magazynu zdalnego"
2570
-
2571
- #: src/templates/wp-admin/settings/form-contents.php:58
2572
- msgid "Database backup schedule"
2573
- msgstr "Harmonogram kopii zapasowej bazy danych"
2574
-
2575
- #: src/templates/wp-admin/settings/form-contents.php:22
2576
- msgid "Files backup schedule"
2577
- msgstr "Harmonogram kopii zapasowej plików"
2578
-
2579
- #: src/templates/wp-admin/advanced/wipe-settings.php:6
2580
- msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
2581
- msgstr "Będziesz musiał wprowadzić twoje ustawienia ponownie. Możesz to zrobić również przed wyłączeniem/odinstalowaniem UpdraftPlus jeżeli chcesz."
2582
-
2583
- #: src/templates/wp-admin/advanced/wipe-settings.php:6
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 "Ten przycisk usunie wszystkie ustawienia UpdraftPlus oraz wszelkie informacje o trwających kopiach (jednakże żadne kopie zapasowe znajdujące się na magazynach zdalnych)"
2586
-
2587
- #: src/admin.php:4803
2588
- msgid "Send this backup to remote storage"
2589
- msgstr "Wyślij tą kopię zapasową do magazynu zdalnego"
2590
-
2591
- #: src/admin.php:4801
2592
- msgid "Check out UpdraftPlus Vault."
2593
- msgstr "Sprawdź UpdraftPlus Vault."
2594
-
2595
- #: src/admin.php:4801
2596
- msgid "Not got any remote storage?"
2597
- msgstr "Nie posiadasz żadnego magazynu zdalnego?"
2598
-
2599
- #: src/admin.php:4801
2600
- msgid "settings"
2601
- msgstr "ustawienia"
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 "Kopia zapasowa nie zostanie wysłana do żadnego magazynu zdalnego - żaden nie został zapisany w %s"
2606
-
2607
- #: src/admin.php:3030
2608
- msgid "Include any files in the backup"
2609
- msgstr "Uwzględniaj dowolne pliki w kopii zapasowej"
2610
-
2611
- #: src/admin.php:3014
2612
- msgid "Include the database in the backup"
2613
- msgstr "Uwzględniaj bazę danych w kopii zapasowej"
2614
-
2615
- #: src/admin.php:2841
2616
- msgid "Continue restoration"
2617
- msgstr "Kontynuuj przywracanie"
2618
-
2619
- #: src/admin.php:2836
2620
- msgid "You have an unfinished restoration operation, begun %s ago."
2621
- msgstr "Posiadasz nieskończoną operację przywracania, zaczętą %s temu."
2622
-
2623
- #: src/admin.php:2835
2624
- msgid "Unfinished restoration"
2625
- msgstr "Nieskończone przywracanie"
2626
-
2627
- #: src/admin.php:2833
2628
- msgid "%s minutes, %s seconds"
2629
- msgstr "%s minut, %s sekund"
2630
-
2631
- #: src/admin.php:2699
2632
- msgid "Backup Contents And Schedule"
2633
- msgstr "Zawartość kopii zapasowej i harmonogram"
2634
-
2635
- #: src/admin.php:2802
2636
- msgid "Premium / Extensions"
2637
- msgstr "Premium / Rozszerzenia"
2638
-
2639
- #: src/admin.php:2476, src/admin.php:2485
2640
- msgid "Sufficient information about the in-progress restoration operation could not be found."
2641
- msgstr "Nie można było znaleźć wystarczających informacji o operacji przywracania w toku."
2642
-
2643
- #: src/addons/morefiles.php:71, src/admin.php:877
2644
- msgctxt "(verb)"
2645
- msgid "Download"
2646
- msgstr "Pobierz"
2647
-
2648
- #: src/admin.php:800
2649
- msgid "You have chosen to backup files, but no file entities have been selected"
2650
- msgstr "Wybrałeś tworzenie kopii zapasowych plików, ale żadne podmioty nie zostały wybrane"
2651
-
2652
- #: src/admin.php:695
2653
- msgid "Extensions"
2654
- msgstr "Dodatki"
2655
-
2656
- #: src/admin.php:687, src/admin.php:2801
2657
- msgid "Advanced Tools"
2658
- msgstr "Narzędzia zaawansowane"
2659
-
2660
- #: src/addons/googlecloud.php:1055
2661
- msgid "Bucket location"
2662
- msgstr "Lokalizacja zasobu"
2663
-
2664
- #: src/addons/googlecloud.php:1050
2665
- msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
2666
- msgstr "Należy pamiętać, że Google nie obsługuje przestrzeni do przechowywania a każdej z dostępnych lokalizacji - należy przeczytać dokumentację, aby dowiedzieć się o aktualnej dostępności."
2667
-
2668
- #: src/addons/googlecloud.php:1050, src/addons/googlecloud.php:1063
2669
- msgid "This setting applies only when a new bucket is being created."
2670
- msgstr "Te ustawienia znajdują zastosowanie tylko gdy nowy zasób jest utworzony."
2671
-
2672
- #: src/addons/googlecloud.php:1039
2673
- msgid "You must use a bucket name that is unique, for all %s users."
2674
- msgstr "Musisz użyć unikalnej nazwy zasobu, dla wszystkich %s użytkowników."
2675
-
2676
- #: src/addons/googlecloud.php:985
2677
- msgid "Do not confuse %s with %s - they are separate things."
2678
- msgstr "Nie pomyl %s z %s - to są różne rzeczy."
2679
-
2680
- #: src/addons/googlecloud.php:312
2681
- msgid "You do not have access to this bucket"
2682
- msgstr "Nie masz dostępu do tego zasobu"
2683
-
2684
- #: src/addons/googlecloud.php:55, src/addons/googlecloud.php:56,
2685
- #: src/addons/googlecloud.php:57
2686
- msgid "Western Europe"
2687
- msgstr "Zachodnia Europa"
2688
-
2689
- #: src/addons/googlecloud.php:51
2690
- msgid "Eastern Asia-Pacific"
2691
- msgstr "Wschodnia Azja-Pacyfik"
2692
-
2693
- #: src/addons/googlecloud.php:50
2694
- msgid "Western United States"
2695
- msgstr "Zachodnie Stany Zjednoczone"
2696
-
2697
- #: src/addons/googlecloud.php:48, src/addons/googlecloud.php:49
2698
- msgid "Eastern United States"
2699
- msgstr "Wschodnie Stany Zjednoczone"
2700
-
2701
- #: src/addons/googlecloud.php:47
2702
- msgid "Central United States"
2703
- msgstr "Centralne Stany Zjednoczone"
2704
-
2705
- #: src/addons/googlecloud.php:46
2706
- msgid "European Union"
2707
- msgstr "Unia Europejska"
2708
-
2709
- #: src/addons/googlecloud.php:45
2710
- msgid "Asia Pacific"
2711
- msgstr "Azja Pacyfik"
2712
-
2713
- #: src/addons/googlecloud.php:44, src/addons/googlecloud.php:45,
2714
- #: src/addons/googlecloud.php:46
2715
- msgid "multi-region location"
2716
- msgstr "Lokalizacja multi-regionalna"
2717
-
2718
- #: src/addons/googlecloud.php:44
2719
- msgid "United States"
2720
- msgstr "Stany Zjednoczone"
2721
-
2722
- #: src/addons/googlecloud.php:40
2723
- msgid "Nearline"
2724
- msgstr "Nearline"
2725
-
2726
- #: src/addons/googlecloud.php:39
2727
- msgid "Durable reduced availability"
2728
- msgstr "Trwałe zmniejszenie dostępności"
2729
-
2730
- #: src/addons/googlecloud.php:38, src/addons/s3-enhanced.php:66
2731
- msgid "Standard"
2732
- msgstr "Standard"
2733
-
2734
- #: src/addons/azure.php:638
2735
- msgid "container"
2736
- msgstr "kontener"
2737
-
2738
- #: src/addons/azure.php:638
2739
- msgid "You can enter the path of any %s virtual folder you wish to use here."
2740
- msgstr "Możesz wprowadzić ścieżkę dostępu do %s wirtualnego folderu do użytku tutaj."
2741
-
2742
- #: src/addons/azure.php:637
2743
- msgid "optional"
2744
- msgstr "opcjonalne"
2745
-
2746
- #: src/addons/azure.php:633
2747
- msgid "See Microsoft's guidelines on container naming by following this link."
2748
- msgstr "Zobacz wytyczne Microsoft odnośnie nazewnictwa kontenerów za pomocą tego linku."
2749
-
2750
- #: src/addons/azure.php:633
2751
- msgid "Enter the path of the %s you wish to use here."
2752
- msgstr "Wprowadź ścieżkę do %s którą chcesz użyć tutaj."
2753
-
2754
- #: src/addons/azure.php:624
2755
- msgid "This is not your Azure login - see the instructions if needing more guidance."
2756
- msgstr "To nie jest twój login Azure - przeczytaj instrukcje jeżeli potrzebujesz więcej wskazówek."
2757
-
2758
- #: src/addons/azure.php:623, src/addons/azure.php:627,
2759
- #: src/addons/azure.php:632, src/addons/azure.php:637
2760
- msgid "Azure"
2761
- msgstr "Azure"
2762
-
2763
- #: src/addons/azure.php:604
2764
- msgid "Create Azure credentials in your Azure developer console."
2765
- msgstr "Utwórz poświadczenia Azure poświadczeń w konsoli programisty Azure."
2766
-
2767
- #: src/addons/azure.php:563
2768
- msgid "Could not create the container"
2769
- msgstr "Nie można utworzyć kontenera"
2770
-
2771
- #: src/addons/azure.php:413
2772
- msgid "Could not access container"
2773
- msgstr "Nie można uzyskać dostępu do kontenera"
2774
-
2775
- #: src/class-updraftplus.php:2992
2776
- msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
2777
- msgstr "Aby zakończyć migrację / klonowanie, powinieneś teraz zalogować się do witryny zdalnej i odtworzyć zestaw kopii zapasowych."
2778
-
2779
- #: src/backup.php:1792
2780
- msgid "the options table was not found"
2781
- msgstr "nie znaleziono tabeli opcji"
2782
-
2783
- #: src/backup.php:1790
2784
- msgid "no options or sitemeta table was found"
2785
- msgstr "nie znaleziono opcji ani danych sitemeta"
2786
-
2787
- #: src/backup.php:1790, src/backup.php:1792
2788
- msgid "The database backup appears to have failed"
2789
- msgstr "Wygląda na to, że wykonywanie kopii zapasowej bazy danych nie powiodło się."
2790
-
2791
- #: src/backup.php:1662
2792
- msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
2793
- msgstr "Folderu kopii zapasowej nie pozwalana zapis (pełny dysk?) - proces kopii zapasowej prawdopodobnie nie powiedzie się."
2794
-
2795
- #: src/templates/wp-admin/advanced/site-info.php:56
2796
- msgid "required for some remote storage providers"
2797
- msgstr "wymagane dla niektórych dostawców zdalnego przechowywania"
2798
-
2799
- #: src/templates/wp-admin/advanced/site-info.php:56
2800
- msgid "Not installed"
2801
- msgstr "Nie zainstalowany"
2802
-
2803
- #: src/addons/googlecloud.php:1042, src/addons/s3-enhanced.php:63
2804
- msgid "Storage class"
2805
- msgstr "Klasa składowania"
2806
-
2807
- #: src/addons/googlecloud.php:1039
2808
- msgid "See Google's guidelines on bucket naming by following this link."
2809
- msgstr "Zobacz wytyczne Google odnośnie nazewnictwa zasobów za pomocą tego linku."
2810
-
2811
- #: src/addons/googlecloud.php:1039
2812
- msgid "Enter the name of the %s bucket you wish to use here."
2813
- msgstr "Wprowadź nazwę %s zasobu, którą chcesz użyć"
2814
-
2815
- #: src/addons/googlecloud.php:1038
2816
- msgid "Bucket"
2817
- msgstr "Zasób"
2818
-
2819
- #: src/addons/googlecloud.php:1034
2820
- msgid "Otherwise, you can leave it blank."
2821
- msgstr "W przeciwnym razie możesz pozostawić to pole puste."
2822
-
2823
- #: src/addons/googlecloud.php:1034
2824
- msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
2825
- msgstr "Np.: To jest potrzebne tylko wtedy gdy nie utworzyłeś jeszcze zasobu a chcesz aby UpdraftPlus utworzył go za ciebie."
2826
-
2827
- #: src/addons/googlecloud.php:1034
2828
- msgid "Enter the ID of the %s project you wish to use here."
2829
- msgstr "Wprowadź ID projektu %s, którego chcesz tu używać."
2830
-
2831
- #: src/addons/googlecloud.php:997
2832
- msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
2833
- msgstr "Kliknij w ten link do swojej konsoli Google API i aktywuj tam Storage API, następnie utwórz ID klienta w sekcji API Access."
2834
-
2835
- #: src/addons/googlecloud.php:908
2836
- msgid "You must enter a project ID in order to be able to create a new bucket."
2837
- msgstr "Musisz wprowadzić ID projektu w celu utworzenia nowego zasobu."
2838
-
2839
- #: src/addons/googlecloud.php:1032
2840
- msgid "Project ID"
2841
- msgstr "ID projektu"
2842
-
2843
- #: src/addons/googlecloud.php:759
2844
- msgid "You must save and authenticate before you can test your settings."
2845
- msgstr "Musisz zapisać i zautentykować zanim przetestujesz swoje ustawienia."
2846
-
2847
- #: src/addons/googlecloud.php:541
2848
- msgid "Have not yet obtained an access token from Google - you need to authorize or re-authorize your connection to Google Cloud."
2849
- msgstr ""
2850
-
2851
- #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:332,
2852
- #: src/addons/googlecloud.php:897, src/addons/googlecloud.php:947
2853
- msgid "You do not have access to this bucket."
2854
- msgstr "Nie masz dostępu do tego zasobnika."
2855
-
2856
- #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
2857
- #: src/addons/googlecloud.php:322, src/addons/googlecloud.php:332,
2858
- #: src/addons/googlecloud.php:718, src/addons/googlecloud.php:897,
2859
- #: src/addons/googlecloud.php:947, src/addons/googlecloud.php:991,
2860
- #: src/addons/googlecloud.php:991, src/addons/googlecloud.php:1019,
2861
- #: src/addons/googlecloud.php:1027, src/addons/googlecloud.php:1039
2862
- msgid "Google Cloud"
2863
- msgstr "Chmura Google"
2864
-
2865
- #: src/addons/googlecloud.php:257, src/addons/googlecloud.php:312,
2866
- #: src/addons/googlecloud.php:332, src/addons/googlecloud.php:897,
2867
- #: src/addons/googlecloud.php:947
2868
- msgid "%s Service Exception."
2869
- msgstr "Wyjątek usługi %s."
2870
-
2871
- #: src/updraftplus.php:157
2872
- msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
2873
- msgstr "Nie masz całkowicie zainstalowanego UpdraftPlus - proszę odinstalować i zainstalować go ponownie. Najprawdopodobniej nastąpiło uszkodzenie w WordPress podczas kopiowania plików wtyczek."
2874
-
2875
- #: src/restorer.php:1216
2876
- msgid "Deferring..."
2877
- msgstr "Odraczanie..."
2878
-
2879
- #: src/templates/wp-admin/settings/form-contents.php:87
2880
- msgid "or to configure more complex schedules"
2881
- msgstr "lub aby skonfigurować bardziej zaawansowane harmonogramy"
2882
-
2883
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:11,
2884
- #: src/templates/wp-admin/settings/delete-and-restore-modals.php:14
2885
- msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
2886
- msgstr "Czy jesteś pewien że chcesz usunąć %s z UpdraftPlus?"
2887
-
2888
- #: src/templates/wp-admin/settings/existing-backups-table.php:157
2889
- msgid "Deselect"
2890
- msgstr "Odznacz"
2891
-
2892
- #: src/templates/wp-admin/settings/existing-backups-table.php:156
2893
- msgid "Select all"
2894
- msgstr "Zaznacz wszystko"
2895
-
2896
- #: src/templates/wp-admin/settings/existing-backups-table.php:154
2897
- msgid "Actions upon selected backups"
2898
- msgstr "Działania \"przed\" wybranymi kopiami"
2899
-
2900
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:56,
2901
- #: src/templates/wp-admin/settings/tab-backups.php:60
2902
- 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)."
2903
- msgstr "Naciśnij tutaj aby zobaczyć wewnątrz twojej zdalnej metody składowania w celu znalezienia obecnych zestawów kopii (dla dowolnej strony, jeżeli są one przechowywane w tym samym folderze)"
2904
-
2905
- #: src/admin.php:1862
2906
- msgid "Backup sets removed:"
2907
- msgstr ""
2908
-
2909
- #: src/admin.php:890
2910
- msgid "Processing..."
2911
- msgstr "Przetwarzanie..."
2912
-
2913
- #: src/admin.php:888
2914
- msgid "For backups older than"
2915
- msgstr "Dla kopii zapasowych starszych niż..."
2916
-
2917
- #: src/admin.php:887
2918
- msgid "week(s)"
2919
- msgstr "Tydzień(tygodni)"
2920
-
2921
- #: src/admin.php:886
2922
- msgid "hour(s)"
2923
- msgstr "godzin(a/y)"
2924
-
2925
- #: src/admin.php:885
2926
- msgid "day(s)"
2927
- msgstr "dzień(dni)"
2928
-
2929
- #: src/admin.php:884
2930
- msgid "in the month"
2931
- msgstr "w miesiącu"
2932
-
2933
- #: src/admin.php:883
2934
- msgid "day"
2935
- msgstr "dzień"
2936
-
2937
- #: src/addons/morestorage.php:30
2938
- msgid "(as many as you like)"
2939
- msgstr "(tak dużo jak chcesz)"
2940
-
2941
- #: src/addons/fixtime.php:306, src/addons/fixtime.php:311
2942
- msgid "Add an additional retention rule..."
2943
- msgstr "Dodaj dodatkową regułę retencji..."
2944
-
2945
- #: src/restorer.php:2805
2946
- msgid "This database needs to be deployed on MySQL version %s or later."
2947
- msgstr "Ta baza danych musi być wdrożona w wersji MySQL %s lub późniejszej."
2948
-
2949
- #: src/restorer.php:2805
2950
- msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
2951
- msgstr "Ten problem jest spowodowany przez próbę odtworzenia bazy danych w bardzo starej wersji MySQL, która jest niezgodna z bazą źródłową."
2952
-
2953
- #: src/methods/updraftvault.php:707
2954
- msgid "You do not currently have any UpdraftPlus Vault quota"
2955
- msgstr "Aktualnie nie masz żadnego udziału UpdraftPlus Vault"
2956
-
2957
- #: src/class-updraftplus.php:4076
2958
- msgid "You must upgrade MySQL to be able to use this database."
2959
- msgstr "Musisz zaktualizować MySQL w celu używania niniejszej bazy danych."
2960
-
2961
- #: src/class-updraftplus.php:4076
2962
- msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
2963
- msgstr "Kopia zapasowa bazy danych używa funkcji MySQL niedostępnej w starej wersji MySQL (%s), którą ta strona jest zasilany."
2964
-
2965
- #: src/admin.php:2594
2966
- 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."
2967
- msgstr "Katalog UpdraftPlus w wp-content/plugins ma \"white-space\" w nim; WordPress tego nie lubi. Należy zmienić nazwę katalogu do wp-content/plugins/updraftplus, aby rozwiązać ten problem."
2968
-
2969
- #: src/methods/updraftvault.php:365
2970
- msgid "Don't know your email address, or forgotten your password?"
2971
- msgstr "Nie pamiętasz swojego adresu e-mail lub zapomniałeś hasła?"
2972
-
2973
- #: src/methods/updraftvault.php:358
2974
- msgid "Enter your UpdraftPlus.Com email / password here to connect:"
2975
- msgstr "Wprowadź adres email / hasło UpdraftPlus.com tutaj aby połączyć się:"
2976
-
2977
- #: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
2978
- msgid "Read the FAQs here."
2979
- msgstr "Przeczytaj FAQ tutaj."
2980
-
2981
- #: src/addons/s3-enhanced.php:73
2982
- msgid "Check this box to use Amazon's server-side encryption"
2983
- msgstr "Zaznacz to pole wyboru, aby użyć szyfrowania Amazon po stronie serwera"
2984
-
2985
- #: src/addons/s3-enhanced.php:72
2986
- msgid "Server-side encryption"
2987
- msgstr "Szyfrowanie po stronie serwera"
2988
-
2989
- #: src/methods/updraftvault.php:715
2990
- msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
2991
- msgstr "Jeśli nie pamiętasz hasła, przejdź tutaj, aby zmienić hasło na updraftplus.com."
2992
-
2993
- #: src/admin.php:1192
2994
- msgid "Go to the remote storage settings in order to connect."
2995
- msgstr "Przejdź do ustawień zdalnego przechowywania w celu połączenia."
2996
-
2997
- #: src/admin.php:1192
2998
- msgid "%s has been chosen for remote storage, but you are not currently connected."
2999
- msgstr "%s został wybrany jako zdalny magazyn, jednakże nie jesteś aktualnie połączony."
3000
-
3001
- #: src/methods/updraftvault.php:348
3002
- msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
3003
- msgstr "Płatności mogą być dokonywane w dolarach amerykańskich, euro lub funtach GB poprzez karty lub PayPal."
3004
-
3005
- #: src/admin.php:860
3006
- msgid "Update quota count"
3007
- msgstr "Zajmowana przestrzeń"
3008
-
3009
- #: src/admin.php:859
3010
- msgid "Counting..."
3011
- msgstr "Zliczanie..."
3012
-
3013
- #: src/admin.php:858
3014
- msgid "Disconnecting..."
3015
- msgstr "Rozłączanie..."
3016
-
3017
- #: src/admin.php:856
3018
- msgid "Connecting..."
3019
- msgstr "Łączenie..."
3020
-
3021
- #: src/methods/updraftvault.php:468, src/methods/updraftvault.php:542
3022
- msgid "Refresh current status"
3023
- msgstr "Odśwież aktualny stan"
3024
-
3025
- #: src/methods/updraftvault.php:466, src/methods/updraftvault.php:482,
3026
- #: src/methods/updraftvault.php:484, src/methods/updraftvault.php:542
3027
- msgid "Get more quota"
3028
- msgstr "Uzyskaj więcej miejsca"
3029
-
3030
- #: src/methods/updraftvault.php:463, src/methods/updraftvault.php:479,
3031
- #: src/methods/updraftvault.php:523
3032
- msgid "Current use:"
3033
- msgstr "Aktualne użycie:"
3034
-
3035
- #: src/methods/updraftvault.php:458
3036
- msgid "You can get more quota here"
3037
- msgstr "Możesz uzyskać więcej miejsca tutaj"
3038
-
3039
- #: src/methods/updraftvault.php:458
3040
- msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
3041
- msgstr "%s Błąd: masz niewystarczającą dostępną przestrzeń na dysku (%s) aby wysłać archiwum (%s)."
3042
-
3043
- #: src/admin.php:857, src/methods/updraftvault.php:392,
3044
- #: src/methods/updraftvault.php:450
3045
- msgid "Disconnect"
3046
- msgstr "Rozłącz"
3047
-
3048
- #: src/methods/updraftvault.php:389, src/methods/updraftvault.php:442
3049
- msgid "Quota:"
3050
- msgstr "Dostępna przestrzeń:"
3051
-
3052
- #: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
3053
- msgid "Vault owner"
3054
- msgstr "Właściciel skarbca (Vault)"
3055
-
3056
- #: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
3057
- msgid "Well done - there's nothing more needed to set up."
3058
- msgstr "Dobra robota - nie ma nic więcej do ustawienia."
3059
-
3060
- #: src/methods/updraftvault.php:388, src/methods/updraftvault.php:440
3061
- msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
3062
- msgstr "Ta strona jest <strong>połączona</strong> do UpdraftPlus Vault."
3063
-
3064
- #: src/methods/updraftvault.php:394, src/methods/updraftvault.php:436
3065
- msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
3066
- msgstr "<strong>Nie jesteś połączony</strong> do UpdraftPlus Vault."
3067
-
3068
- #: src/methods/updraftvault.php:365
3069
- msgid "Go here for help"
3070
- msgstr "Uzyskaj pomoc tutaj"
3071
-
3072
- #: src/methods/updraftvault.php:360
3073
- msgid "E-mail"
3074
- msgstr "E-mail"
3075
-
3076
- #: src/central/bootstrap.php:570, src/methods/updraftvault.php:354,
3077
- #: src/methods/updraftvault.php:368,
3078
- #: src/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php:4
3079
- msgid "Back..."
3080
- msgstr "Wstecz..."
3081
-
3082
- #: src/methods/updraftvault.php:348
3083
- msgid "Subscriptions can be cancelled at any time."
3084
- msgstr "Abonament może być anulowany w dowolnym momencie."
3085
-
3086
- #: src/methods/updraftvault.php:331, src/methods/updraftvault.php:337,
3087
- #: src/methods/updraftvault.php:343
3088
- msgid "%s per quarter"
3089
- msgstr "%s na kwartał"
3090
-
3091
- #: src/central/bootstrap.php:597, src/methods/updraftvault.php:322,
3092
- #: src/methods/updraftvault.php:351
3093
- msgid "Read more about it here."
3094
- msgstr "Przeczytaj więcej na ten temat tutaj."
3095
-
3096
- #: src/methods/updraftvault.php:322, src/methods/updraftvault.php:351
3097
- msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
3098
- msgstr "UpdraftPlus Vault bacuje na najlepszych światowych centrach danych Amazona, z niezawodnością na poziomie 99.999999999%."
3099
-
3100
- #: src/methods/updraftvault.php:318
3101
- msgid "Already purchased space?"
3102
- msgstr "Już zakupione miejsce?"
3103
-
3104
- #: src/methods/updraftvault.php:315
3105
- msgid "Show the options"
3106
- msgstr "Pokaż opcje"
3107
-
3108
- #: src/methods/updraftvault.php:314
3109
- msgid "First time user?"
3110
- msgstr "Początkujący użytkownik?"
3111
-
3112
- #: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
3113
- msgid "Press a button to get started."
3114
- msgstr "Naciśnij przycisk aby rozpocząć"
3115
-
3116
- #: src/methods/updraftvault.php:311, src/methods/updraftvault.php:328
3117
- msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
3118
- msgstr "UpdraftPlus Vault oferuje przestrzeń, która jest <strong>niezawodna, prosta w obsłudze oraz przystępna cenowo</strong>."
3119
-
3120
- #: src/methods/updraftvault.php:256
3121
- msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
3122
- msgstr "Posiadasz wygasły abonament UpdraftPlus Vault, który nie został odnowiony. W ciągu kilku dni, twoje przechowywane dane zostaną trwale usunięte. Jeśli nie chcesz aby tak się stało, odnów abonament tak szybko jak to możliwe."
3123
-
3124
- #: src/methods/updraftvault.php:253
3125
- msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
3126
- msgstr "Masz abonament UpdraftPlus Vault z przeterminowanym terminem płatności. Jesteś w okresie kilku dni karencji, zanim zostanie on zawieszone i stracisz dostęp do danych przechowywanych w nim. Proszę odnawiać jak najszybciej!"
3127
-
3128
- #: src/methods/updraftvault.php:250
3129
- msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
3130
- msgstr "Twój zakup UpdraftPlus Premium dokonany był ponad rok temu. Musisz go odnowić natychmiast, aby uniknąć utraty 12 miesięcy bezpłatnego limitu pamięci, który otrzymujesz jako obecny klient UpdraftPlus Premium."
3131
-
3132
- #: src/methods/updraftvault.php:99
3133
- msgid "Updraft Vault"
3134
- msgstr "Updraft Vault"
3135
-
3136
- #: src/addons/azure.php:443, src/addons/backblaze.php:528,
3137
- #: src/addons/googlecloud.php:843, src/methods/s3.php:1172
3138
- msgid "Delete failed:"
3139
- msgstr "Usunięcie zakończone niepowodzeniem:"
3140
-
3141
- #: src/backup.php:3431
3142
- msgid "The zip engine returned the message: %s."
3143
- msgstr "Silnik ZIP zwrócił wiadomość: %s."
3144
-
3145
- #: src/addons/s3-enhanced.php:400
3146
- msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
3147
- msgstr "Bez tej zgody, UpdraftPlus nie może usuwać kopii zapasowych - należy również skonfigurować ustawienie \"utrzymać\" jako bardzo wysokie, aby zapobiec wyświetlaniu błędów usunięcia."
3148
-
3149
- #: src/addons/s3-enhanced.php:398
3150
- msgid "Allow deletion"
3151
- msgstr "Zezwalaj na usuwania"
3152
-
3153
- #: src/addons/s3-enhanced.php:396
3154
- msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
3155
- msgstr "Bez tego pozwolenia, nie możesz bezpośrednio pobrać lub przywrócić używając UpdraftPlus i zamiast tego będziesz musiał odwiedzić stronę AWS."
3156
-
3157
- #: src/addons/s3-enhanced.php:394
3158
- msgid "Allow download"
3159
- msgstr "Zezwalaj na pobieranie"
3160
-
3161
- #: src/includes/class-remote-send.php:314
3162
- 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."
3163
- msgstr "Jeśli wysyłane bezpośrednie ze strony do strony nie działa dla Ciebie, to istnieją trzy inne metody - spróbuj jedną z nich."
3164
-
3165
- #: src/admin.php:866, src/includes/class-remote-send.php:299
3166
- 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."
3167
- msgstr "Należy sprawdzić, czy zdalna strona jest dostępna online, nie blokowana, nie posiada modułów bezpieczeństwa, które mogą blokować dostęp, posiada UpdraftPlus w wersji %s lub późniejszej i że klucze zostały wpisane poprawnie."
3168
-
3169
- #: src/includes/class-remote-send.php:541
3170
- msgid "Existing keys"
3171
- msgstr "Istniejące klucze"
3172
-
3173
- #: src/addons/migrator.php:1773
3174
- msgid "Your new key:"
3175
- msgstr "Twój nowy klucz:"
3176
-
3177
- #: src/central/bootstrap.php:403
3178
- msgid "You must copy and paste this key now - it cannot be shown again."
3179
- msgstr "Musisz skopiować i wkleić ten klucz teraz - nie może być to pokazane ponownie."
3180
-
3181
- #: src/central/bootstrap.php:403, src/includes/class-remote-send.php:438
3182
- msgid "Key created successfully."
3183
- msgstr "Klucz utworzony z powodzeniem."
3184
-
3185
- #: src/includes/class-remote-send.php:421
3186
- msgid "A key with this name already exists; you must use a unique name."
3187
- msgstr "Klucz z tą nazwą już istnieje, musisz użyć unikalnej nazwy."
3188
-
3189
- #: src/includes/class-remote-send.php:345
3190
- msgid "Also send this backup to the active remote storage locations"
3191
- msgstr "Również wysyłaj kopię zapasową do aktywnych zdalnych miejsc składowania"
3192
-
3193
- #: src/includes/class-remote-send.php:310
3194
- 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."
3195
- msgstr "Adres witryny URL który wysyłasz do (%s) wygląda jak lokalna strona w trybie rozwoju. Jeśli wysyłasz z sieci zewnętrznej, jest prawdopodobne, że zapora sieciowa (firewall) będzie blokowanie tego typu zachowanie"
3196
-
3197
- #: src/includes/class-remote-send.php:266
3198
- msgid "site not found"
3199
- msgstr "strona nie znaleziona"
3200
-
3201
- #: src/includes/class-remote-send.php:251
3202
- msgid "Backup data will be sent to:"
3203
- msgstr "Kopia zapasowa danych zostanie wysłany do:"
3204
-
3205
- #: src/addons/migrator.php:230
3206
- msgid "Restore an existing backup set onto this site"
3207
- msgstr "Przywróć istniejący zestaw kopii na tą stronę"
3208
-
3209
- #: src/addons/migrator.php:236
3210
- msgid "This site has no backups to restore from yet."
3211
- msgstr "Ta strona nie ma jeszcze żadnych kopii zapasowych, aby przywrócić."
3212
-
3213
- #: src/addons/reporting.php:172
3214
- msgid "Backup made by %s"
3215
- msgstr "Kopia zapasowa utworzona przez %s"
3216
-
3217
- #: src/methods/addon-base-v2.php:188
3218
- msgid "This storage method does not allow downloading"
3219
- msgstr "Ten sposób przechowywania nie pozwala na pobieranie"
3220
-
3221
- #: src/admin.php:4167
3222
- msgid "(backup set imported from remote location)"
3223
- msgstr "(zestaw kopii zapasowej zaimportowany ze zdalnej lokalizacji)"
3224
-
3225
- #: src/addons/wp-cli.php:373,
3226
- #: src/templates/wp-admin/settings/existing-backups-table.php:102
3227
- msgid "Site"
3228
- msgstr "Strona"
3229
-
3230
- #: src/addons/wp-cli.php:371,
3231
- #: src/templates/wp-admin/settings/existing-backups-table.php:101
3232
- msgid "Backup sent to remote site - not available for download."
3233
- msgstr "Kopia zapasowa wysłana do zdalnej strony - nie dostępna do pobrania"
3234
-
3235
- #: src/includes/class-wpadmin-commands.php:137
3236
- msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
3237
- msgstr "Musisz się upewnić że następujący zestaw kopii jest przeznaczony dla tej strony, przez przywróceniem (przed próbą przywrócenia niekompatybilnej z tą stroną kopii)"
3238
-
3239
- #: src/includes/class-wpadmin-commands.php:137
3240
- 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."
3241
- msgstr "Ustawiony zestaw kopii zapasowej nie został rozpoznany przez UpdraftPlus aby utworzyć go dla aktualnej instalacji WordPress, jednakże został znaleziony na na zdalnym magazynie przechowywania, lub został wysłany do zdalnej strony."
3242
-
3243
- #: src/admin.php:873, src/includes/class-remote-send.php:327
3244
- msgid "Testing connection..."
3245
- msgstr "Testowanie połączenia..."
3246
-
3247
- #: src/admin.php:870,
3248
- #: src/templates/wp-admin/settings/existing-backups-table.php:161
3249
- msgid "Deleting..."
3250
- msgstr "Usuwanie..."
3251
-
3252
- #: src/admin.php:869
3253
- msgid "key name"
3254
- msgstr "nazwa klucza"
3255
-
3256
- #: src/admin.php:867
3257
- msgid "Please give this key a name (e.g. indicate the site it is for):"
3258
- msgstr "Proszę podać nazwę temu kluczowi (np: wskazuje do jakiej strony):"
3259
-
3260
- #: src/admin.php:864
3261
- msgid "Creating..."
3262
- msgstr "Tworzenie..."
3263
-
3264
- #: src/addons/migrator.php:1753
3265
- msgid "Receive a backup from a remote site"
3266
- msgstr ""
3267
-
3268
- #: src/addons/migrator.php:1745
3269
- msgid "Paste key here"
3270
- msgstr "Wklej klucz tutaj"
3271
-
3272
- #: src/addons/migrator.php:1741
3273
- msgid "How do I get a site's key?"
3274
- msgstr "Jak uzyskać klucz strony?"
3275
-
3276
- #: src/addons/migrator.php:1741
3277
- msgid "To add a site as a destination for sending to, enter that site's key below."
3278
- msgstr "Aby dodać stronę jako cel do wysyłania, wprowadź klucz strony poniżej."
3279
-
3280
- #: src/addons/migrator.php:1732
3281
- msgid "Send a backup to another site"
3282
- msgstr ""
3283
-
3284
- #: src/admin.php:874, src/includes/class-remote-send.php:358,
3285
- #: src/includes/class-remote-send.php:520
3286
- msgid "Send"
3287
- msgstr "Wyślij"
3288
-
3289
- #: src/admin.php:865, src/includes/class-remote-send.php:514
3290
- msgid "Send to site:"
3291
- msgstr "Wyślij do strony:"
3292
-
3293
- #: src/includes/class-remote-send.php:512
3294
- msgid "No receiving sites have yet been added."
3295
- msgstr "Żadna otrzymująca strona nie została dodana."
3296
-
3297
- #: src/includes/class-remote-send.php:493
3298
- msgid "It is for sending backups to the following site: "
3299
- msgstr "Wykorzystywane jest do wysyłania kopii zapasowych do następujących stron:"
3300
-
3301
- #: src/includes/class-remote-send.php:493
3302
- msgid "The key was successfully added."
3303
- msgstr "Klucz został pomyślnie dodany."
3304
-
3305
- #: src/includes/class-remote-send.php:477
3306
- msgid "The entered key does not belong to a remote site (it belongs to this one)."
3307
- msgstr "Wprowadzony klucz nie należy do zdalnej strony (należy on do aktualnej)"
3308
-
3309
- #: src/includes/class-remote-send.php:466,
3310
- #: src/includes/class-remote-send.php:468,
3311
- #: src/includes/class-remote-send.php:472
3312
- msgid "The entered key was corrupt - please try again."
3313
- msgstr "Wprowadzony klucz został uszkodzony - spróbuj ponownie."
3314
-
3315
- #: src/includes/class-remote-send.php:464
3316
- msgid "The entered key was the wrong length - please try again."
3317
- msgstr "Wprowadzony klucz był nieprawidłowej długości - spróbuj ponownie."
3318
-
3319
- #: src/includes/class-remote-send.php:454
3320
- msgid "key"
3321
- msgstr "klucz"
3322
-
3323
- #: src/methods/ftp.php:379
3324
- msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
3325
- msgstr "Prawie wszystkie serwery FTP będą wolały tryb pasywny; ale jeśli trzeba tryb aktywny, usuń zaznaczenie."
3326
-
3327
- #: src/methods/ftp.php:377
3328
- msgid "Passive mode"
3329
- msgstr "Tryb pasywny"
3330
-
3331
- #: src/methods/ftp.php:372
3332
- msgid "Remote path"
3333
- msgstr "Zdalna lokalizacja"
3334
-
3335
- #: src/methods/ftp.php:367
3336
- msgid "FTP password"
3337
- msgstr "Hasło FTP"
3338
-
3339
- #: src/methods/ftp.php:362
3340
- msgid "FTP login"
3341
- msgstr "Login FTP"
3342
-
3343
- #: src/methods/ftp.php:357
3344
- msgid "FTP server"
3345
- msgstr "Serwer FTP"
3346
-
3347
- #: src/addons/migrator.php:194
3348
- msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
3349
- msgstr "UpdraftPlus Migrator modyfikuje operację przywracania w odpowiedni sposób, aby pasowały do danych z kopii zapasowej na nowym miejscu."
3350
-
3351
- #: src/addons/migrator.php:194
3352
- msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
3353
- msgstr "\"Migracja\" jest w rzeczy samej tym samym co przywracanie - jednakże z użyciem archiwów które importowane są z innej strony."
3354
-
3355
- #: src/admin.php:863
3356
- msgid "Resetting..."
3357
- msgstr ""
3358
-
3359
- #: src/addons/migrator.php:1745, src/admin.php:862
3360
- msgid "Add site"
3361
- msgstr "Dodaj stronę"
3362
-
3363
- #: src/admin.php:861
3364
- msgid "Adding..."
3365
- msgstr "Dodawanie..."
3366
-
3367
- #: src/udaddons/options.php:298
3368
- msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
3369
- msgstr "Roszczenie nie przyznano - może już użyłeś niniejszy zakup gdzie indziej, lub płatny okres pobierania z updraftplus.com wygasł?"
3370
-
3371
- #: src/restorer.php:2807
3372
- msgid "To use this backup, your database server needs to support the %s character set."
3373
- msgstr "Aby korzystać z tej kopii zapasowej, serwer bazy danych musi obsługiwać %s zestaw znaków."
3374
-
3375
- #: src/udaddons/updraftplus-addons.php:997
3376
- msgid "go here to change your password on updraftplus.com."
3377
- msgstr "przejdź tutaj aby zmienić twoje hasło na updraftplus.com."
3378
-
3379
- #: src/udaddons/updraftplus-addons.php:997
3380
- msgid "If you have forgotten your password "
3381
- msgstr "Jeśli zapomniałeś swojego hasła"
3382
-
3383
- #: src/udaddons/updraftplus-addons.php:996
3384
- msgid "Go here to re-enter your password."
3385
- msgstr "Kliknij tutaj, aby ponownie wprowadzić hasło."
3386
-
3387
- #: src/addons/migrator.php:271
3388
- msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
3389
- msgstr "Po przyciśnięciu tego przycisku, otrzymasz opcję do wyboru który element chcesz zmigrować"
3390
-
3391
- #: src/admin.php:853, src/admin.php:879, src/admin.php:880
3392
- msgid "You have made changes to your settings, and not saved."
3393
- msgstr "Dokonaniu zmian w ustawieniach, ale nie został one zapisane."
3394
-
3395
- #: src/addons/onedrive.php:1188
3396
- msgid "N.B. %s is not case-sensitive."
3397
- msgstr "Np.: %s jest wrażliwy na wielkość znaków"
3398
-
3399
- #: src/addons/onedrive.php:1178
3400
- msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
3401
- msgstr "Jeśli OneDrive później pokazuje komunikat \"unauthorized_client\", w takim razie podałeś nieprawidłowy identyfikator klienta (ID) tutaj."
3402
-
3403
- #: src/addons/azure.php:605, src/addons/onedrive.php:1148,
3404
- #: src/includes/class-remote-send.php:314
3405
- msgid "For longer help, including screenshots, follow this link."
3406
- msgstr "Na długotrwałą pomoc, włączając w to zrzuty ekranu, przejdź korzystając z tego odnośnika."
3407
-
3408
- #: src/addons/onedrive.php:1141
3409
- msgid "Create OneDrive credentials in your OneDrive developer console."
3410
- msgstr "Utwórz poświadczenia OneDrive na twojej konsoli dewelopera OneDrive."
3411
-
3412
- #: src/addons/onedrive.php:1133
3413
- msgid "You must add the following as the authorized redirect URI in your OneDrive console (under \"API Settings\") when asked"
3414
- msgstr ""
3415
-
3416
- #: src/addons/azure.php:593
3417
- msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
3418
- msgstr ""
3419
-
3420
- #: src/addons/onedrive.php:1096, src/addons/onedrive.php:1098
3421
- msgid "authorization failed:"
3422
- msgstr ""
3423
-
3424
- #: src/addons/onedrive.php:939, src/addons/onedrive.php:1177,
3425
- #: src/addons/onedrive.php:1181
3426
- msgid "OneDrive"
3427
- msgstr "OneDrive"
3428
-
3429
- #: src/addons/onedrive.php:724
3430
- msgid "Please re-authorize the connection to your %s account."
3431
- msgstr "Proszę ponownie uwierzytelnić połączenie dla twojego %s konta."
3432
-
3433
- #: src/methods/email.php:96
3434
- msgid "configure it here"
3435
- msgstr "skonfiguruj tutaj"
3436
-
3437
- #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3438
- #: src/methods/updraftvault.php:680
3439
- msgid "To remove the block, please go here."
3440
- msgstr "Aby usunąć blok, przejdź tutaj."
3441
-
3442
- #: src/addons/s3-enhanced.php:477
3443
- msgid "Do remember to save your settings."
3444
- msgstr "Pamiętaj aby zachować twoje ustawienia"
3445
-
3446
- #: src/addons/s3-enhanced.php:477
3447
- msgid "You are now using a IAM user account to access your bucket."
3448
- msgstr "Używasz konta użytkownika IAM aby uzyskać dostęp do twojego zasobu."
3449
-
3450
- #: src/addons/s3-enhanced.php:392
3451
- msgid "S3 bucket"
3452
- msgstr "Zasób S3"
3453
-
3454
- #: src/addons/s3-enhanced.php:382
3455
- msgid "China (Beijing) (restricted)"
3456
- msgstr "Chiny (Pekin) (ograniczona)"
3457
-
3458
- #: src/addons/s3-enhanced.php:381
3459
- msgid "South America (Sao Paulo)"
3460
- msgstr "Ameryka Południowa (Sao Paulo)"
3461
-
3462
- #: src/addons/s3-enhanced.php:380
3463
- msgid "Asia Pacific (Tokyo)"
3464
- msgstr "Azja Pacyfic (Tokyo)"
3465
-
3466
- #: src/addons/s3-enhanced.php:378
3467
- msgid "Asia Pacific (Sydney)"
3468
- msgstr "Azja Pacyfic (Sydney)"
3469
-
3470
- #: src/addons/s3-enhanced.php:377
3471
- msgid "Asia Pacific (Singapore)"
3472
- msgstr "Azja Pacyfik (Singapur)"
3473
-
3474
- #: src/addons/s3-enhanced.php:370
3475
- msgid "US Government West (restricted)"
3476
- msgstr "Zachodni Rząd US (ograniczony)"
3477
-
3478
- #: src/addons/s3-enhanced.php:369
3479
- msgid "US West (N. California)"
3480
- msgstr "Zachodnie Stany Zjednoczone (W. Kalifornia)"
3481
-
3482
- #: src/addons/s3-enhanced.php:368
3483
- msgid "US West (Oregon)"
3484
- msgstr "Zachodnie Stany Zjednoczone (Oregon)"
3485
-
3486
- #: src/addons/s3-enhanced.php:366
3487
- msgid "US Standard (default)"
3488
- msgstr "US Standard (domyślnie)"
3489
-
3490
- #: src/addons/s3-enhanced.php:362
3491
- msgid "S3 storage region"
3492
- msgstr "Region składowania S3"
3493
-
3494
- #: src/addons/s3-enhanced.php:360
3495
- msgid "New IAM username"
3496
- msgstr "Nowa nazwa użytkownika IAM"
3497
-
3498
- #: src/addons/s3-enhanced.php:359
3499
- msgid "Admin secret key"
3500
- msgstr "Sekretny klucz administratora"
3501
-
3502
- #: src/addons/s3-enhanced.php:358
3503
- msgid "Admin access key"
3504
- msgstr "Klucz dostępu administratora"
3505
-
3506
- #: src/addons/s3-enhanced.php:351
3507
- msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
3508
- msgstr "Następnie, poświadczenia niższego rzędu mogą być użyte, zamiast przechowywania kluczy administracyjnych."
3509
-
3510
- #: src/addons/s3-enhanced.php:351
3511
- msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
3512
- msgstr "Zostaną one wykorzystane do stworzenia nowego użytkownika i pary kluczy z załączoną polityką IAM która pozwoli mu uzyskać dostęp do tylko wskazanego zasobu."
3513
-
3514
- #: src/addons/s3-enhanced.php:351
3515
- msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
3516
- msgstr "Wpisz swój klucz/sekretny klucz administracyjnego dostępu do Amazon S3 (musi to być para kluczy z wystarczających uprawnień do tworzenia nowych użytkowników i zasobów) oraz nową nazwę użytkownika (unikalną) dla nowego użytkownika i nazwą zasobu."
3517
-
3518
- #: src/addons/s3-enhanced.php:429
3519
- msgid "Create new IAM user and S3 bucket"
3520
- msgstr "Utwórz nowego użytkownika IAM oraz Zasób S3"
3521
-
3522
- #: src/addons/s3-enhanced.php:337
3523
- msgid "Secret Key: %s"
3524
- msgstr "Tajny klucz: %s"
3525
-
3526
- #: src/addons/s3-enhanced.php:337
3527
- msgid "Access Key: %s"
3528
- msgstr "Klucz dostępu: %s"
3529
-
3530
- #: src/addons/s3-enhanced.php:325
3531
- msgid "Failed to apply User Policy"
3532
- msgstr "Nie udało się zastosować zasad użytkownika"
3533
-
3534
- #: src/addons/s3-enhanced.php:266, src/addons/s3-enhanced.php:270
3535
- msgid "Operation to create user Access Key failed"
3536
- msgstr "Operacja tworzenia klucza dostępu użytkownika nie powiodło się"
3537
-
3538
- #: src/addons/s3-enhanced.php:264
3539
- msgid "Failed to create user Access Key"
3540
- msgstr "Niepowodzenie przy tworzeniu klucza dostępu użytkownika"
3541
-
3542
- #: src/addons/s3-enhanced.php:244, src/addons/s3-enhanced.php:247,
3543
- #: src/addons/s3-enhanced.php:251
3544
- msgid "IAM operation failed (%s)"
3545
- msgstr "Operacja IAM zakończona niepowodzeniem (%s)"
3546
-
3547
- #: src/addons/s3-enhanced.php:242
3548
- msgid "Conflict: that user already exists"
3549
- msgstr "Konflikt: taki użytkownik już istnieje"
3550
-
3551
- #: src/addons/s3-enhanced.php:214
3552
- msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another AWS user may already have taken your name)."
3553
- msgstr "Niepowodzenie: Nie mogliśmy z powodzeniem uzyskać dostępu lub stworzyć zasób. Prosimy o sprawdzenie poświadczeń dostępu, a jeśli te są poprawne, spróbuj inną nazwę \"rzeczy\" (jako inny użytkownik AWS może już podjął tą nazwę)."
3554
-
3555
- #: src/addons/s3-enhanced.php:168
3556
- msgid "AWS authentication failed"
3557
- msgstr "Uwierzytelnienie AWS zakończone niepowodzeniem"
3558
-
3559
- #: src/addons/s3-enhanced.php:161
3560
- msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
3561
- msgstr "Nie można utworzyć nowego użytkownika AWS, ponieważ użyte zostało narzędzie AWS starego typu."
3562
-
3563
- #: src/addons/s3-enhanced.php:134
3564
- msgid "You need to enter a bucket"
3565
- msgstr "Musisz wprowadzić zasób"
3566
-
3567
- #: src/addons/s3-enhanced.php:130
3568
- msgid "You need to enter a new IAM username"
3569
- msgstr "Musisz wprowadzić nazwę użytkownika IAM"
3570
-
3571
- #: src/addons/s3-enhanced.php:126
3572
- msgid "You need to enter an admin secret key"
3573
- msgstr "Musisz wprowadzić sekretny klucz administratora"
3574
-
3575
- #: src/addons/s3-enhanced.php:122
3576
- msgid "You need to enter an admin access key"
3577
- msgstr "Musisz wpisać klucz dostępu administratora"
3578
-
3579
- #: src/addons/s3-enhanced.php:95
3580
- msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
3581
- msgstr "Jeśli masz użytkownika administratora AWS, możesz użyć tego kreatora aby szybko utworzyć nowego użytkownika AWS (IAM) z dostępem tylko do tego zasobu (zamiast całego konta)"
3582
-
3583
- #: src/methods/s3.php:923
3584
- msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
3585
- msgstr "Aby utworzyć nowego pod-użytkownika IAM oraz klucz dostępu który ma dostęp tylko do tego zasobu, użyj tego dodatku."
3586
-
3587
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12
3588
- msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world's most popular backup plugin."
3589
- msgstr ""
3590
-
3591
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
3592
- msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
3593
- msgstr "Wiadomości UpdraftPlus, wysokiej jakości materiały szkoleniowe dla deweloperów oraz właścicielu stron WordPress, oraz wiadomości ogólne WordPress. Możesz się wypisać w dowolnym momencie."
3594
-
3595
- #: src/addons/onedrive.php:693, src/addons/onedrive.php:717,
3596
- #: src/includes/updraftplus-login.php:56, src/methods/updraftvault.php:680,
3597
- #: src/udaddons/updraftplus-addons.php:947,
3598
- #: src/udaddons/updraftplus-addons.php:961
3599
- msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
3600
- msgstr "To najprawdopodobniej oznacza, że dzielisz serwer WWW z zaatakowaną strony internetowej, która została wykorzystana w poprzednich ataków."
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 "It appears that your web server's IP Address (%s) is blocked."
3605
- msgstr "Wygląda na to, że adres IP serwera WWW (%s) jest zablokowany.."
3606
-
3607
- #: src/addons/onedrive.php:717, src/includes/updraftplus-login.php:56,
3608
- #: src/methods/updraftvault.php:680, src/udaddons/updraftplus-addons.php:961
3609
- msgid "UpdraftPlus.com has responded with 'Access Denied'."
3610
- msgstr "UpdraftPlus.com odpowiedział z informacją \"Dostęp Zabroniony\"."
3611
-
3612
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
3613
- msgid "Premium WooCommerce plugins"
3614
- msgstr "Wtyczki Premium WooCommerce"
3615
-
3616
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:33
3617
- msgid "Free two-factor security plugin"
3618
- msgstr "Darmowa wtyczka weryfikacji dwuetapowej"
3619
-
3620
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:32
3621
- msgid "More quality plugins"
3622
- msgstr ""
3623
-
3624
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
3625
- msgid "Go to the shop."
3626
- msgstr "Przejdź do sklepu."
3627
-
3628
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
3629
- msgid "Compare with the free version"
3630
- msgstr "Porównaj z wersją darmową"
3631
-
3632
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:12,
3633
- #: src/templates/wp-admin/settings/tab-addons.php:46
3634
- msgid "UpdraftPlus Premium"
3635
- msgstr "UpdraftPlus Premium"
3636
-
3637
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:29
3638
- msgid "Free Newsletter"
3639
- msgstr "Darmowy biuletyn"
3640
-
3641
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:2,
3642
- #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:35
3643
- msgid "Dismiss (for %s months)"
3644
- msgstr "Odwołaj (na %s miesięcy)"
3645
-
3646
- #: src/addons/fixtime.php:448
3647
- msgid "(at same time as files backup)"
3648
- msgstr "(w tym samym czasie do kopia plików)"
3649
-
3650
- #: src/admin.php:3703
3651
- msgid "No backup has been completed"
3652
- msgstr "Żadna kopia zapasowa została wykonana."
3653
-
3654
- #: src/templates/wp-admin/settings/header.php:21
3655
- msgid "Newsletter sign-up"
3656
- msgstr "Zapisz się na biuletyn"
3657
-
3658
- #: src/includes/updraftplus-notices.php:142
3659
- msgid "Follow this link to sign up for the UpdraftPlus newsletter."
3660
- msgstr "Przejdź na ten odnośnik aby zapisać się do biuletynu UpdraftPlus"
3661
-
3662
- #: src/templates/wp-admin/settings/tab-addons.php:113,
3663
- #: src/templates/wp-admin/settings/tab-addons.php:114
3664
- msgid "Backup non-WordPress files and databases"
3665
- msgstr ""
3666
-
3667
- #: src/templates/wp-admin/settings/tab-addons.php:20
3668
- msgid "Ask a pre-sales question"
3669
- msgstr "Zadaj pytanie przed-sprzedażowe"
3670
-
3671
- #: src/templates/wp-admin/settings/tab-addons.php:19
3672
- msgid "Pre-sales FAQs"
3673
- msgstr "FAQ Przed-zakupowe"
3674
-
3675
- #: src/templates/wp-admin/settings/tab-addons.php:18
3676
- msgid "Full feature list"
3677
- msgstr "Pełna lista funkcji"
3678
-
3679
- #: src/addons/autobackup.php:1080
3680
- msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3681
- msgstr "Zrób kopię zapasową (gdzie stosowne) wtyczek, motywów i bazy danych WordPress z UpdraftPlus przed aktualizacją"
3682
-
3683
- #: src/methods/s3.php:179, src/methods/s3.php:180, src/methods/s3.php:181,
3684
- #: src/methods/s3.php:189, src/methods/s3.php:190, src/methods/s3.php:191
3685
- msgid "%s Error: Failed to initialise"
3686
- msgstr "%s Błąd: Inicjalizacja nieudana"
3687
-
3688
- #: src/templates/wp-admin/settings/form-contents.php:190
3689
- msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
3690
- msgid "or"
3691
- msgstr "lub"
3692
-
3693
- #: src/admin.php:847
3694
- msgid "You did not select any components to restore. Please select at least one, and then try again."
3695
- msgstr "Nie wybrałeś żadnych komponentów do przywrócenia. Proszę wybrać co najmniej jeden i spróbuj ponownie."
3696
-
3697
- #: src/addons/sftp.php:470
3698
- msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
3699
- msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
3700
- msgstr "PKCS1 (PEM nagłówek: BEGIN RSA PRIVATE KEY), XML i PuTTY typy kluczy są akceptowalne."
3701
-
3702
- #: src/addons/sftp.php:420
3703
- msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
3704
- msgstr "Wznawianie częściowe przesłania jest obsługiwane przez SFTP, ale nie dla SCP. Tak więc, w przypadku korzystania z SCP należy się upewnić, że serwer WWW pozwala na uruchamianie procesów PHP wystarczająco długo, aby przesłać największy plik kopii zapasowej."
3705
-
3706
- #: src/methods/openstack2.php:190
3707
- msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
3708
- msgid "tenant"
3709
- msgstr "dzierżawca"
3710
-
3711
- #: src/methods/openstack2.php:139
3712
- msgctxt "Keystone and swauth are technical terms which cannot be translated"
3713
- msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
3714
- msgstr "Adres URL autoryzacji musi być w trybie v2 (Keystone); v1 (Swauth) nie jest wspierana."
3715
-
3716
- #: src/templates/wp-admin/settings/form-contents.php:260
3717
- msgid "your site's admin address"
3718
- msgstr "adres administratora twoich stron"
3719
-
3720
- #: src/templates/wp-admin/settings/form-contents.php:260
3721
- msgid "Check this box to have a basic report sent to"
3722
- msgstr "Zaznacz to pole aby wysłać podstawowy raport do"
3723
-
3724
- #: src/admin.php:3717
3725
- msgctxt "i.e. Non-automatic"
3726
- msgid "Manual"
3727
- msgstr "Ręcznie"
3728
-
3729
- #: src/restorer.php:2784
3730
- msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
3731
- msgid "An error (%s) occurred:"
3732
- msgstr "Wystąpił błąd (%s):"
3733
-
3734
- #: src/addons/lockadmin.php:191
3735
- msgid "Change Lock Settings"
3736
- msgstr "Zmień ustawienia blokady"
3737
-
3738
- #: src/addons/morefiles.php:258
3739
- msgid "Any other file/directory on your server that you wish to backup"
3740
- msgstr ""
3741
-
3742
- #: src/admin.php:2611
3743
- msgid "For even more features and personal support, check out "
3744
- msgstr "Aby uzyskać jeszcze więcej funkcji i wsparcia, sprawdź"
3745
-
3746
- #: src/addons/moredatabase.php:59
3747
- msgid "Database decryption phrase"
3748
- msgstr "Zwrot szyfrowanie bazy danych"
3749
-
3750
- #: src/addons/autobackup.php:157, src/addons/autobackup.php:1026,
3751
- #: src/admin.php:852
3752
- msgid "Automatic backup before update"
3753
- msgstr "Automatyczna kopia zapasowa przed aktualizacją"
3754
-
3755
- #: src/addons/autobackup.php:122
3756
- msgid "WordPress core (only)"
3757
- msgstr "Baza WordPress (tylko)"
3758
-
3759
- #: src/addons/lockadmin.php:243
3760
- msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
3761
- msgstr "W celu odblokowania wsparcia, proszę skontaktować się z osobą, która zarządza twoim UpdraftPlus."
3762
-
3763
- #: src/addons/lockadmin.php:234
3764
- msgid "To access the UpdraftPlus settings, please enter your unlock password"
3765
- msgstr "Aby uzyskać dostęp do ustawień UpdraftPlus, proszę wprowadzić swoje hasło odblokowania"
3766
-
3767
- #: src/addons/lockadmin.php:231
3768
- msgid "Password incorrect"
3769
- msgstr "Hasło nieprawidłowe"
3770
-
3771
- #: src/addons/lockadmin.php:219, src/addons/lockadmin.php:225
3772
- msgid "Unlock"
3773
- msgstr "Odblokuj"
3774
-
3775
- #: src/addons/lockadmin.php:189
3776
- msgid "Otherwise, the default link will be shown."
3777
- msgstr "W przeciwnym razie zostanie wyświetlony domyślny odnośnik."
3778
-
3779
- #: src/addons/lockadmin.php:189
3780
- msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
3781
- msgstr "Każdy widząc ekran blokady zobaczy ten URL wsparcia - Wprowadź adres internetowy lub adres e-mail."
3782
-
3783
- #: src/addons/lockadmin.php:189
3784
- msgid "Support URL"
3785
- msgstr "Adres URL wsparcia"
3786
-
3787
- #: src/addons/lockadmin.php:187
3788
- msgid "Require password again after"
3789
- msgstr "Wymagaj ponownie hasło po"
3790
-
3791
- #: src/addons/lockadmin.php:178, src/addons/lockadmin.php:179
3792
- msgid "%s weeks"
3793
- msgstr "%s tygodnie(i)"
3794
-
3795
- #: src/addons/lockadmin.php:177
3796
- msgid "1 week"
3797
- msgstr "1 tydzień"
3798
-
3799
- #: src/addons/lockadmin.php:175, src/addons/lockadmin.php:176
3800
- msgid "%s hours"
3801
- msgstr "%s godzin(y)"
3802
-
3803
- #: src/addons/lockadmin.php:174
3804
- msgid "1 hour"
3805
- msgstr "1 godzina"
3806
-
3807
- #: src/addons/lockadmin.php:163
3808
- msgid "Please make sure that you have made a note of the password!"
3809
- msgstr "Upewnij się, że zanotowałeś hasło!"
3810
-
3811
- #: src/addons/lockadmin.php:156,
3812
- #: src/templates/wp-admin/advanced/lock-admin.php:8
3813
- msgid "Lock access to the UpdraftPlus settings page"
3814
- msgstr "Blokada dostępu do strony ustawień UpdraftPlus"
3815
-
3816
- #: src/addons/lockadmin.php:129
3817
- msgid "The admin password has been changed."
3818
- msgstr "Hasło administratora zostało zmienione."
3819
-
3820
- #: src/addons/lockadmin.php:127
3821
- msgid "An admin password has been set."
3822
- msgstr "Hasło administratora zostało ustawione."
3823
-
3824
- #: src/addons/lockadmin.php:125
3825
- msgid "The admin password has now been removed."
3826
- msgstr "Hasło administratora zostało usunięte."
3827
-
3828
- #: src/addons/morefiles.php:141
3829
- msgid "(learn more about this significant option)"
3830
- msgstr "(Więcej informacji o tej ważnej opcji)"
3831
-
3832
- #: src/udaddons/options.php:241
3833
- 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."
3834
- msgstr "Pamiętaj, że po zażądaniu dodatków, możesz usunąć swoje hasło (ale nie adres email) z powyższych ustawień, bez wpływu na możliwość otrzymywania uaktualnień dla tej strony."
3835
-
3836
- #: src/admin.php:3209, src/admin.php:4278
3837
- msgid "View Log"
3838
- msgstr "Zobacz dziennik"
3839
-
3840
- #: src/templates/wp-admin/settings/existing-backups-table.php:18,
3841
- #: src/templates/wp-admin/settings/existing-backups-table.php:97
3842
- msgid "Backup data (click to download)"
3843
- msgstr "Kopia zapasowa (kliknij aby pobrać)"
3844
-
3845
- #: src/templates/wp-admin/settings/existing-backups-table.php:17,
3846
- #: src/templates/wp-admin/settings/existing-backups-table.php:64
3847
- msgid "Backup date"
3848
- msgstr "Data kopii zapasowej"
3849
-
3850
- #: src/templates/wp-admin/settings/form-contents.php:42,
3851
- #: src/templates/wp-admin/settings/form-contents.php:75
3852
- msgid "and retain this many scheduled backups"
3853
- msgstr "i zachowuje tak wiele zaplanowanych kopii zapasowych"
3854
-
3855
- #: src/admin.php:3673
3856
- msgid "incremental backup; base backup: %s"
3857
- msgstr "kopia przyrostowa; podstawowa kopia: %s"
3858
-
3859
- #: src/templates/wp-admin/advanced/lock-admin.php:19
3860
- msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
3861
- msgstr "Za możliwość zablokowania dostępu do ustawień UpdraftPlus hasłem, uaktualnienie do UpdraftPlus Premium."
3862
-
3863
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:69,
3864
- #: src/templates/wp-admin/settings/tab-backups.php:71
3865
- msgid "Upload files into UpdraftPlus."
3866
- msgstr "Wyślij pliki do UpdraftPlus"
3867
-
3868
- #: src/admin.php:1138, src/includes/class-commands.php:462,
3869
- #: src/templates/wp-admin/settings/take-backup.php:12
3870
- msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
3871
- msgstr "Przycisk \"Utwórz kopię teraz\" jest wyłączony jako że katalog kopii zapasowych nie ma prawa do zapisu (przejdź do zakładki \"Ustawienia\" aby znaleźć odpowiednią opcję)"
3872
-
3873
- #: src/class-updraftplus.php:3990
3874
- msgid "Backup label:"
3875
- msgstr "Etykieta kopii zapasowej:"
3876
-
3877
- #: src/addons/backblaze.php:205, src/admin.php:2113
3878
- msgid "Error: unexpected file read fail"
3879
- msgstr "Błąd: nieoczekiwany problem odczytu pliku"
3880
-
3881
- #: src/backup.php:3437
3882
- msgid "check your log for more details."
3883
- msgstr "sprawdź dziennik aby zobaczy szczegóły"
3884
-
3885
- #: src/backup.php:3435
3886
- msgid "your web hosting account appears to be full; please see: %s"
3887
- msgstr "twoje konto hostingowe wygląda na pełne, zobacz: %s"
3888
-
3889
- #: src/backup.php:3433
3890
- msgid "A zip error occurred"
3891
- msgstr "Wystąpił problem zip"
3892
-
3893
- #: src/addons/reporting.php:67
3894
- msgid "Your label for this backup (optional)"
3895
- msgstr "Etykieta dla tej kopii zapasowej (opcjonalnie)"
3896
-
3897
- #: src/methods/googledrive.php:1200
3898
- 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."
3899
- msgstr "%s nie zezwala na uwierzytelnienie stron utrzymywanych na bezpośrednim adresie IP. Musisz zmienić adres twojej strony (%s) zanim będziesz mógł użyć %s jako magazynu danych."
3900
-
3901
- #: src/methods/updraftvault.php:718, src/udaddons/updraftplus-addons.php:1000
3902
- msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
3903
- msgstr "Wprowadzony adres nie został rozpoznany przez UpdraftPlus.com"
3904
-
3905
- #: src/methods/updraftvault.php:715, src/udaddons/updraftplus-addons.php:996
3906
- msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
3907
- msgstr "Twój adres e-mail był prawidłowy, ale hasło nie zostało uznane przez UpdraftPlus.com"
3908
-
3909
- #: src/methods/updraftvault.php:656, src/udaddons/updraftplus-addons.php:862
3910
- msgid "You need to supply both an email address and a password"
3911
- msgstr "Musisz podać zarówno adres e-mail jak i hasło"
3912
-
3913
- #: src/class-updraftplus.php:4009
3914
- msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3915
- msgstr "Jeśli chcesz przywrócić kopię zapasowej sieci witryn, należy najpierw skonfigurować instalację WordPress jako sieć witryn."
3916
-
3917
- #: src/class-updraftplus.php:4009
3918
- msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3919
- msgstr "Twoja kopia zapasowa jest instalacją typu multi-site (sieć witryn), jednakże ta strona nie jest. Tylko pierwsza strona tej sieci będzie możliwa do dostępu."
3920
-
3921
- #: src/addons/migrator.php:1252
3922
- msgid "already done"
3923
- msgstr "już zrobione"
3924
-
3925
- #: src/addons/migrator.php:1209
3926
- msgid "skipped (not in list)"
3927
- msgstr "pominięto (nie uwzględniony na liście)"
3928
-
3929
- #: src/addons/migrator.php:1209, src/addons/migrator.php:1252,
3930
- #: src/addons/migrator.php:1386
3931
- msgid "Search and replacing table:"
3932
- msgstr "Wyszukiwanie i zastępowanie tabeli:"
3933
-
3934
- #: src/addons/migrator.php:387
3935
- msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
3936
- msgstr "Wprowadź listę oddzieloną przecinkami; w przeciwnym razie, pozostaw puste dla wszystkich tabel."
3937
-
3938
- #: src/addons/migrator.php:387
3939
- msgid "These tables only"
3940
- msgstr "Tylko te tabele"
3941
-
3942
- #: src/addons/migrator.php:386
3943
- msgid "Rows per batch"
3944
- msgstr "Wiersze na partię"
3945
-
3946
- #: src/udaddons/options.php:98
3947
- msgid "You have not yet connected with your UpdraftPlus.Com account."
3948
- msgstr "Nie połączyłeś jeszcze swojego konta UpdraftPlus.com"
3949
-
3950
- #: src/udaddons/options.php:96, src/udaddons/options.php:98
3951
- msgid "You need to connect to receive future updates to UpdraftPlus."
3952
- msgstr "Musisz połączyć w celu przyszłego otrzymywania aktualizacji UpdraftPlus."
3953
-
3954
- #: src/class-updraftplus.php:3982
3955
- msgid "Any support requests to do with %s should be raised with your web hosting company."
3956
- msgstr "Jakakolwiek prośba o wsparcie związana z %s powinna być skierowana do twojej firmy hostingowej."
3957
-
3958
- #: src/class-updraftplus.php:3982
3959
- 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."
3960
- msgstr "Należy kontynuować tylko wtedy, gdy nie można zaktualizować bieżącego serwera jesteś pewien (lub skłonny do ryzyka), że wtyczki / motywy / itp. są kompatybilne ze starszą %s wersją."
3961
-
3962
- #: src/class-updraftplus.php:3982
3963
- msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3964
- msgstr "Ten serwer jest stanowczo nowszy niż serwer który aktualnie przywracasz do (wersja %s)."
3965
-
3966
- #: src/class-updraftplus.php:3982
3967
- msgid "The site in this backup was running on a webserver with version %s of %s. "
3968
- msgstr "Witryna w tej kopii zapasowej został uruchomiony na serwerze WWW z wersji %s z %s."
3969
-
3970
- #: src/includes/updraftplus-notices.php:133,
3971
- #: src/includes/updraftplus-notices.php:134
3972
- msgid "LinkedIn"
3973
- msgstr "LinkedIn"
3974
-
3975
- #: src/includes/updraftplus-notices.php:133,
3976
- #: src/includes/updraftplus-notices.php:134
3977
- msgid "Google+"
3978
- msgstr "Google+"
3979
-
3980
- #: src/includes/updraftplus-notices.php:133,
3981
- #: src/includes/updraftplus-notices.php:134
3982
- msgid "Facebook"
3983
- msgstr "Facebook"
3984
-
3985
- #: src/includes/updraftplus-notices.php:133,
3986
- #: src/includes/updraftplus-notices.php:134,
3987
- #: src/templates/wp-admin/settings/header.php:16
3988
- msgid "Twitter"
3989
- msgstr "Twitter"
3990
-
3991
- #: src/includes/updraftplus-notices.php:132
3992
- msgid "UpdraftPlus is on social media - check us out!"
3993
- msgstr ""
3994
-
3995
- #: src/addons/wp-cli.php:907, src/admin.php:4466
3996
- msgid "Why am I seeing this?"
3997
- msgstr "Dlaczego to widzę?"
3998
-
3999
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
4000
- #: src/templates/wp-admin/settings/tab-backups.php:59
4001
- msgid "The location of this directory is set in the expert settings, in the Settings tab."
4002
- msgstr "Lokalizacja tego katalogu jest ustawiony w ustawieniach dla ekspertów, w zakładce Ustawienia."
4003
-
4004
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
4005
- #: src/templates/wp-admin/settings/tab-backups.php:59
4006
- msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
4007
- msgstr "Naciśnij tutaj, aby zajrzeć do katalogu UpdraftPlus (w przestrzeni hosting) dla wszystkich nowych zestawów kopii zapasowych, które zostały przesłane."
4008
-
4009
- #: src/admin.php:2050, src/admin.php:2062, src/includes/class-commands.php:833
4010
- msgid "Start backup"
4011
- msgstr "Rozpocznij kopię zapasową"
4012
-
4013
- #: src/class-updraftplus.php:3953, src/restorer.php:1446
4014
- msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
4015
- msgstr "Używasz serwera %s, jednakże wygląda na to że moduł %s nie jest załadowany."
4016
-
4017
- #: src/admin.php:3571
4018
- 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."
4019
- msgstr "Będziesz musiał skonsultować się z dostawcą usług hostingowych, aby dowiedzieć się, jak ustawić uprawnienia dla zapisu do katalogu WordPress."
4020
-
4021
- #: src/templates/wp-admin/advanced/advanced-tools.php:6
4022
- msgid "Unless you have a problem, you can completely ignore everything here."
4023
- msgstr "Chyba że masz problem, możesz zignorować wszytko tutaj."
4024
-
4025
- #: src/admin.php:2288
4026
- msgid "This file could not be uploaded"
4027
- msgstr "Ten plik nie może zostać wysłany"
4028
-
4029
- #: src/admin.php:2251
4030
- msgid "You will find more information about this in the Settings section."
4031
- msgstr "Znajdziesz więcej informacji na ten temat w sekcji Ustawienia."
4032
-
4033
- #: src/addons/importer.php:78
4034
- msgid "Supported backup plugins: %s"
4035
- msgstr "Wspierane wtyczki kopii zapasowych: %s"
4036
-
4037
- #: src/addons/importer.php:78
4038
- msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognized - please follow this link."
4039
- msgstr ""
4040
-
4041
- #: src/templates/wp-admin/advanced/site-info.php:44
4042
- msgid "Memory limit"
4043
- msgstr "Limit pamięci"
4044
-
4045
- #: src/includes/class-filesystem-functions.php:233, src/restorer.php:2006
4046
- msgid "restoration"
4047
- msgstr "odtwarzanie"
4048
-
4049
- #: src/backup.php:1037
4050
- msgid "Incremental"
4051
- msgstr "Przyrostowa"
4052
-
4053
- #: src/backup.php:1037
4054
- msgid "Full backup"
4055
- msgstr "Pełna kopia zapasowa"
4056
-
4057
- #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4058
- msgid "now proceeding with the updates..."
4059
- msgstr "trwa przetwarzanie aktualizacji..."
4060
-
4061
- #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4062
- msgid "(view log...)"
4063
- msgstr "(zobacz dziennik...)"
4064
-
4065
- #: src/addons/autobackup.php:548, src/addons/autobackup.php:550
4066
- msgid "Backup succeeded"
4067
- msgstr "Wykonywanie kopii zapasowej powiodło się"
4068
-
4069
- #: src/addons/incremental.php:237, src/addons/incremental.php:238,
4070
- #: src/addons/incremental.php:239, src/addons/incremental.php:240,
4071
- #: src/admin.php:3718, src/admin.php:3719, src/admin.php:3720,
4072
- #: src/updraftplus.php:100, src/updraftplus.php:101, src/updraftplus.php:102
4073
- msgid "Every %s hours"
4074
- msgstr "Co %s godzin"
4075
-
4076
- #: src/addons/migrator.php:903, src/addons/migrator.php:905
4077
- msgid "search and replace"
4078
- msgstr "szukaj i zamień"
4079
-
4080
- #: src/addons/migrator.php:389
4081
- msgid "Go"
4082
- msgstr "Idź"
4083
-
4084
- #: src/addons/migrator.php:378
4085
- msgid "A search/replace cannot be undone - are you sure you want to do this?"
4086
- msgstr "Szukanie/zamiana będą nieodwracalne - jesteś pewien, że chcesz kontynuować?"
4087
-
4088
- #: src/addons/migrator.php:377
4089
- msgid "This can easily destroy your site; so, use it with care!"
4090
- msgstr "To może łatwo zniszczyć Twój portal więc używaj tego ostrożnie!"
4091
-
4092
- #: src/addons/migrator.php:333, src/addons/migrator.php:385
4093
- msgid "Replace with"
4094
- msgstr "Zamień na"
4095
-
4096
- #: src/addons/migrator.php:332, src/addons/migrator.php:384
4097
- msgid "Search for"
4098
- msgstr "Szukaj "
4099
-
4100
- #: src/addons/migrator.php:331, src/addons/migrator.php:376,
4101
- #: src/templates/wp-admin/advanced/search-replace.php:7,
4102
- #: src/templates/wp-admin/advanced/tools-menu.php:18
4103
- msgid "Search / replace database"
4104
- msgstr "Przeszukaj i zamień w bazie danych"
4105
-
4106
- #: src/addons/migrator.php:337
4107
- msgid "search term"
4108
- msgstr "szukany zwrot"
4109
-
4110
- #: src/restorer.php:2812
4111
- msgid "Too many database errors have occurred - aborting"
4112
- msgstr "Wystąpiło za dużo błędów bazy danych - anulowanie"
4113
-
4114
- #: src/backup.php:1103
4115
- msgid "read more at %s"
4116
- msgstr "czytaj więcej na %s"
4117
-
4118
- #: src/backup.php:1103
4119
- msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
4120
- msgstr "Wyślij utworzony raport przez UpdraftPlus (edycja darmowa) wraz z najnowszymi informacjami z UpdraftPlus.com"
4121
-
4122
- #: src/methods/googledrive.php:1207
4123
- 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."
4124
- msgstr "A przy okazji, jeżeli instalujesz UpdraftPlus na kilku stronach WordPress, nie możesz używać tego samego projektu; powinieneś utworzyć nowy projekt ze swojej kosoli Google API dla każdej strony osobno."
4125
-
4126
- #: src/includes/class-backup-history.php:69
4127
- msgid "You have not yet made any backups."
4128
- msgstr "Nie wykonałeś jeszcze żadnych kopii zapasowych"
4129
-
4130
- #: src/templates/wp-admin/settings/form-contents.php:152
4131
- msgid "Database Options"
4132
- msgstr "Opcje bazy danych"
4133
-
4134
- #: src/templates/wp-admin/advanced/site-info.php:95
4135
- msgid "Plugins for debugging:"
4136
- msgstr "Wtyczki debugujące:"
4137
-
4138
- #: src/templates/wp-admin/advanced/site-info.php:74
4139
- msgid "%s (%s used)"
4140
- msgstr "%s (%s używanych)"
4141
-
4142
- #: src/templates/wp-admin/advanced/site-info.php:74
4143
- msgid "Free disk space in account:"
4144
- msgstr "Dostępna przestrzeń dyskowa na koncie:"
4145
-
4146
- #: src/admin.php:4900, src/templates/wp-admin/settings/take-backup.php:50
4147
- msgid "This button is disabled because your backup directory is not writable (see the settings)."
4148
- msgstr "Ten przycisk jest nieaktywny ponieważ brakuje praw do zapisu w Twoim folderze z kopiami zapasowymi (sprawdź ustawienia)."
4149
-
4150
- #: src/admin.php:819, src/admin.php:1918,
4151
- #: src/includes/deprecated-actions.php:29,
4152
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
4153
- #: src/templates/wp-admin/settings/tab-backups.php:21,
4154
- #: src/templates/wp-admin/settings/tab-backups.php:44
4155
- msgid "Existing Backups"
4156
- msgstr "Istniejące kopie zapasowwe"
4157
-
4158
- #: src/admin.php:1143
4159
- 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."
4160
- msgstr "Aby zmienić ustawienia domyślne tego, co ma zostac skopiowane, aby skonfigurować zaplanowane kopie, aby wysłać kopie do lokalizacji zdalnych (rekomendowane) oraz więcej, przejdź do zakładki \"Ustawienia\""
4161
-
4162
- #: src/admin.php:1143
4163
- msgid "To make a backup, just press the Backup Now button."
4164
- msgstr "Aby wykonać kopię zapasową, po prostu kliknij przycisk \"Backup Now\"."
4165
-
4166
- #: src/admin.php:1143
4167
- msgid "Welcome to UpdraftPlus!"
4168
- msgstr "Witaj w UpdraftPlus!"
4169
-
4170
- #: src/addons/moredatabase.php:318
4171
- msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
4172
- msgstr "Jeżeli wpiszesz tutaj tekst, będzie on wykorzystany do zaszyfrowania kopii zapasowych bazy danych (algorytmem Rijandel).<strong>Zapisz ten tekst gdzieś w osobnym miejscu, ponieważ jeżeli go zapomnisz / zgubisz, wszystkie Twoje kopie zapasowe <em>będą bezużyteczne</em>.</strong> Ten tekst jest również kluczem, którego możesz użyć do odszyfrowania danych za pomocą niniejszego interfejsu administracyjnego (jeżeli go zmienisz, deszyfrowanie nie zadziała dopóki go nie przywrócisz)"
4173
-
4174
- #: src/addons/moredatabase.php:257
4175
- msgid "Testing..."
4176
- msgstr "Testowanie..."
4177
-
4178
- #: src/addons/moredatabase.php:244
4179
- msgid "Test connection..."
4180
- msgstr "Testuj połączenie..."
4181
-
4182
- #: src/addons/moredatabase.php:243
4183
- msgid "Table prefix"
4184
- msgstr "Prefiks nazwy tabeli"
4185
-
4186
- #: src/addons/moredatabase.php:237
4187
- msgid "Backup external database"
4188
- msgstr "Wykonaj kopię zapasową zewnętrznej bazy danych"
4189
-
4190
- #: src/addons/moredatabase.php:177
4191
- msgid "Add an external database to backup..."
4192
- msgstr "Dodaj zewnętrzną bazę do kopii zapasowej..."
4193
-
4194
- #: src/addons/moredatabase.php:173
4195
- msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
4196
- msgstr "Jeżeli twoja baza danych zawiera dodatkowe tabele, które nie są częścią tej strony WordPress (jeżeli tak jest, powinieneś o tym wiedzieć), zaznacz tę opcję aby uwzględnić te tabele w kopii zapasowej."
4197
-
4198
- #: src/addons/moredatabase.php:172
4199
- msgid "Backup non-WordPress tables contained in the same database as WordPress"
4200
- msgstr "Wykonaj kopię zapasową tabel spoza WordPress-a w tej samej bazie co Wordpress."
4201
-
4202
- #: src/addons/moredatabase.php:172
4203
- msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
4204
- msgstr "Wybranie tej opcji spowoduje wykonanie kopii zapasowej również tych tabel MySQL, które nie należą do tej instalacji WordPress-a (tj. nie mają nazw rozpoczynających się skonfigurowanym w WordPress-ie prefiksem %s)"
4205
-
4206
- #: src/addons/moredatabase.php:157
4207
- msgid "Connection failed."
4208
- msgstr "Połączenie nie powiodło się."
4209
-
4210
- #: src/addons/moredatabase.php:155
4211
- msgid "Connection succeeded."
4212
- msgstr "Połączenie powiodło się."
4213
-
4214
- #: src/addons/moredatabase.php:137
4215
- msgid "%s total table(s) found; %s with the indicated prefix."
4216
- msgstr "Ogółem znaleziono %s tabel; %s z wybranym prefiksem."
4217
-
4218
- #: src/addons/moredatabase.php:131
4219
- msgid "%s table(s) found."
4220
- msgstr "Znaleziono tabel: %s."
4221
-
4222
- #: src/addons/moredatabase.php:104
4223
- msgid "database connection attempt failed"
4224
- msgstr "nieudane połączenie z bazą danych"
4225
-
4226
- #: src/addons/moredatabase.php:93
4227
- msgid "database name"
4228
- msgstr "nazwa bazy danych"
4229
-
4230
- #: src/addons/moredatabase.php:91
4231
- msgid "host"
4232
- msgstr "komputer"
4233
-
4234
- #: src/addons/moredatabase.php:89
4235
- msgid "user"
4236
- msgstr "użytkownik"
4237
-
4238
- #: src/class-updraftplus.php:1736
4239
- msgid "External database (%s)"
4240
- msgstr "Zewnętrzna baza danych (%s)"
4241
-
4242
- #: src/methods/googledrive.php:1207
4243
- 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."
4244
- msgstr "Kliknij tutaj aby przejść do Twojej konsoli Google API, i aktywuj tam Drive API, a następnie utwórz Client ID w sekcji API Access."
4245
-
4246
- #: src/methods/googledrive.php:502
4247
- msgid "failed to access parent folder"
4248
- msgstr "błąd dostępu do folderu nadrzędnego"
4249
-
4250
- #: src/addons/googlecloud.php:698, src/addons/onedrive.php:907,
4251
- #: src/addons/onedrive.php:918, src/methods/googledrive.php:442,
4252
- #: src/methods/googledrive.php:455
4253
- msgid "However, subsequent access attempts failed:"
4254
- msgstr "Niestety, kolejne próby dostępu nie powiodły się:"
4255
-
4256
- #: src/addons/wp-cli.php:437, src/admin.php:4034
4257
- msgid "External database"
4258
- msgstr "Zewnętrzna baza danych"
4259
-
4260
- #: src/templates/wp-admin/settings/form-contents.php:304
4261
- msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
4262
- msgstr "To spowoduje również wyświetlenie tutaj wyjścia debuggera ze wszystkich wtyczek (nie bądź zaskoczony widząc je tutaj)."
4263
-
4264
- #: src/templates/wp-admin/settings/form-contents.php:233
4265
- msgid "Backup more databases"
4266
- msgstr ""
4267
-
4268
- #: src/templates/wp-admin/settings/form-contents.php:192
4269
- msgid "First, enter the decryption key"
4270
- msgstr "Po pierwsze, wprowadź klucz deszyfrujący"
4271
-
4272
- #: src/templates/wp-admin/settings/form-contents.php:175
4273
- msgid "You can manually decrypt an encrypted database here."
4274
- msgstr "Może tutaj ręcznie odszyfrować zaszyfrowaną bazę danych."
4275
-
4276
- #: src/templates/wp-admin/settings/form-contents.php:161
4277
- msgid "It can also backup external databases."
4278
- msgstr "Może również wykonywać kopie zapasowe zewnętrznych baz danych."
4279
-
4280
- #: src/templates/wp-admin/settings/form-contents.php:161
4281
- msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
4282
- msgstr "Nie życzysz sobie szpiegowania? UpdraftPlus Premium może zaszyfrować Twoją kopię zapasową bazy danych."
4283
-
4284
- #: src/templates/wp-admin/settings/form-contents.php:87
4285
- msgid "use UpdraftPlus Premium"
4286
- msgstr "użyj UpdraftPlus Premium"
4287
-
4288
- #: src/class-updraftplus.php:3833
4289
- msgid "Decryption failed. The database file is encrypted."
4290
- msgstr "Deszyfrowanie nie powiodło się. Plik bazy danych jest zaszyfrowany."
4291
-
4292
- #: src/includes/class-wpadmin-commands.php:149
4293
- msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
4294
- msgstr "Możliwe jest wyłącznie odtworzenie bazy danych WordPress; z zewnętrzną bazą danych będziesz musiał sobie poradzić we własnym zakresie."
4295
-
4296
- #: src/restorer.php:2284, src/restorer.php:2753, src/restorer.php:2794,
4297
- #: src/restorer.php:2807
4298
- msgid "An error occurred on the first %s command - aborting run"
4299
- msgstr "Wystąpił błąd przy pierwszym poleceniu %s - trwa anulowanie"
4300
-
4301
- #: src/addons/moredatabase.php:112, src/backup.php:1603
4302
- msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
4303
- msgstr "Połączenie niedudane: sprawdź ustawienia logowania; czy serwer działa; czy połączenie nie jest zablokowane przez firewall?"
4304
-
4305
- #: src/backup.php:1603
4306
- msgid "database connection attempt failed."
4307
- msgstr "próba połączenia z bazą danych nie powiodła się."
4308
-
4309
- #: src/addons/migrator.php:1140
4310
- msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
4311
- msgstr "Uwaga: adres domowy bazy danych (%s) jest inny niż oczekiwany (%s)"
4312
-
4313
- #: src/addons/google-enhanced.php:78
4314
- msgid "In %s, path names are case sensitive."
4315
- msgstr "W %s wielkość liter ma znaczenie w nazwach folderów."
4316
-
4317
- #: src/addons/azure.php:638, src/addons/google-enhanced.php:76,
4318
- #: src/addons/onedrive.php:1188
4319
- msgid "If you leave it blank, then the backup will be placed in the root of your %s"
4320
- msgstr "Jeżeli pozostawisz to puste, wówczas backup zostanie umieszczony w katalogu głównym twojego %s"
4321
-
4322
- #: src/addons/google-enhanced.php:76, src/addons/googlecloud.php:1039,
4323
- #: src/addons/onedrive.php:1188
4324
- msgid "e.g. %s"
4325
- msgstr "np. %s"
4326
-
4327
- #: src/addons/google-enhanced.php:76, src/addons/onedrive.php:1188
4328
- msgid "Enter the path of the %s folder you wish to use here."
4329
- msgstr "Wprowadź nazwę %s folderu, której chcesz tu użyć."
4330
-
4331
- #: src/methods/openstack2.php:170
4332
- msgid "Container"
4333
- msgstr "Zasobnik"
4334
-
4335
- #: src/methods/openstack2.php:153
4336
- msgid "Leave this blank, and a default will be chosen."
4337
- msgstr "Jeżeli pozostawisz to pole puste, zostanie użyta wartość domyślna."
4338
-
4339
- #: src/methods/openstack2.php:144
4340
- msgid "Tenant"
4341
- msgstr "Najemca"
4342
-
4343
- #: src/addons/wp-cli.php:800, src/admin.php:4588, src/admin.php:5344,
4344
- #: src/methods/openstack2.php:144,
4345
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
4346
- #: src/templates/wp-admin/settings/tab-backups.php:27,
4347
- #: src/templates/wp-admin/settings/updraftcentral-connect.php:14
4348
- msgid "Follow this link for more information"
4349
- msgstr "Kliknij aby uzyskać więcej informacji"
4350
-
4351
- #: src/methods/openstack2.php:136, src/methods/openstack2.php:195
4352
- msgid "authentication URI"
4353
- msgstr "adres logowania"
4354
-
4355
- #: src/methods/openstack2.php:120
4356
- msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
4357
- msgstr "Uzyskaj swoje dane logowania od swojego dostawcy OpenStack, a następnie wybierz nazwę zasobnika, którego chcesz użyć do przechowywania. Jeżeli taki zasobnik jeszcze nie istnieje, zostanie automatycznie stworzony."
4358
-
4359
- #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225
4360
- msgid "Failed to download %s"
4361
- msgstr "Błąd przy pobieraniu %s"
4362
-
4363
- #: src/methods/addon-base-v2.php:219
4364
- msgid "Failed to download"
4365
- msgstr "Błąd przy pobieraniu"
4366
-
4367
- #: src/methods/addon-base-v2.php:125
4368
- msgid "failed to list files"
4369
- msgstr "błąd listowania plików"
4370
-
4371
- #: src/methods/addon-base-v2.php:93, src/methods/addon-base-v2.php:98
4372
- msgid "Failed to upload %s"
4373
- msgstr "Błąd wysyłania %s"
4374
-
4375
- #: src/methods/dropbox.php:806, src/methods/dropbox.php:808
4376
- msgid "Success:"
4377
- msgstr "Sukces:"
4378
-
4379
- #: src/methods/backup-module.php:546
4380
- msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
4381
- msgstr "<strong>Po</strong> zapisaniu ustawień (klinkij 'Zapisz zmiany' poniżej) wróć tutaj i kliknij poniższy link aby zakończyć autoryzację %s."
4382
-
4383
- #: src/addons/onedrive.php:1212, src/methods/dropbox.php:615
4384
- msgid "(You appear to be already authenticated)."
4385
- msgstr "(Wygląda na to, że jesteś już zalogowany)"
4386
-
4387
- #: src/methods/dropbox.php:611
4388
- msgid "Dropbox"
4389
- msgstr "Dropbox"
4390
-
4391
- #: src/addons/onedrive.php:1205, src/methods/dropbox.php:611
4392
- msgid "Authenticate with %s"
4393
- msgstr "Autoryzuj za pomocą %s"
4394
-
4395
- #: src/methods/cloudfiles.php:400, src/methods/openstack-base.php:455
4396
- msgid "Error downloading remote file: Failed to download"
4397
- msgstr "Błąd pobierania zdalnego pliku: nie udało się pobrać"
4398
-
4399
- #: src/methods/openstack-base.php:526, src/methods/openstack-base.php:531
4400
- msgid "Region: %s"
4401
- msgstr "Region: %s"
4402
-
4403
- #: src/methods/openstack-base.php:525
4404
- msgid "%s error - we accessed the container, but failed to create a file within it"
4405
- msgstr "Błąd %s - udało się uzyskać dostęp do zasobnika, ale nie udało się utworzyć w nim pliku"
4406
-
4407
- #: src/methods/openstack-base.php:441
4408
- msgid "The %s object was not found"
4409
- msgstr "Nie znaleziono obiektu %s"
4410
-
4411
- #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:364,
4412
- #: src/methods/openstack-base.php:433
4413
- msgid "Could not access %s container"
4414
- msgstr "Brak dostępu do zasobnika %s"
4415
-
4416
- #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:123,
4417
- #: src/methods/openstack-base.php:130, src/methods/openstack-base.php:356,
4418
- #: src/methods/openstack-base.php:421
4419
- msgid "%s error - failed to access the container"
4420
- msgstr "Błąd %s - brak dostępu do zasobnika"
4421
-
4422
- #: src/addons/googlecloud.php:1108, src/addons/onedrive.php:1248,
4423
- #: src/methods/dropbox.php:668, src/methods/googledrive.php:1289
4424
- msgid "Account holder's name: %s."
4425
- msgstr "Nazwa właściciela konta: %s."
4426
-
4427
- #: src/methods/googledrive.php:1266
4428
- msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
4429
- msgstr "Aby mieć możliwość ustalenia własnej nazwy folderu, potrzebujesz UpdraftPlus Premium."
4430
-
4431
- #: src/methods/googledrive.php:1253
4432
- msgid "It is an ID number internal to Google Drive"
4433
- msgstr "To jest wewnętrzny identyfikator Google Drive"
4434
-
4435
- #: src/methods/googledrive.php:1253
4436
- msgid "<strong>This is NOT a folder name</strong>."
4437
- msgstr "<strong>To NIE jest nazwa folderu</strong>."
4438
-
4439
- #: src/addons/google-enhanced.php:74, src/methods/googledrive.php:1248,
4440
- #: src/methods/googledrive.php:1259
4441
- msgid "Folder"
4442
- msgstr "Folder"
4443
-
4444
- #: src/addons/googlecloud.php:296, src/addons/onedrive.php:451,
4445
- #: src/methods/googledrive.php:1160
4446
- msgid "%s download: failed: file not found"
4447
- msgstr "Pobieranie %s nie powiodło się: brak pliku"
4448
-
4449
- #: src/addons/googlecloud.php:718, src/methods/googledrive.php:475
4450
- msgid "Name: %s."
4451
- msgstr "Nazwa: %s."
4452
-
4453
- #: src/methods/googledrive.php:216
4454
- msgid "Google Drive list files: failed to access parent folder"
4455
- msgstr "Pobranie listy plików Google Drive: błąd dostępu do folderu nadrzędnego"
4456
-
4457
- #: src/methods/addon-not-yet-present.php:99, src/methods/insufficient.php:121
4458
- msgid "Your %s version: %s."
4459
- msgstr "Twoja wersja %s: %s."
4460
-
4461
- #: src/methods/addon-not-yet-present.php:98, src/methods/insufficient.php:120
4462
- msgid "You will need to ask your web hosting company to upgrade."
4463
- msgstr "Powinieneś poprosić dostawcę hostingu o upgrade."
4464
-
4465
- #: src/methods/addon-not-yet-present.php:19, src/methods/insufficient.php:21
4466
- msgid "This remote storage method (%s) requires PHP %s or later."
4467
- msgstr "Ta metoda zdalnego składowania (%s) wymaha PHP w wersji co najmniej %s."
4468
-
4469
- #: src/templates/wp-admin/advanced/site-info.php:100
4470
- msgid "Call"
4471
- msgstr "Zadzwoń"
4472
-
4473
- #: src/templates/wp-admin/advanced/site-info.php:98,
4474
- #: src/templates/wp-admin/advanced/site-info.php:98
4475
- msgid "Fetch"
4476
- msgstr "Pobierz"
4477
-
4478
- #: src/addons/migrator.php:501,
4479
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:72,
4480
- #: src/templates/wp-admin/settings/form-contents.php:182,
4481
- #: src/templates/wp-admin/settings/tab-backups.php:74
4482
- msgid "This feature requires %s version %s or later"
4483
- msgstr "Ta opcja wymaga %s w wersji co najmniej %s."
4484
-
4485
- #: src/restorer.php:531
4486
- msgid "Failed to unpack the archive"
4487
- msgstr "Błąd przy rozpakowywaniu archiwum."
4488
-
4489
- #: src/class-updraftplus.php:1366
4490
- msgid "Error - failed to download the file"
4491
- msgstr "Błąd: nie udało się pobrać pliku"
4492
-
4493
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:55,
4494
- #: src/templates/wp-admin/settings/tab-backups.php:59
4495
- msgid "Rescan local folder for new backup sets"
4496
- msgstr "Przeskanuj ponownie lokalny folder w poszukiwaniu nowych zestawów kopii zapasowych"
4497
-
4498
- #: src/udaddons/updraftplus-addons.php:259
4499
- msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
4500
- msgstr "Powinieneś zaktualizować UpdraftPlus aby mieć pewność, że używasz wersję przetestowaną pod kątem kompatybilności."
4501
-
4502
- #: src/udaddons/updraftplus-addons.php:259
4503
- msgid "It has been tested up to version %s."
4504
- msgstr "Przetestowano do wersji %s."
4505
-
4506
- #: src/udaddons/updraftplus-addons.php:259
4507
- msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
4508
- msgstr "Zainstalowana wersja UpdraftPlus nie została przetestowana z Twoją wersją WordPress-a (%s)."
4509
-
4510
- #: src/addons/sftp.php:530
4511
- msgid "password/key"
4512
- msgstr "hasło/klucz"
4513
-
4514
- #: src/addons/migrator.php:1758, src/addons/sftp.php:467, src/admin.php:868,
4515
- #: src/admin.php:5192, src/templates/wp-admin/settings/temporary-clone.php:63
4516
- msgid "Key"
4517
- msgstr "Klucz"
4518
-
4519
- #: src/addons/sftp.php:462
4520
- msgid "Your login may be either password or key-based - you only need to enter one, not both."
4521
- msgstr "Możesz logować się albo hasłem, albo za pomocą kluczy - powinieneś wprowadzić jedno z dwojga, ale nie obydwa na raz."
4522
-
4523
- #: src/addons/sftp.php:343
4524
- msgid "The key provided was not in a valid format, or was corrupt."
4525
- msgstr "Podany klucz jest w niewłaściwym formacie lub został uszkodzony."
4526
-
4527
- #: src/addons/sftp.php:49
4528
- msgid "SCP/SFTP password/key"
4529
- msgstr "hasło/klucz SCP/SFTP"
4530
-
4531
- #: src/addons/wp-cli.php:449, src/admin.php:4078
4532
- msgid "Files backup (created by %s)"
4533
- msgstr "Kopia zapasowa plików (utworzona przez %s)"
4534
-
4535
- #: src/addons/wp-cli.php:449, src/admin.php:4078
4536
- msgid "Files and database WordPress backup (created by %s)"
4537
- msgstr "Kopia zapasowa plików oraz bazy danych WordPress-a (utworzona przez %s)"
4538
-
4539
- #: src/addons/importer.php:276, src/admin.php:4072,
4540
- #: src/includes/class-backup-history.php:435
4541
- msgid "Backup created by: %s."
4542
- msgstr "Kopia zapasowa utworzona przez: %s."
4543
-
4544
- #: src/addons/wp-cli.php:431, src/admin.php:4032
4545
- msgid "Database (created by %s)"
4546
- msgstr "Baza danych (utworzona przez %s)"
4547
-
4548
- #: src/addons/wp-cli.php:429, src/admin.php:4026, src/admin.php:4074
4549
- msgid "unknown source"
4550
- msgstr "nieznane źródło"
4551
-
4552
- #: src/templates/wp-admin/advanced/site-info.php:104,
4553
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:56,
4554
- #: src/templates/wp-admin/settings/tab-backups.php:60
4555
- msgid "Rescan remote storage"
4556
- msgstr "Przeskanuj lokalizację zdalną ponownie."
4557
-
4558
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:51,
4559
- #: src/templates/wp-admin/settings/tab-backups.php:55
4560
- msgid "Upload backup files"
4561
- msgstr "Wyślij pliki kopii zapasowej"
4562
-
4563
- #: src/admin.php:2303
4564
- msgid "This backup was created by %s, and can be imported."
4565
- msgstr "Ta kopia została utworzona przez %s i może zostać zaimportowana."
4566
-
4567
- #: src/admin.php:1172
4568
- msgid "Read this page for a guide to possible causes and how to fix it."
4569
- msgstr "Przeczytaj tą stronę aby dowiedzieć się jakie sąmożliwe przyczyny oraz jak to naprawić."
4570
-
4571
- #: src/admin.php:1172
4572
- 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."
4573
- msgstr "WordPress ma kilka (%d) spóźnionych zadań w harmonogramie. O ile to nie jest środowisko testowe, oznacza to prawdopodobnie, że harmonogram zadań Twojej instalacji WordPress nie działa."
4574
-
4575
- #: src/admin.php:831, src/includes/class-backup-history.php:442
4576
- msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
4577
- msgstr "Jeżeli to jest kopia zapasowa wykonana za pomocą innej wtyczki, być może UpdraftPlus Premium będzie w stanie Ci pomóc."
4578
-
4579
- #: src/admin.php:830
4580
- 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."
4581
- msgstr "Niemniej jednak archiwa UpdraftPlus są standardowymi plikami zip/SQL - jeżeli więc jesteś pewien, że Twój plik jest we właściwym formacie, możesz zmienić jego nazwę aby pasowała do tego wzorca."
4582
-
4583
- #: src/admin.php:830, src/admin.php:831,
4584
- #: src/includes/class-backup-history.php:442
4585
- 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))."
4586
- msgstr "Ten plik nie wygląda na archiwum kopii zapasowej UpdraftPlus (są to przeważnie pliki .zip albo .gz z nazwą: backup_(czas)_(adres strony)_(kod)_(typ).(zip|gz))."
4587
-
4588
- #: src/admin.php:4075, src/includes/class-wpadmin-commands.php:162,
4589
- #: src/restorer.php:1975
4590
- msgid "Backup created by unknown source (%s) - cannot be restored."
4591
- msgstr "Kopia zapasowa utworzona przez nieznane źródło (%s) - nie może zostać przywrócona."
4592
-
4593
- #: src/restorer.php:1259, src/restorer.php:1307
4594
- msgid "The WordPress content folder (wp-content) was not found in this zip file."
4595
- msgstr "Folder z zawartością WordPress (wp-content) nie został odnaleziony w tym pliku zip."
4596
-
4597
- #: src/restorer.php:1113
4598
- msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
4599
- msgstr "Ta wersja UpdraftPlus nie obsługuje zewnętrznych kopii zapasowych tego rodzaju"
4600
-
4601
- #: src/methods/dropbox.php:377
4602
- msgid "%s returned an unexpected HTTP response: %s"
4603
- msgstr "%s zwrócił nieoczekiwaną odpowiedź HTTP: %s"
4604
-
4605
- #: src/addons/sftp.php:1060
4606
- msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
4607
- msgstr "Moduł UpdraftPlus dla tej metody dostępu do plików (%s) nie obsługuje listowania plików."
4608
-
4609
- #: src/addons/backblaze.php:580, src/methods/cloudfiles.php:234,
4610
- #: src/methods/dropbox.php:358, src/methods/openstack-base.php:118
4611
- msgid "No settings were found"
4612
- msgstr "Nie znaleziono ustawień"
4613
-
4614
- #: src/includes/class-backup-history.php:610
4615
- 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."
4616
- msgstr "Jedna lub więcej kopii zapasowych było dodanych w wyniku skanowania zdalnej lokalizacji; te kopie zapasowe nie będą automatycznie usuwane przez ustawienia \"retain\"; jeżeli chcesz je skasować, zrób to ręcznie."
4617
-
4618
- #: src/admin.php:797
4619
- msgid "Rescanning remote and local storage for backup sets..."
4620
- msgstr "Ponowne szukanie zestawów kopii zapasowych w lokalizacjach zdalnych i lokalnych..."
4621
-
4622
- #: src/addons/googlecloud.php:1042, src/addons/googlecloud.php:1055,
4623
- #: src/addons/s3-enhanced.php:63, src/addons/s3-enhanced.php:72
4624
- msgid "(Read more)"
4625
- msgstr "(Czytaj dalej)"
4626
-
4627
- #: src/addons/reporting.php:496
4628
- msgid "Log all messages to syslog (only server admins are likely to want this)"
4629
- msgstr "Zapisuj wszystkie komunikaty w syslog (używane głównie przez administratorów serwerów)"
4630
-
4631
- #: src/addons/morefiles.php:538
4632
- msgid "No backup of location: there was nothing found to back up"
4633
- msgstr ""
4634
-
4635
- #: src/addons/moredatabase.php:236, src/addons/morefiles.php:297,
4636
- #: src/addons/morefiles.php:318
4637
- msgid "Remove"
4638
- msgstr "Usuń"
4639
-
4640
- #: src/methods/s3.php:873
4641
- msgid "Other %s FAQs."
4642
- msgstr "Inne pytania %s."
4643
-
4644
- #: src/templates/wp-admin/settings/form-contents.php:304
4645
- msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
4646
- msgstr "Zaznacz zaby otrzymywać więcej informacji i maili o procesie kopiowania - przydatne zwłaszcza przy diagnozowaniu problemów."
4647
-
4648
- #: src/addons/morefiles.php:476, src/admin.php:3831
4649
- 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."
4650
- msgstr "Jeżeli podajesz kilka plików/folderów, wpisz je rozdzielone przecinkami. Dla obiektów na szczycie hierarchii możesz używać * na początku lub końcu nazwy."
4651
-
4652
- #: src/includes/class-filesystem-functions.php:233, src/methods/ftp.php:330,
4653
- #: src/restorer.php:2006
4654
- msgid "Your hosting company must enable these functions before %s can work."
4655
- msgstr "Żeby %s działało, Twój dostawca hostingu musi najpierw włączyć te funkcje."
4656
-
4657
- #: src/includes/class-filesystem-functions.php:233, src/methods/ftp.php:330
4658
- msgid "Your web server's PHP installation has these functions disabled: %s."
4659
- msgstr "Instalacja PHP na Twoim serwerze www ma wyłączone następujące funkcje: %s."
4660
-
4661
- #: src/methods/ftp.php:327
4662
- msgid "encrypted FTP (explicit encryption)"
4663
- msgstr "zaszyfrowane FTP (szyfrowanie jawne)"
4664
-
4665
- #: src/methods/ftp.php:326
4666
- msgid "encrypted FTP (implicit encryption)"
4667
- msgstr "szyfrowane FTP (szyfrowanie ukryte)"
4668
-
4669
- #: src/methods/ftp.php:325
4670
- msgid "regular non-encrypted FTP"
4671
- msgstr "zwykłe, nieszyfrowane FTP"
4672
-
4673
- #: src/restorer.php:2192
4674
- msgid "Backup created by:"
4675
- msgstr "Kopia zapasowa stworzona przez:"
4676
-
4677
- #: src/udaddons/options.php:483
4678
- msgid "Available to claim on this site"
4679
- msgstr "Dostępne do rządania na tej stronie"
4680
-
4681
- #: src/udaddons/updraftplus-addons.php:288
4682
- msgid "To maintain your access to support, please renew."
4683
- msgstr "Proszę odnowić aby utrzymać dostęp do wsparcia technicznego."
4684
-
4685
- #: src/udaddons/updraftplus-addons.php:288
4686
- msgid "Your paid access to UpdraftPlus support will soon expire."
4687
- msgstr "Twój płatny dostęp do wsparcia technicznego UpdraftPlus wkrótce wygaśnie."
4688
-
4689
- #: src/udaddons/updraftplus-addons.php:286
4690
- msgid "To regain your access, please renew."
4691
- msgstr "Aby odzyskać swój dostęp, proszę odnowić."
4692
-
4693
- #: src/udaddons/updraftplus-addons.php:286
4694
- msgid "Your paid access to UpdraftPlus support has expired."
4695
- msgstr "Twój płatny dostęp do wsparcia technicznego UpdraftPlus wygasł."
4696
-
4697
- #: src/udaddons/updraftplus-addons.php:278
4698
- msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
4699
- msgstr "Twój płatny dostęp do aktualizacji UpdatePlus na tej stronie wkrótce wygaśnie."
4700
-
4701
- #: src/udaddons/updraftplus-addons.php:276,
4702
- #: src/udaddons/updraftplus-addons.php:278
4703
- msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
4704
- msgstr "Aby zachować dostęp do danych i poprawek (włączając przyszłe opcje oraz kompatybilność z przyszłymi wydaniami WordPress) oraz wsparcie techniczne, proszę odnowić."
4705
-
4706
- #: src/udaddons/updraftplus-addons.php:276
4707
- msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
4708
- msgstr "Twój płatny dostęp do aktualizacji UpdraftPlus dla %s z %s dodatków na tej stronie wkrótce wygaśnie. "
4709
-
4710
- #: src/udaddons/updraftplus-addons.php:272
4711
- msgid "Your paid ac