UpdraftPlus WordPress Backup Plugin - Version 1.13.8

Version Description

  • 21/Sep/2017 =

  • FEATURE: When importing a database, warn the user if the current MySQL server does not support a used character set, and offer to replace it (with a link explaining the risks)

  • FEATURE: Generic S3 storage module can now use non-default ports (specify by appending :(port number) to the host name)

  • FIX: Re-scanning of remote storage would fail to detect a file manually uploaded to a secondary remote storage location if not also present locally. Various other (unlikely) corner-case rescanning scenarios also tested and fixed.

  • TWEAK: Some enhancements to the S3 internals, to make the "S3 Generic" module behave better (it already worked) with the forthcoming DigitalOcean Spaces (object storage) (see: https://updraftplus.com/use-updraftplus-digital-ocean-spaces/)

  • TWEAK: UpdraftCentral will no longer show updates which WordPress core lists which appear to be of the same version number

  • TWEAK: Handle trying to download a zero-sized file through the browser more elegantly

  • TWEAK: When pressing 'Delete', the "also delete remote backup" checkbox was showing even for backups without remote storage

  • TWEAK: Abstract history handling into a separate class, UpdraftPlus_Backup_History, for easier maintenance

  • TWEAK: Remove a use of count() on a string to prevent a new PHP notice on PHP 7.2+

  • TWEAK: Some changes to the UpdraftCentral connection tool to make it more user-friendly

  • TWEAK: Clarified and documented the re-scanning code, and made it compatible with the increased flexibility needed for incremental backups in future

  • TWEAK: Tweaked UpdraftCentral GA handler to support Tracking ID editing and disconnection.

  • TWEAK: In the free version, if the only difference between backup and site URLs is http/https, then show a different message to make the situation clearer

  • TWEAK: Make the UPDRAFTPLUS_IPV4_ONLY constant take effect more widely

  • TWEAK: Do not duplicate remote instance ID records in the backup history when re-scanning

  • TWEAK: Keep the remote instance ID list consistent with the remote service list when re-scanning

  • TWEAK: Prevent a PHP notice that could appear for locally stored backups in UpdraftPlus::get_storage_objects_and_ids()

Download this release

Release Info

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

Code changes from version 1.13.7 to 1.13.8

admin.php CHANGED
@@ -754,7 +754,9 @@ class UpdraftPlus_Admin {
754
  'search' => __('Search', 'updraftplus'),
755
  'download_timeout' => __('Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer.', 'updraftplus'),
756
  'loading_log_file' => __('Loading log file', 'updraftplus'),
757
- 'updraftplus_version' => $updraftplus->version
 
 
758
  ) );
759
  }
760
 
@@ -1058,7 +1060,7 @@ class UpdraftPlus_Admin {
1058
  $updraftplus->jobdata_set('job_time_ms', $updraftplus->job_time_ms);
1059
 
1060
  // Retrieve the information from our backup history
1061
- $backup_history = $updraftplus->get_backup_history();
1062
  // Base name
1063
  $file = $backup_history[$timestamp][$type];
1064
 
@@ -1149,23 +1151,7 @@ class UpdraftPlus_Admin {
1149
  } else {
1150
  $updraftplus->close_browser_connection(json_encode($msg));
1151
  }
1152
-
1153
- $is_downloaded = false;
1154
- add_action('http_request_args', array($updraftplus, 'modify_http_options'));
1155
- foreach ($services as $service) {
1156
- if ($is_downloaded) continue;
1157
- $download = $this->download_file($file, $service);
1158
- if (is_readable($fullpath) && $download !== false) {
1159
- clearstatcache();
1160
- $updraftplus->log('Remote fetch was successful (file size: '.round(filesize($fullpath)/1024,1).' KB)');
1161
- $is_downloaded = true;
1162
- } else {
1163
- clearstatcache();
1164
- if (0 === @filesize($fullpath)) @unlink($fullpath);
1165
- $updraftplus->log('Remote fetch failed');
1166
- }
1167
- }
1168
- remove_action('http_request_args', array($updraftplus, 'modify_http_options'));
1169
  }
1170
 
1171
  // Now, be ready to spool the thing to the browser
@@ -1195,31 +1181,101 @@ class UpdraftPlus_Admin {
1195
 
1196
  }
1197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1198
  /**
1199
  * Downloads a specified file into UD's directory
1200
  *
1201
  * @param String $file - The name of the file
1202
- * @param String $service - The identifier of the service to download from. You cannot pass multiple services.
1203
- *
1204
  * @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.
1205
  */
1206
- private function download_file($file, $service) {
1207
 
1208
  global $updraftplus;
1209
 
1210
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
1211
 
 
 
1212
  $updraftplus->log("Requested file from remote service: $service: $file");
1213
 
1214
- $method_include = UPDRAFTPLUS_DIR.'/methods/'.$service.'.php';
1215
- if (file_exists($method_include)) require_once($method_include);
1216
-
1217
- $objname = "UpdraftPlus_BackupModule_${service}";
1218
- if (method_exists($objname, "download")) {
1219
 
1220
  try {
1221
- $remote_obj = new $objname;
1222
- return $remote_obj->download($file);
1223
  } catch (Exception $e) {
1224
  $log_message = 'Exception ('.get_class($e).') occurred during download: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
1225
  $updraftplus->log($log_message);
@@ -1372,12 +1428,20 @@ class UpdraftPlus_Admin {
1372
 
1373
  }
1374
 
1375
- // Relevant options (array keys): backup_timestamp, delete_remote, [remote_delete_limit]
 
 
 
 
 
 
 
 
1376
  public function delete_set($opts) {
1377
 
1378
  global $updraftplus;
1379
 
1380
- $backups = $updraftplus->get_backup_history();
1381
  $timestamps = (string)$opts['backup_timestamp'];
1382
 
1383
  $remote_delete_limit = (isset($opts['remote_delete_limit']) && $opts['remote_delete_limit'] > 0) ? (int)$opts['remote_delete_limit'] : PHP_INT_MAX;
@@ -1416,6 +1480,7 @@ class UpdraftPlus_Admin {
1416
  if ($delete_remote) {
1417
  // Locate backup set
1418
  if (isset($backups[$timestamp]['service'])) {
 
1419
  $services = is_string($backups[$timestamp]['service']) ? array($backups[$timestamp]['service']) : $backups[$timestamp]['service'];
1420
  if (is_array($services)) {
1421
  foreach ($services as $service) {
@@ -1443,8 +1508,8 @@ class UpdraftPlus_Admin {
1443
  $files_to_delete['log'] = "log.$nonce.txt";
1444
  }
1445
 
1446
- add_action('http_request_args', array($updraftplus, 'modify_http_options'));
1447
-
1448
  foreach ($files_to_delete as $key => $files) {
1449
 
1450
  if (is_string($files)) {
@@ -1475,9 +1540,9 @@ class UpdraftPlus_Admin {
1475
 
1476
  $deleted = $remote_obj->delete($file);
1477
 
1478
- if ($deleted === -1) {
1479
  //echo __('Did not know how to delete from this cloud service.', 'updraftplus');
1480
- } elseif ($deleted !== false) {
1481
  $remote_deleted++;
1482
  }
1483
 
@@ -1497,7 +1562,7 @@ class UpdraftPlus_Admin {
1497
  }
1498
 
1499
  // If we don't save the array back, then the above section will fire again for the same files - and the remote storage will be requested to delete already-deleted files, which then means no time is actually saved by the browser-backend loop method.
1500
- UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backups);
1501
 
1502
  }
1503
  }
@@ -1506,22 +1571,32 @@ class UpdraftPlus_Admin {
1506
  }
1507
 
1508
  unset($backups[$timestamp]);
1509
- UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backups);
1510
  $sets_removed++;
1511
  }
1512
 
1513
-
1514
  return $this->remove_backup_set_cleanup(true, $backups, $local_deleted, $remote_deleted, $sets_removed);
1515
 
1516
  }
1517
 
 
 
 
 
 
 
 
 
 
 
 
1518
  public function remove_backup_set_cleanup($delete_complete, $backups, $local_deleted, $remote_deleted, $sets_removed) {
1519
 
1520
  global $updraftplus;
1521
 
1522
- remove_action('http_request_args', array($updraftplus, 'modify_http_options'));
1523
-
1524
- UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backups);
1525
 
1526
  $updraftplus->log("Local files deleted: $local_deleted. Remote files deleted: $remote_deleted");
1527
 
@@ -1545,9 +1620,8 @@ class UpdraftPlus_Admin {
1545
 
1546
  global $updraftplus;
1547
 
1548
- if ($rescan) $messages = $updraftplus->rebuild_backup_history($remotescan);
1549
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
1550
- $backup_history = (is_array($backup_history)) ? $backup_history : array();
1551
  $output = $this->existing_backup_table($backup_history);
1552
  $data = array();
1553
 
@@ -2137,7 +2211,7 @@ class UpdraftPlus_Admin {
2137
  if (empty($updraftplus->errors) && $backup_success === true) {
2138
  // TODO: Deal with the case of some of the work having been deferred
2139
  // If we restored the database, then that will have out-of-date information which may confuse the user - so automatically re-scan for them.
2140
- $updraftplus->rebuild_backup_history();
2141
  echo '<p><strong>';
2142
  $updraftplus->log_e('Restore successful!');
2143
  echo '</strong></p>';
@@ -2285,12 +2359,13 @@ class UpdraftPlus_Admin {
2285
  echo '</div>';
2286
  }
2287
 
2288
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
2289
  if (empty($backup_history)) {
2290
- $updraftplus->rebuild_backup_history();
2291
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
2292
  }
2293
- $backup_history = is_array($backup_history) ? $backup_history : array();
 
2294
  ?>
2295
 
2296
  <?php
@@ -3341,11 +3416,18 @@ class UpdraftPlus_Admin {
3341
  return esc_attr($rawbackup);
3342
  }
3343
 
 
 
 
 
 
 
 
3344
  public function existing_backup_table($backup_history = false) {
3345
 
3346
  global $updraftplus;
3347
 
3348
- if (false === $backup_history) $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
3349
 
3350
  if (!is_array($backup_history) || empty($backup_history)) return "<p><em>".__('You have not yet made any backups.', 'updraftplus')."</em></p>";
3351
 
@@ -3508,7 +3590,7 @@ class UpdraftPlus_Admin {
3508
  }
3509
 
3510
  public function delete_button($key, $nonce, $backup) {
3511
- $sval = ((isset($backup['service']) && $backup['service'] != 'email' && $backup['service'] != 'none')) ? '1' : '0';
3512
  return '<div class="updraftplus-remove" style="float: left; clear: none;" data-hasremote="'.$sval.'">
3513
  <a data-hasremote="'.$sval.'" data-nonce="'.$nonce.'" data-key="'.$key.'" class="no-decoration updraft-delete-link" href="#" title="'.esc_attr(__('Delete this backup set', 'updraftplus')).'">'.__('Delete', 'updraftplus').'</a>
3514
  </div>';
@@ -3552,11 +3634,13 @@ ENDHERE;
3552
  */
3553
  private function restore_backup($timestamp, $continuation_data = null) {
3554
 
 
 
3555
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
3556
 
3557
- global $wp_filesystem, $updraftplus;
3558
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
3559
- if (!isset($backup_history[$timestamp]) || !is_array($backup_history[$timestamp])) {
3560
  echo '<p>'.__('This backup does not exist in the backup history - restoration aborted. Timestamp:', 'updraftplus')." $timestamp</p><br>";
3561
  return new WP_Error('does_not_exist', __('Backup does not exist in the backup history', 'updraftplus'));
3562
  }
@@ -3612,13 +3696,12 @@ ENDHERE;
3612
  $updraft_dir = trailingslashit($updraftplus->backups_dir_location());
3613
  $foreign_known = apply_filters('updraftplus_accept_archivename', array());
3614
 
3615
- $service = (isset($backup_history[$timestamp]['service'])) ? $backup_history[$timestamp]['service'] : false;
3616
- if (!is_array($service)) $service = array($service);
3617
 
3618
  // Now, need to turn any updraft_restore_<entity> fields (that came from a potential WP_Filesystem form) back into parts of the _POST array (which we want to use)
3619
  if (empty($_POST['updraft_restore']) || (!is_array($_POST['updraft_restore']))) $_POST['updraft_restore'] = array();
3620
 
3621
- $backup_set = $backup_history[$timestamp];
3622
  $entities_to_restore = array();
3623
  foreach ($_POST['updraft_restore'] as $entity) {
3624
  if (empty($backup_set['meta_foreign'])) {
@@ -3749,25 +3832,12 @@ ENDHERE;
3749
  continue;
3750
  }
3751
 
3752
- add_action('http_request_args', array($updraftplus, 'modify_http_options'));
3753
- foreach ($service as $serv) {
3754
- if (!is_readable($fullpath)) {
3755
- $sd = (empty($updraftplus->backup_methods[$serv])) ? $serv : $updraftplus->backup_methods[$serv];
3756
- $updraftplus->log(__("File is not locally present - needs retrieving from remote storage",'updraftplus')." ($sd)", 'notice-restore');
3757
- $this->download_file($file, $serv);
3758
- if (!is_readable($fullpath)) {
3759
- $updraftplus->log(__("Error", 'updraftplus'), 'notice-restore');
3760
- } else {
3761
- $updraftplus->log(__("OK", 'updraftplus'), 'notice-restore');
3762
- }
3763
- }
3764
- }
3765
- remove_action('http_request_args', array($updraftplus, 'modify_http_options'));
3766
 
3767
  $index = ($ind == 0) ? '' : $ind;
3768
  // If a file size is stored in the backup data, then verify correctness of the local file
3769
- if (isset($backup_history[$timestamp][$type.$index.'-size'])) {
3770
- $fs = $backup_history[$timestamp][$type.$index.'-size'];
3771
  $print_message = __("Archive is expected to be size:",'updraftplus')." ".round($fs/1024, 1)." KB: ";
3772
  $as = @filesize($fullpath);
3773
  if ($as == $fs) {
@@ -3830,7 +3900,7 @@ ENDHERE;
3830
 
3831
  }
3832
 
3833
- $updraftplus_restorer->delete = (UpdraftPlus_Options::get_updraft_option('updraft_delete_local')) ? true : false;
3834
  if ('none' === $service || 'email' === $service || empty($service) || (is_array($service) && 1 == count($service) && (in_array('none', $service) || in_array('', $service) || in_array('email', $service))) || !empty($updraftplus_restorer->ud_foreign)) {
3835
  if ($updraftplus_restorer->delete) $updraftplus->log_e('Will not delete any archives after unpacking them, because there was no cloud storage for this backup');
3836
  $updraftplus_restorer->delete = false;
@@ -3854,7 +3924,7 @@ ENDHERE;
3854
  update_site_option('updraft_restore_in_progress', $updraftplus->nonce);
3855
 
3856
  foreach ($second_loop as $type => $files) {
3857
- # Types: uploads, themes, plugins, others, db
3858
  $info = (isset($backupable_entities[$type])) ? $backupable_entities[$type] : array();
3859
 
3860
  echo ('db' == $type) ? "<h2>".__('Database', 'updraftplus')."</h2>" : "<h2>".$info['description']."</h2>";
@@ -3934,12 +4004,12 @@ ENDHERE;
3934
  add_filter('pre_option_'.$opt, array($this, 'option_filter_'.$opt));
3935
  }
3936
 
3937
- # Clear any cached pages after the restore
3938
  $updraftplus_restorer->clear_cache();
3939
 
3940
  if (!function_exists('validate_current_theme')) require_once(ABSPATH.WPINC.'/themes');
3941
 
3942
- # Have seen a case where the current theme in the DB began with a capital, but not on disk - and this breaks migrating from Windows to a case-sensitive system
3943
  $template = get_option('template');
3944
  if (!empty($template) && $template != WP_DEFAULT_THEME && $template != strtolower($template)) {
3945
 
@@ -3959,9 +4029,10 @@ ENDHERE;
3959
  echo '</strong>';
3960
  }
3961
 
3962
- echo '</div>'; //close the updraft_restore_progress div
3963
 
3964
  restore_error_handler();
 
3965
  return true;
3966
  }
3967
 
@@ -4318,15 +4389,22 @@ ENDHERE;
4318
  }
4319
  }
4320
 
4321
- //This will bring back all the details for raw backup and file list
4322
- public function show_raw_backups($no_pre_tags = false){
 
 
 
 
 
 
4323
  global $updraftplus;
4324
 
4325
  $response = array();
4326
 
4327
  $response['html'] = '<h3 id="ud-debuginfo-rawbackups">'.__('Known backups (raw)', 'updraftplus').'</h3><pre>';
4328
  ob_start();
4329
- var_dump($updraftplus->get_backup_history());
 
4330
  $response["html"] .= ob_get_clean();
4331
  $response['html'] .= '</pre>';
4332
 
754
  'search' => __('Search', 'updraftplus'),
755
  'download_timeout' => __('Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer.', 'updraftplus'),
756
  'loading_log_file' => __('Loading log file', 'updraftplus'),
757
+ 'updraftplus_version' => $updraftplus->version,
758
+ 'updraftcentral_wizard_empty_url' => __('Please enter the URL where your UpdraftCentral dashboard is hosted.'),
759
+ 'updraftcentral_wizard_invalid_url' => __('Please enter a valid URL e.g http://example.com', 'updraftplus')
760
  ) );
761
  }
762
 
1060
  $updraftplus->jobdata_set('job_time_ms', $updraftplus->job_time_ms);
1061
 
1062
  // Retrieve the information from our backup history
1063
+ $backup_history = UpdraftPlus_Backup_History::get_history();
1064
  // Base name
1065
  $file = $backup_history[$timestamp][$type];
1066
 
1151
  } else {
1152
  $updraftplus->close_browser_connection(json_encode($msg));
1153
  }
1154
+ $this->get_remote_file($services, $file, $timestamp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1155
  }
1156
 
1157
  // Now, be ready to spool the thing to the browser
1181
 
1182
  }
1183
 
1184
+ /**
1185
+ * This method gets the remote storage information and objects and loops over each of them until we get a successful download of the passed in file.
1186
+ *
1187
+ * @param Array $services - a list of connected service identifiers (e.g. 'dropbox', 's3', etc.)
1188
+ * @param String $file - the name of the file
1189
+ * @param Integer $timestamp - the backup timestamp
1190
+ * @param Boolean $restore - a boolean to indicate if the caller of this method is a restore or not; if so, different messages are logged
1191
+ */
1192
+ private function get_remote_file($services, $file, $timestamp, $restore = false) {
1193
+ global $updraftplus;
1194
+
1195
+ $fullpath = $updraftplus->backups_dir_location().'/'.$file;
1196
+
1197
+ $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids($services);
1198
+
1199
+ $is_downloaded = false;
1200
+
1201
+ $updraftplus->register_wp_http_option_hooks();
1202
+
1203
+ foreach ($services as $service) {
1204
+
1205
+ if (empty($service) || 'none' == $service) continue;
1206
+
1207
+ if ($restore) {
1208
+ $service_description = empty($updraftplus->backup_methods[$service]) ? $service : $updraftplus->backup_methods[$service];
1209
+ $updraftplus->log(__("File is not locally present - needs retrieving from remote storage",'updraftplus')." ($service_description)", 'notice-restore');
1210
+ }
1211
+
1212
+ $object = $storage_objects_and_ids[$service]['object'];
1213
+
1214
+ if (!$object->supports_feature('multi_options')) {
1215
+ error_log("UpdraftPlus_Admin::get_remote_file(): Multi options not supported by: ".$service);
1216
+ continue;
1217
+ }
1218
+
1219
+ $instance_ids = $storage_objects_and_ids[$service]['instance_settings'];
1220
+ $backups_instance_ids = isset($backup_history[$timestamp]['service_instance_ids'][$service]) ? $backup_history[$timestamp]['service_instance_ids'][$service] : array(false);
1221
+
1222
+ foreach ($backups_instance_ids as $instance_id) {
1223
+
1224
+ if (isset($instance_ids[$instance_id])) {
1225
+ $options = $instance_ids[$instance_id];
1226
+ } else {
1227
+ // If we didn't find a instance id match, it could be a new UpdraftPlus upgrade or a wipe settings with the same details entered so try the default options saved.
1228
+ $options = $object->get_options();
1229
+ }
1230
+
1231
+ $object->set_options($options, false, $instance_id);
1232
+
1233
+ $download = $this->download_file($file, $object);
1234
+
1235
+ if (is_readable($fullpath) && false !== $download) {
1236
+ if ($restore) {
1237
+ $updraftplus->log(__("OK", 'updraftplus'), 'notice-restore');
1238
+ } else {
1239
+ clearstatcache();
1240
+ $updraftplus->log('Remote fetch was successful (file size: '.round(filesize($fullpath)/1024, 1).' KB)');
1241
+ }
1242
+ break 2;
1243
+ } else {
1244
+ if ($restore) {
1245
+ $updraftplus->log(__("Error", 'updraftplus'), 'notice-restore');
1246
+ } else {
1247
+ clearstatcache();
1248
+ if (0 === @filesize($fullpath)) @unlink($fullpath);
1249
+ $updraftplus->log('Remote fetch failed');
1250
+ }
1251
+ }
1252
+ }
1253
+ }
1254
+ $updraftplus->register_wp_http_option_hooks(false);
1255
+ }
1256
+
1257
  /**
1258
  * Downloads a specified file into UD's directory
1259
  *
1260
  * @param String $file - The name of the file
1261
+ * @param UpdraftPlus_BackupModule $object - The object of the service to use to download with.
1262
+ *
1263
  * @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.
1264
  */
1265
+ private function download_file($file, $object) {
1266
 
1267
  global $updraftplus;
1268
 
1269
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
1270
 
1271
+ $service = $object->get_id();
1272
+
1273
  $updraftplus->log("Requested file from remote service: $service: $file");
1274
 
1275
+ if (method_exists($object, 'download')) {
 
 
 
 
1276
 
1277
  try {
1278
+ return $object->download($file);
 
1279
  } catch (Exception $e) {
1280
  $log_message = 'Exception ('.get_class($e).') occurred during download: '.$e->getMessage().' (Code: '.$e->getCode().', line '.$e->getLine().' in '.$e->getFile().')';
1281
  $updraftplus->log($log_message);
1428
 
1429
  }
1430
 
1431
+ /**
1432
+ * Delete a backup set, whilst respecting limits on how much to delete in one go
1433
+ *
1434
+ * @uses remove_backup_set_cleanup()
1435
+ *
1436
+ * @param Array $opts - deletion options; with keys backup_timestamp, delete_remote, [remote_delete_limit]
1437
+ *
1438
+ * @return Array - as from remove_backup_set_cleanup()
1439
+ */
1440
  public function delete_set($opts) {
1441
 
1442
  global $updraftplus;
1443
 
1444
+ $backups = UpdraftPlus_Backup_History::get_history();
1445
  $timestamps = (string)$opts['backup_timestamp'];
1446
 
1447
  $remote_delete_limit = (isset($opts['remote_delete_limit']) && $opts['remote_delete_limit'] > 0) ? (int)$opts['remote_delete_limit'] : PHP_INT_MAX;
1480
  if ($delete_remote) {
1481
  // Locate backup set
1482
  if (isset($backups[$timestamp]['service'])) {
1483
+ // Convert to an array so that there is no uncertainty about how to process it
1484
  $services = is_string($backups[$timestamp]['service']) ? array($backups[$timestamp]['service']) : $backups[$timestamp]['service'];
1485
  if (is_array($services)) {
1486
  foreach ($services as $service) {
1508
  $files_to_delete['log'] = "log.$nonce.txt";
1509
  }
1510
 
1511
+ $updraftplus->register_wp_http_option_hooks();
1512
+
1513
  foreach ($files_to_delete as $key => $files) {
1514
 
1515
  if (is_string($files)) {
1540
 
1541
  $deleted = $remote_obj->delete($file);
1542
 
1543
+ if (-1 === $deleted) {
1544
  //echo __('Did not know how to delete from this cloud service.', 'updraftplus');
1545
+ } elseif (false !== $deleted) {
1546
  $remote_deleted++;
1547
  }
1548
 
1562
  }
1563
 
1564
  // If we don't save the array back, then the above section will fire again for the same files - and the remote storage will be requested to delete already-deleted files, which then means no time is actually saved by the browser-backend loop method.
1565
+ UpdraftPlus_Backup_History::save_history($backups);
1566
 
1567
  }
1568
  }
1571
  }
1572
 
1573
  unset($backups[$timestamp]);
1574
+ UpdraftPlus_Backup_History::save_history($backups);
1575
  $sets_removed++;
1576
  }
1577
 
 
1578
  return $this->remove_backup_set_cleanup(true, $backups, $local_deleted, $remote_deleted, $sets_removed);
1579
 
1580
  }
1581
 
1582
+ /**
1583
+ * Called by self::delete_set() to finish up before returning (whether the complete deletion is finished or not)
1584
+ *
1585
+ * @param Boolean $delete_complete - whether the whole set is now gone (i.e. last round)
1586
+ * @param Array $backups - the backup history
1587
+ * @param Integer $local_deleted - how many backup archives were deleted from local storage
1588
+ * @param Integer $remote_deleted - how many backup archives were deleted from remote storage
1589
+ * @param Integer $sets_removed - how many complete sets were removed
1590
+ *
1591
+ * @return Array - information on the status, suitable for returning to the UI
1592
+ */
1593
  public function remove_backup_set_cleanup($delete_complete, $backups, $local_deleted, $remote_deleted, $sets_removed) {
1594
 
1595
  global $updraftplus;
1596
 
1597
+ $updraftplus->register_wp_http_option_hooks(false);
1598
+
1599
+ UpdraftPlus_Backup_History::save_history($backups);
1600
 
1601
  $updraftplus->log("Local files deleted: $local_deleted. Remote files deleted: $remote_deleted");
1602
 
1620
 
1621
  global $updraftplus;
1622
 
1623
+ if ($rescan) $messages = UpdraftPlus_Backup_History::rebuild($remotescan);
1624
+ $backup_history = UpdraftPlus_Backup_History::get_history();
 
1625
  $output = $this->existing_backup_table($backup_history);
1626
  $data = array();
1627
 
2211
  if (empty($updraftplus->errors) && $backup_success === true) {
2212
  // TODO: Deal with the case of some of the work having been deferred
2213
  // If we restored the database, then that will have out-of-date information which may confuse the user - so automatically re-scan for them.
2214
+ UpdraftPlus_Backup_History::rebuild();
2215
  echo '<p><strong>';
2216
  $updraftplus->log_e('Restore successful!');
2217
  echo '</strong></p>';
2359
  echo '</div>';
2360
  }
2361
 
2362
+ $backup_history = UpdraftPlus_Backup_History::get_history();
2363
  if (empty($backup_history)) {
2364
+ UpdraftPlus_Backup_History::rebuild();
2365
+ $backup_history = UpdraftPlus_Backup_History::get_history();
2366
  }
2367
+
2368
+
2369
  ?>
2370
 
2371
  <?php
3416
  return esc_attr($rawbackup);
3417
  }
3418
 
3419
+ /**
3420
+ * Get the HTML for the table of existing backups
3421
+ *
3422
+ * @param Array|Boolean $backup_history - a list of backups to use, or false to get the current list from the database
3423
+ *
3424
+ * @return String - HTML for the table
3425
+ */
3426
  public function existing_backup_table($backup_history = false) {
3427
 
3428
  global $updraftplus;
3429
 
3430
+ if (false === $backup_history) $backup_history = UpdraftPlus_Backup_History::get_history();
3431
 
3432
  if (!is_array($backup_history) || empty($backup_history)) return "<p><em>".__('You have not yet made any backups.', 'updraftplus')."</em></p>";
3433
 
3590
  }
3591
 
3592
  public function delete_button($key, $nonce, $backup) {
3593
+ $sval = (!empty($backup['service']) && $backup['service'] != 'email' && $backup['service'] != 'none' && $backup['service'] !== array('email') && $backup['service'] !== array('none')) ? '1' : '0';
3594
  return '<div class="updraftplus-remove" style="float: left; clear: none;" data-hasremote="'.$sval.'">
3595
  <a data-hasremote="'.$sval.'" data-nonce="'.$nonce.'" data-key="'.$key.'" class="no-decoration updraft-delete-link" href="#" title="'.esc_attr(__('Delete this backup set', 'updraftplus')).'">'.__('Delete', 'updraftplus').'</a>
3596
  </div>';
3634
  */
3635
  private function restore_backup($timestamp, $continuation_data = null) {
3636
 
3637
+ global $wp_filesystem, $updraftplus;
3638
+
3639
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
3640
 
3641
+ $backup_set = UpdraftPlus_Backup_History::get_history($timestamp);
3642
+
3643
+ if (empty($backup_set)) {
3644
  echo '<p>'.__('This backup does not exist in the backup history - restoration aborted. Timestamp:', 'updraftplus')." $timestamp</p><br>";
3645
  return new WP_Error('does_not_exist', __('Backup does not exist in the backup history', 'updraftplus'));
3646
  }
3696
  $updraft_dir = trailingslashit($updraftplus->backups_dir_location());
3697
  $foreign_known = apply_filters('updraftplus_accept_archivename', array());
3698
 
3699
+ $service = isset($backup_set['service']) ? $backup_set['service'] : array('none');
3700
+ if (is_string($service)) $service = array($service);
3701
 
3702
  // Now, need to turn any updraft_restore_<entity> fields (that came from a potential WP_Filesystem form) back into parts of the _POST array (which we want to use)
3703
  if (empty($_POST['updraft_restore']) || (!is_array($_POST['updraft_restore']))) $_POST['updraft_restore'] = array();
3704
 
 
3705
  $entities_to_restore = array();
3706
  foreach ($_POST['updraft_restore'] as $entity) {
3707
  if (empty($backup_set['meta_foreign'])) {
3832
  continue;
3833
  }
3834
 
3835
+ $this->get_remote_file($service, $file, $timestamp, true);
 
 
 
 
 
 
 
 
 
 
 
 
 
3836
 
3837
  $index = ($ind == 0) ? '' : $ind;
3838
  // If a file size is stored in the backup data, then verify correctness of the local file
3839
+ if (isset($backup_set[$type.$index.'-size'])) {
3840
+ $fs = $backup_set[$type.$index.'-size'];
3841
  $print_message = __("Archive is expected to be size:",'updraftplus')." ".round($fs/1024, 1)." KB: ";
3842
  $as = @filesize($fullpath);
3843
  if ($as == $fs) {
3900
 
3901
  }
3902
 
3903
+ $updraftplus_restorer->delete = UpdraftPlus_Options::get_updraft_option('updraft_delete_local') ? true : false;
3904
  if ('none' === $service || 'email' === $service || empty($service) || (is_array($service) && 1 == count($service) && (in_array('none', $service) || in_array('', $service) || in_array('email', $service))) || !empty($updraftplus_restorer->ud_foreign)) {
3905
  if ($updraftplus_restorer->delete) $updraftplus->log_e('Will not delete any archives after unpacking them, because there was no cloud storage for this backup');
3906
  $updraftplus_restorer->delete = false;
3924
  update_site_option('updraft_restore_in_progress', $updraftplus->nonce);
3925
 
3926
  foreach ($second_loop as $type => $files) {
3927
+ // Types: uploads, themes, plugins, others, db
3928
  $info = (isset($backupable_entities[$type])) ? $backupable_entities[$type] : array();
3929
 
3930
  echo ('db' == $type) ? "<h2>".__('Database', 'updraftplus')."</h2>" : "<h2>".$info['description']."</h2>";
4004
  add_filter('pre_option_'.$opt, array($this, 'option_filter_'.$opt));
4005
  }
4006
 
4007
+ // Clear any cached pages after the restore
4008
  $updraftplus_restorer->clear_cache();
4009
 
4010
  if (!function_exists('validate_current_theme')) require_once(ABSPATH.WPINC.'/themes');
4011
 
4012
+ // Have seen a case where the current theme in the DB began with a capital, but not on disk - and this breaks migrating from Windows to a case-sensitive system
4013
  $template = get_option('template');
4014
  if (!empty($template) && $template != WP_DEFAULT_THEME && $template != strtolower($template)) {
4015
 
4029
  echo '</strong>';
4030
  }
4031
 
4032
+ echo '</div>'; // Close the updraft_restore_progress div
4033
 
4034
  restore_error_handler();
4035
+
4036
  return true;
4037
  }
4038
 
4389
  }
4390
  }
4391
 
4392
+ /**
4393
+ * This will return all the details for raw backup and file list, in HTML format
4394
+ *
4395
+ * @param Boolean $no_pre_tags - if set, then <pre></pre> tags will be removed from the output
4396
+ *
4397
+ * @return String
4398
+ */
4399
+ public function show_raw_backups($no_pre_tags = false) {
4400
  global $updraftplus;
4401
 
4402
  $response = array();
4403
 
4404
  $response['html'] = '<h3 id="ud-debuginfo-rawbackups">'.__('Known backups (raw)', 'updraftplus').'</h3><pre>';
4405
  ob_start();
4406
+ $history = UpdraftPlus_Backup_History::get_history();
4407
+ var_dump($history);
4408
  $response["html"] .= ob_get_clean();
4409
  $response['html'] .= '</pre>';
4410
 
backup.php CHANGED
@@ -330,7 +330,7 @@ class UpdraftPlus_Backup {
330
 
331
  $updraftplus->jobdata_set('jobstatus', 'clouduploading');
332
 
333
- add_action('http_request_args', array($updraftplus, 'modify_http_options'));
334
 
335
  $upload_status = $updraftplus->jobdata_get('uploading_substatus');
336
  if (!is_array($upload_status) || !isset($upload_status['t'])) {
@@ -404,7 +404,7 @@ class UpdraftPlus_Backup {
404
 
405
  if (!empty($do_prune)) $this->prune_retained_backups($do_prune);
406
 
407
- remove_action('http_request_args', array($updraftplus, 'modify_http_options'));
408
 
409
  }
410
 
@@ -480,7 +480,7 @@ class UpdraftPlus_Backup {
480
  $updraftplus->log("Retain: beginning examination of existing backup sets; user setting: retain_files=$updraft_retain, retain_db=$updraft_retain_db");
481
 
482
  // Returns an array, most recent first, of backup sets
483
- $backup_history = $updraftplus->get_backup_history();
484
  $db_backups_found = 0;
485
  $file_backups_found = 0;
486
 
@@ -516,8 +516,7 @@ class UpdraftPlus_Backup {
516
 
517
  foreach ($backup_db_groups as $group_id => $group) {
518
 
519
- // The array returned by UpdraftPlus::get_backup_history() is already sorted, with most-recent first
520
- // foreach ($backup_history as $backup_datestamp => $backup_to_examine) {
521
 
522
  if (empty($group['sets']) || !is_array($group['sets'])) continue;
523
  $sets = $group['sets'];
@@ -633,8 +632,7 @@ class UpdraftPlus_Backup {
633
  // Now again - this time for the files
634
  foreach ($backup_files_groups as $group_id => $group) {
635
 
636
- // The array returned by UpdraftPlus::get_backup_history() is already sorted, with most-recent first
637
- // foreach ($backup_history as $backup_datestamp => $backup_to_examine) {
638
 
639
  if (empty($group['sets']) || !is_array($group['sets'])) continue;
640
  $sets = $group['sets'];
@@ -754,7 +752,7 @@ class UpdraftPlus_Backup {
754
  }
755
 
756
  $updraftplus->log("Retain: saving new backup history (sets now: ".count($backup_history).") and finishing retain operation");
757
- UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history, false);
758
 
759
  do_action('updraftplus_prune_retained_backups_finished');
760
 
@@ -762,14 +760,18 @@ class UpdraftPlus_Backup {
762
 
763
  }
764
 
765
- // The purpose of this is to save the backup history periodically - for the benefit of setups where the pruning takes longer than the total allow run time (e.g. if the network communications to the remote storage have delays in, and there are a lot of sets to scan)
 
 
 
 
766
  private function maybe_save_backup_history_and_reschedule($backup_history) {
767
  static $last_saved_at = 0;
768
  if (!$last_saved_at) $last_saved_at = time();
769
  if (time() - $last_saved_at >= 10) {
770
  global $updraftplus;
771
  $updraftplus->log("Retain: saving new backup history, because at least 10 seconds have passed since the last save (sets now: ".count($backup_history).")");
772
- UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history, false);
773
  $updraftplus->something_useful_happened();
774
  $last_saved_at = time();
775
  }
330
 
331
  $updraftplus->jobdata_set('jobstatus', 'clouduploading');
332
 
333
+ $updraftplus->register_wp_http_option_hooks();
334
 
335
  $upload_status = $updraftplus->jobdata_get('uploading_substatus');
336
  if (!is_array($upload_status) || !isset($upload_status['t'])) {
404
 
405
  if (!empty($do_prune)) $this->prune_retained_backups($do_prune);
406
 
407
+ $updraftplus->register_wp_http_option_hooks(false);
408
 
409
  }
410
 
480
  $updraftplus->log("Retain: beginning examination of existing backup sets; user setting: retain_files=$updraft_retain, retain_db=$updraft_retain_db");
481
 
482
  // Returns an array, most recent first, of backup sets
483
+ $backup_history = UpdraftPlus_Backup_History::get_history();
484
  $db_backups_found = 0;
485
  $file_backups_found = 0;
486
 
516
 
517
  foreach ($backup_db_groups as $group_id => $group) {
518
 
519
+ // N.B. The array returned by UpdraftPlus_Backup_History::get_history() is already sorted, with most-recent first
 
520
 
521
  if (empty($group['sets']) || !is_array($group['sets'])) continue;
522
  $sets = $group['sets'];
632
  // Now again - this time for the files
633
  foreach ($backup_files_groups as $group_id => $group) {
634
 
635
+ // N.B. The array returned by UpdraftPlus_Backup_History::get_history() is already sorted, with most-recent first
 
636
 
637
  if (empty($group['sets']) || !is_array($group['sets'])) continue;
638
  $sets = $group['sets'];
752
  }
753
 
754
  $updraftplus->log("Retain: saving new backup history (sets now: ".count($backup_history).") and finishing retain operation");
755
+ UpdraftPlus_Backup_History::save_history($backup_history, false);
756
 
757
  do_action('updraftplus_prune_retained_backups_finished');
758
 
760
 
761
  }
762
 
763
+ /**
764
+ * The purpose of this is to save the backup history periodically - for the benefit of setups where the pruning takes longer than the total allow run time (e.g. if the network communications to the remote storage have delays in, and there are a lot of sets to scan)
765
+ *
766
+ * @param Array $backup_history - the backup history to possible save
767
+ */
768
  private function maybe_save_backup_history_and_reschedule($backup_history) {
769
  static $last_saved_at = 0;
770
  if (!$last_saved_at) $last_saved_at = time();
771
  if (time() - $last_saved_at >= 10) {
772
  global $updraftplus;
773
  $updraftplus->log("Retain: saving new backup history, because at least 10 seconds have passed since the last save (sets now: ".count($backup_history).")");
774
+ UpdraftPlus_Backup_History::save_history($backup_history, false);
775
  $updraftplus->something_useful_happened();
776
  $last_saved_at = time();
777
  }
central/bootstrap.php CHANGED
@@ -29,7 +29,7 @@ class UpdraftPlus_UpdraftCentral_Main {
29
  ));
30
 
31
  // If nothing was sent, then there is no incoming message, so no need to set up a listener (or CORS request, etc.). This avoids a DB SELECT query on the option below in the case where it didn't get autoloaded, which is the case when there are no keys.
32
- if (('GET' == $_SERVER['REQUEST_METHOD'] || 'POST' == $_SERVER['REQUEST_METHOD']) && (empty($_REQUEST['action']) || 'updraft_central' !== $_REQUEST['action']) && empty($_REQUEST['udcentral_action']) && empty($_REQUEST['udrpc_message'])) return;
33
 
34
  // Remote control keys
35
  // These are different from the remote send keys, which are set up in the Migrator add-on
@@ -229,6 +229,14 @@ class UpdraftPlus_UpdraftCentral_Main {
229
 
230
  if (is_array($created)) {
231
  $created['keys_table'] = $this->get_keys_table();
 
 
 
 
 
 
 
 
232
  }
233
 
234
  return $created;
@@ -307,11 +315,16 @@ class UpdraftPlus_UpdraftCentral_Main {
307
  }
308
 
309
  // 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.
 
 
 
310
  $sent_key = wp_remote_post(
311
  $post_it,
312
  $post_options
313
  );
314
 
 
 
315
  if (is_wp_error($sent_key) || empty($sent_key)) {
316
  $err_msg = sprintf(__('A key was created, but the attempt to register it with %s was unsuccessful - please try again later.', 'updraftplus'), (string) $post_it_description);
317
  if (is_wp_error($sent_key)) $err_msg .= ' '.$sent_key->get_error_message().' ('.$sent_key->get_error_code().')';
@@ -385,7 +398,7 @@ class UpdraftPlus_UpdraftCentral_Main {
385
  if (!is_array($our_keys)) $our_keys = array();
386
 
387
  if (empty($our_keys)) {
388
- $ret .= '<tr><td colspan="2"><em>'.__('No keys have yet been created.', 'updraftplus').'</em></td></tr>';
389
  }
390
 
391
  foreach ($our_keys as $i => $key) {
@@ -433,24 +446,25 @@ class UpdraftPlus_UpdraftCentral_Main {
433
 
434
  ob_start();
435
  ?>
436
- <div id="updraftcentral_keys">
437
- <div id="updraftcentral_keys_content">
438
- <table>
439
- <thead>
440
- <tr>
441
- <th style="text-align:left;"><?php _e('Key description', 'updraftplus'); ?></th>
442
- <th style="text-align:left;"><?php _e('Details', 'updraftplus'); ?></th>
443
- </tr>
444
- </thead>
445
- <tbody>
446
- <?php
447
-
448
- echo $ret;
449
-
450
- ?>
451
- </tbody>
452
- </table>
453
- </div>
 
454
  </div>
455
  <?php
456
  return ob_get_clean();
@@ -460,69 +474,75 @@ class UpdraftPlus_UpdraftCentral_Main {
460
  ob_start();
461
  ?>
462
  <div class="create_key_container">
463
- <h4> <?php _e('Create new key', 'updraftplus'); ?></h4>
464
  <table style="width: auto; table-layout:fixed;">
465
  <thead></thead>
466
- <tbody>
467
- <tr class="updraft_debugrow">
468
- <th style="width: 20%;">
469
- <?php _e('Description', 'updraftplus'); ?>:
470
- </th>
471
- <td style="width:80%;">
472
- <input id="updraftcentral_keycreate_description" type="text" size="20" placeholder="<?php _e('Enter any description', 'updraftplus'); ?>" value="" >
473
- </td>
474
- </tr>
475
-
476
- <tr class="updraft_debugrow">
477
- <th style=""> <?php _e('Dashboard at', 'updraftplus'); ?>:</th>
478
- <td style="width:80%;">
479
- <label>
480
- <input checked="checked" type="radio" name="updraftcentral_mothership" id="updraftcentral_mothership_updraftpluscom">
481
- UpdraftPlus.Com (<?php _e('i.e. you have an account there', 'updraftplus'); ?>)
482
- </label>
483
- <br>
484
- <label>
485
- <input type="radio" name="updraftcentral_mothership" id="updraftcentral_mothership_other">
486
- <?php _e('Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)', 'updraftplus'); ?>:
487
- </label>
488
- <br>
489
- <input disabled="disabled" id="updraftcentral_keycreate_mothership" type="text" size="40" placeholder="<?php _e('URL of mothership', 'updraftplus'); ?>" value="">
490
- <br>
491
- <div id="updraftcentral_keycreate_mothership_firewalled_container">
492
- <label>
493
- <input id="updraftcentral_keycreate_mothership_firewalled" type="checkbox">
494
- <?php _e('Use the alternative method for making a connection with the dashboard.', 'updraftplus'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
495
  <a href="#" id="updraftcentral_keycreate_altmethod_moreinfo_get">
496
- <?php _e('More information...', 'updraftplus'); ?>
497
- </a>
498
- <p id="updraftcentral_keycreate_altmethod_moreinfo" style="display:none;">
499
- <?php _e('This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate.');?>
500
- </p>
501
- </label>
502
- </div>
503
- </td>
504
- </tr>
505
- <tr class="updraft_debugrow">
506
- <th style=""></th>
507
- <td style="width:80%;">
508
- <?php _e('Encryption key size:', 'updraftplus'); ?>
509
- <select style="" id="updraftcentral_keycreate_keysize">
510
- <option value="512"><?php echo sprintf(__('%s bits', 'updraftplus').' - '.__('easy to break, fastest', 'updraftplus'), '512'); ?></option>
511
- <option value="1024"><?php echo sprintf(__('%s bits', 'updraftplus').' - '.__('faster (possibility for slow PHP installs)', 'updraftplus'), '1024'); ?></option>
512
- <option value="2048" selected="selected"><?php echo sprintf(__('%s bytes', 'updraftplus').' - '.__('recommended', 'updraftplus'), '2048'); ?></option>
513
- <option value="4096"><?php echo sprintf(__('%s bits', 'updraftplus').' - '.__('slower, strongest', 'updraftplus'), '4096'); ?></option>
514
- </select>
515
- </td>
516
- </tr>
517
- <tr class="updraft_debugrow">
518
- <th style=""></th>
519
- <td style="width:80%;">
520
- <button type="button" class="button button-primary" id="updraftcentral_keycreate_go"><?php _e('Create', 'updraftplus'); ?></button>
521
- </td>
522
- </tr>
523
- </tbody>
524
- </table>
525
- </div>
526
  <?php
527
  return ob_get_clean();
528
  }
@@ -531,9 +551,7 @@ class UpdraftPlus_UpdraftCentral_Main {
531
  ob_start();
532
  ?>
533
  <div id="updraftcentral_view_log_container">
534
- <h4><?php _e('View recent UpdraftCentral log events', 'updraftplus'); ?> -
535
- <a href="#" id="updraftcentral_view_log"><?php _e('fetch...', 'updraftplus'); ?></a>
536
- </h4>
537
  <pre id="updraftcentral_view_log_contents" style="padding: 0 4px;">
538
  </pre>
539
  </div>
@@ -546,11 +564,12 @@ class UpdraftPlus_UpdraftCentral_Main {
546
  <div class="advanced_tools updraft_central">
547
  <h3><?php _e('UpdraftCentral (Remote Control)', 'updraftplus'); ?></h3>
548
  <p>
549
- <?php echo __('UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard.', 'updraftplus').' <a href="https://updraftcentral.com">'.__('Read more about it here.', 'updraftplus').'</a>'; ?>
550
  </p>
551
- <div id="updraftcentral_keys">
 
552
  <?php echo $this->get_keys_table(); ?>
553
- <?php echo $this->create_key_markup(); ?>
554
  <?php echo $this->create_log_markup(); ?>
555
  </div>
556
  </div>
29
  ));
30
 
31
  // If nothing was sent, then there is no incoming message, so no need to set up a listener (or CORS request, etc.). This avoids a DB SELECT query on the option below in the case where it didn't get autoloaded, which is the case when there are no keys.
32
+ if (!empty($_SERVER['REQUEST_METHOD']) && ('GET' == $_SERVER['REQUEST_METHOD'] || 'POST' == $_SERVER['REQUEST_METHOD']) && (empty($_REQUEST['action']) || 'updraft_central' !== $_REQUEST['action']) && empty($_REQUEST['udcentral_action']) && empty($_REQUEST['udrpc_message'])) return;
33
 
34
  // Remote control keys
35
  // These are different from the remote send keys, which are set up in the Migrator add-on
229
 
230
  if (is_array($created)) {
231
  $created['keys_table'] = $this->get_keys_table();
232
+
233
+ $created['keys_guide'] = '<h2 class="updraftcentral_wizard_success">'. __('UpdraftCentral key created successfully') .'</h2>';
234
+
235
+ if ('__updraftpluscom' != $where_send) {
236
+ $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.'">UpdraftCentral dashboard</a>').'</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>';
237
+ } else {
238
+ $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>';
239
+ }
240
  }
241
 
242
  return $created;
315
  }
316
 
317
  // 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.
318
+
319
+ $updraftplus->register_wp_http_option_hooks();
320
+
321
  $sent_key = wp_remote_post(
322
  $post_it,
323
  $post_options
324
  );
325
 
326
+ $updraftplus->register_wp_http_option_hooks(false);
327
+
328
  if (is_wp_error($sent_key) || empty($sent_key)) {
329
  $err_msg = sprintf(__('A key was created, but the attempt to register it with %s was unsuccessful - please try again later.', 'updraftplus'), (string) $post_it_description);
330
  if (is_wp_error($sent_key)) $err_msg .= ' '.$sent_key->get_error_message().' ('.$sent_key->get_error_code().')';
398
  if (!is_array($our_keys)) $our_keys = array();
399
 
400
  if (empty($our_keys)) {
401
+ $ret .= '<tr><td colspan="2"><em>'.__('There are no UpdraftCentral dashboards that can currently control this site.', 'updraftplus').'</em></td></tr>';
402
  }
403
 
404
  foreach ($our_keys as $i => $key) {
446
 
447
  ob_start();
448
  ?>
449
+ <div id="updraftcentral_keys_content">
450
+ <?php if (!empty($our_keys)) { ?>
451
+ <a href="#" class="updraftcentral_keys_show hidden-in-updraftcentral"><?php printf(__('Manage existing keys (%d)...', 'updraftplus'), count($our_keys)); ?></a>
452
+ <?php } ?>
453
+ <table id="updraftcentral_keys_table">
454
+ <thead>
455
+ <tr>
456
+ <th style="text-align:left;"><?php _e('Key description', 'updraftplus'); ?></th>
457
+ <th style="text-align:left;"><?php _e('Details', 'updraftplus'); ?></th>
458
+ </tr>
459
+ </thead>
460
+ <tbody>
461
+ <?php
462
+
463
+ echo $ret;
464
+
465
+ ?>
466
+ </tbody>
467
+ </table>
468
  </div>
469
  <?php
470
  return ob_get_clean();
474
  ob_start();
475
  ?>
476
  <div class="create_key_container">
477
+ <h4 class="updraftcentral_wizard_stage1"> <?php _e('Connect this site to an UpdraftCentral dashboard found at...', 'updraftplus'); ?></h4>
478
  <table style="width: auto; table-layout:fixed;">
479
  <thead></thead>
480
+ <tbody>
481
+ <tr class="updraft_debugrow updraftcentral_wizard_stage1">
482
+ <td>
483
+ <label>
484
+ <input checked="checked" type="radio" name="updraftcentral_mothership" id="updraftcentral_mothership_updraftpluscom">
485
+ UpdraftPlus.Com (<?php printf(__('i.e. if you have %s there', 'updraftplus'), '<a target="_blank" href="https://updraftplus.com/my-account/">'.__('an account', 'updraftplus').'</a>'); ?>)
486
+ </label>
487
+ <br>
488
+ <label>
489
+ <input type="radio" name="updraftcentral_mothership" id="updraftcentral_mothership_other">
490
+ <?php echo __('On my own website on which I have installed', 'updraftplus').' <a target="_blank" href="https://wordpress.org/plugins/updraftcentral/">'.__('the UpdraftCentral dashboard plugin', 'updraftplus').'</a>'; ?>
491
+ </label>
492
+ <br>
493
+ <input disabled="disabled" id="updraftcentral_keycreate_mothership" type="text" size="40" placeholder="<?php _e('URL of mothership', 'updraftplus'); ?>" value="">
494
+ <br>
495
+ <button style="margin-top: 5px;" type="button" class="button button-primary" id="updraftcentral_stage2_go"><?php _e('Next', 'updraftplus'); ?></button>
496
+ <p style="font-size: 13px;" id="updraftcentral_wizard_stage1_error"></p>
497
+ </td>
498
+ </tr>
499
+
500
+ <tr class="updraft_debugrow updraftcentral_wizard_stage2" style="display: none;">
501
+ <h4 class="updraftcentral_wizard_stage2" style="display: none;"><?php _e('UpdraftCentral dashboard connection details', 'updraftplus'); ?></h4>
502
+ <td>
503
+ <?php _e('Description', 'updraftplus'); ?>:
504
+ <input id="updraftcentral_keycreate_description" type="text" size="20" placeholder="<?php _e('Enter any description', 'updraftplus'); ?>" value="" >
505
+ </td>
506
+ </tr>
507
+
508
+ <tr class="updraft_debugrow updraftcentral_wizard_stage2" style="display: none;">
509
+ <td>
510
+ <?php _e('Encryption key size:', 'updraftplus'); ?>
511
+ <select style="" id="updraftcentral_keycreate_keysize">
512
+ <option value="512"><?php echo sprintf(__('%s bits', 'updraftplus').' - '.__('easy to break, fastest', 'updraftplus'), '512'); ?></option>
513
+ <option value="1024"><?php echo sprintf(__('%s bits', 'updraftplus').' - '.__('faster (possibility for slow PHP installs)', 'updraftplus'), '1024'); ?></option>
514
+ <option value="2048" selected="selected"><?php echo sprintf(__('%s bytes', 'updraftplus').' - '.__('recommended', 'updraftplus'), '2048'); ?></option>
515
+ <option value="4096"><?php echo sprintf(__('%s bits', 'updraftplus').' - '.__('slower, strongest', 'updraftplus'), '4096'); ?></option>
516
+ </select>
517
+ <br>
518
+ <div id="updraftcentral_keycreate_mothership_firewalled_container">
519
+ <label>
520
+ <input id="updraftcentral_keycreate_mothership_firewalled" type="checkbox">
521
+ <?php _e('Use the alternative method for making a connection with the dashboard.', 'updraftplus'); ?>
522
  <a href="#" id="updraftcentral_keycreate_altmethod_moreinfo_get">
523
+ <?php _e('More information...', 'updraftplus'); ?>
524
+ </a>
525
+ <p id="updraftcentral_keycreate_altmethod_moreinfo" style="display:none; border: 1px dotted; padding: 3px; margin: 2px 10px 2px 24px;">
526
+ <em><?php _e('This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate.');?></em>
527
+ </p>
528
+ </label>
529
+ </div>
530
+ </td>
531
+ </tr>
532
+
533
+ <tr class="updraft_debugrow updraftcentral_wizard_stage2" style="display: none;">
534
+ <td>
535
+ <button style="margin-top: 5px;" type="button" class="button button-primary" id="updraftcentral_keycreate_go"><?php _e('Create', 'updraftplus'); ?></button>
536
+ </td>
537
+ </tr>
538
+ <tr class="updraft_debugrow updraftcentral_wizard_stage2" style="display: none;">
539
+ <td>
540
+ <a id="updraftcentral_stage1_go"><?php _e('Back...', 'updraftplus'); ?></a>
541
+ </td>
542
+ </tr>
543
+ </tbody>
544
+ </table>
545
+ </div>
 
 
 
 
 
 
 
546
  <?php
547
  return ob_get_clean();
548
  }
551
  ob_start();
552
  ?>
553
  <div id="updraftcentral_view_log_container">
554
+ <a href="#" id="updraftcentral_view_log"><?php _e('View recent UpdraftCentral log events', 'updraftplus'); ?>...</a><br>
 
 
555
  <pre id="updraftcentral_view_log_contents" style="padding: 0 4px;">
556
  </pre>
557
  </div>
564
  <div class="advanced_tools updraft_central">
565
  <h3><?php _e('UpdraftCentral (Remote Control)', 'updraftplus'); ?></h3>
566
  <p>
567
+ <?php echo __('UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard.', 'updraftplus').' <a target="_blank" href="https://updraftcentral.com">'.__('Read more about it here.', 'updraftplus').'</a>'; ?>
568
  </p>
569
+ <div style="min-height: 310px;" id="updraftcentral_keys">
570
+ <?php echo $this->create_key_markup(); ?>
571
  <?php echo $this->get_keys_table(); ?>
572
+ <button style="display: none;" type="button" class="button button-primary" id="updraftcentral_wizard_go"><?php _e('Create another key', 'updraftplus'); ?></button>
573
  <?php echo $this->create_log_markup(); ?>
574
  </div>
575
  </div>
central/listener.php CHANGED
@@ -160,9 +160,14 @@ class UpdraftPlus_UpdraftCentral_Listener {
160
 
161
  do_action('updraftcentral_listener_pre_udrpc_action', $command, $command_class, $data, $extra_info);
162
 
 
 
 
163
  // Despatch
164
  $msg = apply_filters('updraftcentral_listener_udrpc_action', call_user_func(array($command_class, $command), $data, $extra_info), $command_class, $class_prefix, $command, $data, $extra_info);
165
-
 
 
166
  return $this->return_rpc_message($msg);
167
  }
168
 
160
 
161
  do_action('updraftcentral_listener_pre_udrpc_action', $command, $command_class, $data, $extra_info);
162
 
163
+ global $updraftplus;
164
+ if (is_a($updraftplus, 'UpdraftPlus')) $updraftplus->register_wp_http_option_hooks();
165
+
166
  // Despatch
167
  $msg = apply_filters('updraftcentral_listener_udrpc_action', call_user_func(array($command_class, $command), $data, $extra_info), $command_class, $class_prefix, $command, $data, $extra_info);
168
+
169
+ if (is_a($updraftplus, 'UpdraftPlus')) $updraftplus->register_wp_http_option_hooks(false);
170
+
171
  return $this->return_rpc_message($msg);
172
  }
173
 
central/modules/analytics.php CHANGED
@@ -61,31 +61,21 @@ class UpdraftCentral_Analytics_Commands extends UpdraftCentral_Commands {
61
  // parse the needed information from the buffered content through
62
  // the "wp_head" and "wp_footer" hooks.
63
  if (false === $tracking_id) {
 
64
 
65
- // Retrieve header content
66
- ob_start();
67
- do_action('wp_head');
68
- $header_content = ob_get_clean();
69
-
70
- // Extract analytics information if available.
71
- $output = $this->parse_content($header_content);
72
- $installed = $output['installed'];
73
- $tracking_id = $output['tracking_id'];
74
-
75
- // If it was not found, then now try the footer
76
- if (empty($tracking_id)) {
77
- // Retrieve footer content
78
- ob_start();
79
- do_action('wp_footer');
80
- $footer_content = ob_get_clean();
81
- $output = $this->parse_content($footer_content);
82
- $installed = $output['installed'];
83
- $tracking_id = $output['tracking_id'];
84
- }
85
 
86
- if (!empty($tracking_id)) {
87
- set_site_transient($this->tracking_id_key, $tracking_id, $this->expiration);
88
- }
 
 
 
 
 
 
89
  }
90
 
91
  // Wrap and combined information for the requesting
@@ -96,7 +86,7 @@ class UpdraftCentral_Analytics_Commands extends UpdraftCentral_Commands {
96
  'client_id' => $this->client_id,
97
  'redirect_uri' => $this->auth_endpoint,
98
  'scope' => $this->scope,
99
- 'access_token' => $this->_get_token(),
100
  'endpoint' => $this->endpoint
101
  );
102
 
@@ -106,6 +96,45 @@ class UpdraftCentral_Analytics_Commands extends UpdraftCentral_Commands {
106
 
107
  return $this->_response($result);
108
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
 
110
  /**
111
  * Gets access token
@@ -136,6 +165,15 @@ class UpdraftCentral_Analytics_Commands extends UpdraftCentral_Commands {
136
  return $this->_response($result);
137
  }
138
 
 
 
 
 
 
 
 
 
 
139
  /**
140
  * Saves user is and access token received from the auth server
141
  *
@@ -149,7 +187,7 @@ class UpdraftCentral_Analytics_Commands extends UpdraftCentral_Commands {
149
  $token = get_option($this->access_key, false);
150
  $result = array();
151
 
152
- if (false === $token || empty($token['access_token'])) {
153
  $token = array(
154
  'user_id' => base64_decode(urldecode($query['user_id'])),
155
  'access_token' => base64_decode(urldecode($query['access_token']))
@@ -181,7 +219,7 @@ class UpdraftCentral_Analytics_Commands extends UpdraftCentral_Commands {
181
  $saved = false;
182
 
183
  if (!empty($tracking_id)) {
184
- $saved = set_site_transient($this->tracking_id_key, $tracking_id, $this->expiration);
185
  }
186
 
187
  $result = array('saved' => $saved);
@@ -225,7 +263,7 @@ class UpdraftCentral_Analytics_Commands extends UpdraftCentral_Commands {
225
  $body = json_decode($response['body'], true);
226
  $token_response = array();
227
 
228
- if (is_array($body)) {
229
  $token_response = json_decode(base64_decode($body[0]), true);
230
  }
231
 
@@ -333,12 +371,70 @@ class UpdraftCentral_Analytics_Commands extends UpdraftCentral_Commands {
333
  }
334
 
335
  /**
336
- * Retrieves the "analytics_tracking_id" option
337
  *
338
  * @internal
339
- * @return mixed Returns the value of the saved option. Returns "false" if the option does not exist.
340
  */
341
  private function get_tracking_id() {
342
- return get_site_transient($this->tracking_id_key);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  }
344
  }
61
  // parse the needed information from the buffered content through
62
  // the "wp_head" and "wp_footer" hooks.
63
  if (false === $tracking_id) {
64
+ $info = $this->extract_tracking_id();
65
 
66
+ $installed = $info['installed'];
67
+ $tracking_id = $info['tracking_id'];
68
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
70
+ // Get access token to be use to generate the report.
71
+ $access_token = $this->_get_token();
72
+
73
+ if (empty($access_token)) {
74
+ // If we don't get a valid access token then that would mean
75
+ // the access has been revoked by the user or UpdraftCentral was not authorized yet
76
+ // to access the user's analytics data, thus, we're clearing
77
+ // any previously stored user access so we're doing some housekeeping here.
78
+ $this->clear_user_access();
79
  }
80
 
81
  // Wrap and combined information for the requesting
86
  'client_id' => $this->client_id,
87
  'redirect_uri' => $this->auth_endpoint,
88
  'scope' => $this->scope,
89
+ 'access_token' => $access_token,
90
  'endpoint' => $this->endpoint
91
  );
92
 
96
 
97
  return $this->_response($result);
98
  }
99
+
100
+ /**
101
+ * Extracts Google Tracking ID from contents rendered through the "wp_head" and "wp_footer" action hooks
102
+ *
103
+ * @internal
104
+ * @return array $result An array containing the result of the extraction.
105
+ */
106
+ private function extract_tracking_id() {
107
+
108
+ // Define result array
109
+ $result = array();
110
+
111
+ // Retrieve header content
112
+ ob_start();
113
+ do_action('wp_head');
114
+ $header_content = ob_get_clean();
115
+
116
+ // Extract analytics information if available.
117
+ $output = $this->parse_content($header_content);
118
+ $result['installed'] = $output['installed'];
119
+ $result['tracking_id'] = $output['tracking_id'];
120
+
121
+ // If it was not found, then now try the footer
122
+ if (empty($tracking_id)) {
123
+ // Retrieve footer content
124
+ ob_start();
125
+ do_action('wp_footer');
126
+ $footer_content = ob_get_clean();
127
+ $output = $this->parse_content($footer_content);
128
+ $result['installed'] = $output['installed'];
129
+ $result['tracking_id'] = $output['tracking_id'];
130
+ }
131
+
132
+ if (!empty($tracking_id)) {
133
+ set_transient($this->tracking_id_key, $tracking_id, $this->expiration);
134
+ }
135
+
136
+ return $result;
137
+ }
138
 
139
  /**
140
  * Gets access token
165
  return $this->_response($result);
166
  }
167
 
168
+ /**
169
+ * Clears any previously stored user access
170
+ *
171
+ * @return bool
172
+ */
173
+ public function clear_user_access() {
174
+ return delete_option($this->access_key);
175
+ }
176
+
177
  /**
178
  * Saves user is and access token received from the auth server
179
  *
187
  $token = get_option($this->access_key, false);
188
  $result = array();
189
 
190
+ if (false === $token) {
191
  $token = array(
192
  'user_id' => base64_decode(urldecode($query['user_id'])),
193
  'access_token' => base64_decode(urldecode($query['access_token']))
219
  $saved = false;
220
 
221
  if (!empty($tracking_id)) {
222
+ $saved = set_transient($this->tracking_id_key, $tracking_id, $this->expiration);
223
  }
224
 
225
  $result = array('saved' => $saved);
263
  $body = json_decode($response['body'], true);
264
  $token_response = array();
265
 
266
+ if (is_array($body) && !isset($body['error'])) {
267
  $token_response = json_decode(base64_decode($body[0]), true);
268
  }
269
 
371
  }
372
 
373
  /**
374
+ * Retrieves the "analytics_tracking_id" transient
375
  *
376
  * @internal
377
+ * @return mixed Returns the value of the saved transient. Returns "false" if the transient does not exist.
378
  */
379
  private function get_tracking_id() {
380
+ return get_transient($this->tracking_id_key);
381
+ }
382
+
383
+
384
+ /**
385
+ * Returns the current tracking id
386
+ *
387
+ * @return array $result An array containing the Google Tracking ID.
388
+ */
389
+ public function get_current_tracking_id() {
390
+ try {
391
+
392
+ // Get current site transient stored for this key
393
+ $tracking_id = get_transient($this->tracking_id_key);
394
+
395
+ // Checks whether we have a valid token
396
+ $access_token = $this->_get_token();
397
+ if (empty($access_token)) {
398
+ $tracking_id = '';
399
+ }
400
+
401
+ if (false === $tracking_id) {
402
+ $result = $this->extract_tracking_id();
403
+ } else {
404
+ $result = array(
405
+ 'installed' => true,
406
+ 'tracking_id' => $tracking_id
407
+ );
408
+ }
409
+
410
+ } catch (Exception $e) {
411
+ $result = array('error' => true, 'message' => 'generic_response_error', 'values' => array($e->getMessage()));
412
+ }
413
+
414
+ return $this->_response($result);
415
+ }
416
+
417
+ /**
418
+ * Clears user access from database
419
+ *
420
+ * @return array $result An array containing the "Remove" confirmation whether the action succeeded or not.
421
+ */
422
+ public function remove_user_access() {
423
+ try {
424
+
425
+ // Clear user access
426
+ $is_cleared = $this->clear_user_access();
427
+
428
+ if (false !== $is_cleared) {
429
+ $result = array('removed' => true);
430
+ } else {
431
+ $result = array('error' => true, 'message' => 'user_access_remove_failed', 'values' => array());
432
+ }
433
+
434
+ } catch (Exception $e) {
435
+ $result = array('error' => true, 'message' => 'generic_response_error', 'values' => array($e->getMessage()));
436
+ }
437
+
438
+ return $this->_response($result);
439
  }
440
  }
central/modules/updates.php CHANGED
@@ -555,6 +555,12 @@ class UpdraftCentral_Updates_Commands extends UpdraftCentral_Commands {
555
  $get_plugin_updates = $this->maybe_add_third_party_items(get_plugin_updates(), 'plugin');
556
  if (is_array($get_plugin_updates)) {
557
  foreach ($get_plugin_updates as $update) {
 
 
 
 
 
 
558
  $plugin_updates[] = array(
559
  'name' => $update->Name,
560
  'plugin_uri' => $update->PluginURI,
@@ -591,6 +597,11 @@ class UpdraftCentral_Updates_Commands extends UpdraftCentral_Commands {
591
  $get_theme_updates = $this->maybe_add_third_party_items(get_theme_updates(), 'theme');
592
  if (is_array($get_theme_updates)) {
593
  foreach ($get_theme_updates as $update) {
 
 
 
 
 
594
  $theme_updates[] = array(
595
  'name' => $update->Name,
596
  'theme_uri' => $update->ThemeURI,
@@ -605,6 +616,7 @@ class UpdraftCentral_Updates_Commands extends UpdraftCentral_Commands {
605
  'url' => $update->update['url'],
606
  ),
607
  );
 
608
  }
609
  }
610
  }
@@ -646,22 +658,26 @@ class UpdraftCentral_Updates_Commands extends UpdraftCentral_Commands {
646
 
647
  $is_mysql = (file_exists(WP_CONTENT_DIR . '/db.php') && empty($wpdb->is_mysql)) ? false : true;
648
 
649
- $core_updates[] = array(
650
- 'download' => $update->download,
651
- 'version' => $update->version,
652
- 'php_version' => $update->php_version,
653
- 'mysql_version' => $update->mysql_version,
654
- 'installed' => array(
655
- 'version' => $wp_version,
656
- 'mysql' => $mysql_version,
657
- 'php' => PHP_VERSION,
658
- 'is_mysql' => $is_mysql,
659
- ),
660
- 'sufficient' => array(
661
- 'mysql' => version_compare($mysql_version, $update->mysql_version, '>='),
662
- 'php' => version_compare(PHP_VERSION, $update->php_version, '>='),
663
- ),
664
- );
 
 
 
 
665
 
666
  }
667
  }
555
  $get_plugin_updates = $this->maybe_add_third_party_items(get_plugin_updates(), 'plugin');
556
  if (is_array($get_plugin_updates)) {
557
  foreach ($get_plugin_updates as $update) {
558
+
559
+ // For some reason, some 3rd-party (premium) plugins are returning the same version
560
+ // with that of the currently installed version in WordPress. Thus, we're making sure here to
561
+ // only return those items for update that has new versions greater than the currently installed version.
562
+ if (version_compare($update->Version, $update->update->new_version, '>=')) continue;
563
+
564
  $plugin_updates[] = array(
565
  'name' => $update->Name,
566
  'plugin_uri' => $update->PluginURI,
597
  $get_theme_updates = $this->maybe_add_third_party_items(get_theme_updates(), 'theme');
598
  if (is_array($get_theme_updates)) {
599
  foreach ($get_theme_updates as $update) {
600
+
601
+ // We're making sure here to only return those items for update that has new
602
+ // versions greater than the currently installed version.
603
+ if (version_compare($update->Version, $update->update['new_version'], '>=')) continue;
604
+
605
  $theme_updates[] = array(
606
  'name' => $update->Name,
607
  'theme_uri' => $update->ThemeURI,
616
  'url' => $update->update['url'],
617
  ),
618
  );
619
+
620
  }
621
  }
622
  }
658
 
659
  $is_mysql = (file_exists(WP_CONTENT_DIR . '/db.php') && empty($wpdb->is_mysql)) ? false : true;
660
 
661
+ // We're making sure here to only return those items for update that has new
662
+ // versions greater than the currently installed version.
663
+ if (version_compare($wp_version, $update->version, '<')) {
664
+ $core_updates[] = array(
665
+ 'download' => $update->download,
666
+ 'version' => $update->version,
667
+ 'php_version' => $update->php_version,
668
+ 'mysql_version' => $update->mysql_version,
669
+ 'installed' => array(
670
+ 'version' => $wp_version,
671
+ 'mysql' => $mysql_version,
672
+ 'php' => PHP_VERSION,
673
+ 'is_mysql' => $is_mysql,
674
+ ),
675
+ 'sufficient' => array(
676
+ 'mysql' => version_compare($mysql_version, $update->mysql_version, '>='),
677
+ 'php' => version_compare(PHP_VERSION, $update->php_version, '>='),
678
+ ),
679
+ );
680
+ }
681
 
682
  }
683
  }
class-updraftplus.php CHANGED
@@ -72,6 +72,8 @@ class UpdraftPlus {
72
  fclose($fp);
73
  }
74
 
 
 
75
  // Create admin page
76
  add_action('init', array($this, 'handle_url_actions'));
77
  // Run earlier than default - hence earlier than other components
@@ -388,6 +390,42 @@ class UpdraftPlus {
388
 
389
  }
390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
  public function modify_http_options($opts) {
392
 
393
  if (!is_array($opts)) return $opts;
@@ -420,7 +458,7 @@ class UpdraftPlus {
420
  $call_class = "UpdraftPlus_BackupModule_".$method;
421
  $call_method = "action_".$matches[2];
422
  $backup_obj = new $call_class;
423
- add_action('http_request_args', array($this, 'modify_http_options'));
424
  try {
425
  if (method_exists($backup_obj, $call_method)) {
426
  call_user_func(array($backup_obj, $call_method));
@@ -428,7 +466,7 @@ class UpdraftPlus {
428
  } catch (Exception $e) {
429
  $this->log(sprintf(__("%s error: %s", 'updraftplus'), $method, $e->getMessage().' ('.$e->getCode().')', 'error'));
430
  }
431
- remove_action('http_request_args', array($this, 'modify_http_options'));
432
  } elseif (isset($_GET['page']) && 'updraftplus' == $_GET['page'] && 'downloadlog' == $_GET['action'] && isset($_GET['updraftplus_backup_nonce']) && preg_match("/^[0-9a-f]{12}$/", $_GET['updraftplus_backup_nonce']) && UpdraftPlus_Options::user_can_manage()) {
433
  // No WordPress nonce is needed here or for the next, since the backup is already nonce-based
434
  $updraft_dir = $this->backups_dir_location();
@@ -461,19 +499,19 @@ class UpdraftPlus {
461
  $backup_timestamp = $_GET['backup_timestamp'];
462
  $what = $_GET['what'];
463
 
464
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
465
 
466
  $filename = null;
467
- if (isset($backup_history[$backup_timestamp])) {
468
  if ('db' != substr($what, 0, 2)) {
469
  $backupable_entities = $this->get_backupable_file_entities();
470
  if (!isset($backupable_entities[$what])) $filename = false;
471
  }
472
- if (false !== $filename && isset($backup_history[$backup_timestamp][$what])) {
473
- if (is_string($backup_history[$backup_timestamp][$what]) && 0 == $findex) {
474
- $filename = $backup_history[$backup_timestamp][$what];
475
- } elseif (isset($backup_history[$backup_timestamp][$what][$findex])) {
476
- $filename = $backup_history[$backup_timestamp][$what][$findex];
477
  }
478
  }
479
  }
@@ -776,7 +814,7 @@ class UpdraftPlus {
776
  * Logs the given line, adding (relative) time stamp and newline
777
  * Note these subtleties of log handling:
778
  * - Messages at level 'error' are not logged to file - it is assumed that a separate call to log() at another level will take place. This is because at level 'error', messages are translated; whereas the log file is for developers who may not know the translated language. Messages at level 'error' are for the user.
779
- * - Messages at level 'error' do not persist through the job (they are only saved with save_backup_history(), and never restored from there - so only the final save_backup_history() errors
780
  * persist); we presume that either a) they will be cleared on the next attempt, or b) they will occur again on the final attempt (at which point they will go to the user). But...
781
  * - messages at level 'warning' persist. These are conditions that are unlikely to be cleared, not-fatal, but the user should be informed about. The $uniq_id field (which should not be numeric) can then be used for warnings that should only be logged once
782
  * $skip_dblog = true is suitable when there's a risk of excessive logging, and the information is not important for the user to see in the browser on the settings page
@@ -1667,10 +1705,13 @@ class UpdraftPlus {
1667
 
1668
  if (empty($history[$entity])) return;
1669
 
 
 
 
1670
  if ($smaller) {
1671
- $pfiles = "<strong>".$description." (".sprintf(__('files: %s', 'updraftplus'), count($history[$entity])).")</strong><br>\n";
1672
  } else {
1673
- $pfiles = "<h3>".$description." (".sprintf(__('files: %s', 'updraftplus'), count($history[$entity])).")</h3>\n\n";
1674
  }
1675
 
1676
  $pfiles .= '<ul>';
@@ -1765,19 +1806,6 @@ class UpdraftPlus {
1765
 
1766
  }
1767
 
1768
- /**
1769
- * This is just a long-winded way of forcing WP to get the value afresh from the db, instead of using the auto-loaded/cached value (which can be out of date, especially since backups are, by their nature, long-running)
1770
- *
1771
- * @param String $v - ignored
1772
- * @return Mixed - the database option
1773
- */
1774
- public function filter_updraft_backup_history($v) {
1775
- global $wpdb;
1776
- $row = $wpdb->get_row($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", 'updraft_backup_history'));
1777
- if (is_object($row)) return maybe_unserialize($row->option_value);
1778
- return false;
1779
- }
1780
-
1781
  public function php_error_to_logline($errno, $errstr, $errfile, $errline) {
1782
  switch ($errno) {
1783
  case 1:
@@ -1865,7 +1893,7 @@ class UpdraftPlus {
1865
  $runs_started = array();
1866
  $time_now = microtime(true);
1867
 
1868
- add_filter('pre_option_updraft_backup_history', array($this, 'filter_updraft_backup_history'));
1869
 
1870
  // Restore state
1871
  $resumption_extralog = '';
@@ -1884,7 +1912,7 @@ class UpdraftPlus {
1884
 
1885
  $this->logfile_open($bnonce);
1886
 
1887
- // Import existing warnings. The purpose of this is so that when save_backup_history() is called, it has a complete set - because job data expires quickly, whilst the warnings of the last backup run need to persist
1888
  if (is_array($warnings)) {
1889
  foreach ($warnings as $warning) {
1890
  $this->errors[] = array('level' => 'warning', 'message' => $warning);
@@ -2075,7 +2103,7 @@ class UpdraftPlus {
2075
  // This save, if there was something, is then immediately picked up again
2076
  if (is_array($backup_array)) {
2077
  $this->log('Saving backup status to database (elements: '.count($backup_array).")");
2078
- $this->save_backup_history($backup_array);
2079
  }
2080
 
2081
  // Switch of variable name is purely vestigial
@@ -2174,7 +2202,7 @@ class UpdraftPlus {
2174
  }
2175
 
2176
  // This is done before cloud despatch, because we want a record of what *should* be in the backup. Whether it actually makes it there or not is not yet known.
2177
- $this->save_backup_history($our_files);
2178
 
2179
  // Potentially encrypt the database if it is not already
2180
  if ('no' != $backup_database && isset($our_files[$tindex]) && !preg_match("/\.crypt$/", $our_files[$tindex])) {
@@ -2188,7 +2216,7 @@ class UpdraftPlus {
2188
 
2189
  if ('no' != $backup_database && isset($our_files[$tindex]) && file_exists($updraft_dir.'/'.$our_files[$tindex])) {
2190
  $our_files[$tindex.'-size'] = filesize($updraft_dir.'/'.$our_files[$tindex]);
2191
- $this->save_backup_history($our_files);
2192
  }
2193
 
2194
  }
@@ -2244,7 +2272,7 @@ class UpdraftPlus {
2244
  // Save again (now that we have checksums)
2245
  $size_description = (false === $total_size) ? 'Unknown' : $this->convert_numeric_size_to_text($total_size);
2246
  $this->log("Saving backup history. Total backup size: $size_description");
2247
- $this->save_backup_history($our_files);
2248
  do_action('updraft_final_backup_history', $our_files);
2249
 
2250
  // We finished; so, low memory was not a problem
@@ -2258,7 +2286,7 @@ class UpdraftPlus {
2258
  $allow_email = false;
2259
  if ('begun' == $this->jobdata_get('prune')) {
2260
  // Begun, but not finished
2261
- $this->log("Restarting backup prune operation");
2262
  $updraftplus_backup->do_prune_standalone();
2263
  $allow_email = true;
2264
  }
@@ -2716,324 +2744,6 @@ class UpdraftPlus {
2716
 
2717
  }
2718
 
2719
- /**
2720
- * This function examines inside the updraft directory to see if any new archives have been uploaded. If so, it adds them to the backup set. (Non-present items are also removed, only if the service is 'none').
2721
- *
2722
- * @param Boolean $remotescan scan not only local, but also remote storage
2723
- * @param Array|String $only_add_this_file if set to an array (with keys 'name' and (optionally) 'label'), then a file will only be taken notice of if the filename matches the 'name' key (and the label will be associated with the backup set)
2724
- * @return Array - an array of messages which the caller may wish to display to the user
2725
- */
2726
- public function rebuild_backup_history($remotescan = false, $only_add_this_file = false) {
2727
-
2728
- // TODO: Make compatible with incremental naming scheme
2729
-
2730
- $messages = array();
2731
- $gmt_offset = get_option('gmt_offset');
2732
-
2733
- // Array of nonces keyed by filename
2734
- $known_files = array();
2735
- // Array of backup times keyed by nonce
2736
- $known_nonces = array();
2737
- $changes = false;
2738
-
2739
- $backupable_entities = $this->get_backupable_file_entities(true, false);
2740
-
2741
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
2742
- if (!is_array($backup_history)) $backup_history = array();
2743
- $updraft_dir = $this->backups_dir_location();
2744
- if (!is_dir($updraft_dir)) return;
2745
-
2746
- $accept = apply_filters('updraftplus_accept_archivename', array());
2747
-
2748
- if (!is_array($accept)) $accept = array();
2749
- // First, process the database backup history to get a record of what is already known there. This means populating the arrays $known_files and $known_nonces .
2750
- foreach ($backup_history as $btime => $bdata) {
2751
- $found_file = false;
2752
- foreach ($bdata as $key => $values) {
2753
- if ('db' != $key && !isset($backupable_entities[$key])) continue;
2754
- // Record which set this file is found in
2755
- if (!is_array($values)) $values = array($values);
2756
- foreach ($values as $val) {
2757
- if (!is_string($val)) continue;
2758
- if (preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+)?+(\.(zip|gz|gz\.crypt))?$/i', $val, $matches)) {
2759
- $nonce = $matches[2];
2760
- if (isset($bdata['service']) && ('none' === $bdata['service'] || (is_array($bdata['service']) && (array('none') === $bdata['service'] || (1 == count($bdata['service']) && isset($bdata['service'][0]) && empty($bdata['service'][0]))))) && !is_file($updraft_dir.'/'.$val)) {
2761
- // File without remote storage is no longer present
2762
- } else {
2763
- $found_file = true;
2764
- $known_files[$val] = $nonce;
2765
- $known_nonces[$nonce] = (empty($known_nonces[$nonce]) || $known_nonces[$nonce]<100) ? $btime : min($btime, $known_nonces[$nonce]);
2766
- }
2767
- } else {
2768
- $accepted = false;
2769
- foreach ($accept as $fkey => $acc) {
2770
- if (preg_match('/'.$acc['pattern'].'/i', $val)) $accepted = $fkey;
2771
- }
2772
- if (!empty($accepted) && (false != ($btime = apply_filters('updraftplus_foreign_gettime', false, $accepted, $val))) && $btime > 0) {
2773
- $found_file = true;
2774
- // Generate a nonce; this needs to be deterministic and based on the filename only
2775
- $nonce = substr(md5($val), 0, 12);
2776
- $known_files[$val] = $nonce;
2777
- $known_nonces[$nonce] = (empty($known_nonces[$nonce]) || $known_nonces[$nonce]<100) ? $btime : min($btime, $known_nonces[$nonce]);
2778
- }
2779
- }
2780
- }
2781
- }
2782
- if (!$found_file) {
2783
- // File recorded as being without remote storage is no longer present. It may in fact exist in remote storage, and this will be picked up later (when we scan the remote storage).
2784
- unset($backup_history[$btime]);
2785
- $changes = true;
2786
- }
2787
- }
2788
-
2789
- $remotefiles = array();
2790
- $remotesizes = array();
2791
- // Scan remote storage and get back lists of files and their sizes
2792
- // TODO: Make compatible with incremental naming
2793
- if ($remotescan) {
2794
- add_action('http_request_args', array($this, 'modify_http_options'));
2795
- $storage_objects_and_ids = $this->get_storage_objects_and_ids(array_keys($this->backup_methods));
2796
-
2797
- foreach ($storage_objects_and_ids as $method => $method_information) {
2798
-
2799
- $object = $method_information['object'];
2800
-
2801
- if (!method_exists($object, 'listfiles')) continue;
2802
-
2803
- if (!$object->supports_feature('multi_options')) {
2804
- error_log("Multi options not supported by: ".$method);
2805
- continue;
2806
- }
2807
-
2808
- foreach ($method_information['instance_settings'] as $instance_id => $options) {
2809
-
2810
- $object->set_options($options, false, $instance_id);
2811
- $files = $object->listfiles('backup_');
2812
-
2813
- if (is_array($files)) {
2814
-
2815
- foreach ($files as $entry) {
2816
- $n = $entry['name'];
2817
- if (!preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-([\-a-z]+)([0-9]+)?(\.(zip|gz|gz\.crypt))?$/i', $n, $matches)) continue;
2818
-
2819
- $nonce = $matches[2];
2820
- $btime2 = strtotime($matches[1]);
2821
- $btime = (!empty($gmt_offset)) ? $btime2 - $gmt_offset*3600 : $btime2;
2822
-
2823
- if (isset($known_nonces[$nonce])) $btime = $known_nonces[$nonce];
2824
- if ($btime <= 100) continue;
2825
-
2826
- if (!isset($backup_history[$btime]['service_instance_ids'][$method][$instance_id])) {
2827
- $backup_history[$btime]['service_instance_ids'][$method][] = $instance_id;
2828
- $changes = true;
2829
- }
2830
-
2831
- if (isset($remotefiles[$n])) {
2832
- $remotefiles[$n][] = $method;
2833
- } else {
2834
- $remotefiles[$n] = array($method);
2835
- }
2836
- if (!empty($entry['size'])) {
2837
- if (empty($remotesizes[$n]) || $remotesizes[$n] < $entry['size']) $remotesizes[$n] = $entry['size'];
2838
- }
2839
- }
2840
- } elseif (is_wp_error($files)) {
2841
- foreach ($files->get_error_codes() as $code) {
2842
- if ('no_settings' == $code || 'no_addon' == $code || 'insufficient_php' == $code || 'no_listing' == $code) continue;
2843
- $messages[] = array(
2844
- 'method' => $method,
2845
- 'desc' => $method_description,
2846
- 'code' => $code,
2847
- 'message' => $files->get_error_message($code),
2848
- 'data' => $files->get_error_data($code),
2849
- 'service_instance_id' => $instance_id,
2850
- );
2851
- }
2852
- }
2853
- }
2854
- }
2855
- remove_action('http_request_args', array($this, 'modify_http_options'));
2856
- }
2857
-
2858
- if (!$handle = opendir($updraft_dir)) return;
2859
-
2860
- // See if there are any more files in the local directory than the ones already known about
2861
- while (false !== ($entry = readdir($handle))) {
2862
- $accepted_foreign = false;
2863
- $potmessage = false;
2864
-
2865
- if (false !== $only_add_this_file && $entry != $only_add_this_file['file']) continue;
2866
-
2867
- if ('.' == $entry || '..' == $entry) continue;
2868
-
2869
- // TODO: Make compatible with Incremental naming
2870
- if (preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-([\-a-z]+)([0-9]+)?(\.(zip|gz|gz\.crypt))?$/i', $entry, $matches)) {
2871
- // Interpret the time as one from the blog's local timezone, rather than as UTC
2872
- // $matches[1] is YYYY-MM-DD-HHmm, to be interpreted as being the local timezone
2873
- $btime2 = strtotime($matches[1]);
2874
- $btime = (!empty($gmt_offset)) ? $btime2 - $gmt_offset*3600 : $btime2;
2875
- $nonce = $matches[2];
2876
- $type = $matches[3];
2877
- if ('db' == $type) {
2878
- $type .= (!empty($matches[4])) ? $matches[4] : '';
2879
- $index = 0;
2880
- } else {
2881
- $index = (empty($matches[4])) ? '0' : (max((int) $matches[4]-1, 0));
2882
- }
2883
- $itext = (0 == $index) ? '' : $index;
2884
- } elseif (false != ($accepted_foreign = apply_filters('updraftplus_accept_foreign', false, $entry)) && false !== ($btime = apply_filters('updraftplus_foreign_gettime', false, $accepted_foreign, $entry))) {
2885
- $nonce = substr(md5($entry), 0, 12);
2886
- $type = (preg_match('/\.sql(\.(bz2|gz))?$/i', $entry) || preg_match('/-database-([-0-9]+)\.zip$/i', $entry) || preg_match('/backup_db_/', $entry)) ? 'db' : 'wpcore';
2887
- $index = apply_filters('updraftplus_accepted_foreign_index', 0, $entry, $accepted_foreign);
2888
- $itext = $index ? $index : '';
2889
- $potmessage = array(
2890
- 'code' => 'foundforeign_'.md5($entry),
2891
- 'desc' => $entry,
2892
- 'method' => '',
2893
- 'message' => sprintf(__('Backup created by: %s.', 'updraftplus'), $accept[$accepted_foreign]['desc'])
2894
- );
2895
- } elseif ('.zip' == strtolower(substr($entry, -4, 4)) || preg_match('/\.sql(\.(bz2|gz))?$/i', $entry)) {
2896
- $potmessage = array(
2897
- 'code' => 'possibleforeign_'.md5($entry),
2898
- 'desc' => $entry,
2899
- 'method' => '',
2900
- 'message' => __('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)).', 'updraftplus').' <a href="https://updraftplus.com/shop/updraftplus-premium/">'.__('If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you.', 'updraftplus').'</a>'
2901
- );
2902
- $messages[$potmessage['code']] = $potmessage;
2903
- continue;
2904
- } else {
2905
- continue;
2906
- }
2907
- // The time from the filename does not include seconds. Need to identify the seconds to get the right time
2908
- if (isset($known_nonces[$nonce])) {
2909
- $btime_exact = $known_nonces[$nonce];
2910
- // TODO: If the btime we had was more than 60 seconds earlier, then this must be an increment - we then need to change the $backup_history array accordingly. We can pad the '60 second' test, as there's no option to run an increment more frequently than every 4 hours (though someone could run one manually from the CLI)
2911
- if ($btime > 100 && $btime_exact - $btime > 60 && !empty($backup_history[$btime_exact])) {
2912
- // TODO: This needs testing
2913
- // The code below assumes that $backup_history[$btime] is presently empty
2914
- // Re-key array, indicating the newly-found time to be the start of the backup set
2915
- $backup_history[$btime] = $backup_history[$btime_exact];
2916
- unset($backup_history[$btime_exact]);
2917
- $btime_exact = $btime;
2918
- }
2919
- $btime = $btime_exact;
2920
- }
2921
- if ($btime <= 100) continue;
2922
- $fs = @filesize($updraft_dir.'/'.$entry);
2923
-
2924
- if (!isset($known_files[$entry])) {
2925
- $changes = true;
2926
- if (is_array($potmessage)) $messages[$potmessage['code']] = $potmessage;
2927
- if (is_array($only_add_this_file)) {
2928
- if (isset($only_add_this_file['label'])) $backup_history[$btime]['label'] = $only_add_this_file['label'];
2929
- $backup_history[$btime]['native'] = false;
2930
- } elseif ('db' == $type && !$accepted_foreign) {
2931
- list ($mess, $warn, $err, $info) = $this->analyse_db_file(false, array(), $updraft_dir.'/'.$entry, true);
2932
- if (!empty($info['label'])) {
2933
- $backup_history[$btime]['label'] = $info['label'];
2934
- }
2935
- if (!empty($info['created_by_version'])) {
2936
- $backup_history[$btime]['created_by_version'] = $info['created_by_version'];
2937
- }
2938
- }
2939
- }
2940
-
2941
- // TODO: Code below here has not been reviewed or adjusted for compatibility with incremental backups
2942
- // Make sure we have the right list of services
2943
- $current_services = (!empty($backup_history[$btime]) && !empty($backup_history[$btime]['service'])) ? $backup_history[$btime]['service'] : array();
2944
- if (is_string($current_services)) $current_services = array($current_services);
2945
- if (!is_array($current_services)) $current_services = array();
2946
- if (!empty($remotefiles[$entry])) {
2947
- if (0 == count(array_diff($current_services, $remotefiles[$entry]))) {
2948
- $backup_history[$btime]['service'] = $remotefiles[$entry];
2949
- $changes = true;
2950
- }
2951
- // Get the right size (our local copy may be too small)
2952
- foreach ($remotefiles[$entry] as $rem) {
2953
- if (!empty($rem['size']) && $rem['size'] > $fs) {
2954
- $fs = $rem['size'];
2955
- $changes = true;
2956
- }
2957
- }
2958
- // Remove from $remotefiles, so that we can later see what was left over
2959
- unset($remotefiles[$entry]);
2960
- } else {
2961
- // Not known remotely
2962
- if (!empty($backup_history[$btime])) {
2963
- if (empty($backup_history[$btime]['service']) || ('none' !== $backup_history[$btime]['service'] && '' !== $backup_history[$btime]['service'] && array('none') !== $backup_history[$btime]['service'])) {
2964
- $backup_history[$btime]['service'] = 'none';
2965
- $changes = true;
2966
- }
2967
- } else {
2968
- $backup_history[$btime]['service'] = 'none';
2969
- $changes = true;
2970
- }
2971
- }
2972
-
2973
- $backup_history[$btime][$type][$index] = $entry;
2974
- if ($fs > 0) $backup_history[$btime][$type.$itext.'-size'] = $fs;
2975
- $backup_history[$btime]['nonce'] = $nonce;
2976
- if (!empty($accepted_foreign)) $backup_history[$btime]['meta_foreign'] = $accepted_foreign;
2977
- }
2978
-
2979
- // Any found in remote storage that we did not previously know about?
2980
- // Compare $remotefiles with $known_files / $known_nonces, and adjust $backup_history
2981
- if (count($remotefiles) > 0) {
2982
-
2983
- // $backup_history[$btime]['nonce'] = $nonce
2984
- foreach ($remotefiles as $file => $services) {
2985
- if (!preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-([\-a-z]+)([0-9]+)?(\.(zip|gz|gz\.crypt))?$/i', $file, $matches)) continue;
2986
- $nonce = $matches[2];
2987
- $type = $matches[3];
2988
- if ('db' == $type) {
2989
- $index = 0;
2990
- $type .= !empty($matches[4]) ? $matches[4] : '';
2991
- } else {
2992
- $index = (empty($matches[4])) ? '0' : (max((int) $matches[4]-1, 0));
2993
- }
2994
- $itext = (0 == $index) ? '' : $index;
2995
- $btime2 = strtotime($matches[1]);
2996
- $btime = (!empty($gmt_offset)) ? $btime2 - $gmt_offset*3600 : $btime2;
2997
-
2998
- if (isset($known_nonces[$nonce])) $btime = $known_nonces[$nonce];
2999
- if ($btime <= 100) continue;
3000
- // Remember that at this point, we already know that the file is not known about locally
3001
- if (isset($backup_history[$btime])) {
3002
- if (!isset($backup_history[$btime]['service']) || ((is_array($backup_history[$btime]['service']) && $backup_history[$btime]['service'] !== $services) || is_string($backup_history[$btime]['service']) && (1 != count($services) || $services[0] !== $backup_history[$btime]['service']))) {
3003
- $changes = true;
3004
- $backup_history[$btime]['service'] = $services;
3005
- $backup_history[$btime]['nonce'] = $nonce;
3006
- }
3007
- if (!isset($backup_history[$btime][$type][$index])) {
3008
- $changes = true;
3009
- $backup_history[$btime][$type][$index] = $file;
3010
- $backup_history[$btime]['nonce'] = $nonce;
3011
- if (!empty($remotesizes[$file])) $backup_history[$btime][$type.$itext.'-size'] = $remotesizes[$file];
3012
- }
3013
- } else {
3014
- $changes = true;
3015
- $backup_history[$btime]['service'] = $services;
3016
- $backup_history[$btime][$type][$index] = $file;
3017
- $backup_history[$btime]['nonce'] = $nonce;
3018
- if (!empty($remotesizes[$file])) $backup_history[$btime][$type.$itext.'-size'] = $remotesizes[$file];
3019
- $backup_history[$btime]['native'] = false;
3020
- $messages['nonnative'] = array(
3021
- 'message' => __('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.', 'updraftplus'),
3022
- 'code' => 'nonnative',
3023
- 'desc' => '',
3024
- 'method' => ''
3025
- );
3026
- }
3027
-
3028
- }
3029
- }
3030
-
3031
- if ($changes) UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history);
3032
-
3033
- return $messages;
3034
-
3035
- }
3036
-
3037
  private function backup_finish($cancel_event, $do_cleanup, $allow_email, $resumption_no, $force_abort = false) {
3038
 
3039
  if (!empty($this->semaphore)) $this->semaphore->unlock();
@@ -3607,13 +3317,16 @@ class UpdraftPlus {
3607
 
3608
  }
3609
 
3610
- private function save_backup_history($backup_array) {
 
 
 
 
 
3611
  if (is_array($backup_array)) {
3612
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
3613
- $backup_history = (is_array($backup_history)) ? $backup_history : array();
3614
  $backup_array['nonce'] = $this->nonce;
3615
  $backup_array['service'] = $this->jobdata_get('service');
3616
-
3617
  $backup_array['service_instance_ids'] = array();
3618
 
3619
  // N.B. Though the saved 'service' option can have various forms (especially if upgrading from (very) old versions), in the jobdata, it is always an array.
@@ -3630,8 +3343,9 @@ class UpdraftPlus {
3630
  $remotesend_info = $this->jobdata_get('remotesend_info');
3631
  if (is_array($remotesend_info) && !empty($remotesend_info['url'])) $backup_array['remotesend_url'] = $remotesend_info['url'];
3632
  if (false != ($autobackup = $this->jobdata_get('is_autobackup', false))) $backup_array['autobackup'] = true;
3633
- $backup_history[$this->backup_time] = $backup_array;
3634
- UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history, false);
 
3635
  } else {
3636
  $this->log('Could not save backup history because we have no backup array. Backup probably failed.');
3637
  $this->log(__('Could not save backup history because we have no backup array. Backup probably failed.', 'updraftplus'), 'error');
@@ -3651,7 +3365,7 @@ class UpdraftPlus {
3651
 
3652
  foreach ($services as $method) {
3653
 
3654
- if ('none' === $method) continue;
3655
 
3656
  $call_method = 'UpdraftPlus_BackupModule_'.$method;
3657
 
@@ -3709,24 +3423,17 @@ class UpdraftPlus {
3709
 
3710
  }
3711
 
 
 
 
 
 
 
 
3712
  public function is_db_encrypted($file) {
3713
  return preg_match('/\.crypt$/i', $file);
3714
  }
3715
 
3716
- public function get_backup_history($timestamp = false) {
3717
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
3718
- // The line below actually *introduces* a race condition
3719
- // global $wpdb;
3720
- // $backup_history = @unserialize($wpdb->get_var($wpdb->prepare("SELECT option_value from $wpdb->options WHERE option_name='updraft_backup_history'")));
3721
- if (is_array($backup_history)) {
3722
- krsort($backup_history); // reverse sort so earliest backup is last on the array. Then we can array_pop.
3723
- } else {
3724
- $backup_history = array();
3725
- }
3726
- if (!$timestamp) return $backup_history;
3727
- return (isset($backup_history[$timestamp])) ? $backup_history[$timestamp] : array();
3728
- }
3729
-
3730
  public function terminate_due_to_activity($file, $time_now, $time_mod, $increase_resumption = true) {
3731
  // We check-in, to avoid 'no check in last time!' detectors firing
3732
  $this->record_still_alive();
@@ -3978,10 +3685,10 @@ class UpdraftPlus {
3978
  $old_client_id = (empty($opts['settings'][$instance_id]['clientid'])) ? '' : $opts['settings'][$instance_id]['clientid'];
3979
  if (!empty($opts['settings'][$instance_id]['token']) && $old_client_id != $storage_options['clientid']) {
3980
  include_once(UPDRAFTPLUS_DIR.'/methods/googledrive.php');
3981
- add_action('http_request_args', array($this, 'modify_http_options'));
3982
  $googledrive = new UpdraftPlus_BackupModule_googledrive();
3983
  $googledrive->gdrive_auth_revoke(false);
3984
- remove_action('http_request_args', array($this, 'modify_http_options'));
3985
  $opts['settings'][$instance_id]['token'] = '';
3986
  unset($opts['settings'][$instance_id]['ownername']);
3987
  }
@@ -4037,10 +3744,10 @@ class UpdraftPlus {
4037
  }
4038
  if (!empty($opts['settings'][$instance_id]['token']) && $old_client_id != $google['settings'][$instance_id]['clientid']) {
4039
  include_once(UPDRAFTPLUS_DIR.'/methods/googlecloud.php');
4040
- add_action('http_request_args', array($this, 'modify_http_options'));
4041
  $googlecloud = new UpdraftPlus_BackupModule_googlecloud();
4042
  $googlecloud->gcloud_auth_revoke(false);
4043
- remove_action('http_request_args', array($this, 'modify_http_options'));
4044
  $opts['settings'][$instance_id]['token'] = '';
4045
  unset($opts['settings'][$instance_id]['ownername']);
4046
  }
@@ -4269,7 +3976,7 @@ class UpdraftPlus {
4269
  public function spool_file($fullpath, $encryption = '') {
4270
  @set_time_limit(900);
4271
 
4272
- if (file_exists($fullpath)) {
4273
 
4274
  // Prevent any debug output
4275
  // Don't enable this line - it causes 500 HTTP errors in some cases/hosts on some large files, for unknown reason
@@ -4515,7 +4222,7 @@ class UpdraftPlus {
4515
  $warn = array();
4516
  $err = array();
4517
  $info = array();
4518
-
4519
  $wp_version = $this->get_wordpress_version();
4520
  global $wpdb;
4521
 
@@ -4525,7 +4232,7 @@ class UpdraftPlus {
4525
  // This attempts to raise the maximum packet size. This can't be done within the session, only globally. Therefore, it has to be done before the session starts; in our case, during the pre-analysis.
4526
  $this->get_max_packet_size();
4527
 
4528
- $backup = $this->get_backup_history($timestamp);
4529
  if (!isset($backup['nonce']) || !isset($backup['db'])) return array($mess, $warn, $err, $info);
4530
 
4531
  $db_file = (is_string($backup['db'])) ? $updraft_dir.'/'.$backup['db'] : $updraft_dir.'/'.$backup['db'][0];
@@ -4555,8 +4262,6 @@ class UpdraftPlus {
4555
  $err[] = __('Decryption failed. The most likely cause is that you used the wrong key.', 'updraftplus');
4556
  return array($mess, $warn, $err, $info);
4557
  }
4558
-
4559
-
4560
  }
4561
 
4562
  // Even the empty schema when gzipped comes to 1565 bytes; a blank WP 3.6 install at 5158. But we go low, in case someone wants to share single tables.
@@ -4587,6 +4292,7 @@ class UpdraftPlus {
4587
  $old_php_version = '';
4588
 
4589
  $tables_found = array();
 
4590
 
4591
  // TODO: If the backup is the right size/checksum, then we could restore the $line <= 100 in the 'while' condition and not bother scanning the whole thing? Or better: sort the core tables to be first so that this usually terminates early
4592
 
@@ -4603,7 +4309,13 @@ class UpdraftPlus {
4603
  $dbscan_timeout = (defined('UPDRAFTPLUS_DBSCAN_TIMEOUT') && is_numeric(UPDRAFTPLUS_DBSCAN_TIMEOUT)) ? UPDRAFTPLUS_DBSCAN_TIMEOUT : $default_dbscan_timeout;
4604
  @set_time_limit($dbscan_timeout);
4605
 
4606
- while ((($is_plain && !feof($dbhandle)) || (!$is_plain && !gzeof($dbhandle))) && ($line<100 || (!$header_only && count($wanted_tables)>0))) {
 
 
 
 
 
 
4607
  $line++;
4608
  // Up to 1MB
4609
  $buffer = ($is_plain) ? rtrim(fgets($dbhandle, 1048576)) : rtrim(gzgets($dbhandle, 1048576));
@@ -4617,8 +4329,24 @@ class UpdraftPlus {
4617
  if (untrailingslashit(site_url()) != $old_siteurl) {
4618
  if (!$migration_warning) {
4619
  $migration_warning = true;
4620
- $powarn = apply_filters('updraftplus_dbscan_urlchange', '<a href="https://updraftplus.com/shop/migrator/">'.__('This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work.', 'updraftplus').'</a>', $old_siteurl, $res);
4621
- if (!empty($powarn)) $warn[] = $powarn;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4622
  }
4623
  // Explicitly set it, allowing the consumer to detect when the result was unknown
4624
  $info['same_url'] = false;
@@ -4706,21 +4434,53 @@ class UpdraftPlus {
4706
  }
4707
  if (substr($buffer, -1, 1) != ';') $processing_create = true;
4708
  } elseif ($processing_create) {
 
 
 
4709
  if (substr($buffer, -1, 1) == ';') $processing_create = false;
4710
  static $mysql_version_warned = false;
4711
  if (!$mysql_version_warned && version_compare($db_version, '5.2.0', '<') && preg_match('/(CHARSET|COLLATE)[= ]utf8mb4/', $buffer)) {
4712
  $mysql_version_warned = true;
4713
- $err[] = sprintf(__('Error: %s', 'updraftplus'), sprintf(__('The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on.', 'updraftplus'), $db_version).' '.__('You must upgrade MySQL to be able to use this database.', 'updraftplus'));
4714
  }
4715
  }
4716
  }
4717
-
4718
  if ($is_plain) {
4719
  @fclose($dbhandle);
4720
  } else {
4721
  @gzclose($dbhandle);
4722
  }
4723
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4724
  /* $blog_tables = "CREATE TABLE $wpdb->terms (
4725
  CREATE TABLE $wpdb->term_taxonomy (
4726
  CREATE TABLE $wpdb->term_relationships (
@@ -4774,9 +4534,51 @@ CREATE TABLE $wpdb->signups (
4774
  // unlink($decrypted_file['fullpath']);
4775
 
4776
  return array($mess, $warn, $err, $info);
4777
-
4778
  }
4779
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4780
  private function gzopen_for_read($file, &$warn, &$err) {
4781
  if (!function_exists('gzopen') || !function_exists('gzread')) {
4782
  $missing = '';
@@ -5007,6 +4809,26 @@ CREATE TABLE $wpdb->signups (
5007
  return $db_tables_array;
5008
  }
5009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5010
  /**
5011
  * Returns the member of the array with key (int)0, as a new array. This function is used as a callback for array_map().
5012
  *
72
  fclose($fp);
73
  }
74
 
75
+ if (!class_exists('UpdraftPlus_Backup_History')) include_once(UPDRAFTPLUS_DIR.'/includes/class-backup-history.php');
76
+
77
  // Create admin page
78
  add_action('init', array($this, 'handle_url_actions'));
79
  // Run earlier than default - hence earlier than other components
390
 
391
  }
392
 
393
+ /**
394
+ * WP action http_api_curl
395
+ *
396
+ * @param Resource $handle A curl handle returned by curl_init()
397
+ *
398
+ * @return the handle (having potentially had some options set upon it)
399
+ */
400
+ public function http_api_curl($handle) {
401
+ if (defined('UPDRAFTPLUS_IPV4_ONLY') && UPDRAFTPLUS_IPV4_ONLY) {
402
+ curl_setopt($handle, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
403
+ }
404
+ return $handle;
405
+ }
406
+
407
+ /**
408
+ * Used as a central location (to avoid repetition) to register or de-register hooks into the WP HTTP API
409
+ *
410
+ * @param Boolean $register - true to register, false to de-register
411
+ */
412
+ public function register_wp_http_option_hooks($register = true) {
413
+ if ($register) {
414
+ add_filter('http_request_args', array($this, 'modify_http_options'));
415
+ add_action('http_api_curl', array($this, 'http_api_curl'));
416
+ } else {
417
+ remove_filter('http_request_args', array($this, 'modify_http_options'));
418
+ remove_action('http_api_curl', array($this, 'http_api_curl'));
419
+ }
420
+ }
421
+
422
+ /**
423
+ * Used as a WordPress options filter (http_request_args)
424
+ *
425
+ * @param Array $opts - existing options
426
+ *
427
+ * @return Array - modified options
428
+ */
429
  public function modify_http_options($opts) {
430
 
431
  if (!is_array($opts)) return $opts;
458
  $call_class = "UpdraftPlus_BackupModule_".$method;
459
  $call_method = "action_".$matches[2];
460
  $backup_obj = new $call_class;
461
+ $this->register_wp_http_option_hooks();
462
  try {
463
  if (method_exists($backup_obj, $call_method)) {
464
  call_user_func(array($backup_obj, $call_method));
466
  } catch (Exception $e) {
467
  $this->log(sprintf(__("%s error: %s", 'updraftplus'), $method, $e->getMessage().' ('.$e->getCode().')', 'error'));
468
  }
469
+ $this->register_wp_http_option_hooks(false);
470
  } elseif (isset($_GET['page']) && 'updraftplus' == $_GET['page'] && 'downloadlog' == $_GET['action'] && isset($_GET['updraftplus_backup_nonce']) && preg_match("/^[0-9a-f]{12}$/", $_GET['updraftplus_backup_nonce']) && UpdraftPlus_Options::user_can_manage()) {
471
  // No WordPress nonce is needed here or for the next, since the backup is already nonce-based
472
  $updraft_dir = $this->backups_dir_location();
499
  $backup_timestamp = $_GET['backup_timestamp'];
500
  $what = $_GET['what'];
501
 
502
+ $backup_set = UpdraftPlus_Backup_History::get_history($backup_timestamp);
503
 
504
  $filename = null;
505
+ if (!empty($backup_set)) {
506
  if ('db' != substr($what, 0, 2)) {
507
  $backupable_entities = $this->get_backupable_file_entities();
508
  if (!isset($backupable_entities[$what])) $filename = false;
509
  }
510
+ if (false !== $filename && isset($backup_set[$what])) {
511
+ if (is_string($backup_set[$what]) && 0 == $findex) {
512
+ $filename = $backup_set[$what];
513
+ } elseif (isset($backup_set[$what][$findex])) {
514
+ $filename = $backup_set[$what][$findex];
515
  }
516
  }
517
  }
814
  * Logs the given line, adding (relative) time stamp and newline
815
  * Note these subtleties of log handling:
816
  * - Messages at level 'error' are not logged to file - it is assumed that a separate call to log() at another level will take place. This is because at level 'error', messages are translated; whereas the log file is for developers who may not know the translated language. Messages at level 'error' are for the user.
817
+ * - Messages at level 'error' do not persist through the job (they are only saved with save_backup_to_history(), and never restored from there - so only the final save_backup_to_history() errors
818
  * persist); we presume that either a) they will be cleared on the next attempt, or b) they will occur again on the final attempt (at which point they will go to the user). But...
819
  * - messages at level 'warning' persist. These are conditions that are unlikely to be cleared, not-fatal, but the user should be informed about. The $uniq_id field (which should not be numeric) can then be used for warnings that should only be logged once
820
  * $skip_dblog = true is suitable when there's a risk of excessive logging, and the information is not important for the user to see in the browser on the settings page
1705
 
1706
  if (empty($history[$entity])) return;
1707
 
1708
+ // PHP 7.2+ throws a warning if you try to count() a string
1709
+ $how_many = is_string($history[$entity]) ? 1 : count($history[$entity]);
1710
+
1711
  if ($smaller) {
1712
+ $pfiles = "<strong>".$description." (".sprintf(__('files: %s', 'updraftplus'), $how_many).")</strong><br>\n";
1713
  } else {
1714
+ $pfiles = "<h3>".$description." (".sprintf(__('files: %s', 'updraftplus'), $how_many).")</h3>\n\n";
1715
  }
1716
 
1717
  $pfiles .= '<ul>';
1806
 
1807
  }
1808
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1809
  public function php_error_to_logline($errno, $errstr, $errfile, $errline) {
1810
  switch ($errno) {
1811
  case 1:
1893
  $runs_started = array();
1894
  $time_now = microtime(true);
1895
 
1896
+ UpdraftPlus_Backup_History::always_get_from_db();
1897
 
1898
  // Restore state
1899
  $resumption_extralog = '';
1912
 
1913
  $this->logfile_open($bnonce);
1914
 
1915
+ // Import existing warnings. The purpose of this is so that when save_backup_to_history() is called, it has a complete set - because job data expires quickly, whilst the warnings of the last backup run need to persist
1916
  if (is_array($warnings)) {
1917
  foreach ($warnings as $warning) {
1918
  $this->errors[] = array('level' => 'warning', 'message' => $warning);
2103
  // This save, if there was something, is then immediately picked up again
2104
  if (is_array($backup_array)) {
2105
  $this->log('Saving backup status to database (elements: '.count($backup_array).")");
2106
+ $this->save_backup_to_history($backup_array);
2107
  }
2108
 
2109
  // Switch of variable name is purely vestigial
2202
  }
2203
 
2204
  // This is done before cloud despatch, because we want a record of what *should* be in the backup. Whether it actually makes it there or not is not yet known.
2205
+ $this->save_backup_to_history($our_files);
2206
 
2207
  // Potentially encrypt the database if it is not already
2208
  if ('no' != $backup_database && isset($our_files[$tindex]) && !preg_match("/\.crypt$/", $our_files[$tindex])) {
2216
 
2217
  if ('no' != $backup_database && isset($our_files[$tindex]) && file_exists($updraft_dir.'/'.$our_files[$tindex])) {
2218
  $our_files[$tindex.'-size'] = filesize($updraft_dir.'/'.$our_files[$tindex]);
2219
+ $this->save_backup_to_history($our_files);
2220
  }
2221
 
2222
  }
2272
  // Save again (now that we have checksums)
2273
  $size_description = (false === $total_size) ? 'Unknown' : $this->convert_numeric_size_to_text($total_size);
2274
  $this->log("Saving backup history. Total backup size: $size_description");
2275
+ $this->save_backup_to_history($our_files);
2276
  do_action('updraft_final_backup_history', $our_files);
2277
 
2278
  // We finished; so, low memory was not a problem
2286
  $allow_email = false;
2287
  if ('begun' == $this->jobdata_get('prune')) {
2288
  // Begun, but not finished
2289
+ $this->log('Restarting backup prune operation');
2290
  $updraftplus_backup->do_prune_standalone();
2291
  $allow_email = true;
2292
  }
2744
 
2745
  }
2746
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2747
  private function backup_finish($cancel_event, $do_cleanup, $allow_email, $resumption_no, $force_abort = false) {
2748
 
2749
  if (!empty($this->semaphore)) $this->semaphore->unlock();
3317
 
3318
  }
3319
 
3320
+ /**
3321
+ * Save the backup information to the backup history during a running backup (adding information to the currently-running job)
3322
+ *
3323
+ * @param Array $backup_array - the backup history
3324
+ */
3325
+ private function save_backup_to_history($backup_array) {
3326
  if (is_array($backup_array)) {
3327
+
 
3328
  $backup_array['nonce'] = $this->nonce;
3329
  $backup_array['service'] = $this->jobdata_get('service');
 
3330
  $backup_array['service_instance_ids'] = array();
3331
 
3332
  // N.B. Though the saved 'service' option can have various forms (especially if upgrading from (very) old versions), in the jobdata, it is always an array.
3343
  $remotesend_info = $this->jobdata_get('remotesend_info');
3344
  if (is_array($remotesend_info) && !empty($remotesend_info['url'])) $backup_array['remotesend_url'] = $remotesend_info['url'];
3345
  if (false != ($autobackup = $this->jobdata_get('is_autobackup', false))) $backup_array['autobackup'] = true;
3346
+
3347
+ UpdraftPlus_Backup_History::save_backup($this->backup_time, $backup_array);
3348
+
3349
  } else {
3350
  $this->log('Could not save backup history because we have no backup array. Backup probably failed.');
3351
  $this->log(__('Could not save backup history because we have no backup array. Backup probably failed.', 'updraftplus'), 'error');
3365
 
3366
  foreach ($services as $method) {
3367
 
3368
+ if ('none' === $method || '' == $method) continue;
3369
 
3370
  $call_method = 'UpdraftPlus_BackupModule_'.$method;
3371
 
3423
 
3424
  }
3425
 
3426
+ /**
3427
+ * Indicate whether an indicated database backup file is encrypted or not, as indicated by the suffix
3428
+ *
3429
+ * @param String $file - the filename
3430
+ *
3431
+ * @return Boolean
3432
+ */
3433
  public function is_db_encrypted($file) {
3434
  return preg_match('/\.crypt$/i', $file);
3435
  }
3436
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3437
  public function terminate_due_to_activity($file, $time_now, $time_mod, $increase_resumption = true) {
3438
  // We check-in, to avoid 'no check in last time!' detectors firing
3439
  $this->record_still_alive();
3685
  $old_client_id = (empty($opts['settings'][$instance_id]['clientid'])) ? '' : $opts['settings'][$instance_id]['clientid'];
3686
  if (!empty($opts['settings'][$instance_id]['token']) && $old_client_id != $storage_options['clientid']) {
3687
  include_once(UPDRAFTPLUS_DIR.'/methods/googledrive.php');
3688
+ $this->register_wp_http_option_hooks();
3689
  $googledrive = new UpdraftPlus_BackupModule_googledrive();
3690
  $googledrive->gdrive_auth_revoke(false);
3691
+ $this->register_wp_http_option_hooks(false);
3692
  $opts['settings'][$instance_id]['token'] = '';
3693
  unset($opts['settings'][$instance_id]['ownername']);
3694
  }
3744
  }
3745
  if (!empty($opts['settings'][$instance_id]['token']) && $old_client_id != $google['settings'][$instance_id]['clientid']) {
3746
  include_once(UPDRAFTPLUS_DIR.'/methods/googlecloud.php');
3747
+ $this->register_wp_http_option_hooks();
3748
  $googlecloud = new UpdraftPlus_BackupModule_googlecloud();
3749
  $googlecloud->gcloud_auth_revoke(false);
3750
+ $this->register_wp_http_option_hooks(false);
3751
  $opts['settings'][$instance_id]['token'] = '';
3752
  unset($opts['settings'][$instance_id]['ownername']);
3753
  }
3976
  public function spool_file($fullpath, $encryption = '') {
3977
  @set_time_limit(900);
3978
 
3979
+ if (file_exists($fullpath) && filesize($fullpath) > 0) {
3980
 
3981
  // Prevent any debug output
3982
  // Don't enable this line - it causes 500 HTTP errors in some cases/hosts on some large files, for unknown reason
4222
  $warn = array();
4223
  $err = array();
4224
  $info = array();
4225
+
4226
  $wp_version = $this->get_wordpress_version();
4227
  global $wpdb;
4228
 
4232
  // This attempts to raise the maximum packet size. This can't be done within the session, only globally. Therefore, it has to be done before the session starts; in our case, during the pre-analysis.
4233
  $this->get_max_packet_size();
4234
 
4235
+ $backup = UpdraftPlus_Backup_History::get_history($timestamp);
4236
  if (!isset($backup['nonce']) || !isset($backup['db'])) return array($mess, $warn, $err, $info);
4237
 
4238
  $db_file = (is_string($backup['db'])) ? $updraft_dir.'/'.$backup['db'] : $updraft_dir.'/'.$backup['db'][0];
4262
  $err[] = __('Decryption failed. The most likely cause is that you used the wrong key.', 'updraftplus');
4263
  return array($mess, $warn, $err, $info);
4264
  }
 
 
4265
  }
4266
 
4267
  // Even the empty schema when gzipped comes to 1565 bytes; a blank WP 3.6 install at 5158. But we go low, in case someone wants to share single tables.
4292
  $old_php_version = '';
4293
 
4294
  $tables_found = array();
4295
+ $db_charsets_found = array();
4296
 
4297
  // TODO: If the backup is the right size/checksum, then we could restore the $line <= 100 in the 'while' condition and not bother scanning the whole thing? Or better: sort the core tables to be first so that this usually terminates early
4298
 
4309
  $dbscan_timeout = (defined('UPDRAFTPLUS_DBSCAN_TIMEOUT') && is_numeric(UPDRAFTPLUS_DBSCAN_TIMEOUT)) ? UPDRAFTPLUS_DBSCAN_TIMEOUT : $default_dbscan_timeout;
4310
  @set_time_limit($dbscan_timeout);
4311
 
4312
+ // We limit the time that we spend scanning the file for character sets
4313
+ $db_charset_scan_timeout = (defined('UPDRAFTPLUS_DB_CHARSET_SCAN_TIMEOUT') && is_numeric(UPDRAFTPLUS_DB_CHARSET_SCAN_TIMEOUT)) ? UPDRAFTPLUS_DB_CHARSET_SCAN_TIMEOUT : 10;
4314
+ $charset_scan_start_time = microtime(true);
4315
+ $db_supported_character_sets_res = $GLOBALS['wpdb']->get_results('SHOW CHARACTER SET', OBJECT_K);
4316
+ $db_supported_character_sets = (null !== $db_supported_character_sets_res) ? $db_supported_character_sets_res : array();
4317
+ $db_charsets_found = array();
4318
+ while ((($is_plain && !feof($dbhandle)) || (!$is_plain && !gzeof($dbhandle))) && ($line<100 || (!$header_only && count($wanted_tables)>0) || ((microtime(true) - $charset_scan_start_time) < $db_charset_scan_timeout && !empty($db_supported_character_sets)))) {
4319
  $line++;
4320
  // Up to 1MB
4321
  $buffer = ($is_plain) ? rtrim(fgets($dbhandle, 1048576)) : rtrim(gzgets($dbhandle, 1048576));
4329
  if (untrailingslashit(site_url()) != $old_siteurl) {
4330
  if (!$migration_warning) {
4331
  $migration_warning = true;
4332
+ if ($this->normalise_url($old_siteurl) == $this->normalise_url(site_url()) && !class_exists('UpdraftPlus_Addons_Migrator')) {
4333
+ $old_siteurl_parsed = parse_url($old_siteurl);
4334
+ $actual_siteurl_parsed = parse_url(site_url());
4335
+ if ((stripos($old_siteurl_parsed['host'], 'www.') === 0 && stripos($actual_siteurl_parsed['host'], 'www.') !== 0) || (stripos($old_siteurl_parsed['host'], 'www.') !== 0 && stripos($actual_siteurl_parsed['host'], 'www.') === 0)) {
4336
+ $warn[] = sprintf(__('The website address in the backup set (%s) is slightly different from that of the site now (%s). This is not expected to be a problem for restoring the site, as long as visits to the former address still reach the site.', 'updraftplus'), $old_siteurl, site_url());
4337
+ }
4338
+ if (('https' == $old_siteurl_parsed['scheme'] && 'http' == $actual_siteurl_parsed['scheme']) || ('http' == $old_siteurl_parsed['scheme'] && 'https' == $actual_siteurl_parsed['scheme'])) {
4339
+ $powarn_ssl = sprintf(__('This backup set is of this site, but at the time of the backup you were using %s, whereas the site now uses %s.', 'updraftplus'), $old_siteurl_parsed['scheme'], $actual_siteurl_parsed['scheme']);
4340
+ if ('https' == $old_siteurl_parsed['scheme']) {
4341
+ $powarn_ssl .= ' '.sprintf(__('This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https.', 'updraftplus'), '<a href="https://updraftplus.com/shop/migrator/">'.__('the migrator add-on', 'updraftplus').'</a>');
4342
+ } else {
4343
+ $powarn_ssl .= ' '.sprintf(__('As long as your web hosting allows http (i.e. non-SSL access) or will forward requests to https (which is almost always the case), this is no problem. If that is not yet set up, then you should set it up, or use %s so that the non-https links are automatically replaced.', 'updraftplus'), '<a href="https://updraftplus.com/shop/migrator/">'.__('the migrator add-on', 'updraftplus').'</a>');
4344
+ }
4345
+ $warn[] = $powarn_ssl;
4346
+ }
4347
+ } else {
4348
+ $warn[] = apply_filters('updraftplus_dbscan_urlchange', '<a href="https://updraftplus.com/shop/migrator/">'.__('This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work.', 'updraftplus').'</a>', $old_siteurl, $res);
4349
+ }
4350
  }
4351
  // Explicitly set it, allowing the consumer to detect when the result was unknown
4352
  $info['same_url'] = false;
4434
  }
4435
  if (substr($buffer, -1, 1) != ';') $processing_create = true;
4436
  } elseif ($processing_create) {
4437
+ if (!empty($db_supported_character_sets) && preg_match('/ CHARSET=([^\s;]+)/i', $buffer, $charset_match)) {
4438
+ $db_charsets_found[] = $charset_match[1];
4439
+ }
4440
  if (substr($buffer, -1, 1) == ';') $processing_create = false;
4441
  static $mysql_version_warned = false;
4442
  if (!$mysql_version_warned && version_compare($db_version, '5.2.0', '<') && preg_match('/(CHARSET|COLLATE)[= ]utf8mb4/', $buffer)) {
4443
  $mysql_version_warned = true;
4444
+ $err[] = sprintf(__('Error: %s', 'updraftplus'), sprintf(__('The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on.', 'updraftplus'), $db_version).' '.__('You must upgrade MySQL to be able to use this database.', 'updraftplus'));
4445
  }
4446
  }
4447
  }
 
4448
  if ($is_plain) {
4449
  @fclose($dbhandle);
4450
  } else {
4451
  @gzclose($dbhandle);
4452
  }
4453
+ if (!empty($db_supported_character_sets)) {
4454
+ $db_charsets_found_unique = array_unique($db_charsets_found);
4455
+ $db_unsupported_charset = array();
4456
+ $db_charset_forbidden = false;
4457
+ foreach ($db_charsets_found_unique as $db_charset) {
4458
+ if (!isset($db_supported_character_sets[$db_charset])) {
4459
+ $db_unsupported_charset[] = $db_charset;
4460
+ $db_charset_forbidden = true;
4461
+ }
4462
+ }
4463
+ if ($db_charset_forbidden) {
4464
+ $db_unsupported_charset_unique = array_unique($db_unsupported_charset);
4465
+ $warn[] = sprintf(_n("The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import.", "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import.", count($db_unsupported_charset_unique), 'updraftplus'), implode(', ', $db_unsupported_charset_unique)).' '.__('You can choose another suitable character set instead and continue with the restoration at your own risk.', 'updraftplus').' <a target="_blank" href="https://updraftplus.com/faqs/implications-changing-tables-character-set/">'.__('Go here for more information.', 'updraftplus').'</a>';
4466
+ $db_supported_character_sets = array_keys($db_supported_character_sets);
4467
+ $similar_type_charset = $this->get_matching_str_from_array_elems($db_unsupported_charset_unique, $db_supported_character_sets);
4468
+ if (empty($similar_type_charset)) {
4469
+ $row = $GLOBALS['wpdb']->get_row('show variables like "character_set_database"');
4470
+ $similar_type_charset = (null !== $row) ? $row->Value : '';
4471
+ }
4472
+ $charset_select_html = '<label>'.__('Your chosen character set to use instead:', 'updraftplus').'</label> ';
4473
+ $charset_select_html .= '<select name="updraft_restorer_charset" id="updraft_restorer_charset">';
4474
+ if (is_array($db_supported_character_sets)) {
4475
+ foreach ($db_supported_character_sets as $character_set) {
4476
+ $charset_select_html .= '<option value="'.esc_attr($character_set).'" '.selected($character_set, $similar_type_charset).'>'.esc_html($character_set).'</option>';
4477
+ }
4478
+ }
4479
+ $charset_select_html .= '</select>';
4480
+ if (empty($info['addui'])) $info['addui'] = '';
4481
+ $info['addui'] .= $charset_select_html;
4482
+ }
4483
+ }
4484
  /* $blog_tables = "CREATE TABLE $wpdb->terms (
4485
  CREATE TABLE $wpdb->term_taxonomy (
4486
  CREATE TABLE $wpdb->term_relationships (
4534
  // unlink($decrypted_file['fullpath']);
4535
 
4536
  return array($mess, $warn, $err, $info);
 
4537
  }
4538
+
4539
+ /**
4540
+ * Find matching string from $str_arr1 and $str_arr2
4541
+ *
4542
+ * @param array $str_arr1 array of strings
4543
+ * @param array $str_arr2 array of strings
4544
+ * @return string matching str which will be best for replacement
4545
+ */
4546
+ private function get_matching_str_from_array_elems($str_arr1, $str_arr2) {
4547
+ $matching_str = '';
4548
+ $str_partial_arr = array();
4549
+ foreach ($str_arr1 as $str1) {
4550
+ $str1_str_length = strlen($str1);
4551
+ $temp_str1_chars = str_split($str1);
4552
+ $temp_partial_str = '';
4553
+ // The flag is for whether non-numeric character passed after numeric character occurence in str1. For ex. str1 is utf8mb4, the flag wil be true when parsing m after utf8.
4554
+ $numeric_char_pass_flag = false;
4555
+ $char_position_in_str1 = 0;
4556
+ while ($char_position_in_str1 <= $str1_str_length) {
4557
+ if ($numeric_char_pass_flag && !is_numeric($temp_str1_chars[$char_position_in_str1])) {
4558
+ break;
4559
+ }
4560
+ if (is_numeric($temp_str1_chars[$char_position_in_str1])) {
4561
+ $numeric_char_pass_flag = true;
4562
+ }
4563
+ $temp_partial_str .= $temp_str1_chars[$char_position_in_str1];
4564
+ $char_position_in_str1++;
4565
+ }
4566
+ $str_partial_arr[] = $temp_partial_str;
4567
+ }
4568
+ foreach ($str_partial_arr as $str_partial) {
4569
+ if (!empty($matching_str)) {
4570
+ break;
4571
+ }
4572
+ foreach ($str_arr2 as $str2) {
4573
+ if (0 === stripos($str2, $str_partial)) {
4574
+ $matching_str = $str2;
4575
+ break;
4576
+ }
4577
+ }
4578
+ }
4579
+ return $matching_str;
4580
+ }
4581
+
4582
  private function gzopen_for_read($file, &$warn, &$err) {
4583
  if (!function_exists('gzopen') || !function_exists('gzread')) {
4584
  $missing = '';
4809
  return $db_tables_array;
4810
  }
4811
 
4812
+ /**
4813
+ * Produce a normalised version of a URL, useful for comparisons. This may produce a URL that does not actually reference the same location; its purpose is only to use in comparisons of two URLs that *both* go through this function.
4814
+ *
4815
+ * @param String $url - the URL
4816
+ *
4817
+ * @return String - normalised
4818
+ */
4819
+ public function normalise_url($url) {
4820
+ $parsed_descrip_url = parse_url($url);
4821
+ if (is_array($parsed_descrip_url)) {
4822
+ if (preg_match('/^www\./i', $parsed_descrip_url['host'], $matches)) $parsed_descrip_url['host'] = substr($parsed_descrip_url['host'], 4);
4823
+ $normalised_descrip_url = 'http://'.strtolower($parsed_descrip_url['host']);
4824
+ if (!empty($parsed_descrip_url['port'])) $normalised_descrip_url .= ':'.$parsed_descrip_url['port'];
4825
+ if (!empty($parsed_descrip_url['path'])) $normalised_descrip_url .= untrailingslashit($parsed_descrip_url['path']);
4826
+ } else {
4827
+ $normalised_descrip_url = untrailingslashit($url);
4828
+ }
4829
+ return $normalised_descrip_url;
4830
+ }
4831
+
4832
  /**
4833
  * Returns the member of the array with key (int)0, as a new array. This function is used as a callback for array_map().
4834
  *
css/admin.css CHANGED
@@ -1710,6 +1710,21 @@ div#updraft-wrap a {
1710
  cursor: pointer !important;
1711
  }
1712
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1713
  @media screen and (min-width: 670px) {
1714
 
1715
  .expertmode .advanced_settings_container .advanced_settings_menu {
1710
  cursor: pointer !important;
1711
  }
1712
 
1713
+ #updraftcentral_keys_table {
1714
+ display: none;
1715
+ }
1716
+
1717
+ .create_key_container {
1718
+ border: 1px solid;
1719
+ border-radius: 4px;
1720
+ padding: 0 0 6px 6px;
1721
+ margin-bottom: 8px;
1722
+ }
1723
+
1724
+ #updraftcentral_keycreate_mothership {
1725
+ margin-left: 24px;
1726
+ }
1727
+
1728
  @media screen and (min-width: 670px) {
1729
 
1730
  .expertmode .advanced_settings_container .advanced_settings_menu {
css/admin.min.css CHANGED
@@ -1,2 +1,2 @@
1
- .max-width-600{max-width:600px}.width-900{width:900px}.width-80{width:80%}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}input{border-radius:4px;line-height:1.42;border:1px solid #CCC;height:27px;padding:2px 6px;color:#555}input[type="text"]{font-size:14px}input[type="number"]{height:31px}select{border-radius:4px}.main-dashboard-buttons{border-width:4px;border-radius:12px;letter-spacing:0;font-size:17px;font-weight:bold;padding-left:.7em;padding-right:2em;padding:.3em 1em;line-height:1.7em;background:transparent;position:relative;border:2px solid;transition:all .2s;vertical-align:baseline;box-sizing:border-box;text-align:center;line-height:1.3em;margin-left:.3em;text-transform:none;line-height:1;text-decoration:none}.button-restore{border-color:#629ec0;color:#629ec0}.dashboard-main-sizing{border-width:4px;width:190px;line-height:1.7em}.button-restore:hover,.button-migrate:hover,.button-backup:hover,.button-view-log:hover,.button-mass-selectors:hover,.button-delete:hover,.button-entity-backup:hover,.udp-button-primary:hover{border-color:#df6926;color:#df6926}.button-migrate{color:#eea920;border-color:#eea920}.button-backup{border-color:#84ca1b;color:#84ca1b}.existing-backups-buttons{font-size:11px;line-height:1.4em;border-width:3px}.existing-backups-restore-buttons{font-size:11px;line-height:1.4em;border-width:3px}.button-delete{color:#e23900;border-color:#e23900;font-size:14px;line-height:1.4em;border-width:2px;margin-right:10px}.button-view-log,.button-mass-selectors{color:darkgrey;border-color:darkgrey;font-size:14px;line-height:1.4em;border-width:2px;margin-top:-1px}.button-view-log{width:120px}.button-existing-restore{font-size:14px;line-height:1.4em;border-width:2px;width:110px}.main-restore{margin-right:3%;margin-left:3%}.button-entity-backup{color:#555;border-color:#555;font-size:11px;line-height:1.4em;border-width:2px;margin-right:5px}.button-select-all{width:122px}.button-deselect{width:92px}#ud_massactions>.display-flex>.mass-selectors-margins{margin-right:-4px}.udp-button-primary{border-width:4px;color:#0073aa;border-color:#0073aa;font-size:14px;height:40px}#ud_massactions .button-delete{margin-right:0}.stored_local{border-radius:5px;background-color:#007fe7;padding:3px 5px 5px 5px;color:#FFF;font-size:75%}.form-table td.updraft_existingbackup_date{padding-bottom:5px}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label .clear-right{clear:right}.udp-logo-70{width:70px;height:70px;float:left;padding-right:25px}h3 .thank-you{margin-top:0}.ws_advert{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.dismiss-dash-notice{float:right;position:relative;top:-20px}#updraft_report_cell .updraft_reportbox{padding:8px;margin:8px 0;border:1px dotted;clear:left;float:left}#updraft_report_cell button.updraft_reportbox_delete{font-size:50%;float:right;padding:0 3px;position:relative;top:-4px;left:4px}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_checkbox{margin-top:4px}#updraft_report_cell .updraft_report_email{width:300px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#CCC}.updraft_settings_sectionheading{display:none}.updraft-backupentitybutton-disabled{background-color:transparent;border:0;color:#0074a2;text-decoration:underline;cursor:pointer;clear:none;float:left}.updraft-backupentitybutton{margin-left:8px}.updraft-bigbutton{padding:2px 0 !important;margin-right:14px !important;font-size:22px !important;min-height:32px;min-width:180px}.updraft_debugrow th{float:right;text-align:right;font-weight:bold;padding-right:8px;min-width:140px}.updraft_debugrow td{min-width:300px;vertical-align:bottom}#updraft_webdav_host_error{color:red}#updraft_zip_files_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}#updraft_zip_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}#updraft_zip_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}#updraft_zip_info_container p{margin:1px;padding-left:10px;font-size:14px}#updraft_zip_download_item{display:none;color:#0073aa;padding-left:10px}#updraft_zip_download_notice{padding-left:10px}#updraft_zip_files_jstree_container{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;height:300px;width:100%;border:1px dotted;margin-bottom:5px}#updraft_jstree_buttons{position:absolute;top:0;right:0}#updraft_jstree_container{height:100%;width:100%;overflow:auto}#updraft_more_files_container button{height:22px;line-height:20px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete{cursor:pointer;color:red;font-size:23px !important}.updraftplus-morefiles-row-edit{cursor:pointer;font-size:24px !important}#updraft-wrap .form-table th{width:230px}.updraftplus-remove{background-color:#c00000;border:1px solid #c00000;height:22px;padding:4px 3px 0 3px;margin-right:6px}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{background-color:#FFF;color:#000;border:1px solid #000;height:26px;padding:0;margin:0 4px 0 0;border-radius:3px;float:left}.updraft-viewlogdiv input,.updraft-viewlogdiv a{border:0;background-color:transparent;color:#000;margin:0;padding:3px 4px;font-size:16px;line-height:26px}.updraft-viewlogdiv:hover{background-color:#000;color:#FFF;border:1px solid #FFF;cursor:pointer}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.updraftplus-remove a{color:white;padding:4px 4px 0 4px}.updraftplus-remove:hover{background-color:white;border:1px solid #c00000}.updraftplus-remove a:hover{color:#c00000}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file{padding:5px;background:#ececec;border:solid 1px #CCC;margin:4px 0}ul.updraft_premium_description_list{list-style:disc inside}ul.updraft_premium_description_list li{display:inline}ul.updraft_premium_description_list li::after{content:" | "}ul.updraft_premium_description_list li.last::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraft_feat_table,.updraft_feat_th,.updraft_feat_table td{border:1px solid black;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:16px}.updraft_feat_table h4{margin:5px 0}.updraft_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.updraft_feat_table .dashicons-yes,.updraft_feat_table .updraft-yes{color:green}.updraft_feat_table .dashicons-no-alt,.updraft_feat_table .updraft-no{color:red}.updraft_tick_cell{text-align:center}.updraft_tick_cell img{margin:4px 0;height:24px}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#f6a828;height:5px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}tr.updraftplusmethod h3{margin:0}#updraft_retain_db_rules .updraft_retain_rules_delete,#updraft_retain_files_rules .updraft_retain_rules_delete{cursor:pointer;color:red;font-size:120%;font-weight:bold;border:0;border-radius:3px;padding:2px;margin:0 6px}#updraft_retain_db_rules .updraft_retain_rules_delete:hover,#updraft_retain_files_rules .updraft_retain_rules_delete:hover{cursor:pointer;color:white;background:red}#updraft_backup_started{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.next-backup .updraft_all-files{color:blue;margin:0;padding:2px 0 0 0}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.premium-upgrade-prompt{font-size:115%}.updraft_feat_table{margin-top:30px}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_lastlogmessagerow .last-message{padding-top:20px;display:block}.updraft_simplepie{vertical-align:top}.download-backups{margin-top:8px}.download-backups .updraft_download_button{margin-right:6px;margin-top:4px}.download-backups .choose-components-button{font-size:16px}.download-backups .ud-whitespace-warning{background-color:pink;padding:8px;margin:4px;border:1px dotted}.download-backups .ul{list-style:none inside;max-width:800px;margin-top:6px;margin-bottom:12px}#updraft-plupload-modal{width:75%;margin:16px;margin-left:100px}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:70%}.ud_downloadstatus{padding:10px;background:#f1f1f1}#ud_massactions{padding:14px;position:fixed;right:25%;top:25%;border:2px solid;border-radius:4px;background:#f1f1f1;float:right}#ud_massactions .updraftplus-remove{clear:left;font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv{font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:12px}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}#updraft_restorer_dboptions{padding:12px;margin:8px 0 4px 0;border:dashed 1px}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraft_debugrow th{vertical-align:top;padding-top:6px}.expertmode p{font-size:125%}.expertmode .call-wp-action{width:300px;height:22px}.updraftplus-lock-advert{clear:left;max-width:600px}.uncompressed-data{clear:left;max-width:600px}.delete-old-directories{padding:8px;padding-bottom:12px}.active-jobs{min-width:480px;min-height:48px;text-align:center;margin-top:4px;padding:8px;border:1px solid;float:left;clear:left}.job-id{min-width:480px;margin-top:4px;padding:8px;border:1px solid;clear:left;float:left}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#f6a828}.curstage{border-radius:4px;margin-top:8px;padding-top:4px;border:1px solid #AAA;width:100%;height:22px;position:relative;text-align:center;font-style:italic}.retain-files{width:48px}.backup-interval-description tr td div{max-width:670px}#updraft-manualdecrypt-modal{width:85%;margin:6px;margin-left:100px}.directory-permissions{font-size:110%;font-weight:bold}.double-warning{border:1px solid;padding:6px}.raw-backup-info{font-style:italic;font-weight:bold;font-size:120%}.updraft_existingbackup_date{width:22%;max-width:140px}.existing-backups-table{margin-top:20px;margin-left:20px;width:80%}.tr-bottom-4{margin-bottom:4px}.form-table .backup-date{width:172px;padding:0;padding-left:15px}.form-table .backup-data{width:426px;padding:0;padding-left:15px}.form-table .updraft_backup_actions{width:272px;padding:0 0 10px 15px}.existing-date{box-sizing:border-box;max-width:140px;width:25%}.line-break-tr{height:2px;padding:1px;margin:0}.line-break-td{margin:0;padding:0}.td-line-color{height:2px;background-color:#888}.raw-backup{max-width:140px}.existing-backups-actions{padding:1px;margin:0}.existing-backups-border{height:2px;padding:1px;margin:0}.existing-backups-border>td{margin:0;padding:0}.existing-backups-border>div{height:2px;background-color:#AAA}.updraft_existing_backup_date{max-width:140px}.restore-button{margin-right:6px;float:left;clear:none}.updraftplus-remove{font-size:16px;text-align:center;border-radius:4px}.before-restore-button{padding:1px;margin:0}.table-separator-tr{height:2px;padding:1px;margin:0}.table-separator-td{margin:0;padding:0}.end-of-table-div{height:2px;background-color:#AAA}.last-backup-job{padding-top:3% !important}.line-height-03{line-height:.3 !important}.line-height-13{line-height:1.3 !important}.line-height-23{line-height:2.3 !important}#updraft_diskspaceused{color:#df6926}.updraft_premium_description_list{text-align:left}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.job-id{margin:0 auto;width:20%}.updraft_all-files{color:#df6926}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}.dashicons{line-height:inherit;font-size:inherit}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important;padding-bottom:20px}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option{float:left;width:33%;text-align:center;padding-top:20px}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3{margin-top:5px !important}.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools{display:none}.expertmode .advanced_settings_container .advanced_settings_content .site_info{display:block}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:inline-block;cursor:pointer;padding:5px;color:#000}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text{font-size:16px}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover{background-color:#eaeaea}.expertmode .advanced_settings_container .advanced_settings_menu .active{background-color:#3498db;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_menu .active:hover{background-color:#72c5fd;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_content input#import_settings{height:auto !important}div#updraft-wrap a{cursor:pointer !important}@media screen and (min-width:670px){.expertmode .advanced_settings_container .advanced_settings_menu{float:left;width:215px;border-right:1px solid #ccc;border-bottom:0}.expertmode .advanced_settings_container .advanced_settings_content{padding-left:10px;padding-top:0}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:block}}
2
  /*# sourceMappingURL=admin.min.css.map */
1
+ .max-width-600{max-width:600px}.width-900{width:900px}.width-80{width:80%}.no-decoration{text-decoration:none}.bold{font-weight:bold}.center-align-td{text-align:center}.remove-padding{padding:0 !important}.updraft-text-center{text-align:center}.autobackup{padding:6px;margin:8px 0}ul .disc{list-style:disc inside}.dashicons-log-fix{display:inherit}input{border-radius:4px;line-height:1.42;border:1px solid #CCC;height:27px;padding:2px 6px;color:#555}input[type="text"]{font-size:14px}input[type="number"]{height:31px}select{border-radius:4px}.main-dashboard-buttons{border-width:4px;border-radius:12px;letter-spacing:0;font-size:17px;font-weight:bold;padding-left:.7em;padding-right:2em;padding:.3em 1em;line-height:1.7em;background:transparent;position:relative;border:2px solid;transition:all .2s;vertical-align:baseline;box-sizing:border-box;text-align:center;line-height:1.3em;margin-left:.3em;text-transform:none;line-height:1;text-decoration:none}.button-restore{border-color:#629ec0;color:#629ec0}.dashboard-main-sizing{border-width:4px;width:190px;line-height:1.7em}.button-restore:hover,.button-migrate:hover,.button-backup:hover,.button-view-log:hover,.button-mass-selectors:hover,.button-delete:hover,.button-entity-backup:hover,.udp-button-primary:hover{border-color:#df6926;color:#df6926}.button-migrate{color:#eea920;border-color:#eea920}.button-backup{border-color:#84ca1b;color:#84ca1b}.existing-backups-buttons{font-size:11px;line-height:1.4em;border-width:3px}.existing-backups-restore-buttons{font-size:11px;line-height:1.4em;border-width:3px}.button-delete{color:#e23900;border-color:#e23900;font-size:14px;line-height:1.4em;border-width:2px;margin-right:10px}.button-view-log,.button-mass-selectors{color:darkgrey;border-color:darkgrey;font-size:14px;line-height:1.4em;border-width:2px;margin-top:-1px}.button-view-log{width:120px}.button-existing-restore{font-size:14px;line-height:1.4em;border-width:2px;width:110px}.main-restore{margin-right:3%;margin-left:3%}.button-entity-backup{color:#555;border-color:#555;font-size:11px;line-height:1.4em;border-width:2px;margin-right:5px}.button-select-all{width:122px}.button-deselect{width:92px}#ud_massactions>.display-flex>.mass-selectors-margins{margin-right:-4px}.udp-button-primary{border-width:4px;color:#0073aa;border-color:#0073aa;font-size:14px;height:40px}#ud_massactions .button-delete{margin-right:0}.stored_local{border-radius:5px;background-color:#007fe7;padding:3px 5px 5px 5px;color:#FFF;font-size:75%}.form-table td.updraft_existingbackup_date{padding-bottom:5px}span#updraft_lastlogcontainer{word-break:break-all}.stored_icon{height:1.3em;position:relative;top:.2em}.backup_date_label .clear-right{clear:right}.udp-logo-70{width:70px;height:70px;float:left;padding-right:25px}h3 .thank-you{margin-top:0}.ws_advert{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.dismiss-dash-notice{float:right;position:relative;top:-20px}#updraft_report_cell .updraft_reportbox{padding:8px;margin:8px 0;border:1px dotted;clear:left;float:left}#updraft_report_cell button.updraft_reportbox_delete{font-size:50%;float:right;padding:0 3px;position:relative;top:-4px;left:4px}#updraft-navtab-settings-content .updraft-test-button{font-size:18px !important}#updraft_report_cell .updraft_report_checkbox{margin-top:4px}#updraft_report_cell .updraft_report_email{width:300px}#updraft_report_cell .updraft_report_another_p{clear:left}#updraft-navtab-settings-content table.form-table p{max-width:700px}#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected{background-color:#CCC}.updraft_settings_sectionheading{display:none}.updraft-backupentitybutton-disabled{background-color:transparent;border:0;color:#0074a2;text-decoration:underline;cursor:pointer;clear:none;float:left}.updraft-backupentitybutton{margin-left:8px}.updraft-bigbutton{padding:2px 0 !important;margin-right:14px !important;font-size:22px !important;min-height:32px;min-width:180px}.updraft_debugrow th{float:right;text-align:right;font-weight:bold;padding-right:8px;min-width:140px}.updraft_debugrow td{min-width:300px;vertical-align:bottom}#updraft_webdav_host_error{color:red}#updraft_zip_files_jstree .jstree-container-ul>.jstree-node,#updraft_more_files_jstree .jstree-container-ul>.jstree-node{background:transparent}#updraft_zip_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-open>.jstree-ocl{background-position:-36px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-closed>.jstree-ocl{background-position:-4px -4px}#updraft_zip_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl,#updraft_more_files_jstree .jstree-container-ul>.jstree-leaf>.jstree-ocl{background:transparent}#updraft_zip_files_container{position:relative;height:450px;overflow:none}#updraft_zip_info_container{position:relative;height:auto;width:100%;border:1px dotted;margin-bottom:5px}#updraft_zip_info_container p{margin:1px;padding-left:10px;font-size:14px}#updraft_zip_download_item{display:none;color:#0073aa;padding-left:10px}#updraft_zip_download_notice{padding-left:10px}#updraft_zip_files_jstree_container{position:relative;border:1px dotted;height:80%;width:100%;overflow:auto}#updraft_more_files_container{position:relative;display:none;height:300px;width:100%;border:1px dotted;margin-bottom:5px}#updraft_jstree_buttons{position:absolute;top:0;right:0}#updraft_jstree_container{height:100%;width:100%;overflow:auto}#updraft_more_files_container button{height:22px;line-height:20px}#updraft_jstree_confirm,#updraft_jstree_cancel{display:none}.updraftplus-morefiles-row-delete{cursor:pointer;color:red;font-size:23px !important}.updraftplus-morefiles-row-edit{cursor:pointer;font-size:24px !important}#updraft-wrap .form-table th{width:230px}.updraftplus-remove{background-color:#c00000;border:1px solid #c00000;height:22px;padding:4px 3px 0 3px;margin-right:6px}.updraft-viewlogdiv form{margin:0;padding:0}.updraft-viewlogdiv{background-color:#FFF;color:#000;border:1px solid #000;height:26px;padding:0;margin:0 4px 0 0;border-radius:3px;float:left}.updraft-viewlogdiv input,.updraft-viewlogdiv a{border:0;background-color:transparent;color:#000;margin:0;padding:3px 4px;font-size:16px;line-height:26px}.updraft-viewlogdiv:hover{background-color:#000;color:#FFF;border:1px solid #FFF;cursor:pointer}.updraft-viewlogdiv input:hover,.updraft-viewlogdiv a:hover{color:#FFF;cursor:pointer}.updraftplus-remove a{color:white;padding:4px 4px 0 4px}.updraftplus-remove:hover{background-color:white;border:1px solid #c00000}.updraftplus-remove a:hover{color:#c00000}.drag-drop #drag-drop-area2{border:4px dashed #DDD;height:200px}#drag-drop-area2 .drag-drop-inside{margin:36px auto 0;width:350px}#filelist,#filelist2{width:100%}#filelist .file,#filelist2 .file,.ud_downloadstatus .file,#ud_downloadstatus2 .file{padding:5px;background:#ececec;border:solid 1px #CCC;margin:4px 0}ul.updraft_premium_description_list{list-style:disc inside}ul.updraft_premium_description_list li{display:inline}ul.updraft_premium_description_list li::after{content:" | "}ul.updraft_premium_description_list li.last::after{content:""}.updraft_feature_cell{background-color:#f7d9c9 !important;padding:5px 10px}.updraft_feat_table,.updraft_feat_th,.updraft_feat_table td{border:1px solid black;border-collapse:collapse;font-size:120%;background-color:white;text-align:center}.updraft_feat_table p{padding:0 10px;margin:5px 0;font-size:16px}.updraft_feat_table h4{margin:5px 0}.updraft_feat_table .dashicons{width:25px;height:25px;font-size:25px;line-height:1}.updraft_feat_table .dashicons-yes,.updraft_feat_table .updraft-yes{color:green}.updraft_feat_table .dashicons-no-alt,.updraft_feat_table .updraft-no{color:red}.updraft_tick_cell{text-align:center}.updraft_tick_cell img{margin:4px 0;height:24px}#filelist .fileprogress,#filelist2 .fileprogress,.ud_downloadstatus .dlfileprogress,#ud_downloadstatus2 .dlfileprogress{width:0;background:#f6a828;height:5px}.ud_downloadstatus .raw,#ud_downloadstatus2 .raw{margin-top:8px;clear:left}.ud_downloadstatus .file,#ud_downloadstatus2 .file{margin-top:8px}tr.updraftplusmethod h3{margin:0}#updraft_retain_db_rules .updraft_retain_rules_delete,#updraft_retain_files_rules .updraft_retain_rules_delete{cursor:pointer;color:red;font-size:120%;font-weight:bold;border:0;border-radius:3px;padding:2px;margin:0 6px}#updraft_retain_db_rules .updraft_retain_rules_delete:hover,#updraft_retain_files_rules .updraft_retain_rules_delete:hover{cursor:pointer;color:white;background:red}#updraft_backup_started{max-width:800px;font-size:140%;line-height:140%;padding:14px;clear:left}.udp-premium-image{display:none}@media screen and (min-width:720px){.udp-premium-image{display:block;float:left;padding-right:5px}}#plupload-upload-ui2{width:80%}.backup-restored{padding:8px}.backup-restored span{font-size:120%}.memory-limit{padding:8px}.updraft_list_errors{padding:8px}.nav-tab-wrapper{margin:14px 0}#updraft-poplog-content{white-space:pre-wrap}.next-backup{border:0;padding:0;margin:0 10px 0 0}.not-scheduled{vertical-align:top !important;margin:0 !important;padding:0 !important}.next-backup .updraft_scheduled{margin:0;padding:2px 4px 2px 0}#next-backup-table-inner td{vertical-align:top}.next-backup .updraft_all-files{color:blue;margin:0;padding:2px 0 0 0}.multisite-advert-width{width:800px}.updraft_settings_sectionheading{margin-top:6px}.premium-upgrade-prompt{font-size:115%}.updraft_feat_table{margin-top:30px}.show_admin_restore_in_progress_notice{padding:8px}.show_admin_restore_in_progress_notice .unfinished-restoration{font-size:120%}#backupnow_includefiles_moreoptions,#backupnow_database_moreoptions{margin:4px 16px 6px 16px;border:1px dotted;padding:6px 10px}#backupnow_database_moreoptions{max-height:250px;overflow:auto}.form-table #updraft_activejobsrow .minimum-height{min-height:100px}#updraft_lastlogmessagerow .last-message{padding-top:20px;display:block}.updraft_simplepie{vertical-align:top}.download-backups{margin-top:8px}.download-backups .updraft_download_button{margin-right:6px;margin-top:4px}.download-backups .choose-components-button{font-size:16px}.download-backups .ud-whitespace-warning{background-color:pink;padding:8px;margin:4px;border:1px dotted}.download-backups .ul{list-style:none inside;max-width:800px;margin-top:6px;margin-bottom:12px}#updraft-plupload-modal{width:75%;margin:16px;margin-left:100px}.download-backups .upload{max-width:610px}.download-backups #plupload-upload-ui{width:70%}.ud_downloadstatus{padding:10px;background:#f1f1f1}#ud_massactions{padding:14px;position:fixed;right:25%;top:25%;border:2px solid;border-radius:4px;background:#f1f1f1;float:right}#ud_massactions .updraftplus-remove{clear:left;font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraftplus-remove a{text-decoration:none}#ud_massactions .updraft-viewlogdiv{font-size:16px;text-align:center;border-radius:4px;margin-top:4px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#ud_massactions .updraft-viewlogdiv a{text-decoration:none;position:relative;top:3px}#updraft-navtab-backups-content .updraft_existing_backups{margin-bottom:12px}#updraft-message-modal-innards{padding:4px}#updraft-authenticate-modal{text-align:center;font-size:16px !important}#updraft-authenticate-modal p{font-size:16px}#updraft_delete_form p{margin-top:3px;padding-top:0}#updraft_restore_form .cannot-restore{margin:8px 0}#updraft_restorer_dboptions{padding:12px;margin:8px 0 4px 0;border:dashed 1px}#updraft_restorer_dboptions h4{margin:0 0 6px 0;padding:0}.updraft_debugrow th{vertical-align:top;padding-top:6px}.expertmode p{font-size:125%}.expertmode .call-wp-action{width:300px;height:22px}.updraftplus-lock-advert{clear:left;max-width:600px}.uncompressed-data{clear:left;max-width:600px}.delete-old-directories{padding:8px;padding-bottom:12px}.active-jobs{min-width:480px;min-height:48px;text-align:center;margin-top:4px;padding:8px;border:1px solid;float:left;clear:left}.job-id{min-width:480px;margin-top:4px;padding:8px;border:1px solid;clear:left;float:left}.next-resumption{font-weight:bold}.updraft_percentage{z-index:-1;position:absolute;left:0;top:0;text-align:center;background-color:#f6a828}.curstage{border-radius:4px;margin-top:8px;padding-top:4px;border:1px solid #AAA;width:100%;height:22px;position:relative;text-align:center;font-style:italic}.retain-files{width:48px}.backup-interval-description tr td div{max-width:670px}#updraft-manualdecrypt-modal{width:85%;margin:6px;margin-left:100px}.directory-permissions{font-size:110%;font-weight:bold}.double-warning{border:1px solid;padding:6px}.raw-backup-info{font-style:italic;font-weight:bold;font-size:120%}.updraft_existingbackup_date{width:22%;max-width:140px}.existing-backups-table{margin-top:20px;margin-left:20px;width:80%}.tr-bottom-4{margin-bottom:4px}.form-table .backup-date{width:172px;padding:0;padding-left:15px}.form-table .backup-data{width:426px;padding:0;padding-left:15px}.form-table .updraft_backup_actions{width:272px;padding:0 0 10px 15px}.existing-date{box-sizing:border-box;max-width:140px;width:25%}.line-break-tr{height:2px;padding:1px;margin:0}.line-break-td{margin:0;padding:0}.td-line-color{height:2px;background-color:#888}.raw-backup{max-width:140px}.existing-backups-actions{padding:1px;margin:0}.existing-backups-border{height:2px;padding:1px;margin:0}.existing-backups-border>td{margin:0;padding:0}.existing-backups-border>div{height:2px;background-color:#AAA}.updraft_existing_backup_date{max-width:140px}.restore-button{margin-right:6px;float:left;clear:none}.updraftplus-remove{font-size:16px;text-align:center;border-radius:4px}.before-restore-button{padding:1px;margin:0}.table-separator-tr{height:2px;padding:1px;margin:0}.table-separator-td{margin:0;padding:0}.end-of-table-div{height:2px;background-color:#AAA}.last-backup-job{padding-top:3% !important}.line-height-03{line-height:.3 !important}.line-height-13{line-height:1.3 !important}.line-height-23{line-height:2.3 !important}#updraft_diskspaceused{color:#df6926}.updraft_premium_description_list{text-align:left}#updraft_delete_old_dirs_pagediv{padding-bottom:10px}.job-id{margin:0 auto;width:20%}.updraft_all-files{color:#df6926}.fix-time{width:70px}.retain-files{width:70px}.number-input{min-width:50px;max-width:70px}.additional-rule-width{min-width:60px;max-width:70px}.dashicons{line-height:inherit;font-size:inherit}.addon-logo-150{margin-left:30px;margin-top:33px;height:125px;width:150px}.margin-bottom-50{margin-bottom:50px}.premium-container{width:80%}.main-header{background-color:#df6926;height:200px;width:100%}.button-add-to-cart{color:white;border-color:white;float:none;margin-right:17px}.button-add-to-cart:hover,.button-add-to-cart:focus,.button-add-to-cart:active{border-color:#a0a5aa;color:#a0a5aa}.addon-title{margin-top:25px}.addon-text{margin-top:75px}.image-main-div{width:25%;float:left}.text-main-div{width:60%;float:left;text-align:center;color:white;margin-top:16px}.text-main-div-title{font-weight:bold !important;color:white;text-align:center}.text-main-div-paragraph{color:white}.updraftplus-vault-cta{width:100%;text-align:center;margin-bottom:50px}.updraftplus-vault-cta h1{font-weight:bold}.updraftvault-buy{width:225px;height:225px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:50px;position:relative}.updraftplus-vault-cta>.vault-options>.center-vault{width:275px;height:275px}.updraftplus-vault-cta>.vault-options>.center-vault>a{right:21%;font-size:16px;border-width:4px !important}.updraftplus-vault-cta>.vault-options>.center-vault>p{font-size:16px}.updraftvault-buy .button-purchase{right:24%;margin-left:0;line-height:1.7em}.updraftvault-buy hr{height:2px;background-color:#777;margin-top:18px}.right{margin-right:0}.updraftvault-buy .addon-logo-100{height:100px;width:125px;margin-top:7px}.updraftvault-buy .addon-logo-large{margin-top:7px}.updraftvault-buy .button-buy-vault{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:29%;bottom:2%}.premium-addon-div .button-purchase{line-height:1.7em}.updraftvault-buy .button-buy-vault:hover{border-color:darkgrey;color:darkgrey}.premium-addons{margin-top:80px;width:100%;margin:0 auto;display:table}.addon-list{display:table;text-align:center}.premium-addons h1{text-align:center;font-weight:bold}.premium-addons p{text-align:center}.premium-addons .premium-addon-div{width:200px;height:250px;border:2px solid #777;display:inline-table;margin:0 auto;margin-right:25px;margin-top:25px;text-align:center;position:relative}.premium-addons .premium-addon-div p{margin-left:2px;margin-right:2px}.premium-addons .premium-addon-div img{width:auto;height:50px;margin-top:7px}.premium-addons .premium-addon-div .hr-alignment{margin-top:44px}.premium-addons .premium-addon-div .dropbox-logo{height:39px;width:150px}.premium-addons .premium-addon-div .azure-logo,.premium-addons .premium-addon-div .onedrive-logo{width:75%;height:24px}.button-purchase{font-size:12px;color:#df6926;border-color:#df6926;border-width:2px !important;position:absolute;right:25%;bottom:2%}.button-purchase:hover{color:darkgrey;border-color:darkgrey}.premium-addons .premium-addon-div hr{height:2px;background-color:#777;margin-top:18px}.premium-addon-div p{font-style:italic}.addon-list>.premium-addon-div>.onedrive-fix,.addon-list>.premium-addon-div>.azure-logo{margin-top:33px}.addon-list>.premium-addon-div>.dropbox-fix{margin-top:18px}.premium-forgotton-something{margin-top:5%}.premium-forgotton-something h1{text-align:center;font-weight:bold}.premium-forgotton-something p{text-align:center;font-weight:normal}.premium-forgotton-something .button-faq{color:#df6926;border-color:#df6926;margin:0 auto;display:table}.premium-forgotton-something .button-faq:hover{color:#777;border-color:#777}.updraftplusmethod.updraftvault #vaultlogo{padding-left:40px}.updraftplusmethod.updraftvault .vault_primary_option{float:left;width:50%;text-align:center;padding-bottom:20px}.updraftplusmethod.updraftvault .vault_primary_option div{clear:right;padding-top:20px}.updraftplusmethod.updraftvault .clear-left{clear:left}.updraftplusmethod.updraftvault .padding-top-20px{padding-top:20px}.updraftplusmethod.updraftvault .padding-top-14px{padding-top:14px}.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary,.updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary{font-size:18px !important;padding-bottom:20px}.updraftplusmethod.updraftvault #updraftvault_showoptions,.updraftplusmethod.updraftvault #updraftvault_connect{margin-top:8px}.updraftplusmethod.updraftvault #updraftvault_settings_connect input{margin-right:10px}.updraftplusmethod.updraftvault #updraftvault_email{width:280px}.updraftplusmethod.updraftvault #updraftvault_pass{width:200px}.updraftplusmethod.updraftvault #vault-is-connected{margin:0;padding:0}.updraftplusmethod.updraftvault #updraftvault_settings_default p{clear:left}.updraftplusmethod.updraftvault .vault-purchase-option{float:left;width:33%;text-align:center;padding-top:20px}.updraftplusmethod.updraftvault .vault-purchase-option-size{font-size:200%;font-weight:bold}.updraftplusmethod.updraftvault .vault-purchase-option-link{clear:both;font-size:150%}.updraftplusmethod.updraftvault .vault-purchase-option-or{clear:both;font-size:115%;font-style:italic}.autobackup-image{clear:left;float:left;width:110px;height:110px}.autobackup-description{width:100%}.advert-description{float:left;clear:right;padding:4px 10px 8px 10px;width:70%;clear:right;vertical-align:top}.advert-btn{display:inline-block;min-width:10%;vertical-align:top;margin-bottom:8px}.advert-btn:first-of-type{margin-top:25px}.advert-btn a{display:block;cursor:pointer}a.btn-get-started{background:#FFF;border:2px solid #df6926;border-radius:4px;color:#df6926;display:inline-block;margin-left:10px !important;margin-bottom:7px !important;font-size:18px !important;line-height:20px;min-height:28px;padding:11px 10px 5px 10px;text-transform:uppercase;text-decoration:none}.circle-dblarrow{border:1px solid #df6926;border-radius:100%;display:inline-block;font-size:17px;line-height:17px;margin-left:5px;width:20px;height:20px;text-align:center}.expertmode .advanced_settings_container{height:auto;overflow:hidden}.expertmode .advanced_settings_container .advanced_settings_menu{float:none;border-bottom:1px solid #ccc}.expertmode .advanced_settings_container .advanced_settings_content{padding-top:5px;float:none;width:auto;overflow:auto}.expertmode .advanced_settings_container .advanced_settings_content h3{margin-top:5px !important}.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools{display:none}.expertmode .advanced_settings_container .advanced_settings_content .site_info{display:block}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:inline-block;cursor:pointer;padding:5px;color:#000}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text{font-size:16px}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover{background-color:#eaeaea}.expertmode .advanced_settings_container .advanced_settings_menu .active{background-color:#3498db;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_menu .active:hover{background-color:#72c5fd;color:#FFF}.expertmode .advanced_settings_container .advanced_settings_content input#import_settings{height:auto !important}div#updraft-wrap a{cursor:pointer !important}#updraftcentral_keys_table{display:none}.create_key_container{border:1px solid;border-radius:4px;padding:0 0 6px 6px;margin-bottom:8px}#updraftcentral_keycreate_mothership{margin-left:24px}@media screen and (min-width:670px){.expertmode .advanced_settings_container .advanced_settings_menu{float:left;width:215px;border-right:1px solid #ccc;border-bottom:0}.expertmode .advanced_settings_container .advanced_settings_content{padding-left:10px;padding-top:0}.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button{display:block}}
2
  /*# sourceMappingURL=admin.min.css.map */
css/admin.min.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["css/admin.css"],"names":[],"mappings":"AAAA,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED,iBAAiB;;AAEjB;CACC,mBAAmB;CACnB,kBAAkB;CAClB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB;;AAED,qBAAqB;;AAErB,kBAAkB;AAClB;CACC,kBAAkB;CAClB,oBAAoB;CACpB,oBAAoB;CACpB,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,wBAAwB;CACxB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,yBAAyB;CACzB,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,gCAAgC;CAChC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb,mBAAmB;CACnB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED,sBAAsB;;AAEtB,4BAA4B;;AAE5B;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,eAAe;CACf,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,UAAU;CACV;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,SAAS;CACT;;AAED;CACC,aAAa;CACb,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,aAAa;CACb,uBAAuB;CACvB,kBAAkB;CAClB;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,yBAAyB;CACzB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,aAAa;CACb;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,gBAAgB;CAChB,WAAW;CACX,SAAS;CACT,kBAAkB;CAClB,mBAAmB;CACnB,+BAA+B;CAC/B,aAAa;CACb;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,uBAAuB;CACvB;;AAED;CAGC,uBAAuB;CACvB,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,eAAe;CACf;;AAED,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;AACA;;;;;;;;;IASI;CACH;;AAED,uCAAuC;AACvC,6CAA6C;AAC7C;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,4CAA4C;CAC5C;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,2BAA2B;CAC3B;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED","file":"admin.min.css","sourcesContent":["/* Widths and sizing */\r\n.max-width-600 {\r\n\tmax-width: 600px;\r\n}\r\n\r\n.width-900 {\r\n\twidth: 900px;\r\n}\r\n\r\n.width-80 {\r\n\twidth: 80%;\r\n}\r\n\r\n/* End widths and sizing */\r\n\r\n/* Font styling */\r\n.no-decoration {\r\n\ttext-decoration: none;\r\n}\r\n\r\n.bold {\r\n\tfont-weight: bold;\r\n}\r\n\r\n/* End font styling */\r\n/* Alignment */\r\n.center-align-td {\r\n\ttext-align: center;\r\n}\r\n\r\n/* End of Alignment */\r\n/* Padding */\r\n.remove-padding {\r\n\tpadding: 0 !important;\r\n}\r\n\r\n/* End of padding */\r\n\r\n.updraft-text-center {\r\n\ttext-align: center;\r\n}\r\n\r\n.autobackup {\r\n\tpadding: 6px;\r\n\tmargin: 8px 0px;\r\n}\r\n\r\nul .disc {\r\n\tlist-style: disc inside;\r\n}\r\n\r\n.dashicons-log-fix {\r\n\tdisplay: inherit;\r\n}\r\n\r\n/* Input boxes */\r\n\r\ninput {\r\n\tborder-radius: 4px;\r\n\tline-height: 1.42;\r\n\tborder: 1px solid #CCC;\r\n\theight: 27px;\r\n\tpadding: 2px 6px;\r\n\tcolor: #555;\r\n}\r\n\r\ninput[type=\"text\"] {\r\n\tfont-size: 14px;\r\n}\r\n\r\ninput[type=\"number\"] {\r\n\theight: 31px;\r\n}\r\n\r\nselect {\r\n\tborder-radius: 4px;\r\n}\r\n\r\n/* End input boxes */\r\n\r\n/* Main Buttons */\r\n.main-dashboard-buttons {\r\n\tborder-width: 4px;\r\n\tborder-radius: 12px;\r\n\tletter-spacing: 0px;\r\n\tfont-size: 17px;\r\n\tfont-weight: bold;\r\n\tpadding-left: 0.7em;\r\n\tpadding-right: 2em;\r\n\tpadding: 0.3em 1em;\r\n\tline-height: 1.7em;\r\n\tbackground: transparent;\r\n\tposition: relative;\r\n\tborder: 2px solid;\r\n\ttransition: all 0.2s;\r\n\tvertical-align: baseline;\r\n\tbox-sizing: border-box;\r\n\ttext-align: center;\r\n\tline-height: 1.3em;\r\n\tmargin-left: .3em;\r\n\ttext-transform: none;\r\n\tline-height: 1;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.button-restore {\r\n\tborder-color: rgb(98, 158, 192);\r\n\tcolor: rgb(98, 158, 192);\r\n}\r\n\r\n.dashboard-main-sizing {\r\n\tborder-width: 4px;\r\n\twidth: 190px;\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\r\n.button-view-log:hover, .button-mass-selectors:hover,\r\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\r\n\tborder-color: #DF6926;\r\n\tcolor: #DF6926;\r\n}\r\n\r\n.button-migrate {\r\n\tcolor: rgb(238, 169, 32);\r\n\tborder-color: rgb(238, 169, 32);\r\n}\r\n\r\n.button-backup {\r\n\tborder-color: #84CA1B;\r\n\tcolor: #84CA1B;\r\n}\r\n\r\n.existing-backups-buttons {\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 3px;\r\n}\r\n\r\n.existing-backups-restore-buttons {\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 3px;\r\n}\r\n\r\n.button-delete {\r\n\tcolor: #E23900;\r\n\tborder-color: #E23900;\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-right: 10px;\r\n}\r\n\r\n.button-view-log, .button-mass-selectors {\r\n\tcolor: darkgrey;\r\n\tborder-color: darkgrey;\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-top: -1px;\r\n}\r\n\r\n.button-view-log {\r\n\twidth: 120px;\r\n}\r\n\r\n.button-existing-restore {\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\twidth: 110px;\r\n}\r\n\r\n.main-restore {\r\n\tmargin-right: 3%;\r\n\tmargin-left: 3%;\r\n}\r\n\r\n.button-entity-backup {\r\n\tcolor: #555;\r\n\tborder-color: #555;\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-right: 5px;\r\n}\r\n\r\n.button-select-all {\r\n\twidth: 122px;\r\n}\r\n\r\n.button-deselect {\r\n\twidth: 92px;\r\n}\r\n\r\n#ud_massactions > .display-flex > .mass-selectors-margins {\r\n\tmargin-right: -4px;\r\n}\r\n\r\n.udp-button-primary {\r\n\tborder-width: 4px;\r\n\tcolor: #0073AA;\r\n\tborder-color: #0073AA;\r\n\tfont-size: 14px;\r\n\theight: 40px;\r\n}\r\n\r\n#ud_massactions .button-delete {\r\n\tmargin-right: 0px;\r\n}\r\n\r\n.stored_local {\r\n\tborder-radius: 5px;\r\n\tbackground-color: #007FE7;\r\n\tpadding: 3px 5px 5px 5px;\r\n\tcolor: #FFF;\r\n\tfont-size: 75%;\r\n}\r\n\r\n.form-table td.updraft_existingbackup_date {\r\n\tpadding-bottom: 5px;\r\n}\r\n\r\nspan#updraft_lastlogcontainer {\r\n\tword-break: break-all;\r\n}\r\n\r\n.stored_icon {\r\n\theight: 1.3em;\r\n\tposition: relative;\r\n\ttop: 0.2em;\r\n}\r\n\r\n.backup_date_label .clear-right {\r\n\tclear: right;\r\n}\r\n\r\n/* End Main Buttons */\r\n\r\n/* End of common elements */\r\n\r\n.udp-logo-70 {\r\n\twidth: 70px;\r\n\theight: 70px;\r\n\tfloat: left;\r\n\tpadding-right: 25px;\r\n}\r\n\r\nh3 .thank-you {\r\n\tmargin-top: 0px;\r\n}\r\n\r\n.ws_advert {\r\n\tmax-width: 800px;\r\n\tfont-size: 140%;\r\n\tline-height: 140%;\r\n\tpadding: 14px;\r\n\tclear: left;\r\n}\r\n\r\n.dismiss-dash-notice {\r\n\tfloat: right;\r\n\tposition: relative;\r\n\ttop: -20px;\r\n}\r\n\r\n#updraft_report_cell .updraft_reportbox {\r\n\tpadding: 8px;\r\n\tmargin: 8px 0;\r\n\tborder: 1px dotted;\r\n\tclear: left;\r\n\tfloat: left;\r\n}\r\n\r\n#updraft_report_cell button.updraft_reportbox_delete {\r\n\tfont-size: 50%;\r\n\tfloat: right;\r\n\tpadding: 0 3px;\r\n\tposition: relative;\r\n\ttop: -4px;\r\n\tleft: 4px;\r\n}\r\n\r\n#updraft-navtab-settings-content .updraft-test-button {\r\n\tfont-size: 18px !important;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_checkbox {\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_email {\r\n\twidth: 300px;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_another_p {\r\n\tclear: left;\r\n}\r\n\r\n/* Taken straight from admin.php */\r\n\r\n#updraft-navtab-settings-content table.form-table p {\r\n\tmax-width: 700px;\r\n}\r\n\r\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\r\n\tbackground-color: #CCC;\r\n}\r\n\r\n.updraft_settings_sectionheading {\r\n\tdisplay: none;\r\n}\r\n\r\n.updraft-backupentitybutton-disabled {\r\n\tbackground-color: transparent;\r\n\tborder: none;\r\n\tcolor: #0074A2;\r\n\ttext-decoration: underline;\r\n\tcursor: pointer;\r\n\tclear: none;\r\n\tfloat: left;\r\n}\r\n\r\n.updraft-backupentitybutton {\r\n\tmargin-left: 8px;\r\n}\r\n\r\n.updraft-bigbutton {\r\n\tpadding: 2px 0px !important;\r\n\tmargin-right: 14px !important;\r\n\tfont-size: 22px !important;\r\n\tmin-height: 32px;\r\n\tmin-width: 180px;\r\n}\r\n\r\n.updraft_debugrow th {\r\n\tfloat: right;\r\n\ttext-align: right;\r\n\tfont-weight: bold;\r\n\tpadding-right: 8px;\r\n\tmin-width: 140px;\r\n}\r\n\r\n.updraft_debugrow td {\r\n\tmin-width: 300px;\r\n\tvertical-align: bottom;\r\n}\r\n\r\n#updraft_webdav_host_error {\r\n\tcolor: red;\r\n}\r\n\r\n/* jstree styles */\r\n\r\n/* these styles hide the dots from the parent but keep the arrows */\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-node,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\r\n\tbackground: transparent;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\r\n\tbackground-position: -36px -4px;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\r\n\tbackground-position: -4px -4px;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\r\n\tbackground: transparent;\r\n}\r\n\r\n/* zip browser jstree styles */\r\n#updraft_zip_files_container {\r\n\tposition: relative;\r\n\theight: 450px;\r\n\toverflow: none;\r\n}\r\n\r\n#updraft_zip_info_container {\r\n\tposition: relative;\r\n\theight: auto;\r\n\twidth: 100%;\r\n\tborder: 1px dotted;\r\n\tmargin-bottom: 5px;\r\n}\r\n\r\n#updraft_zip_info_container p {\r\n\tmargin: 1px;\r\n\tpadding-left: 10px;\r\n\tfont-size: 14px;\r\n}\r\n\r\n#updraft_zip_download_item {\r\n\tdisplay: none;\r\n\tcolor: #0073AA;\r\n\tpadding-left: 10px;\r\n}\r\n\r\n#updraft_zip_download_notice {\r\n\tpadding-left: 10px;\r\n}\r\n\r\n#updraft_zip_files_jstree_container {\r\n\tposition: relative;\r\n\tborder: 1px dotted;\r\n\theight: 80%;\r\n\twidth: 100%;\r\n\toverflow: auto;\r\n}\r\n\r\n/* More files jstree styles */\r\n#updraft_more_files_container {\r\n\tposition: relative;\r\n\tdisplay: none;\r\n\theight: 300px;\r\n\twidth: 100%;\r\n\tborder: 1px dotted;\r\n\tmargin-bottom: 5px;\r\n}\r\n\r\n#updraft_jstree_buttons {\r\n\tposition: absolute;\r\n\ttop: 0;\r\n\tright: 0;\r\n}\r\n\r\n#updraft_jstree_container {\r\n\theight: 100%;\r\n\twidth: 100%;\r\n\toverflow: auto;\r\n}\r\n\r\n#updraft_more_files_container button {\r\n\theight: 22px;\r\n\tline-height: 20px;\r\n}\r\n\r\n#updraft_jstree_confirm, #updraft_jstree_cancel {\r\n\tdisplay: none;\r\n}\r\n\r\n.updraftplus-morefiles-row-delete {\r\n\tcursor: pointer;\r\n\tcolor: red;\r\n\tfont-size: 23px !important;\r\n}\r\n\r\n.updraftplus-morefiles-row-edit {\r\n\tcursor: pointer;\r\n\tfont-size: 24px !important;\r\n}\r\n\r\n#updraft-wrap .form-table th {\r\n\twidth: 230px;\r\n}\r\n\r\n.updraftplus-remove {\r\n\tbackground-color: #C00000;\r\n\tborder: 1px solid #C00000;\r\n\theight: 22px;\r\n\tpadding: 4px 3px 0 3px;\r\n\tmargin-right: 6px;\r\n}\r\n\r\n.updraft-viewlogdiv form {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.updraft-viewlogdiv {\r\n\tbackground-color: #FFF;\r\n\tcolor: #000;\r\n\tborder: 1px solid #000;\r\n\theight: 26px;\r\n\tpadding: 0px;\r\n\tmargin: 0 4px 0 0;\r\n\tborder-radius: 3px;\r\n\tfloat: left;\r\n}\r\n\r\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\r\n\tborder: none;\r\n\tbackground-color: transparent;\r\n\tcolor: #000;\r\n\tmargin: 0px;\r\n\tpadding: 3px 4px;\r\n\tfont-size: 16px;\r\n\tline-height: 26px;\r\n}\r\n\r\n.updraft-viewlogdiv:hover {\r\n\tbackground-color: #000;\r\n\tcolor: #FFF;\r\n\tborder: 1px solid #FFF;\r\n\tcursor: pointer;\r\n}\r\n\r\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\r\n\tcolor: #FFF;\r\n\tcursor: pointer;\r\n}\r\n\r\n.updraftplus-remove a {\r\n\tcolor: white;\r\n\tpadding: 4px 4px 0px 4px;\r\n}\r\n\r\n.updraftplus-remove:hover {\r\n\tbackground-color: white;\r\n\tborder: 1px solid #C00000;\r\n}\r\n\r\n.updraftplus-remove a:hover {\r\n\tcolor: #C00000;\r\n}\r\n\r\n.drag-drop #drag-drop-area2 {\r\n\tborder: 4px dashed #DDD;\r\n\theight: 200px;\r\n}\r\n\r\n#drag-drop-area2 .drag-drop-inside {\r\n\tmargin: 36px auto 0;\r\n\twidth: 350px;\r\n}\r\n\r\n#filelist, #filelist2 {\r\n\twidth: 100%;\r\n}\r\n\r\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\r\n\tpadding: 5px;\r\n\tbackground: #ECECEC;\r\n\tborder: solid 1px #CCC;\r\n\tmargin: 4px 0;\r\n}\r\n\r\nul.updraft_premium_description_list {\r\n\tlist-style: disc inside;\r\n}\r\n\r\nul.updraft_premium_description_list li {\r\n\tdisplay: inline;\r\n}\r\n\r\nul.updraft_premium_description_list li::after {\r\n\tcontent: \" | \";\r\n}\r\n\r\nul.updraft_premium_description_list li.last::after {\r\n\tcontent: \"\";\r\n}\r\n\r\n.updraft_feature_cell {\r\n\tbackground-color: #F7D9C9 !important;\r\n\tpadding: 5px 10px;\r\n}\r\n\r\n.updraft_feat_table, .updraft_feat_th, .updraft_feat_table td {\r\n\tborder: 1px solid black;\r\n\tborder-collapse: collapse;\r\n\tfont-size: 120%;\r\n\tbackground-color: white;\r\n\ttext-align: center;\r\n}\r\n\r\n.updraft_feat_table p {\r\n\tpadding: 0px 10px;\r\n\tmargin: 5px 0px;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.updraft_feat_table h4 {\r\n\tmargin: 5px 0px;\r\n}\r\n\r\n.updraft_feat_table .dashicons {\r\n\twidth: 25px;\r\n\theight: 25px;\r\n\tfont-size: 25px;\r\n\tline-height: 1;\r\n}\r\n\r\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\r\n\tcolor: green;\r\n}\r\n\r\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\r\n\tcolor: red;\r\n}\r\n\r\n.updraft_tick_cell {\r\n\ttext-align: center;\r\n}\r\n\r\n.updraft_tick_cell img {\r\n\tmargin: 4px 0;\r\n\theight: 24px;\r\n}\r\n\r\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\r\n\twidth: 0%;\r\n\tbackground: #F6A828;\r\n\theight: 5px;\r\n}\r\n\r\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\r\n\tmargin-top: 8px;\r\n\tclear: left;\r\n}\r\n\r\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\r\n\tmargin-top: 8px;\r\n}\r\n\r\ntr.updraftplusmethod h3 {\r\n\tmargin: 0px;\r\n}\r\n\r\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\r\n\tcursor: pointer;\r\n\tcolor: red;\r\n\tfont-size: 120%;\r\n\tfont-weight: bold;\r\n\tborder: 0px;\r\n\tborder-radius: 3px;\r\n\tpadding: 2px;\r\n\tmargin: 0 6px;\r\n}\r\n\r\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\r\n\tcursor: pointer;\r\n\tcolor: white;\r\n\tbackground: red;\r\n}\r\n\r\n#updraft_backup_started {\r\n\tmax-width: 800px;\r\n\tfont-size: 140%;\r\n\tline-height: 140%;\r\n\tpadding: 14px;\r\n\tclear: left;\r\n}\r\n\r\n.udp-premium-image {\r\n\tdisplay: none;\r\n}\r\n\r\n@media screen and (min-width: 720px) {\r\n\r\n\t.udp-premium-image {\r\n\t\tdisplay: block;\r\n\t\tfloat: left;\r\n\t\tpadding-right: 5px;\r\n\t}\r\n\r\n}\r\n\r\n/* End stuff already in admin.php */\r\n#plupload-upload-ui2 {\r\n\twidth: 80%;\r\n}\r\n\r\n.backup-restored {\r\n\tpadding: 8px;\r\n}\r\n\r\n.backup-restored span {\r\n\tfont-size: 120%;\r\n}\r\n\r\n.memory-limit {\r\n\tpadding: 8px;\r\n}\r\n\r\n.updraft_list_errors {\r\n\tpadding: 8px;\r\n}\r\n\r\n/*.nav-tab {\r\n\tborder-radius: 20px 20px 0 0;\r\n\tborder-color: grey;\r\n\tborder-width: 2px;\r\n\tmargin-top: 34px;\r\n}\r\n\r\n.nav-tab:hover {\r\n\tborder-bottom: 0;\r\n}\r\n\r\n.nav-tab-active, .nav-tab-active:active {\r\n\tcolor: #df6926;\r\n\tborder-color: #D3D3D3;\r\n\tborder-width: 1px;\r\n\tborder-bottom: 0;\r\n}\r\n\r\n.nav-tab-active:focus {\r\n\tcolor: #df6926;\r\n}*/\r\n\r\n.nav-tab-wrapper {\r\n\tmargin: 14px 0px;\r\n}\r\n\r\n#updraft-poplog-content {\r\n\twhite-space: pre-wrap;\r\n}\r\n\r\n.next-backup {\r\n\tborder: 0px;\r\n\tpadding: 0px;\r\n\tmargin: 0 10px 0 0;\r\n}\r\n\r\n.not-scheduled {\r\n\tvertical-align: top !important;\r\n\tmargin: 0px !important;\r\n\tpadding: 0px !important;\r\n}\r\n\r\n.next-backup .updraft_scheduled {\r\n\t/* width: 124px;*/\r\n\tmargin: 0px;\r\n\tpadding: 2px 4px 2px 0px;\r\n}\r\n\r\n#next-backup-table-inner td {\r\n\tvertical-align: top;\r\n}\r\n\r\n.next-backup .updraft_all-files {\r\n\tcolor: blue;\r\n\tmargin: 0px;\r\n\tpadding: 2px 0px 0px 0px;\r\n}\r\n\r\n.multisite-advert-width {\r\n\twidth: 800px;\r\n}\r\n\r\n.updraft_settings_sectionheading {\r\n\tmargin-top: 6px;\r\n}\r\n\r\n.premium-upgrade-prompt {\r\n\tfont-size: 115%;\r\n}\r\n\r\n.updraft_feat_table {\r\n\tmargin-top: 30px;\r\n}\r\n\r\n.show_admin_restore_in_progress_notice {\r\n\tpadding: 8px;\r\n}\r\n\r\n.show_admin_restore_in_progress_notice .unfinished-restoration {\r\n\tfont-size: 120%;\r\n}\r\n\r\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\r\n\tmargin: 4px 16px 6px 16px;\r\n\tborder: 1px dotted;\r\n\tpadding: 6px 10px;\r\n}\r\n\r\n#backupnow_database_moreoptions {\r\n\tmax-height: 250px;\r\n\toverflow: auto;\r\n}\r\n\r\n.form-table #updraft_activejobsrow .minimum-height {\r\n\tmin-height: 100px;\r\n}\r\n\r\n#updraft_lastlogmessagerow .last-message {\r\n\tpadding-top: 20px;\r\n\tdisplay: block;\r\n}\r\n\r\n.updraft_simplepie {\r\n\tvertical-align: top;\r\n}\r\n\r\n.download-backups {\r\n\tmargin-top: 8px;\r\n}\r\n\r\n.download-backups .updraft_download_button {\r\n\tmargin-right: 6px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n.download-backups .choose-components-button {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.download-backups .ud-whitespace-warning {\r\n\tbackground-color: pink;\r\n\tpadding: 8px;\r\n\tmargin: 4px;\r\n\tborder: 1px dotted;\r\n}\r\n\r\n.download-backups .ul {\r\n\tlist-style: none inside;\r\n\tmax-width: 800px;\r\n\tmargin-top: 6px;\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\n#updraft-plupload-modal {\r\n\twidth: 75%;\r\n\tmargin: 16px;\r\n\tmargin-left: 100px;\r\n}\r\n\r\n.download-backups .upload {\r\n\tmax-width: 610px;\r\n}\r\n\r\n.download-backups #plupload-upload-ui {\r\n\twidth: 70%;\r\n}\r\n\r\n.ud_downloadstatus {\r\n\tpadding: 10px;\r\n\tbackground: #F1F1F1;\r\n}\r\n\r\n#ud_massactions {\r\n\tpadding: 14px;\r\n\tposition: fixed;\r\n\tright: 25%;\r\n\ttop: 25%;\r\n\tborder: 2px solid;\r\n\tborder-radius: 4px;\r\n\tbackground: rgb(241, 241, 241);\r\n\tfloat: right;\r\n}\r\n\r\n#ud_massactions .updraftplus-remove {\r\n\tclear: left;\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#ud_massactions .updraftplus-remove a {\r\n\ttext-decoration: none;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv {\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv a {\r\n\ttext-decoration: none;\r\n\tposition: relative;\r\n\ttop: 3px;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv a {\r\n\ttext-decoration: none;\r\n\tposition: relative;\r\n\ttop: 3px;\r\n}\r\n\r\n#updraft-navtab-backups-content .updraft_existing_backups {\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\n#updraft-message-modal-innards {\r\n\tpadding: 4px;\r\n}\r\n\r\n#updraft-authenticate-modal {\r\n\ttext-align: center;\r\n\tfont-size: 16px !important;\r\n}\r\n\r\n#updraft-authenticate-modal p {\r\n\tfont-size: 16px;\r\n}\r\n\r\n#updraft_delete_form p {\r\n\tmargin-top: 3px;\r\n\tpadding-top: 0;\r\n}\r\n\r\n#updraft_restore_form .cannot-restore {\r\n\tmargin: 8px 0;\r\n}\r\n\r\n#updraft_restorer_dboptions {\r\n\tpadding: 12px;\r\n\tmargin: 8px 0 4px 0;\r\n\tborder: dashed 1px;\r\n}\r\n\r\n#updraft_restorer_dboptions h4 {\r\n\tmargin: 0px 0px 6px 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\n.updraft_debugrow th {\r\n\tvertical-align: top;\r\n\tpadding-top: 6px;\r\n}\r\n\r\n.expertmode p {\r\n\tfont-size: 125%;\r\n}\r\n\r\n.expertmode .call-wp-action {\r\n\twidth: 300px;\r\n\theight: 22px;\r\n}\r\n\r\n.updraftplus-lock-advert {\r\n\tclear: left;\r\n\tmax-width: 600px;\r\n}\r\n\r\n.uncompressed-data {\r\n\tclear: left;\r\n\tmax-width: 600px;\r\n}\r\n\r\n.delete-old-directories {\r\n\tpadding: 8px;\r\n\tpadding-bottom: 12px;\r\n}\r\n\r\n.active-jobs {\r\n\tmin-width: 480px;\r\n\tmin-height: 48px;\r\n\ttext-align: center;\r\n\tmargin-top: 4px;\r\n\tpadding: 8px;\r\n\tborder: 1px solid;\r\n\tfloat: left;\r\n\tclear: left;\r\n}\r\n\r\n.job-id {\r\n\tmin-width: 480px;\r\n\tmargin-top: 4px;\r\n\tpadding: 8px;\r\n\tborder: 1px solid;\r\n\tclear: left;\r\n\tfloat: left;\r\n}\r\n\r\n.next-resumption {\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraft_percentage {\r\n\tz-index: -1;\r\n\tposition: absolute;\r\n\tleft: 0px;\r\n\ttop: 0px;\r\n\ttext-align: center;\r\n\tbackground-color: #F6A828;\r\n}\r\n\r\n.curstage {\r\n\tborder-radius: 4px;\r\n\tmargin-top: 8px;\r\n\tpadding-top: 4px;\r\n\tborder: 1px solid #AAA;\r\n\twidth: 100%;\r\n\theight: 22px;\r\n\tposition: relative;\r\n\ttext-align: center;\r\n\tfont-style: italic;\r\n}\r\n\r\n.retain-files {\r\n\twidth: 48px;\r\n}\r\n\r\n.backup-interval-description tr td div {\r\n\tmax-width: 670px;\r\n}\r\n\r\n#updraft-manualdecrypt-modal {\r\n\twidth: 85%;\r\n\tmargin: 6px;\r\n\tmargin-left: 100px;\r\n}\r\n\r\n.directory-permissions {\r\n\tfont-size: 110%;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.double-warning {\r\n\tborder: 1px solid;\r\n\tpadding: 6px;\r\n}\r\n\r\n.raw-backup-info {\r\n\tfont-style: italic;\r\n\tfont-weight: bold;\r\n\tfont-size: 120%;\r\n}\r\n\r\n.updraft_existingbackup_date {\r\n\twidth: 22%;\r\n\tmax-width: 140px;\r\n}\r\n\r\n.existing-backups-table {\r\n\tmargin-top: 20px;\r\n\tmargin-left: 20px;\r\n\twidth: 80%;\r\n}\r\n\r\n.tr-bottom-4 {\r\n\tmargin-bottom: 4px;\r\n}\r\n\r\n.form-table .backup-date {\r\n\twidth: 172px;\r\n\tpadding: 0;\r\n\tpadding-left: 15px;\r\n}\r\n\r\n.form-table .backup-data {\r\n\twidth: 426px;\r\n\tpadding: 0;\r\n\tpadding-left: 15px;\r\n}\r\n\r\n.form-table .updraft_backup_actions {\r\n\twidth: 272px;\r\n\tpadding: 0 0 10px 15px;\r\n}\r\n\r\n.existing-date {\r\n\t-webkit-box-sizing: border-box;\r\n\t-moz-box-sizing: border-box;\r\n\tbox-sizing: border-box;\r\n\tmax-width: 140px;\r\n\twidth: 25%;\r\n}\r\n\r\n.line-break-tr {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.line-break-td {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.td-line-color {\r\n\theight: 2px;\r\n\tbackground-color: #888;\r\n}\r\n\r\n.raw-backup {\r\n\tmax-width: 140px;\r\n}\r\n\r\n.existing-backups-actions {\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.existing-backups-border {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.existing-backups-border > td {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.existing-backups-border > div {\r\n\theight: 2px;\r\n\tbackground-color: #AAA;\r\n}\r\n\r\n.updraft_existing_backup_date {\r\n\tmax-width: 140px;\r\n}\r\n\r\n.restore-button {\r\n\tmargin-right: 6px;\r\n\tfloat: left;\r\n\tclear: none;\r\n}\r\n\r\n.updraftplus-remove {\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n}\r\n\r\n.before-restore-button {\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.table-separator-tr {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.table-separator-td {\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\n.end-of-table-div {\r\n\theight: 2px;\r\n\tbackground-color: #AAA;\r\n}\r\n\r\n.last-backup-job {\r\n\tpadding-top: 3% !important;\r\n}\r\n\r\n.line-height-03 {\r\n\tline-height: 0.3 !important;\r\n}\r\n\r\n.line-height-13 {\r\n\tline-height: 1.3 !important;\r\n}\r\n\r\n.line-height-23 {\r\n\tline-height: 2.3 !important;\r\n}\r\n\r\n#updraft_diskspaceused {\r\n\tcolor: #DF6926;\r\n}\r\n\r\n.updraft_premium_description_list {\r\n\ttext-align: left;\r\n}\r\n\r\n#updraft_delete_old_dirs_pagediv {\r\n\tpadding-bottom: 10px;\r\n}\r\n\r\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\r\n\tpadding: 0;\r\n}*/\r\n\r\n.job-id {\r\n\tmargin: 0 auto;\r\n\twidth: 20%;\r\n}\r\n\r\n.updraft_all-files {\r\n\tcolor: #DF6926;\r\n}\r\n\r\n/* Time + scheduling add-on*/\r\n.fix-time {\r\n\twidth: 70px;\r\n}\r\n\r\n.retain-files {\r\n\twidth: 70px;\r\n}\r\n\r\n.number-input {\r\n\tmin-width: 50px;\r\n\tmax-width: 70px;\r\n}\r\n\r\n.additional-rule-width {\r\n\tmin-width: 60px;\r\n\tmax-width: 70px;\r\n}\r\n\r\n/* Add-ons */\r\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\r\n\r\n.dashicons {\r\n\tline-height: inherit;\r\n\tfont-size: inherit;\r\n}\r\n\r\n.addon-logo-150 {\r\n\tmargin-left: 30px;\r\n\tmargin-top: 33px;\r\n\theight: 125px;\r\n\twidth: 150px;\r\n}\r\n\r\n.margin-bottom-50 {\r\n\tmargin-bottom: 50px;\r\n}\r\n\r\n.premium-container {\r\n\twidth: 80%;\r\n}\r\n\r\n/* Main Header */\r\n\r\n.main-header {\r\n\tbackground-color: #DF6926;\r\n\theight: 200px;\r\n\twidth: 100%;\r\n}\r\n\r\n.button-add-to-cart {\r\n\tcolor: white;\r\n\tborder-color: white;\r\n\tfloat: none;\r\n\tmargin-right: 17px;\r\n}\r\n\r\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\r\n\tborder-color: #A0A5AA;\r\n\tcolor: #A0A5AA;\r\n}\r\n\r\n.addon-title {\r\n\tmargin-top: 25px;\r\n}\r\n\r\n.addon-text {\r\n\tmargin-top: 75px;\r\n}\r\n\r\n.image-main-div {\r\n\twidth: 25%;\r\n\tfloat: left;\r\n}\r\n\r\n.text-main-div {\r\n\twidth: 60%;\r\n\tfloat: left;\r\n\ttext-align: center;\r\n\tcolor: white;\r\n\tmargin-top: 16px;\r\n}\r\n\r\n.text-main-div-title {\r\n\tfont-weight: bold !important;\r\n\tcolor: white;\r\n\ttext-align: center;\r\n}\r\n\r\n.text-main-div-paragraph {\r\n\tcolor: white;\r\n}\r\n\r\n/* End main header */\r\n\r\n/* Vault icons */\r\n\r\n.updraftplus-vault-cta {\r\n\twidth: 100%;\r\n\ttext-align: center;\r\n\tmargin-bottom: 50px;\r\n}\r\n\r\n.updraftplus-vault-cta h1 {\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraftvault-buy {\r\n\twidth: 225px;\r\n\theight: 225px;\r\n\tborder: 2px solid #777;\r\n\tdisplay: inline-table;\r\n\tmargin: 0 auto;\r\n\tmargin-right: 50px;\r\n\tposition: relative;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault {\r\n\twidth: 275px;\r\n\theight: 275px;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\r\n\tright: 21%;\r\n\tfont-size: 16px;\r\n\tborder-width: 4px !important;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.updraftvault-buy .button-purchase {\r\n\tright: 24%;\r\n\tmargin-left: 0;\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.updraftvault-buy hr {\r\n\theight: 2px;\r\n\tbackground-color: #777;\r\n\tmargin-top: 18px;\r\n}\r\n\r\n.right {\r\n\tmargin-right: 0px;\r\n}\r\n\r\n.updraftvault-buy .addon-logo-100 {\r\n\theight: 100px;\r\n\twidth: 125px;\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.updraftvault-buy .addon-logo-large {\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.updraftvault-buy .button-buy-vault {\r\n\tfont-size: 12px;\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tborder-width: 2px !important;\r\n\tposition: absolute;\r\n\tright: 29%;\r\n\tbottom: 2%;\r\n}\r\n\r\n.premium-addon-div .button-purchase {\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.updraftvault-buy .button-buy-vault:hover {\r\n\tborder-color: darkgrey;\r\n\tcolor: darkgrey;\r\n}\r\n\r\n/* End Vault icons */\r\n\r\n/* Premium addons */\r\n\r\n.premium-addons {\r\n\tmargin-top: 80px;\r\n\twidth: 100%;\r\n\tmargin: 0 auto;\r\n\tdisplay: table;\r\n}\r\n\r\n.addon-list {\r\n\t/* margin-left: 32px; */\r\n\tdisplay: table;\r\n\ttext-align: center;\r\n}\r\n\r\n.premium-addons h1 {\r\n\ttext-align: center;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.premium-addons p {\r\n\ttext-align: center;\r\n}\r\n\r\n.premium-addons .premium-addon-div {\r\n\twidth: 200px;\r\n\theight: 250px;\r\n\tborder: 2px solid #777;\r\n\tdisplay: inline-table;\r\n\tmargin: 0 auto;\r\n\tmargin-right: 25px;\r\n\tmargin-top: 25px;\r\n\ttext-align: center;\r\n\tposition: relative;\r\n}\r\n\r\n.premium-addons .premium-addon-div p {\r\n\tmargin-left: 2px;\r\n\tmargin-right: 2px;\r\n}\r\n\r\n.premium-addons .premium-addon-div img {\r\n\twidth: auto;\r\n\theight: 50px;\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .hr-alignment {\r\n\tmargin-top: 44px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .dropbox-logo {\r\n\theight: 39px;\r\n\twidth: 150px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\r\n\twidth: 75%;\r\n\theight: 24px;\r\n}\r\n\r\n.button-purchase {\r\n\tfont-size: 12px;\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tborder-width: 2px !important;\r\n\tposition: absolute;\r\n\tright: 25%;\r\n\tbottom: 2%;\r\n}\r\n\r\n.button-purchase:hover {\r\n\tcolor: darkgrey;\r\n\tborder-color: darkgrey;\r\n}\r\n\r\n.premium-addons .premium-addon-div hr {\r\n\theight: 2px;\r\n\tbackground-color: #777;\r\n\tmargin-top: 18px;\r\n}\r\n\r\n.premium-addon-div p {\r\n\tfont-style: italic;\r\n}\r\n\r\n.addon-list > .premium-addon-div > .onedrive-fix,\r\n.addon-list > .premium-addon-div > .azure-logo {\r\n\tmargin-top: 33px;\r\n}\r\n\r\n.addon-list > .premium-addon-div > .dropbox-fix {\r\n\tmargin-top: 18px;\r\n}\r\n\r\n/* End premium addons */\r\n\r\n\r\n/* Forgotton something (that is the name of the div rather than a mental note!) */\r\n\r\n.premium-forgotton-something {\r\n\tmargin-top: 5%;\r\n}\r\n\r\n.premium-forgotton-something h1 {\r\n\ttext-align: center;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.premium-forgotton-something p {\r\n\ttext-align: center;\r\n\tfont-weight: normal;\r\n}\r\n\r\n.premium-forgotton-something .button-faq {\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tmargin: 0 auto;\r\n\tdisplay: table;\r\n}\r\n\r\n.premium-forgotton-something .button-faq:hover {\r\n\tcolor: #777;\r\n\tborder-color: #777;\r\n}\r\n\r\n/* End of forgotton something */\r\n\r\n.updraftplusmethod.updraftvault #vaultlogo {\r\n\tpadding-left: 40px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault_primary_option {\r\n\tfloat: left;\r\n\twidth: 50%;\r\n\ttext-align: center;\r\n\tpadding-bottom: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault_primary_option div {\r\n\tclear: right;\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .clear-left {\r\n\tclear: left;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .padding-top-20px {\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .padding-top-14px {\r\n\tpadding-top: 14px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\r\n\tfont-size: 18px !important;\r\n\tpadding-bottom: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\r\n\tmargin-top: 8px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\r\n\tmargin-right: 10px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_email {\r\n\twidth: 280px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_pass {\r\n\twidth: 200px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #vault-is-connected {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\r\n\tclear: left;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option {\r\n\tfloat: left;\r\n\twidth: 33%;\r\n\ttext-align: center;\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\r\n\tfont-size: 200%;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\r\n\tclear: both;\r\n\tfont-size: 150%;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\r\n\tclear: both;\r\n\tfont-size: 115%;\r\n\tfont-style: italic;\r\n}\r\n\r\n/* Automation Backup Advert by B */\r\n.autobackup-image {\r\n/* \tdisplay: inline-block; */\r\n/*\tmin-width: 10%;\r\n\tmax-width:25%;*/\r\n/*\tfloat: left;*/\r\n\tclear: left;\r\n\tfloat: left;\r\n\twidth: 110px;\r\n\theight: 110px;\r\n}\r\n\r\n.autobackup-description {\r\n\twidth: 100%;\r\n}\r\n\r\n.advert-description {\r\n\tfloat: left;\r\n\tclear: right;\r\n\tpadding: 4px 10px 8px 10px;\r\n\twidth: 70%;\r\n\tclear: right;\r\n\tvertical-align: top;\r\n}\r\n\r\n.advert-btn {\r\n\tdisplay: inline-block;\r\n\tmin-width: 10%;\r\n\tvertical-align: top;\r\n\tmargin-bottom: 8px;\r\n}\r\n\r\n.advert-btn:first-of-type {\r\n\tmargin-top: 25px;\r\n}\r\n\r\n.advert-btn a {\r\n\tdisplay: block;\r\n\tcursor: pointer;\r\n}\r\n\r\na.btn-get-started {\r\n\tbackground: #FFF;\r\n\tborder: 2px solid #DF6926;\r\n\tborder-radius: 4px;\r\n\tcolor: #DF6926;\r\n\tdisplay: inline-block;\r\n\tmargin-left: 10px !important;\r\n\tmargin-bottom: 7px !important;\r\n\tfont-size: 18px !important;\r\n\tline-height: 20px;\r\n\tmin-height: 28px;\r\n\tpadding: 11px 10px 5px 10px;\r\n\ttext-transform: uppercase;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.circle-dblarrow {\r\n\tborder: 1px solid #DF6926;\r\n\tborder-radius: 100%;\r\n\tdisplay: inline-block;\r\n\tfont-size: 17px;\r\n\tline-height: 17px;\r\n\tmargin-left: 5px;\r\n\twidth: 20px;\r\n\theight: 20px;\r\n\ttext-align: center;\r\n}\r\n\r\n@media screen and (max-width: 782px) {\r\n/*\t.advert-description {\r\n\t\tmin-width: 75%;\r\n\t\tmargin-bottom: 5px;\r\n\t}\r\n\r\n\t.advert-btn {\r\n\t\tmargin-top: 15px;\r\n\t\tmargin-left:86px;\r\n\t\tmin-width: 100%;\r\n\t}*/\r\n}\r\n\r\n/* End Automation Backup Advert by B */\r\n/* New Responsive Pretty Advanced Settings */\r\n.expertmode .advanced_settings_container {\r\n\theight: auto;\r\n\toverflow: hidden;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu {\r\n\tfloat: none;\r\n\tborder-bottom: 1px solid rgb(204, 204, 204);\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content {\r\n\tpadding-top: 5px;\r\n\tfloat: none;\r\n\twidth: auto;\r\n\toverflow: auto;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content h3 {\r\n\tmargin-top: 5px !important;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\r\n\tdisplay: none;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\r\n\tdisplay: block;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\r\n\tdisplay: inline-block;\r\n\tcursor: pointer;\r\n\tpadding: 5px;\r\n\tcolor: #000;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\r\n\tbackground-color: #EAEAEA;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\r\n\tbackground-color: #3498DB;\r\n\tcolor: #FFF;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\r\n\tbackground-color: #72C5FD;\r\n\tcolor: #FFF;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\r\n\theight: auto !important;\r\n}\r\n\r\ndiv#updraft-wrap a {\r\n\tcursor: pointer !important;\r\n}\r\n\r\n@media screen and (min-width: 670px) {\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\r\n\t\tfloat: left;\r\n\t\twidth: 215px;\r\n\t\tborder-right: 1px solid rgb(204, 204, 204);\r\n\t\tborder-bottom: none;\r\n\t}\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_content {\r\n\t\tpadding-left: 10px;\r\n\t\tpadding-top: 0px;\r\n\t}\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\r\n\t\tdisplay: block;\r\n\t}\r\n\r\n}\r\n"]}
1
+ {"version":3,"sources":["css/admin.css"],"names":[],"mappings":"AAAA,uBAAuB;AACvB;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED,2BAA2B;;AAE3B,kBAAkB;AAClB;CACC,sBAAsB;CACtB;;AAED;CACC,kBAAkB;CAClB;;AAED,sBAAsB;AACtB,eAAe;AACf;CACC,mBAAmB;CACnB;;AAED,sBAAsB;AACtB,aAAa;AACb;CACC,sBAAsB;CACtB;;AAED,oBAAoB;;AAEpB;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,iBAAiB;CACjB;;AAED,iBAAiB;;AAEjB;CACC,mBAAmB;CACnB,kBAAkB;CAClB,uBAAuB;CACvB,aAAa;CACb,iBAAiB;CACjB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB;;AAED,qBAAqB;;AAErB,kBAAkB;AAClB;CACC,kBAAkB;CAClB,oBAAoB;CACpB,oBAAoB;CACpB,gBAAgB;CAChB,kBAAkB;CAClB,oBAAoB;CACpB,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB,wBAAwB;CACxB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,yBAAyB;CACzB,uBAAuB;CACvB,mBAAmB;CACnB,mBAAmB;CACnB,kBAAkB;CAClB,qBAAqB;CACrB,eAAe;CACf,sBAAsB;CACtB;;AAED;CACC,gCAAgC;CAChC,yBAAyB;CACzB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb,mBAAmB;CACnB;;AAED;;;CAGC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,yBAAyB;CACzB,gCAAgC;CAChC;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB,mBAAmB;CACnB,kBAAkB;CAClB,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,0BAA0B;CAC1B,yBAAyB;CACzB,YAAY;CACZ,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,cAAc;CACd,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED,sBAAsB;;AAEtB,4BAA4B;;AAE5B;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX;;AAED;CACC,aAAa;CACb,cAAc;CACd,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,eAAe;CACf,aAAa;CACb,eAAe;CACf,mBAAmB;CACnB,UAAU;CACV,UAAU;CACV;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED,mCAAmC;;AAEnC;CACC,iBAAiB;CACjB;;AAED;CACC,uBAAuB;CACvB;;AAED;CACC,cAAc;CACd;;AAED;CACC,8BAA8B;CAC9B,aAAa;CACb,eAAe;CACf,2BAA2B;CAC3B,gBAAgB;CAChB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,4BAA4B;CAC5B,8BAA8B;CAC9B,2BAA2B;CAC3B,iBAAiB;CACjB,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB,kBAAkB;CAClB,mBAAmB;CACnB,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,uBAAuB;CACvB;;AAED;CACC,WAAW;CACX;;AAED,mBAAmB;;AAEnB,oEAAoE;AACpE;;CAEC,wBAAwB;CACxB;;AAED;;CAEC,gCAAgC;CAChC;;AAED;;CAEC,+BAA+B;CAC/B;;AAED;;CAEC,wBAAwB;CACxB;;AAED,+BAA+B;AAC/B;CACC,mBAAmB;CACnB,cAAc;CACd,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,cAAc;CACd,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,mBAAmB;CACnB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED,8BAA8B;AAC9B;CACC,mBAAmB;CACnB,cAAc;CACd,cAAc;CACd,YAAY;CACZ,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,OAAO;CACP,SAAS;CACT;;AAED;CACC,aAAa;CACb,YAAY;CACZ,eAAe;CACf;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB,2BAA2B;CAC3B;;AAED;CACC,aAAa;CACb;;AAED;CACC,0BAA0B;CAC1B,0BAA0B;CAC1B,aAAa;CACb,uBAAuB;CACvB,kBAAkB;CAClB;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,aAAa;CACb,aAAa;CACb,kBAAkB;CAClB,mBAAmB;CACnB,YAAY;CACZ;;AAED;CACC,aAAa;CACb,8BAA8B;CAC9B,YAAY;CACZ,YAAY;CACZ,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,uBAAuB;CACvB,YAAY;CACZ,uBAAuB;CACvB,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,yBAAyB;CACzB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B;;AAED;CACC,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,cAAc;CACd;;AAED;CACC,oBAAoB;CACpB,aAAa;CACb;;AAED;CACC,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,uBAAuB;CACvB,cAAc;CACd;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,eAAe;CACf;;AAED;CACC,YAAY;CACZ;;AAED;CACC,qCAAqC;CACrC,kBAAkB;CAClB;;AAED;CACC,wBAAwB;CACxB,0BAA0B;CAC1B,gBAAgB;CAChB,wBAAwB;CACxB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,aAAa;CACb;;AAED;CACC,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,cAAc;CACd,aAAa;CACb;;AAED;CACC,UAAU;CACV,oBAAoB;CACpB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,WAAW;CACX,gBAAgB;CAChB,kBAAkB;CAClB,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,cAAc;CACd;;AAED;CACC,gBAAgB;CAChB,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,kBAAkB;CAClB,cAAc;CACd,YAAY;CACZ;;AAED;CACC,cAAc;CACd;;AAED;;CAEC;EACC,eAAe;EACf,YAAY;EACZ,mBAAmB;EACnB;;CAED;;AAED,oCAAoC;AACpC;CACC,WAAW;CACX;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;;AAEH;CACC,iBAAiB;CACjB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,+BAA+B;CAC/B,uBAAuB;CACvB,wBAAwB;CACxB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,YAAY;CACZ,YAAY;CACZ,yBAAyB;CACzB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,eAAe;CACf;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,uBAAuB;CACvB,aAAa;CACb,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,iBAAiB;CACjB,gBAAgB;CAChB,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB;;AAED;CACC,cAAc;CACd,gBAAgB;CAChB,WAAW;CACX,SAAS;CACT,kBAAkB;CAClB,mBAAmB;CACnB,+BAA+B;CAC/B,aAAa;CACb;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB,gBAAgB;CAChB;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,sBAAsB;CACtB,mBAAmB;CACnB,SAAS;CACT;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,2BAA2B;CAC3B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf;;AAED;CACC,cAAc;CACd;;AAED;CACC,cAAc;CACd,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,wBAAwB;CACxB,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB,iBAAiB;CACjB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,qBAAqB;CACrB;;AAED;CACC,iBAAiB;CACjB,iBAAiB;CACjB,mBAAmB;CACnB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB,gBAAgB;CAChB,aAAa;CACb,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB,UAAU;CACV,SAAS;CACT,mBAAmB;CACnB,0BAA0B;CAC1B;;AAED;CACC,mBAAmB;CACnB,gBAAgB;CAChB,iBAAiB;CACjB,uBAAuB;CACvB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB,aAAa;CACb;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,WAAW;CACX,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,uBAAuB;CACvB;;AAED;CAGC,uBAAuB;CACvB,iBAAiB;CACjB,WAAW;CACX;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB,YAAY;CACZ,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,4BAA4B;CAC5B;;AAED;CACC,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,qBAAqB;CACrB;;AAED;;GAEG;;AAEH;CACC,eAAe;CACf,WAAW;CACX;;AAED;CACC,eAAe;CACf;;AAED,6BAA6B;AAC7B;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,gBAAgB;CAChB;;AAED,aAAa;AACb,oHAAoH;;AAEpH;CACC,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB,iBAAiB;CACjB,cAAc;CACd,aAAa;CACb;;AAED;CACC,oBAAoB;CACpB;;AAED;CACC,WAAW;CACX;;AAED,iBAAiB;;AAEjB;CACC,0BAA0B;CAC1B,cAAc;CACd,YAAY;CACZ;;AAED;CACC,aAAa;CACb,oBAAoB;CACpB,YAAY;CACZ,mBAAmB;CACnB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,WAAW;CACX,YAAY;CACZ;;AAED;CACC,WAAW;CACX,YAAY;CACZ,mBAAmB;CACnB,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,6BAA6B;CAC7B,aAAa;CACb,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED,qBAAqB;;AAErB,iBAAiB;;AAEjB;CACC,YAAY;CACZ,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd;;AAED;CACC,WAAW;CACX,gBAAgB;CAChB,6BAA6B;CAC7B;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,WAAW;CACX,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,cAAc;CACd,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,uBAAuB;CACvB,gBAAgB;CAChB;;AAED,qBAAqB;;AAErB,oBAAoB;;AAEpB;CACC,iBAAiB;CACjB,YAAY;CACZ,eAAe;CACf,eAAe;CACf;;AAED;CACC,wBAAwB;CACxB,eAAe;CACf,mBAAmB;CACnB;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb,cAAc;CACd,uBAAuB;CACvB,sBAAsB;CACtB,eAAe;CACf,mBAAmB;CACnB,iBAAiB;CACjB,mBAAmB;CACnB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,aAAa;CACb,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,aAAa;CACb,aAAa;CACb;;AAED;CACC,WAAW;CACX,aAAa;CACb;;AAED;CACC,gBAAgB;CAChB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,mBAAmB;CACnB,WAAW;CACX,WAAW;CACX;;AAED;CACC,gBAAgB;CAChB,uBAAuB;CACvB;;AAED;CACC,YAAY;CACZ,uBAAuB;CACvB,iBAAiB;CACjB;;AAED;CACC,mBAAmB;CACnB;;AAED;;CAEC,iBAAiB;CACjB;;AAED;CACC,iBAAiB;CACjB;;AAED,wBAAwB;;;AAGxB,mFAAmF;;AAEnF;CACC,eAAe;CACf;;AAED;CACC,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,mBAAmB;CACnB,oBAAoB;CACpB;;AAED;CACC,eAAe;CACf,sBAAsB;CACtB,eAAe;CACf,eAAe;CACf;;AAED;CACC,YAAY;CACZ,mBAAmB;CACnB;;AAED,gCAAgC;;AAEhC;CACC,mBAAmB;CACnB;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,qBAAqB;CACrB;;AAED;CACC,aAAa;CACb,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,kBAAkB;CAClB;;AAED;CACC,2BAA2B;CAC3B,qBAAqB;CACrB;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,mBAAmB;CACnB;;AAED;CACC,aAAa;CACb;;AAED;CACC,aAAa;CACb;;AAED;CACC,UAAU;CACV,WAAW;CACX;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,WAAW;CACX,mBAAmB;CACnB,kBAAkB;CAClB;;AAED;CACC,gBAAgB;CAChB,kBAAkB;CAClB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB;;AAED;CACC,YAAY;CACZ,gBAAgB;CAChB,mBAAmB;CACnB;;AAED,mCAAmC;AACnC;AACA,6BAA6B;AAC7B;iBACiB;AACjB,iBAAiB;CAChB,YAAY;CACZ,YAAY;CACZ,aAAa;CACb,cAAc;CACd;;AAED;CACC,YAAY;CACZ;;AAED;CACC,YAAY;CACZ,aAAa;CACb,2BAA2B;CAC3B,WAAW;CACX,aAAa;CACb,oBAAoB;CACpB;;AAED;CACC,sBAAsB;CACtB,eAAe;CACf,oBAAoB;CACpB,mBAAmB;CACnB;;AAED;CACC,iBAAiB;CACjB;;AAED;CACC,eAAe;CACf,gBAAgB;CAChB;;AAED;CACC,iBAAiB;CACjB,0BAA0B;CAC1B,mBAAmB;CACnB,eAAe;CACf,sBAAsB;CACtB,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,kBAAkB;CAClB,iBAAiB;CACjB,4BAA4B;CAC5B,0BAA0B;CAC1B,sBAAsB;CACtB;;AAED;CACC,0BAA0B;CAC1B,oBAAoB;CACpB,sBAAsB;CACtB,gBAAgB;CAChB,kBAAkB;CAClB,iBAAiB;CACjB,YAAY;CACZ,aAAa;CACb,mBAAmB;CACnB;;AAED;AACA;;;;;;;;;IASI;CACH;;AAED,uCAAuC;AACvC,6CAA6C;AAC7C;CACC,aAAa;CACb,iBAAiB;CACjB;;AAED;CACC,YAAY;CACZ,4CAA4C;CAC5C;;AAED;CACC,iBAAiB;CACjB,YAAY;CACZ,YAAY;CACZ,eAAe;CACf;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,cAAc;CACd;;AAED;CACC,eAAe;CACf;;AAED;CACC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,YAAY;CACZ;;AAED;CACC,gBAAgB;CAChB;;AAED;CACC,0BAA0B;CAC1B;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,0BAA0B;CAC1B,YAAY;CACZ;;AAED;CACC,wBAAwB;CACxB;;AAED;CACC,2BAA2B;CAC3B;;AAED;CACC,cAAc;CACd;;AAED;CACC,kBAAkB;CAClB,mBAAmB;CACnB,qBAAqB;CACrB,mBAAmB;CACnB;;AAED;CACC,kBAAkB;CAClB;;AAED;;CAEC;EACC,YAAY;EACZ,aAAa;EACb,2CAA2C;EAC3C,oBAAoB;EACpB;;CAED;EACC,mBAAmB;EACnB,iBAAiB;EACjB;;CAED;EACC,eAAe;EACf;;CAED","file":"admin.min.css","sourcesContent":["/* Widths and sizing */\r\n.max-width-600 {\r\n\tmax-width: 600px;\r\n}\r\n\r\n.width-900 {\r\n\twidth: 900px;\r\n}\r\n\r\n.width-80 {\r\n\twidth: 80%;\r\n}\r\n\r\n/* End widths and sizing */\r\n\r\n/* Font styling */\r\n.no-decoration {\r\n\ttext-decoration: none;\r\n}\r\n\r\n.bold {\r\n\tfont-weight: bold;\r\n}\r\n\r\n/* End font styling */\r\n/* Alignment */\r\n.center-align-td {\r\n\ttext-align: center;\r\n}\r\n\r\n/* End of Alignment */\r\n/* Padding */\r\n.remove-padding {\r\n\tpadding: 0 !important;\r\n}\r\n\r\n/* End of padding */\r\n\r\n.updraft-text-center {\r\n\ttext-align: center;\r\n}\r\n\r\n.autobackup {\r\n\tpadding: 6px;\r\n\tmargin: 8px 0px;\r\n}\r\n\r\nul .disc {\r\n\tlist-style: disc inside;\r\n}\r\n\r\n.dashicons-log-fix {\r\n\tdisplay: inherit;\r\n}\r\n\r\n/* Input boxes */\r\n\r\ninput {\r\n\tborder-radius: 4px;\r\n\tline-height: 1.42;\r\n\tborder: 1px solid #CCC;\r\n\theight: 27px;\r\n\tpadding: 2px 6px;\r\n\tcolor: #555;\r\n}\r\n\r\ninput[type=\"text\"] {\r\n\tfont-size: 14px;\r\n}\r\n\r\ninput[type=\"number\"] {\r\n\theight: 31px;\r\n}\r\n\r\nselect {\r\n\tborder-radius: 4px;\r\n}\r\n\r\n/* End input boxes */\r\n\r\n/* Main Buttons */\r\n.main-dashboard-buttons {\r\n\tborder-width: 4px;\r\n\tborder-radius: 12px;\r\n\tletter-spacing: 0px;\r\n\tfont-size: 17px;\r\n\tfont-weight: bold;\r\n\tpadding-left: 0.7em;\r\n\tpadding-right: 2em;\r\n\tpadding: 0.3em 1em;\r\n\tline-height: 1.7em;\r\n\tbackground: transparent;\r\n\tposition: relative;\r\n\tborder: 2px solid;\r\n\ttransition: all 0.2s;\r\n\tvertical-align: baseline;\r\n\tbox-sizing: border-box;\r\n\ttext-align: center;\r\n\tline-height: 1.3em;\r\n\tmargin-left: .3em;\r\n\ttext-transform: none;\r\n\tline-height: 1;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.button-restore {\r\n\tborder-color: rgb(98, 158, 192);\r\n\tcolor: rgb(98, 158, 192);\r\n}\r\n\r\n.dashboard-main-sizing {\r\n\tborder-width: 4px;\r\n\twidth: 190px;\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.button-restore:hover, .button-migrate:hover, .button-backup:hover,\r\n.button-view-log:hover, .button-mass-selectors:hover,\r\n.button-delete:hover, .button-entity-backup:hover, .udp-button-primary:hover {\r\n\tborder-color: #DF6926;\r\n\tcolor: #DF6926;\r\n}\r\n\r\n.button-migrate {\r\n\tcolor: rgb(238, 169, 32);\r\n\tborder-color: rgb(238, 169, 32);\r\n}\r\n\r\n.button-backup {\r\n\tborder-color: #84CA1B;\r\n\tcolor: #84CA1B;\r\n}\r\n\r\n.existing-backups-buttons {\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 3px;\r\n}\r\n\r\n.existing-backups-restore-buttons {\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 3px;\r\n}\r\n\r\n.button-delete {\r\n\tcolor: #E23900;\r\n\tborder-color: #E23900;\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-right: 10px;\r\n}\r\n\r\n.button-view-log, .button-mass-selectors {\r\n\tcolor: darkgrey;\r\n\tborder-color: darkgrey;\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-top: -1px;\r\n}\r\n\r\n.button-view-log {\r\n\twidth: 120px;\r\n}\r\n\r\n.button-existing-restore {\r\n\tfont-size: 14px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\twidth: 110px;\r\n}\r\n\r\n.main-restore {\r\n\tmargin-right: 3%;\r\n\tmargin-left: 3%;\r\n}\r\n\r\n.button-entity-backup {\r\n\tcolor: #555;\r\n\tborder-color: #555;\r\n\tfont-size: 11px;\r\n\tline-height: 1.4em;\r\n\tborder-width: 2px;\r\n\tmargin-right: 5px;\r\n}\r\n\r\n.button-select-all {\r\n\twidth: 122px;\r\n}\r\n\r\n.button-deselect {\r\n\twidth: 92px;\r\n}\r\n\r\n#ud_massactions > .display-flex > .mass-selectors-margins {\r\n\tmargin-right: -4px;\r\n}\r\n\r\n.udp-button-primary {\r\n\tborder-width: 4px;\r\n\tcolor: #0073AA;\r\n\tborder-color: #0073AA;\r\n\tfont-size: 14px;\r\n\theight: 40px;\r\n}\r\n\r\n#ud_massactions .button-delete {\r\n\tmargin-right: 0px;\r\n}\r\n\r\n.stored_local {\r\n\tborder-radius: 5px;\r\n\tbackground-color: #007FE7;\r\n\tpadding: 3px 5px 5px 5px;\r\n\tcolor: #FFF;\r\n\tfont-size: 75%;\r\n}\r\n\r\n.form-table td.updraft_existingbackup_date {\r\n\tpadding-bottom: 5px;\r\n}\r\n\r\nspan#updraft_lastlogcontainer {\r\n\tword-break: break-all;\r\n}\r\n\r\n.stored_icon {\r\n\theight: 1.3em;\r\n\tposition: relative;\r\n\ttop: 0.2em;\r\n}\r\n\r\n.backup_date_label .clear-right {\r\n\tclear: right;\r\n}\r\n\r\n/* End Main Buttons */\r\n\r\n/* End of common elements */\r\n\r\n.udp-logo-70 {\r\n\twidth: 70px;\r\n\theight: 70px;\r\n\tfloat: left;\r\n\tpadding-right: 25px;\r\n}\r\n\r\nh3 .thank-you {\r\n\tmargin-top: 0px;\r\n}\r\n\r\n.ws_advert {\r\n\tmax-width: 800px;\r\n\tfont-size: 140%;\r\n\tline-height: 140%;\r\n\tpadding: 14px;\r\n\tclear: left;\r\n}\r\n\r\n.dismiss-dash-notice {\r\n\tfloat: right;\r\n\tposition: relative;\r\n\ttop: -20px;\r\n}\r\n\r\n#updraft_report_cell .updraft_reportbox {\r\n\tpadding: 8px;\r\n\tmargin: 8px 0;\r\n\tborder: 1px dotted;\r\n\tclear: left;\r\n\tfloat: left;\r\n}\r\n\r\n#updraft_report_cell button.updraft_reportbox_delete {\r\n\tfont-size: 50%;\r\n\tfloat: right;\r\n\tpadding: 0 3px;\r\n\tposition: relative;\r\n\ttop: -4px;\r\n\tleft: 4px;\r\n}\r\n\r\n#updraft-navtab-settings-content .updraft-test-button {\r\n\tfont-size: 18px !important;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_checkbox {\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_email {\r\n\twidth: 300px;\r\n}\r\n\r\n#updraft_report_cell .updraft_report_another_p {\r\n\tclear: left;\r\n}\r\n\r\n/* Taken straight from admin.php */\r\n\r\n#updraft-navtab-settings-content table.form-table p {\r\n\tmax-width: 700px;\r\n}\r\n\r\n#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected {\r\n\tbackground-color: #CCC;\r\n}\r\n\r\n.updraft_settings_sectionheading {\r\n\tdisplay: none;\r\n}\r\n\r\n.updraft-backupentitybutton-disabled {\r\n\tbackground-color: transparent;\r\n\tborder: none;\r\n\tcolor: #0074A2;\r\n\ttext-decoration: underline;\r\n\tcursor: pointer;\r\n\tclear: none;\r\n\tfloat: left;\r\n}\r\n\r\n.updraft-backupentitybutton {\r\n\tmargin-left: 8px;\r\n}\r\n\r\n.updraft-bigbutton {\r\n\tpadding: 2px 0px !important;\r\n\tmargin-right: 14px !important;\r\n\tfont-size: 22px !important;\r\n\tmin-height: 32px;\r\n\tmin-width: 180px;\r\n}\r\n\r\n.updraft_debugrow th {\r\n\tfloat: right;\r\n\ttext-align: right;\r\n\tfont-weight: bold;\r\n\tpadding-right: 8px;\r\n\tmin-width: 140px;\r\n}\r\n\r\n.updraft_debugrow td {\r\n\tmin-width: 300px;\r\n\tvertical-align: bottom;\r\n}\r\n\r\n#updraft_webdav_host_error {\r\n\tcolor: red;\r\n}\r\n\r\n/* jstree styles */\r\n\r\n/* these styles hide the dots from the parent but keep the arrows */\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-node,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-node {\r\n\tbackground: transparent;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-open > .jstree-ocl {\r\n\tbackground-position: -36px -4px;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-closed> .jstree-ocl {\r\n\tbackground-position: -4px -4px;\r\n}\r\n\r\n#updraft_zip_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl,\r\n#updraft_more_files_jstree .jstree-container-ul > .jstree-leaf> .jstree-ocl {\r\n\tbackground: transparent;\r\n}\r\n\r\n/* zip browser jstree styles */\r\n#updraft_zip_files_container {\r\n\tposition: relative;\r\n\theight: 450px;\r\n\toverflow: none;\r\n}\r\n\r\n#updraft_zip_info_container {\r\n\tposition: relative;\r\n\theight: auto;\r\n\twidth: 100%;\r\n\tborder: 1px dotted;\r\n\tmargin-bottom: 5px;\r\n}\r\n\r\n#updraft_zip_info_container p {\r\n\tmargin: 1px;\r\n\tpadding-left: 10px;\r\n\tfont-size: 14px;\r\n}\r\n\r\n#updraft_zip_download_item {\r\n\tdisplay: none;\r\n\tcolor: #0073AA;\r\n\tpadding-left: 10px;\r\n}\r\n\r\n#updraft_zip_download_notice {\r\n\tpadding-left: 10px;\r\n}\r\n\r\n#updraft_zip_files_jstree_container {\r\n\tposition: relative;\r\n\tborder: 1px dotted;\r\n\theight: 80%;\r\n\twidth: 100%;\r\n\toverflow: auto;\r\n}\r\n\r\n/* More files jstree styles */\r\n#updraft_more_files_container {\r\n\tposition: relative;\r\n\tdisplay: none;\r\n\theight: 300px;\r\n\twidth: 100%;\r\n\tborder: 1px dotted;\r\n\tmargin-bottom: 5px;\r\n}\r\n\r\n#updraft_jstree_buttons {\r\n\tposition: absolute;\r\n\ttop: 0;\r\n\tright: 0;\r\n}\r\n\r\n#updraft_jstree_container {\r\n\theight: 100%;\r\n\twidth: 100%;\r\n\toverflow: auto;\r\n}\r\n\r\n#updraft_more_files_container button {\r\n\theight: 22px;\r\n\tline-height: 20px;\r\n}\r\n\r\n#updraft_jstree_confirm, #updraft_jstree_cancel {\r\n\tdisplay: none;\r\n}\r\n\r\n.updraftplus-morefiles-row-delete {\r\n\tcursor: pointer;\r\n\tcolor: red;\r\n\tfont-size: 23px !important;\r\n}\r\n\r\n.updraftplus-morefiles-row-edit {\r\n\tcursor: pointer;\r\n\tfont-size: 24px !important;\r\n}\r\n\r\n#updraft-wrap .form-table th {\r\n\twidth: 230px;\r\n}\r\n\r\n.updraftplus-remove {\r\n\tbackground-color: #C00000;\r\n\tborder: 1px solid #C00000;\r\n\theight: 22px;\r\n\tpadding: 4px 3px 0 3px;\r\n\tmargin-right: 6px;\r\n}\r\n\r\n.updraft-viewlogdiv form {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.updraft-viewlogdiv {\r\n\tbackground-color: #FFF;\r\n\tcolor: #000;\r\n\tborder: 1px solid #000;\r\n\theight: 26px;\r\n\tpadding: 0px;\r\n\tmargin: 0 4px 0 0;\r\n\tborder-radius: 3px;\r\n\tfloat: left;\r\n}\r\n\r\n.updraft-viewlogdiv input, .updraft-viewlogdiv a {\r\n\tborder: none;\r\n\tbackground-color: transparent;\r\n\tcolor: #000;\r\n\tmargin: 0px;\r\n\tpadding: 3px 4px;\r\n\tfont-size: 16px;\r\n\tline-height: 26px;\r\n}\r\n\r\n.updraft-viewlogdiv:hover {\r\n\tbackground-color: #000;\r\n\tcolor: #FFF;\r\n\tborder: 1px solid #FFF;\r\n\tcursor: pointer;\r\n}\r\n\r\n.updraft-viewlogdiv input:hover, .updraft-viewlogdiv a:hover {\r\n\tcolor: #FFF;\r\n\tcursor: pointer;\r\n}\r\n\r\n.updraftplus-remove a {\r\n\tcolor: white;\r\n\tpadding: 4px 4px 0px 4px;\r\n}\r\n\r\n.updraftplus-remove:hover {\r\n\tbackground-color: white;\r\n\tborder: 1px solid #C00000;\r\n}\r\n\r\n.updraftplus-remove a:hover {\r\n\tcolor: #C00000;\r\n}\r\n\r\n.drag-drop #drag-drop-area2 {\r\n\tborder: 4px dashed #DDD;\r\n\theight: 200px;\r\n}\r\n\r\n#drag-drop-area2 .drag-drop-inside {\r\n\tmargin: 36px auto 0;\r\n\twidth: 350px;\r\n}\r\n\r\n#filelist, #filelist2 {\r\n\twidth: 100%;\r\n}\r\n\r\n#filelist .file, #filelist2 .file, .ud_downloadstatus .file, #ud_downloadstatus2 .file {\r\n\tpadding: 5px;\r\n\tbackground: #ECECEC;\r\n\tborder: solid 1px #CCC;\r\n\tmargin: 4px 0;\r\n}\r\n\r\nul.updraft_premium_description_list {\r\n\tlist-style: disc inside;\r\n}\r\n\r\nul.updraft_premium_description_list li {\r\n\tdisplay: inline;\r\n}\r\n\r\nul.updraft_premium_description_list li::after {\r\n\tcontent: \" | \";\r\n}\r\n\r\nul.updraft_premium_description_list li.last::after {\r\n\tcontent: \"\";\r\n}\r\n\r\n.updraft_feature_cell {\r\n\tbackground-color: #F7D9C9 !important;\r\n\tpadding: 5px 10px;\r\n}\r\n\r\n.updraft_feat_table, .updraft_feat_th, .updraft_feat_table td {\r\n\tborder: 1px solid black;\r\n\tborder-collapse: collapse;\r\n\tfont-size: 120%;\r\n\tbackground-color: white;\r\n\ttext-align: center;\r\n}\r\n\r\n.updraft_feat_table p {\r\n\tpadding: 0px 10px;\r\n\tmargin: 5px 0px;\r\n\tfont-size: 16px;\r\n}\r\n\r\n.updraft_feat_table h4 {\r\n\tmargin: 5px 0px;\r\n}\r\n\r\n.updraft_feat_table .dashicons {\r\n\twidth: 25px;\r\n\theight: 25px;\r\n\tfont-size: 25px;\r\n\tline-height: 1;\r\n}\r\n\r\n.updraft_feat_table .dashicons-yes, .updraft_feat_table .updraft-yes {\r\n\tcolor: green;\r\n}\r\n\r\n.updraft_feat_table .dashicons-no-alt, .updraft_feat_table .updraft-no {\r\n\tcolor: red;\r\n}\r\n\r\n.updraft_tick_cell {\r\n\ttext-align: center;\r\n}\r\n\r\n.updraft_tick_cell img {\r\n\tmargin: 4px 0;\r\n\theight: 24px;\r\n}\r\n\r\n#filelist .fileprogress, #filelist2 .fileprogress, .ud_downloadstatus .dlfileprogress, #ud_downloadstatus2 .dlfileprogress {\r\n\twidth: 0%;\r\n\tbackground: #F6A828;\r\n\theight: 5px;\r\n}\r\n\r\n.ud_downloadstatus .raw, #ud_downloadstatus2 .raw {\r\n\tmargin-top: 8px;\r\n\tclear: left;\r\n}\r\n\r\n.ud_downloadstatus .file, #ud_downloadstatus2 .file {\r\n\tmargin-top: 8px;\r\n}\r\n\r\ntr.updraftplusmethod h3 {\r\n\tmargin: 0px;\r\n}\r\n\r\n#updraft_retain_db_rules .updraft_retain_rules_delete, #updraft_retain_files_rules .updraft_retain_rules_delete {\r\n\tcursor: pointer;\r\n\tcolor: red;\r\n\tfont-size: 120%;\r\n\tfont-weight: bold;\r\n\tborder: 0px;\r\n\tborder-radius: 3px;\r\n\tpadding: 2px;\r\n\tmargin: 0 6px;\r\n}\r\n\r\n#updraft_retain_db_rules .updraft_retain_rules_delete:hover, #updraft_retain_files_rules .updraft_retain_rules_delete:hover {\r\n\tcursor: pointer;\r\n\tcolor: white;\r\n\tbackground: red;\r\n}\r\n\r\n#updraft_backup_started {\r\n\tmax-width: 800px;\r\n\tfont-size: 140%;\r\n\tline-height: 140%;\r\n\tpadding: 14px;\r\n\tclear: left;\r\n}\r\n\r\n.udp-premium-image {\r\n\tdisplay: none;\r\n}\r\n\r\n@media screen and (min-width: 720px) {\r\n\r\n\t.udp-premium-image {\r\n\t\tdisplay: block;\r\n\t\tfloat: left;\r\n\t\tpadding-right: 5px;\r\n\t}\r\n\r\n}\r\n\r\n/* End stuff already in admin.php */\r\n#plupload-upload-ui2 {\r\n\twidth: 80%;\r\n}\r\n\r\n.backup-restored {\r\n\tpadding: 8px;\r\n}\r\n\r\n.backup-restored span {\r\n\tfont-size: 120%;\r\n}\r\n\r\n.memory-limit {\r\n\tpadding: 8px;\r\n}\r\n\r\n.updraft_list_errors {\r\n\tpadding: 8px;\r\n}\r\n\r\n/*.nav-tab {\r\n\tborder-radius: 20px 20px 0 0;\r\n\tborder-color: grey;\r\n\tborder-width: 2px;\r\n\tmargin-top: 34px;\r\n}\r\n\r\n.nav-tab:hover {\r\n\tborder-bottom: 0;\r\n}\r\n\r\n.nav-tab-active, .nav-tab-active:active {\r\n\tcolor: #df6926;\r\n\tborder-color: #D3D3D3;\r\n\tborder-width: 1px;\r\n\tborder-bottom: 0;\r\n}\r\n\r\n.nav-tab-active:focus {\r\n\tcolor: #df6926;\r\n}*/\r\n\r\n.nav-tab-wrapper {\r\n\tmargin: 14px 0px;\r\n}\r\n\r\n#updraft-poplog-content {\r\n\twhite-space: pre-wrap;\r\n}\r\n\r\n.next-backup {\r\n\tborder: 0px;\r\n\tpadding: 0px;\r\n\tmargin: 0 10px 0 0;\r\n}\r\n\r\n.not-scheduled {\r\n\tvertical-align: top !important;\r\n\tmargin: 0px !important;\r\n\tpadding: 0px !important;\r\n}\r\n\r\n.next-backup .updraft_scheduled {\r\n\t/* width: 124px;*/\r\n\tmargin: 0px;\r\n\tpadding: 2px 4px 2px 0px;\r\n}\r\n\r\n#next-backup-table-inner td {\r\n\tvertical-align: top;\r\n}\r\n\r\n.next-backup .updraft_all-files {\r\n\tcolor: blue;\r\n\tmargin: 0px;\r\n\tpadding: 2px 0px 0px 0px;\r\n}\r\n\r\n.multisite-advert-width {\r\n\twidth: 800px;\r\n}\r\n\r\n.updraft_settings_sectionheading {\r\n\tmargin-top: 6px;\r\n}\r\n\r\n.premium-upgrade-prompt {\r\n\tfont-size: 115%;\r\n}\r\n\r\n.updraft_feat_table {\r\n\tmargin-top: 30px;\r\n}\r\n\r\n.show_admin_restore_in_progress_notice {\r\n\tpadding: 8px;\r\n}\r\n\r\n.show_admin_restore_in_progress_notice .unfinished-restoration {\r\n\tfont-size: 120%;\r\n}\r\n\r\n#backupnow_includefiles_moreoptions, #backupnow_database_moreoptions {\r\n\tmargin: 4px 16px 6px 16px;\r\n\tborder: 1px dotted;\r\n\tpadding: 6px 10px;\r\n}\r\n\r\n#backupnow_database_moreoptions {\r\n\tmax-height: 250px;\r\n\toverflow: auto;\r\n}\r\n\r\n.form-table #updraft_activejobsrow .minimum-height {\r\n\tmin-height: 100px;\r\n}\r\n\r\n#updraft_lastlogmessagerow .last-message {\r\n\tpadding-top: 20px;\r\n\tdisplay: block;\r\n}\r\n\r\n.updraft_simplepie {\r\n\tvertical-align: top;\r\n}\r\n\r\n.download-backups {\r\n\tmargin-top: 8px;\r\n}\r\n\r\n.download-backups .updraft_download_button {\r\n\tmargin-right: 6px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n.download-backups .choose-components-button {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.download-backups .ud-whitespace-warning {\r\n\tbackground-color: pink;\r\n\tpadding: 8px;\r\n\tmargin: 4px;\r\n\tborder: 1px dotted;\r\n}\r\n\r\n.download-backups .ul {\r\n\tlist-style: none inside;\r\n\tmax-width: 800px;\r\n\tmargin-top: 6px;\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\n#updraft-plupload-modal {\r\n\twidth: 75%;\r\n\tmargin: 16px;\r\n\tmargin-left: 100px;\r\n}\r\n\r\n.download-backups .upload {\r\n\tmax-width: 610px;\r\n}\r\n\r\n.download-backups #plupload-upload-ui {\r\n\twidth: 70%;\r\n}\r\n\r\n.ud_downloadstatus {\r\n\tpadding: 10px;\r\n\tbackground: #F1F1F1;\r\n}\r\n\r\n#ud_massactions {\r\n\tpadding: 14px;\r\n\tposition: fixed;\r\n\tright: 25%;\r\n\ttop: 25%;\r\n\tborder: 2px solid;\r\n\tborder-radius: 4px;\r\n\tbackground: rgb(241, 241, 241);\r\n\tfloat: right;\r\n}\r\n\r\n#ud_massactions .updraftplus-remove {\r\n\tclear: left;\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#ud_massactions .updraftplus-remove a {\r\n\ttext-decoration: none;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv {\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n\tmargin-top: 4px;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv a {\r\n\ttext-decoration: none;\r\n\tposition: relative;\r\n\ttop: 3px;\r\n}\r\n\r\n#ud_massactions .updraft-viewlogdiv a {\r\n\ttext-decoration: none;\r\n\tposition: relative;\r\n\ttop: 3px;\r\n}\r\n\r\n#updraft-navtab-backups-content .updraft_existing_backups {\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\n#updraft-message-modal-innards {\r\n\tpadding: 4px;\r\n}\r\n\r\n#updraft-authenticate-modal {\r\n\ttext-align: center;\r\n\tfont-size: 16px !important;\r\n}\r\n\r\n#updraft-authenticate-modal p {\r\n\tfont-size: 16px;\r\n}\r\n\r\n#updraft_delete_form p {\r\n\tmargin-top: 3px;\r\n\tpadding-top: 0;\r\n}\r\n\r\n#updraft_restore_form .cannot-restore {\r\n\tmargin: 8px 0;\r\n}\r\n\r\n#updraft_restorer_dboptions {\r\n\tpadding: 12px;\r\n\tmargin: 8px 0 4px 0;\r\n\tborder: dashed 1px;\r\n}\r\n\r\n#updraft_restorer_dboptions h4 {\r\n\tmargin: 0px 0px 6px 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\n.updraft_debugrow th {\r\n\tvertical-align: top;\r\n\tpadding-top: 6px;\r\n}\r\n\r\n.expertmode p {\r\n\tfont-size: 125%;\r\n}\r\n\r\n.expertmode .call-wp-action {\r\n\twidth: 300px;\r\n\theight: 22px;\r\n}\r\n\r\n.updraftplus-lock-advert {\r\n\tclear: left;\r\n\tmax-width: 600px;\r\n}\r\n\r\n.uncompressed-data {\r\n\tclear: left;\r\n\tmax-width: 600px;\r\n}\r\n\r\n.delete-old-directories {\r\n\tpadding: 8px;\r\n\tpadding-bottom: 12px;\r\n}\r\n\r\n.active-jobs {\r\n\tmin-width: 480px;\r\n\tmin-height: 48px;\r\n\ttext-align: center;\r\n\tmargin-top: 4px;\r\n\tpadding: 8px;\r\n\tborder: 1px solid;\r\n\tfloat: left;\r\n\tclear: left;\r\n}\r\n\r\n.job-id {\r\n\tmin-width: 480px;\r\n\tmargin-top: 4px;\r\n\tpadding: 8px;\r\n\tborder: 1px solid;\r\n\tclear: left;\r\n\tfloat: left;\r\n}\r\n\r\n.next-resumption {\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraft_percentage {\r\n\tz-index: -1;\r\n\tposition: absolute;\r\n\tleft: 0px;\r\n\ttop: 0px;\r\n\ttext-align: center;\r\n\tbackground-color: #F6A828;\r\n}\r\n\r\n.curstage {\r\n\tborder-radius: 4px;\r\n\tmargin-top: 8px;\r\n\tpadding-top: 4px;\r\n\tborder: 1px solid #AAA;\r\n\twidth: 100%;\r\n\theight: 22px;\r\n\tposition: relative;\r\n\ttext-align: center;\r\n\tfont-style: italic;\r\n}\r\n\r\n.retain-files {\r\n\twidth: 48px;\r\n}\r\n\r\n.backup-interval-description tr td div {\r\n\tmax-width: 670px;\r\n}\r\n\r\n#updraft-manualdecrypt-modal {\r\n\twidth: 85%;\r\n\tmargin: 6px;\r\n\tmargin-left: 100px;\r\n}\r\n\r\n.directory-permissions {\r\n\tfont-size: 110%;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.double-warning {\r\n\tborder: 1px solid;\r\n\tpadding: 6px;\r\n}\r\n\r\n.raw-backup-info {\r\n\tfont-style: italic;\r\n\tfont-weight: bold;\r\n\tfont-size: 120%;\r\n}\r\n\r\n.updraft_existingbackup_date {\r\n\twidth: 22%;\r\n\tmax-width: 140px;\r\n}\r\n\r\n.existing-backups-table {\r\n\tmargin-top: 20px;\r\n\tmargin-left: 20px;\r\n\twidth: 80%;\r\n}\r\n\r\n.tr-bottom-4 {\r\n\tmargin-bottom: 4px;\r\n}\r\n\r\n.form-table .backup-date {\r\n\twidth: 172px;\r\n\tpadding: 0;\r\n\tpadding-left: 15px;\r\n}\r\n\r\n.form-table .backup-data {\r\n\twidth: 426px;\r\n\tpadding: 0;\r\n\tpadding-left: 15px;\r\n}\r\n\r\n.form-table .updraft_backup_actions {\r\n\twidth: 272px;\r\n\tpadding: 0 0 10px 15px;\r\n}\r\n\r\n.existing-date {\r\n\t-webkit-box-sizing: border-box;\r\n\t-moz-box-sizing: border-box;\r\n\tbox-sizing: border-box;\r\n\tmax-width: 140px;\r\n\twidth: 25%;\r\n}\r\n\r\n.line-break-tr {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.line-break-td {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.td-line-color {\r\n\theight: 2px;\r\n\tbackground-color: #888;\r\n}\r\n\r\n.raw-backup {\r\n\tmax-width: 140px;\r\n}\r\n\r\n.existing-backups-actions {\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.existing-backups-border {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.existing-backups-border > td {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.existing-backups-border > div {\r\n\theight: 2px;\r\n\tbackground-color: #AAA;\r\n}\r\n\r\n.updraft_existing_backup_date {\r\n\tmax-width: 140px;\r\n}\r\n\r\n.restore-button {\r\n\tmargin-right: 6px;\r\n\tfloat: left;\r\n\tclear: none;\r\n}\r\n\r\n.updraftplus-remove {\r\n\tfont-size: 16px;\r\n\ttext-align: center;\r\n\tborder-radius: 4px;\r\n}\r\n\r\n.before-restore-button {\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.table-separator-tr {\r\n\theight: 2px;\r\n\tpadding: 1px;\r\n\tmargin: 0px;\r\n}\r\n\r\n.table-separator-td {\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\n.end-of-table-div {\r\n\theight: 2px;\r\n\tbackground-color: #AAA;\r\n}\r\n\r\n.last-backup-job {\r\n\tpadding-top: 3% !important;\r\n}\r\n\r\n.line-height-03 {\r\n\tline-height: 0.3 !important;\r\n}\r\n\r\n.line-height-13 {\r\n\tline-height: 1.3 !important;\r\n}\r\n\r\n.line-height-23 {\r\n\tline-height: 2.3 !important;\r\n}\r\n\r\n#updraft_diskspaceused {\r\n\tcolor: #DF6926;\r\n}\r\n\r\n.updraft_premium_description_list {\r\n\ttext-align: left;\r\n}\r\n\r\n#updraft_delete_old_dirs_pagediv {\r\n\tpadding-bottom: 10px;\r\n}\r\n\r\n/*#updraft_lastlogmessagerow > td, #updraft_last_backup > td {\r\n\tpadding: 0;\r\n}*/\r\n\r\n.job-id {\r\n\tmargin: 0 auto;\r\n\twidth: 20%;\r\n}\r\n\r\n.updraft_all-files {\r\n\tcolor: #DF6926;\r\n}\r\n\r\n/* Time + scheduling add-on*/\r\n.fix-time {\r\n\twidth: 70px;\r\n}\r\n\r\n.retain-files {\r\n\twidth: 70px;\r\n}\r\n\r\n.number-input {\r\n\tmin-width: 50px;\r\n\tmax-width: 70px;\r\n}\r\n\r\n.additional-rule-width {\r\n\tmin-width: 60px;\r\n\tmax-width: 70px;\r\n}\r\n\r\n/* Add-ons */\r\n/* Want to fix the WordPress icons so that they fit inline with the text, and don't push everything out of place. */\r\n\r\n.dashicons {\r\n\tline-height: inherit;\r\n\tfont-size: inherit;\r\n}\r\n\r\n.addon-logo-150 {\r\n\tmargin-left: 30px;\r\n\tmargin-top: 33px;\r\n\theight: 125px;\r\n\twidth: 150px;\r\n}\r\n\r\n.margin-bottom-50 {\r\n\tmargin-bottom: 50px;\r\n}\r\n\r\n.premium-container {\r\n\twidth: 80%;\r\n}\r\n\r\n/* Main Header */\r\n\r\n.main-header {\r\n\tbackground-color: #DF6926;\r\n\theight: 200px;\r\n\twidth: 100%;\r\n}\r\n\r\n.button-add-to-cart {\r\n\tcolor: white;\r\n\tborder-color: white;\r\n\tfloat: none;\r\n\tmargin-right: 17px;\r\n}\r\n\r\n.button-add-to-cart:hover, .button-add-to-cart:focus, .button-add-to-cart:active {\r\n\tborder-color: #A0A5AA;\r\n\tcolor: #A0A5AA;\r\n}\r\n\r\n.addon-title {\r\n\tmargin-top: 25px;\r\n}\r\n\r\n.addon-text {\r\n\tmargin-top: 75px;\r\n}\r\n\r\n.image-main-div {\r\n\twidth: 25%;\r\n\tfloat: left;\r\n}\r\n\r\n.text-main-div {\r\n\twidth: 60%;\r\n\tfloat: left;\r\n\ttext-align: center;\r\n\tcolor: white;\r\n\tmargin-top: 16px;\r\n}\r\n\r\n.text-main-div-title {\r\n\tfont-weight: bold !important;\r\n\tcolor: white;\r\n\ttext-align: center;\r\n}\r\n\r\n.text-main-div-paragraph {\r\n\tcolor: white;\r\n}\r\n\r\n/* End main header */\r\n\r\n/* Vault icons */\r\n\r\n.updraftplus-vault-cta {\r\n\twidth: 100%;\r\n\ttext-align: center;\r\n\tmargin-bottom: 50px;\r\n}\r\n\r\n.updraftplus-vault-cta h1 {\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraftvault-buy {\r\n\twidth: 225px;\r\n\theight: 225px;\r\n\tborder: 2px solid #777;\r\n\tdisplay: inline-table;\r\n\tmargin: 0 auto;\r\n\tmargin-right: 50px;\r\n\tposition: relative;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault {\r\n\twidth: 275px;\r\n\theight: 275px;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault > a {\r\n\tright: 21%;\r\n\tfont-size: 16px;\r\n\tborder-width: 4px !important;\r\n}\r\n\r\n.updraftplus-vault-cta > .vault-options > .center-vault > p {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.updraftvault-buy .button-purchase {\r\n\tright: 24%;\r\n\tmargin-left: 0;\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.updraftvault-buy hr {\r\n\theight: 2px;\r\n\tbackground-color: #777;\r\n\tmargin-top: 18px;\r\n}\r\n\r\n.right {\r\n\tmargin-right: 0px;\r\n}\r\n\r\n.updraftvault-buy .addon-logo-100 {\r\n\theight: 100px;\r\n\twidth: 125px;\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.updraftvault-buy .addon-logo-large {\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.updraftvault-buy .button-buy-vault {\r\n\tfont-size: 12px;\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tborder-width: 2px !important;\r\n\tposition: absolute;\r\n\tright: 29%;\r\n\tbottom: 2%;\r\n}\r\n\r\n.premium-addon-div .button-purchase {\r\n\tline-height: 1.7em;\r\n}\r\n\r\n.updraftvault-buy .button-buy-vault:hover {\r\n\tborder-color: darkgrey;\r\n\tcolor: darkgrey;\r\n}\r\n\r\n/* End Vault icons */\r\n\r\n/* Premium addons */\r\n\r\n.premium-addons {\r\n\tmargin-top: 80px;\r\n\twidth: 100%;\r\n\tmargin: 0 auto;\r\n\tdisplay: table;\r\n}\r\n\r\n.addon-list {\r\n\t/* margin-left: 32px; */\r\n\tdisplay: table;\r\n\ttext-align: center;\r\n}\r\n\r\n.premium-addons h1 {\r\n\ttext-align: center;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.premium-addons p {\r\n\ttext-align: center;\r\n}\r\n\r\n.premium-addons .premium-addon-div {\r\n\twidth: 200px;\r\n\theight: 250px;\r\n\tborder: 2px solid #777;\r\n\tdisplay: inline-table;\r\n\tmargin: 0 auto;\r\n\tmargin-right: 25px;\r\n\tmargin-top: 25px;\r\n\ttext-align: center;\r\n\tposition: relative;\r\n}\r\n\r\n.premium-addons .premium-addon-div p {\r\n\tmargin-left: 2px;\r\n\tmargin-right: 2px;\r\n}\r\n\r\n.premium-addons .premium-addon-div img {\r\n\twidth: auto;\r\n\theight: 50px;\r\n\tmargin-top: 7px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .hr-alignment {\r\n\tmargin-top: 44px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .dropbox-logo {\r\n\theight: 39px;\r\n\twidth: 150px;\r\n}\r\n\r\n.premium-addons .premium-addon-div .azure-logo, .premium-addons .premium-addon-div .onedrive-logo {\r\n\twidth: 75%;\r\n\theight: 24px;\r\n}\r\n\r\n.button-purchase {\r\n\tfont-size: 12px;\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tborder-width: 2px !important;\r\n\tposition: absolute;\r\n\tright: 25%;\r\n\tbottom: 2%;\r\n}\r\n\r\n.button-purchase:hover {\r\n\tcolor: darkgrey;\r\n\tborder-color: darkgrey;\r\n}\r\n\r\n.premium-addons .premium-addon-div hr {\r\n\theight: 2px;\r\n\tbackground-color: #777;\r\n\tmargin-top: 18px;\r\n}\r\n\r\n.premium-addon-div p {\r\n\tfont-style: italic;\r\n}\r\n\r\n.addon-list > .premium-addon-div > .onedrive-fix,\r\n.addon-list > .premium-addon-div > .azure-logo {\r\n\tmargin-top: 33px;\r\n}\r\n\r\n.addon-list > .premium-addon-div > .dropbox-fix {\r\n\tmargin-top: 18px;\r\n}\r\n\r\n/* End premium addons */\r\n\r\n\r\n/* Forgotton something (that is the name of the div rather than a mental note!) */\r\n\r\n.premium-forgotton-something {\r\n\tmargin-top: 5%;\r\n}\r\n\r\n.premium-forgotton-something h1 {\r\n\ttext-align: center;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.premium-forgotton-something p {\r\n\ttext-align: center;\r\n\tfont-weight: normal;\r\n}\r\n\r\n.premium-forgotton-something .button-faq {\r\n\tcolor: #DF6926;\r\n\tborder-color: #DF6926;\r\n\tmargin: 0 auto;\r\n\tdisplay: table;\r\n}\r\n\r\n.premium-forgotton-something .button-faq:hover {\r\n\tcolor: #777;\r\n\tborder-color: #777;\r\n}\r\n\r\n/* End of forgotton something */\r\n\r\n.updraftplusmethod.updraftvault #vaultlogo {\r\n\tpadding-left: 40px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault_primary_option {\r\n\tfloat: left;\r\n\twidth: 50%;\r\n\ttext-align: center;\r\n\tpadding-bottom: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault_primary_option div {\r\n\tclear: right;\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .clear-left {\r\n\tclear: left;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .padding-top-20px {\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .padding-top-14px {\r\n\tpadding-top: 14px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_default .button-primary, .updraftplusmethod.updraftvault #updraftvault_settings_showoptions .button-primary {\r\n\tfont-size: 18px !important;\r\n\tpadding-bottom: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_showoptions, .updraftplusmethod.updraftvault #updraftvault_connect {\r\n\tmargin-top: 8px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_connect input {\r\n\tmargin-right: 10px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_email {\r\n\twidth: 280px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_pass {\r\n\twidth: 200px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #vault-is-connected {\r\n\tmargin: 0;\r\n\tpadding: 0;\r\n}\r\n\r\n.updraftplusmethod.updraftvault #updraftvault_settings_default p {\r\n\tclear: left;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option {\r\n\tfloat: left;\r\n\twidth: 33%;\r\n\ttext-align: center;\r\n\tpadding-top: 20px;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-size {\r\n\tfont-size: 200%;\r\n\tfont-weight: bold;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-link {\r\n\tclear: both;\r\n\tfont-size: 150%;\r\n}\r\n\r\n.updraftplusmethod.updraftvault .vault-purchase-option-or {\r\n\tclear: both;\r\n\tfont-size: 115%;\r\n\tfont-style: italic;\r\n}\r\n\r\n/* Automation Backup Advert by B */\r\n.autobackup-image {\r\n/* \tdisplay: inline-block; */\r\n/*\tmin-width: 10%;\r\n\tmax-width:25%;*/\r\n/*\tfloat: left;*/\r\n\tclear: left;\r\n\tfloat: left;\r\n\twidth: 110px;\r\n\theight: 110px;\r\n}\r\n\r\n.autobackup-description {\r\n\twidth: 100%;\r\n}\r\n\r\n.advert-description {\r\n\tfloat: left;\r\n\tclear: right;\r\n\tpadding: 4px 10px 8px 10px;\r\n\twidth: 70%;\r\n\tclear: right;\r\n\tvertical-align: top;\r\n}\r\n\r\n.advert-btn {\r\n\tdisplay: inline-block;\r\n\tmin-width: 10%;\r\n\tvertical-align: top;\r\n\tmargin-bottom: 8px;\r\n}\r\n\r\n.advert-btn:first-of-type {\r\n\tmargin-top: 25px;\r\n}\r\n\r\n.advert-btn a {\r\n\tdisplay: block;\r\n\tcursor: pointer;\r\n}\r\n\r\na.btn-get-started {\r\n\tbackground: #FFF;\r\n\tborder: 2px solid #DF6926;\r\n\tborder-radius: 4px;\r\n\tcolor: #DF6926;\r\n\tdisplay: inline-block;\r\n\tmargin-left: 10px !important;\r\n\tmargin-bottom: 7px !important;\r\n\tfont-size: 18px !important;\r\n\tline-height: 20px;\r\n\tmin-height: 28px;\r\n\tpadding: 11px 10px 5px 10px;\r\n\ttext-transform: uppercase;\r\n\ttext-decoration: none;\r\n}\r\n\r\n.circle-dblarrow {\r\n\tborder: 1px solid #DF6926;\r\n\tborder-radius: 100%;\r\n\tdisplay: inline-block;\r\n\tfont-size: 17px;\r\n\tline-height: 17px;\r\n\tmargin-left: 5px;\r\n\twidth: 20px;\r\n\theight: 20px;\r\n\ttext-align: center;\r\n}\r\n\r\n@media screen and (max-width: 782px) {\r\n/*\t.advert-description {\r\n\t\tmin-width: 75%;\r\n\t\tmargin-bottom: 5px;\r\n\t}\r\n\r\n\t.advert-btn {\r\n\t\tmargin-top: 15px;\r\n\t\tmargin-left:86px;\r\n\t\tmin-width: 100%;\r\n\t}*/\r\n}\r\n\r\n/* End Automation Backup Advert by B */\r\n/* New Responsive Pretty Advanced Settings */\r\n.expertmode .advanced_settings_container {\r\n\theight: auto;\r\n\toverflow: hidden;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu {\r\n\tfloat: none;\r\n\tborder-bottom: 1px solid rgb(204, 204, 204);\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content {\r\n\tpadding-top: 5px;\r\n\tfloat: none;\r\n\twidth: auto;\r\n\toverflow: auto;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content h3 {\r\n\tmargin-top: 5px !important;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content .advanced_tools {\r\n\tdisplay: none;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content .site_info {\r\n\tdisplay: block;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\r\n\tdisplay: inline-block;\r\n\tcursor: pointer;\r\n\tpadding: 5px;\r\n\tcolor: #000;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_text {\r\n\tfont-size: 16px;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button:hover {\r\n\tbackground-color: #EAEAEA;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .active {\r\n\tbackground-color: #3498DB;\r\n\tcolor: #FFF;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_menu .active:hover {\r\n\tbackground-color: #72C5FD;\r\n\tcolor: #FFF;\r\n}\r\n\r\n.expertmode .advanced_settings_container .advanced_settings_content input#import_settings {\r\n\theight: auto !important;\r\n}\r\n\r\ndiv#updraft-wrap a {\r\n\tcursor: pointer !important;\r\n}\r\n\r\n#updraftcentral_keys_table {\r\n\tdisplay: none;\r\n}\r\n\r\n.create_key_container {\r\n\tborder: 1px solid;\r\n\tborder-radius: 4px;\r\n\tpadding: 0 0 6px 6px;\r\n\tmargin-bottom: 8px;\r\n}\r\n\r\n#updraftcentral_keycreate_mothership {\r\n\tmargin-left: 24px;\r\n}\r\n\r\n@media screen and (min-width: 670px) {\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_menu {\r\n\t\tfloat: left;\r\n\t\twidth: 215px;\r\n\t\tborder-right: 1px solid rgb(204, 204, 204);\r\n\t\tborder-bottom: none;\r\n\t}\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_content {\r\n\t\tpadding-left: 10px;\r\n\t\tpadding-top: 0px;\r\n\t}\r\n\r\n\t.expertmode .advanced_settings_container .advanced_settings_menu .advanced_tools_button {\r\n\t\tdisplay: block;\r\n\t}\r\n\r\n}\r\n"]}
includes/S3.php CHANGED
@@ -52,13 +52,16 @@ class UpdraftPlus_S3
52
  public static $endpoint = 's3.amazonaws.com';
53
  public static $proxy = null;
54
 
55
- // Added to cope with a particular situation where the user had no pernmission to check the bucket location, which necessitated using DNS-based endpoints.
56
  public static $use_dns_bucket_name = false;
57
 
58
  public static $useSSL = false;
59
  public static $useSSLValidation = true;
60
  public static $useExceptions = false;
61
 
 
 
 
62
  // SSL CURL SSL options - only needed if you are experiencing problems with your OpenSSL configuration
63
  public static $sslKey = null;
64
  public static $sslCert = null;
@@ -66,8 +69,7 @@ class UpdraftPlus_S3
66
 
67
  private static $__signingKeyPairId = null; // AWS Key Pair ID
68
  private static $__signingKeyResource = false; // Key resource, freeSigningKey() must be called to clear it from memory
69
-
70
-
71
  /**
72
  * Constructor - if you're not using the class statically
73
  *
@@ -103,6 +105,17 @@ class UpdraftPlus_S3
103
  {
104
  self::$endpoint = $host;
105
  }
 
 
 
 
 
 
 
 
 
 
 
106
 
107
  /**
108
  * Set AWS access key and secret key
@@ -2080,6 +2093,7 @@ final class UpdraftPlus_S3Request
2080
  }
2081
  }
2082
 
 
2083
  curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
2084
  curl_setopt($curl, CURLOPT_HEADER, false);
2085
  curl_setopt($curl, CURLOPT_RETURNTRANSFER, false);
52
  public static $endpoint = 's3.amazonaws.com';
53
  public static $proxy = null;
54
 
55
+ // Added to cope with a particular situation where the user had no permission to check the bucket location, which necessitated using DNS-based endpoints.
56
  public static $use_dns_bucket_name = false;
57
 
58
  public static $useSSL = false;
59
  public static $useSSLValidation = true;
60
  public static $useExceptions = false;
61
 
62
+ // Added at request of a user using a non-default port.
63
+ public static $port = false;
64
+
65
  // SSL CURL SSL options - only needed if you are experiencing problems with your OpenSSL configuration
66
  public static $sslKey = null;
67
  public static $sslCert = null;
69
 
70
  private static $__signingKeyPairId = null; // AWS Key Pair ID
71
  private static $__signingKeyResource = false; // Key resource, freeSigningKey() must be called to clear it from memory
72
+
 
73
  /**
74
  * Constructor - if you're not using the class statically
75
  *
105
  {
106
  self::$endpoint = $host;
107
  }
108
+
109
+ /**
110
+ * Set the service port
111
+ *
112
+ * @param Integer $port Port number
113
+ * @return void
114
+ */
115
+ public function setPort($port)
116
+ {
117
+ self::$port = $port;
118
+ }
119
 
120
  /**
121
  * Set AWS access key and secret key
2093
  }
2094
  }
2095
 
2096
+ if (false !== UpdraftPlus_S3::$port) curl_setopt($curl, CURLOPT_PORT, UpdraftPlus_S3::$port);
2097
  curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
2098
  curl_setopt($curl, CURLOPT_HEADER, false);
2099
  curl_setopt($curl, CURLOPT_RETURNTRANSFER, false);
includes/S3compat.php CHANGED
@@ -84,6 +84,9 @@ class UpdraftPlus_S3_Compat {
84
  public $ssl_cert = null;
85
 
86
  public $ssl_ca_cert = null;
 
 
 
87
 
88
  /**
89
  * Constructor - if you're not using the class statically
@@ -92,7 +95,7 @@ class UpdraftPlus_S3_Compat {
92
  * @param string $secret_key Secret key
93
  * @param boolean $use_ssl Enable SSL
94
  * @param string|boolean $ssl_ca_cert Certificate authority (true = bundled Guzzle version; false = no verify, 'system' = system version; otherwise, path)
95
- * @param string $endpoint Endpoint
96
  * @return void
97
  */
98
  public function __construct($access_key = null, $secret_key = null, $use_ssl = true, $ssl_ca_cert = true, $endpoint = null) {
@@ -106,14 +109,15 @@ class UpdraftPlus_S3_Compat {
106
  'key' => $access_key,
107
  'secret' => $secret_key,
108
  'scheme' => ($use_ssl) ? 'https' : 'http',
109
- // Using signature v4 requires a region
110
- // 'signature' => 'v4',
111
- // 'region' => $this->region
112
- // 'endpoint' => 'somethingorother.s3.amazonaws.com'
113
  );
114
 
115
  if ($endpoint) {
116
  // Can't specify signature v4, as that requires stating the region - which we don't necessarily yet know.
 
117
  $this->endpoint = $endpoint;
118
  $opts['endpoint'] = $endpoint;
119
  } else {
@@ -158,8 +162,8 @@ class UpdraftPlus_S3_Compat {
158
  public function setRegion($region) {
159
  $this->region = $region;
160
  if ('eu-central-1' == $region || 'cn-north-1' == $region) {
161
- // $this->config['signature'] = new Aws\S3\S3SignatureV4('s3');
162
- // $this->client->setConfig($this->config);
163
  }
164
  $this->client->setRegion($region);
165
  }
@@ -178,6 +182,16 @@ class UpdraftPlus_S3_Compat {
178
  $this->client->setConfig($this->config);
179
  }
180
 
 
 
 
 
 
 
 
 
 
 
181
  public function return_provider() {
182
  $our_endpoints = array(
183
  'endpoint' => $this->endpoint
84
  public $ssl_cert = null;
85
 
86
  public $ssl_ca_cert = null;
87
+
88
+ // Added at request of a user using a non-default port.
89
+ public static $port = false;
90
 
91
  /**
92
  * Constructor - if you're not using the class statically
95
  * @param string $secret_key Secret key
96
  * @param boolean $use_ssl Enable SSL
97
  * @param string|boolean $ssl_ca_cert Certificate authority (true = bundled Guzzle version; false = no verify, 'system' = system version; otherwise, path)
98
+ * @param Null|String $endpoint Endpoint (if omitted, it will be set by the SDK using the region)
99
  * @return void
100
  */
101
  public function __construct($access_key = null, $secret_key = null, $use_ssl = true, $ssl_ca_cert = true, $endpoint = null) {
109
  'key' => $access_key,
110
  'secret' => $secret_key,
111
  'scheme' => ($use_ssl) ? 'https' : 'http',
112
+ // Using signature v4 requires a region (but see the note below)
113
+ // 'signature' => 'v4',
114
+ // 'region' => $this->region
115
+ // 'endpoint' => 'somethingorother.s3.amazonaws.com'
116
  );
117
 
118
  if ($endpoint) {
119
  // Can't specify signature v4, as that requires stating the region - which we don't necessarily yet know.
120
+ // Later comment: however, it looks to me like in current UD (Sep 2017), $endpoint is never used for Amazon S3/Vault, and there may be cases (e.g. DigitalOcean Spaces) where we might prefer v4 (DO support v2 too, currently) without knowing a region.
121
  $this->endpoint = $endpoint;
122
  $opts['endpoint'] = $endpoint;
123
  } else {
162
  public function setRegion($region) {
163
  $this->region = $region;
164
  if ('eu-central-1' == $region || 'cn-north-1' == $region) {
165
+ // $this->config['signature'] = new Aws\S3\S3SignatureV4('s3');
166
+ // $this->client->setConfig($this->config);
167
  }
168
  $this->client->setRegion($region);
169
  }
182
  $this->client->setConfig($this->config);
183
  }
184
 
185
+ /**
186
+ * Set the service port
187
+ *
188
+ * @param Integer $port Port number
189
+ */
190
+ public function setPort($port) {
191
+ // Not used with AWS (which is the only thing using this class)
192
+ self::$port = $port;
193
+ }
194
+
195
  public function return_provider() {
196
  $our_endpoints = array(
197
  'endpoint' => $this->endpoint
includes/class-backup-history.php ADDED
@@ -0,0 +1,493 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if (!defined('UPDRAFTPLUS_DIR')) die('No access.');
4
+
5
+ /**
6
+ * A class to deal with management of backup history.
7
+ * N.B. All database access should come through here. However, this class is not the only place with knowledge of the data structure.
8
+ */
9
+ class UpdraftPlus_Backup_History {
10
+
11
+ /**
12
+ * Get the backup history for an indicated timestamp, or the complete set of all backup histories
13
+ *
14
+ * @param Integer|Boolean $timestamp - Indicate a particular timestamp to get a particular backup job, or false to get a list of them all (sorted by most recent first).
15
+ *
16
+ * @return Array - either the particular backup indicated, or the full list.
17
+ */
18
+ public static function get_history($timestamp = false) {
19
+
20
+ $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
21
+ // N.B. Doing a direct wpdb->get_var() here actually *introduces* a race condition
22
+
23
+ if (!is_array($backup_history)) $backup_history = array();
24
+ // The most recent backup will be first. Then we can array_pop().
25
+ krsort($backup_history);
26
+
27
+ if (!$timestamp) return $backup_history;
28
+
29
+ return isset($backup_history[$timestamp]) ? $backup_history[$timestamp] : array();
30
+ }
31
+
32
+ /**
33
+ * Save the backup history. An abstraction function to make future changes easier.
34
+ *
35
+ * @param Array $backup_history - the backup history
36
+ * @param Boolean $use_cache - whether or not to use the WP options cache
37
+ */
38
+ public static function save_history($backup_history, $use_cache = true) {
39
+ UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history, $use_cache);
40
+ }
41
+
42
+ /**
43
+ * Used by self::always_get_from_db()
44
+ *
45
+ * @param String $v - ignored
46
+ * @return Mixed - the database option
47
+ */
48
+ public static function filter_updraft_backup_history($v) {
49
+ global $wpdb;
50
+ $row = $wpdb->get_row($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = %s LIMIT 1", 'updraft_backup_history'));
51
+ if (is_object($row)) return maybe_unserialize($row->option_value);
52
+ return false;
53
+ }
54
+
55
+ /**
56
+ * Make sure we get the value afresh from the db, instead of using the auto-loaded/cached value (which can be out of date, especially since backups are, by their nature, long-running)
57
+ */
58
+ public static function always_get_from_db() {
59
+ add_filter('pre_option_updraft_backup_history', array('UpdraftPlus_Backup_History', 'filter_updraft_backup_history'));
60
+ }
61
+
62
+ /**
63
+ * This function examines inside the updraft directory to see if any new archives have been uploaded. If so, it adds them to the backup set. (Non-present items are also removed, only if the service is 'none').
64
+ *
65
+ * N.B. The logic is a bit more subtle than it needs to be, because of backups being keyed by backup time, instead of backup nonce, and the subsequent introduction of the possibility of incremental backup sets taken at different times. This could be cleaned up to reduce the amount of code and make it simpler in places.
66
+ *
67
+ * @param Boolean $remote_scan - scan not only local, but also remote storage
68
+ * @param Array|String $only_add_this_file - if set to an array (with keys 'name' and (optionally) 'label'), then a file will only be taken notice of if the filename matches the 'name' key (and the label will be associated with the backup set)
69
+ * @return Array - an array of messages which the caller may wish to display to the user
70
+ */
71
+ public static function rebuild($remote_scan = false, $only_add_this_file = false) {
72
+
73
+ global $updraftplus;
74
+
75
+ $messages = array();
76
+ $gmt_offset = get_option('gmt_offset');
77
+
78
+ // Array of nonces keyed by filename
79
+ $backup_nonces_by_filename = array();
80
+ // Array of backup times keyed by nonce
81
+ $backup_times_by_nonce = array();
82
+
83
+ $changes = false;
84
+
85
+ $backupable_entities = $updraftplus->get_backupable_file_entities(true, false);
86
+
87
+ $backup_history = self::get_history();
88
+
89
+ $updraft_dir = $updraftplus->backups_dir_location();
90
+ if (!is_dir($updraft_dir)) return array("Internal directory path does not indicate a directory ($updraft_dir)");
91
+
92
+ $accept = apply_filters('updraftplus_accept_archivename', array());
93
+
94
+ // First, process the database backup history to get a record of what is already known there. This means populating the arrays $backup_nonces_by_filename and $backup_times_by_nonce
95
+ foreach ($backup_history as $btime => $bdata) {
96
+ $found_file = false;
97
+ foreach ($bdata as $key => $values) {
98
+ if ('db' != $key && !isset($backupable_entities[$key])) continue;
99
+ // Record which set this file is found in
100
+ if (!is_array($values)) $values = array($values);
101
+ foreach ($values as $filename) {
102
+ if (!is_string($filename)) continue;
103
+ if (preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-[\-a-z]+([0-9]+)?+(\.(zip|gz|gz\.crypt))?$/i', $filename, $matches)) {
104
+ $nonce = $matches[2];
105
+ if (isset($bdata['service']) && ('none' === $bdata['service'] || (is_array($bdata['service']) && (array('none') === $bdata['service'] || (1 == count($bdata['service']) && isset($bdata['service'][0]) && empty($bdata['service'][0]))))) && !is_file($updraft_dir.'/'.$filename)) {
106
+ // File without remote storage is no longer locally present
107
+ } else {
108
+ $found_file = true;
109
+ $backup_nonces_by_filename[$filename] = $nonce;
110
+ if (empty($backup_times_by_nonce[$nonce]) || $backup_times_by_nonce[$nonce] < 100) {
111
+ $backup_times_by_nonce[$nonce] = $btime;
112
+ } elseif ($btime < $backup_times_by_nonce[$nonce]) {
113
+ $backup_times_by_nonce[$nonce] = $btime;
114
+ }
115
+ }
116
+ } else {
117
+ $accepted = false;
118
+ foreach ($accept as $fkey => $acc) {
119
+ if (preg_match('/'.$acc['pattern'].'/i', $filename)) $accepted = $fkey;
120
+ }
121
+ if (!empty($accepted) && (false != ($btime = apply_filters('updraftplus_foreign_gettime', false, $accepted, $filename))) && $btime > 0) {
122
+ $found_file = true;
123
+ // Generate a nonce; this needs to be deterministic and based on the filename only
124
+ $nonce = substr(md5($filename), 0, 12);
125
+ $backup_nonces_by_filename[$filename] = $nonce;
126
+ if (empty($backup_times_by_nonce[$nonce]) || $backup_times_by_nonce[$nonce] < 100) {
127
+ $backup_times_by_nonce[$nonce] = $btime;
128
+ } elseif ($btime < $backup_times_by_nonce[$nonce]) {
129
+ $backup_times_by_nonce[$nonce] = $btime;
130
+ }
131
+ }
132
+ }
133
+ }
134
+ }
135
+ if (!$found_file) {
136
+ // File recorded as being without remote storage is no longer present. It may in fact exist in remote storage, and this will be picked up later (when we scan the remote storage).
137
+ unset($backup_history[$btime]);
138
+ $changes = true;
139
+ }
140
+ }
141
+
142
+ // Secondly, scan remote storage and get back lists of files and their sizes
143
+
144
+ // $remote_files has a key for each filename (basename), and the value is a list of remote destinations (e.g. 'dropbox', 's3') in which the file was found
145
+ $remote_files = array();
146
+
147
+ // A list of nonces found remotely (to help with handling sets split across destinations)
148
+ $remote_nonces_found = array();
149
+
150
+ $remote_sizes = array();
151
+
152
+ if ($remote_scan) {
153
+
154
+ $updraftplus->register_wp_http_option_hooks(true);
155
+
156
+ $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids(array_keys($updraftplus->backup_methods));
157
+
158
+ foreach ($storage_objects_and_ids as $method => $method_information) {
159
+
160
+ $object = $method_information['object'];
161
+
162
+ if (!method_exists($object, 'listfiles')) continue;
163
+
164
+ // Support of multi_options is now required for storage methods that implement listfiles()
165
+ if (!$object->supports_feature('multi_options')) {
166
+ error_log("UpdraftPlus: Multi-options not supported by: ".$method);
167
+ continue;
168
+ }
169
+
170
+ foreach ($method_information['instance_settings'] as $instance_id => $options) {
171
+
172
+ $object->set_options($options, false, $instance_id);
173
+
174
+ $files = $object->listfiles('backup_');
175
+
176
+ if (is_array($files)) {
177
+
178
+ foreach ($files as $entry) {
179
+ $filename = $entry['name'];
180
+ if (!preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-([\-a-z]+)([0-9]+)?(\.(zip|gz|gz\.crypt))?$/i', $filename, $matches)) continue;
181
+
182
+ $nonce = $matches[2];
183
+ $btime = strtotime($matches[1]);
184
+ // Of course, it's possible that the site doing the scanning has a different timezone from the site that the backups were created in, in which case, this calculation will have a confusing result to the user. That outcome cannot be completely eliminated (without making the filename to reflect UTC, which confuses more users).
185
+ if (!empty($gmt_offset)) $btime -= $gmt_offset * 3600;
186
+
187
+ // Is the set already known?
188
+ if (isset($backup_times_by_nonce[$nonce])) {
189
+ // N.B. With an incremental set, the newly found file may be earlier than the known elements, so tha the backup array should be re-keyed.
190
+ $btime_exact = $backup_times_by_nonce[$nonce];
191
+ if ($btime > 100 && $btime_exact - $btime > 60 && !empty($backup_history[$btime_exact])) {
192
+ $changes = true;
193
+ $backup_history[$btime] = $backup_history[$btime_exact];
194
+ unset($backup_history[$btime_exact]);
195
+ $btime_exact = $btime;
196
+ $backup_times_by_nonce[$nonce] = $btime;
197
+ }
198
+ $btime = $btime_exact;
199
+ }
200
+ if ($btime <= 100) continue;
201
+
202
+ // We need to set this so that if a second file is found in remote storage then the time will be picked up.
203
+ $backup_times_by_nonce[$nonce] = $btime;
204
+
205
+ if (empty($backup_history[$btime]['service_instance_ids']) || empty($backup_history[$btime]['service_instance_ids'][$method])) {
206
+ $backup_history[$btime]['service_instance_ids'][$method] = array($instance_id);
207
+ $changes = true;
208
+ } elseif (!in_array($instance_id, $backup_history[$btime]['service_instance_ids'][$method])) {
209
+ $backup_history[$btime]['service_instance_ids'][$method][] = $instance_id;
210
+ $changes = true;
211
+ }
212
+
213
+ if (isset($remote_files[$filename])) {
214
+ $remote_files[$filename][] = $method;
215
+ } else {
216
+ $remote_files[$filename] = array($method);
217
+ }
218
+
219
+ if (!in_array($nonce, $remote_nonces_found)) $remote_nonces_found[] = $nonce;
220
+
221
+ if (!empty($entry['size'])) {
222
+ if (empty($remote_sizes[$filename]) || $remote_sizes[$filename] < $entry['size']) $remote_sizes[$filename] = $entry['size'];
223
+ }
224
+ }
225
+ } elseif (is_wp_error($files)) {
226
+ foreach ($files->get_error_codes() as $code) {
227
+ // Skip various codes which are not conditions to show to the user
228
+ if ('no_settings' == $code || 'no_addon' == $code || 'insufficient_php' == $code || 'no_listing' == $code) continue;
229
+ $messages[] = array(
230
+ 'method' => $method,
231
+ 'desc' => $method_description,
232
+ 'code' => $code,
233
+ 'message' => $files->get_error_message($code),
234
+ 'data' => $files->get_error_data($code),
235
+ 'service_instance_id' => $instance_id,
236
+ );
237
+ }
238
+ }
239
+ }
240
+ }
241
+ $updraftplus->register_wp_http_option_hooks(false);
242
+ }
243
+
244
+ // Thirdly, see if there are any more files in the local directory than the ones already known about (possibly subject to a limitation specified via $only_add_this_file)
245
+ if (!$handle = opendir($updraft_dir)) return array("Failed to open the internal directory ($updraft_dir)");
246
+
247
+ while (false !== ($entry = readdir($handle))) {
248
+
249
+ if ('.' == $entry || '..' == $entry) continue;
250
+
251
+ $accepted_foreign = false;
252
+ $potmessage = false;
253
+
254
+ if (false !== $only_add_this_file && $entry != $only_add_this_file['file']) continue;
255
+
256
+ if (preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-([\-a-z]+)([0-9]+)?(\.(zip|gz|gz\.crypt))?$/i', $entry, $matches)) {
257
+ // Interpret the time as one from the blog's local timezone, rather than as UTC
258
+ // $matches[1] is YYYY-MM-DD-HHmm, to be interpreted as being the local timezone
259
+ $btime = strtotime($matches[1]);
260
+ if (!empty($gmt_offset)) $btime -= $gmt_offset * 3600;
261
+ $nonce = $matches[2];
262
+ $type = $matches[3];
263
+ if ('db' == $type) {
264
+ $type .= empty($matches[4]) ? '' : $matches[4];
265
+ $index = 0;
266
+ } else {
267
+ $index = empty($matches[4]) ? '0' : max((int) $matches[4]-1, 0);
268
+ }
269
+ $itext = (0 == $index) ? '' : $index;
270
+ } elseif (false != ($accepted_foreign = apply_filters('updraftplus_accept_foreign', false, $entry)) && false !== ($btime = apply_filters('updraftplus_foreign_gettime', false, $accepted_foreign, $entry))) {
271
+ $nonce = substr(md5($entry), 0, 12);
272
+ $type = (preg_match('/\.sql(\.(bz2|gz))?$/i', $entry) || preg_match('/-database-([-0-9]+)\.zip$/i', $entry) || preg_match('/backup_db_/', $entry)) ? 'db' : 'wpcore';
273
+ $index = apply_filters('updraftplus_accepted_foreign_index', 0, $entry, $accepted_foreign);
274
+ $itext = $index ? $index : '';
275
+ $potmessage = array(
276
+ 'code' => 'foundforeign_'.md5($entry),
277
+ 'desc' => $entry,
278
+ 'method' => '',
279
+ 'message' => sprintf(__('Backup created by: %s.', 'updraftplus'), $accept[$accepted_foreign]['desc'])
280
+ );
281
+ } elseif ('.zip' == strtolower(substr($entry, -4, 4)) || preg_match('/\.sql(\.(bz2|gz))?$/i', $entry)) {
282
+ $potmessage = array(
283
+ 'code' => 'possibleforeign_'.md5($entry),
284
+ 'desc' => $entry,
285
+ 'method' => '',
286
+ 'message' => __('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)).', 'updraftplus').' <a href="https://updraftplus.com/shop/updraftplus-premium/">'.__('If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you.', 'updraftplus').'</a>'
287
+ );
288
+ $messages[$potmessage['code']] = $potmessage;
289
+ continue;
290
+ } else {
291
+ // The filename pattern does not indicate any sort of backup archive
292
+ continue;
293
+ }
294
+
295
+ // The time from the filename does not include seconds. We need to identify the seconds to get the right time for storing it.
296
+ if (isset($backup_times_by_nonce[$nonce])) {
297
+ $btime_exact = $backup_times_by_nonce[$nonce];
298
+ // If the btime we had was more than 60 seconds earlier, then this must be an increment - we then need to change the $backup_history array accordingly. We can pad the '60 second' test, as there's no option to run an increment more frequently than every 4 hours (though someone could run one manually from the CLI)
299
+ if ($btime > 100 && $btime_exact - $btime > 60 && !empty($backup_history[$btime_exact])) {
300
+ $changes = true;
301
+ // We assume that $backup_history[$btime] is presently empty (except that the 'service_instance_ids' key may have been set earlier
302
+ // Re-key array, indicating the newly-found time to be the start of the backup set
303
+ $merge_services = false;
304
+ if (!empty($backup_history[$btime]['service_instance_ids'])) {
305
+ $merge_services = $backup_history[$btime]['service_instance_ids'];
306
+ }
307
+ $backup_history[$btime] = $backup_history[$btime_exact];
308
+ if (is_array($merge_services)) {
309
+ if (empty($backup_history[$btime]['service_instance_ids'])) {
310
+ $backup_history[$btime]['service_instance_ids'] = $merge_services;
311
+ } else {
312
+ foreach ($merge_services as $service => $instance_ids) {
313
+ if (empty($backup_history[$btime]['service_instance_ids'][$service])) {
314
+ $backup_history[$btime]['service_instance_ids'][$service] = $instance_ids;
315
+ } else {
316
+ $backup_history[$btime]['service_instance_ids'][$service] = array_unique(array_merge($backup_history[$btime]['service_instance_ids'][$service], $instance_ids));
317
+ }
318
+ }
319
+ }
320
+ }
321
+ unset($backup_history[$btime_exact]);
322
+ $backup_times_by_nonce[$nonce] = $btime;
323
+ $btime_exact = $btime;
324
+ }
325
+ $btime = $btime_exact;
326
+ } else {
327
+ $backup_times_by_nonce[$nonce] = $btime;
328
+ }
329
+ if ($btime <= 100) continue;
330
+ $file_size = @filesize($updraft_dir.'/'.$entry);
331
+
332
+ if (!isset($backup_nonces_by_filename[$entry])) {
333
+ $changes = true;
334
+ if (is_array($potmessage)) $messages[$potmessage['code']] = $potmessage;
335
+ if (is_array($only_add_this_file)) {
336
+ if (isset($only_add_this_file['label'])) $backup_history[$btime]['label'] = $only_add_this_file['label'];
337
+ $backup_history[$btime]['native'] = false;
338
+ } elseif ('db' == $type && !$accepted_foreign) {
339
+ list ($mess, $warn, $err, $info) = $updraftplus->analyse_db_file(false, array(), $updraft_dir.'/'.$entry, true);
340
+ if (!empty($info['label'])) {
341
+ $backup_history[$btime]['label'] = $info['label'];
342
+ }
343
+ if (!empty($info['created_by_version'])) {
344
+ $backup_history[$btime]['created_by_version'] = $info['created_by_version'];
345
+ }
346
+ }
347
+ }
348
+
349
+ // Make sure we have the right list of services, as an array
350
+ $current_services = (!empty($backup_history[$btime]) && !empty($backup_history[$btime]['service'])) ? $backup_history[$btime]['service'] : array();
351
+ if (is_string($current_services)) $current_services = array($current_services);
352
+ if (!is_array($current_services)) $current_services = array();
353
+ foreach ($current_services as $k => $v) {
354
+ if ('none' === $v || '' == $v) unset($current_services[$k]);
355
+ }
356
+
357
+ // If the file (the one we just found locally) was also found in the scan of remote storage...
358
+ if (!empty($remote_files[$entry])) {
359
+ // ... store the record if all services which previously stored it still do
360
+ if (0 == count(array_diff($current_services, $remote_files[$entry]))) {
361
+ if ($current_services != $remote_files[$entry]) $changes = true;
362
+ $backup_history[$btime]['service'] = $remote_files[$entry];
363
+ } else {
364
+ // There are services in $current_services which are not in $remote_files[$entry]
365
+ // This can be because the backup set files are split across different services
366
+ $changes = true;
367
+ $backup_history[$btime]['service'] = array_unique(array_merge($current_services, $remote_files[$entry]));
368
+ }
369
+ // Get the right size (our local copy may be too small)
370
+ foreach ($remote_files[$entry] as $remote_file) {
371
+ if (!empty($remote_file['size']) && $remote_file['size'] > $file_size) {
372
+ $file_size = $remote_file['size'];
373
+ $changes = true;
374
+ }
375
+ }
376
+ // Remove from $remote_files, so that we can later see what was left over (i.e. $remote_files will exclude files which are present locally).
377
+ unset($remote_files[$entry]);
378
+
379
+ } elseif ($remote_scan && !in_array($nonce, $remote_nonces_found)) {
380
+ // The file is not known remotely, and neither is any other from the same set, and a remote scan was done
381
+
382
+ if (!empty($backup_history[$btime])) {
383
+ if (empty($backup_history[$btime]['service']) || ('none' !== $backup_history[$btime]['service'] && '' !== $backup_history[$btime]['service'] && array('none') !== $backup_history[$btime]['service'])) {
384
+ $backup_history[$btime]['service'] = 'none';
385
+ $changes = true;
386
+ }
387
+ } else {
388
+ $backup_history[$btime]['service'] = 'none';
389
+ $changes = true;
390
+ }
391
+ }
392
+
393
+ $backup_history[$btime][$type][$index] = $entry;
394
+ if ($file_size > 0) $backup_history[$btime][$type.$itext.'-size'] = $file_size;
395
+ $backup_history[$btime]['nonce'] = $nonce;
396
+ if (!empty($accepted_foreign)) $backup_history[$btime]['meta_foreign'] = $accepted_foreign;
397
+ }
398
+
399
+ // Fourthly: are there any files found in remote storage that are not stored locally?
400
+ // If so, then we compare $remote_files with $backup_nonces_by_filename / $backup_times_by_nonce, and adjust $backup_history
401
+
402
+ foreach ($remote_files as $file => $services) {
403
+ if (!preg_match('/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-([\-a-z]+)([0-9]+)?(\.(zip|gz|gz\.crypt))?$/i', $file, $matches)) continue;
404
+
405
+ $nonce = $matches[2];
406
+ $type = $matches[3];
407
+
408
+ if ('db' == $type) {
409
+ $index = 0;
410
+ $type .= !empty($matches[4]) ? $matches[4] : '';
411
+ } else {
412
+ $index = empty($matches[4]) ? '0' : max((int) $matches[4]-1, 0);
413
+ }
414
+
415
+ $itext = (0 == $index) ? '' : $index;
416
+ $btime = strtotime($matches[1]);
417
+ if (!empty($gmt_offset)) $btime -= $gmt_offset * 3600;
418
+
419
+ // N.B. We don't need to check if the backup set needs re-keying by an earlier time here, because that was already done when processing the whole list of remote files, above.
420
+ if (isset($backup_times_by_nonce[$nonce])) $btime = $backup_times_by_nonce[$nonce];
421
+
422
+ if ($btime <= 100) continue;
423
+
424
+ // Remember that at this point, we already know that the file is not stored locally (else it would have been pruned earlier from $remote_files)
425
+ if (isset($backup_history[$btime])) {
426
+ if (!isset($backup_history[$btime]['service']) || (is_array($backup_history[$btime]['service']) && $backup_history[$btime]['service'] !== $services) || (is_string($backup_history[$btime]['service']) && (1 != count($services) || $services[0] !== $backup_history[$btime]['service']))) {
427
+ $changes = true;
428
+ if (isset($backup_history[$btime]['service'])) {
429
+ $existing_services = is_array($backup_history[$btime]['service']) ? $backup_history[$btime]['service'] : array($existing_services);
430
+ $backup_history[$btime]['service'] = array_unique(array_merge($services, $existing_services));
431
+ foreach ($backup_history[$btime]['service'] as $k => $v) {
432
+ if ('none' === $v || '' == $v) unset($backup_history[$btime]['service'][$k]);
433
+ }
434
+ } else {
435
+ $backup_history[$btime]['service'] = $services;
436
+ }
437
+ $backup_history[$btime]['nonce'] = $nonce;
438
+ }
439
+
440
+ if (!isset($backup_history[$btime][$type][$index])) {
441
+ $changes = true;
442
+ $backup_history[$btime][$type][$index] = $file;
443
+ $backup_history[$btime]['nonce'] = $nonce;
444
+ if (!empty($remote_sizes[$file])) $backup_history[$btime][$type.$itext.'-size'] = $remote_sizes[$file];
445
+ }
446
+ } else {
447
+ $changes = true;
448
+ $backup_history[$btime]['service'] = $services;
449
+ $backup_history[$btime][$type][$index] = $file;
450
+ $backup_history[$btime]['nonce'] = $nonce;
451
+ if (!empty($remote_sizes[$file])) $backup_history[$btime][$type.$itext.'-size'] = $remote_sizes[$file];
452
+ $backup_history[$btime]['native'] = false;
453
+ $messages['nonnative'] = array(
454
+ 'message' => __('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.', 'updraftplus'),
455
+ 'code' => 'nonnative',
456
+ 'desc' => '',
457
+ 'method' => ''
458
+ );
459
+ }
460
+
461
+ }
462
+
463
+ // This is for consistency - if something is no longer present in the service list, then neither should it be in the ids list
464
+ foreach ($backup_history as $btime => $bdata) {
465
+ if (!empty($bdata['service_instance_ids'])) {
466
+ foreach ($bdata['service_instance_ids'] as $method => $instance_ids) {
467
+ if ((is_array($bdata['service']) && !in_array($method, $bdata['service'])) || (is_string($bdata['service']) && $method !== $bdata['service'])) {
468
+ unset($backup_history[$btime]['service_instance_ids'][$method]);
469
+ $changes = true;
470
+ }
471
+ }
472
+ }
473
+ }
474
+
475
+ if ($changes) self::save_history($backup_history);
476
+
477
+ return $messages;
478
+
479
+ }
480
+
481
+ /**
482
+ * Save a backup into the history
483
+ *
484
+ * @param Integer $backup_time - the time of the backup
485
+ * @param Array $backup_array - the backup
486
+ */
487
+ public static function save_backup($backup_time, $backup_array) {
488
+ global $updraftplus;
489
+ $backup_history = self::get_history();
490
+ $backup_history[$backup_time] = $backup_array;
491
+ self::save_history($backup_history, false);
492
+ }
493
+ }
includes/class-commands.php CHANGED
@@ -147,20 +147,17 @@ class UpdraftPlus_Commands {
147
 
148
  public function deleteset($what) {
149
 
150
- if (false === ($updraftplus_admin = $this->_load_ud_admin())) return new WP_Error('no_updraftplus');
151
 
152
  if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
153
 
154
- $results = $updraftplus_admin->delete_set($what);
155
 
156
  $get_history_opts = isset($what['get_history_opts']) ? $what['get_history_opts'] : array();
157
 
158
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
159
- $backup_history = is_array($backup_history) ? $backup_history : array();
160
 
161
- $history = $updraftplus_admin->settings_downloading_and_restoring($backup_history, true, $get_history_opts);
162
-
163
- $results['history'] = $history;
164
 
165
  $results['count_backups'] = count($backup_history);
166
 
@@ -383,12 +380,11 @@ class UpdraftPlus_Commands {
383
  break;
384
 
385
  case 'panel_download_and_restore':
386
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
387
  if (empty($backup_history)) {
388
- $updraftplus->rebuild_backup_history();
389
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
390
  }
391
- $backup_history = is_array($backup_history) ? $backup_history : array();
392
 
393
  $output = $updraftplus_admin->settings_downloading_and_restoring($backup_history, true, $data);
394
  break;
147
 
148
  public function deleteset($what) {
149
 
150
+ if (false === ($updraftplus_admin = $this->_load_ud_admin()) || false === ($updraftplus = $this->_load_ud())) return new WP_Error('no_updraftplus');
151
 
152
  if (!UpdraftPlus_Options::user_can_manage()) return new WP_Error('updraftplus_permission_denied');
153
 
154
+ $results = $updraftplus_admin->delete_set($what);
155
 
156
  $get_history_opts = isset($what['get_history_opts']) ? $what['get_history_opts'] : array();
157
 
158
+ $backup_history = UpdraftPlus_Backup_History::get_history();
 
159
 
160
+ $results['history'] = $updraftplus_admin->settings_downloading_and_restoring($backup_history, true, $get_history_opts);
 
 
161
 
162
  $results['count_backups'] = count($backup_history);
163
 
380
  break;
381
 
382
  case 'panel_download_and_restore':
383
+ $backup_history = UpdraftPlus_Backup_History::get_history();
384
  if (empty($backup_history)) {
385
+ UpdraftPlus_Backup_History::rebuild_backup_history();
386
+ $backup_history = UpdraftPlus_Backup_History::get_history();
387
  }
 
388
 
389
  $output = $updraftplus_admin->settings_downloading_and_restoring($backup_history, true, $data);
390
  break;
includes/class-wpadmin-commands.php CHANGED
@@ -96,7 +96,7 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
96
 
97
  public function restore_alldownloaded($params) {
98
 
99
- $backups = $this->_updraftplus->get_backup_history();
100
  $updraft_dir = $this->_updraftplus->backups_dir_location();
101
 
102
  $timestamp = (int) $params['timestamp'];
@@ -128,7 +128,7 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
128
  }
129
 
130
  if (isset($elements['db'])) {
131
-
132
  // Analyse the header of the database file + display results
133
  list ($mess2, $warn2, $err2, $info) = $this->_updraftplus->analyse_db_file($timestamp, $res);
134
  $mess = array_merge($mess, $mess2);
@@ -310,7 +310,7 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
310
  // The purpose of this is to look at the list of indicated downloads, and indicate which are not already fully downloaded. i.e. Which need further action.
311
  $send_back = array();
312
 
313
- $backup = $this->_updraftplus->get_backup_history($params['timestamp']);
314
  $updraft_dir = $this->_updraftplus->backups_dir_location();
315
  $backupable_entities = $this->_updraftplus->get_backupable_file_entities();
316
 
@@ -459,7 +459,7 @@ class UpdraftPlus_WPAdmin_Commands extends UpdraftPlus_Commands {
459
  }
460
 
461
  // Retrieve the information from our backup history
462
- $backup_history = $updraftplus->get_backup_history();
463
 
464
  if (!isset($backup_history[$params['timestamp']][$params['type']])) {
465
  return array('error' => __('Backup set not found', 'updraftplus'));
96
 
97
  public function restore_alldownloaded($params) {
98
 
99
+ $backups = UpdraftPlus_Backup_History::get_history();
100
  $updraft_dir = $this->_updraftplus->backups_dir_location();
101
 
102
  $timestamp = (int) $params['timestamp'];
128
  }
129
 
130
  if (isset($elements['db'])) {
131
+
132
  // Analyse the header of the database file + display results
133
  list ($mess2, $warn2, $err2, $info) = $this->_updraftplus->analyse_db_file($timestamp, $res);
134
  $mess = array_merge($mess, $mess2);
310
  // The purpose of this is to look at the list of indicated downloads, and indicate which are not already fully downloaded. i.e. Which need further action.
311
  $send_back = array();
312
 
313
+ $backup = UpdraftPlus_Backup_History::get_history($params['timestamp']);
314
  $updraft_dir = $this->_updraftplus->backups_dir_location();
315
  $backupable_entities = $this->_updraftplus->get_backupable_file_entities();
316
 
459
  }
460
 
461
  // Retrieve the information from our backup history
462
+ $backup_history = UpdraftPlus_Backup_History::get_history();
463
 
464
  if (!isset($backup_history[$params['timestamp']][$params['type']])) {
465
  return array('error' => __('Backup set not found', 'updraftplus'));
includes/deprecated-actions.php CHANGED
@@ -25,8 +25,7 @@ if (isset($_POST['subaction']) && 'credentials_test' == $_POST['subaction']) {
25
 
26
  } elseif ('countbackups' == $_REQUEST['subaction']) {
27
 
28
- $backup_history = UpdraftPlus_Options::get_updraft_option('updraft_backup_history');
29
- $backup_history = is_array($backup_history) ? $backup_history : array();
30
  echo __('Existing Backups', 'updraftplus').' ('.count($backup_history).')';
31
 
32
  } elseif ('historystatus' == $subaction) {
25
 
26
  } elseif ('countbackups' == $_REQUEST['subaction']) {
27
 
28
+ $backup_history = UpdraftPlus_Backup_History::get_history();
 
29
  echo __('Existing Backups', 'updraftplus').' ('.count($backup_history).')';
30
 
31
  } elseif ('historystatus' == $subaction) {
includes/updraft-admin.js CHANGED
@@ -1392,6 +1392,12 @@ jQuery(document).ready(function($) {
1392
  };
1393
  }
1394
 
 
 
 
 
 
 
1395
  $('#updraftcentral_keycreate_altmethod_moreinfo_get').click(function(e) {
1396
  e.preventDefault();
1397
  $(this).remove();
@@ -1554,6 +1560,55 @@ jQuery(document).ready(function($) {
1554
  });
1555
 
1556
  // UpdraftCentral
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1557
  jQuery('#updraftcentral_keys').on('click', '#updraftcentral_keycreate_go', function(e) {
1558
  e.preventDefault();
1559
 
@@ -1579,6 +1634,10 @@ jQuery(document).ready(function($) {
1579
 
1580
  data.mothership_firewalled = jQuery('#updraftcentral_keycreate_mothership_firewalled').is(':checked') ? 1 : 0;
1581
  data.where_send = where_send;
 
 
 
 
1582
 
1583
  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>'});
1584
 
@@ -1593,14 +1652,20 @@ jQuery(document).ready(function($) {
1593
  return;
1594
  }
1595
  alert(resp.r);
1596
- if (resp.hasOwnProperty('keys_table')) {
1597
- jQuery('#updraftcentral_keys_content').html(resp.keys_table);
1598
- }
1599
- if (resp.hasOwnProperty('bundle')) {
1600
- jQuery('#updraftcentral_keys_content').append(resp.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+resp.bundle+'</textarea>');
1601
  } else {
1602
  console.log(resp);
1603
  }
 
 
 
 
 
 
 
1604
  } catch (err) {
1605
  alert(updraftlion.unexpectedresponse+' '+response);
1606
  console.log(err);
@@ -2327,7 +2392,7 @@ jQuery('#setting-error-settings_updated').slideUp();}, 5000);
2327
 
2328
  jQuery('#updraft-navtab-backups-content .updraft_existing_backups').on('click', '.updraft-delete-link', function(e) {
2329
  e.preventDefault();
2330
- var hasremote = jQuery(this).data('hasremote').toString();
2331
  var nonce = jQuery(this).data('nonce').toString();
2332
  var key = jQuery(this).data('key').toString();
2333
  if (nonce) {
1392
  };
1393
  }
1394
 
1395
+ $('#updraftcentral_keys').on('click', 'a.updraftcentral_keys_show', function(e) {
1396
+ e.preventDefault();
1397
+ $(this).remove();
1398
+ $('#updraftcentral_keys_table').slideDown();
1399
+ });
1400
+
1401
  $('#updraftcentral_keycreate_altmethod_moreinfo_get').click(function(e) {
1402
  e.preventDefault();
1403
  $(this).remove();
1560
  });
1561
 
1562
  // UpdraftCentral
1563
+ jQuery('#updraftcentral_keys').on('click', '#updraftcentral_wizard_go', function(e) {
1564
+ jQuery('#updraftcentral_wizard_go').hide();
1565
+ jQuery('.updraftcentral_wizard_success').remove();
1566
+ jQuery('.create_key_container').show();
1567
+ });
1568
+
1569
+ jQuery('#updraftcentral_keys').on('click', '#updraftcentral_stage1_go', function(e) {
1570
+ e.preventDefault();
1571
+ jQuery('.updraftcentral_wizard_stage2').hide();
1572
+ jQuery('.updraftcentral_wizard_stage1').show();
1573
+ });
1574
+
1575
+ jQuery('#updraftcentral_keys').on('click', '#updraftcentral_stage2_go', function(e) {
1576
+ e.preventDefault();
1577
+
1578
+ // Reset the error message before we continue
1579
+ jQuery('#updraftcentral_wizard_stage1_error').text('');
1580
+
1581
+ var host = '';
1582
+
1583
+ if (jQuery('#updraftcentral_mothership_updraftpluscom').is(':checked')) {
1584
+ host = 'updraftplus.com';
1585
+ } else if (jQuery('#updraftcentral_mothership_other').is(':checked')) {
1586
+ var mothership = jQuery('#updraftcentral_keycreate_mothership').val();
1587
+ if ('' == mothership) {
1588
+ jQuery('#updraftcentral_wizard_stage1_error').text(updraftlion.updraftcentral_wizard_empty_url);
1589
+ return;
1590
+ }
1591
+ try {
1592
+ var url = new URL(mothership);
1593
+ host = url.hostname;
1594
+ } catch (e) {
1595
+ // Try and grab the host name a different way if it failed because of no URL object (e.g. IE 11).
1596
+ if ('undefined' === typeof URL) {
1597
+ host = jQuery('<a>').prop('href', mothership).prop('hostname');
1598
+ }
1599
+ if (!host || 'undefined' !== typeof URL) {
1600
+ jQuery('#updraftcentral_wizard_stage1_error').text(updraftlion.updraftcentral_wizard_invalid_url);
1601
+ return;
1602
+ }
1603
+ }
1604
+ }
1605
+
1606
+ jQuery('#updraftcentral_keycreate_description').val(host);
1607
+
1608
+ jQuery('.updraftcentral_wizard_stage1').hide();
1609
+ jQuery('.updraftcentral_wizard_stage2').show();
1610
+ });
1611
+
1612
  jQuery('#updraftcentral_keys').on('click', '#updraftcentral_keycreate_go', function(e) {
1613
  e.preventDefault();
1614
 
1634
 
1635
  data.mothership_firewalled = jQuery('#updraftcentral_keycreate_mothership_firewalled').is(':checked') ? 1 : 0;
1636
  data.where_send = where_send;
1637
+
1638
+ jQuery('.create_key_container').hide();
1639
+ jQuery('.updraftcentral_wizard_stage1').show();
1640
+ jQuery('.updraftcentral_wizard_stage2').hide();
1641
 
1642
  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>'});
1643
 
1652
  return;
1653
  }
1654
  alert(resp.r);
1655
+
1656
+ if (resp.hasOwnProperty('bundle') && resp.hasOwnProperty('keys_guide')) {
1657
+ jQuery('#updraftcentral_keys_content').html(resp.keys_guide);
1658
+ jQuery('#updraftcentral_keys_content').append('<div class="updraftcentral_wizard_success">'+resp.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+resp.bundle+'</textarea></div>');
 
1659
  } else {
1660
  console.log(resp);
1661
  }
1662
+
1663
+ if (resp.hasOwnProperty('keys_table')) {
1664
+ jQuery('#updraftcentral_keys_content').append(resp.keys_table);
1665
+ }
1666
+
1667
+ jQuery('#updraftcentral_wizard_go').show();
1668
+
1669
  } catch (err) {
1670
  alert(updraftlion.unexpectedresponse+' '+response);
1671
  console.log(err);
2392
 
2393
  jQuery('#updraft-navtab-backups-content .updraft_existing_backups').on('click', '.updraft-delete-link', function(e) {
2394
  e.preventDefault();
2395
+ var hasremote = jQuery(this).data('hasremote');
2396
  var nonce = jQuery(this).data('nonce').toString();
2397
  var key = jQuery(this).data('key').toString();
2398
  if (nonce) {
includes/updraft-admin.min.js CHANGED
@@ -1,3 +1,3 @@
1
- function updraft_send_command(t,e,a,r){default_options={json_parse:!0,alert_on_error:!0,action:"updraft_ajax",nonce:updraft_credentialtest_nonce,nonce_key:"nonce",timeout:null,async:!0,type:"POST"},"undefined"==typeof r&&(r={});for(var n in default_options)r.hasOwnProperty(n)||(r[n]=default_options[n]);var o={action:r.action,subaction:t};if(o[r.nonce_key]=r.nonce,"object"==typeof e)for(var u in e)o[u]=e[u];else o.action_data=e;var d={type:r.type,url:ajaxurl,data:o,success:function(t,e){if(r.json_parse){try{var n=ud_parse_json(t)}catch(o){return console.log(o),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t))}"function"==typeof a&&a(n,e,t)}else"function"==typeof a&&a(t,e)},error:function(t,e,a){"function"==typeof r.error_callback?r.error_callback(t,e,a):(console.log("updraft_send_command: error: "+e+" ("+a+")"),console.log(t))},dataType:"text",async:r.async};null!=r.timeout&&(d.timeout=r.timeout),jQuery.ajax(d)}function updraft_delete(t,e,a){jQuery("#updraft_delete_timestamp").val(t),jQuery("#updraft_delete_nonce").val(e),a?jQuery("#updraft-delete-remote-section, #updraft_delete_remote").removeAttr("disabled").show():jQuery("#updraft-delete-remote-section, #updraft_delete_remote").hide().attr("disabled","disabled"),t.indexOf(",")>-1?(jQuery("#updraft_delete_question_singular").hide(),jQuery("#updraft_delete_question_plural").show()):(jQuery("#updraft_delete_question_plural").hide(),jQuery("#updraft_delete_question_singular").show()),jQuery("#updraft-delete-modal").dialog("open")}function updraft_remote_storage_tab_activation(t){jQuery(".updraftplusmethod").hide(),jQuery(".remote-tab").data("active",!1),jQuery(".remote-tab").removeClass("nav-tab-active"),jQuery(".updraftplusmethod."+t).show(),jQuery(".remote-tab-"+t).data("active",!0),jQuery(".remote-tab-"+t).addClass("nav-tab-active")}function updraft_check_overduecrons(){updraft_send_command("check_overdue_crons",null,function(t){t&&t.hasOwnProperty("m")&&jQuery("#updraft-insert-admin-warning").html(t.m)},{alert_on_error:!1})}function updraft_remote_storage_tabs_setup(){var t=0,e=jQuery(".updraft_servicecheckbox:checked");jQuery(e).each(function(a,r){var n=jQuery(r).val();"updraft_servicecheckbox_none"!=jQuery(r).attr("id")&&t++,jQuery(".remote-tab-"+n).show(),a==jQuery(e).length-1&&updraft_remote_storage_tab_activation(n)}),t>0&&jQuery(".updraftplusmethod.none").hide(),jQuery(document).keyup(function(t){if((32===t.keyCode||13===t.keyCode)&&jQuery(document.activeElement).is("input.labelauty + label")){var e=jQuery(document.activeElement).attr("for");e&&jQuery("#"+e).change()}}),jQuery(".updraft_servicecheckbox").change(function(){var e=jQuery(this).attr("id");if("updraft_servicecheckbox_"==e.substring(0,24)){var a=e.substring(24);null!=a&&""!=a&&(jQuery(this).is(":checked")?(t++,jQuery(".remote-tab-"+a).fadeIn(),updraft_remote_storage_tab_activation(a)):(t--,jQuery(".remote-tab-"+a).hide(),1==jQuery(".remote-tab-"+a).data("active")&&updraft_remote_storage_tab_activation(jQuery(".remote-tab:visible").last().attr("name"))))}t<=0?jQuery(".updraftplusmethod.none").fadeIn():jQuery(".updraftplusmethod.none").hide()}),jQuery(".updraft_servicecheckbox:not(.multi)").change(function(){var t=jQuery(this).attr("value");jQuery(this).is(":not(:checked)")?(jQuery(".updraftplusmethod."+t).hide(),jQuery(".updraftplusmethod.none").fadeIn()):jQuery(".updraft_servicecheckbox").not(this).prop("checked",!1)});var a=jQuery(".updraft_servicecheckbox");"function"==typeof a.labelauty&&a.labelauty()}function updraft_remote_storage_test(t,e,a){var r,n;a?(r=jQuery("#updraft-"+t+"-test-"+a),n=".updraftplusmethod."+t+"-"+a):(r=jQuery("#updraft-"+t+"-test"),n=".updraftplusmethod."+t);var o=r.data("method_label");r.html(updraftlion.testing_settings.replace("%s",o));var u={method:t};jQuery("#updraft-navtab-settings-content "+n+" input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test"),r=jQuery(e).attr("type");if(a){r||(console.log("UpdraftPlus: settings test input item with no type found"),console.log(e),r="text");var n=null;"checkbox"==r?n=jQuery(e).is(":checked")?1:0:"text"==r||"password"==r?n=jQuery(e).val():(console.log("UpdraftPlus: settings test input item with unrecognised type ("+r+") found"),console.log(e)),u[a]=n}}),jQuery("#updraft-navtab-settings-content "+n+" textarea[data-updraft_settings_test], #updraft-navtab-settings-content "+n+" select[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test");u[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",u,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,u)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))})}function backupnow_whichfiles_checked(t){return jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(e){if(jQuery(this).is(":checked")){var a=jQuery(this).attr("name");if("updraft_include_"==a.substring(0,16)){var r=a.substring(16);""!=t&&(t+=","),t+=r}}}),t}function backupnow_whichtables_checked(t){var e=!1;return jQuery('#backupnow_database_moreoptions input[type="checkbox"]').each(function(t){if(!jQuery(this).is(":checked"))return void(e=!0)}),t=jQuery("input[name^='updraft_include_tables_']").serializeArray(),!e||t}function updraft_deleteallselected(){var t=0,e="",a="",r="";jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").each(function(n){t++;var o=jQuery(this).data("nonce");a&&(a+=","),a+=o;var u=jQuery(this).data("key");e&&(e+=","),e+=u;var d=jQuery(this).find(".updraftplus-remove").data("hasremote");r&&(r+=","),r+=d}),updraft_delete(e,a,r)}function updraft_openrestorepanel(t){updraft_console_focussed_tab=2,updraft_historytimertoggle(t),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-backups-content").show(),jQuery("#updraft-navtab-backups").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){jQuery("#updraft-migrate-modal").dialog("close"),jQuery('#updraft-navtab-backups-content .updraft_existing_backups button[data-backup_timestamp="'+t+'"]').click()}function updraft_restore_setoptions(t){var e=0;jQuery('input[name="updraft_restore[]"]').each(function(a,r){var n=jQuery(r).val(),o=n+"=([0-9,]+)",u=new RegExp(o),d=t.match(u);d?(jQuery(r).removeAttr("disabled").data("howmany",d[1]).parent().show(),e++,"db"==n&&(e+=4.5),jQuery(r).is(":checked")&&jQuery("#updraft_restorer_"+n+"options").show()):jQuery(r).attr("disabled","disabled").parent().hide()});var a=t.match(/dbcrypted=1/);a?jQuery(".updraft_restore_crypteddb").show():jQuery(".updraft_restore_crypteddb").hide();var r=t.match(/meta_foreign=([12])/);r?jQuery("#updraft_restore_meta_foreign").val(r[1]):jQuery("#updraft_restore_meta_foreign").val("0");var n=336+20*e;jQuery("#updraft-restore-modal").dialog("option","height",n)}function updraft_backup_dialog_open(){jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed?window.confirm(updraftlion.unsavedsettingsbackup)&&(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open")):(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open"))}function updraft_migrate_dialog_open(){jQuery("#updraft_migrate_modal_alt").hide(),updraft_migrate_modal_default_buttons={},updraft_migrate_modal_default_buttons[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-migrate-modal").dialog("option","buttons",updraft_migrate_modal_default_buttons),jQuery("#updraft-migrate-modal").dialog("open"),jQuery("#updraft_migrate_modal_main").show()}function updraft_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&updraft_activejobs_update(!0))}function updraft_backupnow_inpage_go(t,e,a,r,n,o,u){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,u="undefined"==typeof u?updraftlion.automaticbackupbeforeupdate:u,updraft_console_focussed_tab=1,updraft_inpage_success_callback=t;var d={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",d),jQuery("#updraft_inpage_prebackup").hide(),s&&jQuery("#updraft-backupnow-inpage-modal").dialog("open"),jQuery("#updraft_inpage_backup").show(),updraft_activejobslist_backupnownonce_only=1,updraft_inpage_hasbegun=0,updraft_backupnow_go(r,n,o,e,a,u,"")}function updraft_activejobs_update(t){var e=(new Date).getTime();if(!(0==t&&e<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=e+5500;var a="";jQuery(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,e){var r=jQuery(e).data("downloaderfor");"object"==typeof r&&(""!=a&&(a+=":"),a=a+r.base+","+r.nonce+","+r.what+","+r.index)});var r={downloaders:a};try{jQuery("#updraft-poplog").dialog("isOpen")&&(r.log_fetch=1,r.log_nonce=updraft_poplog_log_nonce,r.log_pointer=updraft_poplog_log_pointer)}catch(n){console.log(n)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(r.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",r,function(t){try{resp=ud_parse_json(t),resp.hasOwnProperty("l")&&(resp.l?(jQuery("#updraft_lastlogmessagerow").show(),jQuery("#updraft_lastlogcontainer").html(resp.l)):(jQuery("#updraft_lastlogmessagerow").hide(),jQuery("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var n=-1;if(jQuery("#updraft_activejobs").html(resp.j),jQuery("#updraft_activejobs .updraft_jobtimings").each(function(t,a){var r=jQuery(a);if(r.data("lastactivity")&&r.data("jobid")){var o=r.data("jobid"),u=r.data("lastactivity");(n==-1||u<n)&&(n=u);var d=r.data("nextresumptionafter"),s=r.data("nextresumption");e=(new Date).getTime(),u>50&&s>0&&d<-30&&e>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||s!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=s,updraft_last_forced_jobid=o,updraft_last_forced_when=e,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+s),updraft_send_command("forcescheduledresumption",{resumption:s,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),e=(new Date).getTime(),updraft_activejobs_nextupdate=e+18e4,1==updraft_page_is_visible&&(1==updraft_console_focussed_tab||2==updraft_console_focussed_tab&&""!=a)&&(updraft_activejobs_nextupdate=n>-1?n<5?e+1750:e+5e3:lastlog_lastdata==t?e+7500:e+1750),lastlog_lastdata=t,null!=resp.j&&""!=resp.j?(jQuery("#updraft_activejobsrow").show(),r.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly).length?(updraft_inpage_hasbegun=1,console.log("UpdraftPlus: the start of the requested backup job has been detected")):!updraft_inpage_hasbegun&&updraft_activejobslist_backupnownonce_only&&jQuery(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=jQuery(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,r.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):jQuery("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){jQuery("#updraft_backup_started").slideUp()},3500)):jQuery("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),jQuery("#updraft_activejobsrow").hide()),lastlog_jobs=resp.j,null!=resp.ds&&""!=resp.ds&&jQuery(resp.ds).each(function(e,a){""!=a.base&&updraft_downloader_status_update(a.base,a.timestamp,a.what,a.findex,a,t)}),null!=resp.u&&""!=resp.u&&jQuery("#updraft-poplog").dialog("isOpen")){var o=resp.u;if(o.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=o.pointer,null!=o.log&&""!=o.log)){var u=jQuery("#updraft-poplog").scrollTop();jQuery("#updraft-poplog-content").append(o.log),updraft_poplog_lastscroll!=u&&updraft_poplog_lastscroll!=-1||(jQuery("#updraft-poplog").scrollTop(jQuery("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=jQuery("#updraft-poplog").scrollTop())}}}catch(d){console.log(updraftlion.unexpectedresponse+" "+t),console.log(d)}},{json_parse:!1,type:"GET"})}}function updraft_popuplog(t){var e=updraftlion.loading_log_file;t&&(e+=" (log."+t+".txt)"),jQuery("#updraft-poplog").dialog("option","title",e),jQuery("#updraft-poplog-content").html("<em>"+e+" ...</em> "),jQuery("#updraft-poplog").dialog("open"),updraft_send_command("get_log",t,function(t){updraft_poplog_log_pointer=t.pointer,updraft_poplog_log_nonce=t.nonce;var e="?page=updraftplus&action=downloadlog&force_download=1&updraftplus_backup_nonce="+t.nonce;jQuery("#updraft-poplog-content").html(t.log);var a={};a[updraftlion.downloadlogfile]=function(){window.location.href=e},a[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-poplog").dialog("option","buttons",a),jQuery("#updraft-poplog").dialog("option","title","log."+t.nonce+".txt"),updraft_poplog_lastscroll=-1},{type:"GET",timeout:6e4,error_callback:function(t,e,a){var r=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(r),console.log(t)}})}function updraft_showlastbackup(){updraft_send_command("get_fragment","last_backup_html",function(t){response=t.output,lastbackup_laststatus==response?setTimeout(function(){updraft_showlastbackup()},7e3):jQuery("#updraft_last_backup").html(response),lastbackup_laststatus=response},{type:"GET"})}function updraft_historytimertoggle(t){updraft_historytimer&&1!=t?(clearTimeout(updraft_historytimer),updraft_historytimer=0):(updraft_updatehistory(0,0),updraft_historytimer=setInterval(function(){updraft_updatehistory(0,0)},3e4),calculated_diskspace||(updraftplus_diskspace(),calculated_diskspace=1))}function updraft_updatehistory(t,e){var a=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=a+30;else if(a<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+a.toString()+" < "+updraft_historytimer_notbefore.toString());1==t&&(1==e?(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanningremote+"</em></p>")):(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanning+"</em></p>")));var r=e?"remotescan":!!t&&"rescan";updraft_send_command("rescan",r,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_modal")&&t.migrate_modal&&jQuery("#updraft_migrate_modal_main").replaceWith(t.migrate_modal),null!=t.n&&jQuery("#updraft-navtab-backups").html(t.n),null!=t.t){if(null!=t.cksum){if(t.cksum==updraft_history_lastchecksum)return;updraft_history_lastchecksum=t.cksum}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html(t.t),t.data&&console.log(t.data)}})}function updraft_intervals_monthly_or_not(t,e){var a="#updraft-navtab-settings-content #"+t,r=jQuery(a+" option").length,n="monthly"==e,o=!1;if(r>10&&(o=!0),n||o){if(n&&o)return void("monthly"==e&&(jQuery(".updraft_monthly_extra_words_"+t).remove(),jQuery(a).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>")));if(jQuery(".updraft_monthly_extra_words_"+t).remove(),n){updraft_interval_week_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.mdayselector).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>");var u=updraft_interval_month_val===!1?1:updraft_interval_month_val;u-=1,jQuery(a+" option:eq("+u+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var d=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+d+")").prop("selected",!0)}}}function updraft_check_same_times(){var t=0,e=jQuery("#updraft-navtab-settings-content .updraft_interval").val();"manual"==e?jQuery("#updraft-navtab-settings-content .updraft_files_timings").hide():jQuery("#updraft-navtab-settings-content .updraft_files_timings").show(),"weekly"==e||"fortnightly"==e||"monthly"==e?(updraft_intervals_monthly_or_not("updraft_startday_files",e),jQuery("#updraft-navtab-settings-content #updraft_startday_files").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_files").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_files").hide());var a=jQuery("#updraft-navtab-settings-content .updraft_interval_database").val();"manual"==a&&(t=1,jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide()),"weekly"==a||"fortnightly"==a||"monthly"==a?(updraft_intervals_monthly_or_not("updraft_startday_db",a),jQuery("#updraft-navtab-settings-content #updraft_startday_db").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_db").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_db").hide()),a==e?(jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide(),0==t?jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").show():jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide()):(jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide(),0==t&&jQuery("#updraft-navtab-settings-content .updraft_db_timings").show())}function updraft_activejobs_delete(t){updraft_send_command("activejobs_delete",t,function(e){"Y"==e.ok?jQuery("#updraft-jobid-"+t).html(e.m).fadeOut("slow").remove():"N"==e.ok?alert(e.m):(alert(updraftlion.unexpectedresponse),console.log(e))})}function updraftplus_diskspace_entity(t){jQuery("#updraft_diskspaceused_"+t).html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:t},function(e){jQuery("#updraft_diskspaceused_"+t).html(e.output)},{type:"GET"})}function updraft_iframe_modal(t,e){var a=780,r=500;jQuery("#updraft-iframe-modal-innards").html('<iframe width="100%" height="430px" src="'+ajaxurl+"?action=updraft_ajax&subaction="+t+"&nonce="+updraft_credentialtest_nonce+'"></iframe>'),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("open")}function updraft_html_modal(t,e,a,r){jQuery("#updraft-iframe-modal-innards").html(t);var n={};a<450&&(n[updraftlion.close]=function(){jQuery(this).dialog("close")}),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("option","buttons",n).dialog("open")}function updraftplus_diskspace(){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html(t.output)},{type:"GET"})}function updraftplus_deletefromserver(t,e,a){a||(a=0);var r={stage:"delete",timestamp:t,type:e,findex:a};updraft_send_command("updraft_download_backup",r,null,{action:"updraft_download_backup",nonce:updraft_download_nonce,nonce_key:"_wpnonce"})}function updraftplus_downloadstage2(t,e,a){location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"&timestamp="+t+"&type="+e+"&stage=2&findex="+a+"&action=updraft_download_backup"}function updraftplus_show_contents(t,e,a){var r='<div id="updraft_zip_files_container" class="hidden-in-updraftcentral" style="clear:left;"><div id="updraft_zip_info_container"><p><span id="updraft_zip_path_text">'+updraftlion.zip_file_contents_info+'</span> - <span id="updraft_zip_size_text"></span></p>'+updraftlion.browse_download_link+'</div><div id="updraft_zip_files_jstree_container"><input type="search" id="zip_files_jstree_search" name="zip_files_jstree_search" placeholder="'+updraftlion.search+'"><div id="updraft_zip_files_jstree"></div></div></div>';updraft_html_modal(r,updraftlion.zip_file_contents,780,500),zip_files_jstree("zipbrowser",t,e,a)}function zip_files_jstree(t,e,a,r){jQuery("#updraft_zip_files_jstree").jstree({core:{multiple:!1,data:function(n,o){updraft_send_command("get_jstree_directory_nodes",{entity:t,node:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):o.call(this,t.nodes)})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["search","sort"]}),jQuery("#updraft_zip_files_jstree").on("ready.jstree",function(t,e){jQuery("#updraft-iframe-modal").dialog("option","title",updraftlion.zip_file_contents+": "+e.instance.get_node("#").children[0])});var n=!1;jQuery("#zip_files_jstree_search").keyup(function(){n&&clearTimeout(n),n=setTimeout(function(){var t=jQuery("#zip_files_jstree_search").val();jQuery("#updraft_zip_files_jstree").jstree(!0).search(t)},250)}),jQuery("#updraft_zip_files_jstree").on("changed.jstree",function(t,e){jQuery("#updraft_zip_path_text").text(e.node.li_attr.path),e.node.li_attr.size?(jQuery("#updraft_zip_size_text").text(e.node.li_attr.size),jQuery("#updraft_zip_download_item").show()):(jQuery("#updraft_zip_size_text").text(""),jQuery("#updraft_zip_download_item").hide())}),jQuery("#updraft_zip_download_item").click(function(t){t.preventDefault();var n=jQuery("#updraft_zip_path_text").text();updraft_send_command("get_zipfile_download",{path:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):t.hasOwnProperty("path")?location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"&timestamp="+e+"&type="+a+"&stage=2&findex="+r+"&filepath="+t.path+"&action=updraft_download_backup":alert(updraftlion.download_timeout)})})}function updraft_downloader(t,e,a,r,n,o,u){"string"!=typeof n&&(n=n.toString());for(var n=n.split(","),d=0;d<n.length;d++){var s=t+e+"_"+a+"_"+n[d],p="."+s,i=parseInt(n[d]);i++;var l=0==n[d]?"":" ("+i+")";if(!jQuery(p).length){var c=o?o:e;jQuery(r).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+s+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+" "+a+l+" ("+c+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+s+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(p).data("downloaderfor",{base:t,nonce:e,what:a,index:n[d]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)}jQuery(p).data("lasttimebegan",(new Date).getTime()),u=!!u;var f=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+n[d]).data("wp_nonce").toString(),_={type:a,timestamp:e,findex:n[d]},g={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:f,timeout:1e4,async:u};updraft_send_command("updraft_download_backup",_,function(t){},g)}return!1}function ud_parse_json(t){t.charAt(0),t.charAt(t.length-1);try{var e=JSON.parse(t);return e}catch(a){console.log("UpdraftPlus: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(t)}var r=t.indexOf("{"),n=t.lastIndexOf("}");if(r>-1&&n>-1){var o=t.slice(r,n+1);try{var u=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),u}catch(a){throw console.log("UpdraftPlus: Exception when trying to parse JSON (2)"),a}}throw"UpdraftPlus: could not parse the JSON"}function updraft_restorer_checkstage2(t){var e=jQuery("#ud_downloadstatus2 .file").length;return e>0?void(t&&alert(updraftlion.stilldownloading)):(jQuery("#updraft-restore-modal-stage2a").html(updraftlion.processing),void updraft_send_command("restore_alldownloaded",{timestamp:jQuery("#updraft_restore_timestamp").val(),restoreopts:jQuery("#updraft_restore_form").serialize()},function(t){var e=null;jQuery("#updraft_restorer_restore_options").val("");try{var a=ud_parse_json(t);if(null==a)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);var r=a.m;if(""!=a.w&&(r=r+"<p><strong>"+updraftlion.warnings+"</strong><br>"+a.w+"</p>"),""!=a.e?r=r+"<p><strong>"+updraftlion.errors+"</strong><br>"+a.e+"</p>":updraft_restore_stage=3,a.hasOwnProperty("i")){try{if(e=ud_parse_json(a.i),e.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var n=e.addui;r+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+n+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete e.addui,a.i=JSON.stringify(e))}}catch(o){console.log(o),console.log(a)}jQuery("#updraft_restorer_backup_info").val(a.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(r),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(o){console.log(t),console.log(o),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+t).html()}},{json_parse:!1}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e,a,r,n,o){var u=t+e+"_"+a+"_"+r,d="."+u,s=0;if(null!=n.e)jQuery(d+" .raw").html("<strong>"+updraftlion.error+"</strong> "+n.e),console.log(n);else if(null!=n.p){if(jQuery(d+"_st .dlfileprogress").width(n.p+"%"),null!=n.a&&n.a>0){var p=(new Date).getTime(),i=jQuery(d).data("lasttimebegan"),l=p-i;if(n.a>90&&l>6e4){console.log(e+" "+a+" "+r+": restarting download: file_age="+n.a+", sincelastrestart_ms="+l),jQuery(d).data("lasttimebegan",(new Date).getTime());var c=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+r),f={type:a,timestamp:e,findex:r},_={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:c.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",f,function(t){},_),jQuery(d).data("lasttimebegan",(new Date).getTime())}}if(null!=n.m)if(n.p>=100&&"udrestoredlstatus_"==t)jQuery(d+" .raw").html(n.m),jQuery(d).fadeOut("slow",function(){jQuery(this).remove(),updraft_restorer_checkstage2(0)});else if(n.p<100||"uddlstatus_"!=t)jQuery(d+" .raw").html(n.m);else{var g=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button type="button" onclick="updraftplus_downloadstage2(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button id="uddownloaddelete_'+e+"_"+a+'" type="button" onclick="updraftplus_deletefromserver(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.deletefromserver+"</button>";n.hasOwnProperty("can_show_contents")&&n.can_show_contents&&(g+=' <button type="button" onclick="updraftplus_show_contents(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(d+" .raw").html(g)}}else null!=n.m?jQuery(d+" .raw").html(n.m):(jQuery(d+" .raw").html(updraftlion.jsonnotunderstood+" ("+o+")"),s=1);return s}function updraft_backupnow_go(t,e,a,r,n,o,u){jQuery("#updraft_backup_started").html("<em>"+updraftlion.requeststart+"</em>").slideDown(""),setTimeout(function(){jQuery("#updraft_backup_started").fadeOut("slow")},75e3);var d={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};""!=r&&(d.onlythisfileentity=r),""!=u&&(d.onlythesetableentities=u),updraft_send_command("backupnow",d,function(t){jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),setTimeout(function(){updraft_activejobs_update(!0)},500)})}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var updraft_restore_stage=1,lastlog_lastmessage="",lastlog_lastdata="",lastlog_jobs="",updraft_activejobs_nextupdate=(new Date).getTime()+1e3,updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_settings_form_changed=!1;window.onbeforeunload=function(t){if(updraft_settings_form_changed)return updraftlion.unsavedsettings},"undefined"!=typeof document.hidden&&document.addEventListener("visibilitychange",function(){updraft_check_page_visibility(0)},!1),updraft_check_page_visibility(1);var updraft_poplog_log_nonce,updraft_poplog_log_pointer=0,updraft_poplog_lastscroll=-1,updraft_last_forced_jobid=-1,updraft_last_forced_resumption=-1,updraft_last_forced_when=-1,updraft_backupnow_nonce="",updraft_activejobslist_backupnownonce_only=0,updraft_inpage_hasbegun=0,updraft_historytimer=0,calculated_diskspace=0,updraft_historytimer_notbefore=0,updraft_history_lastchecksum=!1,updraft_interval_week_val=!1,updraft_interval_month_val=!1;"undefined"!=typeof updraft_siteurl&&setInterval(function(){jQuery.get(updraft_siteurl+"/wp-cron.php")},21e4);var lastlog_lastmessage="";jQuery(document).ajaxError(function(t,e,a,r){if(null!=r&&""!=r&&null!=e.responseText&&""!=e.responseText&&(console.log("Error caught by UpdraftPlus ajaxError handler (follows) for "+a.url),console.log(r),0==a.url.search(ajaxurl)))if(a.url.search("subaction=downloadstatus")>=0){var n=a.url.match(/timestamp=\d+/),o=a.url.match(/type=[a-z]+/),u=a.url.match(/findex=\d+/),d=a.url.match(/base=[a-z_]+/);if(u=u instanceof Array?parseInt(u[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",d=d instanceof Array?d[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=d&&""!=o&&n>0){var s=d+n+"_"+o+"_"+u;jQuery("."+s+" .raw").html("<strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode)}}else a.url.search("subaction=restore_alldownloaded")>=0&&jQuery("#updraft-restore-modal-stage2a").append("<br><strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode+": "+r)}),jQuery(document).ready(function(t){function e(e){t('.expertmode .advanced_settings_container .advanced_tools:not(".'+e+'")').hide(),t(".expertmode .advanced_settings_container .advanced_tools."+e).fadeIn("slow"),t(".expertmode .advanced_settings_container .advanced_tools_button:not(#"+e+")").removeClass("active"),t(".expertmode .advanced_settings_container .advanced_tools_button#"+e).addClass("active")}function a(t){var e=!!jQuery("#updraftcentral_mothership_other").is(":checked");e?(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!1),t?jQuery("#updraftcentral_keycreate_mothership_firewalled_container").show():(jQuery("#updraftcentral_keycreate_mothership_firewalled_container").slideDown(),jQuery("#updraftcentral_keycreate_mothership").focus())):jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!0)}function r(e,a,n,o){jQuery("#updraft-delete-waitwarning").slideDown();var u=e,d=a,s=n,p=o,i=jQuery("#updraft_delete_timestamp").val().split(","),l=jQuery("#updraft_delete_form").serializeArray(),c={};
2
- t.each(l,function(){void 0!==c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c.remote_delete_limit=updraftlion.remote_delete_limit,delete c.action,delete c.subaction,delete c.nonce,updraft_send_command("deleteset",c,function(t){if(t.hasOwnProperty("result")&&null!=t.result)if("error"==t.result)alert(updraftlion.error+" "+t.message);else if("continue"==t.result)u=u+t.backup_local+t.backup_remote,d+=t.backup_local,s+=t.backup_remote,p+=t.backup_sets,jQuery("#updraft-deleted-files-total").text(u+" "+updraftlion.remote_files_deleted),r(u,d,s,p);else if("success"==t.result){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp(),t.hasOwnProperty("count_backups")&&jQuery("#updraft-navtab-backups").html(updraftlion.existing_backups+" ("+t.count_backups+")");for(var e=0;e<i.length;e++){var a=i[e];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+a).slideUp().remove()}jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length<1&&jQuery("#ud_massactions").hide(),updraft_history_lastchecksum=!1,jQuery("#updraft-delete-modal").dialog("close"),d+=t.backup_local,s+=t.backup_remote,p+=t.backup_sets,alert(t.set_message+" "+p+"\n"+t.local_message+" "+d+"\n"+t.remote_message+" "+s)}})}function n(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideUp()}function o(){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 u(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 d(t,e,a){updraft_restore_setoptions(t),jQuery("#updraft_restore_timestamp").val(e),jQuery(".updraft_restore_date").html(a),updraft_restore_stage=1,jQuery("#updraft-migrate-modal").dialog("close"),jQuery("#updraft-restore-modal").dialog("open"),jQuery("#updraft-restore-modal-stage1").show(),jQuery("#updraft-restore-modal-stage2").hide(),jQuery("#updraft-restore-modal-stage2a").html(""),updraft_activejobs_update(!0)}function s(t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e="[\\?&]"+t+"=([^&#]*)",a=new RegExp(e),r=a.exec(window.location.href);return null==r?"":decodeURIComponent(r[1].replace(/\+/g," "))}if(t(".expertmode .advanced_settings_container .advanced_tools_button").click(function(){e(t(this).attr("id"))}),jQuery.ui&&jQuery.ui.dialog&&jQuery.ui.dialog.prototype._allowInteraction){var p=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||p.apply(this,arguments)}}t("#updraftcentral_keycreate_altmethod_moreinfo_get").click(function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keycreate_altmethod_moreinfo").slideDown()}),t(".updraft_webdav_settings").on("change keyup paste",function(){var e=[],a="";t(".updraft_webdav_settings").each(function(r,n){var o=t(n).attr("id");if(o&&"updraft_webdav_"==o.substring(0,15)){var u=o.substring(15);id_split=u.split("_"),u=id_split[0],a=id_split[1],e[u]=this.value}});var r="",n="@",o="/",u=":",d=":";(e.host.indexOf("@")>=0||""===e.host)&&(n=""),e.host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e.path.indexOf("/")&&""!==e.path||(o=""),""!==e.user&&""!==e.pass||(u=""),""!==e.host&&""!==e.port||(d=""),r=e.webdav+e.user+u+e.pass+n+encodeURIComponent(e.host)+d+e.port+o+e.path,t("#updraft_webdav_url_"+a).val(r)}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(e){(e.ctrlKey||e.metaKey)&&(t(this).toggleClass("backuprowselected"),t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length>0?t("#ud_massactions").show():t("#ud_massactions").hide())}),jQuery("#updraft-navtab-settings-content .updraftplusmethod").on("click","button.updraft-test-button",function(){var t=jQuery(this).data("method"),e=jQuery(this).data("instance_id");updraft_remote_storage_test(t,function(e,a,r){return"sftp"==t&&(r.hasOwnProperty("scp")&&r.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+e.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+e.output),e.hasOwnProperty("data")&&console.log(e.data),!0)},e)}),t("#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database").change(function(){updraft_check_same_times()}),t("#backupnow_includefiles_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_includefiles_moreoptions").toggle()}),t("#backupnow_database_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_database_moreoptions").toggle()}),t("#updraft-navtab-backups-content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),updraftplus_diskspace()}),t("#updraft-navtab-backups-content a.updraft_uploader_toggle").click(function(e){e.preventDefault(),t("#updraft-plupload-modal").slideToggle()}),t("#updraft-navtab-backups-content a.updraft_rescan_local").click(function(t){t.preventDefault(),updraft_updatehistory(1,0)}),t("#updraft-navtab-backups-content a.updraft_rescan_remote").click(function(t){t.preventDefault(),updraft_updatehistory(1,1)}),jQuery("#updraftcentral_keys").on("change",'input[type="radio"]',function(){a(!1)}),a(!0),jQuery("#updraftcentral_keys").on("click","#updraftcentral_view_log",function(t){t.preventDefault(),jQuery("#updraftcentral_view_log_container").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.fetching+"</div>"});try{updraft_send_command("updraftcentral_get_log",null,function(t){jQuery("#updraftcentral_view_log_container").unblock(),t.hasOwnProperty("log_contents")?jQuery("#updraftcentral_view_log_contents").html('<div style="border:1px solid;padding: 2px;max-height: 400px; overflow-y:scroll;">'+t.log_contents+"</div>"):console.response(resp)})}catch(e){jQuery("#updraft_central_key").html(),console.log(e)}}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_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("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+"</div>"});try{updraft_send_command("updraftcentral_create_key",data,function(t){jQuery("#updraftcentral_keys").unblock();try{if(resp=ud_parse_json(t),resp.hasOwnProperty("error"))return alert(resp.error),void console.log(resp);alert(resp.r),resp.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").html(resp.keys_table),resp.hasOwnProperty("bundle")?jQuery("#updraftcentral_keys_content").append(resp.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+resp.bundle+"</textarea>"):console.log(resp)}catch(e){alert(updraftlion.unexpectedresponse+" "+t),console.log(e)}},{json_parse:!1})}catch(o){jQuery("#updraft_central_key").html(),console.log(o)}}),jQuery("#updraftcentral_keys").on("click",".updraftcentral_key_delete",function(t){t.preventDefault();var e=jQuery(this).data("key_id");return"undefined"==typeof e?void console.log("UpdraftPlus: .updraftcentral_key_delete clicked, but no key ID found"):(jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.deleting+"</div>"}),void updraft_send_command("updraftcentral_delete_key",{key_id:e},function(t){jQuery("#updraftcentral_keys").unblock(),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").html(t.keys_table)}))}),jQuery("#updraft_reset_sid").click(function(t){t.preventDefault(),updraft_send_command("reset_site_id",null,function(t){jQuery("#updraft_show_sid").html(t)},{json_parse:!1})}),jQuery("#updraft-navtab-settings-content form input:not('.udignorechange'), #updraft-navtab-settings-content form select").change(function(t){updraft_settings_form_changed=!0}),jQuery("#updraft-navtab-settings-content form input[type='submit']").click(function(t){updraft_settings_form_changed=!1});var i=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>i&&(i=a)}),i>180&&jQuery(".updraft-bigbutton").width(i),setInterval(function(){updraft_activejobs_update(!1)},1250),setTimeout(function(){jQuery("#setting-error-settings_updated").slideUp()},5e3),jQuery(".updraftplusmethod").hide(),jQuery("#updraft_restore_db").change(function(){jQuery("#updraft_restore_db").is(":checked")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var l={};l[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:l});var c={};c[updraftlion.deletebutton]=function(){r(0,0,0,0)},c[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:262,width:430,modal:!0,buttons:c});var f={};f[updraftlion.restore]=function(){var t=0,e=[],a=0,r=jQuery("#updraft_restore_meta_foreign").val();if(jQuery('input[name="updraft_restore[]"]').each(function(n,o){if(jQuery(o).is(":checked")&&!jQuery(o).is(":disabled")){t=1;var u=jQuery(o).data("howmany"),d=jQuery(o).val();if((1==r||2==r&&"db"!=d)&&("wpcore"!=d&&(u=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),d="wpcore"),"wpcore"!=d||0==a){var s=[d,u];e.push(s),"wpcore"==d&&(a=1)}}}),1==t){if(1==updraft_restore_stage){jQuery("#updraft-restore-modal-stage1").slideUp("slow"),jQuery("#updraft-restore-modal-stage2").show(),updraft_restore_stage=2;var n=jQuery(".updraft_restore_date").first().text(),o=e,u=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:u},function(t){if(t.hasOwnProperty("downloads")&&(console.log("UpdraftPlus: items which still require downloading follow"),o=t.downloads,console.log(o)),0==o.length)updraft_restorer_checkstage2(0);else for(var e=0;e<o.length;e++)updraft_downloader("udrestoredlstatus_",u,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1})}catch(d){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(d),alert(updraftlion.jsonnotunderstood)}}else if(2==updraft_restore_stage)updraft_restorer_checkstage2(1);else if(3==updraft_restore_stage){var s=1;if(jQuery("#updraft_restoreoptions_ui input.required").each(function(t){if(0!=s){var e=jQuery(this).val();if(""==e)alert(updraftlion.pleasefillinrequired),s=0;else if(""!=jQuery(this).attr("pattern")){var a=jQuery(this).attr("pattern"),r=new RegExp(a,"g");r.test(e)||(alert(jQuery(this).data("invalidpattern")),s=0)}}}),!s)return;var p=jQuery("#updraft_restoreoptions_ui select, #updraft_restoreoptions_ui input").serialize();console.log("Restore options: "+p),jQuery("#updraft_restorer_restore_options").val(p),jQuery("#updraft-restore-modal-stage2a").html(updraftlion.restoreproceeding),jQuery("#updraft_restore_form").submit()}}else alert(updraftlion.youdidnotselectany)},f[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:f}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:345,width:580,modal:!0});var _={};_[updraftlion.backupnow]=function(){var t=jQuery("#backupnow_includedb").is(":checked")?0:1,e=jQuery("#backupnow_includefiles").is(":checked")?0:1,a=jQuery("#backupnow_includecloud").is(":checked")?0:1,r=backupnow_whichtables_checked("");if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var n=backupnow_whichfiles_checked("");return""==n&&0==e?(alert(updraftlion.nofileschosen),void jQuery("#backupnow_includefiles_moreoptions").show()):t&&e?void alert(updraftlion.excludedeverything):(jQuery(this).dialog("close"),setTimeout(function(){jQuery("#updraft_lastlogmessagerow").fadeOut("slow",function(){jQuery(this).fadeIn("slow")})},1700),void updraft_backupnow_go(t,e,a,n,"",jQuery("#backupnow_label").val(),r))},_[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:_}),jQuery("#updraft-migrate-modal").dialog({autoOpen:!1,height:updraftlion.migratemodalheight,width:updraftlion.migratemodalwidth,modal:!0}),jQuery("#updraft-poplog").dialog({autoOpen:!1,height:600,width:"75%",modal:!0}),jQuery("#updraft-navtab-settings-content .enableexpertmode").click(function(){return jQuery("#updraft-navtab-settings-content .expertmode").fadeIn(),jQuery("#updraft-navtab-settings-content .enableexpertmode").off("click"),!1}),jQuery("#updraft-navtab-settings-content .backupdirrow").on("click","a.updraft_backup_dir_reset",function(){return jQuery("#updraft_dir").val("updraft"),!1}),jQuery("#updraft-navtab-settings-content .updraft_include_entity").click(function(){var t=jQuery(this).data("toggle_exclude_field");t&&n(t,!1)}),jQuery("#updraft-navtab-settings-content .updraft-service").change(function(){var t=jQuery(this).val();jQuery("#updraft-navtab-settings-content .updraftplusmethod").hide(),jQuery("#updraft-navtab-settings-content ."+t).show()}),jQuery("#updraft-navtab-settings-content a.updraft_show_decryption_widget").click(function(t){t.preventDefault(),jQuery("#updraftplus_db_decrypt").val(jQuery("#updraft_encryptionphrase").val()),jQuery("#updraft-manualdecrypt-modal").slideToggle()}),jQuery("#updraftplus-phpinfo").click(function(t){t.preventDefault(),updraft_iframe_modal("phpinfo",updraftlion.phpinfo)}),jQuery("#updraftplus-rawbackuphistory").click(function(t){t.preventDefault(),updraft_iframe_modal("rawbackuphistory",updraftlion.raw)}),jQuery("#updraft-navtab-status").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-status-content").show(),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-expert-content").show(),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=4}),jQuery("#updraft-navtab-settings, #updraft-navtab-settings2, #updraft_backupnow_gotosettings").click(function(t){t.preventDefault(),jQuery(this).parents(".updraftmessage").remove(),jQuery("#updraft-backupnow-modal").dialog("close"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-settings-content").show(),jQuery("#updraft-navtab-settings").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=3}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").show(),jQuery("#updraft-navtab-addons").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=5}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_openrestorepanel(1)}),updraft_send_command("ping",null,function(t,e){"success"==e&&"pong"!=t&&t.indexOf("pong")>=0&&(jQuery("#updraft-navtab-backups-content .ud-whitespace-warning").show(),console.log("UpdraftPlus: Extra output warning: response (which should be just (string)'pong') follows."),console.log(t))},{json_parse:!1,type:"GET"});try{"undefined"!=typeof updraft_plupload_config&&o()}catch(g){console.log(g)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),u(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),u(1)}),jQuery("#updraftplus_callwpaction_go").click(function(t){t.preventDefault(),params={wpaction:jQuery("#updraftplus_callwpaction").val()},updraft_send_command("call_wordpress_action",params,function(t){t.e?alert(t.e):t.s||(t.r?jQuery("#updraftplus_callwpaction_results").html(t.r):(console.log(t),alert(updraftlion.jsonnotunderstood)))})}),jQuery("#updraft_activejobs_table").on("click",".updraft_jobinfo_delete",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_activejobs_delete(e):console.log("UpdraftPlus: A stop job link was clicked, but the Job ID could not be found")}),jQuery("#updraft_activejobs_table, #updraft-navtab-backups-content .updraft_existing_backups, #updraft-backupnow-inpage-modal").on("click",".updraft-log-link",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_popuplog(e):console.log("UpdraftPlus: A log link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.choose-components-button",function(t){var e=jQuery(this).data("entities"),a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("showdata");d(e,a,r)}),"initiate_restore"==s("udaction")){var y=s("entities"),m=s("backup_timestamp"),h=s("showdata");d(y,m,h)}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click",".updraft-delete-link",function(t){t.preventDefault();var e=jQuery(this).data("hasremote").toString(),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+"#updraftvault_settings_cell").on("click",".updraftvault_backtostart",function(a){a.preventDefault(),t(e+"#updraftvault_settings_showoptions").slideUp(),t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").slideUp(),t(e+"#updraftvault_settings_default").slideDown()}),t(e+"#updraftvault_settings_connect input").keypress(function(a){if(13==a.which)return t(e+"#updraftvault_connect_go").click(),!1}),t(e+"#updraftvault_settings_cell").on("click","#updraftvault_recountquota",function(a){a.preventDefault(),t(e+"#updraftvault_recountquota").html(updraftlion.counting);try{updraft_send_command("vault_recountquota",null,function(a){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html),a.hasOwnProperty("connected")&&(a.connected?(t(e+"#updraftvault_settings_default").hide(),t(e+"#updraftvault_settings_connected").show()):(t(e+"#updraftvault_settings_connected").hide(),t(e+"#updraftvault_settings_default").show())))})}catch(r){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),console.log(r)}}),t(e+"#updraftvault_settings_cell").on("click","#updraftvault_disconnect",function(a){a.preventDefault(),t(e+"#updraftvault_disconnect").html(updraftlion.disconnecting);try{updraft_send_command("vault_disconnect",{immediate_echo:!0},function(a){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html).slideUp(),t(e+"#updraftvault_settings_default").slideDown())})}catch(r){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),console.log(r)}}),t(e+"#updraftvault_connect").click(function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_connect").slideDown()}),t(e+"#updraftvault_showoptions").click(function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_showoptions").slideDown()}),t(e+"#updraftvault_connect_go").click(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()},function(a,r,n){t(e+"#updraftvault_connect_go").html(updraftlion.connect),a.hasOwnProperty("e")?(updraft_html_modal('<h4 style="margin-top:0px; padding-top:0px;">'+updraftlion.errornocolon+"</h4><p>"+a.e+"</p>",updraftlion.disconnect,400,250),a.hasOwnProperty("code")&&"no_quota"==a.code&&(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_default").slideDown())):a.hasOwnProperty("connected")&&a.connected&&a.hasOwnProperty("html")?(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").html(a.html).slideDown()):(console.log(a),alert(updraftlion.unexpectedresponse+" "+n))}),!1})}),jQuery(document).ready(function(t){function e(){var t=new plupload.Uploader(updraft_plupload_config2);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui2");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area2").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area2").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){return/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-db([0-9]+)?\.(gz\.crypt)$/i.test(e.name)?void jQuery("#filelist2").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>'):(alert(e.name+": "+updraftlion.notdba),void t.removeFile(e))}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100)))}),t.bind("Error",function(t,e){"-200"==e.code?err_makesure="\n"+updraftlion.makesure2:err_makesure=updraftlion.makesure,alert(updraftlion.uploaderr+" (code "+e.code+") : "+e.message+" "+err_makesure)}),t.bind("FileUploaded",function(t,e,a){"200"==a.status?"ERROR:"==a.response.substring(0,6)?alert(updraftlion.uploaderror+" "+a.response.substring(6)):"OK:"==a.response.substring(0,3)?(bkey=a.response.substring(3),jQuery("#"+e.id+" .fileprogress").hide(),jQuery("#"+e.id).append(updraftlion.uploaded+' <a href="?page=updraftplus&action=downloadfile&updraftplus_file='+bkey+"&decrypt_key="+encodeURIComponent(jQuery("#updraftplus_db_decrypt").val())+'">'+updraftlion.followlink+"</a> "+updraftlion.thiskey+" "+jQuery("#updraftplus_db_decrypt").val().replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;"))):alert(updraftlion.unknownresp+" "+a.response):alert(updraftlion.ukrespstatus+" "+a.code)})}try{"undefined"!=typeof updraft_plupload_config2&&e()}catch(a){console.log(a)}jQuery("#updraft-hidethis").remove(),updraft_remote_storage_tabs_setup()}),jQuery(document).ready(function(t){function e(){var t=r("object"),e=new Date;t=JSON.stringify({version:"1.12.40",epoch_date:e.getTime(),local_date:e.toLocaleString(),network_site_url:updraftlion.network_site_url,data:t});var a=document.body.appendChild(document.createElement("a"));a.setAttribute("download","updraftplus-settings.json"),a.setAttribute("style","display:none;"),a.setAttribute("href","data:text/json;charset=UTF-8,"+encodeURIComponent(t)),a.click()}function a(e){var a,r=decodeURIComponent(e);try{a=ud_parse_json(r)}catch(o){return t.unblockUI(),jQuery("#import_settings").val(""),console.log(r),console.log(o),void alert(updraftlion.import_invalid_json_file)}if(window.confirm(updraftlion.importing_data_from+" "+r.network_site_url+"\n"+updraftlion.exported_on+" "+r.local_date+"\n"+updraftlion.continue_import)){var u=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:u,updraftplus_version:updraftlion.updraftplus_version},function(e){var a=n(e);!a.hasOwnProperty("saved")||a.saved?(updraft_settings_form_changed=!1,location.replace(updraftlion.updraft_settings_url)):(t.unblockUI(),a.hasOwnProperty("error_message")&&a.error_message&&alert(a.error_message))},{action:"updraft_importsettings",nonce:updraftplus_settings_nonce,json_parse:!1})}else t.unblockUI()}function r(e){var a="",e="undefined"==typeof e?"string":e;return"object"==e?a=t("#updraft-navtab-settings-content form input[name!='action'][name!='option_page'][name!='_wpnonce'][name!='_wp_http_referer'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select, #updraft-navtab-settings-content form input[type=checkbox]").serializeJSON({checkboxUncheckedValue:"0",useIntKeysAsArrayIndex:!0}):(a=t("#updraft-navtab-settings-content form input[name!='action'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select").serialize(),t.each(t("#updraft-navtab-settings-content form input[type=checkbox]").filter(function(e){return 0==t(this).prop("checked")}),function(e,r){var n="0";a+="&"+t(r).attr("name")+"="+n})),a}function n(e){try{var a=ud_parse_json(e),r=(a.messages,a.backup_dir.writable),n=a.backup_dir.message,o=a.backup_dir.button_title}catch(u){return console.log(u),console.log(e),alert(updraftlion.jsonnotunderstood),t.unblockUI(),{}}if(a.hasOwnProperty("changed")){console.log("UpdraftPlus: savesettings: some values were changed after being filtered"),console.log(a.changed);for(prop in a.changed)if("object"==typeof a.changed[prop])for(innerprop in a.changed[prop])t("[name='"+innerprop+"']").is(":checkbox")||t("[name='"+prop+"["+innerprop+"]']").val(a.changed[prop][innerprop]);else t("[name='"+prop+"']").is(":checkbox")||t("[name='"+prop+"']").val(a.changed[prop])}return t("#updraft_writable_mess").html(n),0==r?(t("#updraft-backupnow-button").attr("disabled","disabled"),t("#updraft-backupnow-button").attr("title",o),t(".backupdirrow").css("display","table-row")):(t("#updraft-backupnow-button").removeAttr("disabled"),t("#updraft-backupnow-button").removeAttr("title")),a.hasOwnProperty("updraft_include_more_path")&&t("#backupnow_includefiles_moreoptions").html(a.updraft_include_more_path),a.hasOwnProperty("backup_now_message")&&t("#backupnow_remote_container").html(a.backup_now_message),
3
- t(".updraftmessage").remove(),t("#updraft_backup_started").before(a.messages),t("#next-backup-table-inner").html(a.scheduled),a}function o(){var t=!1;if(jQuery("#updraft-authenticate-modal-innards").html(""),jQuery("div[class*=updraft_authenticate_] a.updraft_authlink").each(function(){jQuery("#updraft-authenticate-modal-innards").append('<p><a href="'+jQuery(this).attr("href")+'">'+jQuery(this).html()+"</a></p>"),t=!0}),t){var e={};e[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-authenticate-modal").dialog({autoOpen:!0,modal:!0,resizable:!1,draggable:!1,buttons:e,width:"auto"}).dialog("open")}}var u=new Image;u.src=updraftlion.ud_url+"/images/udlogo-rotating.gif",t("#updraft-navtab-settings-content input.updraft_include_entity").change(function(e){var a=t(this).attr("id"),r=t(this).is(":checked"),n="#backupnow_files_"+a;t(n).prop("checked",r)}),t("#updraftplus-settings-save").click(function(e){e.preventDefault(),t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.saving+"</div>"});var a=r("string");updraft_send_command("savesettings",{settings:a,updraftplus_version:updraftlion.updraftplus_version},function(e){n(e),t("#updraft-wrap .fade").delay(6e3).fadeOut(2e3),t("html, body").animate({scrollTop:t("#updraft-wrap").offset().top},1e3,function(){o()}),t.unblockUI()},{action:"updraft_savesettings",nonce:updraftplus_settings_nonce,json_parse:!1})}),t("#updraftplus-settings-export").click(function(){updraft_settings_form_changed&&alert(updraftlion.unsaved_settings_export),e()}),t("#updraftplus-settings-import").click(function(){t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.importing+"</div>"});var e=document.getElementById("import_settings");if(0==e.files.length)return alert(updraftlion.import_select_file),void t.unblockUI();var r=e.files[0],n=new FileReader;n.onload=function(){a(this.result)},n.readAsText(r)})});
1
+ function updraft_send_command(t,e,a,r){default_options={json_parse:!0,alert_on_error:!0,action:"updraft_ajax",nonce:updraft_credentialtest_nonce,nonce_key:"nonce",timeout:null,async:!0,type:"POST"},"undefined"==typeof r&&(r={});for(var n in default_options)r.hasOwnProperty(n)||(r[n]=default_options[n]);var o={action:r.action,subaction:t};if(o[r.nonce_key]=r.nonce,"object"==typeof e)for(var u in e)o[u]=e[u];else o.action_data=e;var d={type:r.type,url:ajaxurl,data:o,success:function(t,e){if(r.json_parse){try{var n=ud_parse_json(t)}catch(o){return console.log(o),console.log(t),void(r.alert_on_error&&alert(updraftlion.unexpectedresponse+" "+t))}"function"==typeof a&&a(n,e,t)}else"function"==typeof a&&a(t,e)},error:function(t,e,a){"function"==typeof r.error_callback?r.error_callback(t,e,a):(console.log("updraft_send_command: error: "+e+" ("+a+")"),console.log(t))},dataType:"text",async:r.async};null!=r.timeout&&(d.timeout=r.timeout),jQuery.ajax(d)}function updraft_delete(t,e,a){jQuery("#updraft_delete_timestamp").val(t),jQuery("#updraft_delete_nonce").val(e),a?jQuery("#updraft-delete-remote-section, #updraft_delete_remote").removeAttr("disabled").show():jQuery("#updraft-delete-remote-section, #updraft_delete_remote").hide().attr("disabled","disabled"),t.indexOf(",")>-1?(jQuery("#updraft_delete_question_singular").hide(),jQuery("#updraft_delete_question_plural").show()):(jQuery("#updraft_delete_question_plural").hide(),jQuery("#updraft_delete_question_singular").show()),jQuery("#updraft-delete-modal").dialog("open")}function updraft_remote_storage_tab_activation(t){jQuery(".updraftplusmethod").hide(),jQuery(".remote-tab").data("active",!1),jQuery(".remote-tab").removeClass("nav-tab-active"),jQuery(".updraftplusmethod."+t).show(),jQuery(".remote-tab-"+t).data("active",!0),jQuery(".remote-tab-"+t).addClass("nav-tab-active")}function updraft_check_overduecrons(){updraft_send_command("check_overdue_crons",null,function(t){t&&t.hasOwnProperty("m")&&jQuery("#updraft-insert-admin-warning").html(t.m)},{alert_on_error:!1})}function updraft_remote_storage_tabs_setup(){var t=0,e=jQuery(".updraft_servicecheckbox:checked");jQuery(e).each(function(a,r){var n=jQuery(r).val();"updraft_servicecheckbox_none"!=jQuery(r).attr("id")&&t++,jQuery(".remote-tab-"+n).show(),a==jQuery(e).length-1&&updraft_remote_storage_tab_activation(n)}),t>0&&jQuery(".updraftplusmethod.none").hide(),jQuery(document).keyup(function(t){if((32===t.keyCode||13===t.keyCode)&&jQuery(document.activeElement).is("input.labelauty + label")){var e=jQuery(document.activeElement).attr("for");e&&jQuery("#"+e).change()}}),jQuery(".updraft_servicecheckbox").change(function(){var e=jQuery(this).attr("id");if("updraft_servicecheckbox_"==e.substring(0,24)){var a=e.substring(24);null!=a&&""!=a&&(jQuery(this).is(":checked")?(t++,jQuery(".remote-tab-"+a).fadeIn(),updraft_remote_storage_tab_activation(a)):(t--,jQuery(".remote-tab-"+a).hide(),1==jQuery(".remote-tab-"+a).data("active")&&updraft_remote_storage_tab_activation(jQuery(".remote-tab:visible").last().attr("name"))))}t<=0?jQuery(".updraftplusmethod.none").fadeIn():jQuery(".updraftplusmethod.none").hide()}),jQuery(".updraft_servicecheckbox:not(.multi)").change(function(){var t=jQuery(this).attr("value");jQuery(this).is(":not(:checked)")?(jQuery(".updraftplusmethod."+t).hide(),jQuery(".updraftplusmethod.none").fadeIn()):jQuery(".updraft_servicecheckbox").not(this).prop("checked",!1)});var a=jQuery(".updraft_servicecheckbox");"function"==typeof a.labelauty&&a.labelauty()}function updraft_remote_storage_test(t,e,a){var r,n;a?(r=jQuery("#updraft-"+t+"-test-"+a),n=".updraftplusmethod."+t+"-"+a):(r=jQuery("#updraft-"+t+"-test"),n=".updraftplusmethod."+t);var o=r.data("method_label");r.html(updraftlion.testing_settings.replace("%s",o));var u={method:t};jQuery("#updraft-navtab-settings-content "+n+" input[data-updraft_settings_test], #updraft-navtab-settings-content .expertmode input[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test"),r=jQuery(e).attr("type");if(a){r||(console.log("UpdraftPlus: settings test input item with no type found"),console.log(e),r="text");var n=null;"checkbox"==r?n=jQuery(e).is(":checked")?1:0:"text"==r||"password"==r?n=jQuery(e).val():(console.log("UpdraftPlus: settings test input item with unrecognised type ("+r+") found"),console.log(e)),u[a]=n}}),jQuery("#updraft-navtab-settings-content "+n+" textarea[data-updraft_settings_test], #updraft-navtab-settings-content "+n+" select[data-updraft_settings_test]").each(function(t,e){var a=jQuery(e).data("updraft_settings_test");u[a]=jQuery(e).val()}),updraft_send_command("test_storage_settings",u,function(t,a){r.html(updraftlion.test_settings.replace("%s",o)),"undefined"!=typeof e&&0!=e&&(e=e.call(this,t,a,u)),"undefined"!=typeof e&&!1===e&&(alert(updraftlion.settings_test_result.replace("%s",o)+" "+t.output),t.hasOwnProperty("data")&&console.log(t.data))})}function backupnow_whichfiles_checked(t){return jQuery('#backupnow_includefiles_moreoptions input[type="checkbox"]').each(function(e){if(jQuery(this).is(":checked")){var a=jQuery(this).attr("name");if("updraft_include_"==a.substring(0,16)){var r=a.substring(16);""!=t&&(t+=","),t+=r}}}),t}function backupnow_whichtables_checked(t){var e=!1;return jQuery('#backupnow_database_moreoptions input[type="checkbox"]').each(function(t){if(!jQuery(this).is(":checked"))return void(e=!0)}),t=jQuery("input[name^='updraft_include_tables_']").serializeArray(),!e||t}function updraft_deleteallselected(){var t=0,e="",a="",r="";jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").each(function(n){t++;var o=jQuery(this).data("nonce");a&&(a+=","),a+=o;var u=jQuery(this).data("key");e&&(e+=","),e+=u;var d=jQuery(this).find(".updraftplus-remove").data("hasremote");r&&(r+=","),r+=d}),updraft_delete(e,a,r)}function updraft_openrestorepanel(t){updraft_console_focussed_tab=2,updraft_historytimertoggle(t),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-backups-content").show(),jQuery("#updraft-navtab-backups").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active")}function updraft_delete_old_dirs(){return!0}function updraft_initiate_restore(t){jQuery("#updraft-migrate-modal").dialog("close"),jQuery('#updraft-navtab-backups-content .updraft_existing_backups button[data-backup_timestamp="'+t+'"]').click()}function updraft_restore_setoptions(t){var e=0;jQuery('input[name="updraft_restore[]"]').each(function(a,r){var n=jQuery(r).val(),o=n+"=([0-9,]+)",u=new RegExp(o),d=t.match(u);d?(jQuery(r).removeAttr("disabled").data("howmany",d[1]).parent().show(),e++,"db"==n&&(e+=4.5),jQuery(r).is(":checked")&&jQuery("#updraft_restorer_"+n+"options").show()):jQuery(r).attr("disabled","disabled").parent().hide()});var a=t.match(/dbcrypted=1/);a?jQuery(".updraft_restore_crypteddb").show():jQuery(".updraft_restore_crypteddb").hide();var r=t.match(/meta_foreign=([12])/);r?jQuery("#updraft_restore_meta_foreign").val(r[1]):jQuery("#updraft_restore_meta_foreign").val("0");var n=336+20*e;jQuery("#updraft-restore-modal").dialog("option","height",n)}function updraft_backup_dialog_open(){jQuery("#backupnow_includefiles_moreoptions").hide(),updraft_settings_form_changed?window.confirm(updraftlion.unsavedsettingsbackup)&&(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open")):(jQuery("#backupnow_label").val(""),jQuery("#updraft-backupnow-modal").dialog("open"))}function updraft_migrate_dialog_open(){jQuery("#updraft_migrate_modal_alt").hide(),updraft_migrate_modal_default_buttons={},updraft_migrate_modal_default_buttons[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-migrate-modal").dialog("option","buttons",updraft_migrate_modal_default_buttons),jQuery("#updraft-migrate-modal").dialog("open"),jQuery("#updraft_migrate_modal_main").show()}function updraft_check_page_visibility(t){"hidden"==document.visibilityState?updraft_page_is_visible=0:(updraft_page_is_visible=1,1!==t&&updraft_activejobs_update(!0))}function updraft_backupnow_inpage_go(t,e,a,r,n,o,u){r="undefined"==typeof r?0:r,n="undefined"==typeof n?0:n,o="undefined"==typeof o?0:o,u="undefined"==typeof u?updraftlion.automaticbackupbeforeupdate:u,updraft_console_focussed_tab=1,updraft_inpage_success_callback=t;var d={},s=jQuery("#updraft-backupnow-inpage-modal").length;s&&jQuery("#updraft-backupnow-inpage-modal").dialog("option","buttons",d),jQuery("#updraft_inpage_prebackup").hide(),s&&jQuery("#updraft-backupnow-inpage-modal").dialog("open"),jQuery("#updraft_inpage_backup").show(),updraft_activejobslist_backupnownonce_only=1,updraft_inpage_hasbegun=0,updraft_backupnow_go(r,n,o,e,a,u,"")}function updraft_activejobs_update(t){var e=(new Date).getTime();if(!(0==t&&e<updraft_activejobs_nextupdate)){updraft_activejobs_nextupdate=e+5500;var a="";jQuery(".ud_downloadstatus .updraftplus_downloader, #ud_downloadstatus2 .updraftplus_downloader").each(function(t,e){var r=jQuery(e).data("downloaderfor");"object"==typeof r&&(""!=a&&(a+=":"),a=a+r.base+","+r.nonce+","+r.what+","+r.index)});var r={downloaders:a};try{jQuery("#updraft-poplog").dialog("isOpen")&&(r.log_fetch=1,r.log_nonce=updraft_poplog_log_nonce,r.log_pointer=updraft_poplog_log_pointer)}catch(n){console.log(n)}updraft_activejobslist_backupnownonce_only&&"undefined"!=typeof updraft_backupnow_nonce&&""!=updraft_backupnow_nonce&&(r.thisjobonly=updraft_backupnow_nonce),updraft_send_command("activejobs_list",r,function(t){try{resp=ud_parse_json(t),resp.hasOwnProperty("l")&&(resp.l?(jQuery("#updraft_lastlogmessagerow").show(),jQuery("#updraft_lastlogcontainer").html(resp.l)):(jQuery("#updraft_lastlogmessagerow").hide(),jQuery("#updraft_lastlogcontainer").html("("+updraftlion.nothing_yet_logged+")")));var n=-1;if(jQuery("#updraft_activejobs").html(resp.j),jQuery("#updraft_activejobs .updraft_jobtimings").each(function(t,a){var r=jQuery(a);if(r.data("lastactivity")&&r.data("jobid")){var o=r.data("jobid"),u=r.data("lastactivity");(n==-1||u<n)&&(n=u);var d=r.data("nextresumptionafter"),s=r.data("nextresumption");e=(new Date).getTime(),u>50&&s>0&&d<-30&&e>updraft_last_forced_when+1e5&&(updraft_last_forced_jobid!=o||s!=updraft_last_forced_resumption)&&(updraft_last_forced_resumption=s,updraft_last_forced_jobid=o,updraft_last_forced_when=e,console.log("UpdraftPlus: force resumption: job_id="+o+", resumption="+s),updraft_send_command("forcescheduledresumption",{resumption:s,job_id:o},function(t){console.log(t)},{json_parse:!1,alert_on_error:!1}))}}),e=(new Date).getTime(),updraft_activejobs_nextupdate=e+18e4,1==updraft_page_is_visible&&(1==updraft_console_focussed_tab||2==updraft_console_focussed_tab&&""!=a)&&(updraft_activejobs_nextupdate=n>-1?n<5?e+1750:e+5e3:lastlog_lastdata==t?e+7500:e+1750),lastlog_lastdata=t,null!=resp.j&&""!=resp.j?(jQuery("#updraft_activejobsrow").show(),r.hasOwnProperty("thisjobonly")&&!updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly).length?(updraft_inpage_hasbegun=1,console.log("UpdraftPlus: the start of the requested backup job has been detected")):!updraft_inpage_hasbegun&&updraft_activejobslist_backupnownonce_only&&jQuery(".updraft_jobtimings.isautobackup").length?(autobackup_nonce=jQuery(".updraft_jobtimings.isautobackup").first().data("jobid"),autobackup_nonce&&(updraft_inpage_hasbegun=1,updraft_backupnow_nonce=autobackup_nonce,r.thisjobonly=autobackup_nonce,console.log("UpdraftPlus: the start of the requested backup job has been detected; id: "+autobackup_nonce))):1==updraft_inpage_hasbegun&&jQuery("#updraft-jobid-"+r.thisjobonly+".updraft_finished").length&&(updraft_inpage_hasbegun=2,console.log("UpdraftPlus: the end of the requested backup job has been detected"),"undefined"!=typeof updraft_inpage_success_callback&&""!=updraft_inpage_success_callback?updraft_inpage_success_callback.call(!1):jQuery("#updraft-backupnow-inpage-modal").dialog("close")),""==lastlog_jobs&&setTimeout(function(){jQuery("#updraft_backup_started").slideUp()},3500)):jQuery("#updraft_activejobsrow").is(":hidden")||("undefined"!=typeof lastbackup_laststatus&&updraft_showlastbackup(),jQuery("#updraft_activejobsrow").hide()),lastlog_jobs=resp.j,null!=resp.ds&&""!=resp.ds&&jQuery(resp.ds).each(function(e,a){""!=a.base&&updraft_downloader_status_update(a.base,a.timestamp,a.what,a.findex,a,t)}),null!=resp.u&&""!=resp.u&&jQuery("#updraft-poplog").dialog("isOpen")){var o=resp.u;if(o.nonce==updraft_poplog_log_nonce&&(updraft_poplog_log_pointer=o.pointer,null!=o.log&&""!=o.log)){var u=jQuery("#updraft-poplog").scrollTop();jQuery("#updraft-poplog-content").append(o.log),updraft_poplog_lastscroll!=u&&updraft_poplog_lastscroll!=-1||(jQuery("#updraft-poplog").scrollTop(jQuery("#updraft-poplog-content").prop("scrollHeight")),updraft_poplog_lastscroll=jQuery("#updraft-poplog").scrollTop())}}}catch(d){console.log(updraftlion.unexpectedresponse+" "+t),console.log(d)}},{json_parse:!1,type:"GET"})}}function updraft_popuplog(t){var e=updraftlion.loading_log_file;t&&(e+=" (log."+t+".txt)"),jQuery("#updraft-poplog").dialog("option","title",e),jQuery("#updraft-poplog-content").html("<em>"+e+" ...</em> "),jQuery("#updraft-poplog").dialog("open"),updraft_send_command("get_log",t,function(t){updraft_poplog_log_pointer=t.pointer,updraft_poplog_log_nonce=t.nonce;var e="?page=updraftplus&action=downloadlog&force_download=1&updraftplus_backup_nonce="+t.nonce;jQuery("#updraft-poplog-content").html(t.log);var a={};a[updraftlion.downloadlogfile]=function(){window.location.href=e},a[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-poplog").dialog("option","buttons",a),jQuery("#updraft-poplog").dialog("option","title","log."+t.nonce+".txt"),updraft_poplog_lastscroll=-1},{type:"GET",timeout:6e4,error_callback:function(t,e,a){var r=e==a?a:a+" ("+e+")";jQuery("#updraft-poplog-content").append(r),console.log(t)}})}function updraft_showlastbackup(){updraft_send_command("get_fragment","last_backup_html",function(t){response=t.output,lastbackup_laststatus==response?setTimeout(function(){updraft_showlastbackup()},7e3):jQuery("#updraft_last_backup").html(response),lastbackup_laststatus=response},{type:"GET"})}function updraft_historytimertoggle(t){updraft_historytimer&&1!=t?(clearTimeout(updraft_historytimer),updraft_historytimer=0):(updraft_updatehistory(0,0),updraft_historytimer=setInterval(function(){updraft_updatehistory(0,0)},3e4),calculated_diskspace||(updraftplus_diskspace(),calculated_diskspace=1))}function updraft_updatehistory(t,e){var a=Math.round((new Date).getTime()/1e3);if(1==t||1==e)updraft_historytimer_notbefore=a+30;else if(a<updraft_historytimer_notbefore)return void console.log("Update history skipped: "+a.toString()+" < "+updraft_historytimer_notbefore.toString());1==t&&(1==e?(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanningremote+"</em></p>")):(updraft_history_lastchecksum=!1,jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html('<p style="text-align:center;"><em>'+updraftlion.rescanning+"</em></p>")));var r=e?"remotescan":!!t&&"rescan";updraft_send_command("rescan",r,function(t){if(t.hasOwnProperty("logs_exist")&&t.logs_exist&&jQuery("#updraft_lastlogmessagerow .updraft-log-link").show(),t.hasOwnProperty("migrate_modal")&&t.migrate_modal&&jQuery("#updraft_migrate_modal_main").replaceWith(t.migrate_modal),null!=t.n&&jQuery("#updraft-navtab-backups").html(t.n),null!=t.t){if(null!=t.cksum){if(t.cksum==updraft_history_lastchecksum)return;updraft_history_lastchecksum=t.cksum}jQuery("#updraft-navtab-backups-content .updraft_existing_backups").html(t.t),t.data&&console.log(t.data)}})}function updraft_intervals_monthly_or_not(t,e){var a="#updraft-navtab-settings-content #"+t,r=jQuery(a+" option").length,n="monthly"==e,o=!1;if(r>10&&(o=!0),n||o){if(n&&o)return void("monthly"==e&&(jQuery(".updraft_monthly_extra_words_"+t).remove(),jQuery(a).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>")));if(jQuery(".updraft_monthly_extra_words_"+t).remove(),n){updraft_interval_week_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.mdayselector).before('<span class="updraft_monthly_extra_words_'+t+'">'+updraftlion.day+" </span>").after('<span class="updraft_monthly_extra_words_'+t+'"> '+updraftlion.inthemonth+" </span>");var u=updraft_interval_month_val===!1?1:updraft_interval_month_val;u-=1,jQuery(a+" option:eq("+u+")").prop("selected",!0)}else{updraft_interval_month_val=jQuery(a+" option:selected").val(),jQuery(a).html(updraftlion.dayselector);var d=updraft_interval_week_val===!1?1:updraft_interval_week_val;jQuery(a+" option:eq("+d+")").prop("selected",!0)}}}function updraft_check_same_times(){var t=0,e=jQuery("#updraft-navtab-settings-content .updraft_interval").val();"manual"==e?jQuery("#updraft-navtab-settings-content .updraft_files_timings").hide():jQuery("#updraft-navtab-settings-content .updraft_files_timings").show(),"weekly"==e||"fortnightly"==e||"monthly"==e?(updraft_intervals_monthly_or_not("updraft_startday_files",e),jQuery("#updraft-navtab-settings-content #updraft_startday_files").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_files").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_files").hide());var a=jQuery("#updraft-navtab-settings-content .updraft_interval_database").val();"manual"==a&&(t=1,jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide()),"weekly"==a||"fortnightly"==a||"monthly"==a?(updraft_intervals_monthly_or_not("updraft_startday_db",a),jQuery("#updraft-navtab-settings-content #updraft_startday_db").show()):(jQuery(".updraft_monthly_extra_words_updraft_startday_db").remove(),jQuery("#updraft-navtab-settings-content #updraft_startday_db").hide()),a==e?(jQuery("#updraft-navtab-settings-content .updraft_db_timings").hide(),0==t?jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").show():jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide()):(jQuery("#updraft-navtab-settings-content .updraft_same_schedules_message").hide(),0==t&&jQuery("#updraft-navtab-settings-content .updraft_db_timings").show())}function updraft_activejobs_delete(t){updraft_send_command("activejobs_delete",t,function(e){"Y"==e.ok?jQuery("#updraft-jobid-"+t).html(e.m).fadeOut("slow").remove():"N"==e.ok?alert(e.m):(alert(updraftlion.unexpectedresponse),console.log(e))})}function updraftplus_diskspace_entity(t){jQuery("#updraft_diskspaceused_"+t).html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:t},function(e){jQuery("#updraft_diskspaceused_"+t).html(e.output)},{type:"GET"})}function updraft_iframe_modal(t,e){var a=780,r=500;jQuery("#updraft-iframe-modal-innards").html('<iframe width="100%" height="430px" src="'+ajaxurl+"?action=updraft_ajax&subaction="+t+"&nonce="+updraft_credentialtest_nonce+'"></iframe>'),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("open")}function updraft_html_modal(t,e,a,r){jQuery("#updraft-iframe-modal-innards").html(t);var n={};a<450&&(n[updraftlion.close]=function(){jQuery(this).dialog("close")}),jQuery("#updraft-iframe-modal").dialog("option","title",e).dialog("option","width",a).dialog("option","height",r).dialog("option","buttons",n).dialog("open")}function updraftplus_diskspace(){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html("<em>"+updraftlion.calculating+"</em>"),updraft_send_command("get_fragment",{fragment:"disk_usage",data:"updraft"},function(t){jQuery("#updraft-navtab-backups-content .updraft_diskspaceused").html(t.output)},{type:"GET"})}function updraftplus_deletefromserver(t,e,a){a||(a=0);var r={stage:"delete",timestamp:t,type:e,findex:a};updraft_send_command("updraft_download_backup",r,null,{action:"updraft_download_backup",nonce:updraft_download_nonce,nonce_key:"_wpnonce"})}function updraftplus_downloadstage2(t,e,a){location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"&timestamp="+t+"&type="+e+"&stage=2&findex="+a+"&action=updraft_download_backup"}function updraftplus_show_contents(t,e,a){var r='<div id="updraft_zip_files_container" class="hidden-in-updraftcentral" style="clear:left;"><div id="updraft_zip_info_container"><p><span id="updraft_zip_path_text">'+updraftlion.zip_file_contents_info+'</span> - <span id="updraft_zip_size_text"></span></p>'+updraftlion.browse_download_link+'</div><div id="updraft_zip_files_jstree_container"><input type="search" id="zip_files_jstree_search" name="zip_files_jstree_search" placeholder="'+updraftlion.search+'"><div id="updraft_zip_files_jstree"></div></div></div>';updraft_html_modal(r,updraftlion.zip_file_contents,780,500),zip_files_jstree("zipbrowser",t,e,a)}function zip_files_jstree(t,e,a,r){jQuery("#updraft_zip_files_jstree").jstree({core:{multiple:!1,data:function(n,o){updraft_send_command("get_jstree_directory_nodes",{entity:t,node:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):o.call(this,t.nodes)})},error:function(t){alert(t),console.log(t)}},search:{show_only_matches:!0},plugins:["search","sort"]}),jQuery("#updraft_zip_files_jstree").on("ready.jstree",function(t,e){jQuery("#updraft-iframe-modal").dialog("option","title",updraftlion.zip_file_contents+": "+e.instance.get_node("#").children[0])});var n=!1;jQuery("#zip_files_jstree_search").keyup(function(){n&&clearTimeout(n),n=setTimeout(function(){var t=jQuery("#zip_files_jstree_search").val();jQuery("#updraft_zip_files_jstree").jstree(!0).search(t)},250)}),jQuery("#updraft_zip_files_jstree").on("changed.jstree",function(t,e){jQuery("#updraft_zip_path_text").text(e.node.li_attr.path),e.node.li_attr.size?(jQuery("#updraft_zip_size_text").text(e.node.li_attr.size),jQuery("#updraft_zip_download_item").show()):(jQuery("#updraft_zip_size_text").text(""),jQuery("#updraft_zip_download_item").hide())}),jQuery("#updraft_zip_download_item").click(function(t){t.preventDefault();var n=jQuery("#updraft_zip_path_text").text();updraft_send_command("get_zipfile_download",{path:n,timestamp:e,type:a,findex:r},function(t){t.hasOwnProperty("error")?alert(t.error):t.hasOwnProperty("path")?location.href=ajaxurl+"?_wpnonce="+updraft_download_nonce+"&timestamp="+e+"&type="+a+"&stage=2&findex="+r+"&filepath="+t.path+"&action=updraft_download_backup":alert(updraftlion.download_timeout)})})}function updraft_downloader(t,e,a,r,n,o,u){"string"!=typeof n&&(n=n.toString());for(var n=n.split(","),d=0;d<n.length;d++){var s=t+e+"_"+a+"_"+n[d],p="."+s,i=parseInt(n[d]);i++;var l=0==n[d]?"":" ("+i+")";if(!jQuery(p).length){var c=o?o:e;jQuery(r).append('<div style="clear:left; border: 1px solid; padding: 8px; margin-top: 4px; max-width:840px;" class="'+s+' updraftplus_downloader"><button onclick="jQuery(this).parent().fadeOut().remove();" type="button" style="float:right; margin-bottom: 8px;">X</button><strong>'+updraftlion.download+" "+a+l+" ("+c+')</strong>:<div class="raw">'+updraftlion.begunlooking+'</div><div class="file '+s+'_st"><div class="dlfileprogress" style="width: 0;"></div></div></div>'),jQuery(p).data("downloaderfor",{base:t,nonce:e,what:a,index:n[d]}),setTimeout(function(){updraft_activejobs_update(!0)},1500)}jQuery(p).data("lasttimebegan",(new Date).getTime()),u=!!u;var f=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+n[d]).data("wp_nonce").toString(),_={type:a,timestamp:e,findex:n[d]},y={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:f,timeout:1e4,async:u};updraft_send_command("updraft_download_backup",_,function(t){},y)}return!1}function ud_parse_json(t){t.charAt(0),t.charAt(t.length-1);try{var e=JSON.parse(t);return e}catch(a){console.log("UpdraftPlus: Exception when trying to parse JSON (1) - will attempt to fix/re-parse"),console.log(t)}var r=t.indexOf("{"),n=t.lastIndexOf("}");if(r>-1&&n>-1){var o=t.slice(r,n+1);try{var u=JSON.parse(o);return console.log("UpdraftPlus: JSON re-parse successful"),u}catch(a){throw console.log("UpdraftPlus: Exception when trying to parse JSON (2)"),a}}throw"UpdraftPlus: could not parse the JSON"}function updraft_restorer_checkstage2(t){var e=jQuery("#ud_downloadstatus2 .file").length;return e>0?void(t&&alert(updraftlion.stilldownloading)):(jQuery("#updraft-restore-modal-stage2a").html(updraftlion.processing),void updraft_send_command("restore_alldownloaded",{timestamp:jQuery("#updraft_restore_timestamp").val(),restoreopts:jQuery("#updraft_restore_form").serialize()},function(t){var e=null;jQuery("#updraft_restorer_restore_options").val("");try{var a=ud_parse_json(t);if(null==a)return void jQuery("#updraft-restore-modal-stage2a").html(updraftlion.emptyresponse);var r=a.m;if(""!=a.w&&(r=r+"<p><strong>"+updraftlion.warnings+"</strong><br>"+a.w+"</p>"),""!=a.e?r=r+"<p><strong>"+updraftlion.errors+"</strong><br>"+a.e+"</p>":updraft_restore_stage=3,a.hasOwnProperty("i")){try{if(e=ud_parse_json(a.i),e.hasOwnProperty("addui")){console.log("Further UI options are being displayed");var n=e.addui;r+='<div id="updraft_restoreoptions_ui" style="clear:left; padding-top:10px;">'+n+"</div>","object"==typeof JSON&&"function"==typeof JSON.stringify&&(delete e.addui,a.i=JSON.stringify(e))}}catch(o){console.log(o),console.log(a)}jQuery("#updraft_restorer_backup_info").val(a.i)}else jQuery("#updraft_restorer_backup_info").val();jQuery("#updraft-restore-modal-stage2a").html(r),jQuery("#updraft-restore-modal-stage2a .updraft_select2").length>0&&jQuery("#updraft-restore-modal-stage2a .updraft_select2").select2()}catch(o){console.log(t),console.log(o),jQuery("#updraft-restore-modal-stage2a").text(updraftlion.jsonnotunderstood+" "+updraftlion.errordata+": "+t).html()}},{json_parse:!1}))}function updraft_downloader_status(t,e,a,r){}function updraft_downloader_status_update(t,e,a,r,n,o){var u=t+e+"_"+a+"_"+r,d="."+u,s=0;if(null!=n.e)jQuery(d+" .raw").html("<strong>"+updraftlion.error+"</strong> "+n.e),console.log(n);else if(null!=n.p){if(jQuery(d+"_st .dlfileprogress").width(n.p+"%"),null!=n.a&&n.a>0){var p=(new Date).getTime(),i=jQuery(d).data("lasttimebegan"),l=p-i;if(n.a>90&&l>6e4){console.log(e+" "+a+" "+r+": restarting download: file_age="+n.a+", sincelastrestart_ms="+l),jQuery(d).data("lasttimebegan",(new Date).getTime());var c=jQuery("#updraft-navtab-backups-content .uddownloadform_"+a+"_"+e+"_"+r),f={type:a,timestamp:e,findex:r},_={action:"updraft_download_backup",nonce_key:"_wpnonce",nonce:c.data("wp_nonce").toString(),timeout:1e4};updraft_send_command("updraft_download_backup",f,function(t){},_),jQuery(d).data("lasttimebegan",(new Date).getTime())}}if(null!=n.m)if(n.p>=100&&"udrestoredlstatus_"==t)jQuery(d+" .raw").html(n.m),jQuery(d).fadeOut("slow",function(){jQuery(this).remove(),updraft_restorer_checkstage2(0)});else if(n.p<100||"uddlstatus_"!=t)jQuery(d+" .raw").html(n.m);else{var y=updraftlion.fileready+" "+updraftlion.actions+': \t\t\t\t<button type="button" onclick="updraftplus_downloadstage2(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.downloadtocomputer+'</button> \t\t\t\t<button id="uddownloaddelete_'+e+"_"+a+'" type="button" onclick="updraftplus_deletefromserver(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.deletefromserver+"</button>";n.hasOwnProperty("can_show_contents")&&n.can_show_contents&&(y+=' <button type="button" onclick="updraftplus_show_contents(\''+e+"', '"+a+"', '"+r+"')\">"+updraftlion.browse_contents+"</button>"),jQuery(d+" .raw").html(y)}}else null!=n.m?jQuery(d+" .raw").html(n.m):(jQuery(d+" .raw").html(updraftlion.jsonnotunderstood+" ("+o+")"),s=1);return s}function updraft_backupnow_go(t,e,a,r,n,o,u){jQuery("#updraft_backup_started").html("<em>"+updraftlion.requeststart+"</em>").slideDown(""),setTimeout(function(){jQuery("#updraft_backup_started").fadeOut("slow")},75e3);var d={backupnow_nodb:t,backupnow_nofiles:e,backupnow_nocloud:a,backupnow_label:o,extradata:n};""!=r&&(d.onlythisfileentity=r),""!=u&&(d.onlythesetableentities=u),updraft_send_command("backupnow",d,function(t){jQuery("#updraft_backup_started").html(t.m),t.hasOwnProperty("nonce")&&(updraft_backupnow_nonce=t.nonce,console.log("UpdraftPlus: ID of started job: "+updraft_backupnow_nonce)),setTimeout(function(){updraft_activejobs_update(!0)},500)})}var onlythesefileentities=backupnow_whichfiles_checked("");""==onlythesefileentities?jQuery("#backupnow_includefiles_moreoptions").show():jQuery("#backupnow_includefiles_moreoptions").hide();var updraft_restore_stage=1,lastlog_lastmessage="",lastlog_lastdata="",lastlog_jobs="",updraft_activejobs_nextupdate=(new Date).getTime()+1e3,updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_settings_form_changed=!1;window.onbeforeunload=function(t){if(updraft_settings_form_changed)return updraftlion.unsavedsettings},"undefined"!=typeof document.hidden&&document.addEventListener("visibilitychange",function(){updraft_check_page_visibility(0)},!1),updraft_check_page_visibility(1);var updraft_poplog_log_nonce,updraft_poplog_log_pointer=0,updraft_poplog_lastscroll=-1,updraft_last_forced_jobid=-1,updraft_last_forced_resumption=-1,updraft_last_forced_when=-1,updraft_backupnow_nonce="",updraft_activejobslist_backupnownonce_only=0,updraft_inpage_hasbegun=0,updraft_historytimer=0,calculated_diskspace=0,updraft_historytimer_notbefore=0,updraft_history_lastchecksum=!1,updraft_interval_week_val=!1,updraft_interval_month_val=!1;"undefined"!=typeof updraft_siteurl&&setInterval(function(){jQuery.get(updraft_siteurl+"/wp-cron.php")},21e4);var lastlog_lastmessage="";jQuery(document).ajaxError(function(t,e,a,r){if(null!=r&&""!=r&&null!=e.responseText&&""!=e.responseText&&(console.log("Error caught by UpdraftPlus ajaxError handler (follows) for "+a.url),console.log(r),0==a.url.search(ajaxurl)))if(a.url.search("subaction=downloadstatus")>=0){var n=a.url.match(/timestamp=\d+/),o=a.url.match(/type=[a-z]+/),u=a.url.match(/findex=\d+/),d=a.url.match(/base=[a-z_]+/);if(u=u instanceof Array?parseInt(u[0].substr(7)):0,o=o instanceof Array?o[0].substr(5):"",d=d instanceof Array?d[0].substr(5):"",n=n instanceof Array?parseInt(n[0].substr(10)):0,""!=d&&""!=o&&n>0){var s=d+n+"_"+o+"_"+u;jQuery("."+s+" .raw").html("<strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode)}}else a.url.search("subaction=restore_alldownloaded")>=0&&jQuery("#updraft-restore-modal-stage2a").append("<br><strong>"+updraftlion.error+"</strong> "+updraftlion.servererrorcode+": "+r)}),jQuery(document).ready(function(t){function e(e){t('.expertmode .advanced_settings_container .advanced_tools:not(".'+e+'")').hide(),t(".expertmode .advanced_settings_container .advanced_tools."+e).fadeIn("slow"),t(".expertmode .advanced_settings_container .advanced_tools_button:not(#"+e+")").removeClass("active"),t(".expertmode .advanced_settings_container .advanced_tools_button#"+e).addClass("active")}function a(t){var e=!!jQuery("#updraftcentral_mothership_other").is(":checked");e?(jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!1),t?jQuery("#updraftcentral_keycreate_mothership_firewalled_container").show():(jQuery("#updraftcentral_keycreate_mothership_firewalled_container").slideDown(),jQuery("#updraftcentral_keycreate_mothership").focus())):jQuery("#updraftcentral_keycreate_mothership").prop("disabled",!0)}function r(e,a,n,o){jQuery("#updraft-delete-waitwarning").slideDown();var u=e,d=a,s=n,p=o,i=jQuery("#updraft_delete_timestamp").val().split(","),l=jQuery("#updraft_delete_form").serializeArray(),c={};
2
+ t.each(l,function(){void 0!==c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c.remote_delete_limit=updraftlion.remote_delete_limit,delete c.action,delete c.subaction,delete c.nonce,updraft_send_command("deleteset",c,function(t){if(t.hasOwnProperty("result")&&null!=t.result)if("error"==t.result)alert(updraftlion.error+" "+t.message);else if("continue"==t.result)u=u+t.backup_local+t.backup_remote,d+=t.backup_local,s+=t.backup_remote,p+=t.backup_sets,jQuery("#updraft-deleted-files-total").text(u+" "+updraftlion.remote_files_deleted),r(u,d,s,p);else if("success"==t.result){jQuery("#updraft-deleted-files-total").text(""),jQuery("#updraft-delete-waitwarning").slideUp(),t.hasOwnProperty("count_backups")&&jQuery("#updraft-navtab-backups").html(updraftlion.existing_backups+" ("+t.count_backups+")");for(var e=0;e<i.length;e++){var a=i[e];jQuery("#updraft-navtab-backups-content .updraft_existing_backups_row_"+a).slideUp().remove()}jQuery("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length<1&&jQuery("#ud_massactions").hide(),updraft_history_lastchecksum=!1,jQuery("#updraft-delete-modal").dialog("close"),d+=t.backup_local,s+=t.backup_remote,p+=t.backup_sets,alert(t.set_message+" "+p+"\n"+t.local_message+" "+d+"\n"+t.remote_message+" "+s)}})}function n(t,e){jQuery("#updraft-navtab-settings-content #updraft_include_"+t).is(":checked")?e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").show():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideDown():e?jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").hide():jQuery("#updraft-navtab-settings-content #updraft_include_"+t+"_exclude").slideUp()}function o(){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 u(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 d(t,e,a){updraft_restore_setoptions(t),jQuery("#updraft_restore_timestamp").val(e),jQuery(".updraft_restore_date").html(a),updraft_restore_stage=1,jQuery("#updraft-migrate-modal").dialog("close"),jQuery("#updraft-restore-modal").dialog("open"),jQuery("#updraft-restore-modal-stage1").show(),jQuery("#updraft-restore-modal-stage2").hide(),jQuery("#updraft-restore-modal-stage2a").html(""),updraft_activejobs_update(!0)}function s(t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e="[\\?&]"+t+"=([^&#]*)",a=new RegExp(e),r=a.exec(window.location.href);return null==r?"":decodeURIComponent(r[1].replace(/\+/g," "))}if(t(".expertmode .advanced_settings_container .advanced_tools_button").click(function(){e(t(this).attr("id"))}),jQuery.ui&&jQuery.ui.dialog&&jQuery.ui.dialog.prototype._allowInteraction){var p=jQuery.ui.dialog.prototype._allowInteraction;jQuery.ui.dialog.prototype._allowInteraction=function(t){return!!jQuery(t.target).closest(".select2-dropdown").length||p.apply(this,arguments)}}t("#updraftcentral_keys").on("click","a.updraftcentral_keys_show",function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keys_table").slideDown()}),t("#updraftcentral_keycreate_altmethod_moreinfo_get").click(function(e){e.preventDefault(),t(this).remove(),t("#updraftcentral_keycreate_altmethod_moreinfo").slideDown()}),t(".updraft_webdav_settings").on("change keyup paste",function(){var e=[],a="";t(".updraft_webdav_settings").each(function(r,n){var o=t(n).attr("id");if(o&&"updraft_webdav_"==o.substring(0,15)){var u=o.substring(15);id_split=u.split("_"),u=id_split[0],a=id_split[1],e[u]=this.value}});var r="",n="@",o="/",u=":",d=":";(e.host.indexOf("@")>=0||""===e.host)&&(n=""),e.host.indexOf("/")>=0?t("#updraft_webdav_host_error").show():t("#updraft_webdav_host_error").hide(),0!=e.path.indexOf("/")&&""!==e.path||(o=""),""!==e.user&&""!==e.pass||(u=""),""!==e.host&&""!==e.port||(d=""),r=e.webdav+e.user+u+e.pass+n+encodeURIComponent(e.host)+d+e.port+o+e.path,t("#updraft_webdav_url_"+a).val(r)}),t("#updraft-navtab-backups-content").on("click",".updraft_existing_backups .updraft_existing_backups_row",function(e){(e.ctrlKey||e.metaKey)&&(t(this).toggleClass("backuprowselected"),t("#updraft-navtab-backups-content .updraft_existing_backups .updraft_existing_backups_row.backuprowselected").length>0?t("#ud_massactions").show():t("#ud_massactions").hide())}),jQuery("#updraft-navtab-settings-content .updraftplusmethod").on("click","button.updraft-test-button",function(){var t=jQuery(this).data("method"),e=jQuery(this).data("instance_id");updraft_remote_storage_test(t,function(e,a,r){return"sftp"==t&&(r.hasOwnProperty("scp")&&r.scp?alert(updraftlion.settings_test_result.replace("%s","SCP")+" "+e.output):alert(updraftlion.settings_test_result.replace("%s","SFTP")+" "+e.output),e.hasOwnProperty("data")&&console.log(e.data),!0)},e)}),t("#updraft-navtab-settings-content select.updraft_interval, #updraft-navtab-settings-content select.updraft_interval_database").change(function(){updraft_check_same_times()}),t("#backupnow_includefiles_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_includefiles_moreoptions").toggle()}),t("#backupnow_database_showmoreoptions").click(function(e){e.preventDefault(),t("#backupnow_database_moreoptions").toggle()}),t("#updraft-navtab-backups-content a.updraft_diskspaceused_update").click(function(t){t.preventDefault(),updraftplus_diskspace()}),t("#updraft-navtab-backups-content a.updraft_uploader_toggle").click(function(e){e.preventDefault(),t("#updraft-plupload-modal").slideToggle()}),t("#updraft-navtab-backups-content a.updraft_rescan_local").click(function(t){t.preventDefault(),updraft_updatehistory(1,0)}),t("#updraft-navtab-backups-content a.updraft_rescan_remote").click(function(t){t.preventDefault(),updraft_updatehistory(1,1)}),jQuery("#updraftcentral_keys").on("change",'input[type="radio"]',function(){a(!1)}),a(!0),jQuery("#updraftcentral_keys").on("click","#updraftcentral_view_log",function(t){t.preventDefault(),jQuery("#updraftcentral_view_log_container").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.fetching+"</div>"});try{updraft_send_command("updraftcentral_get_log",null,function(t){jQuery("#updraftcentral_view_log_container").unblock(),t.hasOwnProperty("log_contents")?jQuery("#updraftcentral_view_log_contents").html('<div style="border:1px solid;padding: 2px;max-height: 400px; overflow-y:scroll;">'+t.log_contents+"</div>"):console.response(resp)})}catch(e){jQuery("#updraft_central_key").html(),console.log(e)}}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_wizard_go",function(t){jQuery("#updraftcentral_wizard_go").hide(),jQuery(".updraftcentral_wizard_success").remove(),jQuery(".create_key_container").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage1_go",function(t){t.preventDefault(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery(".updraftcentral_wizard_stage1").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_stage2_go",function(t){t.preventDefault(),jQuery("#updraftcentral_wizard_stage1_error").text("");var e="";if(jQuery("#updraftcentral_mothership_updraftpluscom").is(":checked"))e="updraftplus.com";else if(jQuery("#updraftcentral_mothership_other").is(":checked")){var a=jQuery("#updraftcentral_keycreate_mothership").val();if(""==a)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_empty_url);try{var r=new URL(a);e=r.hostname}catch(t){if("undefined"==typeof URL&&(e=jQuery("<a>").prop("href",a).prop("hostname")),!e||"undefined"!=typeof URL)return void jQuery("#updraftcentral_wizard_stage1_error").text(updraftlion.updraftcentral_wizard_invalid_url)}}jQuery("#updraftcentral_keycreate_description").val(e),jQuery(".updraftcentral_wizard_stage1").hide(),jQuery(".updraftcentral_wizard_stage2").show()}),jQuery("#updraftcentral_keys").on("click","#updraftcentral_keycreate_go",function(t){t.preventDefault();var e=!!jQuery("#updraftcentral_mothership_other").is(":checked"),a=jQuery("#updraftcentral_keycreate_description").val(),r=jQuery("#updraftcentral_keycreate_keysize").val(),n="__updraftpluscom";if(data={key_description:a,key_size:r},e&&(n=jQuery("#updraftcentral_keycreate_mothership").val(),"http"!=n.substring(0,4)))return void alert(updraftlion.enter_mothership_url);data.mothership_firewalled=jQuery("#updraftcentral_keycreate_mothership_firewalled").is(":checked")?1:0,data.where_send=n,jQuery(".create_key_container").hide(),jQuery(".updraftcentral_wizard_stage1").show(),jQuery(".updraftcentral_wizard_stage2").hide(),jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.creating_please_allow+"</div>"});try{updraft_send_command("updraftcentral_create_key",data,function(t){jQuery("#updraftcentral_keys").unblock();try{if(resp=ud_parse_json(t),resp.hasOwnProperty("error"))return alert(resp.error),void console.log(resp);alert(resp.r),resp.hasOwnProperty("bundle")&&resp.hasOwnProperty("keys_guide")?(jQuery("#updraftcentral_keys_content").html(resp.keys_guide),jQuery("#updraftcentral_keys_content").append('<div class="updraftcentral_wizard_success">'+resp.r+'<br><textarea onclick="this.select();" style="width:620px; height:165px; word-wrap:break-word; border: 1px solid #aaa; border-radius: 3px; padding:4px;">'+resp.bundle+"</textarea></div>")):console.log(resp),resp.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").append(resp.keys_table),jQuery("#updraftcentral_wizard_go").show()}catch(e){alert(updraftlion.unexpectedresponse+" "+t),console.log(e)}},{json_parse:!1})}catch(o){jQuery("#updraft_central_key").html(),console.log(o)}}),jQuery("#updraftcentral_keys").on("click",".updraftcentral_key_delete",function(t){t.preventDefault();var e=jQuery(this).data("key_id");return"undefined"==typeof e?void console.log("UpdraftPlus: .updraftcentral_key_delete clicked, but no key ID found"):(jQuery("#updraftcentral_keys").block({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.deleting+"</div>"}),void updraft_send_command("updraftcentral_delete_key",{key_id:e},function(t){jQuery("#updraftcentral_keys").unblock(),t.hasOwnProperty("keys_table")&&jQuery("#updraftcentral_keys_content").html(t.keys_table)}))}),jQuery("#updraft_reset_sid").click(function(t){t.preventDefault(),updraft_send_command("reset_site_id",null,function(t){jQuery("#updraft_show_sid").html(t)},{json_parse:!1})}),jQuery("#updraft-navtab-settings-content form input:not('.udignorechange'), #updraft-navtab-settings-content form select").change(function(t){updraft_settings_form_changed=!0}),jQuery("#updraft-navtab-settings-content form input[type='submit']").click(function(t){updraft_settings_form_changed=!1});var i=180;jQuery(".updraft-bigbutton").each(function(t,e){var a=jQuery(e).width();a>i&&(i=a)}),i>180&&jQuery(".updraft-bigbutton").width(i),setInterval(function(){updraft_activejobs_update(!1)},1250),setTimeout(function(){jQuery("#setting-error-settings_updated").slideUp()},5e3),jQuery(".updraftplusmethod").hide(),jQuery("#updraft_restore_db").change(function(){jQuery("#updraft_restore_db").is(":checked")?jQuery("#updraft_restorer_dboptions").slideDown():jQuery("#updraft_restorer_dboptions").slideUp()}),updraft_check_same_times();var l={};l[updraftlion.close]=function(){jQuery(this).dialog("close")},jQuery("#updraft-message-modal").dialog({autoOpen:!1,height:350,width:520,modal:!0,buttons:l});var c={};c[updraftlion.deletebutton]=function(){r(0,0,0,0)},c[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-delete-modal").dialog({autoOpen:!1,height:262,width:430,modal:!0,buttons:c});var f={};f[updraftlion.restore]=function(){var t=0,e=[],a=0,r=jQuery("#updraft_restore_meta_foreign").val();if(jQuery('input[name="updraft_restore[]"]').each(function(n,o){if(jQuery(o).is(":checked")&&!jQuery(o).is(":disabled")){t=1;var u=jQuery(o).data("howmany"),d=jQuery(o).val();if((1==r||2==r&&"db"!=d)&&("wpcore"!=d&&(u=jQuery("#updraft_restore_form #updraft_restore_wpcore").data("howmany")),d="wpcore"),"wpcore"!=d||0==a){var s=[d,u];e.push(s),"wpcore"==d&&(a=1)}}}),1==t){if(1==updraft_restore_stage){jQuery("#updraft-restore-modal-stage1").slideUp("slow"),jQuery("#updraft-restore-modal-stage2").show(),updraft_restore_stage=2;var n=jQuery(".updraft_restore_date").first().text(),o=e,u=jQuery("#updraft_restore_timestamp").val();try{updraft_send_command("whichdownloadsneeded",{downloads:e,timestamp:u},function(t){if(t.hasOwnProperty("downloads")&&(console.log("UpdraftPlus: items which still require downloading follow"),o=t.downloads,console.log(o)),0==o.length)updraft_restorer_checkstage2(0);else for(var e=0;e<o.length;e++)updraft_downloader("udrestoredlstatus_",u,o[e][0],"#ud_downloadstatus2",o[e][1],n,!1)},{alert_on_error:!1})}catch(d){console.log("UpdraftPlus: error (follows) when looking for items needing downloading"),console.log(d),alert(updraftlion.jsonnotunderstood)}}else if(2==updraft_restore_stage)updraft_restorer_checkstage2(1);else if(3==updraft_restore_stage){var s=1;if(jQuery("#updraft_restoreoptions_ui input.required").each(function(t){if(0!=s){var e=jQuery(this).val();if(""==e)alert(updraftlion.pleasefillinrequired),s=0;else if(""!=jQuery(this).attr("pattern")){var a=jQuery(this).attr("pattern"),r=new RegExp(a,"g");r.test(e)||(alert(jQuery(this).data("invalidpattern")),s=0)}}}),!s)return;var p=jQuery("#updraft_restoreoptions_ui select, #updraft_restoreoptions_ui input").serialize();console.log("Restore options: "+p),jQuery("#updraft_restorer_restore_options").val(p),jQuery("#updraft-restore-modal-stage2a").html(updraftlion.restoreproceeding),jQuery("#updraft_restore_form").submit()}}else alert(updraftlion.youdidnotselectany)},f[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-restore-modal").dialog({autoOpen:!1,height:505,width:590,modal:!0,buttons:f}),jQuery("#updraft-iframe-modal").dialog({autoOpen:!1,height:500,width:780,modal:!0}),jQuery("#updraft-backupnow-inpage-modal").dialog({autoOpen:!1,height:345,width:580,modal:!0});var _={};_[updraftlion.backupnow]=function(){var t=jQuery("#backupnow_includedb").is(":checked")?0:1,e=jQuery("#backupnow_includefiles").is(":checked")?0:1,a=jQuery("#backupnow_includecloud").is(":checked")?0:1,r=backupnow_whichtables_checked("");if(""==r&&0==t)return alert(updraftlion.notableschosen),void jQuery("#backupnow_includefiles_moreoptions").show();"boolean"==typeof r&&(r=null);var n=backupnow_whichfiles_checked("");return""==n&&0==e?(alert(updraftlion.nofileschosen),void jQuery("#backupnow_includefiles_moreoptions").show()):t&&e?void alert(updraftlion.excludedeverything):(jQuery(this).dialog("close"),setTimeout(function(){jQuery("#updraft_lastlogmessagerow").fadeOut("slow",function(){jQuery(this).fadeIn("slow")})},1700),void updraft_backupnow_go(t,e,a,n,"",jQuery("#backupnow_label").val(),r))},_[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-backupnow-modal").dialog({autoOpen:!1,height:472,width:610,modal:!0,buttons:_}),jQuery("#updraft-migrate-modal").dialog({autoOpen:!1,height:updraftlion.migratemodalheight,width:updraftlion.migratemodalwidth,modal:!0}),jQuery("#updraft-poplog").dialog({autoOpen:!1,height:600,width:"75%",modal:!0}),jQuery("#updraft-navtab-settings-content .enableexpertmode").click(function(){return jQuery("#updraft-navtab-settings-content .expertmode").fadeIn(),jQuery("#updraft-navtab-settings-content .enableexpertmode").off("click"),!1}),jQuery("#updraft-navtab-settings-content .backupdirrow").on("click","a.updraft_backup_dir_reset",function(){return jQuery("#updraft_dir").val("updraft"),!1}),jQuery("#updraft-navtab-settings-content .updraft_include_entity").click(function(){var t=jQuery(this).data("toggle_exclude_field");t&&n(t,!1)}),jQuery("#updraft-navtab-settings-content .updraft-service").change(function(){var t=jQuery(this).val();jQuery("#updraft-navtab-settings-content .updraftplusmethod").hide(),jQuery("#updraft-navtab-settings-content ."+t).show()}),jQuery("#updraft-navtab-settings-content a.updraft_show_decryption_widget").click(function(t){t.preventDefault(),jQuery("#updraftplus_db_decrypt").val(jQuery("#updraft_encryptionphrase").val()),jQuery("#updraft-manualdecrypt-modal").slideToggle()}),jQuery("#updraftplus-phpinfo").click(function(t){t.preventDefault(),updraft_iframe_modal("phpinfo",updraftlion.phpinfo)}),jQuery("#updraftplus-rawbackuphistory").click(function(t){t.preventDefault(),updraft_iframe_modal("rawbackuphistory",updraftlion.raw)}),jQuery("#updraft-navtab-status").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-status-content").show(),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=1,updraft_activejobs_update(!0)}),jQuery("#updraft-navtab-expert").click(function(t){t.preventDefault(),jQuery(this).addClass("nav-tab-active"),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-expert-content").show(),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=4}),jQuery("#updraft-navtab-settings, #updraft-navtab-settings2, #updraft_backupnow_gotosettings").click(function(t){t.preventDefault(),jQuery(this).parents(".updraftmessage").remove(),jQuery("#updraft-backupnow-modal").dialog("close"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-addons-content").hide(),jQuery("#updraft-navtab-settings-content").show(),jQuery("#updraft-navtab-settings").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-addons").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=3}),jQuery("#updraft-navtab-addons").click(function(t){t.preventDefault(),jQuery(this).addClass("b#nav-tab-active"),jQuery("#updraft-navtab-status-content").hide(),jQuery("#updraft-navtab-backups-content").hide(),jQuery("#updraft-navtab-expert-content").hide(),jQuery("#updraft-navtab-settings-content").hide(),jQuery("#updraft-navtab-addons-content").show(),jQuery("#updraft-navtab-addons").addClass("nav-tab-active"),jQuery("#updraft-navtab-expert").removeClass("nav-tab-active"),jQuery("#updraft-navtab-backups").removeClass("nav-tab-active"),jQuery("#updraft-navtab-status").removeClass("nav-tab-active"),jQuery("#updraft-navtab-settings").removeClass("nav-tab-active"),updraft_page_is_visible=1,updraft_console_focussed_tab=5}),jQuery("#updraft-navtab-backups").click(function(t){t.preventDefault(),updraft_openrestorepanel(1)}),updraft_send_command("ping",null,function(t,e){"success"==e&&"pong"!=t&&t.indexOf("pong")>=0&&(jQuery("#updraft-navtab-backups-content .ud-whitespace-warning").show(),console.log("UpdraftPlus: Extra output warning: response (which should be just (string)'pong') follows."),console.log(t))},{json_parse:!1,type:"GET"});try{"undefined"!=typeof updraft_plupload_config&&o()}catch(y){console.log(y)}if(jQuery("#updraftplus_httpget_go").click(function(t){t.preventDefault(),u(0)}),jQuery("#updraftplus_httpget_gocurl").click(function(t){t.preventDefault(),u(1)}),jQuery("#updraftplus_callwpaction_go").click(function(t){t.preventDefault(),params={wpaction:jQuery("#updraftplus_callwpaction").val()},updraft_send_command("call_wordpress_action",params,function(t){t.e?alert(t.e):t.s||(t.r?jQuery("#updraftplus_callwpaction_results").html(t.r):(console.log(t),alert(updraftlion.jsonnotunderstood)))})}),jQuery("#updraft_activejobs_table").on("click",".updraft_jobinfo_delete",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_activejobs_delete(e):console.log("UpdraftPlus: A stop job link was clicked, but the Job ID could not be found")}),jQuery("#updraft_activejobs_table, #updraft-navtab-backups-content .updraft_existing_backups, #updraft-backupnow-inpage-modal").on("click",".updraft-log-link",function(t){t.preventDefault();var e=jQuery(this).data("jobid");e?updraft_popuplog(e):console.log("UpdraftPlus: A log link was clicked, but the Job ID could not be found")}),jQuery("#updraft-navtab-backups-content .updraft_existing_backups").on("click","button.choose-components-button",function(t){var e=jQuery(this).data("entities"),a=jQuery(this).data("backup_timestamp"),r=jQuery(this).data("showdata");d(e,a,r)}),"initiate_restore"==s("udaction")){var g=s("entities"),h=s("backup_timestamp"),m=s("showdata");d(g,h,m)}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+"#updraftvault_settings_cell").on("click",".updraftvault_backtostart",function(a){a.preventDefault(),t(e+"#updraftvault_settings_showoptions").slideUp(),t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").slideUp(),t(e+"#updraftvault_settings_default").slideDown()}),t(e+"#updraftvault_settings_connect input").keypress(function(a){if(13==a.which)return t(e+"#updraftvault_connect_go").click(),!1}),t(e+"#updraftvault_settings_cell").on("click","#updraftvault_recountquota",function(a){a.preventDefault(),t(e+"#updraftvault_recountquota").html(updraftlion.counting);try{updraft_send_command("vault_recountquota",null,function(a){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html),a.hasOwnProperty("connected")&&(a.connected?(t(e+"#updraftvault_settings_default").hide(),t(e+"#updraftvault_settings_connected").show()):(t(e+"#updraftvault_settings_connected").hide(),t(e+"#updraftvault_settings_default").show())))})}catch(r){t(e+"#updraftvault_recountquota").html(updraftlion.updatequotacount),console.log(r)}}),t(e+"#updraftvault_settings_cell").on("click","#updraftvault_disconnect",function(a){a.preventDefault(),t(e+"#updraftvault_disconnect").html(updraftlion.disconnecting);try{updraft_send_command("vault_disconnect",{immediate_echo:!0},function(a){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),a.hasOwnProperty("html")&&(t(e+"#updraftvault_settings_connected").html(a.html).slideUp(),t(e+"#updraftvault_settings_default").slideDown())})}catch(r){t(e+"#updraftvault_disconnect").html(updraftlion.disconnect),console.log(r)}}),t(e+"#updraftvault_connect").click(function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_connect").slideDown()}),t(e+"#updraftvault_showoptions").click(function(a){a.preventDefault(),t(e+"#updraftvault_settings_default").slideUp(),t(e+"#updraftvault_settings_showoptions").slideDown()}),t(e+"#updraftvault_connect_go").click(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()},function(a,r,n){t(e+"#updraftvault_connect_go").html(updraftlion.connect),a.hasOwnProperty("e")?(updraft_html_modal('<h4 style="margin-top:0px; padding-top:0px;">'+updraftlion.errornocolon+"</h4><p>"+a.e+"</p>",updraftlion.disconnect,400,250),a.hasOwnProperty("code")&&"no_quota"==a.code&&(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_default").slideDown())):a.hasOwnProperty("connected")&&a.connected&&a.hasOwnProperty("html")?(t(e+"#updraftvault_settings_connect").slideUp(),t(e+"#updraftvault_settings_connected").html(a.html).slideDown()):(console.log(a),alert(updraftlion.unexpectedresponse+" "+n))}),!1})}),jQuery(document).ready(function(t){function e(){var t=new plupload.Uploader(updraft_plupload_config2);t.bind("Init",function(t){var e=jQuery("#plupload-upload-ui2");t.features.dragdrop?(e.addClass("drag-drop"),jQuery("#drag-drop-area2").bind("dragover.wp-uploader",function(){e.addClass("drag-over")}).bind("dragleave.wp-uploader, drop.wp-uploader",function(){e.removeClass("drag-over")})):(e.removeClass("drag-drop"),jQuery("#drag-drop-area2").unbind(".wp-uploader"))}),t.init(),t.bind("FilesAdded",function(e,a){plupload.each(a,function(e){return/^backup_([\-0-9]{15})_.*_([0-9a-f]{12})-db([0-9]+)?\.(gz\.crypt)$/i.test(e.name)?void jQuery("#filelist2").append('<div class="file" id="'+e.id+'"><b>'+e.name+"</b> (<span>"+plupload.formatSize(0)+"</span>/"+plupload.formatSize(e.size)+') <div class="fileprogress"></div></div>'):(alert(e.name+": "+updraftlion.notdba),void t.removeFile(e))}),e.refresh(),e.start()}),t.bind("UploadProgress",function(t,e){jQuery("#"+e.id+" .fileprogress").width(e.percent+"%"),jQuery("#"+e.id+" span").html(plupload.formatSize(parseInt(e.size*e.percent/100)))}),t.bind("Error",function(t,e){"-200"==e.code?err_makesure="\n"+updraftlion.makesure2:err_makesure=updraftlion.makesure,alert(updraftlion.uploaderr+" (code "+e.code+") : "+e.message+" "+err_makesure)}),t.bind("FileUploaded",function(t,e,a){"200"==a.status?"ERROR:"==a.response.substring(0,6)?alert(updraftlion.uploaderror+" "+a.response.substring(6)):"OK:"==a.response.substring(0,3)?(bkey=a.response.substring(3),jQuery("#"+e.id+" .fileprogress").hide(),jQuery("#"+e.id).append(updraftlion.uploaded+' <a href="?page=updraftplus&action=downloadfile&updraftplus_file='+bkey+"&decrypt_key="+encodeURIComponent(jQuery("#updraftplus_db_decrypt").val())+'">'+updraftlion.followlink+"</a> "+updraftlion.thiskey+" "+jQuery("#updraftplus_db_decrypt").val().replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;"))):alert(updraftlion.unknownresp+" "+a.response):alert(updraftlion.ukrespstatus+" "+a.code)})}try{"undefined"!=typeof updraft_plupload_config2&&e()}catch(a){console.log(a)}jQuery("#updraft-hidethis").remove(),updraft_remote_storage_tabs_setup()}),jQuery(document).ready(function(t){function e(){var t=r("object"),e=new Date;t=JSON.stringify({version:"1.12.40",epoch_date:e.getTime(),local_date:e.toLocaleString(),network_site_url:updraftlion.network_site_url,data:t});var a=document.body.appendChild(document.createElement("a"));a.setAttribute("download","updraftplus-settings.json"),a.setAttribute("style","display:none;"),a.setAttribute("href","data:text/json;charset=UTF-8,"+encodeURIComponent(t)),a.click()}function a(e){var a,r=decodeURIComponent(e);try{a=ud_parse_json(r)}catch(o){return t.unblockUI(),jQuery("#import_settings").val(""),console.log(r),console.log(o),void alert(updraftlion.import_invalid_json_file)}if(window.confirm(updraftlion.importing_data_from+" "+r.network_site_url+"\n"+updraftlion.exported_on+" "+r.local_date+"\n"+updraftlion.continue_import)){var u=JSON.stringify(a.data);updraft_send_command("importsettings",{settings:u,updraftplus_version:updraftlion.updraftplus_version},function(e){var a=n(e);!a.hasOwnProperty("saved")||a.saved?(updraft_settings_form_changed=!1,location.replace(updraftlion.updraft_settings_url)):(t.unblockUI(),a.hasOwnProperty("error_message")&&a.error_message&&alert(a.error_message))},{action:"updraft_importsettings",nonce:updraftplus_settings_nonce,json_parse:!1})}else t.unblockUI()}function r(e){var a="",e="undefined"==typeof e?"string":e;return"object"==e?a=t("#updraft-navtab-settings-content form input[name!='action'][name!='option_page'][name!='_wpnonce'][name!='_wp_http_referer'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select, #updraft-navtab-settings-content form input[type=checkbox]").serializeJSON({
3
+ checkboxUncheckedValue:"0",useIntKeysAsArrayIndex:!0}):(a=t("#updraft-navtab-settings-content form input[name!='action'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select").serialize(),t.each(t("#updraft-navtab-settings-content form input[type=checkbox]").filter(function(e){return 0==t(this).prop("checked")}),function(e,r){var n="0";a+="&"+t(r).attr("name")+"="+n})),a}function n(e){try{var a=ud_parse_json(e),r=(a.messages,a.backup_dir.writable),n=a.backup_dir.message,o=a.backup_dir.button_title}catch(u){return console.log(u),console.log(e),alert(updraftlion.jsonnotunderstood),t.unblockUI(),{}}if(a.hasOwnProperty("changed")){console.log("UpdraftPlus: savesettings: some values were changed after being filtered"),console.log(a.changed);for(prop in a.changed)if("object"==typeof a.changed[prop])for(innerprop in a.changed[prop])t("[name='"+innerprop+"']").is(":checkbox")||t("[name='"+prop+"["+innerprop+"]']").val(a.changed[prop][innerprop]);else t("[name='"+prop+"']").is(":checkbox")||t("[name='"+prop+"']").val(a.changed[prop])}return t("#updraft_writable_mess").html(n),0==r?(t("#updraft-backupnow-button").attr("disabled","disabled"),t("#updraft-backupnow-button").attr("title",o),t(".backupdirrow").css("display","table-row")):(t("#updraft-backupnow-button").removeAttr("disabled"),t("#updraft-backupnow-button").removeAttr("title")),a.hasOwnProperty("updraft_include_more_path")&&t("#backupnow_includefiles_moreoptions").html(a.updraft_include_more_path),a.hasOwnProperty("backup_now_message")&&t("#backupnow_remote_container").html(a.backup_now_message),t(".updraftmessage").remove(),t("#updraft_backup_started").before(a.messages),t("#next-backup-table-inner").html(a.scheduled),a}function o(){var t=!1;if(jQuery("#updraft-authenticate-modal-innards").html(""),jQuery("div[class*=updraft_authenticate_] a.updraft_authlink").each(function(){jQuery("#updraft-authenticate-modal-innards").append('<p><a href="'+jQuery(this).attr("href")+'">'+jQuery(this).html()+"</a></p>"),t=!0}),t){var e={};e[updraftlion.cancel]=function(){jQuery(this).dialog("close")},jQuery("#updraft-authenticate-modal").dialog({autoOpen:!0,modal:!0,resizable:!1,draggable:!1,buttons:e,width:"auto"}).dialog("open")}}var u=new Image;u.src=updraftlion.ud_url+"/images/udlogo-rotating.gif",t("#updraft-navtab-settings-content input.updraft_include_entity").change(function(e){var a=t(this).attr("id"),r=t(this).is(":checked"),n="#backupnow_files_"+a;t(n).prop("checked",r)}),t("#updraftplus-settings-save").click(function(e){e.preventDefault(),t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.saving+"</div>"});var a=r("string");updraft_send_command("savesettings",{settings:a,updraftplus_version:updraftlion.updraftplus_version},function(e){n(e),t("#updraft-wrap .fade").delay(6e3).fadeOut(2e3),t("html, body").animate({scrollTop:t("#updraft-wrap").offset().top},1e3,function(){o()}),t.unblockUI()},{action:"updraft_savesettings",nonce:updraftplus_settings_nonce,json_parse:!1})}),t("#updraftplus-settings-export").click(function(){updraft_settings_form_changed&&alert(updraftlion.unsaved_settings_export),e()}),t("#updraftplus-settings-import").click(function(){t.blockUI({message:'<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.importing+"</div>"});var e=document.getElementById("import_settings");if(0==e.files.length)return alert(updraftlion.import_select_file),void t.unblockUI();var r=e.files[0],n=new FileReader;n.onload=function(){a(this.result)},n.readAsText(r)})});
languages/updraftplus-af.po CHANGED
@@ -11,20 +11,48 @@ msgstr ""
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/addons/sftp.php:346
15
- msgid "UpdraftPlus debug mode is on: detailed debugging data follows.n"
16
  msgstr ""
17
 
18
  #: src/admin.php:740
19
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
20
  msgstr ""
21
 
22
- #: src/admin.php:1234, src/admin.php:3881, src/class-updraftplus.php:2095,
23
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
24
  msgid "A PHP fatal error (%s) has occurred: %s"
25
  msgstr ""
26
 
27
- #: src/admin.php:1227, src/admin.php:3873, src/class-updraftplus.php:2088,
28
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
29
  msgid "A PHP exception (%s) has occurred: %s"
30
  msgstr ""
@@ -41,8 +69,8 @@ msgstr ""
41
  msgid "North-east Asia"
42
  msgstr ""
43
 
44
- #: src/udaddons/options.php:115
45
- msgid "Your web server's version of PHP is too old (.phpversion.) - 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"
46
  msgstr ""
47
 
48
  #: src/templates/wp-admin/settings/tab-status.php:80
@@ -69,18 +97,6 @@ msgstr ""
69
  msgid "Select Files"
70
  msgstr ""
71
 
72
- #: src/methods/updraftvault.php:346
73
- msgid "__Password"
74
- msgstr ""
75
-
76
- #: src/methods/updraftvault.php:345
77
- msgid "__E-mail"
78
- msgstr ""
79
-
80
- #: src/methods/openstack-base.php:420
81
- msgid "Error downloading remote file: Failed to download. (.$e->getMessage.)"
82
- msgstr ""
83
-
84
  #: src/methods/cloudfiles.php:497
85
  msgid "Rackspace Storage Region"
86
  msgstr ""
@@ -93,23 +109,15 @@ msgstr ""
93
  msgid "Instant and secure logon with a wave of your phone."
94
  msgstr ""
95
 
96
- #: src/class-updraftplus.php:946
97
- msgid "$pre_line"
98
- msgstr ""
99
-
100
  #: src/backup.php:1907
101
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
102
  msgstr ""
103
 
104
- #: src/admin.php:4362
105
  msgid "Value"
106
  msgstr ""
107
 
108
- #: src/admin.php:3543
109
- msgid "No backup log)"
110
- msgstr ""
111
-
112
- #: src/admin.php:1479
113
  msgid "Did not know how to delete from this cloud service."
114
  msgstr ""
115
 
@@ -125,7 +133,7 @@ msgstr ""
125
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
126
  msgstr ""
127
 
128
- #: src/templates/wp-admin/settings/existing-backups-table.php:69
129
  msgid "Stored at: %s"
130
  msgstr ""
131
 
@@ -133,11 +141,11 @@ msgstr ""
133
  msgid "Cloud Files"
134
  msgstr ""
135
 
136
- #: src/admin.php:4207
137
  msgid "Your settings failed to save. Please refresh the settings page and try again"
138
  msgstr ""
139
 
140
- #: src/admin.php:4166
141
  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."
142
  msgstr ""
143
 
@@ -154,7 +162,7 @@ msgstr ""
154
  msgid "Extra database"
155
  msgstr ""
156
 
157
- #: src/admin.php:3436
158
  msgid "Press here to download or browse"
159
  msgstr ""
160
 
@@ -198,15 +206,15 @@ msgstr ""
198
  msgid "Skipped tables:"
199
  msgstr ""
200
 
201
- #: src/class-updraftplus.php:4764
202
  msgid "This database backup has the following WordPress tables excluded: %s"
203
  msgstr ""
204
 
205
- #: src/admin.php:2422
206
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
207
  msgstr ""
208
 
209
- #: src/admin.php:2422
210
  msgid "All WordPress tables will be backed up."
211
  msgstr ""
212
 
@@ -706,7 +714,7 @@ msgstr ""
706
  msgid "Backup of: %s"
707
  msgstr ""
708
 
709
- #: src/methods/googledrive.php:243
710
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
711
  msgstr ""
712
 
@@ -734,11 +742,11 @@ msgstr ""
734
  msgid "You have selected a remote storage option which has an authorization step to complete:"
735
  msgstr ""
736
 
737
- #: src/admin.php:1531
738
  msgid "Remote files deleted:"
739
  msgstr ""
740
 
741
- #: src/admin.php:1530
742
  msgid "Local files deleted:"
743
  msgstr ""
744
 
@@ -807,7 +815,7 @@ msgstr ""
807
  msgid "An error response was received; HTTP code:"
808
  msgstr ""
809
 
810
- #: src/includes/class-commands.php:325
811
  msgid "%s add-on not found"
812
  msgstr ""
813
 
@@ -819,11 +827,11 @@ msgstr ""
819
  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"
820
  msgstr ""
821
 
822
- #: src/admin.php:2247
823
  msgid "To fix this problem go here."
824
  msgstr ""
825
 
826
- #: src/admin.php:2247
827
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
828
  msgstr ""
829
 
@@ -859,11 +867,11 @@ msgstr ""
859
  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."
860
  msgstr ""
861
 
862
- #: src/methods/s3.php:1052
863
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
864
  msgstr ""
865
 
866
- #: src/methods/s3.php:120
867
  msgid "No settings were found - please go to the Settings tab and check your settings"
868
  msgstr ""
869
 
@@ -911,49 +919,49 @@ msgstr ""
911
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
912
  msgstr ""
913
 
914
- #: src/addons/migrator.php:2210
915
  msgid "Create key"
916
  msgstr ""
917
 
918
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:513
919
  msgid "slower, strongest"
920
  msgstr ""
921
 
922
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
923
  msgid "recommended"
924
  msgstr ""
925
 
926
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
927
  msgid "%s bytes"
928
  msgstr ""
929
 
930
- #: src/addons/migrator.php:2205, src/central/bootstrap.php:511
931
  msgid "faster (possibility for slow PHP installs)"
932
  msgstr ""
933
 
934
- #: src/addons/migrator.php:2204, src/central/bootstrap.php:510
935
  msgid "easy to break, fastest"
936
  msgstr ""
937
 
938
- #: src/addons/migrator.php:2204, src/addons/migrator.php:2205,
939
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:510,
940
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
941
  msgid "%s bits"
942
  msgstr ""
943
 
944
- #: src/addons/migrator.php:2202, src/central/bootstrap.php:508
945
  msgid "Encryption key size:"
946
  msgstr ""
947
 
948
- #: src/addons/migrator.php:2200
949
  msgid "Enter your chosen name"
950
  msgstr ""
951
 
952
- #: src/addons/migrator.php:2199
953
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
954
  msgstr ""
955
 
956
- #: src/methods/googledrive.php:486
957
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
958
  msgstr ""
959
 
@@ -993,7 +1001,7 @@ msgstr ""
993
  msgid "Now"
994
  msgstr ""
995
 
996
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
997
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
998
  msgstr ""
999
 
@@ -1115,23 +1123,23 @@ msgstr ""
1115
  msgid "UpdraftCentral Connection"
1116
  msgstr ""
1117
 
1118
- #: src/backup.php:867, src/class-updraftplus.php:3094
1119
  msgid "The backup was aborted by the user"
1120
  msgstr ""
1121
 
1122
- #: src/admin.php:4202
1123
  msgid "Your settings have been saved."
1124
  msgstr ""
1125
 
1126
- #: src/admin.php:3330
1127
  msgid "Total backup size:"
1128
  msgstr ""
1129
 
1130
- #: src/admin.php:2744
1131
  msgid "stop"
1132
  msgstr ""
1133
 
1134
- #: src/admin.php:2582
1135
  msgid "The backup has finished running"
1136
  msgstr ""
1137
 
@@ -1153,7 +1161,7 @@ msgstr ""
1153
  msgid "this backup set"
1154
  msgstr ""
1155
 
1156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
1157
  msgid "calculate"
1158
  msgstr ""
1159
 
@@ -1197,19 +1205,19 @@ msgstr ""
1197
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1198
  msgstr ""
1199
 
1200
- #: src/class-updraftplus.php:4679, src/restorer.php:1700
1201
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1202
  msgstr ""
1203
 
1204
- #: src/class-updraftplus.php:4675
1205
  msgid "Please read this link for important information on this process."
1206
  msgstr ""
1207
 
1208
- #: src/class-updraftplus.php:4675
1209
  msgid "It will be imported as a new site."
1210
  msgstr ""
1211
 
1212
- #: src/admin.php:2395, src/templates/wp-admin/notices/horizontal-notice.php:16,
1213
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1214
  msgid "Dismiss"
1215
  msgstr ""
@@ -1234,40 +1242,40 @@ msgstr ""
1234
  msgid "Which site to restore"
1235
  msgstr ""
1236
 
1237
- #: src/addons/migrator.php:506, src/addons/migrator.php:507
1238
  msgid "Error when creating new site at your chosen address:"
1239
  msgstr ""
1240
 
1241
- #: src/addons/migrator.php:448
1242
  msgid "Required information for restoring this backup was not given (%s)"
1243
  msgstr ""
1244
 
1245
- #: src/addons/migrator.php:407
1246
  msgid "Attribute imported content to user"
1247
  msgstr ""
1248
 
1249
- #: src/addons/migrator.php:397, src/addons/migrator.php:399
1250
  msgid "You must use lower-case letters or numbers for the site path, only."
1251
  msgstr ""
1252
 
1253
- #: src/addons/migrator.php:385
1254
  msgid "This feature is not compatible with %s"
1255
  msgstr ""
1256
 
1257
- #: src/addons/migrator.php:383, src/addons/migrator.php:385
1258
  msgid "Importing a single site into a multisite install"
1259
  msgstr ""
1260
 
1261
- #: src/addons/migrator.php:374
1262
  msgid "other content from wp-content"
1263
  msgstr ""
1264
 
1265
- #: src/addons/migrator.php:371
1266
  msgid "WordPress core"
1267
  msgstr ""
1268
 
1269
- #: src/addons/migrator.php:371, src/addons/migrator.php:374,
1270
- #: src/addons/migrator.php:377
1271
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1272
  msgstr ""
1273
 
@@ -1275,11 +1283,11 @@ msgstr ""
1275
  msgid "Call WordPress action:"
1276
  msgstr ""
1277
 
1278
- #: src/admin.php:2430
1279
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1280
  msgstr ""
1281
 
1282
- #: src/admin.php:3748
1283
  msgid "Skipping: this archive was already restored."
1284
  msgstr ""
1285
 
@@ -1311,51 +1319,51 @@ msgstr ""
1311
  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)."
1312
  msgstr ""
1313
 
1314
- #: src/admin.php:4079
1315
  msgid "Send this backup to remote storage"
1316
  msgstr ""
1317
 
1318
- #: src/admin.php:4077
1319
  msgid "Check out UpdraftPlus Vault."
1320
  msgstr ""
1321
 
1322
- #: src/admin.php:4077
1323
  msgid "Not got any remote storage?"
1324
  msgstr ""
1325
 
1326
- #: src/admin.php:4077
1327
  msgid "settings"
1328
  msgstr ""
1329
 
1330
- #: src/admin.php:4077
1331
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1332
  msgstr ""
1333
 
1334
- #: src/admin.php:2428
1335
  msgid "Include any files in the backup"
1336
  msgstr ""
1337
 
1338
- #: src/admin.php:2414
1339
  msgid "Include the database in the backup"
1340
  msgstr ""
1341
 
1342
- #: src/admin.php:2394
1343
  msgid "Continue restoration"
1344
  msgstr ""
1345
 
1346
- #: src/admin.php:2389
1347
  msgid "You have an unfinished restoration operation, begun %s ago."
1348
  msgstr ""
1349
 
1350
- #: src/admin.php:2388
1351
  msgid "Unfinished restoration"
1352
  msgstr ""
1353
 
1354
- #: src/admin.php:2386
1355
  msgid "%s minutes, %s seconds"
1356
  msgstr ""
1357
 
1358
- #: src/admin.php:2333
1359
  msgid "Backup Contents And Schedule"
1360
  msgstr ""
1361
 
@@ -1363,7 +1371,7 @@ msgstr ""
1363
  msgid "Premium / Extensions"
1364
  msgstr ""
1365
 
1366
- #: src/admin.php:2113, src/admin.php:2122
1367
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1368
  msgstr ""
1369
 
@@ -1510,7 +1518,7 @@ msgstr ""
1510
  msgid "Could not access container"
1511
  msgstr ""
1512
 
1513
- #: src/class-updraftplus.php:3111
1514
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1515
  msgstr ""
1516
 
@@ -1635,11 +1643,11 @@ msgstr ""
1635
  msgid "Actions upon selected backups"
1636
  msgstr ""
1637
 
1638
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
1639
  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)."
1640
  msgstr ""
1641
 
1642
- #: src/admin.php:1529
1643
  msgid "Backup sets removed:"
1644
  msgstr ""
1645
 
@@ -1691,15 +1699,15 @@ msgstr ""
1691
  msgid "You do not currently have any UpdraftPlus Vault quota"
1692
  msgstr ""
1693
 
1694
- #: src/class-updraftplus.php:4714
1695
  msgid "You must upgrade MySQL to be able to use this database."
1696
  msgstr ""
1697
 
1698
- #: src/class-updraftplus.php:4714
1699
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1700
  msgstr ""
1701
 
1702
- #: src/admin.php:2232
1703
  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."
1704
  msgstr ""
1705
 
@@ -1868,7 +1876,7 @@ msgid "Updraft Vault"
1868
  msgstr ""
1869
 
1870
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1871
- #: src/methods/s3.php:1080
1872
  msgid "Delete failed:"
1873
  msgstr ""
1874
 
@@ -1892,71 +1900,71 @@ msgstr ""
1892
  msgid "Allow download"
1893
  msgstr ""
1894
 
1895
- #: src/addons/migrator.php:1754
1896
  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."
1897
  msgstr ""
1898
 
1899
- #: src/addons/migrator.php:1739, src/admin.php:709
1900
  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."
1901
  msgstr ""
1902
 
1903
- #: src/addons/migrator.php:2242
1904
  msgid "Existing keys"
1905
  msgstr ""
1906
 
1907
- #: src/addons/migrator.php:2233
1908
  msgid "No keys to allow remote sites to connect have yet been created."
1909
  msgstr ""
1910
 
1911
- #: src/addons/migrator.php:2215
1912
  msgid "Your new key:"
1913
  msgstr ""
1914
 
1915
- #: src/addons/migrator.php:2194
1916
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1917
  msgstr ""
1918
 
1919
- #: src/addons/migrator.php:2176
1920
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1921
  msgstr ""
1922
 
1923
- #: src/addons/migrator.php:2176
1924
  msgid "Keys for this site are created in the section below the one you just pressed in."
1925
  msgstr ""
1926
 
1927
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1928
  msgid "You must copy and paste this key now - it cannot be shown again."
1929
  msgstr ""
1930
 
1931
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1932
  msgid "Key created successfully."
1933
  msgstr ""
1934
 
1935
- #: src/addons/migrator.php:1841
1936
  msgid "A key with this name already exists; you must use a unique name."
1937
  msgstr ""
1938
 
1939
- #: src/addons/migrator.php:1785
1940
  msgid "Also send this backup to the active remote storage locations"
1941
  msgstr ""
1942
 
1943
- #: src/addons/migrator.php:1750
1944
  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."
1945
  msgstr ""
1946
 
1947
- #: src/addons/migrator.php:1706
1948
  msgid "site not found"
1949
  msgstr ""
1950
 
1951
- #: src/addons/migrator.php:1691
1952
  msgid "Backup data will be sent to:"
1953
  msgstr ""
1954
 
1955
- #: src/addons/migrator.php:195
1956
  msgid "Restore an existing backup set onto this site"
1957
  msgstr ""
1958
 
1959
- #: src/addons/migrator.php:188
1960
  msgid "This site has no backups to restore from yet."
1961
  msgstr ""
1962
 
@@ -1968,15 +1976,15 @@ msgstr ""
1968
  msgid "This storage method does not allow downloading"
1969
  msgstr ""
1970
 
1971
- #: src/admin.php:3501
1972
  msgid "(backup set imported from remote location)"
1973
  msgstr ""
1974
 
1975
- #: src/templates/wp-admin/settings/existing-backups-table.php:82
1976
  msgid "Site"
1977
  msgstr ""
1978
 
1979
- #: src/templates/wp-admin/settings/existing-backups-table.php:81
1980
  msgid "Backup sent to remote site - not available for download."
1981
  msgstr ""
1982
 
@@ -1988,7 +1996,7 @@ msgstr ""
1988
  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."
1989
  msgstr ""
1990
 
1991
- #: src/addons/migrator.php:1767, src/admin.php:716
1992
  msgid "Testing connection..."
1993
  msgstr ""
1994
 
@@ -2008,60 +2016,60 @@ msgstr ""
2008
  msgid "Creating..."
2009
  msgstr ""
2010
 
2011
- #: src/addons/migrator.php:2193
2012
  msgid "Or, receive a backup from a remote site"
2013
  msgstr ""
2014
 
2015
- #: src/addons/migrator.php:2182
2016
  msgid "Paste key here"
2017
  msgstr ""
2018
 
2019
- #: src/addons/migrator.php:2176
2020
  msgid "How do I get a site's key?"
2021
  msgstr ""
2022
 
2023
- #: src/addons/migrator.php:2176
2024
  msgid "To add a site as a destination for sending to, enter that site's key below."
2025
  msgstr ""
2026
 
2027
- #: src/addons/migrator.php:2173
2028
  msgid "Or, send a backup to another site"
2029
  msgstr ""
2030
 
2031
- #: src/addons/migrator.php:1938, src/admin.php:717
2032
  msgid "Send"
2033
  msgstr ""
2034
 
2035
- #: src/addons/migrator.php:1932, src/admin.php:708
2036
  msgid "Send to site:"
2037
  msgstr ""
2038
 
2039
- #: src/addons/migrator.php:1930
2040
  msgid "No receiving sites have yet been added."
2041
  msgstr ""
2042
 
2043
- #: src/addons/migrator.php:1911
2044
  msgid "It is for sending backups to the following site: "
2045
  msgstr ""
2046
 
2047
- #: src/addons/migrator.php:1911
2048
  msgid "The key was successfully added."
2049
  msgstr ""
2050
 
2051
- #: src/addons/migrator.php:1895
2052
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2053
  msgstr ""
2054
 
2055
- #: src/addons/migrator.php:1884, src/addons/migrator.php:1886,
2056
- #: src/addons/migrator.php:1890
2057
  msgid "The entered key was corrupt - please try again."
2058
  msgstr ""
2059
 
2060
- #: src/addons/migrator.php:1882
2061
  msgid "The entered key was the wrong length - please try again."
2062
  msgstr ""
2063
 
2064
- #: src/addons/migrator.php:1872
2065
  msgid "key"
2066
  msgstr ""
2067
 
@@ -2101,7 +2109,7 @@ msgstr ""
2101
  msgid "Resetting..."
2102
  msgstr ""
2103
 
2104
- #: src/addons/migrator.php:2182, src/admin.php:705
2105
  msgid "Add site"
2106
  msgstr ""
2107
 
@@ -2109,7 +2117,7 @@ msgstr ""
2109
  msgid "Adding..."
2110
  msgstr ""
2111
 
2112
- #: src/udaddons/options.php:333
2113
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2114
  msgstr ""
2115
 
@@ -2129,11 +2137,11 @@ msgstr ""
2129
  msgid "Go here to re-enter your password."
2130
  msgstr ""
2131
 
2132
- #: src/addons/migrator.php:224
2133
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2134
  msgstr ""
2135
 
2136
- #: src/addons/migrator.php:195
2137
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2138
  msgstr ""
2139
 
@@ -2153,7 +2161,7 @@ msgstr ""
2153
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2154
  msgstr ""
2155
 
2156
- #: src/addons/azure.php:541, src/addons/migrator.php:1754,
2157
  #: src/addons/onedrive.php:955
2158
  msgid "For longer help, including screenshots, follow this link."
2159
  msgstr ""
@@ -2332,7 +2340,7 @@ msgstr ""
2332
  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)"
2333
  msgstr ""
2334
 
2335
- #: src/methods/s3.php:868
2336
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2337
  msgstr ""
2338
 
@@ -2407,7 +2415,7 @@ msgstr ""
2407
  msgid "(at same time as files backup)"
2408
  msgstr ""
2409
 
2410
- #: src/admin.php:3012
2411
  msgid "No backup has been completed"
2412
  msgstr ""
2413
 
@@ -2456,8 +2464,8 @@ msgstr ""
2456
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2457
  msgstr ""
2458
 
2459
- #: src/methods/s3.php:166, src/methods/s3.php:167, src/methods/s3.php:168,
2460
- #: src/methods/s3.php:176, src/methods/s3.php:177, src/methods/s3.php:178
2461
  msgid "%s Error: Failed to initialise"
2462
  msgstr ""
2463
 
@@ -2497,7 +2505,7 @@ msgstr ""
2497
  msgid "Check this box to have a basic report sent to"
2498
  msgstr ""
2499
 
2500
- #: src/admin.php:3021
2501
  msgctxt "i.e. Non-automatic"
2502
  msgid "Manual"
2503
  msgstr ""
@@ -2515,7 +2523,7 @@ msgstr ""
2515
  msgid "Any other file/directory on your server that you wish to back up"
2516
  msgstr ""
2517
 
2518
- #: src/admin.php:2249
2519
  msgid "For even more features and personal support, check out "
2520
  msgstr ""
2521
 
@@ -2605,11 +2613,11 @@ msgstr ""
2605
  msgid "(learn more about this significant option)"
2606
  msgstr ""
2607
 
2608
- #: src/udaddons/options.php:275
2609
  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."
2610
  msgstr ""
2611
 
2612
- #: src/admin.php:2582, src/admin.php:3523, src/admin.php:3524
2613
  msgid "View Log"
2614
  msgstr ""
2615
 
@@ -2626,7 +2634,7 @@ msgstr ""
2626
  msgid "and retain this many scheduled backups"
2627
  msgstr ""
2628
 
2629
- #: src/admin.php:2982
2630
  msgid "incremental backup; base backup: %s"
2631
  msgstr ""
2632
 
@@ -2634,20 +2642,20 @@ msgstr ""
2634
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2635
  msgstr ""
2636
 
2637
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
2638
  msgid "Upload files into UpdraftPlus."
2639
  msgstr ""
2640
 
2641
- #: src/admin.php:932, src/includes/class-commands.php:379,
2642
  #: src/templates/wp-admin/settings/tab-status.php:22
2643
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2644
  msgstr ""
2645
 
2646
- #: src/class-updraftplus.php:4664
2647
  msgid "Backup label:"
2648
  msgstr ""
2649
 
2650
- #: src/admin.php:1774
2651
  msgid "Error: unexpected file read fail"
2652
  msgstr ""
2653
 
@@ -2667,7 +2675,7 @@ msgstr ""
2667
  msgid "Your label for this backup (optional)"
2668
  msgstr ""
2669
 
2670
- #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1082
2671
  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."
2672
  msgstr ""
2673
 
@@ -2687,36 +2695,36 @@ msgstr ""
2687
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2688
  msgstr ""
2689
 
2690
- #: src/class-updraftplus.php:4683
2691
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2692
  msgstr ""
2693
 
2694
- #: src/class-updraftplus.php:4683
2695
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2696
  msgstr ""
2697
 
2698
- #: src/addons/migrator.php:1083
2699
  msgid "already done"
2700
  msgstr ""
2701
 
2702
- #: src/addons/migrator.php:1040
2703
  msgid "skipped (not in list)"
2704
  msgstr ""
2705
 
2706
- #: src/addons/migrator.php:1040, src/addons/migrator.php:1083,
2707
- #: src/addons/migrator.php:1215
2708
  msgid "Search and replacing table:"
2709
  msgstr ""
2710
 
2711
- #: src/addons/migrator.php:322
2712
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2713
  msgstr ""
2714
 
2715
- #: src/addons/migrator.php:322
2716
  msgid "These tables only"
2717
  msgstr ""
2718
 
2719
- #: src/addons/migrator.php:321
2720
  msgid "Rows per batch"
2721
  msgstr ""
2722
 
@@ -2728,19 +2736,19 @@ msgstr ""
2728
  msgid "You need to connect to receive future updates to UpdraftPlus."
2729
  msgstr ""
2730
 
2731
- #: src/class-updraftplus.php:4656
2732
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2733
  msgstr ""
2734
 
2735
- #: src/class-updraftplus.php:4656
2736
  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."
2737
  msgstr ""
2738
 
2739
- #: src/class-updraftplus.php:4656
2740
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2741
  msgstr ""
2742
 
2743
- #: src/class-updraftplus.php:4656
2744
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2745
  msgstr ""
2746
 
@@ -2769,27 +2777,27 @@ msgstr ""
2769
  msgid "UpdraftPlus is on social media - check us out!"
2770
  msgstr ""
2771
 
2772
- #: src/admin.php:3592
2773
  msgid "Why am I seeing this?"
2774
  msgstr ""
2775
 
2776
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2777
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2778
  msgstr ""
2779
 
2780
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2781
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2782
  msgstr ""
2783
 
2784
- #: src/admin.php:1713, src/admin.php:1725
2785
  msgid "Start backup"
2786
  msgstr ""
2787
 
2788
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
2789
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2790
  msgstr ""
2791
 
2792
- #: src/admin.php:2905
2793
  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."
2794
  msgstr ""
2795
 
@@ -2797,11 +2805,11 @@ msgstr ""
2797
  msgid "Unless you have a problem, you can completely ignore everything here."
2798
  msgstr ""
2799
 
2800
- #: src/admin.php:1935
2801
  msgid "This file could not be uploaded"
2802
  msgstr ""
2803
 
2804
- #: src/admin.php:1900
2805
  msgid "You will find more information about this in the Settings section."
2806
  msgstr ""
2807
 
@@ -2821,7 +2829,7 @@ msgstr ""
2821
  msgid "Memory limit"
2822
  msgstr ""
2823
 
2824
- #: src/class-updraftplus.php:4786, src/restorer.php:1493
2825
  msgid "restoration"
2826
  msgstr ""
2827
 
@@ -2845,42 +2853,42 @@ msgstr ""
2845
  msgid "Backup succeeded"
2846
  msgstr ""
2847
 
2848
- #: src/admin.php:3022, src/admin.php:3023, src/admin.php:3024,
2849
  #: src/updraftplus.php:99, src/updraftplus.php:100
2850
  msgid "Every %s hours"
2851
  msgstr ""
2852
 
2853
- #: src/addons/migrator.php:785, src/addons/migrator.php:787
2854
  msgid "search and replace"
2855
  msgstr ""
2856
 
2857
- #: src/addons/migrator.php:324
2858
  msgid "Go"
2859
  msgstr ""
2860
 
2861
- #: src/addons/migrator.php:313
2862
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2863
  msgstr ""
2864
 
2865
- #: src/addons/migrator.php:312
2866
  msgid "This can easily destroy your site; so, use it with care!"
2867
  msgstr ""
2868
 
2869
- #: src/addons/migrator.php:282, src/addons/migrator.php:320
2870
  msgid "Replace with"
2871
  msgstr ""
2872
 
2873
- #: src/addons/migrator.php:281, src/addons/migrator.php:319
2874
  msgid "Search for"
2875
  msgstr ""
2876
 
2877
- #: src/addons/migrator.php:280, src/addons/migrator.php:311,
2878
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2879
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2880
  msgid "Search / replace database"
2881
  msgstr ""
2882
 
2883
- #: src/addons/migrator.php:286
2884
  msgid "search term"
2885
  msgstr ""
2886
 
@@ -2896,11 +2904,11 @@ msgstr ""
2896
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2897
  msgstr ""
2898
 
2899
- #: src/methods/googledrive.php:1090
2900
  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."
2901
  msgstr ""
2902
 
2903
- #: src/admin.php:3350
2904
  msgid "You have not yet made any backups."
2905
  msgstr ""
2906
 
@@ -2920,13 +2928,13 @@ msgstr ""
2920
  msgid "Free disk space in account:"
2921
  msgstr ""
2922
 
2923
- #: src/admin.php:4173, src/templates/wp-admin/settings/tab-status.php:27
2924
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2925
  msgstr ""
2926
 
2927
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1578,
2928
- #: src/includes/deprecated-actions.php:30,
2929
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:22,
2930
  #: src/templates/wp-admin/settings/tab-bar.php:6
2931
  msgid "Existing Backups"
2932
  msgstr ""
@@ -3019,20 +3027,20 @@ msgstr ""
3019
  msgid "External database (%s)"
3020
  msgstr ""
3021
 
3022
- #: src/methods/googledrive.php:1090
3023
  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."
3024
  msgstr ""
3025
 
3026
- #: src/methods/googledrive.php:450
3027
  msgid "failed to access parent folder"
3028
  msgstr ""
3029
 
3030
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3031
- #: src/addons/onedrive.php:773, src/methods/googledrive.php:403
3032
  msgid "However, subsequent access attempts failed:"
3033
  msgstr ""
3034
 
3035
- #: src/admin.php:3375
3036
  msgid "External database"
3037
  msgstr ""
3038
 
@@ -3064,7 +3072,7 @@ msgstr ""
3064
  msgid "use UpdraftPlus Premium"
3065
  msgstr ""
3066
 
3067
- #: src/class-updraftplus.php:4546
3068
  msgid "Decryption failed. The database file is encrypted."
3069
  msgstr ""
3070
 
@@ -3085,7 +3093,7 @@ msgstr ""
3085
  msgid "database connection attempt failed."
3086
  msgstr ""
3087
 
3088
- #: src/addons/migrator.php:971
3089
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3090
  msgstr ""
3091
 
@@ -3168,7 +3176,7 @@ msgstr ""
3168
  msgid "Authenticate with %s"
3169
  msgstr ""
3170
 
3171
- #: src/methods/cloudfiles.php:422
3172
  msgid "Error downloading remote file: Failed to download"
3173
  msgstr ""
3174
 
@@ -3196,37 +3204,37 @@ msgid "%s error - failed to access the container"
3196
  msgstr ""
3197
 
3198
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3199
- #: src/methods/dropbox.php:546, src/methods/googledrive.php:1146
3200
  msgid "Account holder's name: %s."
3201
  msgstr ""
3202
 
3203
- #: src/methods/googledrive.php:1135
3204
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3205
  msgstr ""
3206
 
3207
- #: src/methods/googledrive.php:1126
3208
  msgid "It is an ID number internal to Google Drive"
3209
  msgstr ""
3210
 
3211
- #: src/methods/googledrive.php:1126
3212
  msgid "<strong>This is NOT a folder name</strong>."
3213
  msgstr ""
3214
 
3215
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3216
- #: src/methods/googledrive.php:1122, src/methods/googledrive.php:1132
3217
  msgid "Folder"
3218
  msgstr ""
3219
 
3220
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3221
- #: src/methods/googledrive.php:1041
3222
  msgid "%s download: failed: file not found"
3223
  msgstr ""
3224
 
3225
- #: src/addons/googlecloud.php:635, src/methods/googledrive.php:423
3226
  msgid "Name: %s."
3227
  msgstr ""
3228
 
3229
- #: src/methods/googledrive.php:181
3230
  msgid "Google Drive list files: failed to access parent folder"
3231
  msgstr ""
3232
 
@@ -3251,8 +3259,8 @@ msgstr ""
3251
  msgid "Fetch"
3252
  msgstr ""
3253
 
3254
- #: src/addons/migrator.php:383,
3255
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:62,
3256
  #: src/templates/wp-admin/settings/form-contents.php:212
3257
  msgid "This feature requires %s version %s or later"
3258
  msgstr ""
@@ -3265,7 +3273,7 @@ msgstr ""
3265
  msgid "Error - failed to download the file"
3266
  msgstr ""
3267
 
3268
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3269
  msgid "Rescan local folder for new backup sets"
3270
  msgstr ""
3271
 
@@ -3285,8 +3293,8 @@ msgstr ""
3285
  msgid "password/key"
3286
  msgstr ""
3287
 
3288
- #: src/addons/azure.php:549, src/addons/migrator.php:2200,
3289
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4362
3290
  msgid "Key"
3291
  msgstr ""
3292
 
@@ -3302,36 +3310,36 @@ msgstr ""
3302
  msgid "SCP/SFTP password/key"
3303
  msgstr ""
3304
 
3305
- #: src/admin.php:3410
3306
  msgid "Files backup (created by %s)"
3307
  msgstr ""
3308
 
3309
- #: src/admin.php:3410
3310
  msgid "Files and database WordPress backup (created by %s)"
3311
  msgstr ""
3312
 
3313
- #: src/addons/importer.php:276, src/admin.php:3404,
3314
- #: src/class-updraftplus.php:2893
3315
  msgid "Backup created by: %s."
3316
  msgstr ""
3317
 
3318
- #: src/admin.php:3373
3319
  msgid "Database (created by %s)"
3320
  msgstr ""
3321
 
3322
- #: src/admin.php:3367, src/admin.php:3406
3323
  msgid "unknown source"
3324
  msgstr ""
3325
 
3326
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
3327
  msgid "Rescan remote storage"
3328
  msgstr ""
3329
 
3330
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:40
3331
  msgid "Upload backup files"
3332
  msgstr ""
3333
 
3334
- #: src/admin.php:1979
3335
  msgid "This backup was created by %s, and can be imported."
3336
  msgstr ""
3337
 
@@ -3343,7 +3351,7 @@ msgstr ""
3343
  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."
3344
  msgstr ""
3345
 
3346
- #: src/admin.php:676, src/class-updraftplus.php:2900
3347
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3348
  msgstr ""
3349
 
@@ -3351,11 +3359,11 @@ msgstr ""
3351
  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."
3352
  msgstr ""
3353
 
3354
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2900
3355
  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))."
3356
  msgstr ""
3357
 
3358
- #: src/admin.php:3407, src/includes/class-wpadmin-commands.php:152,
3359
  #: src/restorer.php:1462
3360
  msgid "Backup created by unknown source (%s) - cannot be restored."
3361
  msgstr ""
@@ -3381,7 +3389,7 @@ msgstr ""
3381
  msgid "No settings were found"
3382
  msgstr ""
3383
 
3384
- #: src/class-updraftplus.php:3021
3385
  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."
3386
  msgstr ""
3387
 
@@ -3407,7 +3415,7 @@ msgstr ""
3407
  msgid "Remove"
3408
  msgstr ""
3409
 
3410
- #: src/methods/s3.php:840
3411
  msgid "Other %s FAQs."
3412
  msgstr ""
3413
 
@@ -3415,16 +3423,16 @@ msgstr ""
3415
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3416
  msgstr ""
3417
 
3418
- #: src/addons/morefiles.php:445, src/admin.php:3114
3419
  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."
3420
  msgstr ""
3421
 
3422
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309,
3423
  #: src/restorer.php:1493
3424
  msgid "Your hosting company must enable these functions before %s can work."
3425
  msgstr ""
3426
 
3427
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309
3428
  msgid "Your web server's PHP installation has these functions disabled: %s."
3429
  msgstr ""
3430
 
@@ -3444,7 +3452,7 @@ msgstr ""
3444
  msgid "Backup created by:"
3445
  msgstr ""
3446
 
3447
- #: src/udaddons/options.php:482
3448
  msgid "Available to claim on this site"
3449
  msgstr ""
3450
 
@@ -3494,15 +3502,15 @@ msgstr ""
3494
  msgid "Dismiss from main dashboard (for %s weeks)"
3495
  msgstr ""
3496
 
3497
- #: src/class-updraftplus.php:4836
3498
  msgid "The attempt to undo the double-compression succeeded."
3499
  msgstr ""
3500
 
3501
- #: src/class-updraftplus.php:4813, src/class-updraftplus.php:4834
3502
  msgid "The attempt to undo the double-compression failed."
3503
  msgstr ""
3504
 
3505
- #: src/class-updraftplus.php:4806
3506
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3507
  msgstr ""
3508
 
@@ -3535,7 +3543,7 @@ msgstr ""
3535
  msgid "Errors occurred:"
3536
  msgstr ""
3537
 
3538
- #: src/admin.php:3612
3539
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3540
  msgstr ""
3541
 
@@ -3563,7 +3571,7 @@ msgstr ""
3563
  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)"
3564
  msgstr ""
3565
 
3566
- #: src/addons/migrator.php:253
3567
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3568
  msgstr ""
3569
 
@@ -3572,7 +3580,7 @@ msgstr ""
3572
  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."
3573
  msgstr ""
3574
 
3575
- #: src/addons/moredatabase.php:137, src/admin.php:1363
3576
  msgid "Messages:"
3577
  msgstr ""
3578
 
@@ -3732,7 +3740,7 @@ msgstr ""
3732
  msgid "Authorisation failed (check your credentials)"
3733
  msgstr ""
3734
 
3735
- #: src/methods/updraftvault.php:568, src/udaddons/options.php:267
3736
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3737
  msgstr ""
3738
 
@@ -3748,15 +3756,15 @@ msgstr ""
3748
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3749
  msgstr ""
3750
 
3751
- #: src/admin.php:661, src/admin.php:3902
3752
  msgid "Error data:"
3753
  msgstr ""
3754
 
3755
- #: src/admin.php:3563
3756
  msgid "Backup does not exist in the backup history"
3757
  msgstr ""
3758
 
3759
- #: src/admin.php:2526
3760
  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."
3761
  msgstr ""
3762
 
@@ -3812,7 +3820,7 @@ msgstr ""
3812
  msgid "Debugging information"
3813
  msgstr ""
3814
 
3815
- #: src/addons/reporting.php:211, src/admin.php:3313
3816
  msgid "Uploaded to:"
3817
  msgstr ""
3818
 
@@ -3872,7 +3880,7 @@ msgstr ""
3872
  msgid "%s did not return the expected response - check your log file for more details"
3873
  msgstr ""
3874
 
3875
- #: src/methods/s3.php:287
3876
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3877
  msgstr ""
3878
 
@@ -3885,7 +3893,7 @@ msgid "Your site's admin email address (%s) will be used."
3885
  msgstr ""
3886
 
3887
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3888
- #: src/methods/updraftvault.php:347, src/udaddons/options.php:246
3889
  msgid "Connect"
3890
  msgstr ""
3891
 
@@ -3893,7 +3901,7 @@ msgstr ""
3893
  msgid "For more reporting features, use the Reporting add-on."
3894
  msgstr ""
3895
 
3896
- #: src/class-updraftplus.php:4616
3897
  msgid "(version: %s)"
3898
  msgstr ""
3899
 
@@ -3966,39 +3974,39 @@ msgstr ""
3966
  msgid "UpdraftPlus warning:"
3967
  msgstr ""
3968
 
3969
- #: src/udaddons/options.php:488
3970
  msgid "(or connect using the form on this page if you have already purchased it)"
3971
  msgstr ""
3972
 
3973
- #: src/udaddons/options.php:474
3974
  msgid "please follow this link to update the plugin in order to activate it"
3975
  msgstr ""
3976
 
3977
- #: src/udaddons/options.php:471
3978
  msgid "please follow this link to update the plugin in order to get it"
3979
  msgstr ""
3980
 
3981
- #: src/udaddons/options.php:461, src/udaddons/options.php:463
3982
  msgid "latest"
3983
  msgstr ""
3984
 
3985
- #: src/udaddons/options.php:459
3986
  msgid "Your version: %s"
3987
  msgstr ""
3988
 
3989
- #: src/udaddons/options.php:457, src/udaddons/options.php:457
3990
  msgid "You've got it"
3991
  msgstr ""
3992
 
3993
- #: src/udaddons/options.php:418
3994
  msgid "UpdraftPlus Support"
3995
  msgstr ""
3996
 
3997
- #: src/udaddons/options.php:376
3998
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3999
  msgstr ""
4000
 
4001
- #: src/udaddons/options.php:365, src/udaddons/updraftplus-addons.php:290
4002
  msgid "UpdraftPlus Addons"
4003
  msgstr ""
4004
 
@@ -4034,7 +4042,7 @@ msgstr ""
4034
  msgid "Reporting"
4035
  msgstr ""
4036
 
4037
- #: src/admin.php:4359
4038
  msgid "Options (raw)"
4039
  msgstr ""
4040
 
@@ -4062,91 +4070,91 @@ msgstr ""
4062
  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)"
4063
  msgstr ""
4064
 
4065
- #: src/udaddons/options.php:553
4066
  msgid "Manage Addons"
4067
  msgstr ""
4068
 
4069
- #: src/udaddons/options.php:489, src/udaddons/options.php:489
4070
  msgid "Buy It"
4071
  msgstr ""
4072
 
4073
- #: src/udaddons/options.php:488
4074
  msgid "Get it from the UpdraftPlus.Com Store"
4075
  msgstr ""
4076
 
4077
- #: src/udaddons/options.php:482, src/udaddons/options.php:484
4078
  msgid "activate it on this site"
4079
  msgstr ""
4080
 
4081
- #: src/udaddons/options.php:484
4082
  msgid "You have an inactive purchase"
4083
  msgstr ""
4084
 
4085
- #: src/udaddons/options.php:474
4086
  msgid "Assigned to this site"
4087
  msgstr ""
4088
 
4089
- #: src/udaddons/options.php:471
4090
  msgid "Available for this site (via your all-addons purchase)"
4091
  msgstr ""
4092
 
4093
- #: src/udaddons/options.php:465
4094
  msgid "(apparently a pre-release or withdrawn release)"
4095
  msgstr ""
4096
 
4097
- #: src/udaddons/options.php:420
4098
  msgid "Go here"
4099
  msgstr ""
4100
 
4101
- #: src/udaddons/options.php:420
4102
  msgid "Need to get support?"
4103
  msgstr ""
4104
 
4105
- #: src/udaddons/options.php:402
4106
  msgid "An error occurred when trying to retrieve your add-ons."
4107
  msgstr ""
4108
 
4109
- #: src/udaddons/options.php:335
4110
  msgid "An unknown response was received. Response was:"
4111
  msgstr ""
4112
 
4113
- #: src/udaddons/options.php:334
4114
  msgid "Claim not granted - your account login details were wrong"
4115
  msgstr ""
4116
 
4117
- #: src/udaddons/options.php:332
4118
  msgid "Please wait whilst we make the claim..."
4119
  msgstr ""
4120
 
4121
- #: src/udaddons/options.php:285
4122
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4123
  msgstr ""
4124
 
4125
- #: src/udaddons/options.php:278
4126
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4127
  msgstr ""
4128
 
4129
- #: src/udaddons/options.php:274
4130
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4131
  msgstr ""
4132
 
4133
- #: src/udaddons/options.php:273
4134
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr ""
4136
 
4137
- #: src/udaddons/options.php:244
4138
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4139
  msgstr ""
4140
 
4141
- #: src/udaddons/options.php:172
4142
  msgid "Forgotten your details?"
4143
  msgstr ""
4144
 
4145
- #: src/udaddons/options.php:161
4146
  msgid "Not yet got an account (it's free)? Go get one!"
4147
  msgstr ""
4148
 
4149
- #: src/udaddons/options.php:128
4150
  msgid "Connect with your UpdraftPlus.Com account"
4151
  msgstr ""
4152
 
@@ -4186,15 +4194,15 @@ msgstr ""
4186
  msgid "Your web-server does not have the %s module installed."
4187
  msgstr ""
4188
 
4189
- #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1142
4190
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4191
  msgstr ""
4192
 
4193
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:68
4194
  msgid "Drop backup files here"
4195
  msgstr ""
4196
 
4197
- #: src/admin.php:2405
4198
  msgid "Does nothing happen when you attempt backups?"
4199
  msgstr ""
4200
 
@@ -4235,11 +4243,11 @@ msgstr ""
4235
  msgid "You can send a backup to more than one destination with an add-on."
4236
  msgstr ""
4237
 
4238
- #: src/admin.php:2744
4239
  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."
4240
  msgstr ""
4241
 
4242
- #: src/admin.php:2642
4243
  msgid "(%s%%, file %s of %s)"
4244
  msgstr ""
4245
 
@@ -4280,11 +4288,11 @@ msgstr ""
4280
  msgid "%s settings test result:"
4281
  msgstr ""
4282
 
4283
- #: src/admin.php:3474, src/admin.php:3476
4284
  msgid "(Not finished)"
4285
  msgstr ""
4286
 
4287
- #: src/admin.php:3476
4288
  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."
4289
  msgstr ""
4290
 
@@ -4296,73 +4304,73 @@ msgstr ""
4296
  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)."
4297
  msgstr ""
4298
 
4299
- #: src/admin.php:2739
4300
  msgid "Job ID: %s"
4301
  msgstr ""
4302
 
4303
- #: src/admin.php:2724
4304
  msgid "last activity: %ss ago"
4305
  msgstr ""
4306
 
4307
- #: src/admin.php:2723
4308
  msgid "next resumption: %d (after %ss)"
4309
  msgstr ""
4310
 
4311
- #: src/admin.php:2706, src/central/bootstrap.php:411,
4312
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4313
  #: src/methods/updraftvault.php:467
4314
  msgid "Unknown"
4315
  msgstr ""
4316
 
4317
- #: src/admin.php:2656
4318
  msgid "Backup finished"
4319
  msgstr ""
4320
 
4321
- #: src/admin.php:2651
4322
  msgid "Waiting until scheduled time to retry because of errors"
4323
  msgstr ""
4324
 
4325
- #: src/admin.php:2647
4326
  msgid "Pruning old backup sets"
4327
  msgstr ""
4328
 
4329
- #: src/admin.php:2635
4330
  msgid "Uploading files to remote storage"
4331
  msgstr ""
4332
 
4333
- #: src/admin.php:2704
4334
  msgid "Encrypted database"
4335
  msgstr ""
4336
 
4337
- #: src/admin.php:2696
4338
  msgid "Encrypting database"
4339
  msgstr ""
4340
 
4341
- #: src/admin.php:2670
4342
  msgid "Created database backup"
4343
  msgstr ""
4344
 
4345
- #: src/admin.php:2683
4346
  msgid "table: %s"
4347
  msgstr ""
4348
 
4349
- #: src/admin.php:2681
4350
  msgid "Creating database backup"
4351
  msgstr ""
4352
 
4353
- #: src/admin.php:2629
4354
  msgid "Created file backup zips"
4355
  msgstr ""
4356
 
4357
- #: src/admin.php:2616
4358
  msgid "Creating file backup zips"
4359
  msgstr ""
4360
 
4361
- #: src/admin.php:2611
4362
  msgid "Backup begun"
4363
  msgstr ""
4364
 
4365
- #: src/admin.php:2454
4366
  msgid "Backups in progress:"
4367
  msgstr ""
4368
 
@@ -4382,7 +4390,7 @@ msgstr ""
4382
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4383
  msgstr ""
4384
 
4385
- #: src/class-updraftplus.php:3118
4386
  msgid "The backup has not finished; a resumption is scheduled"
4387
  msgstr ""
4388
 
@@ -4396,7 +4404,7 @@ msgstr ""
4396
  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)."
4397
  msgstr ""
4398
 
4399
- #: src/admin.php:2277
4400
  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)."
4401
  msgstr ""
4402
 
@@ -4475,23 +4483,23 @@ msgstr ""
4475
  msgid "Support"
4476
  msgstr ""
4477
 
4478
- #: src/class-updraftplus.php:4769
4479
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4480
  msgstr ""
4481
 
4482
- #: src/class-updraftplus.php:4761
4483
  msgid "This database backup is missing core WordPress tables: %s"
4484
  msgstr ""
4485
 
4486
- #: src/class-updraftplus.php:4649
4487
  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."
4488
  msgstr ""
4489
 
4490
- #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4655
4491
  msgid "%s version: %s"
4492
  msgstr ""
4493
 
4494
- #: src/class-updraftplus.php:4565
4495
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4496
  msgstr ""
4497
 
@@ -4500,7 +4508,7 @@ msgstr ""
4500
  msgid "Be safe with an automatic backup"
4501
  msgstr ""
4502
 
4503
- #: src/admin.php:2229
4504
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4505
  msgstr ""
4506
 
@@ -4548,11 +4556,11 @@ msgstr ""
4548
  msgid "Delete from your web server"
4549
  msgstr ""
4550
 
4551
- #: src/admin.php:3444
4552
  msgid "You appear to be missing one or more archives from this multi-archive set."
4553
  msgstr ""
4554
 
4555
- #: src/admin.php:3441
4556
  msgid "(%d archive(s) in set)."
4557
  msgstr ""
4558
 
@@ -4572,7 +4580,7 @@ msgstr ""
4572
  msgid "Error: the server sent an empty response."
4573
  msgstr ""
4574
 
4575
- #: src/admin.php:1990
4576
  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?"
4577
  msgstr ""
4578
 
@@ -4608,7 +4616,7 @@ msgstr ""
4608
  msgid "No such backup set exists"
4609
  msgstr ""
4610
 
4611
- #: src/admin.php:1239
4612
  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"
4613
  msgstr ""
4614
 
@@ -4624,27 +4632,27 @@ msgstr ""
4624
  msgid "WordPress root directory server path: %s"
4625
  msgstr ""
4626
 
4627
- #: src/methods/s3.php:845
4628
  msgid "%s end-point"
4629
  msgstr ""
4630
 
4631
- #: src/methods/s3.php:807
4632
  msgid "... and many more!"
4633
  msgstr ""
4634
 
4635
- #: src/methods/s3generic.php:52, src/methods/s3generic.php:60
4636
  msgid "S3 (Compatible)"
4637
  msgstr ""
4638
 
4639
- #: src/admin.php:3758
4640
  msgid "File is not locally present - needs retrieving from remote storage"
4641
  msgstr ""
4642
 
4643
- #: src/admin.php:3745
4644
  msgid "Looking for %s archive: file name: %s"
4645
  msgstr ""
4646
 
4647
- #: src/admin.php:3706
4648
  msgid "Final checks"
4649
  msgstr ""
4650
 
@@ -4656,7 +4664,7 @@ msgstr ""
4656
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4657
  msgstr ""
4658
 
4659
- #: src/admin.php:3103
4660
  msgid "Your wp-content directory server path: %s"
4661
  msgstr ""
4662
 
@@ -4672,20 +4680,20 @@ msgstr ""
4672
  msgid "Processing files - please wait..."
4673
  msgstr ""
4674
 
4675
- #: src/admin.php:3904,
4676
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4677
  msgid "Please consult this FAQ for help on what to do about it."
4678
  msgstr ""
4679
 
4680
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4681
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4682
  msgstr ""
4683
 
4684
- #: src/class-updraftplus.php:4573
4685
  msgid "Failed to open database file."
4686
  msgstr ""
4687
 
4688
- #: src/admin.php:4329
4689
  msgid "Known backups (raw)"
4690
  msgstr ""
4691
 
@@ -4697,17 +4705,17 @@ msgstr ""
4697
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4698
  msgstr ""
4699
 
4700
- #: src/addons/migrator.php:333
4701
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4702
  msgstr ""
4703
 
4704
- #: src/admin.php:3778
4705
  msgid "file is size:"
4706
  msgstr ""
4707
 
4708
- #: src/addons/googlecloud.php:941, src/addons/migrator.php:371,
4709
- #: src/addons/migrator.php:374, src/addons/migrator.php:377, src/admin.php:945,
4710
- #: src/admin.php:2234, src/backup.php:3043, src/updraftplus.php:156
4711
  msgid "Go here for more information."
4712
  msgstr ""
4713
 
@@ -4715,7 +4723,7 @@ msgstr ""
4715
  msgid "Some files are still downloading or being processed - please wait."
4716
  msgstr ""
4717
 
4718
- #: src/class-updraftplus.php:4621, src/class-updraftplus.php:4639
4719
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4720
  msgstr ""
4721
 
@@ -4761,7 +4769,7 @@ msgstr ""
4761
 
4762
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4763
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4764
- #: src/methods/googledrive.php:1001, src/methods/openstack-base.php:420,
4765
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4766
  #: src/methods/stream-base.php:285
4767
  msgid "%s Error"
@@ -4785,25 +4793,25 @@ msgstr ""
4785
  msgid "%s authentication failed"
4786
  msgstr ""
4787
 
4788
- #: src/addons/googlecloud.php:432, src/addons/migrator.php:462,
4789
- #: src/admin.php:1935, src/admin.php:1982, src/admin.php:1990,
4790
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4791
- #: src/class-updraftplus.php:4544, src/class-updraftplus.php:4546,
4792
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4679,
4793
- #: src/class-updraftplus.php:4714, src/methods/googledrive.php:364,
4794
- #: src/methods/s3.php:316
4795
  msgid "Error: %s"
4796
  msgstr ""
4797
 
4798
- #: src/admin.php:3040
4799
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4800
  msgstr ""
4801
 
4802
- #: src/admin.php:3038
4803
  msgid "Backup directory specified does <b>not</b> exist."
4804
  msgstr ""
4805
 
4806
- #: src/admin.php:2751, src/admin.php:2994
4807
  msgid "Warning: %s"
4808
  msgstr ""
4809
 
@@ -4831,7 +4839,7 @@ msgstr ""
4831
  msgid "Warnings encountered:"
4832
  msgstr ""
4833
 
4834
- #: src/class-updraftplus.php:3106
4835
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4836
  msgstr ""
4837
 
@@ -4839,27 +4847,27 @@ msgstr ""
4839
  msgid "Your free disk space is very low - only %s Mb remain"
4840
  msgstr ""
4841
 
4842
- #: src/addons/migrator.php:470
4843
  msgid "New site:"
4844
  msgstr ""
4845
 
4846
- #: src/addons/migrator.php:445
4847
  msgid "Migrated site (from UpdraftPlus)"
4848
  msgstr ""
4849
 
4850
- #: src/addons/migrator.php:392
4851
  msgid "Enter details for where this new site is to live within your multisite install:"
4852
  msgstr ""
4853
 
4854
- #: src/addons/migrator.php:391
4855
  msgid "Information needed to continue:"
4856
  msgstr ""
4857
 
4858
- #: src/addons/migrator.php:348
4859
  msgid "Network activating theme:"
4860
  msgstr ""
4861
 
4862
- #: src/addons/migrator.php:338
4863
  msgid "Processed plugin:"
4864
  msgstr ""
4865
 
@@ -4871,15 +4879,15 @@ msgstr ""
4871
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4872
  msgstr ""
4873
 
4874
- #: src/methods/s3.php:821
4875
  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."
4876
  msgstr ""
4877
 
4878
- #: src/methods/s3.php:1073
4879
  msgid "Please check your access credentials."
4880
  msgstr ""
4881
 
4882
- #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1051
4883
  msgid "The error reported by %s was:"
4884
  msgstr ""
4885
 
@@ -4887,7 +4895,7 @@ msgstr ""
4887
  msgid "Please supply the requested information, and then continue."
4888
  msgstr ""
4889
 
4890
- #: src/class-updraftplus.php:4690, src/restorer.php:1706
4891
  msgid "Site information:"
4892
  msgstr ""
4893
 
@@ -4895,21 +4903,21 @@ msgstr ""
4895
  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."
4896
  msgstr ""
4897
 
4898
- #: src/addons/migrator.php:333, src/admin.php:2229,
4899
- #: src/class-updraftplus.php:4683, src/restorer.php:2033
4900
  msgid "Warning:"
4901
  msgstr ""
4902
 
4903
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4675,
4904
  #: src/restorer.php:154
4905
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4906
  msgstr ""
4907
 
4908
- #: src/admin.php:3733
4909
  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."
4910
  msgstr ""
4911
 
4912
- #: src/admin.php:3169, src/methods/updraftvault.php:286
4913
  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."
4914
  msgstr ""
4915
 
@@ -4964,7 +4972,7 @@ msgstr ""
4964
  msgid "Also delete from remote storage"
4965
  msgstr ""
4966
 
4967
- #: src/admin.php:2481
4968
  msgid "Latest UpdraftPlus.com news:"
4969
  msgstr ""
4970
 
@@ -4981,7 +4989,7 @@ msgstr ""
4981
  msgid "News"
4982
  msgstr ""
4983
 
4984
- #: src/admin.php:1409, src/includes/class-wpadmin-commands.php:465
4985
  msgid "Backup set not found"
4986
  msgstr ""
4987
 
@@ -5007,7 +5015,7 @@ msgstr ""
5007
  msgid "Testing %s Settings..."
5008
  msgstr ""
5009
 
5010
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
5011
  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."
5012
  msgstr ""
5013
 
@@ -5035,77 +5043,77 @@ msgstr ""
5035
  msgid "Store at"
5036
  msgstr ""
5037
 
5038
- #: src/addons/migrator.php:1380
5039
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5040
  msgstr ""
5041
 
5042
- #: src/addons/migrator.php:1258
5043
  msgid "rows: %d"
5044
  msgstr ""
5045
 
5046
- #: src/addons/migrator.php:1134
5047
  msgid "Time taken (seconds):"
5048
  msgstr ""
5049
 
5050
- #: src/addons/migrator.php:1133, src/admin.php:659
5051
  msgid "Errors:"
5052
  msgstr ""
5053
 
5054
- #: src/addons/migrator.php:1132
5055
  msgid "SQL update commands run:"
5056
  msgstr ""
5057
 
5058
- #: src/addons/migrator.php:1131
5059
  msgid "Changes made:"
5060
  msgstr ""
5061
 
5062
- #: src/addons/migrator.php:1130
5063
  msgid "Rows examined:"
5064
  msgstr ""
5065
 
5066
- #: src/addons/migrator.php:1129
5067
  msgid "Tables examined:"
5068
  msgstr ""
5069
 
5070
- #: src/addons/migrator.php:1018
5071
  msgid "Could not get list of tables"
5072
  msgstr ""
5073
 
5074
- #: src/addons/migrator.php:963
5075
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5076
  msgstr ""
5077
 
5078
- #: src/addons/migrator.php:952
5079
  msgid "Nothing to do: the site URL is already: %s"
5080
  msgstr ""
5081
 
5082
- #: src/addons/migrator.php:916, src/addons/migrator.php:920,
5083
- #: src/addons/migrator.php:924, src/addons/migrator.php:929,
5084
- #: src/addons/migrator.php:933, src/addons/migrator.php:938
5085
  msgid "Error: unexpected empty parameter (%s, %s)"
5086
  msgstr ""
5087
 
5088
- #: src/addons/migrator.php:876
5089
  msgid "Database: search and replace site URL"
5090
  msgstr ""
5091
 
5092
- #: src/addons/migrator.php:787, src/addons/migrator.php:1115
5093
  msgid "Failed: we did not understand the result returned by the %s operation."
5094
  msgstr ""
5095
 
5096
- #: src/addons/migrator.php:785, src/addons/migrator.php:1113
5097
  msgid "Failed: the %s operation was not able to start."
5098
  msgstr ""
5099
 
5100
- #: src/addons/migrator.php:550
5101
  msgid "(learn more)"
5102
  msgstr ""
5103
 
5104
- #: src/addons/migrator.php:550
5105
  msgid "Search and replace site location in the database (migrate)"
5106
  msgstr ""
5107
 
5108
- #: src/addons/migrator.php:550
5109
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5110
  msgstr ""
5111
 
@@ -5113,7 +5121,7 @@ msgstr ""
5113
  msgid "Blog uploads"
5114
  msgstr ""
5115
 
5116
- #: src/addons/migrator.php:377, src/addons/multisite.php:649
5117
  msgid "Must-use plugins"
5118
  msgstr ""
5119
 
@@ -5152,7 +5160,7 @@ msgstr ""
5152
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5153
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5154
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5155
- #: src/udaddons/options.php:132
5156
  msgid "Password"
5157
  msgstr ""
5158
 
@@ -5218,8 +5226,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
5218
  msgstr ""
5219
 
5220
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5221
- #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2805,
5222
- #: src/admin.php:2840, src/admin.php:2849, src/methods/addon-base-v2.php:289,
5223
  #: src/methods/stream-base.php:301
5224
  msgid "Failed"
5225
  msgstr ""
@@ -5244,7 +5252,7 @@ msgstr ""
5244
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5245
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5246
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5247
- #: src/methods/googledrive.php:167, src/methods/googledrive.php:169,
5248
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5249
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5250
  #: src/methods/stream-base.php:246
@@ -5312,96 +5320,96 @@ msgstr ""
5312
  msgid "You do not appear to be authenticated with Dropbox"
5313
  msgstr ""
5314
 
5315
- #: src/methods/s3.php:1068
5316
  msgid "The communication with %s was not encrypted."
5317
  msgstr ""
5318
 
5319
- #: src/methods/s3.php:1066
5320
  msgid "The communication with %s was encrypted."
5321
  msgstr ""
5322
 
5323
- #: src/addons/googlecloud.php:756, src/methods/s3.php:1063
5324
  msgid "We accessed the bucket, and were able to create files within it."
5325
  msgstr ""
5326
 
5327
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5328
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5329
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5330
  msgstr ""
5331
 
5332
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5333
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5334
  msgid "Failure"
5335
  msgstr ""
5336
 
5337
- #: src/methods/s3.php:1049
5338
  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)."
5339
  msgstr ""
5340
 
5341
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5342
- #: src/methods/s3.php:1043
5343
  msgid "Region"
5344
  msgstr ""
5345
 
5346
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5347
- #: src/methods/s3.php:1025
5348
  msgid "Failure: No bucket details were given."
5349
  msgstr ""
5350
 
5351
- #: src/methods/s3.php:1003
5352
  msgid "API secret"
5353
  msgstr ""
5354
 
5355
- #: src/methods/s3.php:882
5356
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5357
  msgstr ""
5358
 
5359
- #: src/methods/s3.php:881
5360
  msgid "%s location"
5361
  msgstr ""
5362
 
5363
- #: src/methods/s3.php:877
5364
  msgid "%s secret key"
5365
  msgstr ""
5366
 
5367
- #: src/methods/s3.php:873
5368
  msgid "%s access key"
5369
  msgstr ""
5370
 
5371
- #: src/methods/s3.php:838
5372
  msgid "If you see errors about SSL certificates, then please go here for help."
5373
  msgstr ""
5374
 
5375
- #: src/methods/s3.php:836
5376
  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."
5377
  msgstr ""
5378
 
5379
- #: src/methods/s3.php:457, src/methods/s3.php:569, src/methods/s3.php:641,
5380
- #: src/methods/s3.php:744
5381
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5382
  msgstr ""
5383
 
5384
- #: src/methods/s3.php:727, src/methods/s3.php:737, src/methods/s3.php:773
5385
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5386
  msgstr ""
5387
 
5388
- #: src/methods/s3.php:435
5389
  msgid "%s re-assembly error (%s): (see log file for more)"
5390
  msgstr ""
5391
 
5392
- #: src/methods/s3.php:431
5393
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5394
  msgstr ""
5395
 
5396
- #: src/methods/s3.php:415
5397
  msgid "%s chunk %s: upload failed"
5398
  msgstr ""
5399
 
5400
- #: src/methods/s3.php:405
5401
  msgid "%s error: file %s was shortened unexpectedly"
5402
  msgstr ""
5403
 
5404
- #: src/methods/s3.php:383
5405
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5406
  msgstr ""
5407
 
@@ -5432,11 +5440,11 @@ msgid "Username"
5432
  msgstr ""
5433
 
5434
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5435
- #: src/methods/s3.php:999
5436
  msgid "API key"
5437
  msgstr ""
5438
 
5439
- #: src/addons/migrator.php:286, src/addons/migrator.php:1872,
5440
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5441
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5442
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
@@ -5446,12 +5454,12 @@ msgstr ""
5446
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5447
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5448
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5449
- #: src/methods/s3.php:999, src/methods/s3.php:1003
5450
  msgid "Failure: No %s was given."
5451
  msgstr ""
5452
 
5453
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5454
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5455
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5456
  msgstr ""
5457
 
@@ -5490,7 +5498,7 @@ msgstr ""
5490
  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."
5491
  msgstr ""
5492
 
5493
- #: src/admin.php:735, src/methods/backup-module.php:242
5494
  msgid "Test %s Settings"
5495
  msgstr ""
5496
 
@@ -5506,13 +5514,13 @@ msgstr ""
5506
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5507
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5508
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5509
- #: src/methods/s3.php:351, src/methods/s3.php:363, src/methods/s3.php:364
5510
  msgid "%s Error: Failed to upload"
5511
  msgstr ""
5512
 
5513
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5514
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5515
- #: src/methods/googledrive.php:919, src/methods/googledrive.php:924
5516
  msgid "%s Error: Failed to open local file"
5517
  msgstr ""
5518
 
@@ -5528,87 +5536,87 @@ msgstr ""
5528
  msgid "Cloud Files authentication failed"
5529
  msgstr ""
5530
 
5531
- #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1152
5532
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5533
  msgstr ""
5534
 
5535
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5536
- #: src/methods/googledrive.php:1110
5537
  msgid "Client Secret"
5538
  msgstr ""
5539
 
5540
- #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1107
5541
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5542
  msgstr ""
5543
 
5544
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5545
- #: src/methods/googledrive.php:1106
5546
  msgid "Client ID"
5547
  msgstr ""
5548
 
5549
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5550
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5551
  msgstr ""
5552
 
5553
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5554
  msgid "Select 'Web Application' as the application type."
5555
  msgstr ""
5556
 
5557
- #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1088
5558
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5559
  msgstr ""
5560
 
5561
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5562
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5563
- #: src/methods/googledrive.php:1071, src/methods/openstack-base.php:531,
5564
- #: src/methods/s3.php:797, src/methods/stream-base.php:218
5565
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5566
  msgstr ""
5567
 
5568
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5569
- #: src/addons/googlecloud.php:783, src/methods/googledrive.php:526,
5570
- #: src/methods/googledrive.php:527, src/methods/googledrive.php:537,
5571
- #: src/methods/googledrive.php:538
5572
  msgid "Account is not authorized."
5573
  msgstr ""
5574
 
5575
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:496,
5576
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
5577
  #: src/methods/stream-base.php:200
5578
  msgid "Failed to upload to %s"
5579
  msgstr ""
5580
 
5581
- #: src/methods/googledrive.php:479
5582
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5583
  msgstr ""
5584
 
5585
- #: src/methods/googledrive.php:570, src/methods/googledrive.php:606
5586
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5587
  msgstr ""
5588
 
5589
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5590
- #: src/methods/googledrive.php:423
5591
  msgid "you have authenticated your %s account."
5592
  msgstr ""
5593
 
5594
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5595
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5596
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5597
- #: src/methods/googledrive.php:423, src/methods/openstack-base.php:495,
5598
- #: src/methods/s3.php:1063, src/methods/stream-base.php:312
5599
  msgid "Success"
5600
  msgstr ""
5601
 
5602
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5603
- #: src/methods/dropbox.php:693, src/methods/googledrive.php:397
5604
  msgid "Your %s quota usage: %s %% used, %s available"
5605
  msgstr ""
5606
 
5607
- #: src/addons/googlecloud.php:438, src/methods/googledrive.php:370
5608
  msgid "Authorization failed"
5609
  msgstr ""
5610
 
5611
- #: src/addons/googlecloud.php:430, src/methods/googledrive.php:362
5612
  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."
5613
  msgstr ""
5614
 
@@ -5634,8 +5642,8 @@ msgstr ""
5634
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5635
  msgstr ""
5636
 
5637
- #: src/addons/migrator.php:1767, src/admin.php:2808, src/admin.php:2842,
5638
- #: src/admin.php:2846, src/admin.php:3763, src/admin.php:3776,
5639
  #: src/restorer.php:2273, src/restorer.php:2378
5640
  msgid "OK"
5641
  msgstr ""
@@ -5644,7 +5652,7 @@ msgstr ""
5644
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5645
  msgstr ""
5646
 
5647
- #: src/addons/migrator.php:1146, src/restorer.php:2170
5648
  msgid "the database query being run was:"
5649
  msgstr ""
5650
 
@@ -5652,13 +5660,13 @@ msgstr ""
5652
  msgid "will restore as:"
5653
  msgstr ""
5654
 
5655
- #: src/class-updraftplus.php:4661, src/restorer.php:1688,
5656
  #: src/restorer.php:1777, src/restorer.php:1803
5657
  msgid "Old table prefix:"
5658
  msgstr ""
5659
 
5660
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5661
- #: src/backup.php:960, src/class-updraftplus.php:4616
5662
  msgid "Backup of:"
5663
  msgstr ""
5664
 
@@ -5730,60 +5738,60 @@ msgstr ""
5730
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5731
  msgstr ""
5732
 
5733
- #: src/admin.php:3784, src/admin.php:3785
5734
  msgid "Could not find one of the files for restoration"
5735
  msgstr ""
5736
 
5737
- #: src/admin.php:3894
5738
  msgid "Error message"
5739
  msgstr ""
5740
 
5741
- #: src/admin.php:3781
5742
  msgid "The backup records do not contain information about the proper size of this file."
5743
  msgstr ""
5744
 
5745
- #: src/admin.php:3773
5746
  msgid "Archive is expected to be size:"
5747
  msgstr ""
5748
 
5749
- #: src/admin.php:3657
5750
  msgid "If making a request for support, please include this information:"
5751
  msgstr ""
5752
 
5753
- #: src/admin.php:3656
5754
  msgid "ABORT: Could not find the information on which entities to restore."
5755
  msgstr ""
5756
 
5757
- #: src/admin.php:3610
5758
  msgid "UpdraftPlus Restoration: Progress"
5759
  msgstr ""
5760
 
5761
- #: src/admin.php:3562
5762
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5763
  msgstr ""
5764
 
5765
- #: src/admin.php:3504
5766
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5767
  msgstr ""
5768
 
5769
- #: src/admin.php:3513
5770
  msgid "Delete this backup set"
5771
  msgstr ""
5772
 
5773
- #: src/admin.php:3181
5774
  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."
5775
  msgstr ""
5776
 
5777
- #: src/admin.php:3178
5778
  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."
5779
  msgstr ""
5780
 
5781
- #: src/admin.php:3176
5782
  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)."
5783
  msgstr ""
5784
 
5785
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5786
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5787
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5788
  msgstr ""
5789
 
@@ -5819,23 +5827,23 @@ msgstr ""
5819
  msgid "Use the server's SSL certificates"
5820
  msgstr ""
5821
 
5822
- #: src/admin.php:3042
5823
  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."
5824
  msgstr ""
5825
 
5826
- #: src/admin.php:3042
5827
  msgid "click here"
5828
  msgstr ""
5829
 
5830
- #: src/admin.php:3042
5831
  msgid "or, to reset this option"
5832
  msgstr ""
5833
 
5834
- #: src/admin.php:3042
5835
  msgid "Follow this link to attempt to create the directory and set the permissions"
5836
  msgstr ""
5837
 
5838
- #: src/admin.php:3034
5839
  msgid "Backup directory specified is writable, which is good."
5840
  msgstr ""
5841
 
@@ -5875,7 +5883,7 @@ msgstr ""
5875
  msgid "Cancel"
5876
  msgstr ""
5877
 
5878
- #: src/addons/reporting.php:233, src/admin.php:3325
5879
  msgid "None"
5880
  msgstr ""
5881
 
@@ -5892,7 +5900,7 @@ msgid "Database encryption phrase"
5892
  msgstr ""
5893
 
5894
  #: src/templates/wp-admin/settings/form-contents.php:285,
5895
- #: src/udaddons/options.php:130
5896
  msgid "Email"
5897
  msgstr ""
5898
 
@@ -5900,11 +5908,11 @@ msgstr ""
5900
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5901
  msgstr ""
5902
 
5903
- #: src/addons/morefiles.php:443, src/admin.php:3112
5904
  msgid "Exclude these:"
5905
  msgstr ""
5906
 
5907
- #: src/admin.php:3103
5908
  msgid "Any other directories found inside wp-content"
5909
  msgstr ""
5910
 
@@ -5920,49 +5928,49 @@ msgstr ""
5920
  msgid "To fix the time at which a backup should take place,"
5921
  msgstr ""
5922
 
5923
- #: src/admin.php:3028
5924
  msgid "Monthly"
5925
  msgstr ""
5926
 
5927
- #: src/admin.php:3027
5928
  msgid "Fortnightly"
5929
  msgstr ""
5930
 
5931
- #: src/admin.php:3026
5932
  msgid "Weekly"
5933
  msgstr ""
5934
 
5935
- #: src/admin.php:3025
5936
  msgid "Daily"
5937
  msgstr ""
5938
 
5939
- #: src/admin.php:694, src/admin.php:3008
5940
  msgid "Download log file"
5941
  msgstr ""
5942
 
5943
- #: src/admin.php:2905
5944
  msgid "The folder exists, but your webserver does not have permission to write to it."
5945
  msgstr ""
5946
 
5947
- #: src/admin.php:2900
5948
  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"
5949
  msgstr ""
5950
 
5951
- #: src/admin.php:2886
5952
  msgid "The request to the filesystem to create the directory failed."
5953
  msgstr ""
5954
 
5955
- #: src/addons/migrator.php:2245, src/admin.php:688, src/admin.php:2802,
5956
- #: src/admin.php:2835, src/admin.php:3513,
5957
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5958
  msgid "Delete"
5959
  msgstr ""
5960
 
5961
- #: src/admin.php:2586
5962
  msgid "(None)"
5963
  msgstr ""
5964
 
5965
- #: src/admin.php:2742
5966
  msgid "show log"
5967
  msgstr ""
5968
 
@@ -6067,7 +6075,7 @@ msgstr ""
6067
  msgid "Multisite"
6068
  msgstr ""
6069
 
6070
- #: src/admin.php:2405
6071
  msgid "Go here for help."
6072
  msgstr ""
6073
 
@@ -6124,81 +6132,81 @@ msgstr ""
6124
  msgid "Download error: the server sent us a response which we did not understand."
6125
  msgstr ""
6126
 
6127
- #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:772,
6128
- #: src/addons/migrator.php:1018, src/addons/migrator.php:1099,
6129
- #: src/addons/migrator.php:1146, src/addons/migrator.php:1380,
6130
- #: src/addons/migrator.php:1706, src/addons/migrator.php:1733,
6131
- #: src/addons/migrator.php:1739, src/addons/migrator.php:1801,
6132
- #: src/addons/migrator.php:1841, src/addons/migrator.php:1880,
6133
- #: src/addons/migrator.php:1890, src/addons/migrator.php:1895,
6134
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6135
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6136
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6137
- #: src/admin.php:3778, src/admin.php:3808, src/methods/remotesend.php:71,
6138
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6139
  #: src/restorer.php:1408
6140
  msgid "Error:"
6141
  msgstr ""
6142
 
6143
  #: src/admin.php:653,
6144
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6145
  msgid "calculating..."
6146
  msgstr ""
6147
 
6148
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
6149
  msgid "UpdraftPlus - Upload backup files"
6150
  msgstr ""
6151
 
6152
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6153
  msgid "refresh"
6154
  msgstr ""
6155
 
6156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6157
  msgid "Web-server disk space in use by UpdraftPlus"
6158
  msgstr ""
6159
 
6160
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6161
  msgid "This is a count of the contents of your Updraft directory"
6162
  msgstr ""
6163
 
6164
- #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:167,
6165
- #: src/methods/googledrive.php:169, src/methods/googledrive.php:423,
6166
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:479,
6167
- #: src/methods/googledrive.php:486, src/methods/googledrive.php:496,
6168
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
6169
- #: src/methods/googledrive.php:1070, src/methods/googledrive.php:1082,
6170
- #: src/methods/googledrive.php:1082, src/methods/googledrive.php:1106,
6171
- #: src/methods/googledrive.php:1110, src/methods/googledrive.php:1122,
6172
- #: src/methods/googledrive.php:1132
6173
  msgid "Google Drive"
6174
  msgstr ""
6175
 
6176
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6177
  msgid "If you are using this, then turn Turbo/Road mode off."
6178
  msgstr ""
6179
 
6180
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6181
  msgid "Opera web browser"
6182
  msgstr ""
6183
 
6184
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:36
6185
  msgid "More tasks:"
6186
  msgstr ""
6187
 
6188
- #: src/admin.php:2505
6189
  msgid "Download most recently modified log file"
6190
  msgstr ""
6191
 
6192
- #: src/admin.php:2464, src/admin.php:2470, src/central/bootstrap.php:169
6193
  msgid "(Nothing yet logged)"
6194
  msgstr ""
6195
 
6196
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6197
- #: src/admin.php:2463, src/admin.php:2468
6198
  msgid "Last log message"
6199
  msgstr ""
6200
 
6201
- #: src/addons/migrator.php:224, src/admin.php:693, src/admin.php:3504,
6202
  #: src/templates/wp-admin/settings/tab-status.php:30
6203
  msgid "Restore"
6204
  msgstr ""
@@ -6208,9 +6216,9 @@ msgstr ""
6208
  msgid "Backup Now"
6209
  msgstr ""
6210
 
6211
- #: src/addons/migrator.php:1771, src/addons/moredatabase.php:247,
6212
- #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3300,
6213
- #: src/admin.php:3373, src/admin.php:3862,
6214
  #: src/includes/class-wpadmin-commands.php:147,
6215
  #: src/includes/class-wpadmin-commands.php:480,
6216
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
@@ -6218,7 +6226,7 @@ msgstr ""
6218
  msgid "Database"
6219
  msgstr ""
6220
 
6221
- #: src/admin.php:295, src/admin.php:4335
6222
  msgid "Files"
6223
  msgstr ""
6224
 
@@ -6246,15 +6254,15 @@ msgstr ""
6246
  msgid "JavaScript warning"
6247
  msgstr ""
6248
 
6249
- #: src/admin.php:673, src/admin.php:2532
6250
  msgid "Delete Old Directories"
6251
  msgstr ""
6252
 
6253
- #: src/admin.php:2277
6254
  msgid "Current limit is:"
6255
  msgstr ""
6256
 
6257
- #: src/admin.php:2251
6258
  msgid "Your backup has been restored."
6259
  msgstr ""
6260
 
@@ -6266,67 +6274,67 @@ msgstr ""
6266
  msgid "Lead developer's homepage"
6267
  msgstr ""
6268
 
6269
- #: src/admin.php:4255
6270
  msgid "Your settings have been wiped."
6271
  msgstr ""
6272
 
6273
- #: src/admin.php:2211
6274
  msgid "Backup directory successfully created."
6275
  msgstr ""
6276
 
6277
- #: src/admin.php:2204
6278
  msgid "Backup directory could not be created"
6279
  msgstr ""
6280
 
6281
- #: src/admin.php:2774
6282
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6283
  msgstr ""
6284
 
6285
- #: src/admin.php:2772
6286
  msgid "Old directories successfully removed."
6287
  msgstr ""
6288
 
6289
- #: src/admin.php:2769, src/admin.php:2769
6290
  msgid "Remove old directories"
6291
  msgstr ""
6292
 
6293
- #: src/addons/migrator.php:289, src/addons/migrator.php:304,
6294
- #: src/admin.php:2153, src/admin.php:2162, src/admin.php:2171,
6295
- #: src/admin.php:2213, src/admin.php:2776
6296
  msgid "Return to UpdraftPlus Configuration"
6297
  msgstr ""
6298
 
6299
- #: src/admin.php:666, src/admin.php:2153, src/admin.php:2162,
6300
- #: src/admin.php:2171, src/admin.php:2213, src/admin.php:2776,
6301
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6302
  msgid "Actions"
6303
  msgstr ""
6304
 
6305
- #: src/admin.php:2072
6306
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6307
  msgstr ""
6308
 
6309
- #: src/admin.php:1982
6310
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6311
  msgstr ""
6312
 
6313
- #: src/admin.php:1863
6314
  msgid "No local copy present."
6315
  msgstr ""
6316
 
6317
- #: src/admin.php:1860
6318
  msgid "Download in progress"
6319
  msgstr ""
6320
 
6321
- #: src/admin.php:665, src/admin.php:1849
6322
  msgid "File ready."
6323
  msgstr ""
6324
 
6325
- #: src/admin.php:1830
6326
  msgid "Download failed"
6327
  msgstr ""
6328
 
6329
- #: src/admin.php:663, src/admin.php:1609, src/admin.php:3761,
6330
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6331
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6332
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
@@ -6335,15 +6343,15 @@ msgstr ""
6335
  msgid "Error"
6336
  msgstr ""
6337
 
6338
- #: src/admin.php:1637
6339
  msgid "Could not find that job - perhaps it has already finished?"
6340
  msgstr ""
6341
 
6342
- #: src/admin.php:1629
6343
  msgid "Job deleted"
6344
  msgstr ""
6345
 
6346
- #: src/admin.php:1713
6347
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6348
  msgstr ""
6349
 
@@ -6368,12 +6376,12 @@ msgid "You have less than %s of free disk space on the disk which UpdraftPlus is
6368
  msgstr ""
6369
 
6370
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6371
- #: src/admin.php:957, src/admin.php:966, src/admin.php:3169,
6372
- #: src/admin.php:3176, src/admin.php:3178, src/methods/cloudfiles-new.php:107,
6373
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6374
- #: src/methods/openstack-base.php:541, src/methods/s3.php:821,
6375
- #: src/methods/s3.php:825, src/methods/updraftvault.php:286,
6376
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28,
6377
  #: src/udaddons/updraftplus-addons.php:242
6378
  msgid "Warning"
6379
  msgstr ""
@@ -6403,21 +6411,21 @@ msgstr ""
6403
  msgid "Like UpdraftPlus and can spare one minute?"
6404
  msgstr ""
6405
 
6406
- #: src/addons/azure.php:217, src/class-updraftplus.php:4340,
6407
- #: src/methods/googledrive.php:1001, src/methods/s3.php:316
6408
  msgid "File not found"
6409
  msgstr ""
6410
 
6411
- #: src/class-updraftplus.php:4247
6412
  msgid "The decryption key used:"
6413
  msgstr ""
6414
 
6415
- #: src/class-updraftplus.php:4247, src/class-updraftplus.php:4556,
6416
  #: src/restorer.php:389
6417
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6418
  msgstr ""
6419
 
6420
- #: src/class-updraftplus.php:4228, src/class-updraftplus.php:4544,
6421
  #: src/restorer.php:376
6422
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6423
  msgstr ""
@@ -6426,15 +6434,15 @@ msgstr ""
6426
  msgid "Could not open the backup file for writing"
6427
  msgstr ""
6428
 
6429
- #: src/class-updraftplus.php:3638
6430
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6431
  msgstr ""
6432
 
6433
- #: src/class-updraftplus.php:3604
6434
  msgid "Could not read the directory"
6435
  msgstr ""
6436
 
6437
- #: src/admin.php:1900, src/backup.php:1157
6438
  msgid "Backup directory (%s) is not writable, or does not exist."
6439
  msgstr ""
6440
 
@@ -6442,11 +6450,11 @@ msgstr ""
6442
  msgid "WordPress backup is complete"
6443
  msgstr ""
6444
 
6445
- #: src/class-updraftplus.php:3115
6446
  msgid "The backup attempt has finished, apparently unsuccessfully"
6447
  msgstr ""
6448
 
6449
- #: src/class-updraftplus.php:3100
6450
  msgid "The backup apparently succeeded and is now complete"
6451
  msgstr ""
6452
 
@@ -6478,7 +6486,7 @@ msgstr ""
6478
  msgid "No log files were found."
6479
  msgstr ""
6480
 
6481
- #: src/admin.php:1782, src/admin.php:1786, src/class-updraftplus.php:516
6482
  msgid "The log file could not be read."
6483
  msgstr ""
6484
 
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/class-updraftplus.php:4741
15
+ 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."
16
+ msgstr ""
17
+
18
+ #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
+ msgid "the migrator add-on"
20
+ msgstr ""
21
+
22
+ #: src/class-updraftplus.php:4739
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/class-updraftplus.php:4737
27
+ 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."
28
+ msgstr ""
29
+
30
+ #: src/class-updraftplus.php:4734
31
+ 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."
32
+ msgstr ""
33
+
34
+ #: src/methods/googledrive.php:1153
35
+ msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
36
+ msgstr ""
37
+
38
+ #: src/methods/googledrive.php:1149
39
+ msgid "Follow this link to remove this site's settings for %s."
40
+ msgstr ""
41
+
42
  #: src/addons/sftp.php:346
43
+ msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr ""
45
 
46
  #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr ""
49
 
50
+ #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr ""
54
 
55
+ #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr ""
69
  msgid "North-east Asia"
70
  msgstr ""
71
 
72
+ #: src/udaddons/options.php:118
73
+ 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"
74
  msgstr ""
75
 
76
  #: src/templates/wp-admin/settings/tab-status.php:80
97
  msgid "Select Files"
98
  msgstr ""
99
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  #: src/methods/cloudfiles.php:497
101
  msgid "Rackspace Storage Region"
102
  msgstr ""
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr ""
111
 
 
 
 
 
112
  #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr ""
115
 
116
+ #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr ""
119
 
120
+ #: src/admin.php:1540
 
 
 
 
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr ""
123
 
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr ""
135
 
136
+ #: src/templates/wp-admin/settings/existing-backups-table.php:70
137
  msgid "Stored at: %s"
138
  msgstr ""
139
 
141
  msgid "Cloud Files"
142
  msgstr ""
143
 
144
+ #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr ""
147
 
148
+ #: src/admin.php:4219
149
  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."
150
  msgstr ""
151
 
162
  msgid "Extra database"
163
  msgstr ""
164
 
165
+ #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr ""
168
 
206
  msgid "Skipped tables:"
207
  msgstr ""
208
 
209
+ #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr ""
212
 
213
+ #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr ""
216
 
217
+ #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr ""
220
 
714
  msgid "Backup of: %s"
715
  msgstr ""
716
 
717
+ #: src/methods/googledrive.php:248
718
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
719
  msgstr ""
720
 
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr ""
744
 
745
+ #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr ""
748
 
749
+ #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr ""
752
 
815
  msgid "An error response was received; HTTP code:"
816
  msgstr ""
817
 
818
+ #: src/includes/class-commands.php:322
819
  msgid "%s add-on not found"
820
  msgstr ""
821
 
827
  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"
828
  msgstr ""
829
 
830
+ #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr ""
833
 
834
+ #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr ""
837
 
867
  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."
868
  msgstr ""
869
 
870
+ #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr ""
873
 
874
+ #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr ""
877
 
919
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
920
  msgstr ""
921
 
922
+ #: src/addons/migrator.php:2218
923
  msgid "Create key"
924
  msgstr ""
925
 
926
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr ""
929
 
930
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr ""
933
 
934
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr ""
937
 
938
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr ""
941
 
942
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr ""
945
 
946
+ #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr ""
951
 
952
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr ""
955
 
956
+ #: src/addons/migrator.php:2208
957
  msgid "Enter your chosen name"
958
  msgstr ""
959
 
960
+ #: src/addons/migrator.php:2207
961
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
962
  msgstr ""
963
 
964
+ #: src/methods/googledrive.php:491
965
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
966
  msgstr ""
967
 
1001
  msgid "Now"
1002
  msgstr ""
1003
 
1004
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr ""
1007
 
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr ""
1125
 
1126
+ #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr ""
1129
 
1130
+ #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr ""
1133
 
1134
+ #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr ""
1137
 
1138
+ #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr ""
1141
 
1142
+ #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr ""
1145
 
1161
  msgid "this backup set"
1162
  msgstr ""
1163
 
1164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
1165
  msgid "calculate"
1166
  msgstr ""
1167
 
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr ""
1207
 
1208
+ #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr ""
1211
 
1212
+ #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr ""
1215
 
1216
+ #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr ""
1219
 
1220
+ #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr ""
1242
  msgid "Which site to restore"
1243
  msgstr ""
1244
 
1245
+ #: src/addons/migrator.php:514, src/addons/migrator.php:515
1246
  msgid "Error when creating new site at your chosen address:"
1247
  msgstr ""
1248
 
1249
+ #: src/addons/migrator.php:456
1250
  msgid "Required information for restoring this backup was not given (%s)"
1251
  msgstr ""
1252
 
1253
+ #: src/addons/migrator.php:415
1254
  msgid "Attribute imported content to user"
1255
  msgstr ""
1256
 
1257
+ #: src/addons/migrator.php:405, src/addons/migrator.php:407
1258
  msgid "You must use lower-case letters or numbers for the site path, only."
1259
  msgstr ""
1260
 
1261
+ #: src/addons/migrator.php:393
1262
  msgid "This feature is not compatible with %s"
1263
  msgstr ""
1264
 
1265
+ #: src/addons/migrator.php:391, src/addons/migrator.php:393
1266
  msgid "Importing a single site into a multisite install"
1267
  msgstr ""
1268
 
1269
+ #: src/addons/migrator.php:382
1270
  msgid "other content from wp-content"
1271
  msgstr ""
1272
 
1273
+ #: src/addons/migrator.php:379
1274
  msgid "WordPress core"
1275
  msgstr ""
1276
 
1277
+ #: src/addons/migrator.php:379, src/addons/migrator.php:382,
1278
+ #: src/addons/migrator.php:385
1279
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1280
  msgstr ""
1281
 
1283
  msgid "Call WordPress action:"
1284
  msgstr ""
1285
 
1286
+ #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr ""
1289
 
1290
+ #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr ""
1293
 
1319
  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)."
1320
  msgstr ""
1321
 
1322
+ #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr ""
1325
 
1326
+ #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr ""
1329
 
1330
+ #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr ""
1333
 
1334
+ #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr ""
1337
 
1338
+ #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr ""
1341
 
1342
+ #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr ""
1345
 
1346
+ #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr ""
1349
 
1350
+ #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr ""
1353
 
1354
+ #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr ""
1357
 
1358
+ #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr ""
1361
 
1362
+ #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr ""
1365
 
1366
+ #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr ""
1369
 
1371
  msgid "Premium / Extensions"
1372
  msgstr ""
1373
 
1374
+ #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr ""
1377
 
1518
  msgid "Could not access container"
1519
  msgstr ""
1520
 
1521
+ #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr ""
1524
 
1643
  msgid "Actions upon selected backups"
1644
  msgstr ""
1645
 
1646
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
1647
  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)."
1648
  msgstr ""
1649
 
1650
+ #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr ""
1653
 
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr ""
1701
 
1702
+ #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr ""
1705
 
1706
+ #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr ""
1709
 
1710
+ #: src/admin.php:2291
1711
  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."
1712
  msgstr ""
1713
 
1876
  msgstr ""
1877
 
1878
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
+ #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr ""
1882
 
1900
  msgid "Allow download"
1901
  msgstr ""
1902
 
1903
+ #: src/addons/migrator.php:1762
1904
  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."
1905
  msgstr ""
1906
 
1907
+ #: src/addons/migrator.php:1747, src/admin.php:709
1908
  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."
1909
  msgstr ""
1910
 
1911
+ #: src/addons/migrator.php:2250
1912
  msgid "Existing keys"
1913
  msgstr ""
1914
 
1915
+ #: src/addons/migrator.php:2241
1916
  msgid "No keys to allow remote sites to connect have yet been created."
1917
  msgstr ""
1918
 
1919
+ #: src/addons/migrator.php:2223
1920
  msgid "Your new key:"
1921
  msgstr ""
1922
 
1923
+ #: src/addons/migrator.php:2202
1924
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1925
  msgstr ""
1926
 
1927
+ #: src/addons/migrator.php:2184
1928
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1929
  msgstr ""
1930
 
1931
+ #: src/addons/migrator.php:2184
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr ""
1934
 
1935
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr ""
1938
 
1939
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr ""
1942
 
1943
+ #: src/addons/migrator.php:1849
1944
  msgid "A key with this name already exists; you must use a unique name."
1945
  msgstr ""
1946
 
1947
+ #: src/addons/migrator.php:1793
1948
  msgid "Also send this backup to the active remote storage locations"
1949
  msgstr ""
1950
 
1951
+ #: src/addons/migrator.php:1758
1952
  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."
1953
  msgstr ""
1954
 
1955
+ #: src/addons/migrator.php:1714
1956
  msgid "site not found"
1957
  msgstr ""
1958
 
1959
+ #: src/addons/migrator.php:1699
1960
  msgid "Backup data will be sent to:"
1961
  msgstr ""
1962
 
1963
+ #: src/addons/migrator.php:203
1964
  msgid "Restore an existing backup set onto this site"
1965
  msgstr ""
1966
 
1967
+ #: src/addons/migrator.php:196
1968
  msgid "This site has no backups to restore from yet."
1969
  msgstr ""
1970
 
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr ""
1978
 
1979
+ #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr ""
1982
 
1983
+ #: src/templates/wp-admin/settings/existing-backups-table.php:83
1984
  msgid "Site"
1985
  msgstr ""
1986
 
1987
+ #: src/templates/wp-admin/settings/existing-backups-table.php:82
1988
  msgid "Backup sent to remote site - not available for download."
1989
  msgstr ""
1990
 
1996
  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."
1997
  msgstr ""
1998
 
1999
+ #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr ""
2002
 
2016
  msgid "Creating..."
2017
  msgstr ""
2018
 
2019
+ #: src/addons/migrator.php:2201
2020
  msgid "Or, receive a backup from a remote site"
2021
  msgstr ""
2022
 
2023
+ #: src/addons/migrator.php:2190
2024
  msgid "Paste key here"
2025
  msgstr ""
2026
 
2027
+ #: src/addons/migrator.php:2184
2028
  msgid "How do I get a site's key?"
2029
  msgstr ""
2030
 
2031
+ #: src/addons/migrator.php:2184
2032
  msgid "To add a site as a destination for sending to, enter that site's key below."
2033
  msgstr ""
2034
 
2035
+ #: src/addons/migrator.php:2181
2036
  msgid "Or, send a backup to another site"
2037
  msgstr ""
2038
 
2039
+ #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr ""
2042
 
2043
+ #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr ""
2046
 
2047
+ #: src/addons/migrator.php:1938
2048
  msgid "No receiving sites have yet been added."
2049
  msgstr ""
2050
 
2051
+ #: src/addons/migrator.php:1919
2052
  msgid "It is for sending backups to the following site: "
2053
  msgstr ""
2054
 
2055
+ #: src/addons/migrator.php:1919
2056
  msgid "The key was successfully added."
2057
  msgstr ""
2058
 
2059
+ #: src/addons/migrator.php:1903
2060
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2061
  msgstr ""
2062
 
2063
+ #: src/addons/migrator.php:1892, src/addons/migrator.php:1894,
2064
+ #: src/addons/migrator.php:1898
2065
  msgid "The entered key was corrupt - please try again."
2066
  msgstr ""
2067
 
2068
+ #: src/addons/migrator.php:1890
2069
  msgid "The entered key was the wrong length - please try again."
2070
  msgstr ""
2071
 
2072
+ #: src/addons/migrator.php:1880
2073
  msgid "key"
2074
  msgstr ""
2075
 
2109
  msgid "Resetting..."
2110
  msgstr ""
2111
 
2112
+ #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr ""
2115
 
2117
  msgid "Adding..."
2118
  msgstr ""
2119
 
2120
+ #: src/udaddons/options.php:336
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr ""
2123
 
2137
  msgid "Go here to re-enter your password."
2138
  msgstr ""
2139
 
2140
+ #: src/addons/migrator.php:232
2141
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2142
  msgstr ""
2143
 
2144
+ #: src/addons/migrator.php:203
2145
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2146
  msgstr ""
2147
 
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr ""
2163
 
2164
+ #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr ""
2340
  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)"
2341
  msgstr ""
2342
 
2343
+ #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr ""
2346
 
2415
  msgid "(at same time as files backup)"
2416
  msgstr ""
2417
 
2418
+ #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr ""
2421
 
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr ""
2466
 
2467
+ #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
+ #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr ""
2471
 
2505
  msgid "Check this box to have a basic report sent to"
2506
  msgstr ""
2507
 
2508
+ #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr ""
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr ""
2525
 
2526
+ #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr ""
2529
 
2613
  msgid "(learn more about this significant option)"
2614
  msgstr ""
2615
 
2616
+ #: src/udaddons/options.php:278
2617
  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."
2618
  msgstr ""
2619
 
2620
+ #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr ""
2623
 
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr ""
2636
 
2637
+ #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr ""
2640
 
2642
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2643
  msgstr ""
2644
 
2645
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr ""
2648
 
2649
+ #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr ""
2653
 
2654
+ #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr ""
2657
 
2658
+ #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr ""
2661
 
2675
  msgid "Your label for this backup (optional)"
2676
  msgstr ""
2677
 
2678
+ #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1087
2679
  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."
2680
  msgstr ""
2681
 
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr ""
2697
 
2698
+ #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr ""
2701
 
2702
+ #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr ""
2705
 
2706
+ #: src/addons/migrator.php:1091
2707
  msgid "already done"
2708
  msgstr ""
2709
 
2710
+ #: src/addons/migrator.php:1048
2711
  msgid "skipped (not in list)"
2712
  msgstr ""
2713
 
2714
+ #: src/addons/migrator.php:1048, src/addons/migrator.php:1091,
2715
+ #: src/addons/migrator.php:1223
2716
  msgid "Search and replacing table:"
2717
  msgstr ""
2718
 
2719
+ #: src/addons/migrator.php:330
2720
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2721
  msgstr ""
2722
 
2723
+ #: src/addons/migrator.php:330
2724
  msgid "These tables only"
2725
  msgstr ""
2726
 
2727
+ #: src/addons/migrator.php:329
2728
  msgid "Rows per batch"
2729
  msgstr ""
2730
 
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr ""
2738
 
2739
+ #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr ""
2742
 
2743
+ #: src/class-updraftplus.php:4781
2744
  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."
2745
  msgstr ""
2746
 
2747
+ #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr ""
2750
 
2751
+ #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr ""
2754
 
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
+ #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr ""
2783
 
2784
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2785
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2786
  msgstr ""
2787
 
2788
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr ""
2791
 
2792
+ #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr ""
2795
 
2796
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr ""
2799
 
2800
+ #: src/admin.php:2964
2801
  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."
2802
  msgstr ""
2803
 
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr ""
2807
 
2808
+ #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr ""
2811
 
2812
+ #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr ""
2815
 
2829
  msgid "Memory limit"
2830
  msgstr ""
2831
 
2832
+ #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr ""
2835
 
2853
  msgid "Backup succeeded"
2854
  msgstr ""
2855
 
2856
+ #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr ""
2860
 
2861
+ #: src/addons/migrator.php:793, src/addons/migrator.php:795
2862
  msgid "search and replace"
2863
  msgstr ""
2864
 
2865
+ #: src/addons/migrator.php:332
2866
  msgid "Go"
2867
  msgstr ""
2868
 
2869
+ #: src/addons/migrator.php:321
2870
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2871
  msgstr ""
2872
 
2873
+ #: src/addons/migrator.php:320
2874
  msgid "This can easily destroy your site; so, use it with care!"
2875
  msgstr ""
2876
 
2877
+ #: src/addons/migrator.php:290, src/addons/migrator.php:328
2878
  msgid "Replace with"
2879
  msgstr ""
2880
 
2881
+ #: src/addons/migrator.php:289, src/addons/migrator.php:327
2882
  msgid "Search for"
2883
  msgstr ""
2884
 
2885
+ #: src/addons/migrator.php:288, src/addons/migrator.php:319,
2886
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2887
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2888
  msgid "Search / replace database"
2889
  msgstr ""
2890
 
2891
+ #: src/addons/migrator.php:294
2892
  msgid "search term"
2893
  msgstr ""
2894
 
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr ""
2906
 
2907
+ #: src/methods/googledrive.php:1095
2908
  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."
2909
  msgstr ""
2910
 
2911
+ #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr ""
2914
 
2928
  msgid "Free disk space in account:"
2929
  msgstr ""
2930
 
2931
+ #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr ""
2934
 
2935
+ #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
+ #: src/includes/deprecated-actions.php:29,
2937
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr ""
3027
  msgid "External database (%s)"
3028
  msgstr ""
3029
 
3030
+ #: src/methods/googledrive.php:1095
3031
  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."
3032
  msgstr ""
3033
 
3034
+ #: src/methods/googledrive.php:455
3035
  msgid "failed to access parent folder"
3036
  msgstr ""
3037
 
3038
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3039
+ #: src/addons/onedrive.php:773, src/methods/googledrive.php:408
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr ""
3042
 
3043
+ #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr ""
3046
 
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr ""
3074
 
3075
+ #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr ""
3078
 
3093
  msgid "database connection attempt failed."
3094
  msgstr ""
3095
 
3096
+ #: src/addons/migrator.php:979
3097
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3098
  msgstr ""
3099
 
3176
  msgid "Authenticate with %s"
3177
  msgstr ""
3178
 
3179
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr ""
3182
 
3204
  msgstr ""
3205
 
3206
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3207
+ #: src/methods/dropbox.php:546, src/methods/googledrive.php:1161
3208
  msgid "Account holder's name: %s."
3209
  msgstr ""
3210
 
3211
+ #: src/methods/googledrive.php:1139
3212
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3213
  msgstr ""
3214
 
3215
+ #: src/methods/googledrive.php:1130
3216
  msgid "It is an ID number internal to Google Drive"
3217
  msgstr ""
3218
 
3219
+ #: src/methods/googledrive.php:1130
3220
  msgid "<strong>This is NOT a folder name</strong>."
3221
  msgstr ""
3222
 
3223
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3224
+ #: src/methods/googledrive.php:1126, src/methods/googledrive.php:1136
3225
  msgid "Folder"
3226
  msgstr ""
3227
 
3228
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3229
+ #: src/methods/googledrive.php:1046
3230
  msgid "%s download: failed: file not found"
3231
  msgstr ""
3232
 
3233
+ #: src/addons/googlecloud.php:635, src/methods/googledrive.php:428
3234
  msgid "Name: %s."
3235
  msgstr ""
3236
 
3237
+ #: src/methods/googledrive.php:186
3238
  msgid "Google Drive list files: failed to access parent folder"
3239
  msgstr ""
3240
 
3259
  msgid "Fetch"
3260
  msgstr ""
3261
 
3262
+ #: src/addons/migrator.php:391,
3263
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
  #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr ""
3273
  msgid "Error - failed to download the file"
3274
  msgstr ""
3275
 
3276
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
3277
  msgid "Rescan local folder for new backup sets"
3278
  msgstr ""
3279
 
3293
  msgid "password/key"
3294
  msgstr ""
3295
 
3296
+ #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
+ #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr ""
3300
 
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr ""
3312
 
3313
+ #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr ""
3316
 
3317
+ #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr ""
3320
 
3321
+ #: src/addons/importer.php:276, src/admin.php:3470,
3322
+ #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr ""
3325
 
3326
+ #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr ""
3329
 
3330
+ #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr ""
3333
 
3334
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3335
  msgid "Rescan remote storage"
3336
  msgstr ""
3337
 
3338
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:39
3339
  msgid "Upload backup files"
3340
  msgstr ""
3341
 
3342
+ #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr ""
3345
 
3351
  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."
3352
  msgstr ""
3353
 
3354
+ #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr ""
3357
 
3359
  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."
3360
  msgstr ""
3361
 
3362
+ #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
3363
  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))."
3364
  msgstr ""
3365
 
3366
+ #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr ""
3389
  msgid "No settings were found"
3390
  msgstr ""
3391
 
3392
+ #: src/class-updraftplus.php:3100
3393
  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."
3394
  msgstr ""
3395
 
3415
  msgid "Remove"
3416
  msgstr ""
3417
 
3418
+ #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr ""
3421
 
3423
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3424
  msgstr ""
3425
 
3426
+ #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  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."
3428
  msgstr ""
3429
 
3430
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr ""
3434
 
3435
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr ""
3438
 
3452
  msgid "Backup created by:"
3453
  msgstr ""
3454
 
3455
+ #: src/udaddons/options.php:485
3456
  msgid "Available to claim on this site"
3457
  msgstr ""
3458
 
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr ""
3504
 
3505
+ #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr ""
3508
 
3509
+ #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr ""
3512
 
3513
+ #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr ""
3516
 
3543
  msgid "Errors occurred:"
3544
  msgstr ""
3545
 
3546
+ #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr ""
3549
 
3571
  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)"
3572
  msgstr ""
3573
 
3574
+ #: src/addons/migrator.php:261
3575
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3576
  msgstr ""
3577
 
3580
  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."
3581
  msgstr ""
3582
 
3583
+ #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr ""
3586
 
3740
  msgid "Authorisation failed (check your credentials)"
3741
  msgstr ""
3742
 
3743
+ #: src/methods/updraftvault.php:568, src/udaddons/options.php:270
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr ""
3746
 
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr ""
3758
 
3759
+ #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr ""
3762
 
3763
+ #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr ""
3766
 
3767
+ #: src/admin.php:2585
3768
  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."
3769
  msgstr ""
3770
 
3820
  msgid "Debugging information"
3821
  msgstr ""
3822
 
3823
+ #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr ""
3826
 
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
+ #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
3893
  msgstr ""
3894
 
3895
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
+ #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
+ #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr ""
3976
 
3977
+ #: src/udaddons/options.php:491
3978
  msgid "(or connect using the form on this page if you have already purchased it)"
3979
  msgstr ""
3980
 
3981
+ #: src/udaddons/options.php:477
3982
  msgid "please follow this link to update the plugin in order to activate it"
3983
  msgstr ""
3984
 
3985
+ #: src/udaddons/options.php:474
3986
  msgid "please follow this link to update the plugin in order to get it"
3987
  msgstr ""
3988
 
3989
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
3990
  msgid "latest"
3991
  msgstr ""
3992
 
3993
+ #: src/udaddons/options.php:462
3994
  msgid "Your version: %s"
3995
  msgstr ""
3996
 
3997
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
3998
  msgid "You've got it"
3999
  msgstr ""
4000
 
4001
+ #: src/udaddons/options.php:421
4002
  msgid "UpdraftPlus Support"
4003
  msgstr ""
4004
 
4005
+ #: src/udaddons/options.php:379
4006
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4007
  msgstr ""
4008
 
4009
+ #: src/udaddons/options.php:368, src/udaddons/updraftplus-addons.php:290
4010
  msgid "UpdraftPlus Addons"
4011
  msgstr ""
4012
 
4042
  msgid "Reporting"
4043
  msgstr ""
4044
 
4045
+ #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr ""
4048
 
4070
  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)"
4071
  msgstr ""
4072
 
4073
+ #: src/udaddons/options.php:556
4074
  msgid "Manage Addons"
4075
  msgstr ""
4076
 
4077
+ #: src/udaddons/options.php:492, src/udaddons/options.php:492
4078
  msgid "Buy It"
4079
  msgstr ""
4080
 
4081
+ #: src/udaddons/options.php:491
4082
  msgid "Get it from the UpdraftPlus.Com Store"
4083
  msgstr ""
4084
 
4085
+ #: src/udaddons/options.php:485, src/udaddons/options.php:487
4086
  msgid "activate it on this site"
4087
  msgstr ""
4088
 
4089
+ #: src/udaddons/options.php:487
4090
  msgid "You have an inactive purchase"
4091
  msgstr ""
4092
 
4093
+ #: src/udaddons/options.php:477
4094
  msgid "Assigned to this site"
4095
  msgstr ""
4096
 
4097
+ #: src/udaddons/options.php:474
4098
  msgid "Available for this site (via your all-addons purchase)"
4099
  msgstr ""
4100
 
4101
+ #: src/udaddons/options.php:468
4102
  msgid "(apparently a pre-release or withdrawn release)"
4103
  msgstr ""
4104
 
4105
+ #: src/udaddons/options.php:423
4106
  msgid "Go here"
4107
  msgstr ""
4108
 
4109
+ #: src/udaddons/options.php:423
4110
  msgid "Need to get support?"
4111
  msgstr ""
4112
 
4113
+ #: src/udaddons/options.php:405
4114
  msgid "An error occurred when trying to retrieve your add-ons."
4115
  msgstr ""
4116
 
4117
+ #: src/udaddons/options.php:338
4118
  msgid "An unknown response was received. Response was:"
4119
  msgstr ""
4120
 
4121
+ #: src/udaddons/options.php:337
4122
  msgid "Claim not granted - your account login details were wrong"
4123
  msgstr ""
4124
 
4125
+ #: src/udaddons/options.php:335
4126
  msgid "Please wait whilst we make the claim..."
4127
  msgstr ""
4128
 
4129
+ #: src/udaddons/options.php:288
4130
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4131
  msgstr ""
4132
 
4133
+ #: src/udaddons/options.php:281
4134
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr ""
4136
 
4137
+ #: src/udaddons/options.php:277
4138
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4139
  msgstr ""
4140
 
4141
+ #: src/udaddons/options.php:276
4142
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4143
  msgstr ""
4144
 
4145
+ #: src/udaddons/options.php:247
4146
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4147
  msgstr ""
4148
 
4149
+ #: src/udaddons/options.php:175
4150
  msgid "Forgotten your details?"
4151
  msgstr ""
4152
 
4153
+ #: src/udaddons/options.php:164
4154
  msgid "Not yet got an account (it's free)? Go get one!"
4155
  msgstr ""
4156
 
4157
+ #: src/udaddons/options.php:131
4158
  msgid "Connect with your UpdraftPlus.Com account"
4159
  msgstr ""
4160
 
4194
  msgid "Your web-server does not have the %s module installed."
4195
  msgstr ""
4196
 
4197
+ #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1148
4198
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4199
  msgstr ""
4200
 
4201
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:67
4202
  msgid "Drop backup files here"
4203
  msgstr ""
4204
 
4205
+ #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr ""
4208
 
4243
  msgid "You can send a backup to more than one destination with an add-on."
4244
  msgstr ""
4245
 
4246
+ #: src/admin.php:2803
4247
  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."
4248
  msgstr ""
4249
 
4250
+ #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr ""
4253
 
4288
  msgid "%s settings test result:"
4289
  msgstr ""
4290
 
4291
+ #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr ""
4294
 
4295
+ #: src/admin.php:3542
4296
  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."
4297
  msgstr ""
4298
 
4304
  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)."
4305
  msgstr ""
4306
 
4307
+ #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr ""
4310
 
4311
+ #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr ""
4314
 
4315
+ #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr ""
4318
 
4319
+ #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr ""
4324
 
4325
+ #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr ""
4328
 
4329
+ #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr ""
4332
 
4333
+ #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr ""
4336
 
4337
+ #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr ""
4340
 
4341
+ #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr ""
4344
 
4345
+ #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr ""
4348
 
4349
+ #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr ""
4352
 
4353
+ #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr ""
4356
 
4357
+ #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr ""
4360
 
4361
+ #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr ""
4364
 
4365
+ #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr ""
4368
 
4369
+ #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr ""
4372
 
4373
+ #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr ""
4376
 
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr ""
4392
 
4393
+ #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr ""
4396
 
4404
  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)."
4405
  msgstr ""
4406
 
4407
+ #: src/admin.php:2336
4408
  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)."
4409
  msgstr ""
4410
 
4483
  msgid "Support"
4484
  msgstr ""
4485
 
4486
+ #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr ""
4489
 
4490
+ #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr ""
4493
 
4494
+ #: src/class-updraftplus.php:4774
4495
  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."
4496
  msgstr ""
4497
 
4498
+ #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr ""
4501
 
4502
+ #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr ""
4505
 
4508
  msgid "Be safe with an automatic backup"
4509
  msgstr ""
4510
 
4511
+ #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr ""
4514
 
4556
  msgid "Delete from your web server"
4557
  msgstr ""
4558
 
4559
+ #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr ""
4562
 
4563
+ #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr ""
4566
 
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr ""
4582
 
4583
+ #: src/admin.php:2049
4584
  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?"
4585
  msgstr ""
4586
 
4616
  msgid "No such backup set exists"
4617
  msgstr ""
4618
 
4619
+ #: src/admin.php:1291
4620
  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"
4621
  msgstr ""
4622
 
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr ""
4634
 
4635
+ #: src/methods/s3.php:851
4636
  msgid "%s end-point"
4637
  msgstr ""
4638
 
4639
+ #: src/methods/s3.php:813
4640
  msgid "... and many more!"
4641
  msgstr ""
4642
 
4643
+ #: src/methods/s3generic.php:52, src/methods/s3generic.php:61
4644
  msgid "S3 (Compatible)"
4645
  msgstr ""
4646
 
4647
+ #: src/admin.php:1205
4648
  msgid "File is not locally present - needs retrieving from remote storage"
4649
  msgstr ""
4650
 
4651
+ #: src/admin.php:3810
4652
  msgid "Looking for %s archive: file name: %s"
4653
  msgstr ""
4654
 
4655
+ #: src/admin.php:3771
4656
  msgid "Final checks"
4657
  msgstr ""
4658
 
4664
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4665
  msgstr ""
4666
 
4667
+ #: src/admin.php:3162
4668
  msgid "Your wp-content directory server path: %s"
4669
  msgstr ""
4670
 
4680
  msgid "Processing files - please wait..."
4681
  msgstr ""
4682
 
4683
+ #: src/admin.php:3956,
4684
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4685
  msgid "Please consult this FAQ for help on what to do about it."
4686
  msgstr ""
4687
 
4688
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4689
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4690
  msgstr ""
4691
 
4692
+ #: src/class-updraftplus.php:4682
4693
  msgid "Failed to open database file."
4694
  msgstr ""
4695
 
4696
+ #: src/admin.php:4382
4697
  msgid "Known backups (raw)"
4698
  msgstr ""
4699
 
4705
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4706
  msgstr ""
4707
 
4708
+ #: src/addons/migrator.php:341
4709
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4710
  msgstr ""
4711
 
4712
+ #: src/admin.php:3830
4713
  msgid "file is size:"
4714
  msgstr ""
4715
 
4716
+ #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4717
+ #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:945,
4718
+ #: src/admin.php:2293, src/backup.php:3043, src/updraftplus.php:156
4719
  msgid "Go here for more information."
4720
  msgstr ""
4721
 
4723
  msgid "Some files are still downloading or being processed - please wait."
4724
  msgstr ""
4725
 
4726
+ #: src/class-updraftplus.php:4746, src/class-updraftplus.php:4764
4727
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4728
  msgstr ""
4729
 
4769
 
4770
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4771
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4772
+ #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:420,
4773
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4774
  #: src/methods/stream-base.php:285
4775
  msgid "%s Error"
4793
  msgid "%s authentication failed"
4794
  msgstr ""
4795
 
4796
+ #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4797
+ #: src/admin.php:1994, src/admin.php:2041, src/admin.php:2049,
4798
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4799
+ #: src/class-updraftplus.php:4653, src/class-updraftplus.php:4655,
4800
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4804,
4801
+ #: src/class-updraftplus.php:4839, src/methods/googledrive.php:369,
4802
+ #: src/methods/s3.php:321
4803
  msgid "Error: %s"
4804
  msgstr ""
4805
 
4806
+ #: src/admin.php:3099
4807
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4808
  msgstr ""
4809
 
4810
+ #: src/admin.php:3097
4811
  msgid "Backup directory specified does <b>not</b> exist."
4812
  msgstr ""
4813
 
4814
+ #: src/admin.php:2810, src/admin.php:3053
4815
  msgid "Warning: %s"
4816
  msgstr ""
4817
 
4839
  msgid "Warnings encountered:"
4840
  msgstr ""
4841
 
4842
+ #: src/class-updraftplus.php:3194
4843
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4844
  msgstr ""
4845
 
4847
  msgid "Your free disk space is very low - only %s Mb remain"
4848
  msgstr ""
4849
 
4850
+ #: src/addons/migrator.php:478
4851
  msgid "New site:"
4852
  msgstr ""
4853
 
4854
+ #: src/addons/migrator.php:453
4855
  msgid "Migrated site (from UpdraftPlus)"
4856
  msgstr ""
4857
 
4858
+ #: src/addons/migrator.php:400
4859
  msgid "Enter details for where this new site is to live within your multisite install:"
4860
  msgstr ""
4861
 
4862
+ #: src/addons/migrator.php:399
4863
  msgid "Information needed to continue:"
4864
  msgstr ""
4865
 
4866
+ #: src/addons/migrator.php:356
4867
  msgid "Network activating theme:"
4868
  msgstr ""
4869
 
4870
+ #: src/addons/migrator.php:346
4871
  msgid "Processed plugin:"
4872
  msgstr ""
4873
 
4879
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4880
  msgstr ""
4881
 
4882
+ #: src/methods/s3.php:827
4883
  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."
4884
  msgstr ""
4885
 
4886
+ #: src/methods/s3.php:1082
4887
  msgid "Please check your access credentials."
4888
  msgstr ""
4889
 
4890
+ #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1060
4891
  msgid "The error reported by %s was:"
4892
  msgstr ""
4893
 
4895
  msgid "Please supply the requested information, and then continue."
4896
  msgstr ""
4897
 
4898
+ #: src/class-updraftplus.php:4815, src/restorer.php:1706
4899
  msgid "Site information:"
4900
  msgstr ""
4901
 
4903
  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."
4904
  msgstr ""
4905
 
4906
+ #: src/addons/migrator.php:341, src/admin.php:2288,
4907
+ #: src/class-updraftplus.php:4808, src/restorer.php:2033
4908
  msgid "Warning:"
4909
  msgstr ""
4910
 
4911
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4800,
4912
  #: src/restorer.php:154
4913
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4914
  msgstr ""
4915
 
4916
+ #: src/admin.php:3798
4917
  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."
4918
  msgstr ""
4919
 
4920
+ #: src/admin.php:3228, src/methods/updraftvault.php:286
4921
  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."
4922
  msgstr ""
4923
 
4972
  msgid "Also delete from remote storage"
4973
  msgstr ""
4974
 
4975
+ #: src/admin.php:2540
4976
  msgid "Latest UpdraftPlus.com news:"
4977
  msgstr ""
4978
 
4989
  msgid "News"
4990
  msgstr ""
4991
 
4992
+ #: src/admin.php:1469, src/includes/class-wpadmin-commands.php:465
4993
  msgid "Backup set not found"
4994
  msgstr ""
4995
 
5015
  msgid "Testing %s Settings..."
5016
  msgstr ""
5017
 
5018
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
5019
  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."
5020
  msgstr ""
5021
 
5043
  msgid "Store at"
5044
  msgstr ""
5045
 
5046
+ #: src/addons/migrator.php:1388
5047
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5048
  msgstr ""
5049
 
5050
+ #: src/addons/migrator.php:1266
5051
  msgid "rows: %d"
5052
  msgstr ""
5053
 
5054
+ #: src/addons/migrator.php:1142
5055
  msgid "Time taken (seconds):"
5056
  msgstr ""
5057
 
5058
+ #: src/addons/migrator.php:1141, src/admin.php:659
5059
  msgid "Errors:"
5060
  msgstr ""
5061
 
5062
+ #: src/addons/migrator.php:1140
5063
  msgid "SQL update commands run:"
5064
  msgstr ""
5065
 
5066
+ #: src/addons/migrator.php:1139
5067
  msgid "Changes made:"
5068
  msgstr ""
5069
 
5070
+ #: src/addons/migrator.php:1138
5071
  msgid "Rows examined:"
5072
  msgstr ""
5073
 
5074
+ #: src/addons/migrator.php:1137
5075
  msgid "Tables examined:"
5076
  msgstr ""
5077
 
5078
+ #: src/addons/migrator.php:1026
5079
  msgid "Could not get list of tables"
5080
  msgstr ""
5081
 
5082
+ #: src/addons/migrator.php:971
5083
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5084
  msgstr ""
5085
 
5086
+ #: src/addons/migrator.php:960
5087
  msgid "Nothing to do: the site URL is already: %s"
5088
  msgstr ""
5089
 
5090
+ #: src/addons/migrator.php:924, src/addons/migrator.php:928,
5091
+ #: src/addons/migrator.php:932, src/addons/migrator.php:937,
5092
+ #: src/addons/migrator.php:941, src/addons/migrator.php:946
5093
  msgid "Error: unexpected empty parameter (%s, %s)"
5094
  msgstr ""
5095
 
5096
+ #: src/addons/migrator.php:884
5097
  msgid "Database: search and replace site URL"
5098
  msgstr ""
5099
 
5100
+ #: src/addons/migrator.php:795, src/addons/migrator.php:1123
5101
  msgid "Failed: we did not understand the result returned by the %s operation."
5102
  msgstr ""
5103
 
5104
+ #: src/addons/migrator.php:793, src/addons/migrator.php:1121
5105
  msgid "Failed: the %s operation was not able to start."
5106
  msgstr ""
5107
 
5108
+ #: src/addons/migrator.php:558
5109
  msgid "(learn more)"
5110
  msgstr ""
5111
 
5112
+ #: src/addons/migrator.php:558
5113
  msgid "Search and replace site location in the database (migrate)"
5114
  msgstr ""
5115
 
5116
+ #: src/addons/migrator.php:558
5117
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5118
  msgstr ""
5119
 
5121
  msgid "Blog uploads"
5122
  msgstr ""
5123
 
5124
+ #: src/addons/migrator.php:385, src/addons/multisite.php:649
5125
  msgid "Must-use plugins"
5126
  msgstr ""
5127
 
5160
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5161
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5162
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5163
+ #: src/udaddons/options.php:135
5164
  msgid "Password"
5165
  msgstr ""
5166
 
5226
  msgstr ""
5227
 
5228
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5229
+ #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2864,
5230
+ #: src/admin.php:2899, src/admin.php:2908, src/methods/addon-base-v2.php:289,
5231
  #: src/methods/stream-base.php:301
5232
  msgid "Failed"
5233
  msgstr ""
5252
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5253
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5254
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5255
+ #: src/methods/googledrive.php:172, src/methods/googledrive.php:174,
5256
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5257
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5258
  #: src/methods/stream-base.php:246
5320
  msgid "You do not appear to be authenticated with Dropbox"
5321
  msgstr ""
5322
 
5323
+ #: src/methods/s3.php:1077
5324
  msgid "The communication with %s was not encrypted."
5325
  msgstr ""
5326
 
5327
+ #: src/methods/s3.php:1075
5328
  msgid "The communication with %s was encrypted."
5329
  msgstr ""
5330
 
5331
+ #: src/addons/googlecloud.php:756, src/methods/s3.php:1072
5332
  msgid "We accessed the bucket, and were able to create files within it."
5333
  msgstr ""
5334
 
5335
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5336
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5337
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5338
  msgstr ""
5339
 
5340
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5341
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5342
  msgid "Failure"
5343
  msgstr ""
5344
 
5345
+ #: src/methods/s3.php:1058
5346
  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)."
5347
  msgstr ""
5348
 
5349
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5350
+ #: src/methods/s3.php:1052
5351
  msgid "Region"
5352
  msgstr ""
5353
 
5354
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5355
+ #: src/methods/s3.php:1034
5356
  msgid "Failure: No bucket details were given."
5357
  msgstr ""
5358
 
5359
+ #: src/methods/s3.php:1012
5360
  msgid "API secret"
5361
  msgstr ""
5362
 
5363
+ #: src/methods/s3.php:888
5364
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5365
  msgstr ""
5366
 
5367
+ #: src/methods/s3.php:887
5368
  msgid "%s location"
5369
  msgstr ""
5370
 
5371
+ #: src/methods/s3.php:883
5372
  msgid "%s secret key"
5373
  msgstr ""
5374
 
5375
+ #: src/methods/s3.php:879
5376
  msgid "%s access key"
5377
  msgstr ""
5378
 
5379
+ #: src/methods/s3.php:844
5380
  msgid "If you see errors about SSL certificates, then please go here for help."
5381
  msgstr ""
5382
 
5383
+ #: src/methods/s3.php:842
5384
  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."
5385
  msgstr ""
5386
 
5387
+ #: src/methods/s3.php:462, src/methods/s3.php:574, src/methods/s3.php:646,
5388
+ #: src/methods/s3.php:749
5389
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5390
  msgstr ""
5391
 
5392
+ #: src/methods/s3.php:732, src/methods/s3.php:742, src/methods/s3.php:778
5393
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5394
  msgstr ""
5395
 
5396
+ #: src/methods/s3.php:440
5397
  msgid "%s re-assembly error (%s): (see log file for more)"
5398
  msgstr ""
5399
 
5400
+ #: src/methods/s3.php:436
5401
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5402
  msgstr ""
5403
 
5404
+ #: src/methods/s3.php:420
5405
  msgid "%s chunk %s: upload failed"
5406
  msgstr ""
5407
 
5408
+ #: src/methods/s3.php:410
5409
  msgid "%s error: file %s was shortened unexpectedly"
5410
  msgstr ""
5411
 
5412
+ #: src/methods/s3.php:388
5413
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5414
  msgstr ""
5415
 
5440
  msgstr ""
5441
 
5442
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5443
+ #: src/methods/s3.php:1008
5444
  msgid "API key"
5445
  msgstr ""
5446
 
5447
+ #: src/addons/migrator.php:294, src/addons/migrator.php:1880,
5448
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5449
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5450
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5454
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5455
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5456
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5457
+ #: src/methods/s3.php:1008, src/methods/s3.php:1012
5458
  msgid "Failure: No %s was given."
5459
  msgstr ""
5460
 
5461
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5462
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5463
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5464
  msgstr ""
5465
 
5498
  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."
5499
  msgstr ""
5500
 
5501
+ #: src/admin.php:735, src/methods/backup-module.php:247
5502
  msgid "Test %s Settings"
5503
  msgstr ""
5504
 
5514
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5515
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5516
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5517
+ #: src/methods/s3.php:356, src/methods/s3.php:368, src/methods/s3.php:369
5518
  msgid "%s Error: Failed to upload"
5519
  msgstr ""
5520
 
5521
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5522
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5523
+ #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5524
  msgid "%s Error: Failed to open local file"
5525
  msgstr ""
5526
 
5536
  msgid "Cloud Files authentication failed"
5537
  msgstr ""
5538
 
5539
+ #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1166
5540
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5541
  msgstr ""
5542
 
5543
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5544
+ #: src/methods/googledrive.php:1114
5545
  msgid "Client Secret"
5546
  msgstr ""
5547
 
5548
+ #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1111
5549
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5550
  msgstr ""
5551
 
5552
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5553
+ #: src/methods/googledrive.php:1110
5554
  msgid "Client ID"
5555
  msgstr ""
5556
 
5557
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5558
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5559
  msgstr ""
5560
 
5561
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5562
  msgid "Select 'Web Application' as the application type."
5563
  msgstr ""
5564
 
5565
+ #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1093
5566
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5567
  msgstr ""
5568
 
5569
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5570
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5571
+ #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:531,
5572
+ #: src/methods/s3.php:802, src/methods/stream-base.php:218
5573
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5574
  msgstr ""
5575
 
5576
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5577
+ #: src/addons/googlecloud.php:783, src/methods/googledrive.php:531,
5578
+ #: src/methods/googledrive.php:532, src/methods/googledrive.php:542,
5579
+ #: src/methods/googledrive.php:543
5580
  msgid "Account is not authorized."
5581
  msgstr ""
5582
 
5583
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:501,
5584
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
5585
  #: src/methods/stream-base.php:200
5586
  msgid "Failed to upload to %s"
5587
  msgstr ""
5588
 
5589
+ #: src/methods/googledrive.php:484
5590
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5591
  msgstr ""
5592
 
5593
+ #: src/methods/googledrive.php:575, src/methods/googledrive.php:611
5594
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5595
  msgstr ""
5596
 
5597
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5598
+ #: src/methods/googledrive.php:428
5599
  msgid "you have authenticated your %s account."
5600
  msgstr ""
5601
 
5602
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5603
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5604
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5605
+ #: src/methods/googledrive.php:428, src/methods/openstack-base.php:495,
5606
+ #: src/methods/s3.php:1072, src/methods/stream-base.php:312
5607
  msgid "Success"
5608
  msgstr ""
5609
 
5610
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5611
+ #: src/methods/dropbox.php:693, src/methods/googledrive.php:402
5612
  msgid "Your %s quota usage: %s %% used, %s available"
5613
  msgstr ""
5614
 
5615
+ #: src/addons/googlecloud.php:438, src/methods/googledrive.php:375
5616
  msgid "Authorization failed"
5617
  msgstr ""
5618
 
5619
+ #: src/addons/googlecloud.php:430, src/methods/googledrive.php:367
5620
  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."
5621
  msgstr ""
5622
 
5642
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5643
  msgstr ""
5644
 
5645
+ #: src/addons/migrator.php:1775, src/admin.php:1233, src/admin.php:2867,
5646
+ #: src/admin.php:2901, src/admin.php:2905, src/admin.php:3828,
5647
  #: src/restorer.php:2273, src/restorer.php:2378
5648
  msgid "OK"
5649
  msgstr ""
5652
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5653
  msgstr ""
5654
 
5655
+ #: src/addons/migrator.php:1154, src/restorer.php:2170
5656
  msgid "the database query being run was:"
5657
  msgstr ""
5658
 
5660
  msgid "will restore as:"
5661
  msgstr ""
5662
 
5663
+ #: src/class-updraftplus.php:4786, src/restorer.php:1688,
5664
  #: src/restorer.php:1777, src/restorer.php:1803
5665
  msgid "Old table prefix:"
5666
  msgstr ""
5667
 
5668
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5669
+ #: src/backup.php:960, src/class-updraftplus.php:4725
5670
  msgid "Backup of:"
5671
  msgstr ""
5672
 
5738
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5739
  msgstr ""
5740
 
5741
+ #: src/admin.php:3836, src/admin.php:3837
5742
  msgid "Could not find one of the files for restoration"
5743
  msgstr ""
5744
 
5745
+ #: src/admin.php:3946
5746
  msgid "Error message"
5747
  msgstr ""
5748
 
5749
+ #: src/admin.php:3833
5750
  msgid "The backup records do not contain information about the proper size of this file."
5751
  msgstr ""
5752
 
5753
+ #: src/admin.php:3825
5754
  msgid "Archive is expected to be size:"
5755
  msgstr ""
5756
 
5757
+ #: src/admin.php:3722
5758
  msgid "If making a request for support, please include this information:"
5759
  msgstr ""
5760
 
5761
+ #: src/admin.php:3721
5762
  msgid "ABORT: Could not find the information on which entities to restore."
5763
  msgstr ""
5764
 
5765
+ #: src/admin.php:3676
5766
  msgid "UpdraftPlus Restoration: Progress"
5767
  msgstr ""
5768
 
5769
+ #: src/admin.php:3628
5770
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5771
  msgstr ""
5772
 
5773
+ #: src/admin.php:3570
5774
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5775
  msgstr ""
5776
 
5777
+ #: src/admin.php:3579
5778
  msgid "Delete this backup set"
5779
  msgstr ""
5780
 
5781
+ #: src/admin.php:3240
5782
  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."
5783
  msgstr ""
5784
 
5785
+ #: src/admin.php:3237
5786
  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."
5787
  msgstr ""
5788
 
5789
+ #: src/admin.php:3235
5790
  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)."
5791
  msgstr ""
5792
 
5793
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5794
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5795
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5796
  msgstr ""
5797
 
5827
  msgid "Use the server's SSL certificates"
5828
  msgstr ""
5829
 
5830
+ #: src/admin.php:3101
5831
  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."
5832
  msgstr ""
5833
 
5834
+ #: src/admin.php:3101
5835
  msgid "click here"
5836
  msgstr ""
5837
 
5838
+ #: src/admin.php:3101
5839
  msgid "or, to reset this option"
5840
  msgstr ""
5841
 
5842
+ #: src/admin.php:3101
5843
  msgid "Follow this link to attempt to create the directory and set the permissions"
5844
  msgstr ""
5845
 
5846
+ #: src/admin.php:3093
5847
  msgid "Backup directory specified is writable, which is good."
5848
  msgstr ""
5849
 
5883
  msgid "Cancel"
5884
  msgstr ""
5885
 
5886
+ #: src/addons/reporting.php:233, src/admin.php:3384
5887
  msgid "None"
5888
  msgstr ""
5889
 
5900
  msgstr ""
5901
 
5902
  #: src/templates/wp-admin/settings/form-contents.php:285,
5903
+ #: src/udaddons/options.php:133
5904
  msgid "Email"
5905
  msgstr ""
5906
 
5908
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5909
  msgstr ""
5910
 
5911
+ #: src/addons/morefiles.php:443, src/admin.php:3171
5912
  msgid "Exclude these:"
5913
  msgstr ""
5914
 
5915
+ #: src/admin.php:3162
5916
  msgid "Any other directories found inside wp-content"
5917
  msgstr ""
5918
 
5928
  msgid "To fix the time at which a backup should take place,"
5929
  msgstr ""
5930
 
5931
+ #: src/admin.php:3087
5932
  msgid "Monthly"
5933
  msgstr ""
5934
 
5935
+ #: src/admin.php:3086
5936
  msgid "Fortnightly"
5937
  msgstr ""
5938
 
5939
+ #: src/admin.php:3085
5940
  msgid "Weekly"
5941
  msgstr ""
5942
 
5943
+ #: src/admin.php:3084
5944
  msgid "Daily"
5945
  msgstr ""
5946
 
5947
+ #: src/admin.php:694, src/admin.php:3067
5948
  msgid "Download log file"
5949
  msgstr ""
5950
 
5951
+ #: src/admin.php:2964
5952
  msgid "The folder exists, but your webserver does not have permission to write to it."
5953
  msgstr ""
5954
 
5955
+ #: src/admin.php:2959
5956
  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"
5957
  msgstr ""
5958
 
5959
+ #: src/admin.php:2945
5960
  msgid "The request to the filesystem to create the directory failed."
5961
  msgstr ""
5962
 
5963
+ #: src/addons/migrator.php:2253, src/admin.php:688, src/admin.php:2861,
5964
+ #: src/admin.php:2894, src/admin.php:3579,
5965
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5966
  msgid "Delete"
5967
  msgstr ""
5968
 
5969
+ #: src/admin.php:2645
5970
  msgid "(None)"
5971
  msgstr ""
5972
 
5973
+ #: src/admin.php:2801
5974
  msgid "show log"
5975
  msgstr ""
5976
 
6075
  msgid "Multisite"
6076
  msgstr ""
6077
 
6078
+ #: src/admin.php:2464
6079
  msgid "Go here for help."
6080
  msgstr ""
6081
 
6132
  msgid "Download error: the server sent us a response which we did not understand."
6133
  msgstr ""
6134
 
6135
+ #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:780,
6136
+ #: src/addons/migrator.php:1026, src/addons/migrator.php:1107,
6137
+ #: src/addons/migrator.php:1154, src/addons/migrator.php:1388,
6138
+ #: src/addons/migrator.php:1714, src/addons/migrator.php:1741,
6139
+ #: src/addons/migrator.php:1747, src/addons/migrator.php:1809,
6140
+ #: src/addons/migrator.php:1849, src/addons/migrator.php:1888,
6141
+ #: src/addons/migrator.php:1898, src/addons/migrator.php:1903,
6142
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6143
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6144
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6145
+ #: src/admin.php:3830, src/admin.php:3860, src/methods/remotesend.php:71,
6146
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6147
  #: src/restorer.php:1408
6148
  msgid "Error:"
6149
  msgstr ""
6150
 
6151
  #: src/admin.php:653,
6152
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6153
  msgid "calculating..."
6154
  msgstr ""
6155
 
6156
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:56
6157
  msgid "UpdraftPlus - Upload backup files"
6158
  msgstr ""
6159
 
6160
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6161
  msgid "refresh"
6162
  msgstr ""
6163
 
6164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6165
  msgid "Web-server disk space in use by UpdraftPlus"
6166
  msgstr ""
6167
 
6168
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6169
  msgid "This is a count of the contents of your Updraft directory"
6170
  msgstr ""
6171
 
6172
+ #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:172,
6173
+ #: src/methods/googledrive.php:174, src/methods/googledrive.php:428,
6174
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:484,
6175
+ #: src/methods/googledrive.php:491, src/methods/googledrive.php:501,
6176
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
6177
+ #: src/methods/googledrive.php:1075, src/methods/googledrive.php:1087,
6178
+ #: src/methods/googledrive.php:1087, src/methods/googledrive.php:1110,
6179
+ #: src/methods/googledrive.php:1114, src/methods/googledrive.php:1126,
6180
+ #: src/methods/googledrive.php:1136, src/methods/googledrive.php:1149
6181
  msgid "Google Drive"
6182
  msgstr ""
6183
 
6184
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6185
  msgid "If you are using this, then turn Turbo/Road mode off."
6186
  msgstr ""
6187
 
6188
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6189
  msgid "Opera web browser"
6190
  msgstr ""
6191
 
6192
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:35
6193
  msgid "More tasks:"
6194
  msgstr ""
6195
 
6196
+ #: src/admin.php:2564
6197
  msgid "Download most recently modified log file"
6198
  msgstr ""
6199
 
6200
+ #: src/admin.php:2523, src/admin.php:2529, src/central/bootstrap.php:169
6201
  msgid "(Nothing yet logged)"
6202
  msgstr ""
6203
 
6204
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6205
+ #: src/admin.php:2522, src/admin.php:2527
6206
  msgid "Last log message"
6207
  msgstr ""
6208
 
6209
+ #: src/addons/migrator.php:232, src/admin.php:693, src/admin.php:3570,
6210
  #: src/templates/wp-admin/settings/tab-status.php:30
6211
  msgid "Restore"
6212
  msgstr ""
6216
  msgid "Backup Now"
6217
  msgstr ""
6218
 
6219
+ #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6220
+ #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3359,
6221
+ #: src/admin.php:3439, src/admin.php:3914,
6222
  #: src/includes/class-wpadmin-commands.php:147,
6223
  #: src/includes/class-wpadmin-commands.php:480,
6224
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
6226
  msgid "Database"
6227
  msgstr ""
6228
 
6229
+ #: src/admin.php:295, src/admin.php:4388
6230
  msgid "Files"
6231
  msgstr ""
6232
 
6254
  msgid "JavaScript warning"
6255
  msgstr ""
6256
 
6257
+ #: src/admin.php:673, src/admin.php:2591
6258
  msgid "Delete Old Directories"
6259
  msgstr ""
6260
 
6261
+ #: src/admin.php:2336
6262
  msgid "Current limit is:"
6263
  msgstr ""
6264
 
6265
+ #: src/admin.php:2310
6266
  msgid "Your backup has been restored."
6267
  msgstr ""
6268
 
6274
  msgid "Lead developer's homepage"
6275
  msgstr ""
6276
 
6277
+ #: src/admin.php:4308
6278
  msgid "Your settings have been wiped."
6279
  msgstr ""
6280
 
6281
+ #: src/admin.php:2270
6282
  msgid "Backup directory successfully created."
6283
  msgstr ""
6284
 
6285
+ #: src/admin.php:2263
6286
  msgid "Backup directory could not be created"
6287
  msgstr ""
6288
 
6289
+ #: src/admin.php:2833
6290
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6291
  msgstr ""
6292
 
6293
+ #: src/admin.php:2831
6294
  msgid "Old directories successfully removed."
6295
  msgstr ""
6296
 
6297
+ #: src/admin.php:2828, src/admin.php:2828
6298
  msgid "Remove old directories"
6299
  msgstr ""
6300
 
6301
+ #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6302
+ #: src/admin.php:2212, src/admin.php:2221, src/admin.php:2230,
6303
+ #: src/admin.php:2272, src/admin.php:2835
6304
  msgid "Return to UpdraftPlus Configuration"
6305
  msgstr ""
6306
 
6307
+ #: src/admin.php:666, src/admin.php:2212, src/admin.php:2221,
6308
+ #: src/admin.php:2230, src/admin.php:2272, src/admin.php:2835,
6309
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6310
  msgid "Actions"
6311
  msgstr ""
6312
 
6313
+ #: src/admin.php:2131
6314
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6315
  msgstr ""
6316
 
6317
+ #: src/admin.php:2041
6318
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6319
  msgstr ""
6320
 
6321
+ #: src/admin.php:1922
6322
  msgid "No local copy present."
6323
  msgstr ""
6324
 
6325
+ #: src/admin.php:1919
6326
  msgid "Download in progress"
6327
  msgstr ""
6328
 
6329
+ #: src/admin.php:665, src/admin.php:1908
6330
  msgid "File ready."
6331
  msgstr ""
6332
 
6333
+ #: src/admin.php:1889
6334
  msgid "Download failed"
6335
  msgstr ""
6336
 
6337
+ #: src/admin.php:663, src/admin.php:1241, src/admin.php:1668,
6338
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6339
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6340
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6343
  msgid "Error"
6344
  msgstr ""
6345
 
6346
+ #: src/admin.php:1696
6347
  msgid "Could not find that job - perhaps it has already finished?"
6348
  msgstr ""
6349
 
6350
+ #: src/admin.php:1688
6351
  msgid "Job deleted"
6352
  msgstr ""
6353
 
6354
+ #: src/admin.php:1772
6355
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6356
  msgstr ""
6357
 
6376
  msgstr ""
6377
 
6378
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6379
+ #: src/admin.php:957, src/admin.php:966, src/admin.php:3228,
6380
+ #: src/admin.php:3235, src/admin.php:3237, src/methods/cloudfiles-new.php:107,
6381
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6382
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:827,
6383
+ #: src/methods/s3.php:831, src/methods/updraftvault.php:286,
6384
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6385
  #: src/udaddons/updraftplus-addons.php:242
6386
  msgid "Warning"
6387
  msgstr ""
6411
  msgid "Like UpdraftPlus and can spare one minute?"
6412
  msgstr ""
6413
 
6414
+ #: src/addons/azure.php:217, src/class-updraftplus.php:4449,
6415
+ #: src/methods/googledrive.php:1006, src/methods/s3.php:321
6416
  msgid "File not found"
6417
  msgstr ""
6418
 
6419
+ #: src/class-updraftplus.php:4356
6420
  msgid "The decryption key used:"
6421
  msgstr ""
6422
 
6423
+ #: src/class-updraftplus.php:4356, src/class-updraftplus.php:4665,
6424
  #: src/restorer.php:389
6425
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6426
  msgstr ""
6427
 
6428
+ #: src/class-updraftplus.php:4337, src/class-updraftplus.php:4653,
6429
  #: src/restorer.php:376
6430
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6431
  msgstr ""
6434
  msgid "Could not open the backup file for writing"
6435
  msgstr ""
6436
 
6437
+ #: src/class-updraftplus.php:3731
6438
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6439
  msgstr ""
6440
 
6441
+ #: src/class-updraftplus.php:3691
6442
  msgid "Could not read the directory"
6443
  msgstr ""
6444
 
6445
+ #: src/admin.php:1959, src/backup.php:1157
6446
  msgid "Backup directory (%s) is not writable, or does not exist."
6447
  msgstr ""
6448
 
6450
  msgid "WordPress backup is complete"
6451
  msgstr ""
6452
 
6453
+ #: src/class-updraftplus.php:3203
6454
  msgid "The backup attempt has finished, apparently unsuccessfully"
6455
  msgstr ""
6456
 
6457
+ #: src/class-updraftplus.php:3188
6458
  msgid "The backup apparently succeeded and is now complete"
6459
  msgstr ""
6460
 
6486
  msgid "No log files were found."
6487
  msgstr ""
6488
 
6489
+ #: src/admin.php:1841, src/admin.php:1845, src/class-updraftplus.php:516
6490
  msgid "The log file could not be read."
6491
  msgstr ""
6492
 
languages/updraftplus-ar.po CHANGED
@@ -11,20 +11,48 @@ msgstr ""
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/addons/sftp.php:346
15
- msgid "UpdraftPlus debug mode is on: detailed debugging data follows.n"
16
  msgstr ""
17
 
18
  #: src/admin.php:740
19
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
20
  msgstr ""
21
 
22
- #: src/admin.php:1234, src/admin.php:3881, src/class-updraftplus.php:2095,
23
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
24
  msgid "A PHP fatal error (%s) has occurred: %s"
25
  msgstr ""
26
 
27
- #: src/admin.php:1227, src/admin.php:3873, src/class-updraftplus.php:2088,
28
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
29
  msgid "A PHP exception (%s) has occurred: %s"
30
  msgstr ""
@@ -41,8 +69,8 @@ msgstr ""
41
  msgid "North-east Asia"
42
  msgstr ""
43
 
44
- #: src/udaddons/options.php:115
45
- msgid "Your web server's version of PHP is too old (.phpversion.) - 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"
46
  msgstr ""
47
 
48
  #: src/templates/wp-admin/settings/tab-status.php:80
@@ -69,18 +97,6 @@ msgstr ""
69
  msgid "Select Files"
70
  msgstr ""
71
 
72
- #: src/methods/updraftvault.php:346
73
- msgid "__Password"
74
- msgstr ""
75
-
76
- #: src/methods/updraftvault.php:345
77
- msgid "__E-mail"
78
- msgstr ""
79
-
80
- #: src/methods/openstack-base.php:420
81
- msgid "Error downloading remote file: Failed to download. (.$e->getMessage.)"
82
- msgstr ""
83
-
84
  #: src/methods/cloudfiles.php:497
85
  msgid "Rackspace Storage Region"
86
  msgstr ""
@@ -93,23 +109,15 @@ msgstr ""
93
  msgid "Instant and secure logon with a wave of your phone."
94
  msgstr ""
95
 
96
- #: src/class-updraftplus.php:946
97
- msgid "$pre_line"
98
- msgstr ""
99
-
100
  #: src/backup.php:1907
101
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
102
  msgstr ""
103
 
104
- #: src/admin.php:4362
105
  msgid "Value"
106
  msgstr ""
107
 
108
- #: src/admin.php:3543
109
- msgid "No backup log)"
110
- msgstr ""
111
-
112
- #: src/admin.php:1479
113
  msgid "Did not know how to delete from this cloud service."
114
  msgstr ""
115
 
@@ -125,7 +133,7 @@ msgstr ""
125
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
126
  msgstr ""
127
 
128
- #: src/templates/wp-admin/settings/existing-backups-table.php:69
129
  msgid "Stored at: %s"
130
  msgstr ""
131
 
@@ -133,11 +141,11 @@ msgstr ""
133
  msgid "Cloud Files"
134
  msgstr ""
135
 
136
- #: src/admin.php:4207
137
  msgid "Your settings failed to save. Please refresh the settings page and try again"
138
  msgstr ""
139
 
140
- #: src/admin.php:4166
141
  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."
142
  msgstr ""
143
 
@@ -154,7 +162,7 @@ msgstr ""
154
  msgid "Extra database"
155
  msgstr ""
156
 
157
- #: src/admin.php:3436
158
  msgid "Press here to download or browse"
159
  msgstr ""
160
 
@@ -198,15 +206,15 @@ msgstr ""
198
  msgid "Skipped tables:"
199
  msgstr ""
200
 
201
- #: src/class-updraftplus.php:4764
202
  msgid "This database backup has the following WordPress tables excluded: %s"
203
  msgstr ""
204
 
205
- #: src/admin.php:2422
206
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
207
  msgstr ""
208
 
209
- #: src/admin.php:2422
210
  msgid "All WordPress tables will be backed up."
211
  msgstr ""
212
 
@@ -706,7 +714,7 @@ msgstr ""
706
  msgid "Backup of: %s"
707
  msgstr ""
708
 
709
- #: src/methods/googledrive.php:243
710
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
711
  msgstr ""
712
 
@@ -734,11 +742,11 @@ msgstr ""
734
  msgid "You have selected a remote storage option which has an authorization step to complete:"
735
  msgstr ""
736
 
737
- #: src/admin.php:1531
738
  msgid "Remote files deleted:"
739
  msgstr ""
740
 
741
- #: src/admin.php:1530
742
  msgid "Local files deleted:"
743
  msgstr ""
744
 
@@ -807,7 +815,7 @@ msgstr ""
807
  msgid "An error response was received; HTTP code:"
808
  msgstr ""
809
 
810
- #: src/includes/class-commands.php:325
811
  msgid "%s add-on not found"
812
  msgstr ""
813
 
@@ -819,11 +827,11 @@ msgstr ""
819
  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"
820
  msgstr ""
821
 
822
- #: src/admin.php:2247
823
  msgid "To fix this problem go here."
824
  msgstr ""
825
 
826
- #: src/admin.php:2247
827
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
828
  msgstr ""
829
 
@@ -859,11 +867,11 @@ msgstr ""
859
  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."
860
  msgstr ""
861
 
862
- #: src/methods/s3.php:1052
863
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
864
  msgstr ""
865
 
866
- #: src/methods/s3.php:120
867
  msgid "No settings were found - please go to the Settings tab and check your settings"
868
  msgstr ""
869
 
@@ -911,49 +919,49 @@ msgstr ""
911
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
912
  msgstr ""
913
 
914
- #: src/addons/migrator.php:2210
915
  msgid "Create key"
916
  msgstr ""
917
 
918
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:513
919
  msgid "slower, strongest"
920
  msgstr ""
921
 
922
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
923
  msgid "recommended"
924
  msgstr "موصى به"
925
 
926
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
927
  msgid "%s bytes"
928
  msgstr ""
929
 
930
- #: src/addons/migrator.php:2205, src/central/bootstrap.php:511
931
  msgid "faster (possibility for slow PHP installs)"
932
  msgstr ""
933
 
934
- #: src/addons/migrator.php:2204, src/central/bootstrap.php:510
935
  msgid "easy to break, fastest"
936
  msgstr ""
937
 
938
- #: src/addons/migrator.php:2204, src/addons/migrator.php:2205,
939
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:510,
940
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
941
  msgid "%s bits"
942
  msgstr ""
943
 
944
- #: src/addons/migrator.php:2202, src/central/bootstrap.php:508
945
  msgid "Encryption key size:"
946
  msgstr ""
947
 
948
- #: src/addons/migrator.php:2200
949
  msgid "Enter your chosen name"
950
  msgstr ""
951
 
952
- #: src/addons/migrator.php:2199
953
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
954
  msgstr ""
955
 
956
- #: src/methods/googledrive.php:486
957
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
958
  msgstr ""
959
 
@@ -993,7 +1001,7 @@ msgstr ""
993
  msgid "Now"
994
  msgstr "الآن"
995
 
996
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
997
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
998
  msgstr ""
999
 
@@ -1115,23 +1123,23 @@ msgstr ""
1115
  msgid "UpdraftCentral Connection"
1116
  msgstr ""
1117
 
1118
- #: src/backup.php:867, src/class-updraftplus.php:3094
1119
  msgid "The backup was aborted by the user"
1120
  msgstr ""
1121
 
1122
- #: src/admin.php:4202
1123
  msgid "Your settings have been saved."
1124
  msgstr "تم حفظ إعداداتك."
1125
 
1126
- #: src/admin.php:3330
1127
  msgid "Total backup size:"
1128
  msgstr ""
1129
 
1130
- #: src/admin.php:2744
1131
  msgid "stop"
1132
  msgstr "توقف"
1133
 
1134
- #: src/admin.php:2582
1135
  msgid "The backup has finished running"
1136
  msgstr ""
1137
 
@@ -1153,7 +1161,7 @@ msgstr ""
1153
  msgid "this backup set"
1154
  msgstr ""
1155
 
1156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
1157
  msgid "calculate"
1158
  msgstr ""
1159
 
@@ -1197,19 +1205,19 @@ msgstr ""
1197
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1198
  msgstr ""
1199
 
1200
- #: src/class-updraftplus.php:4679, src/restorer.php:1700
1201
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1202
  msgstr ""
1203
 
1204
- #: src/class-updraftplus.php:4675
1205
  msgid "Please read this link for important information on this process."
1206
  msgstr ""
1207
 
1208
- #: src/class-updraftplus.php:4675
1209
  msgid "It will be imported as a new site."
1210
  msgstr ""
1211
 
1212
- #: src/admin.php:2395, src/templates/wp-admin/notices/horizontal-notice.php:16,
1213
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1214
  msgid "Dismiss"
1215
  msgstr "رفض"
@@ -1234,40 +1242,40 @@ msgstr ""
1234
  msgid "Which site to restore"
1235
  msgstr ""
1236
 
1237
- #: src/addons/migrator.php:506, src/addons/migrator.php:507
1238
  msgid "Error when creating new site at your chosen address:"
1239
  msgstr ""
1240
 
1241
- #: src/addons/migrator.php:448
1242
  msgid "Required information for restoring this backup was not given (%s)"
1243
  msgstr ""
1244
 
1245
- #: src/addons/migrator.php:407
1246
  msgid "Attribute imported content to user"
1247
  msgstr ""
1248
 
1249
- #: src/addons/migrator.php:397, src/addons/migrator.php:399
1250
  msgid "You must use lower-case letters or numbers for the site path, only."
1251
  msgstr ""
1252
 
1253
- #: src/addons/migrator.php:385
1254
  msgid "This feature is not compatible with %s"
1255
  msgstr ""
1256
 
1257
- #: src/addons/migrator.php:383, src/addons/migrator.php:385
1258
  msgid "Importing a single site into a multisite install"
1259
  msgstr ""
1260
 
1261
- #: src/addons/migrator.php:374
1262
  msgid "other content from wp-content"
1263
  msgstr ""
1264
 
1265
- #: src/addons/migrator.php:371
1266
  msgid "WordPress core"
1267
  msgstr ""
1268
 
1269
- #: src/addons/migrator.php:371, src/addons/migrator.php:374,
1270
- #: src/addons/migrator.php:377
1271
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1272
  msgstr ""
1273
 
@@ -1275,11 +1283,11 @@ msgstr ""
1275
  msgid "Call WordPress action:"
1276
  msgstr ""
1277
 
1278
- #: src/admin.php:2430
1279
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1280
  msgstr ""
1281
 
1282
- #: src/admin.php:3748
1283
  msgid "Skipping: this archive was already restored."
1284
  msgstr ""
1285
 
@@ -1311,51 +1319,51 @@ msgstr ""
1311
  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)."
1312
  msgstr ""
1313
 
1314
- #: src/admin.php:4079
1315
  msgid "Send this backup to remote storage"
1316
  msgstr ""
1317
 
1318
- #: src/admin.php:4077
1319
  msgid "Check out UpdraftPlus Vault."
1320
  msgstr ""
1321
 
1322
- #: src/admin.php:4077
1323
  msgid "Not got any remote storage?"
1324
  msgstr ""
1325
 
1326
- #: src/admin.php:4077
1327
  msgid "settings"
1328
  msgstr "إعدادات"
1329
 
1330
- #: src/admin.php:4077
1331
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1332
  msgstr ""
1333
 
1334
- #: src/admin.php:2428
1335
  msgid "Include any files in the backup"
1336
  msgstr ""
1337
 
1338
- #: src/admin.php:2414
1339
  msgid "Include the database in the backup"
1340
  msgstr ""
1341
 
1342
- #: src/admin.php:2394
1343
  msgid "Continue restoration"
1344
  msgstr ""
1345
 
1346
- #: src/admin.php:2389
1347
  msgid "You have an unfinished restoration operation, begun %s ago."
1348
  msgstr ""
1349
 
1350
- #: src/admin.php:2388
1351
  msgid "Unfinished restoration"
1352
  msgstr ""
1353
 
1354
- #: src/admin.php:2386
1355
  msgid "%s minutes, %s seconds"
1356
  msgstr ""
1357
 
1358
- #: src/admin.php:2333
1359
  msgid "Backup Contents And Schedule"
1360
  msgstr ""
1361
 
@@ -1363,7 +1371,7 @@ msgstr ""
1363
  msgid "Premium / Extensions"
1364
  msgstr ""
1365
 
1366
- #: src/admin.php:2113, src/admin.php:2122
1367
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1368
  msgstr ""
1369
 
@@ -1510,7 +1518,7 @@ msgstr ""
1510
  msgid "Could not access container"
1511
  msgstr ""
1512
 
1513
- #: src/class-updraftplus.php:3111
1514
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1515
  msgstr ""
1516
 
@@ -1635,11 +1643,11 @@ msgstr ""
1635
  msgid "Actions upon selected backups"
1636
  msgstr ""
1637
 
1638
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
1639
  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)."
1640
  msgstr ""
1641
 
1642
- #: src/admin.php:1529
1643
  msgid "Backup sets removed:"
1644
  msgstr ""
1645
 
@@ -1691,15 +1699,15 @@ msgstr ""
1691
  msgid "You do not currently have any UpdraftPlus Vault quota"
1692
  msgstr ""
1693
 
1694
- #: src/class-updraftplus.php:4714
1695
  msgid "You must upgrade MySQL to be able to use this database."
1696
  msgstr ""
1697
 
1698
- #: src/class-updraftplus.php:4714
1699
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1700
  msgstr ""
1701
 
1702
- #: src/admin.php:2232
1703
  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."
1704
  msgstr ""
1705
 
@@ -1868,7 +1876,7 @@ msgid "Updraft Vault"
1868
  msgstr ""
1869
 
1870
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1871
- #: src/methods/s3.php:1080
1872
  msgid "Delete failed:"
1873
  msgstr ""
1874
 
@@ -1892,71 +1900,71 @@ msgstr ""
1892
  msgid "Allow download"
1893
  msgstr ""
1894
 
1895
- #: src/addons/migrator.php:1754
1896
  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."
1897
  msgstr ""
1898
 
1899
- #: src/addons/migrator.php:1739, src/admin.php:709
1900
  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."
1901
  msgstr ""
1902
 
1903
- #: src/addons/migrator.php:2242
1904
  msgid "Existing keys"
1905
  msgstr ""
1906
 
1907
- #: src/addons/migrator.php:2233
1908
  msgid "No keys to allow remote sites to connect have yet been created."
1909
  msgstr ""
1910
 
1911
- #: src/addons/migrator.php:2215
1912
  msgid "Your new key:"
1913
  msgstr ""
1914
 
1915
- #: src/addons/migrator.php:2194
1916
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1917
  msgstr ""
1918
 
1919
- #: src/addons/migrator.php:2176
1920
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1921
  msgstr ""
1922
 
1923
- #: src/addons/migrator.php:2176
1924
  msgid "Keys for this site are created in the section below the one you just pressed in."
1925
  msgstr ""
1926
 
1927
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1928
  msgid "You must copy and paste this key now - it cannot be shown again."
1929
  msgstr ""
1930
 
1931
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1932
  msgid "Key created successfully."
1933
  msgstr ""
1934
 
1935
- #: src/addons/migrator.php:1841
1936
  msgid "A key with this name already exists; you must use a unique name."
1937
  msgstr ""
1938
 
1939
- #: src/addons/migrator.php:1785
1940
  msgid "Also send this backup to the active remote storage locations"
1941
  msgstr ""
1942
 
1943
- #: src/addons/migrator.php:1750
1944
  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."
1945
  msgstr ""
1946
 
1947
- #: src/addons/migrator.php:1706
1948
  msgid "site not found"
1949
  msgstr ""
1950
 
1951
- #: src/addons/migrator.php:1691
1952
  msgid "Backup data will be sent to:"
1953
  msgstr ""
1954
 
1955
- #: src/addons/migrator.php:195
1956
  msgid "Restore an existing backup set onto this site"
1957
  msgstr ""
1958
 
1959
- #: src/addons/migrator.php:188
1960
  msgid "This site has no backups to restore from yet."
1961
  msgstr ""
1962
 
@@ -1968,15 +1976,15 @@ msgstr ""
1968
  msgid "This storage method does not allow downloading"
1969
  msgstr ""
1970
 
1971
- #: src/admin.php:3501
1972
  msgid "(backup set imported from remote location)"
1973
  msgstr ""
1974
 
1975
- #: src/templates/wp-admin/settings/existing-backups-table.php:82
1976
  msgid "Site"
1977
  msgstr ""
1978
 
1979
- #: src/templates/wp-admin/settings/existing-backups-table.php:81
1980
  msgid "Backup sent to remote site - not available for download."
1981
  msgstr ""
1982
 
@@ -1988,7 +1996,7 @@ msgstr ""
1988
  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."
1989
  msgstr ""
1990
 
1991
- #: src/addons/migrator.php:1767, src/admin.php:716
1992
  msgid "Testing connection..."
1993
  msgstr ""
1994
 
@@ -2008,60 +2016,60 @@ msgstr ""
2008
  msgid "Creating..."
2009
  msgstr ""
2010
 
2011
- #: src/addons/migrator.php:2193
2012
  msgid "Or, receive a backup from a remote site"
2013
  msgstr ""
2014
 
2015
- #: src/addons/migrator.php:2182
2016
  msgid "Paste key here"
2017
  msgstr ""
2018
 
2019
- #: src/addons/migrator.php:2176
2020
  msgid "How do I get a site's key?"
2021
  msgstr ""
2022
 
2023
- #: src/addons/migrator.php:2176
2024
  msgid "To add a site as a destination for sending to, enter that site's key below."
2025
  msgstr ""
2026
 
2027
- #: src/addons/migrator.php:2173
2028
  msgid "Or, send a backup to another site"
2029
  msgstr ""
2030
 
2031
- #: src/addons/migrator.php:1938, src/admin.php:717
2032
  msgid "Send"
2033
  msgstr ""
2034
 
2035
- #: src/addons/migrator.php:1932, src/admin.php:708
2036
  msgid "Send to site:"
2037
  msgstr ""
2038
 
2039
- #: src/addons/migrator.php:1930
2040
  msgid "No receiving sites have yet been added."
2041
  msgstr ""
2042
 
2043
- #: src/addons/migrator.php:1911
2044
  msgid "It is for sending backups to the following site: "
2045
  msgstr ""
2046
 
2047
- #: src/addons/migrator.php:1911
2048
  msgid "The key was successfully added."
2049
  msgstr ""
2050
 
2051
- #: src/addons/migrator.php:1895
2052
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2053
  msgstr ""
2054
 
2055
- #: src/addons/migrator.php:1884, src/addons/migrator.php:1886,
2056
- #: src/addons/migrator.php:1890
2057
  msgid "The entered key was corrupt - please try again."
2058
  msgstr ""
2059
 
2060
- #: src/addons/migrator.php:1882
2061
  msgid "The entered key was the wrong length - please try again."
2062
  msgstr ""
2063
 
2064
- #: src/addons/migrator.php:1872
2065
  msgid "key"
2066
  msgstr ""
2067
 
@@ -2101,7 +2109,7 @@ msgstr ""
2101
  msgid "Resetting..."
2102
  msgstr ""
2103
 
2104
- #: src/addons/migrator.php:2182, src/admin.php:705
2105
  msgid "Add site"
2106
  msgstr ""
2107
 
@@ -2109,7 +2117,7 @@ msgstr ""
2109
  msgid "Adding..."
2110
  msgstr ""
2111
 
2112
- #: src/udaddons/options.php:333
2113
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2114
  msgstr ""
2115
 
@@ -2129,11 +2137,11 @@ msgstr ""
2129
  msgid "Go here to re-enter your password."
2130
  msgstr ""
2131
 
2132
- #: src/addons/migrator.php:224
2133
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2134
  msgstr ""
2135
 
2136
- #: src/addons/migrator.php:195
2137
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2138
  msgstr ""
2139
 
@@ -2153,7 +2161,7 @@ msgstr ""
2153
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2154
  msgstr ""
2155
 
2156
- #: src/addons/azure.php:541, src/addons/migrator.php:1754,
2157
  #: src/addons/onedrive.php:955
2158
  msgid "For longer help, including screenshots, follow this link."
2159
  msgstr ""
@@ -2332,7 +2340,7 @@ msgstr ""
2332
  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)"
2333
  msgstr ""
2334
 
2335
- #: src/methods/s3.php:868
2336
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2337
  msgstr ""
2338
 
@@ -2407,7 +2415,7 @@ msgstr ""
2407
  msgid "(at same time as files backup)"
2408
  msgstr ""
2409
 
2410
- #: src/admin.php:3012
2411
  msgid "No backup has been completed"
2412
  msgstr ""
2413
 
@@ -2456,8 +2464,8 @@ msgstr ""
2456
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2457
  msgstr ""
2458
 
2459
- #: src/methods/s3.php:166, src/methods/s3.php:167, src/methods/s3.php:168,
2460
- #: src/methods/s3.php:176, src/methods/s3.php:177, src/methods/s3.php:178
2461
  msgid "%s Error: Failed to initialise"
2462
  msgstr ""
2463
 
@@ -2497,7 +2505,7 @@ msgstr ""
2497
  msgid "Check this box to have a basic report sent to"
2498
  msgstr ""
2499
 
2500
- #: src/admin.php:3021
2501
  msgctxt "i.e. Non-automatic"
2502
  msgid "Manual"
2503
  msgstr ""
@@ -2515,7 +2523,7 @@ msgstr ""
2515
  msgid "Any other file/directory on your server that you wish to back up"
2516
  msgstr ""
2517
 
2518
- #: src/admin.php:2249
2519
  msgid "For even more features and personal support, check out "
2520
  msgstr ""
2521
 
@@ -2605,11 +2613,11 @@ msgstr ""
2605
  msgid "(learn more about this significant option)"
2606
  msgstr ""
2607
 
2608
- #: src/udaddons/options.php:275
2609
  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."
2610
  msgstr ""
2611
 
2612
- #: src/admin.php:2582, src/admin.php:3523, src/admin.php:3524
2613
  msgid "View Log"
2614
  msgstr ""
2615
 
@@ -2626,7 +2634,7 @@ msgstr ""
2626
  msgid "and retain this many scheduled backups"
2627
  msgstr ""
2628
 
2629
- #: src/admin.php:2982
2630
  msgid "incremental backup; base backup: %s"
2631
  msgstr ""
2632
 
@@ -2634,20 +2642,20 @@ msgstr ""
2634
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2635
  msgstr ""
2636
 
2637
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
2638
  msgid "Upload files into UpdraftPlus."
2639
  msgstr ""
2640
 
2641
- #: src/admin.php:932, src/includes/class-commands.php:379,
2642
  #: src/templates/wp-admin/settings/tab-status.php:22
2643
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2644
  msgstr ""
2645
 
2646
- #: src/class-updraftplus.php:4664
2647
  msgid "Backup label:"
2648
  msgstr ""
2649
 
2650
- #: src/admin.php:1774
2651
  msgid "Error: unexpected file read fail"
2652
  msgstr ""
2653
 
@@ -2667,7 +2675,7 @@ msgstr ""
2667
  msgid "Your label for this backup (optional)"
2668
  msgstr ""
2669
 
2670
- #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1082
2671
  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."
2672
  msgstr ""
2673
 
@@ -2687,36 +2695,36 @@ msgstr ""
2687
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2688
  msgstr ""
2689
 
2690
- #: src/class-updraftplus.php:4683
2691
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2692
  msgstr ""
2693
 
2694
- #: src/class-updraftplus.php:4683
2695
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2696
  msgstr ""
2697
 
2698
- #: src/addons/migrator.php:1083
2699
  msgid "already done"
2700
  msgstr ""
2701
 
2702
- #: src/addons/migrator.php:1040
2703
  msgid "skipped (not in list)"
2704
  msgstr ""
2705
 
2706
- #: src/addons/migrator.php:1040, src/addons/migrator.php:1083,
2707
- #: src/addons/migrator.php:1215
2708
  msgid "Search and replacing table:"
2709
  msgstr ""
2710
 
2711
- #: src/addons/migrator.php:322
2712
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2713
  msgstr ""
2714
 
2715
- #: src/addons/migrator.php:322
2716
  msgid "These tables only"
2717
  msgstr ""
2718
 
2719
- #: src/addons/migrator.php:321
2720
  msgid "Rows per batch"
2721
  msgstr ""
2722
 
@@ -2728,19 +2736,19 @@ msgstr ""
2728
  msgid "You need to connect to receive future updates to UpdraftPlus."
2729
  msgstr ""
2730
 
2731
- #: src/class-updraftplus.php:4656
2732
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2733
  msgstr ""
2734
 
2735
- #: src/class-updraftplus.php:4656
2736
  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."
2737
  msgstr ""
2738
 
2739
- #: src/class-updraftplus.php:4656
2740
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2741
  msgstr ""
2742
 
2743
- #: src/class-updraftplus.php:4656
2744
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2745
  msgstr ""
2746
 
@@ -2769,27 +2777,27 @@ msgstr ""
2769
  msgid "UpdraftPlus is on social media - check us out!"
2770
  msgstr ""
2771
 
2772
- #: src/admin.php:3592
2773
  msgid "Why am I seeing this?"
2774
  msgstr ""
2775
 
2776
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2777
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2778
  msgstr ""
2779
 
2780
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2781
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2782
  msgstr ""
2783
 
2784
- #: src/admin.php:1713, src/admin.php:1725
2785
  msgid "Start backup"
2786
  msgstr ""
2787
 
2788
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
2789
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2790
  msgstr ""
2791
 
2792
- #: src/admin.php:2905
2793
  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."
2794
  msgstr ""
2795
 
@@ -2797,11 +2805,11 @@ msgstr ""
2797
  msgid "Unless you have a problem, you can completely ignore everything here."
2798
  msgstr ""
2799
 
2800
- #: src/admin.php:1935
2801
  msgid "This file could not be uploaded"
2802
  msgstr ""
2803
 
2804
- #: src/admin.php:1900
2805
  msgid "You will find more information about this in the Settings section."
2806
  msgstr ""
2807
 
@@ -2821,7 +2829,7 @@ msgstr ""
2821
  msgid "Memory limit"
2822
  msgstr ""
2823
 
2824
- #: src/class-updraftplus.php:4786, src/restorer.php:1493
2825
  msgid "restoration"
2826
  msgstr ""
2827
 
@@ -2845,42 +2853,42 @@ msgstr ""
2845
  msgid "Backup succeeded"
2846
  msgstr ""
2847
 
2848
- #: src/admin.php:3022, src/admin.php:3023, src/admin.php:3024,
2849
  #: src/updraftplus.php:99, src/updraftplus.php:100
2850
  msgid "Every %s hours"
2851
  msgstr ""
2852
 
2853
- #: src/addons/migrator.php:785, src/addons/migrator.php:787
2854
  msgid "search and replace"
2855
  msgstr ""
2856
 
2857
- #: src/addons/migrator.php:324
2858
  msgid "Go"
2859
  msgstr ""
2860
 
2861
- #: src/addons/migrator.php:313
2862
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2863
  msgstr ""
2864
 
2865
- #: src/addons/migrator.php:312
2866
  msgid "This can easily destroy your site; so, use it with care!"
2867
  msgstr ""
2868
 
2869
- #: src/addons/migrator.php:282, src/addons/migrator.php:320
2870
  msgid "Replace with"
2871
  msgstr ""
2872
 
2873
- #: src/addons/migrator.php:281, src/addons/migrator.php:319
2874
  msgid "Search for"
2875
  msgstr ""
2876
 
2877
- #: src/addons/migrator.php:280, src/addons/migrator.php:311,
2878
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2879
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2880
  msgid "Search / replace database"
2881
  msgstr ""
2882
 
2883
- #: src/addons/migrator.php:286
2884
  msgid "search term"
2885
  msgstr ""
2886
 
@@ -2896,11 +2904,11 @@ msgstr ""
2896
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2897
  msgstr ""
2898
 
2899
- #: src/methods/googledrive.php:1090
2900
  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."
2901
  msgstr ""
2902
 
2903
- #: src/admin.php:3350
2904
  msgid "You have not yet made any backups."
2905
  msgstr ""
2906
 
@@ -2920,13 +2928,13 @@ msgstr ""
2920
  msgid "Free disk space in account:"
2921
  msgstr ""
2922
 
2923
- #: src/admin.php:4173, src/templates/wp-admin/settings/tab-status.php:27
2924
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2925
  msgstr ""
2926
 
2927
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1578,
2928
- #: src/includes/deprecated-actions.php:30,
2929
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:22,
2930
  #: src/templates/wp-admin/settings/tab-bar.php:6
2931
  msgid "Existing Backups"
2932
  msgstr ""
@@ -3019,20 +3027,20 @@ msgstr ""
3019
  msgid "External database (%s)"
3020
  msgstr ""
3021
 
3022
- #: src/methods/googledrive.php:1090
3023
  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."
3024
  msgstr ""
3025
 
3026
- #: src/methods/googledrive.php:450
3027
  msgid "failed to access parent folder"
3028
  msgstr ""
3029
 
3030
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3031
- #: src/addons/onedrive.php:773, src/methods/googledrive.php:403
3032
  msgid "However, subsequent access attempts failed:"
3033
  msgstr ""
3034
 
3035
- #: src/admin.php:3375
3036
  msgid "External database"
3037
  msgstr ""
3038
 
@@ -3064,7 +3072,7 @@ msgstr ""
3064
  msgid "use UpdraftPlus Premium"
3065
  msgstr ""
3066
 
3067
- #: src/class-updraftplus.php:4546
3068
  msgid "Decryption failed. The database file is encrypted."
3069
  msgstr ""
3070
 
@@ -3085,7 +3093,7 @@ msgstr ""
3085
  msgid "database connection attempt failed."
3086
  msgstr ""
3087
 
3088
- #: src/addons/migrator.php:971
3089
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3090
  msgstr ""
3091
 
@@ -3168,7 +3176,7 @@ msgstr ""
3168
  msgid "Authenticate with %s"
3169
  msgstr ""
3170
 
3171
- #: src/methods/cloudfiles.php:422
3172
  msgid "Error downloading remote file: Failed to download"
3173
  msgstr ""
3174
 
@@ -3196,37 +3204,37 @@ msgid "%s error - failed to access the container"
3196
  msgstr ""
3197
 
3198
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3199
- #: src/methods/dropbox.php:546, src/methods/googledrive.php:1146
3200
  msgid "Account holder's name: %s."
3201
  msgstr ""
3202
 
3203
- #: src/methods/googledrive.php:1135
3204
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3205
  msgstr ""
3206
 
3207
- #: src/methods/googledrive.php:1126
3208
  msgid "It is an ID number internal to Google Drive"
3209
  msgstr ""
3210
 
3211
- #: src/methods/googledrive.php:1126
3212
  msgid "<strong>This is NOT a folder name</strong>."
3213
  msgstr ""
3214
 
3215
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3216
- #: src/methods/googledrive.php:1122, src/methods/googledrive.php:1132
3217
  msgid "Folder"
3218
  msgstr ""
3219
 
3220
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3221
- #: src/methods/googledrive.php:1041
3222
  msgid "%s download: failed: file not found"
3223
  msgstr ""
3224
 
3225
- #: src/addons/googlecloud.php:635, src/methods/googledrive.php:423
3226
  msgid "Name: %s."
3227
  msgstr ""
3228
 
3229
- #: src/methods/googledrive.php:181
3230
  msgid "Google Drive list files: failed to access parent folder"
3231
  msgstr ""
3232
 
@@ -3251,8 +3259,8 @@ msgstr ""
3251
  msgid "Fetch"
3252
  msgstr ""
3253
 
3254
- #: src/addons/migrator.php:383,
3255
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:62,
3256
  #: src/templates/wp-admin/settings/form-contents.php:212
3257
  msgid "This feature requires %s version %s or later"
3258
  msgstr ""
@@ -3265,7 +3273,7 @@ msgstr ""
3265
  msgid "Error - failed to download the file"
3266
  msgstr ""
3267
 
3268
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3269
  msgid "Rescan local folder for new backup sets"
3270
  msgstr ""
3271
 
@@ -3285,8 +3293,8 @@ msgstr ""
3285
  msgid "password/key"
3286
  msgstr " الرقم السري/المفتاح"
3287
 
3288
- #: src/addons/azure.php:549, src/addons/migrator.php:2200,
3289
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4362
3290
  msgid "Key"
3291
  msgstr "مفتاح"
3292
 
@@ -3302,36 +3310,36 @@ msgstr "المفتاح الذي أدخلته غير صالح، أو أنه فا
3302
  msgid "SCP/SFTP password/key"
3303
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
3304
 
3305
- #: src/admin.php:3410
3306
  msgid "Files backup (created by %s)"
3307
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
3308
 
3309
- #: src/admin.php:3410
3310
  msgid "Files and database WordPress backup (created by %s)"
3311
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
3312
 
3313
- #: src/addons/importer.php:276, src/admin.php:3404,
3314
- #: src/class-updraftplus.php:2893
3315
  msgid "Backup created by: %s."
3316
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
3317
 
3318
- #: src/admin.php:3373
3319
  msgid "Database (created by %s)"
3320
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
3321
 
3322
- #: src/admin.php:3367, src/admin.php:3406
3323
  msgid "unknown source"
3324
  msgstr "مصدر غير معروف"
3325
 
3326
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
3327
  msgid "Rescan remote storage"
3328
  msgstr "إعادة فحص الإستضافة الإستضافة السحابية"
3329
 
3330
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:40
3331
  msgid "Upload backup files"
3332
  msgstr "رفع ملفات النسخة الإحتياطية"
3333
 
3334
- #: src/admin.php:1979
3335
  msgid "This backup was created by %s, and can be imported."
3336
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
3337
 
@@ -3343,7 +3351,7 @@ msgstr "إقرأ هذه الصفحة لمعرفة المزيد وإمكانية
3343
  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."
3344
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
3345
 
3346
- #: src/admin.php:676, src/class-updraftplus.php:2900
3347
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3348
  msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
3349
 
@@ -3351,11 +3359,11 @@ msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإست
3351
  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."
3352
  msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
3353
 
3354
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2900
3355
  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))."
3356
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3357
 
3358
- #: src/admin.php:3407, src/includes/class-wpadmin-commands.php:152,
3359
  #: src/restorer.php:1462
3360
  msgid "Backup created by unknown source (%s) - cannot be restored."
3361
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
@@ -3381,7 +3389,7 @@ msgstr "وحدة UpdraftPlus لطريقة الوصول للملف (%s) غير م
3381
  msgid "No settings were found"
3382
  msgstr "لم يتم العثور على الإعدادات"
3383
 
3384
- #: src/class-updraftplus.php:3021
3385
  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."
3386
  msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
3387
 
@@ -3407,7 +3415,7 @@ msgstr ""
3407
  msgid "Remove"
3408
  msgstr "حذف"
3409
 
3410
- #: src/methods/s3.php:840
3411
  msgid "Other %s FAQs."
3412
  msgstr "الأسئلة الشائعة %s الأخرى."
3413
 
@@ -3415,16 +3423,16 @@ msgstr "الأسئلة الشائعة %s الأخرى."
3415
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3416
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
3417
 
3418
- #: src/addons/morefiles.php:445, src/admin.php:3114
3419
  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."
3420
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
3421
 
3422
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309,
3423
  #: src/restorer.php:1493
3424
  msgid "Your hosting company must enable these functions before %s can work."
3425
  msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
3426
 
3427
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309
3428
  msgid "Your web server's PHP installation has these functions disabled: %s."
3429
  msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
3430
 
@@ -3444,7 +3452,7 @@ msgstr "خادم FTP غير مشفر اعتيادي"
3444
  msgid "Backup created by:"
3445
  msgstr "نسخة احتياطية أنشأها:"
3446
 
3447
- #: src/udaddons/options.php:482
3448
  msgid "Available to claim on this site"
3449
  msgstr "متوفر للطلب من هذا الموقع"
3450
 
@@ -3494,15 +3502,15 @@ msgstr "وصولك المدفوع لتحديثات UpdraftPlus بهذا المو
3494
  msgid "Dismiss from main dashboard (for %s weeks)"
3495
  msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
3496
 
3497
- #: src/class-updraftplus.php:4836
3498
  msgid "The attempt to undo the double-compression succeeded."
3499
  msgstr "نجاح محاولة التراجع من الضغط المزدوج"
3500
 
3501
- #: src/class-updraftplus.php:4813, src/class-updraftplus.php:4834
3502
  msgid "The attempt to undo the double-compression failed."
3503
  msgstr "فشل محاولة التراجع من الضغط المزدوج"
3504
 
3505
- #: src/class-updraftplus.php:4806
3506
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3507
  msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
3508
 
@@ -3535,7 +3543,7 @@ msgstr "حساب ممتلئ: حسابك %s يحمل فقط %d بايت متبق
3535
  msgid "Errors occurred:"
3536
  msgstr "أخطاء حدثت:"
3537
 
3538
- #: src/admin.php:3612
3539
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3540
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
3541
 
@@ -3563,7 +3571,7 @@ msgstr "وجود مجلدات غير محذوفة من النسخة السابق
3563
  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)"
3564
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
3565
 
3566
- #: src/addons/migrator.php:253
3567
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3568
  msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
3569
 
@@ -3572,7 +3580,7 @@ msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعي
3572
  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."
3573
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
3574
 
3575
- #: src/addons/moredatabase.php:137, src/admin.php:1363
3576
  msgid "Messages:"
3577
  msgstr "رسائل:"
3578
 
@@ -3732,7 +3740,7 @@ msgstr "الحسابات المنشأة بموقع rackspacecloud.com هي حس
3732
  msgid "Authorisation failed (check your credentials)"
3733
  msgstr "فشل التفويض (راجع معلوماتك)"
3734
 
3735
- #: src/methods/updraftvault.php:568, src/udaddons/options.php:267
3736
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3737
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
3738
 
@@ -3748,15 +3756,15 @@ msgstr "اعادة المحاولة..."
3748
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3749
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
3750
 
3751
- #: src/admin.php:661, src/admin.php:3902
3752
  msgid "Error data:"
3753
  msgstr "خطأ بالبيانات:"
3754
 
3755
- #: src/admin.php:3563
3756
  msgid "Backup does not exist in the backup history"
3757
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
3758
 
3759
- #: src/admin.php:2526
3760
  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."
3761
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
3762
 
@@ -3812,7 +3820,7 @@ msgstr "استخدام قسم \"التقارير\" لتكوين عناوين ا
3812
  msgid "Debugging information"
3813
  msgstr "معلومات التصحيح"
3814
 
3815
- #: src/addons/reporting.php:211, src/admin.php:3313
3816
  msgid "Uploaded to:"
3817
  msgstr "تحميلها على:"
3818
 
@@ -3872,7 +3880,7 @@ msgstr "%s الشعار"
3872
  msgid "%s did not return the expected response - check your log file for more details"
3873
  msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
3874
 
3875
- #: src/methods/s3.php:287
3876
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3877
  msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
3878
 
@@ -3885,7 +3893,7 @@ msgid "Your site's admin email address (%s) will be used."
3885
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
3886
 
3887
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3888
- #: src/methods/updraftvault.php:347, src/udaddons/options.php:246
3889
  msgid "Connect"
3890
  msgstr "الإتصال"
3891
 
@@ -3893,7 +3901,7 @@ msgstr "الإتصال"
3893
  msgid "For more reporting features, use the Reporting add-on."
3894
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
3895
 
3896
- #: src/class-updraftplus.php:4616
3897
  msgid "(version: %s)"
3898
  msgstr "(الإصدار: %s)"
3899
 
@@ -3966,39 +3974,39 @@ msgstr "نسخة الووردبريس هذه تخدم مواقع عديدة (ش
3966
  msgid "UpdraftPlus warning:"
3967
  msgstr "تحذير UpdraftPlus :"
3968
 
3969
- #: src/udaddons/options.php:488
3970
  msgid "(or connect using the form on this page if you have already purchased it)"
3971
  msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
3972
 
3973
- #: src/udaddons/options.php:474
3974
  msgid "please follow this link to update the plugin in order to activate it"
3975
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل تفعيله"
3976
 
3977
- #: src/udaddons/options.php:471
3978
  msgid "please follow this link to update the plugin in order to get it"
3979
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل الحصول عليه"
3980
 
3981
- #: src/udaddons/options.php:461, src/udaddons/options.php:463
3982
  msgid "latest"
3983
  msgstr "آخر"
3984
 
3985
- #: src/udaddons/options.php:459
3986
  msgid "Your version: %s"
3987
  msgstr "الإصدار: %s"
3988
 
3989
- #: src/udaddons/options.php:457, src/udaddons/options.php:457
3990
  msgid "You've got it"
3991
  msgstr "كنت قد حصلت عليه"
3992
 
3993
- #: src/udaddons/options.php:418
3994
  msgid "UpdraftPlus Support"
3995
  msgstr "دعم UpdraftPlus"
3996
 
3997
- #: src/udaddons/options.php:376
3998
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3999
  msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
4000
 
4001
- #: src/udaddons/options.php:365, src/udaddons/updraftplus-addons.php:290
4002
  msgid "UpdraftPlus Addons"
4003
  msgstr "اضافات UpdraftPlus"
4004
 
@@ -4034,7 +4042,7 @@ msgstr "فشلنا في الاتصال بنجاح إلى UpdraftPlus.Com"
4034
  msgid "Reporting"
4035
  msgstr "التقارير"
4036
 
4037
- #: src/admin.php:4359
4038
  msgid "Options (raw)"
4039
  msgstr "خيارات (الخام)"
4040
 
@@ -4062,91 +4070,91 @@ msgstr "المساحة الحرة فى حساب الاستضافة الخاص ب
4062
  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)"
4063
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
4064
 
4065
- #: src/udaddons/options.php:553
4066
  msgid "Manage Addons"
4067
  msgstr "ادارة الأضافات"
4068
 
4069
- #: src/udaddons/options.php:489, src/udaddons/options.php:489
4070
  msgid "Buy It"
4071
  msgstr "شراء"
4072
 
4073
- #: src/udaddons/options.php:488
4074
  msgid "Get it from the UpdraftPlus.Com Store"
4075
  msgstr "الحصول علية من متجر UpdraftPlus.Com"
4076
 
4077
- #: src/udaddons/options.php:482, src/udaddons/options.php:484
4078
  msgid "activate it on this site"
4079
  msgstr "تنشيطة على هذا الموقع"
4080
 
4081
- #: src/udaddons/options.php:484
4082
  msgid "You have an inactive purchase"
4083
  msgstr "لديك شراء غير فعال"
4084
 
4085
- #: src/udaddons/options.php:474
4086
  msgid "Assigned to this site"
4087
  msgstr "تعيين إلى هذا الموقع"
4088
 
4089
- #: src/udaddons/options.php:471
4090
  msgid "Available for this site (via your all-addons purchase)"
4091
  msgstr "متاح لهذا الموقع (عن طريق الأضافات المشتراة)"
4092
 
4093
- #: src/udaddons/options.php:465
4094
  msgid "(apparently a pre-release or withdrawn release)"
4095
  msgstr "(على ما يبدو انة اصدار قبل الاصدار الرسمى او اصدار مسحوب)"
4096
 
4097
- #: src/udaddons/options.php:420
4098
  msgid "Go here"
4099
  msgstr "اذهب هنا"
4100
 
4101
- #: src/udaddons/options.php:420
4102
  msgid "Need to get support?"
4103
  msgstr "هل انت بحاجة للحصول على الدعم؟"
4104
 
4105
- #: src/udaddons/options.php:402
4106
  msgid "An error occurred when trying to retrieve your add-ons."
4107
  msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
4108
 
4109
- #: src/udaddons/options.php:335
4110
  msgid "An unknown response was received. Response was:"
4111
  msgstr "تم تلقى رد غير معروف. الرد هو:"
4112
 
4113
- #: src/udaddons/options.php:334
4114
  msgid "Claim not granted - your account login details were wrong"
4115
  msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
4116
 
4117
- #: src/udaddons/options.php:332
4118
  msgid "Please wait whilst we make the claim..."
4119
  msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
4120
 
4121
- #: src/udaddons/options.php:285
4122
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4123
  msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
4124
 
4125
- #: src/udaddons/options.php:278
4126
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4127
  msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
4128
 
4129
- #: src/udaddons/options.php:274
4130
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4131
  msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
4132
 
4133
- #: src/udaddons/options.php:273
4134
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
4136
 
4137
- #: src/udaddons/options.php:244
4138
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4139
  msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
4140
 
4141
- #: src/udaddons/options.php:172
4142
  msgid "Forgotten your details?"
4143
  msgstr "هل نسيت التفاصيل الخاصة بك؟"
4144
 
4145
- #: src/udaddons/options.php:161
4146
  msgid "Not yet got an account (it's free)? Go get one!"
4147
  msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
4148
 
4149
- #: src/udaddons/options.php:128
4150
  msgid "Connect with your UpdraftPlus.Com account"
4151
  msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
4152
 
@@ -4186,15 +4194,15 @@ msgstr "بدون ذلك, التشفير سيكون ابطأ بكثير."
4186
  msgid "Your web-server does not have the %s module installed."
4187
  msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
4188
 
4189
- #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1142
4190
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4191
  msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
4192
 
4193
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:68
4194
  msgid "Drop backup files here"
4195
  msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
4196
 
4197
- #: src/admin.php:2405
4198
  msgid "Does nothing happen when you attempt backups?"
4199
  msgstr "هل لا شيء يحدث عند محاولة النسخ الاحتياطي؟"
4200
 
@@ -4235,11 +4243,11 @@ msgstr "فشل التحميل"
4235
  msgid "You can send a backup to more than one destination with an add-on."
4236
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
4237
 
4238
- #: src/admin.php:2744
4239
  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."
4240
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
4241
 
4242
- #: src/admin.php:2642
4243
  msgid "(%s%%, file %s of %s)"
4244
  msgstr "(%s%%, ملف %s من%s)"
4245
 
@@ -4280,11 +4288,11 @@ msgstr "النسخ الأحتياطى من: %s"
4280
  msgid "%s settings test result:"
4281
  msgstr "اعدادات نتيجة اختبار %s"
4282
 
4283
- #: src/admin.php:3474, src/admin.php:3476
4284
  msgid "(Not finished)"
4285
  msgstr "(غير منتهي)"
4286
 
4287
- #: src/admin.php:3476
4288
  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."
4289
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
4290
 
@@ -4296,73 +4304,73 @@ msgstr "<b>لا تقم</b> بوضعه داخل الإضافات أو دليل ا
4296
  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)."
4297
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
4298
 
4299
- #: src/admin.php:2739
4300
  msgid "Job ID: %s"
4301
  msgstr "رقم الوظيفة: %s"
4302
 
4303
- #: src/admin.php:2724
4304
  msgid "last activity: %ss ago"
4305
  msgstr "آخر نشاط: منذ %ss"
4306
 
4307
- #: src/admin.php:2723
4308
  msgid "next resumption: %d (after %ss)"
4309
  msgstr "الاستئناف التالي: %d (بعد %ss)"
4310
 
4311
- #: src/admin.php:2706, src/central/bootstrap.php:411,
4312
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4313
  #: src/methods/updraftvault.php:467
4314
  msgid "Unknown"
4315
  msgstr "غير معروف"
4316
 
4317
- #: src/admin.php:2656
4318
  msgid "Backup finished"
4319
  msgstr "الانتهاء من النسخ الاحتياطي"
4320
 
4321
- #: src/admin.php:2651
4322
  msgid "Waiting until scheduled time to retry because of errors"
4323
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
4324
 
4325
- #: src/admin.php:2647
4326
  msgid "Pruning old backup sets"
4327
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
4328
 
4329
- #: src/admin.php:2635
4330
  msgid "Uploading files to remote storage"
4331
  msgstr "تحميل الملفات للمخزن البعيد"
4332
 
4333
- #: src/admin.php:2704
4334
  msgid "Encrypted database"
4335
  msgstr "قاعدة بيانات مشفرة"
4336
 
4337
- #: src/admin.php:2696
4338
  msgid "Encrypting database"
4339
  msgstr "تشفير قاعدة البيانات"
4340
 
4341
- #: src/admin.php:2670
4342
  msgid "Created database backup"
4343
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
4344
 
4345
- #: src/admin.php:2683
4346
  msgid "table: %s"
4347
  msgstr "الجدول: %s"
4348
 
4349
- #: src/admin.php:2681
4350
  msgid "Creating database backup"
4351
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
4352
 
4353
- #: src/admin.php:2629
4354
  msgid "Created file backup zips"
4355
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
4356
 
4357
- #: src/admin.php:2616
4358
  msgid "Creating file backup zips"
4359
  msgstr "انشاء ملف النسخ الاحتياطى zips"
4360
 
4361
- #: src/admin.php:2611
4362
  msgid "Backup begun"
4363
  msgstr "بدأ النسخ الاحتياطى"
4364
 
4365
- #: src/admin.php:2454
4366
  msgid "Backups in progress:"
4367
  msgstr "تقدم النسخ الأحتياطى:"
4368
 
@@ -4382,7 +4390,7 @@ msgstr "مجلد"
4382
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4383
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
4384
 
4385
- #: src/class-updraftplus.php:3118
4386
  msgid "The backup has not finished; a resumption is scheduled"
4387
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
4388
 
@@ -4396,7 +4404,7 @@ msgstr "زوار موقع الويب الخاص بك و UpdraftPlus فى كثي
4396
  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)."
4397
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
4398
 
4399
- #: src/admin.php:2277
4400
  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)."
4401
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
4402
 
@@ -4475,23 +4483,23 @@ msgstr "مزيد من الملحقات"
4475
  msgid "Support"
4476
  msgstr "الدعم"
4477
 
4478
- #: src/class-updraftplus.php:4769
4479
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4480
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
4481
 
4482
- #: src/class-updraftplus.php:4761
4483
  msgid "This database backup is missing core WordPress tables: %s"
4484
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
4485
 
4486
- #: src/class-updraftplus.php:4649
4487
  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."
4488
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
4489
 
4490
- #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4655
4491
  msgid "%s version: %s"
4492
  msgstr "%s النسخة: %s"
4493
 
4494
- #: src/class-updraftplus.php:4565
4495
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4496
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
4497
 
@@ -4500,7 +4508,7 @@ msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقا
4500
  msgid "Be safe with an automatic backup"
4501
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
4502
 
4503
- #: src/admin.php:2229
4504
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4505
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
4506
 
@@ -4548,11 +4556,11 @@ msgstr "تحميل الى جهاز الكمبيوتر الخاص بك"
4548
  msgid "Delete from your web server"
4549
  msgstr "حذف من خادم الويب الخاص بك"
4550
 
4551
- #: src/admin.php:3444
4552
  msgid "You appear to be missing one or more archives from this multi-archive set."
4553
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
4554
 
4555
- #: src/admin.php:3441
4556
  msgid "(%d archive(s) in set)."
4557
  msgstr "(%d الأرشيف(s) in set)."
4558
 
@@ -4572,7 +4580,7 @@ msgstr "تحذيرات:"
4572
  msgid "Error: the server sent an empty response."
4573
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
4574
 
4575
- #: src/admin.php:1990
4576
  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?"
4577
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
4578
 
@@ -4608,7 +4616,7 @@ msgstr "الملف غير موجود (تحتاج الى رفعة): %s"
4608
  msgid "No such backup set exists"
4609
  msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
4610
 
4611
- #: src/admin.php:1239
4612
  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"
4613
  msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
4614
 
@@ -4624,27 +4632,27 @@ msgstr "فشل فى فتح ملف مضغوط (%s) - %s"
4624
  msgid "WordPress root directory server path: %s"
4625
  msgstr "مسار جذر الوردبريس فى الخادم: %s"
4626
 
4627
- #: src/methods/s3.php:845
4628
  msgid "%s end-point"
4629
  msgstr "نقطة النهاية %s "
4630
 
4631
- #: src/methods/s3.php:807
4632
  msgid "... and many more!"
4633
  msgstr "... وغيرها الكثير!"
4634
 
4635
- #: src/methods/s3generic.php:52, src/methods/s3generic.php:60
4636
  msgid "S3 (Compatible)"
4637
  msgstr "S3 (متوافق)"
4638
 
4639
- #: src/admin.php:3758
4640
  msgid "File is not locally present - needs retrieving from remote storage"
4641
  msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
4642
 
4643
- #: src/admin.php:3745
4644
  msgid "Looking for %s archive: file name: %s"
4645
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
4646
 
4647
- #: src/admin.php:3706
4648
  msgid "Final checks"
4649
  msgstr "الفحوصات النهائية"
4650
 
@@ -4656,7 +4664,7 @@ msgstr "حدد هذا المربع لحذف اى ملفات النسخ الأح
4656
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4657
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
4658
 
4659
- #: src/admin.php:3103
4660
  msgid "Your wp-content directory server path: %s"
4661
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
4662
 
@@ -4672,20 +4680,20 @@ msgstr "مشاهدة النسخ الاحتياطي الخام وقائمة ال
4672
  msgid "Processing files - please wait..."
4673
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
4674
 
4675
- #: src/admin.php:3904,
4676
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4677
  msgid "Please consult this FAQ for help on what to do about it."
4678
  msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
4679
 
4680
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4681
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4682
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
4683
 
4684
- #: src/class-updraftplus.php:4573
4685
  msgid "Failed to open database file."
4686
  msgstr "فشل فى فتح ملف قاعدة البيانات."
4687
 
4688
- #: src/admin.php:4329
4689
  msgid "Known backups (raw)"
4690
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
4691
 
@@ -4697,17 +4705,17 @@ msgstr "العثور على ملفات:"
4697
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4698
  msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
4699
 
4700
- #: src/addons/migrator.php:333
4701
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4702
  msgstr "هذة تبدو كأنها ترحيل (النسخة الأحتياطة من موقع عنوان الرابط الخاص بة مختلف), لكنك لم تقم بالأشارة على خيار البحث واستبدال قاعدة البيانات. عادة ما يكون خطأ."
4703
 
4704
- #: src/admin.php:3778
4705
  msgid "file is size:"
4706
  msgstr "حجم الملف:"
4707
 
4708
- #: src/addons/googlecloud.php:941, src/addons/migrator.php:371,
4709
- #: src/addons/migrator.php:374, src/addons/migrator.php:377, src/admin.php:945,
4710
- #: src/admin.php:2234, src/backup.php:3043, src/updraftplus.php:156
4711
  msgid "Go here for more information."
4712
  msgstr "اذهب هنا لمزيد من المعلومات."
4713
 
@@ -4715,7 +4723,7 @@ msgstr "اذهب هنا لمزيد من المعلومات."
4715
  msgid "Some files are still downloading or being processed - please wait."
4716
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
4717
 
4718
- #: src/class-updraftplus.php:4621, src/class-updraftplus.php:4639
4719
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4720
  msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
4721
 
@@ -4761,7 +4769,7 @@ msgstr "خطأ - لا يوجد مثل هذا الملف فى %s"
4761
 
4762
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4763
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4764
- #: src/methods/googledrive.php:1001, src/methods/openstack-base.php:420,
4765
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4766
  #: src/methods/stream-base.php:285
4767
  msgid "%s Error"
@@ -4785,25 +4793,25 @@ msgstr "خطأ %s - فشل فى اعادة تجميع الأجزاء"
4785
  msgid "%s authentication failed"
4786
  msgstr "المصادقة فشلت %s"
4787
 
4788
- #: src/addons/googlecloud.php:432, src/addons/migrator.php:462,
4789
- #: src/admin.php:1935, src/admin.php:1982, src/admin.php:1990,
4790
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4791
- #: src/class-updraftplus.php:4544, src/class-updraftplus.php:4546,
4792
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4679,
4793
- #: src/class-updraftplus.php:4714, src/methods/googledrive.php:364,
4794
- #: src/methods/s3.php:316
4795
  msgid "Error: %s"
4796
  msgstr "خطأ: %s"
4797
 
4798
- #: src/admin.php:3040
4799
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4800
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
4801
 
4802
- #: src/admin.php:3038
4803
  msgid "Backup directory specified does <b>not</b> exist."
4804
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
4805
 
4806
- #: src/admin.php:2751, src/admin.php:2994
4807
  msgid "Warning: %s"
4808
  msgstr "تحذير: %s"
4809
 
@@ -4831,7 +4839,7 @@ msgstr "حدث خطأ اثناء اغلاق ملف قاعدة البيانات
4831
  msgid "Warnings encountered:"
4832
  msgstr "مصادفة تحذيرات:"
4833
 
4834
- #: src/class-updraftplus.php:3106
4835
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4836
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
4837
 
@@ -4839,27 +4847,27 @@ msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح
4839
  msgid "Your free disk space is very low - only %s Mb remain"
4840
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
4841
 
4842
- #: src/addons/migrator.php:470
4843
  msgid "New site:"
4844
  msgstr "الموقع الجديد:"
4845
 
4846
- #: src/addons/migrator.php:445
4847
  msgid "Migrated site (from UpdraftPlus)"
4848
  msgstr "المواقع المدمجة (من UpdraftPlus)"
4849
 
4850
- #: src/addons/migrator.php:392
4851
  msgid "Enter details for where this new site is to live within your multisite install:"
4852
  msgstr "ادخل تفاصيل عن مكان هذا الموقع الجديد ضمن المواقع المتعددة الخاصة بك:"
4853
 
4854
- #: src/addons/migrator.php:391
4855
  msgid "Information needed to continue:"
4856
  msgstr "المعلومات اللازمة للأستمرار:"
4857
 
4858
- #: src/addons/migrator.php:348
4859
  msgid "Network activating theme:"
4860
  msgstr "تفعيل ثيم الشبكة:"
4861
 
4862
- #: src/addons/migrator.php:338
4863
  msgid "Processed plugin:"
4864
  msgstr "المكون الأضافى:"
4865
 
@@ -4871,15 +4879,15 @@ msgstr "تحقق من اذونات الملفات الخاصة بك: تعذر ا
4871
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4872
  msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
4873
 
4874
- #: src/methods/s3.php:821
4875
  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."
4876
  msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
4877
 
4878
- #: src/methods/s3.php:1073
4879
  msgid "Please check your access credentials."
4880
  msgstr "يرجى التحقق من وصول بيانات الأعتماد."
4881
 
4882
- #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1051
4883
  msgid "The error reported by %s was:"
4884
  msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
4885
 
@@ -4887,7 +4895,7 @@ msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
4887
  msgid "Please supply the requested information, and then continue."
4888
  msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
4889
 
4890
- #: src/class-updraftplus.php:4690, src/restorer.php:1706
4891
  msgid "Site information:"
4892
  msgstr "معلومات عن الموقع:"
4893
 
@@ -4895,21 +4903,21 @@ msgstr "معلومات عن الموقع:"
4895
  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."
4896
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
4897
 
4898
- #: src/addons/migrator.php:333, src/admin.php:2229,
4899
- #: src/class-updraftplus.php:4683, src/restorer.php:2033
4900
  msgid "Warning:"
4901
  msgstr "تحذير:"
4902
 
4903
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4675,
4904
  #: src/restorer.php:154
4905
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4906
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
4907
 
4908
- #: src/admin.php:3733
4909
  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."
4910
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
4911
 
4912
- #: src/admin.php:3169, src/methods/updraftvault.php:286
4913
  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."
4914
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
4915
 
@@ -4964,7 +4972,7 @@ msgstr "جارى الحذف...يرجى اتاحة الوقت لأكمال الأ
4964
  msgid "Also delete from remote storage"
4965
  msgstr "حذف ايضاً من التخزين البعيد"
4966
 
4967
- #: src/admin.php:2481
4968
  msgid "Latest UpdraftPlus.com news:"
4969
  msgstr "اخر اخبار UpdraftPlus.com:"
4970
 
@@ -4981,7 +4989,7 @@ msgstr "مميز"
4981
  msgid "News"
4982
  msgstr "اخبار"
4983
 
4984
- #: src/admin.php:1409, src/includes/class-wpadmin-commands.php:465
4985
  msgid "Backup set not found"
4986
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
4987
 
@@ -5007,7 +5015,7 @@ msgstr "رابط المدونة"
5007
  msgid "Testing %s Settings..."
5008
  msgstr "اختبار اعدادات %s ..."
5009
 
5010
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
5011
  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."
5012
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
5013
 
@@ -5035,77 +5043,77 @@ msgstr "بدأ البحث عن هذا الكيان"
5035
  msgid "Store at"
5036
  msgstr "المتجر فى"
5037
 
5038
- #: src/addons/migrator.php:1380
5039
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5040
  msgstr "\"%s\" لا يوجد لدية مفتاح اساسى, تحتاج الى تغيرها يدويا فى الصف %s."
5041
 
5042
- #: src/addons/migrator.php:1258
5043
  msgid "rows: %d"
5044
  msgstr "الصفوف: %d"
5045
 
5046
- #: src/addons/migrator.php:1134
5047
  msgid "Time taken (seconds):"
5048
  msgstr "الوقت المستغرق (ثانية):"
5049
 
5050
- #: src/addons/migrator.php:1133, src/admin.php:659
5051
  msgid "Errors:"
5052
  msgstr "الأخطاء:"
5053
 
5054
- #: src/addons/migrator.php:1132
5055
  msgid "SQL update commands run:"
5056
  msgstr "تشغيل اوامر تحديث SQL:"
5057
 
5058
- #: src/addons/migrator.php:1131
5059
  msgid "Changes made:"
5060
  msgstr "التغييرات التي تم إجراؤها:"
5061
 
5062
- #: src/addons/migrator.php:1130
5063
  msgid "Rows examined:"
5064
  msgstr "فحص الصفوف:"
5065
 
5066
- #: src/addons/migrator.php:1129
5067
  msgid "Tables examined:"
5068
  msgstr "فحص الجداول:"
5069
 
5070
- #: src/addons/migrator.php:1018
5071
  msgid "Could not get list of tables"
5072
  msgstr "لا يمكن الحصول على قائمة الجداول"
5073
 
5074
- #: src/addons/migrator.php:963
5075
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5076
  msgstr "تحذير: رابط موقع قواعد البيانات (%s) يختلف عن ما كنا نتوقعة (%s)"
5077
 
5078
- #: src/addons/migrator.php:952
5079
  msgid "Nothing to do: the site URL is already: %s"
5080
  msgstr "لا شئ لعملة: رابط الموقع بالفعل: %s"
5081
 
5082
- #: src/addons/migrator.php:916, src/addons/migrator.php:920,
5083
- #: src/addons/migrator.php:924, src/addons/migrator.php:929,
5084
- #: src/addons/migrator.php:933, src/addons/migrator.php:938
5085
  msgid "Error: unexpected empty parameter (%s, %s)"
5086
  msgstr "خطأ: معلمة فارغة غير متوقعة (%s, %s)"
5087
 
5088
- #: src/addons/migrator.php:876
5089
  msgid "Database: search and replace site URL"
5090
  msgstr "قاعدة البيانات: بحث واستبدال عنوان الموقع"
5091
 
5092
- #: src/addons/migrator.php:787, src/addons/migrator.php:1115
5093
  msgid "Failed: we did not understand the result returned by the %s operation."
5094
  msgstr "فشل: لم نستطع فهم نتيجة العملية بواسطة %s ."
5095
 
5096
- #: src/addons/migrator.php:785, src/addons/migrator.php:1113
5097
  msgid "Failed: the %s operation was not able to start."
5098
  msgstr "فشل: العملية %s لم تكن قادرة على البدأ."
5099
 
5100
- #: src/addons/migrator.php:550
5101
  msgid "(learn more)"
5102
  msgstr "(مزيد من المعلومات)"
5103
 
5104
- #: src/addons/migrator.php:550
5105
  msgid "Search and replace site location in the database (migrate)"
5106
  msgstr "بحث واستبدال قاعدة البيانات فى الموقع (ترحيل)"
5107
 
5108
- #: src/addons/migrator.php:550
5109
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5110
  msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
5111
 
@@ -5113,7 +5121,7 @@ msgstr "سيتم استبدال كافة المراجع الى الموقع فى
5113
  msgid "Blog uploads"
5114
  msgstr "مدونة الملفات المرفوعة"
5115
 
5116
- #: src/addons/migrator.php:377, src/addons/multisite.php:649
5117
  msgid "Must-use plugins"
5118
  msgstr "لابد من استخدام الأضافات"
5119
 
@@ -5152,7 +5160,7 @@ msgstr "مسار الدليل"
5152
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5153
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5154
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5155
- #: src/udaddons/options.php:132
5156
  msgid "Password"
5157
  msgstr "كلمة السر"
5158
 
@@ -5218,8 +5226,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
5218
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
5219
 
5220
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5221
- #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2805,
5222
- #: src/admin.php:2840, src/admin.php:2849, src/methods/addon-base-v2.php:289,
5223
  #: src/methods/stream-base.php:301
5224
  msgid "Failed"
5225
  msgstr "فشل"
@@ -5244,7 +5252,7 @@ msgstr "قطعة %s: حدث خطأ %s"
5244
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5245
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5246
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5247
- #: src/methods/googledrive.php:167, src/methods/googledrive.php:169,
5248
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5249
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5250
  #: src/methods/stream-base.php:246
@@ -5312,96 +5320,96 @@ msgstr "خطأ: فشل فى رفع الملف الى %s (انظر السجل ل
5312
  msgid "You do not appear to be authenticated with Dropbox"
5313
  msgstr "لا يبدو ان المصادقة مع Dropbox"
5314
 
5315
- #: src/methods/s3.php:1068
5316
  msgid "The communication with %s was not encrypted."
5317
  msgstr "التواصل مع %s كان غير مشفر."
5318
 
5319
- #: src/methods/s3.php:1066
5320
  msgid "The communication with %s was encrypted."
5321
  msgstr "التواصل مع %s كان مشفر."
5322
 
5323
- #: src/addons/googlecloud.php:756, src/methods/s3.php:1063
5324
  msgid "We accessed the bucket, and were able to create files within it."
5325
  msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
5326
 
5327
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5328
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5329
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5330
  msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
5331
 
5332
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5333
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5334
  msgid "Failure"
5335
  msgstr "فشل"
5336
 
5337
- #: src/methods/s3.php:1049
5338
  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)."
5339
  msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
5340
 
5341
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5342
- #: src/methods/s3.php:1043
5343
  msgid "Region"
5344
  msgstr "المنطقة"
5345
 
5346
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5347
- #: src/methods/s3.php:1025
5348
  msgid "Failure: No bucket details were given."
5349
  msgstr "فشل: لم ترد تفاصيل الباكت."
5350
 
5351
- #: src/methods/s3.php:1003
5352
  msgid "API secret"
5353
  msgstr "API السرية"
5354
 
5355
- #: src/methods/s3.php:882
5356
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5357
  msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
5358
 
5359
- #: src/methods/s3.php:881
5360
  msgid "%s location"
5361
  msgstr "المكان %s"
5362
 
5363
- #: src/methods/s3.php:877
5364
  msgid "%s secret key"
5365
  msgstr "المفتاح السرى %s"
5366
 
5367
- #: src/methods/s3.php:873
5368
  msgid "%s access key"
5369
  msgstr "مفتاح الوصول %s"
5370
 
5371
- #: src/methods/s3.php:838
5372
  msgid "If you see errors about SSL certificates, then please go here for help."
5373
  msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
5374
 
5375
- #: src/methods/s3.php:836
5376
  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."
5377
  msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
5378
 
5379
- #: src/methods/s3.php:457, src/methods/s3.php:569, src/methods/s3.php:641,
5380
- #: src/methods/s3.php:744
5381
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5382
  msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
5383
 
5384
- #: src/methods/s3.php:727, src/methods/s3.php:737, src/methods/s3.php:773
5385
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5386
  msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
5387
 
5388
- #: src/methods/s3.php:435
5389
  msgid "%s re-assembly error (%s): (see log file for more)"
5390
  msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
5391
 
5392
- #: src/methods/s3.php:431
5393
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5394
  msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
5395
 
5396
- #: src/methods/s3.php:415
5397
  msgid "%s chunk %s: upload failed"
5398
  msgstr "%s قطعة %s : فشل الرفع"
5399
 
5400
- #: src/methods/s3.php:405
5401
  msgid "%s error: file %s was shortened unexpectedly"
5402
  msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
5403
 
5404
- #: src/methods/s3.php:383
5405
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5406
  msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
5407
 
@@ -5432,11 +5440,11 @@ msgid "Username"
5432
  msgstr "اسم المستخدم"
5433
 
5434
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5435
- #: src/methods/s3.php:999
5436
  msgid "API key"
5437
  msgstr "مفتاح API"
5438
 
5439
- #: src/addons/migrator.php:286, src/addons/migrator.php:1872,
5440
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5441
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5442
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
@@ -5446,12 +5454,12 @@ msgstr "مفتاح API"
5446
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5447
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5448
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5449
- #: src/methods/s3.php:999, src/methods/s3.php:1003
5450
  msgid "Failure: No %s was given."
5451
  msgstr "فضل: لم تعطى أية %s."
5452
 
5453
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5454
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5455
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5456
  msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
5457
 
@@ -5490,7 +5498,7 @@ msgstr "أيضا، يجب عليك قراءة هذا التعليمات الها
5490
  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."
5491
  msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\">من خدمة Rackspace Cloud </a> (يمكن قراءة التعليمات <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">هنا</a>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
5492
 
5493
- #: src/admin.php:735, src/methods/backup-module.php:242
5494
  msgid "Test %s Settings"
5495
  msgstr "اختبار %s الإعدادات"
5496
 
@@ -5506,13 +5514,13 @@ msgstr "خطأ بملفات سحابة - فشل في رفع الملف"
5506
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5507
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5508
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5509
- #: src/methods/s3.php:351, src/methods/s3.php:363, src/methods/s3.php:364
5510
  msgid "%s Error: Failed to upload"
5511
  msgstr "%s خطأ: فشل في تحميل"
5512
 
5513
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5514
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5515
- #: src/methods/googledrive.php:919, src/methods/googledrive.php:924
5516
  msgid "%s Error: Failed to open local file"
5517
  msgstr "%s خطأ: فشل في فتح ملف محلي"
5518
 
@@ -5528,87 +5536,87 @@ msgstr "خطأ ملفات السحابة - فشل في إنشاء والوصول
5528
  msgid "Cloud Files authentication failed"
5529
  msgstr "فشل المصادقة بملفات سحابة"
5530
 
5531
- #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1152
5532
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5533
  msgstr "<strong>بعد</strong> حفظ خياراتك (بالضغط على زر 'حفظ التغيرات' أدناه)، قم بالرجوع مرة أخرى هنا وقم بزيارة الرابط لإكمال عملية المصادقة مه جوجل."
5534
 
5535
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5536
- #: src/methods/googledrive.php:1110
5537
  msgid "Client Secret"
5538
  msgstr "سر العميل"
5539
 
5540
- #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1107
5541
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5542
  msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
5543
 
5544
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5545
- #: src/methods/googledrive.php:1106
5546
  msgid "Client ID"
5547
  msgstr "معرف العميل"
5548
 
5549
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5550
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5551
  msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
5552
 
5553
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5554
  msgid "Select 'Web Application' as the application type."
5555
  msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
5556
 
5557
- #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1088
5558
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5559
  msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
5560
 
5561
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5562
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5563
- #: src/methods/googledrive.php:1071, src/methods/openstack-base.php:531,
5564
- #: src/methods/s3.php:797, src/methods/stream-base.php:218
5565
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5566
  msgstr "%s هو خيار صائب، لأن UpdraftPlus يدعم الرفع المقسم - لا يهمنا كم حجم موقعكم، لأن UpdraftPlus يستطيع تقسيم ورفع الأجزاء المقسمة، ولن يحبط من كثرة المهلات."
5567
 
5568
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5569
- #: src/addons/googlecloud.php:783, src/methods/googledrive.php:526,
5570
- #: src/methods/googledrive.php:527, src/methods/googledrive.php:537,
5571
- #: src/methods/googledrive.php:538
5572
  msgid "Account is not authorized."
5573
  msgstr "حساب غير مخول."
5574
 
5575
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:496,
5576
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
5577
  #: src/methods/stream-base.php:200
5578
  msgid "Failed to upload to %s"
5579
  msgstr "فشل في تحميل إلى %s"
5580
 
5581
- #: src/methods/googledrive.php:479
5582
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5583
  msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك على %d بايت متبقية، ولكن الملف حجمه %d بايت"
5584
 
5585
- #: src/methods/googledrive.php:570, src/methods/googledrive.php:606
5586
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5587
  msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
5588
 
5589
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5590
- #: src/methods/googledrive.php:423
5591
  msgid "you have authenticated your %s account."
5592
  msgstr "لديك حساب %s مصادق عليه."
5593
 
5594
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5595
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5596
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5597
- #: src/methods/googledrive.php:423, src/methods/openstack-base.php:495,
5598
- #: src/methods/s3.php:1063, src/methods/stream-base.php:312
5599
  msgid "Success"
5600
  msgstr "نجاح"
5601
 
5602
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5603
- #: src/methods/dropbox.php:693, src/methods/googledrive.php:397
5604
  msgid "Your %s quota usage: %s %% used, %s available"
5605
  msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
5606
 
5607
- #: src/addons/googlecloud.php:438, src/methods/googledrive.php:370
5608
  msgid "Authorization failed"
5609
  msgstr "فشل التخويل"
5610
 
5611
- #: src/addons/googlecloud.php:430, src/methods/googledrive.php:362
5612
  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."
5613
  msgstr "لم نتمكن من الحصول على أي رمز من جوجل. يعني هذا غالبا أنكم قمتم بإدخال رقمكم السري خاطئ، أو أنكم لم تتمكنوا من إعادة مصادقة الخدمة (أسفله) بعد تصحيحها. تأكد منها، ثم قم بمتابعة الرابط أسفله لإعادة المصادقة مع الخدمة مرة أخرى. أخيرا، إن لم تعمل الإضافة، قم باستعمال خيار الخبراء لإعادة مسح كل خياراتكم، أنشئ معرف عميل جوجل جديد وابدأ من الصفر."
5614
 
@@ -5634,8 +5642,8 @@ msgstr "لا تمتلك إضافة UpdraftPlus %s - نوصيك بتحميلها
5634
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5635
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
5636
 
5637
- #: src/addons/migrator.php:1767, src/admin.php:2808, src/admin.php:2842,
5638
- #: src/admin.php:2846, src/admin.php:3763, src/admin.php:3776,
5639
  #: src/restorer.php:2273, src/restorer.php:2378
5640
  msgid "OK"
5641
  msgstr "حسنا"
@@ -5644,7 +5652,7 @@ msgstr "حسنا"
5644
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5645
  msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
5646
 
5647
- #: src/addons/migrator.php:1146, src/restorer.php:2170
5648
  msgid "the database query being run was:"
5649
  msgstr "ادارة استعلام قاعدة البيانات كانت في:"
5650
 
@@ -5652,13 +5660,13 @@ msgstr "ادارة استعلام قاعدة البيانات كانت في:"
5652
  msgid "will restore as:"
5653
  msgstr "إستعادة على النحو التالي:"
5654
 
5655
- #: src/class-updraftplus.php:4661, src/restorer.php:1688,
5656
  #: src/restorer.php:1777, src/restorer.php:1803
5657
  msgid "Old table prefix:"
5658
  msgstr "بادئة الجدول القديمة:"
5659
 
5660
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5661
- #: src/backup.php:960, src/class-updraftplus.php:4616
5662
  msgid "Backup of:"
5663
  msgstr "نسخة احتياطية لـ:"
5664
 
@@ -5730,60 +5738,60 @@ msgstr "ملف النسخ الاحتياطي غير متوفر."
5730
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5731
  msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
5732
 
5733
- #: src/admin.php:3784, src/admin.php:3785
5734
  msgid "Could not find one of the files for restoration"
5735
  msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
5736
 
5737
- #: src/admin.php:3894
5738
  msgid "Error message"
5739
  msgstr "رسالة الخطأ"
5740
 
5741
- #: src/admin.php:3781
5742
  msgid "The backup records do not contain information about the proper size of this file."
5743
  msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
5744
 
5745
- #: src/admin.php:3773
5746
  msgid "Archive is expected to be size:"
5747
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
5748
 
5749
- #: src/admin.php:3657
5750
  msgid "If making a request for support, please include this information:"
5751
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
5752
 
5753
- #: src/admin.php:3656
5754
  msgid "ABORT: Could not find the information on which entities to restore."
5755
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
5756
 
5757
- #: src/admin.php:3610
5758
  msgid "UpdraftPlus Restoration: Progress"
5759
  msgstr "استرجاع UpdraftPlus: تقدم"
5760
 
5761
- #: src/admin.php:3562
5762
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5763
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
5764
 
5765
- #: src/admin.php:3504
5766
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5767
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
5768
 
5769
- #: src/admin.php:3513
5770
  msgid "Delete this backup set"
5771
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
5772
 
5773
- #: src/admin.php:3181
5774
  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."
5775
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
5776
 
5777
- #: src/admin.php:3178
5778
  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."
5779
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
5780
 
5781
- #: src/admin.php:3176
5782
  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)."
5783
  msgstr ""
5784
 
5785
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5786
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5787
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5788
  msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
5789
 
@@ -5819,23 +5827,23 @@ msgstr "افتراضيا UpdraftPlus يستخدم خدماته الخاصة من
5819
  msgid "Use the server's SSL certificates"
5820
  msgstr "استخدام شهادات SSL للملقم"
5821
 
5822
- #: src/admin.php:3042
5823
  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."
5824
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
5825
 
5826
- #: src/admin.php:3042
5827
  msgid "click here"
5828
  msgstr "انقر هنا"
5829
 
5830
- #: src/admin.php:3042
5831
  msgid "or, to reset this option"
5832
  msgstr "أو، لإعادة هذا الخيار"
5833
 
5834
- #: src/admin.php:3042
5835
  msgid "Follow this link to attempt to create the directory and set the permissions"
5836
  msgstr ""
5837
 
5838
- #: src/admin.php:3034
5839
  msgid "Backup directory specified is writable, which is good."
5840
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
5841
 
@@ -5875,7 +5883,7 @@ msgstr "مطالبة البدء بالنسخ الاحتياطي ..."
5875
  msgid "Cancel"
5876
  msgstr "إلغاء"
5877
 
5878
- #: src/addons/reporting.php:233, src/admin.php:3325
5879
  msgid "None"
5880
  msgstr "لا شيء"
5881
 
@@ -5892,7 +5900,7 @@ msgid "Database encryption phrase"
5892
  msgstr "عبارة تشفير قاعدة البيانات"
5893
 
5894
  #: src/templates/wp-admin/settings/form-contents.php:285,
5895
- #: src/udaddons/options.php:130
5896
  msgid "Email"
5897
  msgstr "البريد الإلكتروني"
5898
 
@@ -5900,11 +5908,11 @@ msgstr "البريد الإلكتروني"
5900
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5901
  msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
5902
 
5903
- #: src/addons/morefiles.php:443, src/admin.php:3112
5904
  msgid "Exclude these:"
5905
  msgstr "استبعاد هذه:"
5906
 
5907
- #: src/admin.php:3103
5908
  msgid "Any other directories found inside wp-content"
5909
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
5910
 
@@ -5920,49 +5928,49 @@ msgstr "على سبيل المثال إذا كان الملقم مشغول في
5920
  msgid "To fix the time at which a backup should take place,"
5921
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
5922
 
5923
- #: src/admin.php:3028
5924
  msgid "Monthly"
5925
  msgstr "شهريا"
5926
 
5927
- #: src/admin.php:3027
5928
  msgid "Fortnightly"
5929
  msgstr "نصف شهري"
5930
 
5931
- #: src/admin.php:3026
5932
  msgid "Weekly"
5933
  msgstr "أسبوعيا"
5934
 
5935
- #: src/admin.php:3025
5936
  msgid "Daily"
5937
  msgstr "يوميا"
5938
 
5939
- #: src/admin.php:694, src/admin.php:3008
5940
  msgid "Download log file"
5941
  msgstr "تحميل ملف السجل"
5942
 
5943
- #: src/admin.php:2905
5944
  msgid "The folder exists, but your webserver does not have permission to write to it."
5945
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
5946
 
5947
- #: src/admin.php:2900
5948
  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"
5949
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
5950
 
5951
- #: src/admin.php:2886
5952
  msgid "The request to the filesystem to create the directory failed."
5953
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
5954
 
5955
- #: src/addons/migrator.php:2245, src/admin.php:688, src/admin.php:2802,
5956
- #: src/admin.php:2835, src/admin.php:3513,
5957
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5958
  msgid "Delete"
5959
  msgstr "حذف"
5960
 
5961
- #: src/admin.php:2586
5962
  msgid "(None)"
5963
  msgstr ""
5964
 
5965
- #: src/admin.php:2742
5966
  msgid "show log"
5967
  msgstr "عرض السجل"
5968
 
@@ -6067,7 +6075,7 @@ msgstr "هل تحتاج إلى دعم ووردبريس متعدد المواقع
6067
  msgid "Multisite"
6068
  msgstr "مواقع متعددة"
6069
 
6070
- #: src/admin.php:2405
6071
  msgid "Go here for help."
6072
  msgstr "الدخول هنا للحصول على المساعدة."
6073
 
@@ -6124,81 +6132,81 @@ msgstr "حذف مجموعة النسخ الاحتياطية"
6124
  msgid "Download error: the server sent us a response which we did not understand."
6125
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
6126
 
6127
- #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:772,
6128
- #: src/addons/migrator.php:1018, src/addons/migrator.php:1099,
6129
- #: src/addons/migrator.php:1146, src/addons/migrator.php:1380,
6130
- #: src/addons/migrator.php:1706, src/addons/migrator.php:1733,
6131
- #: src/addons/migrator.php:1739, src/addons/migrator.php:1801,
6132
- #: src/addons/migrator.php:1841, src/addons/migrator.php:1880,
6133
- #: src/addons/migrator.php:1890, src/addons/migrator.php:1895,
6134
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6135
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6136
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6137
- #: src/admin.php:3778, src/admin.php:3808, src/methods/remotesend.php:71,
6138
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6139
  #: src/restorer.php:1408
6140
  msgid "Error:"
6141
  msgstr "خطأ:"
6142
 
6143
  #: src/admin.php:653,
6144
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6145
  msgid "calculating..."
6146
  msgstr "حساب ..."
6147
 
6148
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
6149
  msgid "UpdraftPlus - Upload backup files"
6150
  msgstr "UpdraftPlus - تحميل ملفات النسخ الاحتياطي"
6151
 
6152
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6153
  msgid "refresh"
6154
  msgstr "تحديث"
6155
 
6156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6157
  msgid "Web-server disk space in use by UpdraftPlus"
6158
  msgstr "مساحة القرص لخادم الويب قيد الاستخدام من قبل UpdraftPlus"
6159
 
6160
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6161
  msgid "This is a count of the contents of your Updraft directory"
6162
  msgstr "هذا عدد من محتويات مجلدات Updraft "
6163
 
6164
- #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:167,
6165
- #: src/methods/googledrive.php:169, src/methods/googledrive.php:423,
6166
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:479,
6167
- #: src/methods/googledrive.php:486, src/methods/googledrive.php:496,
6168
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
6169
- #: src/methods/googledrive.php:1070, src/methods/googledrive.php:1082,
6170
- #: src/methods/googledrive.php:1082, src/methods/googledrive.php:1106,
6171
- #: src/methods/googledrive.php:1110, src/methods/googledrive.php:1122,
6172
- #: src/methods/googledrive.php:1132
6173
  msgid "Google Drive"
6174
  msgstr "جوجل درايف"
6175
 
6176
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6177
  msgid "If you are using this, then turn Turbo/Road mode off."
6178
  msgstr "إذا كنت تستخدم هذا، ازل الوضع Turbo/Road"
6179
 
6180
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6181
  msgid "Opera web browser"
6182
  msgstr "متصفح الويب أوبرا "
6183
 
6184
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:36
6185
  msgid "More tasks:"
6186
  msgstr "المزيد من المهام:"
6187
 
6188
- #: src/admin.php:2505
6189
  msgid "Download most recently modified log file"
6190
  msgstr "تحميل ملف السجل المعدل مؤخرا"
6191
 
6192
- #: src/admin.php:2464, src/admin.php:2470, src/central/bootstrap.php:169
6193
  msgid "(Nothing yet logged)"
6194
  msgstr "(لا شيء حتى الآن تم تسجيله)"
6195
 
6196
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6197
- #: src/admin.php:2463, src/admin.php:2468
6198
  msgid "Last log message"
6199
  msgstr "رسالة السجل الأخيرة"
6200
 
6201
- #: src/addons/migrator.php:224, src/admin.php:693, src/admin.php:3504,
6202
  #: src/templates/wp-admin/settings/tab-status.php:30
6203
  msgid "Restore"
6204
  msgstr "الإستعادة"
@@ -6208,9 +6216,9 @@ msgstr "الإستعادة"
6208
  msgid "Backup Now"
6209
  msgstr "النسخ الاحتياطي الآن"
6210
 
6211
- #: src/addons/migrator.php:1771, src/addons/moredatabase.php:247,
6212
- #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3300,
6213
- #: src/admin.php:3373, src/admin.php:3862,
6214
  #: src/includes/class-wpadmin-commands.php:147,
6215
  #: src/includes/class-wpadmin-commands.php:480,
6216
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
@@ -6218,7 +6226,7 @@ msgstr "النسخ الاحتياطي الآن"
6218
  msgid "Database"
6219
  msgstr "قاعدة بيانات"
6220
 
6221
- #: src/admin.php:295, src/admin.php:4335
6222
  msgid "Files"
6223
  msgstr "ملفات"
6224
 
@@ -6246,15 +6254,15 @@ msgstr "واجهة المشرف هذه تستخدم الجافا سكريبت ب
6246
  msgid "JavaScript warning"
6247
  msgstr "تحذير جافا سكريبت"
6248
 
6249
- #: src/admin.php:673, src/admin.php:2532
6250
  msgid "Delete Old Directories"
6251
  msgstr "حذف الدلائل القديمة"
6252
 
6253
- #: src/admin.php:2277
6254
  msgid "Current limit is:"
6255
  msgstr "الحد الحالي هو:"
6256
 
6257
- #: src/admin.php:2251
6258
  msgid "Your backup has been restored."
6259
  msgstr "تمت استعادة النسخ الاحتياطي."
6260
 
@@ -6266,67 +6274,67 @@ msgstr "الإصدار"
6266
  msgid "Lead developer's homepage"
6267
  msgstr "الولوج لموقع المطور"
6268
 
6269
- #: src/admin.php:4255
6270
  msgid "Your settings have been wiped."
6271
  msgstr "تم القضاء على الإعدادات الخاصة بك."
6272
 
6273
- #: src/admin.php:2211
6274
  msgid "Backup directory successfully created."
6275
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
6276
 
6277
- #: src/admin.php:2204
6278
  msgid "Backup directory could not be created"
6279
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
6280
 
6281
- #: src/admin.php:2774
6282
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6283
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
6284
 
6285
- #: src/admin.php:2772
6286
  msgid "Old directories successfully removed."
6287
  msgstr "تم إزالة الدلائل القديمة بنجاح."
6288
 
6289
- #: src/admin.php:2769, src/admin.php:2769
6290
  msgid "Remove old directories"
6291
  msgstr "إزالة الدلائل القديمة"
6292
 
6293
- #: src/addons/migrator.php:289, src/addons/migrator.php:304,
6294
- #: src/admin.php:2153, src/admin.php:2162, src/admin.php:2171,
6295
- #: src/admin.php:2213, src/admin.php:2776
6296
  msgid "Return to UpdraftPlus Configuration"
6297
  msgstr "العودة إلى اعدادات UpdraftPlus"
6298
 
6299
- #: src/admin.php:666, src/admin.php:2153, src/admin.php:2162,
6300
- #: src/admin.php:2171, src/admin.php:2213, src/admin.php:2776,
6301
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6302
  msgid "Actions"
6303
  msgstr "الإجراءات"
6304
 
6305
- #: src/admin.php:2072
6306
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6307
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
6308
 
6309
- #: src/admin.php:1982
6310
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6311
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
6312
 
6313
- #: src/admin.php:1863
6314
  msgid "No local copy present."
6315
  msgstr "لا نسخة محلية متوفرة."
6316
 
6317
- #: src/admin.php:1860
6318
  msgid "Download in progress"
6319
  msgstr "التحميل في تقدم"
6320
 
6321
- #: src/admin.php:665, src/admin.php:1849
6322
  msgid "File ready."
6323
  msgstr "ملف جاهز."
6324
 
6325
- #: src/admin.php:1830
6326
  msgid "Download failed"
6327
  msgstr "فشل تحميل"
6328
 
6329
- #: src/admin.php:663, src/admin.php:1609, src/admin.php:3761,
6330
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6331
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6332
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
@@ -6335,15 +6343,15 @@ msgstr "فشل تحميل"
6335
  msgid "Error"
6336
  msgstr "خطأ"
6337
 
6338
- #: src/admin.php:1637
6339
  msgid "Could not find that job - perhaps it has already finished?"
6340
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
6341
 
6342
- #: src/admin.php:1629
6343
  msgid "Job deleted"
6344
  msgstr "وظيفة حذفت"
6345
 
6346
- #: src/admin.php:1713
6347
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6348
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
6349
 
@@ -6368,12 +6376,12 @@ msgid "You have less than %s of free disk space on the disk which UpdraftPlus is
6368
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
6369
 
6370
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6371
- #: src/admin.php:957, src/admin.php:966, src/admin.php:3169,
6372
- #: src/admin.php:3176, src/admin.php:3178, src/methods/cloudfiles-new.php:107,
6373
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6374
- #: src/methods/openstack-base.php:541, src/methods/s3.php:821,
6375
- #: src/methods/s3.php:825, src/methods/updraftvault.php:286,
6376
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28,
6377
  #: src/udaddons/updraftplus-addons.php:242
6378
  msgid "Warning"
6379
  msgstr "تحذير"
@@ -6403,21 +6411,21 @@ msgstr ""
6403
  msgid "Like UpdraftPlus and can spare one minute?"
6404
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
6405
 
6406
- #: src/addons/azure.php:217, src/class-updraftplus.php:4340,
6407
- #: src/methods/googledrive.php:1001, src/methods/s3.php:316
6408
  msgid "File not found"
6409
  msgstr "لم يتم العثور على ملف"
6410
 
6411
- #: src/class-updraftplus.php:4247
6412
  msgid "The decryption key used:"
6413
  msgstr "مفتاح فك التشفير المستخدم:"
6414
 
6415
- #: src/class-updraftplus.php:4247, src/class-updraftplus.php:4556,
6416
  #: src/restorer.php:389
6417
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6418
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
6419
 
6420
- #: src/class-updraftplus.php:4228, src/class-updraftplus.php:4544,
6421
  #: src/restorer.php:376
6422
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6423
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
@@ -6426,15 +6434,15 @@ msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ول
6426
  msgid "Could not open the backup file for writing"
6427
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
6428
 
6429
- #: src/class-updraftplus.php:3638
6430
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6431
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
6432
 
6433
- #: src/class-updraftplus.php:3604
6434
  msgid "Could not read the directory"
6435
  msgstr "لا يمكن قراءة الدليل"
6436
 
6437
- #: src/admin.php:1900, src/backup.php:1157
6438
  msgid "Backup directory (%s) is not writable, or does not exist."
6439
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
6440
 
@@ -6442,11 +6450,11 @@ msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتاب
6442
  msgid "WordPress backup is complete"
6443
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
6444
 
6445
- #: src/class-updraftplus.php:3115
6446
  msgid "The backup attempt has finished, apparently unsuccessfully"
6447
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
6448
 
6449
- #: src/class-updraftplus.php:3100
6450
  msgid "The backup apparently succeeded and is now complete"
6451
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
6452
 
@@ -6478,7 +6486,7 @@ msgstr "الإضافات"
6478
  msgid "No log files were found."
6479
  msgstr "لا توجد ملفات السجل."
6480
 
6481
- #: src/admin.php:1782, src/admin.php:1786, src/class-updraftplus.php:516
6482
  msgid "The log file could not be read."
6483
  msgstr "لا يمكن قراءة ملف السجل."
6484
 
11
  "Language: ar\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/class-updraftplus.php:4741
15
+ 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."
16
+ msgstr ""
17
+
18
+ #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
+ msgid "the migrator add-on"
20
+ msgstr ""
21
+
22
+ #: src/class-updraftplus.php:4739
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/class-updraftplus.php:4737
27
+ 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."
28
+ msgstr ""
29
+
30
+ #: src/class-updraftplus.php:4734
31
+ 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."
32
+ msgstr ""
33
+
34
+ #: src/methods/googledrive.php:1153
35
+ msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
36
+ msgstr ""
37
+
38
+ #: src/methods/googledrive.php:1149
39
+ msgid "Follow this link to remove this site's settings for %s."
40
+ msgstr ""
41
+
42
  #: src/addons/sftp.php:346
43
+ msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr ""
45
 
46
  #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr ""
49
 
50
+ #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr ""
54
 
55
+ #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr ""
69
  msgid "North-east Asia"
70
  msgstr ""
71
 
72
+ #: src/udaddons/options.php:118
73
+ 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"
74
  msgstr ""
75
 
76
  #: src/templates/wp-admin/settings/tab-status.php:80
97
  msgid "Select Files"
98
  msgstr ""
99
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  #: src/methods/cloudfiles.php:497
101
  msgid "Rackspace Storage Region"
102
  msgstr ""
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr ""
111
 
 
 
 
 
112
  #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr ""
115
 
116
+ #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr ""
119
 
120
+ #: src/admin.php:1540
 
 
 
 
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr ""
123
 
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr ""
135
 
136
+ #: src/templates/wp-admin/settings/existing-backups-table.php:70
137
  msgid "Stored at: %s"
138
  msgstr ""
139
 
141
  msgid "Cloud Files"
142
  msgstr ""
143
 
144
+ #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr ""
147
 
148
+ #: src/admin.php:4219
149
  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."
150
  msgstr ""
151
 
162
  msgid "Extra database"
163
  msgstr ""
164
 
165
+ #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr ""
168
 
206
  msgid "Skipped tables:"
207
  msgstr ""
208
 
209
+ #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr ""
212
 
213
+ #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr ""
216
 
217
+ #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr ""
220
 
714
  msgid "Backup of: %s"
715
  msgstr ""
716
 
717
+ #: src/methods/googledrive.php:248
718
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
719
  msgstr ""
720
 
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr ""
744
 
745
+ #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr ""
748
 
749
+ #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr ""
752
 
815
  msgid "An error response was received; HTTP code:"
816
  msgstr ""
817
 
818
+ #: src/includes/class-commands.php:322
819
  msgid "%s add-on not found"
820
  msgstr ""
821
 
827
  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"
828
  msgstr ""
829
 
830
+ #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr ""
833
 
834
+ #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr ""
837
 
867
  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."
868
  msgstr ""
869
 
870
+ #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr ""
873
 
874
+ #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr ""
877
 
919
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
920
  msgstr ""
921
 
922
+ #: src/addons/migrator.php:2218
923
  msgid "Create key"
924
  msgstr ""
925
 
926
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr ""
929
 
930
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr "موصى به"
933
 
934
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr ""
937
 
938
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr ""
941
 
942
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr ""
945
 
946
+ #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr ""
951
 
952
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr ""
955
 
956
+ #: src/addons/migrator.php:2208
957
  msgid "Enter your chosen name"
958
  msgstr ""
959
 
960
+ #: src/addons/migrator.php:2207
961
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
962
  msgstr ""
963
 
964
+ #: src/methods/googledrive.php:491
965
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
966
  msgstr ""
967
 
1001
  msgid "Now"
1002
  msgstr "الآن"
1003
 
1004
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr ""
1007
 
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr ""
1125
 
1126
+ #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr ""
1129
 
1130
+ #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr "تم حفظ إعداداتك."
1133
 
1134
+ #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr ""
1137
 
1138
+ #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr "توقف"
1141
 
1142
+ #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr ""
1145
 
1161
  msgid "this backup set"
1162
  msgstr ""
1163
 
1164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
1165
  msgid "calculate"
1166
  msgstr ""
1167
 
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr ""
1207
 
1208
+ #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr ""
1211
 
1212
+ #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr ""
1215
 
1216
+ #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr ""
1219
 
1220
+ #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr "رفض"
1242
  msgid "Which site to restore"
1243
  msgstr ""
1244
 
1245
+ #: src/addons/migrator.php:514, src/addons/migrator.php:515
1246
  msgid "Error when creating new site at your chosen address:"
1247
  msgstr ""
1248
 
1249
+ #: src/addons/migrator.php:456
1250
  msgid "Required information for restoring this backup was not given (%s)"
1251
  msgstr ""
1252
 
1253
+ #: src/addons/migrator.php:415
1254
  msgid "Attribute imported content to user"
1255
  msgstr ""
1256
 
1257
+ #: src/addons/migrator.php:405, src/addons/migrator.php:407
1258
  msgid "You must use lower-case letters or numbers for the site path, only."
1259
  msgstr ""
1260
 
1261
+ #: src/addons/migrator.php:393
1262
  msgid "This feature is not compatible with %s"
1263
  msgstr ""
1264
 
1265
+ #: src/addons/migrator.php:391, src/addons/migrator.php:393
1266
  msgid "Importing a single site into a multisite install"
1267
  msgstr ""
1268
 
1269
+ #: src/addons/migrator.php:382
1270
  msgid "other content from wp-content"
1271
  msgstr ""
1272
 
1273
+ #: src/addons/migrator.php:379
1274
  msgid "WordPress core"
1275
  msgstr ""
1276
 
1277
+ #: src/addons/migrator.php:379, src/addons/migrator.php:382,
1278
+ #: src/addons/migrator.php:385
1279
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1280
  msgstr ""
1281
 
1283
  msgid "Call WordPress action:"
1284
  msgstr ""
1285
 
1286
+ #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr ""
1289
 
1290
+ #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr ""
1293
 
1319
  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)."
1320
  msgstr ""
1321
 
1322
+ #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr ""
1325
 
1326
+ #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr ""
1329
 
1330
+ #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr ""
1333
 
1334
+ #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr "إعدادات"
1337
 
1338
+ #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr ""
1341
 
1342
+ #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr ""
1345
 
1346
+ #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr ""
1349
 
1350
+ #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr ""
1353
 
1354
+ #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr ""
1357
 
1358
+ #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr ""
1361
 
1362
+ #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr ""
1365
 
1366
+ #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr ""
1369
 
1371
  msgid "Premium / Extensions"
1372
  msgstr ""
1373
 
1374
+ #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr ""
1377
 
1518
  msgid "Could not access container"
1519
  msgstr ""
1520
 
1521
+ #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr ""
1524
 
1643
  msgid "Actions upon selected backups"
1644
  msgstr ""
1645
 
1646
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
1647
  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)."
1648
  msgstr ""
1649
 
1650
+ #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr ""
1653
 
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr ""
1701
 
1702
+ #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr ""
1705
 
1706
+ #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr ""
1709
 
1710
+ #: src/admin.php:2291
1711
  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."
1712
  msgstr ""
1713
 
1876
  msgstr ""
1877
 
1878
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
+ #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr ""
1882
 
1900
  msgid "Allow download"
1901
  msgstr ""
1902
 
1903
+ #: src/addons/migrator.php:1762
1904
  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."
1905
  msgstr ""
1906
 
1907
+ #: src/addons/migrator.php:1747, src/admin.php:709
1908
  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."
1909
  msgstr ""
1910
 
1911
+ #: src/addons/migrator.php:2250
1912
  msgid "Existing keys"
1913
  msgstr ""
1914
 
1915
+ #: src/addons/migrator.php:2241
1916
  msgid "No keys to allow remote sites to connect have yet been created."
1917
  msgstr ""
1918
 
1919
+ #: src/addons/migrator.php:2223
1920
  msgid "Your new key:"
1921
  msgstr ""
1922
 
1923
+ #: src/addons/migrator.php:2202
1924
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1925
  msgstr ""
1926
 
1927
+ #: src/addons/migrator.php:2184
1928
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1929
  msgstr ""
1930
 
1931
+ #: src/addons/migrator.php:2184
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr ""
1934
 
1935
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr ""
1938
 
1939
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr ""
1942
 
1943
+ #: src/addons/migrator.php:1849
1944
  msgid "A key with this name already exists; you must use a unique name."
1945
  msgstr ""
1946
 
1947
+ #: src/addons/migrator.php:1793
1948
  msgid "Also send this backup to the active remote storage locations"
1949
  msgstr ""
1950
 
1951
+ #: src/addons/migrator.php:1758
1952
  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."
1953
  msgstr ""
1954
 
1955
+ #: src/addons/migrator.php:1714
1956
  msgid "site not found"
1957
  msgstr ""
1958
 
1959
+ #: src/addons/migrator.php:1699
1960
  msgid "Backup data will be sent to:"
1961
  msgstr ""
1962
 
1963
+ #: src/addons/migrator.php:203
1964
  msgid "Restore an existing backup set onto this site"
1965
  msgstr ""
1966
 
1967
+ #: src/addons/migrator.php:196
1968
  msgid "This site has no backups to restore from yet."
1969
  msgstr ""
1970
 
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr ""
1978
 
1979
+ #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr ""
1982
 
1983
+ #: src/templates/wp-admin/settings/existing-backups-table.php:83
1984
  msgid "Site"
1985
  msgstr ""
1986
 
1987
+ #: src/templates/wp-admin/settings/existing-backups-table.php:82
1988
  msgid "Backup sent to remote site - not available for download."
1989
  msgstr ""
1990
 
1996
  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."
1997
  msgstr ""
1998
 
1999
+ #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr ""
2002
 
2016
  msgid "Creating..."
2017
  msgstr ""
2018
 
2019
+ #: src/addons/migrator.php:2201
2020
  msgid "Or, receive a backup from a remote site"
2021
  msgstr ""
2022
 
2023
+ #: src/addons/migrator.php:2190
2024
  msgid "Paste key here"
2025
  msgstr ""
2026
 
2027
+ #: src/addons/migrator.php:2184
2028
  msgid "How do I get a site's key?"
2029
  msgstr ""
2030
 
2031
+ #: src/addons/migrator.php:2184
2032
  msgid "To add a site as a destination for sending to, enter that site's key below."
2033
  msgstr ""
2034
 
2035
+ #: src/addons/migrator.php:2181
2036
  msgid "Or, send a backup to another site"
2037
  msgstr ""
2038
 
2039
+ #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr ""
2042
 
2043
+ #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr ""
2046
 
2047
+ #: src/addons/migrator.php:1938
2048
  msgid "No receiving sites have yet been added."
2049
  msgstr ""
2050
 
2051
+ #: src/addons/migrator.php:1919
2052
  msgid "It is for sending backups to the following site: "
2053
  msgstr ""
2054
 
2055
+ #: src/addons/migrator.php:1919
2056
  msgid "The key was successfully added."
2057
  msgstr ""
2058
 
2059
+ #: src/addons/migrator.php:1903
2060
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2061
  msgstr ""
2062
 
2063
+ #: src/addons/migrator.php:1892, src/addons/migrator.php:1894,
2064
+ #: src/addons/migrator.php:1898
2065
  msgid "The entered key was corrupt - please try again."
2066
  msgstr ""
2067
 
2068
+ #: src/addons/migrator.php:1890
2069
  msgid "The entered key was the wrong length - please try again."
2070
  msgstr ""
2071
 
2072
+ #: src/addons/migrator.php:1880
2073
  msgid "key"
2074
  msgstr ""
2075
 
2109
  msgid "Resetting..."
2110
  msgstr ""
2111
 
2112
+ #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr ""
2115
 
2117
  msgid "Adding..."
2118
  msgstr ""
2119
 
2120
+ #: src/udaddons/options.php:336
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr ""
2123
 
2137
  msgid "Go here to re-enter your password."
2138
  msgstr ""
2139
 
2140
+ #: src/addons/migrator.php:232
2141
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2142
  msgstr ""
2143
 
2144
+ #: src/addons/migrator.php:203
2145
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2146
  msgstr ""
2147
 
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr ""
2163
 
2164
+ #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr ""
2340
  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)"
2341
  msgstr ""
2342
 
2343
+ #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr ""
2346
 
2415
  msgid "(at same time as files backup)"
2416
  msgstr ""
2417
 
2418
+ #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr ""
2421
 
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr ""
2466
 
2467
+ #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
+ #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr ""
2471
 
2505
  msgid "Check this box to have a basic report sent to"
2506
  msgstr ""
2507
 
2508
+ #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr ""
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr ""
2525
 
2526
+ #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr ""
2529
 
2613
  msgid "(learn more about this significant option)"
2614
  msgstr ""
2615
 
2616
+ #: src/udaddons/options.php:278
2617
  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."
2618
  msgstr ""
2619
 
2620
+ #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr ""
2623
 
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr ""
2636
 
2637
+ #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr ""
2640
 
2642
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2643
  msgstr ""
2644
 
2645
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr ""
2648
 
2649
+ #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr ""
2653
 
2654
+ #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr ""
2657
 
2658
+ #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr ""
2661
 
2675
  msgid "Your label for this backup (optional)"
2676
  msgstr ""
2677
 
2678
+ #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1087
2679
  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."
2680
  msgstr ""
2681
 
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr ""
2697
 
2698
+ #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr ""
2701
 
2702
+ #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr ""
2705
 
2706
+ #: src/addons/migrator.php:1091
2707
  msgid "already done"
2708
  msgstr ""
2709
 
2710
+ #: src/addons/migrator.php:1048
2711
  msgid "skipped (not in list)"
2712
  msgstr ""
2713
 
2714
+ #: src/addons/migrator.php:1048, src/addons/migrator.php:1091,
2715
+ #: src/addons/migrator.php:1223
2716
  msgid "Search and replacing table:"
2717
  msgstr ""
2718
 
2719
+ #: src/addons/migrator.php:330
2720
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2721
  msgstr ""
2722
 
2723
+ #: src/addons/migrator.php:330
2724
  msgid "These tables only"
2725
  msgstr ""
2726
 
2727
+ #: src/addons/migrator.php:329
2728
  msgid "Rows per batch"
2729
  msgstr ""
2730
 
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr ""
2738
 
2739
+ #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr ""
2742
 
2743
+ #: src/class-updraftplus.php:4781
2744
  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."
2745
  msgstr ""
2746
 
2747
+ #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr ""
2750
 
2751
+ #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr ""
2754
 
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
+ #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr ""
2783
 
2784
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2785
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2786
  msgstr ""
2787
 
2788
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr ""
2791
 
2792
+ #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr ""
2795
 
2796
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr ""
2799
 
2800
+ #: src/admin.php:2964
2801
  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."
2802
  msgstr ""
2803
 
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr ""
2807
 
2808
+ #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr ""
2811
 
2812
+ #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr ""
2815
 
2829
  msgid "Memory limit"
2830
  msgstr ""
2831
 
2832
+ #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr ""
2835
 
2853
  msgid "Backup succeeded"
2854
  msgstr ""
2855
 
2856
+ #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr ""
2860
 
2861
+ #: src/addons/migrator.php:793, src/addons/migrator.php:795
2862
  msgid "search and replace"
2863
  msgstr ""
2864
 
2865
+ #: src/addons/migrator.php:332
2866
  msgid "Go"
2867
  msgstr ""
2868
 
2869
+ #: src/addons/migrator.php:321
2870
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2871
  msgstr ""
2872
 
2873
+ #: src/addons/migrator.php:320
2874
  msgid "This can easily destroy your site; so, use it with care!"
2875
  msgstr ""
2876
 
2877
+ #: src/addons/migrator.php:290, src/addons/migrator.php:328
2878
  msgid "Replace with"
2879
  msgstr ""
2880
 
2881
+ #: src/addons/migrator.php:289, src/addons/migrator.php:327
2882
  msgid "Search for"
2883
  msgstr ""
2884
 
2885
+ #: src/addons/migrator.php:288, src/addons/migrator.php:319,
2886
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2887
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2888
  msgid "Search / replace database"
2889
  msgstr ""
2890
 
2891
+ #: src/addons/migrator.php:294
2892
  msgid "search term"
2893
  msgstr ""
2894
 
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr ""
2906
 
2907
+ #: src/methods/googledrive.php:1095
2908
  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."
2909
  msgstr ""
2910
 
2911
+ #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr ""
2914
 
2928
  msgid "Free disk space in account:"
2929
  msgstr ""
2930
 
2931
+ #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr ""
2934
 
2935
+ #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
+ #: src/includes/deprecated-actions.php:29,
2937
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr ""
3027
  msgid "External database (%s)"
3028
  msgstr ""
3029
 
3030
+ #: src/methods/googledrive.php:1095
3031
  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."
3032
  msgstr ""
3033
 
3034
+ #: src/methods/googledrive.php:455
3035
  msgid "failed to access parent folder"
3036
  msgstr ""
3037
 
3038
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3039
+ #: src/addons/onedrive.php:773, src/methods/googledrive.php:408
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr ""
3042
 
3043
+ #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr ""
3046
 
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr ""
3074
 
3075
+ #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr ""
3078
 
3093
  msgid "database connection attempt failed."
3094
  msgstr ""
3095
 
3096
+ #: src/addons/migrator.php:979
3097
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3098
  msgstr ""
3099
 
3176
  msgid "Authenticate with %s"
3177
  msgstr ""
3178
 
3179
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr ""
3182
 
3204
  msgstr ""
3205
 
3206
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3207
+ #: src/methods/dropbox.php:546, src/methods/googledrive.php:1161
3208
  msgid "Account holder's name: %s."
3209
  msgstr ""
3210
 
3211
+ #: src/methods/googledrive.php:1139
3212
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3213
  msgstr ""
3214
 
3215
+ #: src/methods/googledrive.php:1130
3216
  msgid "It is an ID number internal to Google Drive"
3217
  msgstr ""
3218
 
3219
+ #: src/methods/googledrive.php:1130
3220
  msgid "<strong>This is NOT a folder name</strong>."
3221
  msgstr ""
3222
 
3223
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3224
+ #: src/methods/googledrive.php:1126, src/methods/googledrive.php:1136
3225
  msgid "Folder"
3226
  msgstr ""
3227
 
3228
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3229
+ #: src/methods/googledrive.php:1046
3230
  msgid "%s download: failed: file not found"
3231
  msgstr ""
3232
 
3233
+ #: src/addons/googlecloud.php:635, src/methods/googledrive.php:428
3234
  msgid "Name: %s."
3235
  msgstr ""
3236
 
3237
+ #: src/methods/googledrive.php:186
3238
  msgid "Google Drive list files: failed to access parent folder"
3239
  msgstr ""
3240
 
3259
  msgid "Fetch"
3260
  msgstr ""
3261
 
3262
+ #: src/addons/migrator.php:391,
3263
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
  #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr ""
3273
  msgid "Error - failed to download the file"
3274
  msgstr ""
3275
 
3276
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
3277
  msgid "Rescan local folder for new backup sets"
3278
  msgstr ""
3279
 
3293
  msgid "password/key"
3294
  msgstr " الرقم السري/المفتاح"
3295
 
3296
+ #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
+ #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr "مفتاح"
3300
 
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr "الرقم السري/المفتاح الخاص بـ SCP/SFTP"
3312
 
3313
+ #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr "ملفات النسخة الإحتياطية (ولدت من طرف: %s.) "
3316
 
3317
+ #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr "الملفات وقاعدة البيانات للووردبريس بالنسخة الإحتياطية (ولدت من طرف: %s.)"
3320
 
3321
+ #: src/addons/importer.php:276, src/admin.php:3470,
3322
+ #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr "ولدت النسخة الإحتياطية من طرف: %s."
3325
 
3326
+ #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr "قاعدة بيانات (ولدت من طرف: %s.) "
3329
 
3330
+ #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr "مصدر غير معروف"
3333
 
3334
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3335
  msgid "Rescan remote storage"
3336
  msgstr "إعادة فحص الإستضافة الإستضافة السحابية"
3337
 
3338
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:39
3339
  msgid "Upload backup files"
3340
  msgstr "رفع ملفات النسخة الإحتياطية"
3341
 
3342
+ #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr "تم خلق النسخة الإحتياطية من طرف %s, ويمكن استيرادها."
3345
 
3351
  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."
3352
  msgstr "ووردبريس يملك عدد (%d) من المهام المتأخرة. ما لم يكن هذا الموقع خاص بالتطوير، فهذا يعني أن خاصية المهام بالووردبريس غير شغالة."
3353
 
3354
+ #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr "إن كانت هذه النسخة الإحتياطية خلقت بإستخدام تطبيق آخر، يمكن لإضافة UpdraftPlus Premium مساعدتك في حل المشكلة."
3357
 
3359
  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."
3360
  msgstr "مع ذلك، ملفات UpdraftPlus المضغوطة هي ملفات zip/SQL عادية - فإن كنت تعتقد أن الملف هو على الصيغة الصحيحة، المرجو إعادة تسميته بالإسم الموصى به."
3361
 
3362
+ #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
3363
  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))."
3364
  msgstr "هذا الملف لا نعتقد أنه نسخة احتياطية من UpdraftPlus ( كالملفات المضغوطة بصيغتي .zip أو . gz التي لها أسماء مثل: backup_(time)_(site name)_(code)_(type).(zip|gz))."
3365
 
3366
+ #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr "النسخة الإحتياطية خلقت من جهة غير معروفة (%s)، لا يمكن استيرادها."
3389
  msgid "No settings were found"
3390
  msgstr "لم يتم العثور على الإعدادات"
3391
 
3392
+ #: src/class-updraftplus.php:3100
3393
  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."
3394
  msgstr "تمت إضافة واحدة أو أكثر من النسخ الإحتياطية التي وجدناها بالإستضافة السحابية، لاحظ أن هذه النسخ لن تتم مسحها أوتوماتيكيا من الإعادادات الإفتراضية، لو أو متى شئت حذفها يجب عليك حذفها يدويا."
3395
 
3415
  msgid "Remove"
3416
  msgstr "حذف"
3417
 
3418
+ #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr "الأسئلة الشائعة %s الأخرى."
3421
 
3423
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3424
  msgstr "تحقق من هذا الخيار لتتمكن من تلقي المزيد من المعلومات بر الإيميل لعمليات النسخ الإحتياطي - مفيدة جدا ان كان هناك مشاكل بالعملية."
3425
 
3426
+ #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  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."
3428
  msgstr "في حال إدخال ملفات/مجلدات متعددة، عندها قم بالتفرقة بينها باستخدام الفاصلة. للكيانات بالمستوى العلوي، قم باستخدام * في بداية أو نهاية المدخلات لتحل محل البدائل."
3429
 
3430
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr "شركة الإستضافة لموقعك يجب أن تُفعل هذه الوضائف %s قبل أن نتمكن من العمل"
3434
 
3435
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr "نسخة PHP المنصبة تحمل هذه الوظائف الغير مفعلة: %s"
3438
 
3452
  msgid "Backup created by:"
3453
  msgstr "نسخة احتياطية أنشأها:"
3454
 
3455
+ #: src/udaddons/options.php:485
3456
  msgid "Available to claim on this site"
3457
  msgstr "متوفر للطلب من هذا الموقع"
3458
 
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr "استبعاد من لوحة التحكم (لمدة %s أسبوع)"
3504
 
3505
+ #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr "نجاح محاولة التراجع من الضغط المزدوج"
3508
 
3509
+ #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr "فشل محاولة التراجع من الضغط المزدوج"
3512
 
3513
+ #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr "يبدو أن ملف قاعدة البيانات قد تم ضغطه مرتين - نعتقد أن الموقع الذي قمتم بتحميل الملف منه يحمل خادم سيرفر غير مهيء بشكل جيد"
3516
 
3543
  msgid "Errors occurred:"
3544
  msgstr "أخطاء حدثت:"
3545
 
3546
+ #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr "لتحميل ملف السجل لهذه العملية تابع هذا الرابط (ستحتاج هذا الملف في أي عملية طلب للدعم)"
3549
 
3571
  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)"
3572
  msgstr "مقدار الوقت المسموح به لإضافات وورد بالتشغيل منخفض جدا (%s ثانية) - يجب زيادته لتجنب فشل النسخ الاحتياطي (استشر خدمة الزبناء الخاصة بشركة الإستضافة الخاص بك لمزيد من المساعدة - إعدادات max_execution_time PHP، و القيمة الموصى بها هي %s ثانية أو أكثر)"
3573
 
3574
+ #: src/addons/migrator.php:261
3575
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3576
  msgstr "تم تعطيل هذه الإضافة: %s: يمكك اعادة تفعيلها عندما تكون مستعد."
3577
 
3580
  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."
3581
  msgstr "انتهى توقيت الإتصال %s، إذا كنت دخلت الملقم بشكل صحيح، إذا فهذا الخطأ عادة ما يكون سببه جدار حماية قد حظر الاتصال - يجب أن تحقق من المشكلة مع شركة استضافة المواقع الخاصة بك."
3582
 
3583
+ #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr "رسائل:"
3586
 
3740
  msgid "Authorisation failed (check your credentials)"
3741
  msgstr "فشل التفويض (راجع معلوماتك)"
3742
 
3743
+ #: src/methods/updraftvault.php:568, src/udaddons/options.php:270
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr "حدث خطأ غير معروف عند محاولة الاتصال بـ UpdraftPlus.Com"
3746
 
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr "كلمة المرور الخاصة بمستخدم RackSpace هي (هذا لن يظهر مرة أخرى):"
3758
 
3759
+ #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr "خطأ بالبيانات:"
3762
 
3763
+ #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr "النسخة الإحتياطية لا توجد بتاريخ النسخ"
3766
 
3767
+ #: src/admin.php:2585
3768
  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."
3769
  msgstr "تثبيت ووردبريس الخاص بك به مجلدات قديمة قبل حالة الإستعادة/الدمج ( معلومات تقنية: بها بادئة -old). يجب أن تضغط على هذا الزر لحذفها بمجرد التحقق من عمل الإستعادة."
3770
 
3820
  msgid "Debugging information"
3821
  msgstr "معلومات التصحيح"
3822
 
3823
+ #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr "تحميلها على:"
3826
 
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr "%s لم ترسل الاستجابة المتوقعة - تحقق من ملف السجل الخاص بك لمزيد من التفاصيل"
3882
 
3883
+ #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr "وحدة PHP %s غير منصبة - من فضلك قم بمراسلة شركة الإستضافة لتمكينها"
3886
 
3893
  msgstr "سيتم استخدام عنوان البريد الإلكتروني الخاص بالمشرف (%s)."
3894
 
3895
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
+ #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr "الإتصال"
3899
 
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr "لمزيد من ميزات التقارير، استخدام اضافات التقارير."
3903
 
3904
+ #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr "(الإصدار: %s)"
3907
 
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr "تحذير UpdraftPlus :"
3976
 
3977
+ #: src/udaddons/options.php:491
3978
  msgid "(or connect using the form on this page if you have already purchased it)"
3979
  msgstr "(أو قم بالاتصال باستخدام النموذج على هذه الصفحة إذا كنت قد اشتريته بالفعل)"
3980
 
3981
+ #: src/udaddons/options.php:477
3982
  msgid "please follow this link to update the plugin in order to activate it"
3983
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل تفعيله"
3984
 
3985
+ #: src/udaddons/options.php:474
3986
  msgid "please follow this link to update the plugin in order to get it"
3987
  msgstr "يرجى اتباع هذا الرابط لتحديث البرنامج المساعد من أجل الحصول عليه"
3988
 
3989
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
3990
  msgid "latest"
3991
  msgstr "آخر"
3992
 
3993
+ #: src/udaddons/options.php:462
3994
  msgid "Your version: %s"
3995
  msgstr "الإصدار: %s"
3996
 
3997
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
3998
  msgid "You've got it"
3999
  msgstr "كنت قد حصلت عليه"
4000
 
4001
+ #: src/udaddons/options.php:421
4002
  msgid "UpdraftPlus Support"
4003
  msgstr "دعم UpdraftPlus"
4004
 
4005
+ #: src/udaddons/options.php:379
4006
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4007
  msgstr "تحديث يحتوي على الإضافة الخاص بك متاح لـ UpdraftPlus - يرجى اتباع هذا الرابط للحصول عليه."
4008
 
4009
+ #: src/udaddons/options.php:368, src/udaddons/updraftplus-addons.php:290
4010
  msgid "UpdraftPlus Addons"
4011
  msgstr "اضافات UpdraftPlus"
4012
 
4042
  msgid "Reporting"
4043
  msgstr "التقارير"
4044
 
4045
+ #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr "خيارات (الخام)"
4048
 
4070
  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)"
4071
  msgstr "كمية مقدار الذاكرة (RAM) المسموحة ل PHP قليلة جدا (%s ميجابايت) - يجب عليك زيادتها لتفادى مشاكل قلة الذاكرة (تحدث مع الاستضافة الخاصة بك لمزيد من المساعدة)"
4072
 
4073
+ #: src/udaddons/options.php:556
4074
  msgid "Manage Addons"
4075
  msgstr "ادارة الأضافات"
4076
 
4077
+ #: src/udaddons/options.php:492, src/udaddons/options.php:492
4078
  msgid "Buy It"
4079
  msgstr "شراء"
4080
 
4081
+ #: src/udaddons/options.php:491
4082
  msgid "Get it from the UpdraftPlus.Com Store"
4083
  msgstr "الحصول علية من متجر UpdraftPlus.Com"
4084
 
4085
+ #: src/udaddons/options.php:485, src/udaddons/options.php:487
4086
  msgid "activate it on this site"
4087
  msgstr "تنشيطة على هذا الموقع"
4088
 
4089
+ #: src/udaddons/options.php:487
4090
  msgid "You have an inactive purchase"
4091
  msgstr "لديك شراء غير فعال"
4092
 
4093
+ #: src/udaddons/options.php:477
4094
  msgid "Assigned to this site"
4095
  msgstr "تعيين إلى هذا الموقع"
4096
 
4097
+ #: src/udaddons/options.php:474
4098
  msgid "Available for this site (via your all-addons purchase)"
4099
  msgstr "متاح لهذا الموقع (عن طريق الأضافات المشتراة)"
4100
 
4101
+ #: src/udaddons/options.php:468
4102
  msgid "(apparently a pre-release or withdrawn release)"
4103
  msgstr "(على ما يبدو انة اصدار قبل الاصدار الرسمى او اصدار مسحوب)"
4104
 
4105
+ #: src/udaddons/options.php:423
4106
  msgid "Go here"
4107
  msgstr "اذهب هنا"
4108
 
4109
+ #: src/udaddons/options.php:423
4110
  msgid "Need to get support?"
4111
  msgstr "هل انت بحاجة للحصول على الدعم؟"
4112
 
4113
+ #: src/udaddons/options.php:405
4114
  msgid "An error occurred when trying to retrieve your add-ons."
4115
  msgstr "حدث خطأ عند محاولة استرداد الأضافات الخاصة بك."
4116
 
4117
+ #: src/udaddons/options.php:338
4118
  msgid "An unknown response was received. Response was:"
4119
  msgstr "تم تلقى رد غير معروف. الرد هو:"
4120
 
4121
+ #: src/udaddons/options.php:337
4122
  msgid "Claim not granted - your account login details were wrong"
4123
  msgstr "المطالبة لم تمنح - بيانات تسجيل الدخول لحسابك خاطئة"
4124
 
4125
+ #: src/udaddons/options.php:335
4126
  msgid "Please wait whilst we make the claim..."
4127
  msgstr "الرجاء الأنتظار بينما نقوم بمراجعة المطالبة..."
4128
 
4129
+ #: src/udaddons/options.php:288
4130
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4131
  msgstr "حدث خطأ عند محاولة الأتصال ب UpdraftPlus.Com:"
4132
 
4133
+ #: src/udaddons/options.php:281
4134
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr "أنك حاليا <strong>غير متصل</strong> بحسابك فى UpdraftPlus.Com."
4136
 
4137
+ #: src/udaddons/options.php:277
4138
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4139
  msgstr "اذا كنت قد قمت بشراء اضافة جديدة, ثم اتبع هذا الرابط لتحديث اتصالك"
4140
 
4141
+ #: src/udaddons/options.php:276
4142
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4143
  msgstr "انت حاليا <strong>متصل</strong> بحسابك فى UpdraftPlus.Com."
4144
 
4145
+ #: src/udaddons/options.php:247
4146
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4147
  msgstr "هل ترغب فى معرفة المزيد عن تأمين كلمة السر فى UpdraftPlus.Com؟ اقرأ عنها هنا."
4148
 
4149
+ #: src/udaddons/options.php:175
4150
  msgid "Forgotten your details?"
4151
  msgstr "هل نسيت التفاصيل الخاصة بك؟"
4152
 
4153
+ #: src/udaddons/options.php:164
4154
  msgid "Not yet got an account (it's free)? Go get one!"
4155
  msgstr "لم تملك حساب بعد (انة مجانى)؟ احصل علية من هنا!"
4156
 
4157
+ #: src/udaddons/options.php:131
4158
  msgid "Connect with your UpdraftPlus.Com account"
4159
  msgstr "ربط مع حساب UpdraftPlus.Com الخاص بك"
4160
 
4194
  msgid "Your web-server does not have the %s module installed."
4195
  msgstr "خادم الويب الخاص بك ليس بة الوحدة %s مثبتة."
4196
 
4197
+ #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1148
4198
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4199
  msgstr "<strong>(على ما يبدو انة تمت المصادقة ,</strong> على الرغم من ذلك يمكنك المصادقة مرة اخرى لتحديث وصولك اذا كانت هناك مشكلة)."
4200
 
4201
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:67
4202
  msgid "Drop backup files here"
4203
  msgstr "اسقاط ملفات النسخ الاحتياطى هنا"
4204
 
4205
+ #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr "هل لا شيء يحدث عند محاولة النسخ الاحتياطي؟"
4208
 
4243
  msgid "You can send a backup to more than one destination with an add-on."
4244
  msgstr "يمكنك أن ترسل نسخة احتياطية لأكثر من جهة واحدة مع الإضافة."
4245
 
4246
+ #: src/admin.php:2803
4247
  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."
4248
  msgstr "ملاحظة: يستند شريط التقدم أدناه على مراحل، وليس الوقت. لا توقف عملية النسخ الأحتياطى لمجرد أنه يبدو أنه قد بقي في نفس المكان لفترة من الوقت - - وهذا طبيعي."
4249
 
4250
+ #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr "(%s%%, ملف %s من%s)"
4253
 
4288
  msgid "%s settings test result:"
4289
  msgstr "اعدادات نتيجة اختبار %s"
4290
 
4291
+ #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr "(غير منتهي)"
4294
 
4295
+ #: src/admin.php:3542
4296
  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."
4297
  msgstr "اذا كنت ترى اكثر من نسخة احتياطية, ومن ثم انة من المحتمل ان هذا بسبب اعدادات حذف ملفات النسخ الاحتياطى القديمة لم يتم حذفها حتى اكتمال نسخة احتياطية جديدة."
4298
 
4304
  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)."
4305
  msgstr "هذا هو المكان الذى UpdraftPlus يقوم بأنشاء ملفات zip. يجب ان يكون هذا الدليل قابل للكتابة من قبل خادم الويب الخاص بك. انة نسبة الى دليل محتوى موقعك (والتي افتراضيا يسمى wp-content)."
4306
 
4307
+ #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr "رقم الوظيفة: %s"
4310
 
4311
+ #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr "آخر نشاط: منذ %ss"
4314
 
4315
+ #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr "الاستئناف التالي: %d (بعد %ss)"
4318
 
4319
+ #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr "غير معروف"
4324
 
4325
+ #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr "الانتهاء من النسخ الاحتياطي"
4328
 
4329
+ #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr "برجاء الأنتظار حتى الوقت المحدد لأعادة المحاولة بسبب الأخطاء"
4332
 
4333
+ #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr "تلقيم مجموعات النسخ الاحتياطي القديم"
4336
 
4337
+ #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr "تحميل الملفات للمخزن البعيد"
4340
 
4341
+ #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr "قاعدة بيانات مشفرة"
4344
 
4345
+ #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr "تشفير قاعدة البيانات"
4348
 
4349
+ #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr "تم انشاء النسخ الاحتياطى لقاعدة البيانات"
4352
 
4353
+ #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr "الجدول: %s"
4356
 
4357
+ #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr "انشاء النسخ الاحتياطى لقاعدة البيانات"
4360
 
4361
+ #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr "تم انشاء ملف النسخ الاحتياطى zips"
4364
 
4365
+ #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr "انشاء ملف النسخ الاحتياطى zips"
4368
 
4369
+ #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr "بدأ النسخ الاحتياطى"
4372
 
4373
+ #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr "تقدم النسخ الأحتياطى:"
4376
 
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr "UpdraftPlus يحتاج لأنشاء %s فى دليل محتوى موقعك, لكنة فشل - من فضلك قم بالتحقق من الصلاحيات وقم بتفعيلها (%s)"
4392
 
4393
+ #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr "لم ينتهي النسخ الاحتياطي؛ وتم جدولة الأستئناف"
4396
 
4404
  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)."
4405
  msgstr "المصادقة %s تعذر الأستمرار,لأن شيئا آخر على موقع الويب الخاص بك كسرها. حاول تعطيل الإضافات الأخرى الخاصة بك والتحويل إلى الثيم الأفتراضى. (على وجه التحديد، ابحث عن المكون الذي يرسل الإخراج (على الأرجح فى تحذيرات PHP / أخطاء) قبل بداية الصفحة. ايقاف اى اعدادات تصحيح قد تساعد ايضا)."
4406
 
4407
+ #: src/admin.php:2336
4408
  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)."
4409
  msgstr "حد الذاكرة الخاص بك php (الذى وضعتة شركة الأستضافة الخاصة بك) منخفض جدا. UpdraftPlus حاول زيادتة لكنة لم ينجح. هذا البرنامج المساعد قد يواجه صعوبة مع حد الذاكرة أقل من 64 ميجا بايت - خصوصا اذا كنت تملك ملفات كبيرة مرفوعة (من ناحية اخرى,العديد من المواقع تنجح ب 32 ميجا بايت - لكن تجربتك قد تكون مختلفة)."
4410
 
4483
  msgid "Support"
4484
  msgstr "الدعم"
4485
 
4486
+ #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr "UpdraftPlus غير قادر على العثور على بادئة الجدول عند فحص النسخة الاحتياطية لقاعدة البيانات."
4489
 
4490
+ #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr "هذة النسخة الاحتياطية لقاعدة البيانات تفتقد جداول رئيسية: %s"
4493
 
4494
+ #: src/class-updraftplus.php:4774
4495
  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."
4496
  msgstr "انت تقوم بالأستيراد من اصدار احدث من الورد بريس (%s) فى نسخة اقدم (%s). لا يوجد ضمانات ان ورد بريس يمكنة التعامل مع هذا."
4497
 
4498
+ #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr "%s النسخة: %s"
4501
 
4502
+ #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr "حجم قاعدة البيانات صغير جدا بالنسبة لقاعدة بيانات ورد بريس صالحة (الحجم: %s ك بايت)."
4505
 
4508
  msgid "Be safe with an automatic backup"
4509
  msgstr "كن أمنا مع النسخ الاحتياطي التلقائي"
4510
 
4511
+ #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr "إذا كنت لا تزال ترى هذه الكلمات بعد انتهاء صفحة التحميل، ف انة يوجد مشكلة فى الجافا سكريب او jQuery فى الموقع."
4514
 
4556
  msgid "Delete from your web server"
4557
  msgstr "حذف من خادم الويب الخاص بك"
4558
 
4559
+ #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr "يبدو انة مفقود واحد او اكثر من هذة الأرشيفات من مجموعة الأرشيف المتعددة."
4562
 
4563
+ #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr "(%d الأرشيف(s) in set)."
4566
 
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr "خطأ: ارسل خادم السيرفر استجابة فارغة."
4582
 
4583
+ #: src/admin.php:2049
4584
  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?"
4585
  msgstr "هذا يبدو كأنة ملف تم انشائة بواسطة UpdraftPlus, ولكن هذا التثبيت لا يعرف هذا النوع من المواضيع: %s. ربما تحتاج الى تثبيت اضافة ما؟"
4586
 
4616
  msgid "No such backup set exists"
4617
  msgstr "هذا الدليل لا يوجد بة اى مجموعات نسخ احتياطى"
4618
 
4619
+ #: src/admin.php:1291
4620
  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"
4621
  msgstr "لم يتم العثور على ارشيف النسخ الأحتياطى لهذا الملف. استخدام طريقة التخزين البعيد (%s) لا يسمح لنا بأسترداد الملفات. لأجراء اى اعادة استخدم UpdraftPlus, سوف تحتاج الى الحصول على نسخة من هذا الملف ووضعها داخل مجلد العمل ل UpdraftPlus"
4622
 
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr "مسار جذر الوردبريس فى الخادم: %s"
4634
 
4635
+ #: src/methods/s3.php:851
4636
  msgid "%s end-point"
4637
  msgstr "نقطة النهاية %s "
4638
 
4639
+ #: src/methods/s3.php:813
4640
  msgid "... and many more!"
4641
  msgstr "... وغيرها الكثير!"
4642
 
4643
+ #: src/methods/s3generic.php:52, src/methods/s3generic.php:61
4644
  msgid "S3 (Compatible)"
4645
  msgstr "S3 (متوافق)"
4646
 
4647
+ #: src/admin.php:1205
4648
  msgid "File is not locally present - needs retrieving from remote storage"
4649
  msgstr "الملف غير موجود - يحتاج الى استراجعة من التخزين البعيد"
4650
 
4651
+ #: src/admin.php:3810
4652
  msgid "Looking for %s archive: file name: %s"
4653
  msgstr "ابحث عن الأرشيف %s : اسم الملف: %s"
4654
 
4655
+ #: src/admin.php:3771
4656
  msgid "Final checks"
4657
  msgstr "الفحوصات النهائية"
4658
 
4664
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4665
  msgstr "اسقاط ملف قاعدة البيانات المشفرة (ملفات db.gz.crypt) هنا لتحميلها لفك التشفير"
4666
 
4667
+ #: src/admin.php:3162
4668
  msgid "Your wp-content directory server path: %s"
4669
  msgstr "المسار الخاص بمحتوى wp-content على السيرفر هو: %s"
4670
 
4680
  msgid "Processing files - please wait..."
4681
  msgstr "تجهيز الملفات - يرجى الأنتظار..."
4682
 
4683
+ #: src/admin.php:3956,
4684
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4685
  msgid "Please consult this FAQ for help on what to do about it."
4686
  msgstr "يرجى الرجوع الى الأسئلة الشائعة للحصول على المساعدة بشأن ما ينبغى القيام بة حيال ذلك."
4687
 
4688
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4689
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4690
  msgstr "تركيب وردبريس الخاص بك بة مشكلة اخراج مسافة بيضاء اضافية. قد يفسد هذا النسخ الأحتياطية التى قمت بتحميلها من هنا."
4691
 
4692
+ #: src/class-updraftplus.php:4682
4693
  msgid "Failed to open database file."
4694
  msgstr "فشل فى فتح ملف قاعدة البيانات."
4695
 
4696
+ #: src/admin.php:4382
4697
  msgid "Known backups (raw)"
4698
  msgstr "النسخ الأحتياطى المعروفة (الخام)"
4699
 
4705
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4706
  msgstr "محرك الجدول المطلوب (%s) غير موجود - تغيير لMYISAM."
4707
 
4708
+ #: src/addons/migrator.php:341
4709
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4710
  msgstr "هذة تبدو كأنها ترحيل (النسخة الأحتياطة من موقع عنوان الرابط الخاص بة مختلف), لكنك لم تقم بالأشارة على خيار البحث واستبدال قاعدة البيانات. عادة ما يكون خطأ."
4711
 
4712
+ #: src/admin.php:3830
4713
  msgid "file is size:"
4714
  msgstr "حجم الملف:"
4715
 
4716
+ #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4717
+ #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:945,
4718
+ #: src/admin.php:2293, src/backup.php:3043, src/updraftplus.php:156
4719
  msgid "Go here for more information."
4720
  msgstr "اذهب هنا لمزيد من المعلومات."
4721
 
4723
  msgid "Some files are still downloading or being processed - please wait."
4724
  msgstr "بعض الملفات لاتزال يتم تحميلها او اعدادها - من فضلك انتظر."
4725
 
4726
+ #: src/class-updraftplus.php:4746, src/class-updraftplus.php:4764
4727
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4728
  msgstr "هذة النسخة الأحتياطية من موقع مختلف - هذة ليست استعادة, لكن ترحيل. انت تحتاج الى البرنامج المساعد Migrator لتسطيع اتمام هذا العمل."
4729
 
4769
 
4770
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4771
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4772
+ #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:420,
4773
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4774
  #: src/methods/stream-base.php:285
4775
  msgid "%s Error"
4793
  msgid "%s authentication failed"
4794
  msgstr "المصادقة فشلت %s"
4795
 
4796
+ #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4797
+ #: src/admin.php:1994, src/admin.php:2041, src/admin.php:2049,
4798
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4799
+ #: src/class-updraftplus.php:4653, src/class-updraftplus.php:4655,
4800
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4804,
4801
+ #: src/class-updraftplus.php:4839, src/methods/googledrive.php:369,
4802
+ #: src/methods/s3.php:321
4803
  msgid "Error: %s"
4804
  msgstr "خطأ: %s"
4805
 
4806
+ #: src/admin.php:3099
4807
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4808
  msgstr "دليل النسخ الأحتياطى المحدد موجود, لكنة <b>غير</b> قابل للكتابة."
4809
 
4810
+ #: src/admin.php:3097
4811
  msgid "Backup directory specified does <b>not</b> exist."
4812
  msgstr "دليل النسخ الأحتياطى المحدد <b>غير</b> موجود."
4813
 
4814
+ #: src/admin.php:2810, src/admin.php:3053
4815
  msgid "Warning: %s"
4816
  msgstr "تحذير: %s"
4817
 
4839
  msgid "Warnings encountered:"
4840
  msgstr "مصادفة تحذيرات:"
4841
 
4842
+ #: src/class-updraftplus.php:3194
4843
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4844
  msgstr "على ما يبدو ان النسخ الأحتياطى تم بنجاح (مع تحذيرات) وانة انتهى الأن"
4845
 
4847
  msgid "Your free disk space is very low - only %s Mb remain"
4848
  msgstr "المساحة الحرة على القرص الخاص بك منخفضة جدا - فقط متبقى %s ميجابايت"
4849
 
4850
+ #: src/addons/migrator.php:478
4851
  msgid "New site:"
4852
  msgstr "الموقع الجديد:"
4853
 
4854
+ #: src/addons/migrator.php:453
4855
  msgid "Migrated site (from UpdraftPlus)"
4856
  msgstr "المواقع المدمجة (من UpdraftPlus)"
4857
 
4858
+ #: src/addons/migrator.php:400
4859
  msgid "Enter details for where this new site is to live within your multisite install:"
4860
  msgstr "ادخل تفاصيل عن مكان هذا الموقع الجديد ضمن المواقع المتعددة الخاصة بك:"
4861
 
4862
+ #: src/addons/migrator.php:399
4863
  msgid "Information needed to continue:"
4864
  msgstr "المعلومات اللازمة للأستمرار:"
4865
 
4866
+ #: src/addons/migrator.php:356
4867
  msgid "Network activating theme:"
4868
  msgstr "تفعيل ثيم الشبكة:"
4869
 
4870
+ #: src/addons/migrator.php:346
4871
  msgid "Processed plugin:"
4872
  msgstr "المكون الأضافى:"
4873
 
4879
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4880
  msgstr "بعض خوادم FTP المشفرة اعلن انها متوفرة, ولكن بعدذلك انتهى الوقت (بعد وقت طويل) عند محاولتك استخدامة. اذا وجدت هذا يحدث, قم بالذهاب الى \" الخيارات المتقدمة\" (أدناة) وايقاف SSL هناك."
4881
 
4882
+ #: src/methods/s3.php:827
4883
  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."
4884
  msgstr "خادم الويب الخاص بك لا يشمل تركيب وحدة نمطية مطلوبة من PHP (%s). يرجى الأتصال بمزود خدمة الأستضافة الخاصة بك وطلب منهم تفعيلها."
4885
 
4886
+ #: src/methods/s3.php:1082
4887
  msgid "Please check your access credentials."
4888
  msgstr "يرجى التحقق من وصول بيانات الأعتماد."
4889
 
4890
+ #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1060
4891
  msgid "The error reported by %s was:"
4892
  msgstr "الخطأ الذى تم التبليغ عنة من %s هو:"
4893
 
4895
  msgid "Please supply the requested information, and then continue."
4896
  msgstr "يرجى تقديم المعلومات المطلوبة, ومن ثم الاستمرار."
4897
 
4898
+ #: src/class-updraftplus.php:4815, src/restorer.php:1706
4899
  msgid "Site information:"
4900
  msgstr "معلومات عن الموقع:"
4901
 
4903
  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."
4904
  msgstr "مستخدم قاعدة البيانات الخاصة بك ليس لدية تصاريح لأنشاء الجدوال. نحن سوف نقوم بمحاولة الأستعادة عن طريق افراغ الجداول; هذا يجب ان يعمل طالما تستعيدها من اصدار وردبريس بة نفس بنية قاعدة البيانات, وقاعدة البيانات المستوردة لا تحتوى على اى جداول التى ليست موجودة على موقع المستورد."
4905
 
4906
+ #: src/addons/migrator.php:341, src/admin.php:2288,
4907
+ #: src/class-updraftplus.php:4808, src/restorer.php:2033
4908
  msgid "Warning:"
4909
  msgstr "تحذير:"
4910
 
4911
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4800,
4912
  #: src/restorer.php:154
4913
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4914
  msgstr "انت تعمل على وردبريس متعدد المواقع - لكن النسخة الأحتياطية الخاص بك ليست لموقع متعدد المواقع."
4915
 
4916
+ #: src/admin.php:3798
4917
  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."
4918
  msgstr "تخطى استعادة وردبريس الأساسية عند استيراد موقع واحد فى الثبيت متعدد المواقع. اذا كان لديك اى شئ ضرورى فى دليل وردبريس الخاص بك فأنك سوف تحتاج الى اعادة اضافتة يدوياً من ملف مضغوط."
4919
 
4920
+ #: src/admin.php:3228, src/methods/updraftvault.php:286
4921
  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."
4922
  msgstr "لا تشمل php خادم السيرفر الخاص بك <strong>المطلوبة</strong> (الى %s) الوحدة (%s). يرجى الأتصال بخدمة دعم استضافة الويب واطلب منهم تفعيل الوحدة."
4923
 
4972
  msgid "Also delete from remote storage"
4973
  msgstr "حذف ايضاً من التخزين البعيد"
4974
 
4975
+ #: src/admin.php:2540
4976
  msgid "Latest UpdraftPlus.com news:"
4977
  msgstr "اخر اخبار UpdraftPlus.com:"
4978
 
4989
  msgid "News"
4990
  msgstr "اخبار"
4991
 
4992
+ #: src/admin.php:1469, src/includes/class-wpadmin-commands.php:465
4993
  msgid "Backup set not found"
4994
  msgstr "لم يتم العثور على مجموعة النسخ الأحتياطى"
4995
 
5015
  msgid "Testing %s Settings..."
5016
  msgstr "اختبار اعدادات %s ..."
5017
 
5018
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
5019
  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."
5020
  msgstr "او, يمكنك وضعها يدويا فى مسار UpdraftPlus الخاص بك (عادة wp-content/updraft)، على سبيل المثال عبر FTP، ومن ثم استخدام الرابط \"إعادة الفحص\" أعلاه."
5021
 
5043
  msgid "Store at"
5044
  msgstr "المتجر فى"
5045
 
5046
+ #: src/addons/migrator.php:1388
5047
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5048
  msgstr "\"%s\" لا يوجد لدية مفتاح اساسى, تحتاج الى تغيرها يدويا فى الصف %s."
5049
 
5050
+ #: src/addons/migrator.php:1266
5051
  msgid "rows: %d"
5052
  msgstr "الصفوف: %d"
5053
 
5054
+ #: src/addons/migrator.php:1142
5055
  msgid "Time taken (seconds):"
5056
  msgstr "الوقت المستغرق (ثانية):"
5057
 
5058
+ #: src/addons/migrator.php:1141, src/admin.php:659
5059
  msgid "Errors:"
5060
  msgstr "الأخطاء:"
5061
 
5062
+ #: src/addons/migrator.php:1140
5063
  msgid "SQL update commands run:"
5064
  msgstr "تشغيل اوامر تحديث SQL:"
5065
 
5066
+ #: src/addons/migrator.php:1139
5067
  msgid "Changes made:"
5068
  msgstr "التغييرات التي تم إجراؤها:"
5069
 
5070
+ #: src/addons/migrator.php:1138
5071
  msgid "Rows examined:"
5072
  msgstr "فحص الصفوف:"
5073
 
5074
+ #: src/addons/migrator.php:1137
5075
  msgid "Tables examined:"
5076
  msgstr "فحص الجداول:"
5077
 
5078
+ #: src/addons/migrator.php:1026
5079
  msgid "Could not get list of tables"
5080
  msgstr "لا يمكن الحصول على قائمة الجداول"
5081
 
5082
+ #: src/addons/migrator.php:971
5083
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5084
  msgstr "تحذير: رابط موقع قواعد البيانات (%s) يختلف عن ما كنا نتوقعة (%s)"
5085
 
5086
+ #: src/addons/migrator.php:960
5087
  msgid "Nothing to do: the site URL is already: %s"
5088
  msgstr "لا شئ لعملة: رابط الموقع بالفعل: %s"
5089
 
5090
+ #: src/addons/migrator.php:924, src/addons/migrator.php:928,
5091
+ #: src/addons/migrator.php:932, src/addons/migrator.php:937,
5092
+ #: src/addons/migrator.php:941, src/addons/migrator.php:946
5093
  msgid "Error: unexpected empty parameter (%s, %s)"
5094
  msgstr "خطأ: معلمة فارغة غير متوقعة (%s, %s)"
5095
 
5096
+ #: src/addons/migrator.php:884
5097
  msgid "Database: search and replace site URL"
5098
  msgstr "قاعدة البيانات: بحث واستبدال عنوان الموقع"
5099
 
5100
+ #: src/addons/migrator.php:795, src/addons/migrator.php:1123
5101
  msgid "Failed: we did not understand the result returned by the %s operation."
5102
  msgstr "فشل: لم نستطع فهم نتيجة العملية بواسطة %s ."
5103
 
5104
+ #: src/addons/migrator.php:793, src/addons/migrator.php:1121
5105
  msgid "Failed: the %s operation was not able to start."
5106
  msgstr "فشل: العملية %s لم تكن قادرة على البدأ."
5107
 
5108
+ #: src/addons/migrator.php:558
5109
  msgid "(learn more)"
5110
  msgstr "(مزيد من المعلومات)"
5111
 
5112
+ #: src/addons/migrator.php:558
5113
  msgid "Search and replace site location in the database (migrate)"
5114
  msgstr "بحث واستبدال قاعدة البيانات فى الموقع (ترحيل)"
5115
 
5116
+ #: src/addons/migrator.php:558
5117
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5118
  msgstr "سيتم استبدال كافة المراجع الى الموقع فى قاعدة البيانات مع رابط الموقع الحالى, الذى هو: %s"
5119
 
5121
  msgid "Blog uploads"
5122
  msgstr "مدونة الملفات المرفوعة"
5123
 
5124
+ #: src/addons/migrator.php:385, src/addons/multisite.php:649
5125
  msgid "Must-use plugins"
5126
  msgstr "لابد من استخدام الأضافات"
5127
 
5160
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5161
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5162
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5163
+ #: src/udaddons/options.php:135
5164
  msgid "Password"
5165
  msgstr "كلمة السر"
5166
 
5226
  msgstr "فشل: لم نكن قادرين على وضع ملف في هذا الدليل - يرجى مراجعة بيانات الاعتماد الخاصة بك."
5227
 
5228
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5229
+ #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2864,
5230
+ #: src/admin.php:2899, src/admin.php:2908, src/methods/addon-base-v2.php:289,
5231
  #: src/methods/stream-base.php:301
5232
  msgid "Failed"
5233
  msgstr "فشل"
5252
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5253
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5254
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5255
+ #: src/methods/googledrive.php:172, src/methods/googledrive.php:174,
5256
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5257
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5258
  #: src/methods/stream-base.php:246
5320
  msgid "You do not appear to be authenticated with Dropbox"
5321
  msgstr "لا يبدو ان المصادقة مع Dropbox"
5322
 
5323
+ #: src/methods/s3.php:1077
5324
  msgid "The communication with %s was not encrypted."
5325
  msgstr "التواصل مع %s كان غير مشفر."
5326
 
5327
+ #: src/methods/s3.php:1075
5328
  msgid "The communication with %s was encrypted."
5329
  msgstr "التواصل مع %s كان مشفر."
5330
 
5331
+ #: src/addons/googlecloud.php:756, src/methods/s3.php:1072
5332
  msgid "We accessed the bucket, and were able to create files within it."
5333
  msgstr "نحن وصلنا الى الباكت, وتمكنا من انشاء الملفات داخلها."
5334
 
5335
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5336
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5337
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5338
  msgstr "تم الوصول بنجاح الى الباكت. ولكن محاولة انشاء الملف فشلت."
5339
 
5340
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5341
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5342
  msgid "Failure"
5343
  msgstr "فشل"
5344
 
5345
+ #: src/methods/s3.php:1058
5346
  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)."
5347
  msgstr "فشل: لم نستطع بنجاح الدخول او انشاء باكت. من فضلك تحقق من اذون الصلاحية, واذا كانت صحيحة اذا حاول اسم باكت اخر (كمستخدم اخر %s استخدم الأسم بالفعل)."
5348
 
5349
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5350
+ #: src/methods/s3.php:1052
5351
  msgid "Region"
5352
  msgstr "المنطقة"
5353
 
5354
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5355
+ #: src/methods/s3.php:1034
5356
  msgid "Failure: No bucket details were given."
5357
  msgstr "فشل: لم ترد تفاصيل الباكت."
5358
 
5359
+ #: src/methods/s3.php:1012
5360
  msgid "API secret"
5361
  msgstr "API السرية"
5362
 
5363
+ #: src/methods/s3.php:888
5364
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5365
  msgstr "ادخال فقط اى اسم الدلو او مسار الدلو. امثلة: mybucket, mybucket/mypath"
5366
 
5367
+ #: src/methods/s3.php:887
5368
  msgid "%s location"
5369
  msgstr "المكان %s"
5370
 
5371
+ #: src/methods/s3.php:883
5372
  msgid "%s secret key"
5373
  msgstr "المفتاح السرى %s"
5374
 
5375
+ #: src/methods/s3.php:879
5376
  msgid "%s access key"
5377
  msgstr "مفتاح الوصول %s"
5378
 
5379
+ #: src/methods/s3.php:844
5380
  msgid "If you see errors about SSL certificates, then please go here for help."
5381
  msgstr "إذا كنت ترى أخطاء حول شهادات SSL، يرجى الدخول هنا للمساعدة."
5382
 
5383
+ #: src/methods/s3.php:842
5384
  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."
5385
  msgstr "احصل على مفتاح وصولك و كلمتك السرية <a href=\"%s\">من %s آلتك</a>، ثم اختر اسم مستخدم (أحرف وأرقام) (فريد - كل %s المستخدمين) (ومسار اختياريا) لإستخدامه للتخزين. هذا الدلو سيتم خلقه لك ان لم يكن موجود أصلا."
5386
 
5387
+ #: src/methods/s3.php:462, src/methods/s3.php:574, src/methods/s3.php:646,
5388
+ #: src/methods/s3.php:749
5389
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5390
  msgstr "خطأ %s : فشل في الوصول إلى الدلو %s. تحقق من الأذونات واعتماداتك. "
5391
 
5392
+ #: src/methods/s3.php:732, src/methods/s3.php:742, src/methods/s3.php:778
5393
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5394
  msgstr "%s خطأ: فشل في تحميل %s. تحقق من الأذونات واعتماداتك."
5395
 
5396
+ #: src/methods/s3.php:440
5397
  msgid "%s re-assembly error (%s): (see log file for more)"
5398
  msgstr "%s خطأ في إعادة التجميع (%s): (انظر السجل لمزيد من التفاصيل) "
5399
 
5400
+ #: src/methods/s3.php:436
5401
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5402
  msgstr "%s الرفع (%s): إعادة تجميع الملفات التي فشل رفعها (انظر السجل لمزيد من التفاصيل)"
5403
 
5404
+ #: src/methods/s3.php:420
5405
  msgid "%s chunk %s: upload failed"
5406
  msgstr "%s قطعة %s : فشل الرفع"
5407
 
5408
+ #: src/methods/s3.php:410
5409
  msgid "%s error: file %s was shortened unexpectedly"
5410
  msgstr "%s خطأ: تم اختصار الملف %s بشكل غير متوقع"
5411
 
5412
+ #: src/methods/s3.php:388
5413
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5414
  msgstr "%s الرفع: فشل الحصول على uploadID للتحميل المتعدد- راجع ملف السجل لمزيد من التفاصيل"
5415
 
5440
  msgstr "اسم المستخدم"
5441
 
5442
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5443
+ #: src/methods/s3.php:1008
5444
  msgid "API key"
5445
  msgstr "مفتاح API"
5446
 
5447
+ #: src/addons/migrator.php:294, src/addons/migrator.php:1880,
5448
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5449
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5450
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5454
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5455
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5456
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5457
+ #: src/methods/s3.php:1008, src/methods/s3.php:1012
5458
  msgid "Failure: No %s was given."
5459
  msgstr "فضل: لم تعطى أية %s."
5460
 
5461
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5462
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5463
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5464
  msgstr "وحدة UpdraftPlus %s <strong> تتطلب </strong> %s من فضلك لا تقم بتقديم أي طلبات دعم، فليس هناك أي بديل."
5465
 
5498
  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."
5499
  msgstr "احصل على مفتاح API <a href=\"https://mycloud.rackspace.com/\">من خدمة Rackspace Cloud </a> (يمكن قراءة التعليمات <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">هنا</a>)، ثم قم باختيار اسم حاوية لإستخدام مساحة التخزين. سيتم خلق هذه الحاوية ان لم تكن موجودو مسبقا."
5500
 
5501
+ #: src/admin.php:735, src/methods/backup-module.php:247
5502
  msgid "Test %s Settings"
5503
  msgstr "اختبار %s الإعدادات"
5504
 
5514
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5515
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5516
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5517
+ #: src/methods/s3.php:356, src/methods/s3.php:368, src/methods/s3.php:369
5518
  msgid "%s Error: Failed to upload"
5519
  msgstr "%s خطأ: فشل في تحميل"
5520
 
5521
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5522
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5523
+ #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5524
  msgid "%s Error: Failed to open local file"
5525
  msgstr "%s خطأ: فشل في فتح ملف محلي"
5526
 
5536
  msgid "Cloud Files authentication failed"
5537
  msgstr "فشل المصادقة بملفات سحابة"
5538
 
5539
+ #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1166
5540
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5541
  msgstr "<strong>بعد</strong> حفظ خياراتك (بالضغط على زر 'حفظ التغيرات' أدناه)، قم بالرجوع مرة أخرى هنا وقم بزيارة الرابط لإكمال عملية المصادقة مه جوجل."
5542
 
5543
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5544
+ #: src/methods/googledrive.php:1114
5545
  msgid "Client Secret"
5546
  msgstr "سر العميل"
5547
 
5548
+ #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1111
5549
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5550
  msgstr "اذا أظهر لك جوجل في وقت لاحق لك رسالة \"invalid_client\"، إذا فأنت لم تقم بإدخال معرف عميل صالح هنا."
5551
 
5552
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5553
+ #: src/methods/googledrive.php:1110
5554
  msgid "Client ID"
5555
  msgstr "معرف العميل"
5556
 
5557
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5558
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5559
  msgstr "يجب إضافة ما يلي كأذن لإعادة توجيه URI (تحت \"خيارات أخرى\") عندما تسأل"
5560
 
5561
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5562
  msgid "Select 'Web Application' as the application type."
5563
  msgstr "اختر 'تطبيق ويب \"كنوع التطبيق."
5564
 
5565
+ #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1093
5566
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5567
  msgstr "للحصول على مساعدة لفترة أطول، بما في ذلك لقطات، اتبع هذا الرابط. وصف أدناه ما يكفي لعدد أكبر من المستخدمين الخبراء."
5568
 
5569
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5570
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5571
+ #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:531,
5572
+ #: src/methods/s3.php:802, src/methods/stream-base.php:218
5573
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5574
  msgstr "%s هو خيار صائب، لأن UpdraftPlus يدعم الرفع المقسم - لا يهمنا كم حجم موقعكم، لأن UpdraftPlus يستطيع تقسيم ورفع الأجزاء المقسمة، ولن يحبط من كثرة المهلات."
5575
 
5576
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5577
+ #: src/addons/googlecloud.php:783, src/methods/googledrive.php:531,
5578
+ #: src/methods/googledrive.php:532, src/methods/googledrive.php:542,
5579
+ #: src/methods/googledrive.php:543
5580
  msgid "Account is not authorized."
5581
  msgstr "حساب غير مخول."
5582
 
5583
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:501,
5584
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
5585
  #: src/methods/stream-base.php:200
5586
  msgid "Failed to upload to %s"
5587
  msgstr "فشل في تحميل إلى %s"
5588
 
5589
+ #: src/methods/googledrive.php:484
5590
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5591
  msgstr "حساب مكتمل: حساب %s الخاص بك يتوفر فقك على %d بايت متبقية، ولكن الملف حجمه %d بايت"
5592
 
5593
+ #: src/methods/googledrive.php:575, src/methods/googledrive.php:611
5594
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5595
  msgstr "لم تتمكن بعد من الحصول على رمز من جوجل - يتوجب عليك أن تصادق أو تعيد المصادقة مع خدمة جوجل درايف."
5596
 
5597
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5598
+ #: src/methods/googledrive.php:428
5599
  msgid "you have authenticated your %s account."
5600
  msgstr "لديك حساب %s مصادق عليه."
5601
 
5602
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5603
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5604
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5605
+ #: src/methods/googledrive.php:428, src/methods/openstack-base.php:495,
5606
+ #: src/methods/s3.php:1072, src/methods/stream-base.php:312
5607
  msgid "Success"
5608
  msgstr "نجاح"
5609
 
5610
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5611
+ #: src/methods/dropbox.php:693, src/methods/googledrive.php:402
5612
  msgid "Your %s quota usage: %s %% used, %s available"
5613
  msgstr "نسبة %s تدفق البيانات المخصص لك: %s %% مستخدمة، %s متوفرة"
5614
 
5615
+ #: src/addons/googlecloud.php:438, src/methods/googledrive.php:375
5616
  msgid "Authorization failed"
5617
  msgstr "فشل التخويل"
5618
 
5619
+ #: src/addons/googlecloud.php:430, src/methods/googledrive.php:367
5620
  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."
5621
  msgstr "لم نتمكن من الحصول على أي رمز من جوجل. يعني هذا غالبا أنكم قمتم بإدخال رقمكم السري خاطئ، أو أنكم لم تتمكنوا من إعادة مصادقة الخدمة (أسفله) بعد تصحيحها. تأكد منها، ثم قم بمتابعة الرابط أسفله لإعادة المصادقة مع الخدمة مرة أخرى. أخيرا، إن لم تعمل الإضافة، قم باستعمال خيار الخبراء لإعادة مسح كل خياراتكم، أنشئ معرف عميل جوجل جديد وابدأ من الصفر."
5622
 
5642
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5643
  msgstr "تحتاج إلى إعادة المصادقة مع %s، معلومات الاعتماد الموجودة لديك لا تعمل."
5644
 
5645
+ #: src/addons/migrator.php:1775, src/admin.php:1233, src/admin.php:2867,
5646
+ #: src/admin.php:2901, src/admin.php:2905, src/admin.php:3828,
5647
  #: src/restorer.php:2273, src/restorer.php:2378
5648
  msgid "OK"
5649
  msgstr "حسنا"
5652
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5653
  msgstr "لقد تغير بادئة الجدول: تغيير %s حقل / حقول الجدول وفقا لذلك:"
5654
 
5655
+ #: src/addons/migrator.php:1154, src/restorer.php:2170
5656
  msgid "the database query being run was:"
5657
  msgstr "ادارة استعلام قاعدة البيانات كانت في:"
5658
 
5660
  msgid "will restore as:"
5661
  msgstr "إستعادة على النحو التالي:"
5662
 
5663
+ #: src/class-updraftplus.php:4786, src/restorer.php:1688,
5664
  #: src/restorer.php:1777, src/restorer.php:1803
5665
  msgid "Old table prefix:"
5666
  msgstr "بادئة الجدول القديمة:"
5667
 
5668
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5669
+ #: src/backup.php:960, src/class-updraftplus.php:4725
5670
  msgid "Backup of:"
5671
  msgstr "نسخة احتياطية لـ:"
5672
 
5738
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5739
  msgstr "UpdraftPlus لا يمكنه استرجاع هذا النوع بشكل مباشر. يمكنك استرجاعه بشكل يدوي."
5740
 
5741
+ #: src/admin.php:3836, src/admin.php:3837
5742
  msgid "Could not find one of the files for restoration"
5743
  msgstr "لا يمكن العثور على واحد من الملفات لاستعادته"
5744
 
5745
+ #: src/admin.php:3946
5746
  msgid "Error message"
5747
  msgstr "رسالة الخطأ"
5748
 
5749
+ #: src/admin.php:3833
5750
  msgid "The backup records do not contain information about the proper size of this file."
5751
  msgstr "سجلات النسخ الاحتياطي لا تحتوي على معلومات عن الحجم الحقيقي لهذا الملف."
5752
 
5753
+ #: src/admin.php:3825
5754
  msgid "Archive is expected to be size:"
5755
  msgstr "من المتوقع أن يكون حجم الأرشيف:"
5756
 
5757
+ #: src/admin.php:3722
5758
  msgid "If making a request for support, please include this information:"
5759
  msgstr "ان كنت تريد طلب دعم فني، فضلا قم باستخدام هذه المعلومات:"
5760
 
5761
+ #: src/admin.php:3721
5762
  msgid "ABORT: Could not find the information on which entities to restore."
5763
  msgstr "الغاء: لم نتمكن من إيجاد معلومات عن الكيانات التي تريد استعادتها."
5764
 
5765
+ #: src/admin.php:3676
5766
  msgid "UpdraftPlus Restoration: Progress"
5767
  msgstr "استرجاع UpdraftPlus: تقدم"
5768
 
5769
+ #: src/admin.php:3628
5770
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5771
  msgstr "هذه النسخة الإحتياطية غير متوفرة بسجل التاريخ - الغاء عملية الإستعادة. الطابع الزمني:"
5772
 
5773
+ #: src/admin.php:3570
5774
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5775
  msgstr "بعد الضغط على هذا الزر، ستتمكن من اختيار المكونات التي تريد استرجاعها"
5776
 
5777
+ #: src/admin.php:3579
5778
  msgid "Delete this backup set"
5779
  msgstr "حذف هذه المجموعة من النسخ الاحتياطية"
5780
 
5781
+ #: src/admin.php:3240
5782
  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."
5783
  msgstr "أخباؤ سارة: اتصالات موقعكم الآن مع %s يمكن تشفيرها. إن كنت ترى أي أخطاء بخدة التشفير، يمكنك مراجعة خيارات الخبراء للمزيد من المعلومات."
5784
 
5785
+ #: src/admin.php:3237
5786
  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."
5787
  msgstr "نسخة PHP/Curl المنصبة بسيرفرك لا تدعم اتصال https. لا يمكن الوصول لـ %s دونها. من فضلك قم بالإتصال بخدمة الإسضافة الخاصة بك. %s <strong>تتطلب</strong> Curl+https. من فضلك لا تقم بمراسلة خدمة الدعم لأنه لا يوجد أي حل آخر."
5788
 
5789
+ #: src/admin.php:3235
5790
  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)."
5791
  msgstr ""
5792
 
5793
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5794
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5795
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5796
  msgstr "نعلمكم أن نسخة PHP المنصبة بخادمكم لا توفر هذا الموديل (%s). فضل قم بمراسلة خدمة استضافتكم."
5797
 
5827
  msgid "Use the server's SSL certificates"
5828
  msgstr "استخدام شهادات SSL للملقم"
5829
 
5830
+ #: src/admin.php:3101
5831
  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."
5832
  msgstr "إن لم يكن هذا ممكنا قم بالتأكد من الأذونات بسيرفرك الخاص أو غيره لمجلد جديد قابل للكتابة من قبل خادمك."
5833
 
5834
+ #: src/admin.php:3101
5835
  msgid "click here"
5836
  msgstr "انقر هنا"
5837
 
5838
+ #: src/admin.php:3101
5839
  msgid "or, to reset this option"
5840
  msgstr "أو، لإعادة هذا الخيار"
5841
 
5842
+ #: src/admin.php:3101
5843
  msgid "Follow this link to attempt to create the directory and set the permissions"
5844
  msgstr ""
5845
 
5846
+ #: src/admin.php:3093
5847
  msgid "Backup directory specified is writable, which is good."
5848
  msgstr "دليل النسخ الاحتياطي المحدد قابل للكتابة، وهو أمر جيد."
5849
 
5883
  msgid "Cancel"
5884
  msgstr "إلغاء"
5885
 
5886
+ #: src/addons/reporting.php:233, src/admin.php:3384
5887
  msgid "None"
5888
  msgstr "لا شيء"
5889
 
5900
  msgstr "عبارة تشفير قاعدة البيانات"
5901
 
5902
  #: src/templates/wp-admin/settings/form-contents.php:285,
5903
+ #: src/udaddons/options.php:133
5904
  msgid "Email"
5905
  msgstr "البريد الإلكتروني"
5906
 
5908
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5909
  msgstr "المجلدات أعلاه هي كل شيء، باستثناء مجلدات ووردبريس التي يمكن تحميلها من جديد من WordPress.org."
5910
 
5911
+ #: src/addons/morefiles.php:443, src/admin.php:3171
5912
  msgid "Exclude these:"
5913
  msgstr "استبعاد هذه:"
5914
 
5915
+ #: src/admin.php:3162
5916
  msgid "Any other directories found inside wp-content"
5917
  msgstr "أي الدلائل الأخرى الموجودة داخل wp-content"
5918
 
5928
  msgid "To fix the time at which a backup should take place,"
5929
  msgstr "لإصلاح الوقت الذي ينبغي أن تأخذ نسخة احتياطية،"
5930
 
5931
+ #: src/admin.php:3087
5932
  msgid "Monthly"
5933
  msgstr "شهريا"
5934
 
5935
+ #: src/admin.php:3086
5936
  msgid "Fortnightly"
5937
  msgstr "نصف شهري"
5938
 
5939
+ #: src/admin.php:3085
5940
  msgid "Weekly"
5941
  msgstr "أسبوعيا"
5942
 
5943
+ #: src/admin.php:3084
5944
  msgid "Daily"
5945
  msgstr "يوميا"
5946
 
5947
+ #: src/admin.php:694, src/admin.php:3067
5948
  msgid "Download log file"
5949
  msgstr "تحميل ملف السجل"
5950
 
5951
+ #: src/admin.php:2964
5952
  msgid "The folder exists, but your webserver does not have permission to write to it."
5953
  msgstr "المجلد موجود مسبقا، لكن خادمك لا يملك صلاحية الكتابة عليه."
5954
 
5955
+ #: src/admin.php:2959
5956
  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"
5957
  msgstr "تم خلق المجلد، لكن يتوجب علينا تغيير أذوناته لـ 777 (قابل للكتابة) لنتمكن من الكتابة عليه. يجب عليك التحقق من قابلية هذه العملية مع خدمة الإستضافة الخاصة بك."
5958
 
5959
+ #: src/admin.php:2945
5960
  msgid "The request to the filesystem to create the directory failed."
5961
  msgstr "فشل الطلب إلى نظام الملفات لإنشاء الدليل."
5962
 
5963
+ #: src/addons/migrator.php:2253, src/admin.php:688, src/admin.php:2861,
5964
+ #: src/admin.php:2894, src/admin.php:3579,
5965
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5966
  msgid "Delete"
5967
  msgstr "حذف"
5968
 
5969
+ #: src/admin.php:2645
5970
  msgid "(None)"
5971
  msgstr ""
5972
 
5973
+ #: src/admin.php:2801
5974
  msgid "show log"
5975
  msgstr "عرض السجل"
5976
 
6075
  msgid "Multisite"
6076
  msgstr "مواقع متعددة"
6077
 
6078
+ #: src/admin.php:2464
6079
  msgid "Go here for help."
6080
  msgstr "الدخول هنا للحصول على المساعدة."
6081
 
6132
  msgid "Download error: the server sent us a response which we did not understand."
6133
  msgstr "خطأ بالتحميل : بعث لنا الخادم استجابة لم نفهمها."
6134
 
6135
+ #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:780,
6136
+ #: src/addons/migrator.php:1026, src/addons/migrator.php:1107,
6137
+ #: src/addons/migrator.php:1154, src/addons/migrator.php:1388,
6138
+ #: src/addons/migrator.php:1714, src/addons/migrator.php:1741,
6139
+ #: src/addons/migrator.php:1747, src/addons/migrator.php:1809,
6140
+ #: src/addons/migrator.php:1849, src/addons/migrator.php:1888,
6141
+ #: src/addons/migrator.php:1898, src/addons/migrator.php:1903,
6142
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6143
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6144
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6145
+ #: src/admin.php:3830, src/admin.php:3860, src/methods/remotesend.php:71,
6146
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6147
  #: src/restorer.php:1408
6148
  msgid "Error:"
6149
  msgstr "خطأ:"
6150
 
6151
  #: src/admin.php:653,
6152
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6153
  msgid "calculating..."
6154
  msgstr "حساب ..."
6155
 
6156
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:56
6157
  msgid "UpdraftPlus - Upload backup files"
6158
  msgstr "UpdraftPlus - تحميل ملفات النسخ الاحتياطي"
6159
 
6160
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6161
  msgid "refresh"
6162
  msgstr "تحديث"
6163
 
6164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6165
  msgid "Web-server disk space in use by UpdraftPlus"
6166
  msgstr "مساحة القرص لخادم الويب قيد الاستخدام من قبل UpdraftPlus"
6167
 
6168
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6169
  msgid "This is a count of the contents of your Updraft directory"
6170
  msgstr "هذا عدد من محتويات مجلدات Updraft "
6171
 
6172
+ #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:172,
6173
+ #: src/methods/googledrive.php:174, src/methods/googledrive.php:428,
6174
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:484,
6175
+ #: src/methods/googledrive.php:491, src/methods/googledrive.php:501,
6176
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
6177
+ #: src/methods/googledrive.php:1075, src/methods/googledrive.php:1087,
6178
+ #: src/methods/googledrive.php:1087, src/methods/googledrive.php:1110,
6179
+ #: src/methods/googledrive.php:1114, src/methods/googledrive.php:1126,
6180
+ #: src/methods/googledrive.php:1136, src/methods/googledrive.php:1149
6181
  msgid "Google Drive"
6182
  msgstr "جوجل درايف"
6183
 
6184
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6185
  msgid "If you are using this, then turn Turbo/Road mode off."
6186
  msgstr "إذا كنت تستخدم هذا، ازل الوضع Turbo/Road"
6187
 
6188
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6189
  msgid "Opera web browser"
6190
  msgstr "متصفح الويب أوبرا "
6191
 
6192
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:35
6193
  msgid "More tasks:"
6194
  msgstr "المزيد من المهام:"
6195
 
6196
+ #: src/admin.php:2564
6197
  msgid "Download most recently modified log file"
6198
  msgstr "تحميل ملف السجل المعدل مؤخرا"
6199
 
6200
+ #: src/admin.php:2523, src/admin.php:2529, src/central/bootstrap.php:169
6201
  msgid "(Nothing yet logged)"
6202
  msgstr "(لا شيء حتى الآن تم تسجيله)"
6203
 
6204
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6205
+ #: src/admin.php:2522, src/admin.php:2527
6206
  msgid "Last log message"
6207
  msgstr "رسالة السجل الأخيرة"
6208
 
6209
+ #: src/addons/migrator.php:232, src/admin.php:693, src/admin.php:3570,
6210
  #: src/templates/wp-admin/settings/tab-status.php:30
6211
  msgid "Restore"
6212
  msgstr "الإستعادة"
6216
  msgid "Backup Now"
6217
  msgstr "النسخ الاحتياطي الآن"
6218
 
6219
+ #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6220
+ #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3359,
6221
+ #: src/admin.php:3439, src/admin.php:3914,
6222
  #: src/includes/class-wpadmin-commands.php:147,
6223
  #: src/includes/class-wpadmin-commands.php:480,
6224
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
6226
  msgid "Database"
6227
  msgstr "قاعدة بيانات"
6228
 
6229
+ #: src/admin.php:295, src/admin.php:4388
6230
  msgid "Files"
6231
  msgstr "ملفات"
6232
 
6254
  msgid "JavaScript warning"
6255
  msgstr "تحذير جافا سكريبت"
6256
 
6257
+ #: src/admin.php:673, src/admin.php:2591
6258
  msgid "Delete Old Directories"
6259
  msgstr "حذف الدلائل القديمة"
6260
 
6261
+ #: src/admin.php:2336
6262
  msgid "Current limit is:"
6263
  msgstr "الحد الحالي هو:"
6264
 
6265
+ #: src/admin.php:2310
6266
  msgid "Your backup has been restored."
6267
  msgstr "تمت استعادة النسخ الاحتياطي."
6268
 
6274
  msgid "Lead developer's homepage"
6275
  msgstr "الولوج لموقع المطور"
6276
 
6277
+ #: src/admin.php:4308
6278
  msgid "Your settings have been wiped."
6279
  msgstr "تم القضاء على الإعدادات الخاصة بك."
6280
 
6281
+ #: src/admin.php:2270
6282
  msgid "Backup directory successfully created."
6283
  msgstr "تم إنشاء دليل النسخ الاحتياطي بنجاح."
6284
 
6285
+ #: src/admin.php:2263
6286
  msgid "Backup directory could not be created"
6287
  msgstr "لا يمكن إنشاء دليل النسخ الاحتياطي"
6288
 
6289
+ #: src/admin.php:2833
6290
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6291
  msgstr "النسخ السابقة من المجلدات لم تحذف بشكل جيد لسبب ما. يمكنك حذفها بشكل يدوي."
6292
 
6293
+ #: src/admin.php:2831
6294
  msgid "Old directories successfully removed."
6295
  msgstr "تم إزالة الدلائل القديمة بنجاح."
6296
 
6297
+ #: src/admin.php:2828, src/admin.php:2828
6298
  msgid "Remove old directories"
6299
  msgstr "إزالة الدلائل القديمة"
6300
 
6301
+ #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6302
+ #: src/admin.php:2212, src/admin.php:2221, src/admin.php:2230,
6303
+ #: src/admin.php:2272, src/admin.php:2835
6304
  msgid "Return to UpdraftPlus Configuration"
6305
  msgstr "العودة إلى اعدادات UpdraftPlus"
6306
 
6307
+ #: src/admin.php:666, src/admin.php:2212, src/admin.php:2221,
6308
+ #: src/admin.php:2230, src/admin.php:2272, src/admin.php:2835,
6309
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6310
  msgid "Actions"
6311
  msgstr "الإجراءات"
6312
 
6313
+ #: src/admin.php:2131
6314
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6315
  msgstr "إسم ملف خاطئ - نعقد أننا لم نكن المسؤولين في تشفير هذا الملف"
6316
 
6317
+ #: src/admin.php:2041
6318
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6319
  msgstr "إسم ملف خاطئ - نعتقد أننا لم نكن المسؤولين بخلق هذا الملف"
6320
 
6321
+ #: src/admin.php:1922
6322
  msgid "No local copy present."
6323
  msgstr "لا نسخة محلية متوفرة."
6324
 
6325
+ #: src/admin.php:1919
6326
  msgid "Download in progress"
6327
  msgstr "التحميل في تقدم"
6328
 
6329
+ #: src/admin.php:665, src/admin.php:1908
6330
  msgid "File ready."
6331
  msgstr "ملف جاهز."
6332
 
6333
+ #: src/admin.php:1889
6334
  msgid "Download failed"
6335
  msgstr "فشل تحميل"
6336
 
6337
+ #: src/admin.php:663, src/admin.php:1241, src/admin.php:1668,
6338
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6339
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6340
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6343
  msgid "Error"
6344
  msgstr "خطأ"
6345
 
6346
+ #: src/admin.php:1696
6347
  msgid "Could not find that job - perhaps it has already finished?"
6348
  msgstr "لا يمكن العثور على هذا الوظيفة - ربما كان قد أنهى بالفعل؟"
6349
 
6350
+ #: src/admin.php:1688
6351
  msgid "Job deleted"
6352
  msgstr "وظيفة حذفت"
6353
 
6354
+ #: src/admin.php:1772
6355
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6356
  msgstr "أوكي، ستتمكن قريبا من مشاهدة النشاطات بحقل \"سجل آخر الرسائل\" أسفله"
6357
 
6376
  msgstr "تملك مساحة تخزين حرة أقل من %s بالهارد درايف الذي يستخدمه UpdraftPlus لحفظ النسخ الإحتياطية. UpdraftPlus لن يتمكن من حفظ النسخ. من فشلك قم بمراسلة خدمة الإستضافة لحل هذا المشكل."
6377
 
6378
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6379
+ #: src/admin.php:957, src/admin.php:966, src/admin.php:3228,
6380
+ #: src/admin.php:3235, src/admin.php:3237, src/methods/cloudfiles-new.php:107,
6381
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6382
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:827,
6383
+ #: src/methods/s3.php:831, src/methods/updraftvault.php:286,
6384
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6385
  #: src/udaddons/updraftplus-addons.php:242
6386
  msgid "Warning"
6387
  msgstr "تحذير"
6411
  msgid "Like UpdraftPlus and can spare one minute?"
6412
  msgstr "هل أحببت UpdraftPlus وتريد المساعدة في نشره؟"
6413
 
6414
+ #: src/addons/azure.php:217, src/class-updraftplus.php:4449,
6415
+ #: src/methods/googledrive.php:1006, src/methods/s3.php:321
6416
  msgid "File not found"
6417
  msgstr "لم يتم العثور على ملف"
6418
 
6419
+ #: src/class-updraftplus.php:4356
6420
  msgid "The decryption key used:"
6421
  msgstr "مفتاح فك التشفير المستخدم:"
6422
 
6423
+ #: src/class-updraftplus.php:4356, src/class-updraftplus.php:4665,
6424
  #: src/restorer.php:389
6425
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6426
  msgstr "فشل التشفير. غالبا سيكون السبب هو عدم استخدام المفتاح الخطأ."
6427
 
6428
+ #: src/class-updraftplus.php:4337, src/class-updraftplus.php:4653,
6429
  #: src/restorer.php:376
6430
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6431
  msgstr "فشل التشفير. ملف قاعدة البيانات مفر، ولكن لم تقم بإدخال أي مفتاح للتشفير."
6434
  msgid "Could not open the backup file for writing"
6435
  msgstr "لا يمكن فتح ملف النسخ الاحتياطي للكتابة"
6436
 
6437
+ #: src/class-updraftplus.php:3731
6438
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6439
  msgstr "لم نتمكن من حفظ تاريخ النسخ الإحتياطية بسبب عدم ترتيب النسخ. النسخ الإحتياطي ربما قد فشل."
6440
 
6441
+ #: src/class-updraftplus.php:3691
6442
  msgid "Could not read the directory"
6443
  msgstr "لا يمكن قراءة الدليل"
6444
 
6445
+ #: src/admin.php:1959, src/backup.php:1157
6446
  msgid "Backup directory (%s) is not writable, or does not exist."
6447
  msgstr "دليل (%s) النسخ الإحتياطي ليس قابل للكتابة، أو غير موجود."
6448
 
6450
  msgid "WordPress backup is complete"
6451
  msgstr "اكتمال عملية النسخ الإحتياطي للووردبريس"
6452
 
6453
+ #: src/class-updraftplus.php:3203
6454
  msgid "The backup attempt has finished, apparently unsuccessfully"
6455
  msgstr "محاولة النسخ الإحتياطية تمت، لكن يبدو أنها فشلت."
6456
 
6457
+ #: src/class-updraftplus.php:3188
6458
  msgid "The backup apparently succeeded and is now complete"
6459
  msgstr "يبدو أن عملية النسح الإحتياطي قد نجحت وهاهي الآن قد اكتملت"
6460
 
6486
  msgid "No log files were found."
6487
  msgstr "لا توجد ملفات السجل."
6488
 
6489
+ #: src/admin.php:1841, src/admin.php:1845, src/class-updraftplus.php:516
6490
  msgid "The log file could not be read."
6491
  msgstr "لا يمكن قراءة ملف السجل."
6492
 
languages/updraftplus-bn_BD.po CHANGED
@@ -11,20 +11,48 @@ msgstr ""
11
  "Language: bn\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/addons/sftp.php:346
15
- msgid "UpdraftPlus debug mode is on: detailed debugging data follows.n"
16
  msgstr ""
17
 
18
  #: src/admin.php:740
19
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
20
  msgstr ""
21
 
22
- #: src/admin.php:1234, src/admin.php:3881, src/class-updraftplus.php:2095,
23
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
24
  msgid "A PHP fatal error (%s) has occurred: %s"
25
  msgstr ""
26
 
27
- #: src/admin.php:1227, src/admin.php:3873, src/class-updraftplus.php:2088,
28
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
29
  msgid "A PHP exception (%s) has occurred: %s"
30
  msgstr ""
@@ -41,8 +69,8 @@ msgstr ""
41
  msgid "North-east Asia"
42
  msgstr ""
43
 
44
- #: src/udaddons/options.php:115
45
- msgid "Your web server's version of PHP is too old (.phpversion.) - 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"
46
  msgstr ""
47
 
48
  #: src/templates/wp-admin/settings/tab-status.php:80
@@ -69,18 +97,6 @@ msgstr ""
69
  msgid "Select Files"
70
  msgstr ""
71
 
72
- #: src/methods/updraftvault.php:346
73
- msgid "__Password"
74
- msgstr ""
75
-
76
- #: src/methods/updraftvault.php:345
77
- msgid "__E-mail"
78
- msgstr ""
79
-
80
- #: src/methods/openstack-base.php:420
81
- msgid "Error downloading remote file: Failed to download. (.$e->getMessage.)"
82
- msgstr ""
83
-
84
  #: src/methods/cloudfiles.php:497
85
  msgid "Rackspace Storage Region"
86
  msgstr ""
@@ -93,23 +109,15 @@ msgstr ""
93
  msgid "Instant and secure logon with a wave of your phone."
94
  msgstr ""
95
 
96
- #: src/class-updraftplus.php:946
97
- msgid "$pre_line"
98
- msgstr ""
99
-
100
  #: src/backup.php:1907
101
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
102
  msgstr ""
103
 
104
- #: src/admin.php:4362
105
  msgid "Value"
106
  msgstr ""
107
 
108
- #: src/admin.php:3543
109
- msgid "No backup log)"
110
- msgstr ""
111
-
112
- #: src/admin.php:1479
113
  msgid "Did not know how to delete from this cloud service."
114
  msgstr ""
115
 
@@ -125,7 +133,7 @@ msgstr ""
125
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
126
  msgstr ""
127
 
128
- #: src/templates/wp-admin/settings/existing-backups-table.php:69
129
  msgid "Stored at: %s"
130
  msgstr ""
131
 
@@ -133,11 +141,11 @@ msgstr ""
133
  msgid "Cloud Files"
134
  msgstr ""
135
 
136
- #: src/admin.php:4207
137
  msgid "Your settings failed to save. Please refresh the settings page and try again"
138
  msgstr ""
139
 
140
- #: src/admin.php:4166
141
  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."
142
  msgstr ""
143
 
@@ -154,7 +162,7 @@ msgstr ""
154
  msgid "Extra database"
155
  msgstr ""
156
 
157
- #: src/admin.php:3436
158
  msgid "Press here to download or browse"
159
  msgstr ""
160
 
@@ -198,15 +206,15 @@ msgstr ""
198
  msgid "Skipped tables:"
199
  msgstr ""
200
 
201
- #: src/class-updraftplus.php:4764
202
  msgid "This database backup has the following WordPress tables excluded: %s"
203
  msgstr ""
204
 
205
- #: src/admin.php:2422
206
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
207
  msgstr ""
208
 
209
- #: src/admin.php:2422
210
  msgid "All WordPress tables will be backed up."
211
  msgstr ""
212
 
@@ -706,7 +714,7 @@ msgstr ""
706
  msgid "Backup of: %s"
707
  msgstr ""
708
 
709
- #: src/methods/googledrive.php:243
710
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
711
  msgstr ""
712
 
@@ -734,11 +742,11 @@ msgstr ""
734
  msgid "You have selected a remote storage option which has an authorization step to complete:"
735
  msgstr ""
736
 
737
- #: src/admin.php:1531
738
  msgid "Remote files deleted:"
739
  msgstr ""
740
 
741
- #: src/admin.php:1530
742
  msgid "Local files deleted:"
743
  msgstr ""
744
 
@@ -807,7 +815,7 @@ msgstr "কোন ব্লক সরাতে এখানে যান।"
807
  msgid "An error response was received; HTTP code:"
808
  msgstr ""
809
 
810
- #: src/includes/class-commands.php:325
811
  msgid "%s add-on not found"
812
  msgstr "%s অ্যাড-অন পাওয়া যায়নি"
813
 
@@ -819,11 +827,11 @@ msgstr "অথবা ম্যানুয়ালি পুনরুদ্ধা
819
  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"
820
  msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
821
 
822
- #: src/admin.php:2247
823
  msgid "To fix this problem go here."
824
  msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
825
 
826
- #: src/admin.php:2247
827
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
828
  msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
829
 
@@ -859,11 +867,11 @@ msgstr "এই WebDAV URL নিচের অপশনসমূহ পূরণ
859
  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."
860
  msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
861
 
862
- #: src/methods/s3.php:1052
863
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
864
  msgstr "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
865
 
866
- #: src/methods/s3.php:120
867
  msgid "No settings were found - please go to the Settings tab and check your settings"
868
  msgstr "কোন সেটিং পাওয়া যায়নি - দয়া করে সেটিং ট্যাবে গিয়ে আপনার সেটিং যাচাই করুন।"
869
 
@@ -911,49 +919,49 @@ msgstr "ডিরেক্টরি খুলতে ব্যর্থ (ফা
911
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
912
  msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
913
 
914
- #: src/addons/migrator.php:2210
915
  msgid "Create key"
916
  msgstr "পিন তৈরি করুন"
917
 
918
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:513
919
  msgid "slower, strongest"
920
  msgstr "ধীরতর, সবচেয়ে বেশি শক্তিশালী"
921
 
922
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
923
  msgid "recommended"
924
  msgstr "নির্দেশিত"
925
 
926
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
927
  msgid "%s bytes"
928
  msgstr "%s বাইটস"
929
 
930
- #: src/addons/migrator.php:2205, src/central/bootstrap.php:511
931
  msgid "faster (possibility for slow PHP installs)"
932
  msgstr "দ্রুততর (ধীর পি এইচ পি ইন্সটল এর ক্ষেত্রে)"
933
 
934
- #: src/addons/migrator.php:2204, src/central/bootstrap.php:510
935
  msgid "easy to break, fastest"
936
  msgstr "ভাঙতে সহজ, দ্রুততম সময়ে"
937
 
938
- #: src/addons/migrator.php:2204, src/addons/migrator.php:2205,
939
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:510,
940
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
941
  msgid "%s bits"
942
  msgstr "%s বিটস"
943
 
944
- #: src/addons/migrator.php:2202, src/central/bootstrap.php:508
945
  msgid "Encryption key size:"
946
  msgstr "এনক্রিপশন পিনের সাইজঃ"
947
 
948
- #: src/addons/migrator.php:2200
949
  msgid "Enter your chosen name"
950
  msgstr "পূর্বেই ঠিক করা নামটি লিখুন"
951
 
952
- #: src/addons/migrator.php:2199
953
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
954
  msgstr "একটি পিন তৈরি করুনঃ এই পিনটির একটি অনন্য নাম দিন (উদাহরণস্বরূপ, এই সাইট টি কিসের জন্য তা উল্লেখ করতে পারেন), তারপর \"পিন তৈরি করুন\" এ ক্লিক করুনঃ"
955
 
956
- #: src/methods/googledrive.php:486
957
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
958
  msgstr "আপলোড সফল হবে নাঃ যেকোন একটি ফাইলের %s লিমিট হচ্ছে %s, যেখনে এই ফাইলের সাইজ হচ্ছে %s GB (%d bytes)"
959
 
@@ -993,7 +1001,7 @@ msgstr ""
993
  msgid "Now"
994
  msgstr "এখন"
995
 
996
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
997
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
998
  msgstr ""
999
 
@@ -1115,23 +1123,23 @@ msgstr ""
1115
  msgid "UpdraftCentral Connection"
1116
  msgstr ""
1117
 
1118
- #: src/backup.php:867, src/class-updraftplus.php:3094
1119
  msgid "The backup was aborted by the user"
1120
  msgstr ""
1121
 
1122
- #: src/admin.php:4202
1123
  msgid "Your settings have been saved."
1124
  msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
1125
 
1126
- #: src/admin.php:3330
1127
  msgid "Total backup size:"
1128
  msgstr ""
1129
 
1130
- #: src/admin.php:2744
1131
  msgid "stop"
1132
  msgstr ""
1133
 
1134
- #: src/admin.php:2582
1135
  msgid "The backup has finished running"
1136
  msgstr ""
1137
 
@@ -1153,7 +1161,7 @@ msgstr "এই ব্যাকআপ সেটসমূহ"
1153
  msgid "this backup set"
1154
  msgstr "এই ব্যাকআপ সেট"
1155
 
1156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
1157
  msgid "calculate"
1158
  msgstr "গণনা করুন"
1159
 
@@ -1197,19 +1205,19 @@ msgstr ""
1197
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1198
  msgstr ""
1199
 
1200
- #: src/class-updraftplus.php:4679, src/restorer.php:1700
1201
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1202
  msgstr ""
1203
 
1204
- #: src/class-updraftplus.php:4675
1205
  msgid "Please read this link for important information on this process."
1206
  msgstr ""
1207
 
1208
- #: src/class-updraftplus.php:4675
1209
  msgid "It will be imported as a new site."
1210
  msgstr ""
1211
 
1212
- #: src/admin.php:2395, src/templates/wp-admin/notices/horizontal-notice.php:16,
1213
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1214
  msgid "Dismiss"
1215
  msgstr "খারিজ"
@@ -1234,40 +1242,40 @@ msgstr ""
1234
  msgid "Which site to restore"
1235
  msgstr ""
1236
 
1237
- #: src/addons/migrator.php:506, src/addons/migrator.php:507
1238
  msgid "Error when creating new site at your chosen address:"
1239
  msgstr ""
1240
 
1241
- #: src/addons/migrator.php:448
1242
  msgid "Required information for restoring this backup was not given (%s)"
1243
  msgstr ""
1244
 
1245
- #: src/addons/migrator.php:407
1246
  msgid "Attribute imported content to user"
1247
  msgstr ""
1248
 
1249
- #: src/addons/migrator.php:397, src/addons/migrator.php:399
1250
  msgid "You must use lower-case letters or numbers for the site path, only."
1251
  msgstr ""
1252
 
1253
- #: src/addons/migrator.php:385
1254
  msgid "This feature is not compatible with %s"
1255
  msgstr ""
1256
 
1257
- #: src/addons/migrator.php:383, src/addons/migrator.php:385
1258
  msgid "Importing a single site into a multisite install"
1259
  msgstr ""
1260
 
1261
- #: src/addons/migrator.php:374
1262
  msgid "other content from wp-content"
1263
  msgstr ""
1264
 
1265
- #: src/addons/migrator.php:371
1266
  msgid "WordPress core"
1267
  msgstr ""
1268
 
1269
- #: src/addons/migrator.php:371, src/addons/migrator.php:374,
1270
- #: src/addons/migrator.php:377
1271
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1272
  msgstr ""
1273
 
@@ -1275,11 +1283,11 @@ msgstr ""
1275
  msgid "Call WordPress action:"
1276
  msgstr ""
1277
 
1278
- #: src/admin.php:2430
1279
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1280
  msgstr ""
1281
 
1282
- #: src/admin.php:3748
1283
  msgid "Skipping: this archive was already restored."
1284
  msgstr ""
1285
 
@@ -1311,51 +1319,51 @@ msgstr ""
1311
  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)."
1312
  msgstr ""
1313
 
1314
- #: src/admin.php:4079
1315
  msgid "Send this backup to remote storage"
1316
  msgstr ""
1317
 
1318
- #: src/admin.php:4077
1319
  msgid "Check out UpdraftPlus Vault."
1320
  msgstr ""
1321
 
1322
- #: src/admin.php:4077
1323
  msgid "Not got any remote storage?"
1324
  msgstr ""
1325
 
1326
- #: src/admin.php:4077
1327
  msgid "settings"
1328
  msgstr "সেটিংস"
1329
 
1330
- #: src/admin.php:4077
1331
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1332
  msgstr ""
1333
 
1334
- #: src/admin.php:2428
1335
  msgid "Include any files in the backup"
1336
  msgstr ""
1337
 
1338
- #: src/admin.php:2414
1339
  msgid "Include the database in the backup"
1340
  msgstr ""
1341
 
1342
- #: src/admin.php:2394
1343
  msgid "Continue restoration"
1344
  msgstr ""
1345
 
1346
- #: src/admin.php:2389
1347
  msgid "You have an unfinished restoration operation, begun %s ago."
1348
  msgstr ""
1349
 
1350
- #: src/admin.php:2388
1351
  msgid "Unfinished restoration"
1352
  msgstr ""
1353
 
1354
- #: src/admin.php:2386
1355
  msgid "%s minutes, %s seconds"
1356
  msgstr ""
1357
 
1358
- #: src/admin.php:2333
1359
  msgid "Backup Contents And Schedule"
1360
  msgstr ""
1361
 
@@ -1363,7 +1371,7 @@ msgstr ""
1363
  msgid "Premium / Extensions"
1364
  msgstr ""
1365
 
1366
- #: src/admin.php:2113, src/admin.php:2122
1367
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1368
  msgstr ""
1369
 
@@ -1510,7 +1518,7 @@ msgstr ""
1510
  msgid "Could not access container"
1511
  msgstr ""
1512
 
1513
- #: src/class-updraftplus.php:3111
1514
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1515
  msgstr ""
1516
 
@@ -1635,11 +1643,11 @@ msgstr ""
1635
  msgid "Actions upon selected backups"
1636
  msgstr ""
1637
 
1638
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
1639
  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)."
1640
  msgstr ""
1641
 
1642
- #: src/admin.php:1529
1643
  msgid "Backup sets removed:"
1644
  msgstr ""
1645
 
@@ -1691,15 +1699,15 @@ msgstr ""
1691
  msgid "You do not currently have any UpdraftPlus Vault quota"
1692
  msgstr ""
1693
 
1694
- #: src/class-updraftplus.php:4714
1695
  msgid "You must upgrade MySQL to be able to use this database."
1696
  msgstr ""
1697
 
1698
- #: src/class-updraftplus.php:4714
1699
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1700
  msgstr ""
1701
 
1702
- #: src/admin.php:2232
1703
  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."
1704
  msgstr ""
1705
 
@@ -1868,7 +1876,7 @@ msgid "Updraft Vault"
1868
  msgstr "ভল্ট আপডেট করুন"
1869
 
1870
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1871
- #: src/methods/s3.php:1080
1872
  msgid "Delete failed:"
1873
  msgstr "ডিলিট ব্যর্থ:"
1874
 
@@ -1892,71 +1900,71 @@ msgstr "এই অনুমতি ছাড়া আপনি সরাসরি U
1892
  msgid "Allow download"
1893
  msgstr "ডাউনলোড এর অনুমতি দিন"
1894
 
1895
- #: src/addons/migrator.php:1754
1896
  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."
1897
  msgstr ""
1898
 
1899
- #: src/addons/migrator.php:1739, src/admin.php:709
1900
  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."
1901
  msgstr ""
1902
 
1903
- #: src/addons/migrator.php:2242
1904
  msgid "Existing keys"
1905
  msgstr ""
1906
 
1907
- #: src/addons/migrator.php:2233
1908
  msgid "No keys to allow remote sites to connect have yet been created."
1909
  msgstr ""
1910
 
1911
- #: src/addons/migrator.php:2215
1912
  msgid "Your new key:"
1913
  msgstr "আপনার নতুন চাবি:"
1914
 
1915
- #: src/addons/migrator.php:2194
1916
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1917
  msgstr ""
1918
 
1919
- #: src/addons/migrator.php:2176
1920
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1921
  msgstr ""
1922
 
1923
- #: src/addons/migrator.php:2176
1924
  msgid "Keys for this site are created in the section below the one you just pressed in."
1925
  msgstr ""
1926
 
1927
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1928
  msgid "You must copy and paste this key now - it cannot be shown again."
1929
  msgstr ""
1930
 
1931
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1932
  msgid "Key created successfully."
1933
  msgstr "চাবি সফলভাবে তৈরি করা হয়েছে।"
1934
 
1935
- #: src/addons/migrator.php:1841
1936
  msgid "A key with this name already exists; you must use a unique name."
1937
  msgstr ""
1938
 
1939
- #: src/addons/migrator.php:1785
1940
  msgid "Also send this backup to the active remote storage locations"
1941
  msgstr ""
1942
 
1943
- #: src/addons/migrator.php:1750
1944
  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."
1945
  msgstr ""
1946
 
1947
- #: src/addons/migrator.php:1706
1948
  msgid "site not found"
1949
  msgstr "সাইট খুঁজে পাওয়া যায় নি"
1950
 
1951
- #: src/addons/migrator.php:1691
1952
  msgid "Backup data will be sent to:"
1953
  msgstr "ব্যাক তথ্য পাঠানো হবে:"
1954
 
1955
- #: src/addons/migrator.php:195
1956
  msgid "Restore an existing backup set onto this site"
1957
  msgstr ""
1958
 
1959
- #: src/addons/migrator.php:188
1960
  msgid "This site has no backups to restore from yet."
1961
  msgstr ""
1962
 
@@ -1968,15 +1976,15 @@ msgstr "ব্যাকআপ তৈরি করেছেন %s"
1968
  msgid "This storage method does not allow downloading"
1969
  msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
1970
 
1971
- #: src/admin.php:3501
1972
  msgid "(backup set imported from remote location)"
1973
  msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
1974
 
1975
- #: src/templates/wp-admin/settings/existing-backups-table.php:82
1976
  msgid "Site"
1977
  msgstr "সাইট"
1978
 
1979
- #: src/templates/wp-admin/settings/existing-backups-table.php:81
1980
  msgid "Backup sent to remote site - not available for download."
1981
  msgstr "ব্যাকআপ রিমোট সাইটের পাঠানো হয়েছে - ডাউনলোডের জন্য উপলব্ধ না"
1982
 
@@ -1988,7 +1996,7 @@ msgstr ""
1988
  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."
1989
  msgstr ""
1990
 
1991
- #: src/addons/migrator.php:1767, src/admin.php:716
1992
  msgid "Testing connection..."
1993
  msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
1994
 
@@ -2008,60 +2016,60 @@ msgstr "এই চাবিকাঠির একটি নাম দিন (e.g
2008
  msgid "Creating..."
2009
  msgstr "তৈরি করা হচ্ছে..."
2010
 
2011
- #: src/addons/migrator.php:2193
2012
  msgid "Or, receive a backup from a remote site"
2013
  msgstr "অথবা, অন্য একটি সাইট থেকে ব্যাকআপ গ্রহণ করুন"
2014
 
2015
- #: src/addons/migrator.php:2182
2016
  msgid "Paste key here"
2017
  msgstr "চাবি এখানে পেস্ট করুন"
2018
 
2019
- #: src/addons/migrator.php:2176
2020
  msgid "How do I get a site's key?"
2021
  msgstr ""
2022
 
2023
- #: src/addons/migrator.php:2176
2024
  msgid "To add a site as a destination for sending to, enter that site's key below."
2025
  msgstr ""
2026
 
2027
- #: src/addons/migrator.php:2173
2028
  msgid "Or, send a backup to another site"
2029
  msgstr "অথবা, ব্যাকআপ অন্য একটি সাইটে পাঠান"
2030
 
2031
- #: src/addons/migrator.php:1938, src/admin.php:717
2032
  msgid "Send"
2033
  msgstr "পাঠান"
2034
 
2035
- #: src/addons/migrator.php:1932, src/admin.php:708
2036
  msgid "Send to site:"
2037
  msgstr ""
2038
 
2039
- #: src/addons/migrator.php:1930
2040
  msgid "No receiving sites have yet been added."
2041
  msgstr "কোন প্রাপ্তির সাইট এখনো যোগ হয়নি"
2042
 
2043
- #: src/addons/migrator.php:1911
2044
  msgid "It is for sending backups to the following site: "
2045
  msgstr ""
2046
 
2047
- #: src/addons/migrator.php:1911
2048
  msgid "The key was successfully added."
2049
  msgstr ""
2050
 
2051
- #: src/addons/migrator.php:1895
2052
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2053
  msgstr ""
2054
 
2055
- #: src/addons/migrator.php:1884, src/addons/migrator.php:1886,
2056
- #: src/addons/migrator.php:1890
2057
  msgid "The entered key was corrupt - please try again."
2058
  msgstr ""
2059
 
2060
- #: src/addons/migrator.php:1882
2061
  msgid "The entered key was the wrong length - please try again."
2062
  msgstr ""
2063
 
2064
- #: src/addons/migrator.php:1872
2065
  msgid "key"
2066
  msgstr "চাবি"
2067
 
@@ -2101,7 +2109,7 @@ msgstr ""
2101
  msgid "Resetting..."
2102
  msgstr ""
2103
 
2104
- #: src/addons/migrator.php:2182, src/admin.php:705
2105
  msgid "Add site"
2106
  msgstr "সাইট যুক্ত করুন"
2107
 
@@ -2109,7 +2117,7 @@ msgstr "সাইট যুক্ত করুন"
2109
  msgid "Adding..."
2110
  msgstr "যুক্ত করা হচ্ছে..."
2111
 
2112
- #: src/udaddons/options.php:333
2113
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2114
  msgstr ""
2115
 
@@ -2129,11 +2137,11 @@ msgstr "আপনি যদি আপনার পাসওয়ার্ডটি
2129
  msgid "Go here to re-enter your password."
2130
  msgstr "এখানে যান আপনার পাসওয়ার্ডটি পুনরাই দিতে।"
2131
 
2132
- #: src/addons/migrator.php:224
2133
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2134
  msgstr ""
2135
 
2136
- #: src/addons/migrator.php:195
2137
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2138
  msgstr ""
2139
 
@@ -2153,7 +2161,7 @@ msgstr ""
2153
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2154
  msgstr ""
2155
 
2156
- #: src/addons/azure.php:541, src/addons/migrator.php:1754,
2157
  #: src/addons/onedrive.php:955
2158
  msgid "For longer help, including screenshots, follow this link."
2159
  msgstr ""
@@ -2332,7 +2340,7 @@ msgstr ""
2332
  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)"
2333
  msgstr ""
2334
 
2335
- #: src/methods/s3.php:868
2336
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2337
  msgstr ""
2338
 
@@ -2407,7 +2415,7 @@ msgstr ""
2407
  msgid "(at same time as files backup)"
2408
  msgstr ""
2409
 
2410
- #: src/admin.php:3012
2411
  msgid "No backup has been completed"
2412
  msgstr ""
2413
 
@@ -2456,8 +2464,8 @@ msgstr "আপনি বর্তমানে wordpress.org থেকে প্
2456
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2457
  msgstr ""
2458
 
2459
- #: src/methods/s3.php:166, src/methods/s3.php:167, src/methods/s3.php:168,
2460
- #: src/methods/s3.php:176, src/methods/s3.php:177, src/methods/s3.php:178
2461
  msgid "%s Error: Failed to initialise"
2462
  msgstr "%s ত্রুটি: ইনিশিয়ালাইজ করতে ব্যর্থ"
2463
 
@@ -2497,7 +2505,7 @@ msgstr ""
2497
  msgid "Check this box to have a basic report sent to"
2498
  msgstr ""
2499
 
2500
- #: src/admin.php:3021
2501
  msgctxt "i.e. Non-automatic"
2502
  msgid "Manual"
2503
  msgstr ""
@@ -2515,7 +2523,7 @@ msgstr "লক সেটিং পরিবর্তন করুন"
2515
  msgid "Any other file/directory on your server that you wish to back up"
2516
  msgstr ""
2517
 
2518
- #: src/admin.php:2249
2519
  msgid "For even more features and personal support, check out "
2520
  msgstr ""
2521
 
@@ -2605,11 +2613,11 @@ msgstr ""
2605
  msgid "(learn more about this significant option)"
2606
  msgstr ""
2607
 
2608
- #: src/udaddons/options.php:275
2609
  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."
2610
  msgstr ""
2611
 
2612
- #: src/admin.php:2582, src/admin.php:3523, src/admin.php:3524
2613
  msgid "View Log"
2614
  msgstr ""
2615
 
@@ -2626,7 +2634,7 @@ msgstr ""
2626
  msgid "and retain this many scheduled backups"
2627
  msgstr ""
2628
 
2629
- #: src/admin.php:2982
2630
  msgid "incremental backup; base backup: %s"
2631
  msgstr ""
2632
 
@@ -2634,20 +2642,20 @@ msgstr ""
2634
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2635
  msgstr ""
2636
 
2637
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
2638
  msgid "Upload files into UpdraftPlus."
2639
  msgstr ""
2640
 
2641
- #: src/admin.php:932, src/includes/class-commands.php:379,
2642
  #: src/templates/wp-admin/settings/tab-status.php:22
2643
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2644
  msgstr ""
2645
 
2646
- #: src/class-updraftplus.php:4664
2647
  msgid "Backup label:"
2648
  msgstr ""
2649
 
2650
- #: src/admin.php:1774
2651
  msgid "Error: unexpected file read fail"
2652
  msgstr ""
2653
 
@@ -2667,7 +2675,7 @@ msgstr ""
2667
  msgid "Your label for this backup (optional)"
2668
  msgstr ""
2669
 
2670
- #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1082
2671
  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."
2672
  msgstr ""
2673
 
@@ -2687,36 +2695,36 @@ msgstr ""
2687
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2688
  msgstr ""
2689
 
2690
- #: src/class-updraftplus.php:4683
2691
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2692
  msgstr ""
2693
 
2694
- #: src/class-updraftplus.php:4683
2695
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2696
  msgstr ""
2697
 
2698
- #: src/addons/migrator.php:1083
2699
  msgid "already done"
2700
  msgstr ""
2701
 
2702
- #: src/addons/migrator.php:1040
2703
  msgid "skipped (not in list)"
2704
  msgstr ""
2705
 
2706
- #: src/addons/migrator.php:1040, src/addons/migrator.php:1083,
2707
- #: src/addons/migrator.php:1215
2708
  msgid "Search and replacing table:"
2709
  msgstr ""
2710
 
2711
- #: src/addons/migrator.php:322
2712
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2713
  msgstr ""
2714
 
2715
- #: src/addons/migrator.php:322
2716
  msgid "These tables only"
2717
  msgstr ""
2718
 
2719
- #: src/addons/migrator.php:321
2720
  msgid "Rows per batch"
2721
  msgstr ""
2722
 
@@ -2728,19 +2736,19 @@ msgstr ""
2728
  msgid "You need to connect to receive future updates to UpdraftPlus."
2729
  msgstr ""
2730
 
2731
- #: src/class-updraftplus.php:4656
2732
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2733
  msgstr ""
2734
 
2735
- #: src/class-updraftplus.php:4656
2736
  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."
2737
  msgstr ""
2738
 
2739
- #: src/class-updraftplus.php:4656
2740
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2741
  msgstr ""
2742
 
2743
- #: src/class-updraftplus.php:4656
2744
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2745
  msgstr ""
2746
 
@@ -2769,27 +2777,27 @@ msgstr ""
2769
  msgid "UpdraftPlus is on social media - check us out!"
2770
  msgstr ""
2771
 
2772
- #: src/admin.php:3592
2773
  msgid "Why am I seeing this?"
2774
  msgstr "আমি কেন এটি দেখছি?"
2775
 
2776
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2777
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2778
  msgstr ""
2779
 
2780
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2781
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2782
  msgstr ""
2783
 
2784
- #: src/admin.php:1713, src/admin.php:1725
2785
  msgid "Start backup"
2786
  msgstr "ব্যাকআপ শুরু করুন"
2787
 
2788
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
2789
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2790
  msgstr ""
2791
 
2792
- #: src/admin.php:2905
2793
  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."
2794
  msgstr ""
2795
 
@@ -2797,11 +2805,11 @@ msgstr ""
2797
  msgid "Unless you have a problem, you can completely ignore everything here."
2798
  msgstr ""
2799
 
2800
- #: src/admin.php:1935
2801
  msgid "This file could not be uploaded"
2802
  msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
2803
 
2804
- #: src/admin.php:1900
2805
  msgid "You will find more information about this in the Settings section."
2806
  msgstr ""
2807
 
@@ -2821,7 +2829,7 @@ msgstr ""
2821
  msgid "Memory limit"
2822
  msgstr ""
2823
 
2824
- #: src/class-updraftplus.php:4786, src/restorer.php:1493
2825
  msgid "restoration"
2826
  msgstr ""
2827
 
@@ -2845,42 +2853,42 @@ msgstr ""
2845
  msgid "Backup succeeded"
2846
  msgstr ""
2847
 
2848
- #: src/admin.php:3022, src/admin.php:3023, src/admin.php:3024,
2849
  #: src/updraftplus.php:99, src/updraftplus.php:100
2850
  msgid "Every %s hours"
2851
  msgstr ""
2852
 
2853
- #: src/addons/migrator.php:785, src/addons/migrator.php:787
2854
  msgid "search and replace"
2855
  msgstr ""
2856
 
2857
- #: src/addons/migrator.php:324
2858
  msgid "Go"
2859
  msgstr ""
2860
 
2861
- #: src/addons/migrator.php:313
2862
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2863
  msgstr ""
2864
 
2865
- #: src/addons/migrator.php:312
2866
  msgid "This can easily destroy your site; so, use it with care!"
2867
  msgstr ""
2868
 
2869
- #: src/addons/migrator.php:282, src/addons/migrator.php:320
2870
  msgid "Replace with"
2871
  msgstr ""
2872
 
2873
- #: src/addons/migrator.php:281, src/addons/migrator.php:319
2874
  msgid "Search for"
2875
  msgstr ""
2876
 
2877
- #: src/addons/migrator.php:280, src/addons/migrator.php:311,
2878
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2879
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2880
  msgid "Search / replace database"
2881
  msgstr ""
2882
 
2883
- #: src/addons/migrator.php:286
2884
  msgid "search term"
2885
  msgstr ""
2886
 
@@ -2896,11 +2904,11 @@ msgstr ""
2896
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2897
  msgstr ""
2898
 
2899
- #: src/methods/googledrive.php:1090
2900
  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."
2901
  msgstr ""
2902
 
2903
- #: src/admin.php:3350
2904
  msgid "You have not yet made any backups."
2905
  msgstr ""
2906
 
@@ -2920,13 +2928,13 @@ msgstr ""
2920
  msgid "Free disk space in account:"
2921
  msgstr ""
2922
 
2923
- #: src/admin.php:4173, src/templates/wp-admin/settings/tab-status.php:27
2924
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2925
  msgstr ""
2926
 
2927
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1578,
2928
- #: src/includes/deprecated-actions.php:30,
2929
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:22,
2930
  #: src/templates/wp-admin/settings/tab-bar.php:6
2931
  msgid "Existing Backups"
2932
  msgstr ""
@@ -3019,20 +3027,20 @@ msgstr ""
3019
  msgid "External database (%s)"
3020
  msgstr ""
3021
 
3022
- #: src/methods/googledrive.php:1090
3023
  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."
3024
  msgstr ""
3025
 
3026
- #: src/methods/googledrive.php:450
3027
  msgid "failed to access parent folder"
3028
  msgstr ""
3029
 
3030
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3031
- #: src/addons/onedrive.php:773, src/methods/googledrive.php:403
3032
  msgid "However, subsequent access attempts failed:"
3033
  msgstr ""
3034
 
3035
- #: src/admin.php:3375
3036
  msgid "External database"
3037
  msgstr ""
3038
 
@@ -3064,7 +3072,7 @@ msgstr ""
3064
  msgid "use UpdraftPlus Premium"
3065
  msgstr ""
3066
 
3067
- #: src/class-updraftplus.php:4546
3068
  msgid "Decryption failed. The database file is encrypted."
3069
  msgstr ""
3070
 
@@ -3085,7 +3093,7 @@ msgstr ""
3085
  msgid "database connection attempt failed."
3086
  msgstr ""
3087
 
3088
- #: src/addons/migrator.php:971
3089
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3090
  msgstr ""
3091
 
@@ -3168,7 +3176,7 @@ msgstr ""
3168
  msgid "Authenticate with %s"
3169
  msgstr ""
3170
 
3171
- #: src/methods/cloudfiles.php:422
3172
  msgid "Error downloading remote file: Failed to download"
3173
  msgstr ""
3174
 
@@ -3196,37 +3204,37 @@ msgid "%s error - failed to access the container"
3196
  msgstr ""
3197
 
3198
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3199
- #: src/methods/dropbox.php:546, src/methods/googledrive.php:1146
3200
  msgid "Account holder's name: %s."
3201
  msgstr ""
3202
 
3203
- #: src/methods/googledrive.php:1135
3204
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3205
  msgstr ""
3206
 
3207
- #: src/methods/googledrive.php:1126
3208
  msgid "It is an ID number internal to Google Drive"
3209
  msgstr ""
3210
 
3211
- #: src/methods/googledrive.php:1126
3212
  msgid "<strong>This is NOT a folder name</strong>."
3213
  msgstr ""
3214
 
3215
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3216
- #: src/methods/googledrive.php:1122, src/methods/googledrive.php:1132
3217
  msgid "Folder"
3218
  msgstr ""
3219
 
3220
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3221
- #: src/methods/googledrive.php:1041
3222
  msgid "%s download: failed: file not found"
3223
  msgstr ""
3224
 
3225
- #: src/addons/googlecloud.php:635, src/methods/googledrive.php:423
3226
  msgid "Name: %s."
3227
  msgstr ""
3228
 
3229
- #: src/methods/googledrive.php:181
3230
  msgid "Google Drive list files: failed to access parent folder"
3231
  msgstr ""
3232
 
@@ -3251,8 +3259,8 @@ msgstr ""
3251
  msgid "Fetch"
3252
  msgstr ""
3253
 
3254
- #: src/addons/migrator.php:383,
3255
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:62,
3256
  #: src/templates/wp-admin/settings/form-contents.php:212
3257
  msgid "This feature requires %s version %s or later"
3258
  msgstr ""
@@ -3265,7 +3273,7 @@ msgstr ""
3265
  msgid "Error - failed to download the file"
3266
  msgstr ""
3267
 
3268
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3269
  msgid "Rescan local folder for new backup sets"
3270
  msgstr ""
3271
 
@@ -3285,8 +3293,8 @@ msgstr ""
3285
  msgid "password/key"
3286
  msgstr ""
3287
 
3288
- #: src/addons/azure.php:549, src/addons/migrator.php:2200,
3289
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4362
3290
  msgid "Key"
3291
  msgstr ""
3292
 
@@ -3302,36 +3310,36 @@ msgstr ""
3302
  msgid "SCP/SFTP password/key"
3303
  msgstr ""
3304
 
3305
- #: src/admin.php:3410
3306
  msgid "Files backup (created by %s)"
3307
  msgstr ""
3308
 
3309
- #: src/admin.php:3410
3310
  msgid "Files and database WordPress backup (created by %s)"
3311
  msgstr ""
3312
 
3313
- #: src/addons/importer.php:276, src/admin.php:3404,
3314
- #: src/class-updraftplus.php:2893
3315
  msgid "Backup created by: %s."
3316
  msgstr ""
3317
 
3318
- #: src/admin.php:3373
3319
  msgid "Database (created by %s)"
3320
  msgstr ""
3321
 
3322
- #: src/admin.php:3367, src/admin.php:3406
3323
  msgid "unknown source"
3324
  msgstr ""
3325
 
3326
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
3327
  msgid "Rescan remote storage"
3328
  msgstr ""
3329
 
3330
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:40
3331
  msgid "Upload backup files"
3332
  msgstr ""
3333
 
3334
- #: src/admin.php:1979
3335
  msgid "This backup was created by %s, and can be imported."
3336
  msgstr ""
3337
 
@@ -3343,7 +3351,7 @@ msgstr ""
3343
  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."
3344
  msgstr ""
3345
 
3346
- #: src/admin.php:676, src/class-updraftplus.php:2900
3347
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3348
  msgstr ""
3349
 
@@ -3351,11 +3359,11 @@ msgstr ""
3351
  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."
3352
  msgstr ""
3353
 
3354
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2900
3355
  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))."
3356
  msgstr ""
3357
 
3358
- #: src/admin.php:3407, src/includes/class-wpadmin-commands.php:152,
3359
  #: src/restorer.php:1462
3360
  msgid "Backup created by unknown source (%s) - cannot be restored."
3361
  msgstr ""
@@ -3381,7 +3389,7 @@ msgstr ""
3381
  msgid "No settings were found"
3382
  msgstr ""
3383
 
3384
- #: src/class-updraftplus.php:3021
3385
  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."
3386
  msgstr ""
3387
 
@@ -3407,7 +3415,7 @@ msgstr ""
3407
  msgid "Remove"
3408
  msgstr ""
3409
 
3410
- #: src/methods/s3.php:840
3411
  msgid "Other %s FAQs."
3412
  msgstr ""
3413
 
@@ -3415,16 +3423,16 @@ msgstr ""
3415
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3416
  msgstr ""
3417
 
3418
- #: src/addons/morefiles.php:445, src/admin.php:3114
3419
  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."
3420
  msgstr ""
3421
 
3422
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309,
3423
  #: src/restorer.php:1493
3424
  msgid "Your hosting company must enable these functions before %s can work."
3425
  msgstr ""
3426
 
3427
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309
3428
  msgid "Your web server's PHP installation has these functions disabled: %s."
3429
  msgstr ""
3430
 
@@ -3444,7 +3452,7 @@ msgstr ""
3444
  msgid "Backup created by:"
3445
  msgstr ""
3446
 
3447
- #: src/udaddons/options.php:482
3448
  msgid "Available to claim on this site"
3449
  msgstr ""
3450
 
@@ -3494,15 +3502,15 @@ msgstr ""
3494
  msgid "Dismiss from main dashboard (for %s weeks)"
3495
  msgstr ""
3496
 
3497
- #: src/class-updraftplus.php:4836
3498
  msgid "The attempt to undo the double-compression succeeded."
3499
  msgstr ""
3500
 
3501
- #: src/class-updraftplus.php:4813, src/class-updraftplus.php:4834
3502
  msgid "The attempt to undo the double-compression failed."
3503
  msgstr ""
3504
 
3505
- #: src/class-updraftplus.php:4806
3506
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3507
  msgstr ""
3508
 
@@ -3535,7 +3543,7 @@ msgstr ""
3535
  msgid "Errors occurred:"
3536
  msgstr ""
3537
 
3538
- #: src/admin.php:3612
3539
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3540
  msgstr ""
3541
 
@@ -3563,7 +3571,7 @@ msgstr ""
3563
  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)"
3564
  msgstr ""
3565
 
3566
- #: src/addons/migrator.php:253
3567
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3568
  msgstr ""
3569
 
@@ -3572,7 +3580,7 @@ msgstr ""
3572
  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."
3573
  msgstr ""
3574
 
3575
- #: src/addons/moredatabase.php:137, src/admin.php:1363
3576
  msgid "Messages:"
3577
  msgstr ""
3578
 
@@ -3732,7 +3740,7 @@ msgstr ""
3732
  msgid "Authorisation failed (check your credentials)"
3733
  msgstr ""
3734
 
3735
- #: src/methods/updraftvault.php:568, src/udaddons/options.php:267
3736
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3737
  msgstr ""
3738
 
@@ -3748,15 +3756,15 @@ msgstr ""
3748
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3749
  msgstr ""
3750
 
3751
- #: src/admin.php:661, src/admin.php:3902
3752
  msgid "Error data:"
3753
  msgstr ""
3754
 
3755
- #: src/admin.php:3563
3756
  msgid "Backup does not exist in the backup history"
3757
  msgstr ""
3758
 
3759
- #: src/admin.php:2526
3760
  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."
3761
  msgstr ""
3762
 
@@ -3812,7 +3820,7 @@ msgstr ""
3812
  msgid "Debugging information"
3813
  msgstr ""
3814
 
3815
- #: src/addons/reporting.php:211, src/admin.php:3313
3816
  msgid "Uploaded to:"
3817
  msgstr ""
3818
 
@@ -3872,7 +3880,7 @@ msgstr ""
3872
  msgid "%s did not return the expected response - check your log file for more details"
3873
  msgstr ""
3874
 
3875
- #: src/methods/s3.php:287
3876
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3877
  msgstr ""
3878
 
@@ -3885,7 +3893,7 @@ msgid "Your site's admin email address (%s) will be used."
3885
  msgstr ""
3886
 
3887
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3888
- #: src/methods/updraftvault.php:347, src/udaddons/options.php:246
3889
  msgid "Connect"
3890
  msgstr ""
3891
 
@@ -3893,7 +3901,7 @@ msgstr ""
3893
  msgid "For more reporting features, use the Reporting add-on."
3894
  msgstr ""
3895
 
3896
- #: src/class-updraftplus.php:4616
3897
  msgid "(version: %s)"
3898
  msgstr ""
3899
 
@@ -3966,39 +3974,39 @@ msgstr ""
3966
  msgid "UpdraftPlus warning:"
3967
  msgstr ""
3968
 
3969
- #: src/udaddons/options.php:488
3970
  msgid "(or connect using the form on this page if you have already purchased it)"
3971
  msgstr ""
3972
 
3973
- #: src/udaddons/options.php:474
3974
  msgid "please follow this link to update the plugin in order to activate it"
3975
  msgstr ""
3976
 
3977
- #: src/udaddons/options.php:471
3978
  msgid "please follow this link to update the plugin in order to get it"
3979
  msgstr ""
3980
 
3981
- #: src/udaddons/options.php:461, src/udaddons/options.php:463
3982
  msgid "latest"
3983
  msgstr ""
3984
 
3985
- #: src/udaddons/options.php:459
3986
  msgid "Your version: %s"
3987
  msgstr ""
3988
 
3989
- #: src/udaddons/options.php:457, src/udaddons/options.php:457
3990
  msgid "You've got it"
3991
  msgstr ""
3992
 
3993
- #: src/udaddons/options.php:418
3994
  msgid "UpdraftPlus Support"
3995
  msgstr ""
3996
 
3997
- #: src/udaddons/options.php:376
3998
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3999
  msgstr ""
4000
 
4001
- #: src/udaddons/options.php:365, src/udaddons/updraftplus-addons.php:290
4002
  msgid "UpdraftPlus Addons"
4003
  msgstr ""
4004
 
@@ -4034,7 +4042,7 @@ msgstr ""
4034
  msgid "Reporting"
4035
  msgstr ""
4036
 
4037
- #: src/admin.php:4359
4038
  msgid "Options (raw)"
4039
  msgstr ""
4040
 
@@ -4062,91 +4070,91 @@ msgstr ""
4062
  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)"
4063
  msgstr ""
4064
 
4065
- #: src/udaddons/options.php:553
4066
  msgid "Manage Addons"
4067
  msgstr ""
4068
 
4069
- #: src/udaddons/options.php:489, src/udaddons/options.php:489
4070
  msgid "Buy It"
4071
  msgstr ""
4072
 
4073
- #: src/udaddons/options.php:488
4074
  msgid "Get it from the UpdraftPlus.Com Store"
4075
  msgstr ""
4076
 
4077
- #: src/udaddons/options.php:482, src/udaddons/options.php:484
4078
  msgid "activate it on this site"
4079
  msgstr ""
4080
 
4081
- #: src/udaddons/options.php:484
4082
  msgid "You have an inactive purchase"
4083
  msgstr ""
4084
 
4085
- #: src/udaddons/options.php:474
4086
  msgid "Assigned to this site"
4087
  msgstr ""
4088
 
4089
- #: src/udaddons/options.php:471
4090
  msgid "Available for this site (via your all-addons purchase)"
4091
  msgstr ""
4092
 
4093
- #: src/udaddons/options.php:465
4094
  msgid "(apparently a pre-release or withdrawn release)"
4095
  msgstr ""
4096
 
4097
- #: src/udaddons/options.php:420
4098
  msgid "Go here"
4099
  msgstr ""
4100
 
4101
- #: src/udaddons/options.php:420
4102
  msgid "Need to get support?"
4103
  msgstr ""
4104
 
4105
- #: src/udaddons/options.php:402
4106
  msgid "An error occurred when trying to retrieve your add-ons."
4107
  msgstr ""
4108
 
4109
- #: src/udaddons/options.php:335
4110
  msgid "An unknown response was received. Response was:"
4111
  msgstr ""
4112
 
4113
- #: src/udaddons/options.php:334
4114
  msgid "Claim not granted - your account login details were wrong"
4115
  msgstr ""
4116
 
4117
- #: src/udaddons/options.php:332
4118
  msgid "Please wait whilst we make the claim..."
4119
  msgstr ""
4120
 
4121
- #: src/udaddons/options.php:285
4122
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4123
  msgstr ""
4124
 
4125
- #: src/udaddons/options.php:278
4126
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4127
  msgstr ""
4128
 
4129
- #: src/udaddons/options.php:274
4130
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4131
  msgstr ""
4132
 
4133
- #: src/udaddons/options.php:273
4134
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr ""
4136
 
4137
- #: src/udaddons/options.php:244
4138
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4139
  msgstr ""
4140
 
4141
- #: src/udaddons/options.php:172
4142
  msgid "Forgotten your details?"
4143
  msgstr ""
4144
 
4145
- #: src/udaddons/options.php:161
4146
  msgid "Not yet got an account (it's free)? Go get one!"
4147
  msgstr ""
4148
 
4149
- #: src/udaddons/options.php:128
4150
  msgid "Connect with your UpdraftPlus.Com account"
4151
  msgstr ""
4152
 
@@ -4186,15 +4194,15 @@ msgstr ""
4186
  msgid "Your web-server does not have the %s module installed."
4187
  msgstr ""
4188
 
4189
- #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1142
4190
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4191
  msgstr ""
4192
 
4193
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:68
4194
  msgid "Drop backup files here"
4195
  msgstr ""
4196
 
4197
- #: src/admin.php:2405
4198
  msgid "Does nothing happen when you attempt backups?"
4199
  msgstr ""
4200
 
@@ -4235,11 +4243,11 @@ msgstr ""
4235
  msgid "You can send a backup to more than one destination with an add-on."
4236
  msgstr ""
4237
 
4238
- #: src/admin.php:2744
4239
  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."
4240
  msgstr ""
4241
 
4242
- #: src/admin.php:2642
4243
  msgid "(%s%%, file %s of %s)"
4244
  msgstr ""
4245
 
@@ -4280,11 +4288,11 @@ msgstr ""
4280
  msgid "%s settings test result:"
4281
  msgstr ""
4282
 
4283
- #: src/admin.php:3474, src/admin.php:3476
4284
  msgid "(Not finished)"
4285
  msgstr ""
4286
 
4287
- #: src/admin.php:3476
4288
  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."
4289
  msgstr ""
4290
 
@@ -4296,73 +4304,73 @@ msgstr ""
4296
  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)."
4297
  msgstr ""
4298
 
4299
- #: src/admin.php:2739
4300
  msgid "Job ID: %s"
4301
  msgstr ""
4302
 
4303
- #: src/admin.php:2724
4304
  msgid "last activity: %ss ago"
4305
  msgstr ""
4306
 
4307
- #: src/admin.php:2723
4308
  msgid "next resumption: %d (after %ss)"
4309
  msgstr ""
4310
 
4311
- #: src/admin.php:2706, src/central/bootstrap.php:411,
4312
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4313
  #: src/methods/updraftvault.php:467
4314
  msgid "Unknown"
4315
  msgstr ""
4316
 
4317
- #: src/admin.php:2656
4318
  msgid "Backup finished"
4319
  msgstr ""
4320
 
4321
- #: src/admin.php:2651
4322
  msgid "Waiting until scheduled time to retry because of errors"
4323
  msgstr ""
4324
 
4325
- #: src/admin.php:2647
4326
  msgid "Pruning old backup sets"
4327
  msgstr ""
4328
 
4329
- #: src/admin.php:2635
4330
  msgid "Uploading files to remote storage"
4331
  msgstr ""
4332
 
4333
- #: src/admin.php:2704
4334
  msgid "Encrypted database"
4335
  msgstr ""
4336
 
4337
- #: src/admin.php:2696
4338
  msgid "Encrypting database"
4339
  msgstr ""
4340
 
4341
- #: src/admin.php:2670
4342
  msgid "Created database backup"
4343
  msgstr ""
4344
 
4345
- #: src/admin.php:2683
4346
  msgid "table: %s"
4347
  msgstr ""
4348
 
4349
- #: src/admin.php:2681
4350
  msgid "Creating database backup"
4351
  msgstr ""
4352
 
4353
- #: src/admin.php:2629
4354
  msgid "Created file backup zips"
4355
  msgstr ""
4356
 
4357
- #: src/admin.php:2616
4358
  msgid "Creating file backup zips"
4359
  msgstr ""
4360
 
4361
- #: src/admin.php:2611
4362
  msgid "Backup begun"
4363
  msgstr ""
4364
 
4365
- #: src/admin.php:2454
4366
  msgid "Backups in progress:"
4367
  msgstr ""
4368
 
@@ -4382,7 +4390,7 @@ msgstr ""
4382
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4383
  msgstr ""
4384
 
4385
- #: src/class-updraftplus.php:3118
4386
  msgid "The backup has not finished; a resumption is scheduled"
4387
  msgstr ""
4388
 
@@ -4396,7 +4404,7 @@ msgstr ""
4396
  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)."
4397
  msgstr ""
4398
 
4399
- #: src/admin.php:2277
4400
  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)."
4401
  msgstr ""
4402
 
@@ -4475,23 +4483,23 @@ msgstr ""
4475
  msgid "Support"
4476
  msgstr "সহায়তা"
4477
 
4478
- #: src/class-updraftplus.php:4769
4479
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4480
  msgstr ""
4481
 
4482
- #: src/class-updraftplus.php:4761
4483
  msgid "This database backup is missing core WordPress tables: %s"
4484
  msgstr ""
4485
 
4486
- #: src/class-updraftplus.php:4649
4487
  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."
4488
  msgstr ""
4489
 
4490
- #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4655
4491
  msgid "%s version: %s"
4492
  msgstr ""
4493
 
4494
- #: src/class-updraftplus.php:4565
4495
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4496
  msgstr ""
4497
 
@@ -4500,7 +4508,7 @@ msgstr ""
4500
  msgid "Be safe with an automatic backup"
4501
  msgstr ""
4502
 
4503
- #: src/admin.php:2229
4504
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4505
  msgstr ""
4506
 
@@ -4548,11 +4556,11 @@ msgstr ""
4548
  msgid "Delete from your web server"
4549
  msgstr ""
4550
 
4551
- #: src/admin.php:3444
4552
  msgid "You appear to be missing one or more archives from this multi-archive set."
4553
  msgstr ""
4554
 
4555
- #: src/admin.php:3441
4556
  msgid "(%d archive(s) in set)."
4557
  msgstr ""
4558
 
@@ -4572,7 +4580,7 @@ msgstr ""
4572
  msgid "Error: the server sent an empty response."
4573
  msgstr ""
4574
 
4575
- #: src/admin.php:1990
4576
  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?"
4577
  msgstr ""
4578
 
@@ -4608,7 +4616,7 @@ msgstr ""
4608
  msgid "No such backup set exists"
4609
  msgstr ""
4610
 
4611
- #: src/admin.php:1239
4612
  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"
4613
  msgstr ""
4614
 
@@ -4624,27 +4632,27 @@ msgstr ""
4624
  msgid "WordPress root directory server path: %s"
4625
  msgstr ""
4626
 
4627
- #: src/methods/s3.php:845
4628
  msgid "%s end-point"
4629
  msgstr ""
4630
 
4631
- #: src/methods/s3.php:807
4632
  msgid "... and many more!"
4633
  msgstr ""
4634
 
4635
- #: src/methods/s3generic.php:52, src/methods/s3generic.php:60
4636
  msgid "S3 (Compatible)"
4637
  msgstr ""
4638
 
4639
- #: src/admin.php:3758
4640
  msgid "File is not locally present - needs retrieving from remote storage"
4641
  msgstr ""
4642
 
4643
- #: src/admin.php:3745
4644
  msgid "Looking for %s archive: file name: %s"
4645
  msgstr ""
4646
 
4647
- #: src/admin.php:3706
4648
  msgid "Final checks"
4649
  msgstr ""
4650
 
@@ -4656,7 +4664,7 @@ msgstr ""
4656
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4657
  msgstr ""
4658
 
4659
- #: src/admin.php:3103
4660
  msgid "Your wp-content directory server path: %s"
4661
  msgstr ""
4662
 
@@ -4672,20 +4680,20 @@ msgstr ""
4672
  msgid "Processing files - please wait..."
4673
  msgstr ""
4674
 
4675
- #: src/admin.php:3904,
4676
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4677
  msgid "Please consult this FAQ for help on what to do about it."
4678
  msgstr ""
4679
 
4680
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4681
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4682
  msgstr ""
4683
 
4684
- #: src/class-updraftplus.php:4573
4685
  msgid "Failed to open database file."
4686
  msgstr ""
4687
 
4688
- #: src/admin.php:4329
4689
  msgid "Known backups (raw)"
4690
  msgstr ""
4691
 
@@ -4697,17 +4705,17 @@ msgstr ""
4697
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4698
  msgstr ""
4699
 
4700
- #: src/addons/migrator.php:333
4701
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4702
  msgstr ""
4703
 
4704
- #: src/admin.php:3778
4705
  msgid "file is size:"
4706
  msgstr ""
4707
 
4708
- #: src/addons/googlecloud.php:941, src/addons/migrator.php:371,
4709
- #: src/addons/migrator.php:374, src/addons/migrator.php:377, src/admin.php:945,
4710
- #: src/admin.php:2234, src/backup.php:3043, src/updraftplus.php:156
4711
  msgid "Go here for more information."
4712
  msgstr ""
4713
 
@@ -4715,7 +4723,7 @@ msgstr ""
4715
  msgid "Some files are still downloading or being processed - please wait."
4716
  msgstr ""
4717
 
4718
- #: src/class-updraftplus.php:4621, src/class-updraftplus.php:4639
4719
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4720
  msgstr ""
4721
 
@@ -4761,7 +4769,7 @@ msgstr ""
4761
 
4762
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4763
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4764
- #: src/methods/googledrive.php:1001, src/methods/openstack-base.php:420,
4765
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4766
  #: src/methods/stream-base.php:285
4767
  msgid "%s Error"
@@ -4785,25 +4793,25 @@ msgstr ""
4785
  msgid "%s authentication failed"
4786
  msgstr ""
4787
 
4788
- #: src/addons/googlecloud.php:432, src/addons/migrator.php:462,
4789
- #: src/admin.php:1935, src/admin.php:1982, src/admin.php:1990,
4790
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4791
- #: src/class-updraftplus.php:4544, src/class-updraftplus.php:4546,
4792
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4679,
4793
- #: src/class-updraftplus.php:4714, src/methods/googledrive.php:364,
4794
- #: src/methods/s3.php:316
4795
  msgid "Error: %s"
4796
  msgstr ""
4797
 
4798
- #: src/admin.php:3040
4799
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4800
  msgstr ""
4801
 
4802
- #: src/admin.php:3038
4803
  msgid "Backup directory specified does <b>not</b> exist."
4804
  msgstr ""
4805
 
4806
- #: src/admin.php:2751, src/admin.php:2994
4807
  msgid "Warning: %s"
4808
  msgstr ""
4809
 
@@ -4831,7 +4839,7 @@ msgstr ""
4831
  msgid "Warnings encountered:"
4832
  msgstr ""
4833
 
4834
- #: src/class-updraftplus.php:3106
4835
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4836
  msgstr ""
4837
 
@@ -4839,27 +4847,27 @@ msgstr ""
4839
  msgid "Your free disk space is very low - only %s Mb remain"
4840
  msgstr ""
4841
 
4842
- #: src/addons/migrator.php:470
4843
  msgid "New site:"
4844
  msgstr ""
4845
 
4846
- #: src/addons/migrator.php:445
4847
  msgid "Migrated site (from UpdraftPlus)"
4848
  msgstr ""
4849
 
4850
- #: src/addons/migrator.php:392
4851
  msgid "Enter details for where this new site is to live within your multisite install:"
4852
  msgstr ""
4853
 
4854
- #: src/addons/migrator.php:391
4855
  msgid "Information needed to continue:"
4856
  msgstr ""
4857
 
4858
- #: src/addons/migrator.php:348
4859
  msgid "Network activating theme:"
4860
  msgstr ""
4861
 
4862
- #: src/addons/migrator.php:338
4863
  msgid "Processed plugin:"
4864
  msgstr ""
4865
 
@@ -4871,15 +4879,15 @@ msgstr ""
4871
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4872
  msgstr ""
4873
 
4874
- #: src/methods/s3.php:821
4875
  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."
4876
  msgstr ""
4877
 
4878
- #: src/methods/s3.php:1073
4879
  msgid "Please check your access credentials."
4880
  msgstr ""
4881
 
4882
- #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1051
4883
  msgid "The error reported by %s was:"
4884
  msgstr ""
4885
 
@@ -4887,7 +4895,7 @@ msgstr ""
4887
  msgid "Please supply the requested information, and then continue."
4888
  msgstr ""
4889
 
4890
- #: src/class-updraftplus.php:4690, src/restorer.php:1706
4891
  msgid "Site information:"
4892
  msgstr ""
4893
 
@@ -4895,21 +4903,21 @@ msgstr ""
4895
  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."
4896
  msgstr ""
4897
 
4898
- #: src/addons/migrator.php:333, src/admin.php:2229,
4899
- #: src/class-updraftplus.php:4683, src/restorer.php:2033
4900
  msgid "Warning:"
4901
  msgstr ""
4902
 
4903
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4675,
4904
  #: src/restorer.php:154
4905
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4906
  msgstr ""
4907
 
4908
- #: src/admin.php:3733
4909
  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."
4910
  msgstr ""
4911
 
4912
- #: src/admin.php:3169, src/methods/updraftvault.php:286
4913
  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."
4914
  msgstr ""
4915
 
@@ -4964,7 +4972,7 @@ msgstr ""
4964
  msgid "Also delete from remote storage"
4965
  msgstr ""
4966
 
4967
- #: src/admin.php:2481
4968
  msgid "Latest UpdraftPlus.com news:"
4969
  msgstr ""
4970
 
@@ -4981,7 +4989,7 @@ msgstr ""
4981
  msgid "News"
4982
  msgstr ""
4983
 
4984
- #: src/admin.php:1409, src/includes/class-wpadmin-commands.php:465
4985
  msgid "Backup set not found"
4986
  msgstr ""
4987
 
@@ -5007,7 +5015,7 @@ msgstr ""
5007
  msgid "Testing %s Settings..."
5008
  msgstr ""
5009
 
5010
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
5011
  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."
5012
  msgstr ""
5013
 
@@ -5035,77 +5043,77 @@ msgstr ""
5035
  msgid "Store at"
5036
  msgstr ""
5037
 
5038
- #: src/addons/migrator.php:1380
5039
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5040
  msgstr ""
5041
 
5042
- #: src/addons/migrator.php:1258
5043
  msgid "rows: %d"
5044
  msgstr ""
5045
 
5046
- #: src/addons/migrator.php:1134
5047
  msgid "Time taken (seconds):"
5048
  msgstr ""
5049
 
5050
- #: src/addons/migrator.php:1133, src/admin.php:659
5051
  msgid "Errors:"
5052
  msgstr ""
5053
 
5054
- #: src/addons/migrator.php:1132
5055
  msgid "SQL update commands run:"
5056
  msgstr ""
5057
 
5058
- #: src/addons/migrator.php:1131
5059
  msgid "Changes made:"
5060
  msgstr ""
5061
 
5062
- #: src/addons/migrator.php:1130
5063
  msgid "Rows examined:"
5064
  msgstr ""
5065
 
5066
- #: src/addons/migrator.php:1129
5067
  msgid "Tables examined:"
5068
  msgstr ""
5069
 
5070
- #: src/addons/migrator.php:1018
5071
  msgid "Could not get list of tables"
5072
  msgstr ""
5073
 
5074
- #: src/addons/migrator.php:963
5075
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5076
  msgstr ""
5077
 
5078
- #: src/addons/migrator.php:952
5079
  msgid "Nothing to do: the site URL is already: %s"
5080
  msgstr ""
5081
 
5082
- #: src/addons/migrator.php:916, src/addons/migrator.php:920,
5083
- #: src/addons/migrator.php:924, src/addons/migrator.php:929,
5084
- #: src/addons/migrator.php:933, src/addons/migrator.php:938
5085
  msgid "Error: unexpected empty parameter (%s, %s)"
5086
  msgstr ""
5087
 
5088
- #: src/addons/migrator.php:876
5089
  msgid "Database: search and replace site URL"
5090
  msgstr ""
5091
 
5092
- #: src/addons/migrator.php:787, src/addons/migrator.php:1115
5093
  msgid "Failed: we did not understand the result returned by the %s operation."
5094
  msgstr ""
5095
 
5096
- #: src/addons/migrator.php:785, src/addons/migrator.php:1113
5097
  msgid "Failed: the %s operation was not able to start."
5098
  msgstr ""
5099
 
5100
- #: src/addons/migrator.php:550
5101
  msgid "(learn more)"
5102
  msgstr ""
5103
 
5104
- #: src/addons/migrator.php:550
5105
  msgid "Search and replace site location in the database (migrate)"
5106
  msgstr ""
5107
 
5108
- #: src/addons/migrator.php:550
5109
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5110
  msgstr ""
5111
 
@@ -5113,7 +5121,7 @@ msgstr ""
5113
  msgid "Blog uploads"
5114
  msgstr ""
5115
 
5116
- #: src/addons/migrator.php:377, src/addons/multisite.php:649
5117
  msgid "Must-use plugins"
5118
  msgstr ""
5119
 
@@ -5152,7 +5160,7 @@ msgstr ""
5152
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5153
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5154
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5155
- #: src/udaddons/options.php:132
5156
  msgid "Password"
5157
  msgstr ""
5158
 
@@ -5218,8 +5226,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
5218
  msgstr ""
5219
 
5220
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5221
- #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2805,
5222
- #: src/admin.php:2840, src/admin.php:2849, src/methods/addon-base-v2.php:289,
5223
  #: src/methods/stream-base.php:301
5224
  msgid "Failed"
5225
  msgstr ""
@@ -5244,7 +5252,7 @@ msgstr ""
5244
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5245
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5246
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5247
- #: src/methods/googledrive.php:167, src/methods/googledrive.php:169,
5248
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5249
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5250
  #: src/methods/stream-base.php:246
@@ -5312,96 +5320,96 @@ msgstr ""
5312
  msgid "You do not appear to be authenticated with Dropbox"
5313
  msgstr ""
5314
 
5315
- #: src/methods/s3.php:1068
5316
  msgid "The communication with %s was not encrypted."
5317
  msgstr ""
5318
 
5319
- #: src/methods/s3.php:1066
5320
  msgid "The communication with %s was encrypted."
5321
  msgstr ""
5322
 
5323
- #: src/addons/googlecloud.php:756, src/methods/s3.php:1063
5324
  msgid "We accessed the bucket, and were able to create files within it."
5325
  msgstr ""
5326
 
5327
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5328
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5329
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5330
  msgstr ""
5331
 
5332
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5333
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5334
  msgid "Failure"
5335
  msgstr ""
5336
 
5337
- #: src/methods/s3.php:1049
5338
  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)."
5339
  msgstr ""
5340
 
5341
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5342
- #: src/methods/s3.php:1043
5343
  msgid "Region"
5344
  msgstr ""
5345
 
5346
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5347
- #: src/methods/s3.php:1025
5348
  msgid "Failure: No bucket details were given."
5349
  msgstr ""
5350
 
5351
- #: src/methods/s3.php:1003
5352
  msgid "API secret"
5353
  msgstr ""
5354
 
5355
- #: src/methods/s3.php:882
5356
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5357
  msgstr ""
5358
 
5359
- #: src/methods/s3.php:881
5360
  msgid "%s location"
5361
  msgstr ""
5362
 
5363
- #: src/methods/s3.php:877
5364
  msgid "%s secret key"
5365
  msgstr ""
5366
 
5367
- #: src/methods/s3.php:873
5368
  msgid "%s access key"
5369
  msgstr ""
5370
 
5371
- #: src/methods/s3.php:838
5372
  msgid "If you see errors about SSL certificates, then please go here for help."
5373
  msgstr ""
5374
 
5375
- #: src/methods/s3.php:836
5376
  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."
5377
  msgstr ""
5378
 
5379
- #: src/methods/s3.php:457, src/methods/s3.php:569, src/methods/s3.php:641,
5380
- #: src/methods/s3.php:744
5381
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5382
  msgstr ""
5383
 
5384
- #: src/methods/s3.php:727, src/methods/s3.php:737, src/methods/s3.php:773
5385
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5386
  msgstr ""
5387
 
5388
- #: src/methods/s3.php:435
5389
  msgid "%s re-assembly error (%s): (see log file for more)"
5390
  msgstr ""
5391
 
5392
- #: src/methods/s3.php:431
5393
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5394
  msgstr ""
5395
 
5396
- #: src/methods/s3.php:415
5397
  msgid "%s chunk %s: upload failed"
5398
  msgstr ""
5399
 
5400
- #: src/methods/s3.php:405
5401
  msgid "%s error: file %s was shortened unexpectedly"
5402
  msgstr ""
5403
 
5404
- #: src/methods/s3.php:383
5405
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5406
  msgstr ""
5407
 
@@ -5432,11 +5440,11 @@ msgid "Username"
5432
  msgstr "ব্যবহারকারী নাম"
5433
 
5434
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5435
- #: src/methods/s3.php:999
5436
  msgid "API key"
5437
  msgstr ""
5438
 
5439
- #: src/addons/migrator.php:286, src/addons/migrator.php:1872,
5440
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5441
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5442
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
@@ -5446,12 +5454,12 @@ msgstr ""
5446
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5447
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5448
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5449
- #: src/methods/s3.php:999, src/methods/s3.php:1003
5450
  msgid "Failure: No %s was given."
5451
  msgstr ""
5452
 
5453
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5454
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5455
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5456
  msgstr ""
5457
 
@@ -5490,7 +5498,7 @@ msgstr ""
5490
  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."
5491
  msgstr ""
5492
 
5493
- #: src/admin.php:735, src/methods/backup-module.php:242
5494
  msgid "Test %s Settings"
5495
  msgstr ""
5496
 
@@ -5506,13 +5514,13 @@ msgstr ""
5506
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5507
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5508
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5509
- #: src/methods/s3.php:351, src/methods/s3.php:363, src/methods/s3.php:364
5510
  msgid "%s Error: Failed to upload"
5511
  msgstr ""
5512
 
5513
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5514
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5515
- #: src/methods/googledrive.php:919, src/methods/googledrive.php:924
5516
  msgid "%s Error: Failed to open local file"
5517
  msgstr ""
5518
 
@@ -5528,87 +5536,87 @@ msgstr ""
5528
  msgid "Cloud Files authentication failed"
5529
  msgstr ""
5530
 
5531
- #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1152
5532
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5533
  msgstr ""
5534
 
5535
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5536
- #: src/methods/googledrive.php:1110
5537
  msgid "Client Secret"
5538
  msgstr ""
5539
 
5540
- #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1107
5541
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5542
  msgstr ""
5543
 
5544
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5545
- #: src/methods/googledrive.php:1106
5546
  msgid "Client ID"
5547
  msgstr ""
5548
 
5549
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5550
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5551
  msgstr ""
5552
 
5553
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5554
  msgid "Select 'Web Application' as the application type."
5555
  msgstr ""
5556
 
5557
- #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1088
5558
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5559
  msgstr ""
5560
 
5561
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5562
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5563
- #: src/methods/googledrive.php:1071, src/methods/openstack-base.php:531,
5564
- #: src/methods/s3.php:797, src/methods/stream-base.php:218
5565
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5566
  msgstr ""
5567
 
5568
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5569
- #: src/addons/googlecloud.php:783, src/methods/googledrive.php:526,
5570
- #: src/methods/googledrive.php:527, src/methods/googledrive.php:537,
5571
- #: src/methods/googledrive.php:538
5572
  msgid "Account is not authorized."
5573
  msgstr ""
5574
 
5575
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:496,
5576
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
5577
  #: src/methods/stream-base.php:200
5578
  msgid "Failed to upload to %s"
5579
  msgstr ""
5580
 
5581
- #: src/methods/googledrive.php:479
5582
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5583
  msgstr ""
5584
 
5585
- #: src/methods/googledrive.php:570, src/methods/googledrive.php:606
5586
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5587
  msgstr ""
5588
 
5589
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5590
- #: src/methods/googledrive.php:423
5591
  msgid "you have authenticated your %s account."
5592
  msgstr ""
5593
 
5594
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5595
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5596
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5597
- #: src/methods/googledrive.php:423, src/methods/openstack-base.php:495,
5598
- #: src/methods/s3.php:1063, src/methods/stream-base.php:312
5599
  msgid "Success"
5600
  msgstr ""
5601
 
5602
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5603
- #: src/methods/dropbox.php:693, src/methods/googledrive.php:397
5604
  msgid "Your %s quota usage: %s %% used, %s available"
5605
  msgstr ""
5606
 
5607
- #: src/addons/googlecloud.php:438, src/methods/googledrive.php:370
5608
  msgid "Authorization failed"
5609
  msgstr "অনুমোদন ব্যর্থ"
5610
 
5611
- #: src/addons/googlecloud.php:430, src/methods/googledrive.php:362
5612
  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."
5613
  msgstr ""
5614
 
@@ -5634,8 +5642,8 @@ msgstr ""
5634
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5635
  msgstr ""
5636
 
5637
- #: src/addons/migrator.php:1767, src/admin.php:2808, src/admin.php:2842,
5638
- #: src/admin.php:2846, src/admin.php:3763, src/admin.php:3776,
5639
  #: src/restorer.php:2273, src/restorer.php:2378
5640
  msgid "OK"
5641
  msgstr "ঠিক আছে"
@@ -5644,7 +5652,7 @@ msgstr "ঠিক আছে"
5644
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5645
  msgstr ""
5646
 
5647
- #: src/addons/migrator.php:1146, src/restorer.php:2170
5648
  msgid "the database query being run was:"
5649
  msgstr ""
5650
 
@@ -5652,13 +5660,13 @@ msgstr ""
5652
  msgid "will restore as:"
5653
  msgstr ""
5654
 
5655
- #: src/class-updraftplus.php:4661, src/restorer.php:1688,
5656
  #: src/restorer.php:1777, src/restorer.php:1803
5657
  msgid "Old table prefix:"
5658
  msgstr ""
5659
 
5660
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5661
- #: src/backup.php:960, src/class-updraftplus.php:4616
5662
  msgid "Backup of:"
5663
  msgstr ""
5664
 
@@ -5730,60 +5738,60 @@ msgstr ""
5730
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5731
  msgstr ""
5732
 
5733
- #: src/admin.php:3784, src/admin.php:3785
5734
  msgid "Could not find one of the files for restoration"
5735
  msgstr ""
5736
 
5737
- #: src/admin.php:3894
5738
  msgid "Error message"
5739
  msgstr ""
5740
 
5741
- #: src/admin.php:3781
5742
  msgid "The backup records do not contain information about the proper size of this file."
5743
  msgstr ""
5744
 
5745
- #: src/admin.php:3773
5746
  msgid "Archive is expected to be size:"
5747
  msgstr ""
5748
 
5749
- #: src/admin.php:3657
5750
  msgid "If making a request for support, please include this information:"
5751
  msgstr ""
5752
 
5753
- #: src/admin.php:3656
5754
  msgid "ABORT: Could not find the information on which entities to restore."
5755
  msgstr ""
5756
 
5757
- #: src/admin.php:3610
5758
  msgid "UpdraftPlus Restoration: Progress"
5759
  msgstr ""
5760
 
5761
- #: src/admin.php:3562
5762
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5763
  msgstr ""
5764
 
5765
- #: src/admin.php:3504
5766
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5767
  msgstr ""
5768
 
5769
- #: src/admin.php:3513
5770
  msgid "Delete this backup set"
5771
  msgstr ""
5772
 
5773
- #: src/admin.php:3181
5774
  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."
5775
  msgstr ""
5776
 
5777
- #: src/admin.php:3178
5778
  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."
5779
  msgstr ""
5780
 
5781
- #: src/admin.php:3176
5782
  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)."
5783
  msgstr ""
5784
 
5785
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5786
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5787
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5788
  msgstr ""
5789
 
@@ -5819,23 +5827,23 @@ msgstr ""
5819
  msgid "Use the server's SSL certificates"
5820
  msgstr ""
5821
 
5822
- #: src/admin.php:3042
5823
  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."
5824
  msgstr ""
5825
 
5826
- #: src/admin.php:3042
5827
  msgid "click here"
5828
  msgstr "এখানে ক্লিক করুন"
5829
 
5830
- #: src/admin.php:3042
5831
  msgid "or, to reset this option"
5832
  msgstr ""
5833
 
5834
- #: src/admin.php:3042
5835
  msgid "Follow this link to attempt to create the directory and set the permissions"
5836
  msgstr ""
5837
 
5838
- #: src/admin.php:3034
5839
  msgid "Backup directory specified is writable, which is good."
5840
  msgstr ""
5841
 
@@ -5875,7 +5883,7 @@ msgstr ""
5875
  msgid "Cancel"
5876
  msgstr "বাতিল"
5877
 
5878
- #: src/addons/reporting.php:233, src/admin.php:3325
5879
  msgid "None"
5880
  msgstr "কোনটিই না"
5881
 
@@ -5892,7 +5900,7 @@ msgid "Database encryption phrase"
5892
  msgstr ""
5893
 
5894
  #: src/templates/wp-admin/settings/form-contents.php:285,
5895
- #: src/udaddons/options.php:130
5896
  msgid "Email"
5897
  msgstr ""
5898
 
@@ -5900,11 +5908,11 @@ msgstr ""
5900
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5901
  msgstr ""
5902
 
5903
- #: src/addons/morefiles.php:443, src/admin.php:3112
5904
  msgid "Exclude these:"
5905
  msgstr ""
5906
 
5907
- #: src/admin.php:3103
5908
  msgid "Any other directories found inside wp-content"
5909
  msgstr ""
5910
 
@@ -5920,49 +5928,49 @@ msgstr ""
5920
  msgid "To fix the time at which a backup should take place,"
5921
  msgstr ""
5922
 
5923
- #: src/admin.php:3028
5924
  msgid "Monthly"
5925
  msgstr "মাসিক"
5926
 
5927
- #: src/admin.php:3027
5928
  msgid "Fortnightly"
5929
  msgstr "পাক্ষিক"
5930
 
5931
- #: src/admin.php:3026
5932
  msgid "Weekly"
5933
  msgstr "সাপ্তাহিক"
5934
 
5935
- #: src/admin.php:3025
5936
  msgid "Daily"
5937
  msgstr ""
5938
 
5939
- #: src/admin.php:694, src/admin.php:3008
5940
  msgid "Download log file"
5941
  msgstr "লগ ফাইল ডাউনলোড করুন"
5942
 
5943
- #: src/admin.php:2905
5944
  msgid "The folder exists, but your webserver does not have permission to write to it."
5945
  msgstr ""
5946
 
5947
- #: src/admin.php:2900
5948
  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"
5949
  msgstr ""
5950
 
5951
- #: src/admin.php:2886
5952
  msgid "The request to the filesystem to create the directory failed."
5953
  msgstr ""
5954
 
5955
- #: src/addons/migrator.php:2245, src/admin.php:688, src/admin.php:2802,
5956
- #: src/admin.php:2835, src/admin.php:3513,
5957
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5958
  msgid "Delete"
5959
  msgstr "মুছুন"
5960
 
5961
- #: src/admin.php:2586
5962
  msgid "(None)"
5963
  msgstr ""
5964
 
5965
- #: src/admin.php:2742
5966
  msgid "show log"
5967
  msgstr "লগ দেখান"
5968
 
@@ -6067,7 +6075,7 @@ msgstr "আপনার কি ওয়ার্ডপ্রস মাল্টি
6067
  msgid "Multisite"
6068
  msgstr "মাল্টিসাইট"
6069
 
6070
- #: src/admin.php:2405
6071
  msgid "Go here for help."
6072
  msgstr "সাহায্যের জন্য এখানে যান।"
6073
 
@@ -6124,81 +6132,81 @@ msgstr ""
6124
  msgid "Download error: the server sent us a response which we did not understand."
6125
  msgstr ""
6126
 
6127
- #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:772,
6128
- #: src/addons/migrator.php:1018, src/addons/migrator.php:1099,
6129
- #: src/addons/migrator.php:1146, src/addons/migrator.php:1380,
6130
- #: src/addons/migrator.php:1706, src/addons/migrator.php:1733,
6131
- #: src/addons/migrator.php:1739, src/addons/migrator.php:1801,
6132
- #: src/addons/migrator.php:1841, src/addons/migrator.php:1880,
6133
- #: src/addons/migrator.php:1890, src/addons/migrator.php:1895,
6134
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6135
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6136
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6137
- #: src/admin.php:3778, src/admin.php:3808, src/methods/remotesend.php:71,
6138
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6139
  #: src/restorer.php:1408
6140
  msgid "Error:"
6141
  msgstr ""
6142
 
6143
  #: src/admin.php:653,
6144
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6145
  msgid "calculating..."
6146
  msgstr ""
6147
 
6148
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
6149
  msgid "UpdraftPlus - Upload backup files"
6150
  msgstr ""
6151
 
6152
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6153
  msgid "refresh"
6154
  msgstr "রিফ্রেশ"
6155
 
6156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6157
  msgid "Web-server disk space in use by UpdraftPlus"
6158
  msgstr ""
6159
 
6160
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6161
  msgid "This is a count of the contents of your Updraft directory"
6162
  msgstr ""
6163
 
6164
- #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:167,
6165
- #: src/methods/googledrive.php:169, src/methods/googledrive.php:423,
6166
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:479,
6167
- #: src/methods/googledrive.php:486, src/methods/googledrive.php:496,
6168
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
6169
- #: src/methods/googledrive.php:1070, src/methods/googledrive.php:1082,
6170
- #: src/methods/googledrive.php:1082, src/methods/googledrive.php:1106,
6171
- #: src/methods/googledrive.php:1110, src/methods/googledrive.php:1122,
6172
- #: src/methods/googledrive.php:1132
6173
  msgid "Google Drive"
6174
  msgstr "গুগোল ড্রাইভ"
6175
 
6176
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6177
  msgid "If you are using this, then turn Turbo/Road mode off."
6178
  msgstr ""
6179
 
6180
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6181
  msgid "Opera web browser"
6182
  msgstr "অপেরা ওযেব ব্রাউজার"
6183
 
6184
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:36
6185
  msgid "More tasks:"
6186
  msgstr "আরও টাস্ক:"
6187
 
6188
- #: src/admin.php:2505
6189
  msgid "Download most recently modified log file"
6190
  msgstr ""
6191
 
6192
- #: src/admin.php:2464, src/admin.php:2470, src/central/bootstrap.php:169
6193
  msgid "(Nothing yet logged)"
6194
  msgstr ""
6195
 
6196
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6197
- #: src/admin.php:2463, src/admin.php:2468
6198
  msgid "Last log message"
6199
  msgstr ""
6200
 
6201
- #: src/addons/migrator.php:224, src/admin.php:693, src/admin.php:3504,
6202
  #: src/templates/wp-admin/settings/tab-status.php:30
6203
  msgid "Restore"
6204
  msgstr "পুনঃস্থাপন"
@@ -6208,9 +6216,9 @@ msgstr "পুনঃস্থাপন"
6208
  msgid "Backup Now"
6209
  msgstr ""
6210
 
6211
- #: src/addons/migrator.php:1771, src/addons/moredatabase.php:247,
6212
- #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3300,
6213
- #: src/admin.php:3373, src/admin.php:3862,
6214
  #: src/includes/class-wpadmin-commands.php:147,
6215
  #: src/includes/class-wpadmin-commands.php:480,
6216
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
@@ -6218,7 +6226,7 @@ msgstr ""
6218
  msgid "Database"
6219
  msgstr ""
6220
 
6221
- #: src/admin.php:295, src/admin.php:4335
6222
  msgid "Files"
6223
  msgstr ""
6224
 
@@ -6246,15 +6254,15 @@ msgstr ""
6246
  msgid "JavaScript warning"
6247
  msgstr ""
6248
 
6249
- #: src/admin.php:673, src/admin.php:2532
6250
  msgid "Delete Old Directories"
6251
  msgstr ""
6252
 
6253
- #: src/admin.php:2277
6254
  msgid "Current limit is:"
6255
  msgstr ""
6256
 
6257
- #: src/admin.php:2251
6258
  msgid "Your backup has been restored."
6259
  msgstr ""
6260
 
@@ -6266,67 +6274,67 @@ msgstr ""
6266
  msgid "Lead developer's homepage"
6267
  msgstr "প্রধান ডেভেলপার এর হোমপেজে"
6268
 
6269
- #: src/admin.php:4255
6270
  msgid "Your settings have been wiped."
6271
  msgstr ""
6272
 
6273
- #: src/admin.php:2211
6274
  msgid "Backup directory successfully created."
6275
  msgstr ""
6276
 
6277
- #: src/admin.php:2204
6278
  msgid "Backup directory could not be created"
6279
  msgstr ""
6280
 
6281
- #: src/admin.php:2774
6282
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6283
  msgstr ""
6284
 
6285
- #: src/admin.php:2772
6286
  msgid "Old directories successfully removed."
6287
  msgstr ""
6288
 
6289
- #: src/admin.php:2769, src/admin.php:2769
6290
  msgid "Remove old directories"
6291
  msgstr ""
6292
 
6293
- #: src/addons/migrator.php:289, src/addons/migrator.php:304,
6294
- #: src/admin.php:2153, src/admin.php:2162, src/admin.php:2171,
6295
- #: src/admin.php:2213, src/admin.php:2776
6296
  msgid "Return to UpdraftPlus Configuration"
6297
  msgstr ""
6298
 
6299
- #: src/admin.php:666, src/admin.php:2153, src/admin.php:2162,
6300
- #: src/admin.php:2171, src/admin.php:2213, src/admin.php:2776,
6301
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6302
  msgid "Actions"
6303
  msgstr ""
6304
 
6305
- #: src/admin.php:2072
6306
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6307
  msgstr ""
6308
 
6309
- #: src/admin.php:1982
6310
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6311
  msgstr ""
6312
 
6313
- #: src/admin.php:1863
6314
  msgid "No local copy present."
6315
  msgstr ""
6316
 
6317
- #: src/admin.php:1860
6318
  msgid "Download in progress"
6319
  msgstr "ডাউনলোড হচ্ছে"
6320
 
6321
- #: src/admin.php:665, src/admin.php:1849
6322
  msgid "File ready."
6323
  msgstr "ফাইল তৈরি।"
6324
 
6325
- #: src/admin.php:1830
6326
  msgid "Download failed"
6327
  msgstr ""
6328
 
6329
- #: src/admin.php:663, src/admin.php:1609, src/admin.php:3761,
6330
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6331
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6332
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
@@ -6335,15 +6343,15 @@ msgstr ""
6335
  msgid "Error"
6336
  msgstr ""
6337
 
6338
- #: src/admin.php:1637
6339
  msgid "Could not find that job - perhaps it has already finished?"
6340
  msgstr ""
6341
 
6342
- #: src/admin.php:1629
6343
  msgid "Job deleted"
6344
  msgstr ""
6345
 
6346
- #: src/admin.php:1713
6347
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6348
  msgstr ""
6349
 
@@ -6368,12 +6376,12 @@ msgid "You have less than %s of free disk space on the disk which UpdraftPlus is
6368
  msgstr ""
6369
 
6370
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6371
- #: src/admin.php:957, src/admin.php:966, src/admin.php:3169,
6372
- #: src/admin.php:3176, src/admin.php:3178, src/methods/cloudfiles-new.php:107,
6373
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6374
- #: src/methods/openstack-base.php:541, src/methods/s3.php:821,
6375
- #: src/methods/s3.php:825, src/methods/updraftvault.php:286,
6376
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28,
6377
  #: src/udaddons/updraftplus-addons.php:242
6378
  msgid "Warning"
6379
  msgstr "সতর্কতা"
@@ -6403,21 +6411,21 @@ msgstr ""
6403
  msgid "Like UpdraftPlus and can spare one minute?"
6404
  msgstr ""
6405
 
6406
- #: src/addons/azure.php:217, src/class-updraftplus.php:4340,
6407
- #: src/methods/googledrive.php:1001, src/methods/s3.php:316
6408
  msgid "File not found"
6409
  msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
6410
 
6411
- #: src/class-updraftplus.php:4247
6412
  msgid "The decryption key used:"
6413
  msgstr ""
6414
 
6415
- #: src/class-updraftplus.php:4247, src/class-updraftplus.php:4556,
6416
  #: src/restorer.php:389
6417
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6418
  msgstr ""
6419
 
6420
- #: src/class-updraftplus.php:4228, src/class-updraftplus.php:4544,
6421
  #: src/restorer.php:376
6422
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6423
  msgstr ""
@@ -6426,15 +6434,15 @@ msgstr ""
6426
  msgid "Could not open the backup file for writing"
6427
  msgstr ""
6428
 
6429
- #: src/class-updraftplus.php:3638
6430
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6431
  msgstr ""
6432
 
6433
- #: src/class-updraftplus.php:3604
6434
  msgid "Could not read the directory"
6435
  msgstr "ডিরেক্টরিটি পড়া যায়নি"
6436
 
6437
- #: src/admin.php:1900, src/backup.php:1157
6438
  msgid "Backup directory (%s) is not writable, or does not exist."
6439
  msgstr ""
6440
 
@@ -6442,11 +6450,11 @@ msgstr ""
6442
  msgid "WordPress backup is complete"
6443
  msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
6444
 
6445
- #: src/class-updraftplus.php:3115
6446
  msgid "The backup attempt has finished, apparently unsuccessfully"
6447
  msgstr ""
6448
 
6449
- #: src/class-updraftplus.php:3100
6450
  msgid "The backup apparently succeeded and is now complete"
6451
  msgstr ""
6452
 
@@ -6478,7 +6486,7 @@ msgstr "প্লাগইন"
6478
  msgid "No log files were found."
6479
  msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
6480
 
6481
- #: src/admin.php:1782, src/admin.php:1786, src/class-updraftplus.php:516
6482
  msgid "The log file could not be read."
6483
  msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
6484
 
11
  "Language: bn\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/class-updraftplus.php:4741
15
+ 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."
16
+ msgstr ""
17
+
18
+ #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
+ msgid "the migrator add-on"
20
+ msgstr ""
21
+
22
+ #: src/class-updraftplus.php:4739
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/class-updraftplus.php:4737
27
+ 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."
28
+ msgstr ""
29
+
30
+ #: src/class-updraftplus.php:4734
31
+ 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."
32
+ msgstr ""
33
+
34
+ #: src/methods/googledrive.php:1153
35
+ msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
36
+ msgstr ""
37
+
38
+ #: src/methods/googledrive.php:1149
39
+ msgid "Follow this link to remove this site's settings for %s."
40
+ msgstr ""
41
+
42
  #: src/addons/sftp.php:346
43
+ msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr ""
45
 
46
  #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr ""
49
 
50
+ #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr ""
54
 
55
+ #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr ""
69
  msgid "North-east Asia"
70
  msgstr ""
71
 
72
+ #: src/udaddons/options.php:118
73
+ 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"
74
  msgstr ""
75
 
76
  #: src/templates/wp-admin/settings/tab-status.php:80
97
  msgid "Select Files"
98
  msgstr ""
99
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  #: src/methods/cloudfiles.php:497
101
  msgid "Rackspace Storage Region"
102
  msgstr ""
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr ""
111
 
 
 
 
 
112
  #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr ""
115
 
116
+ #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr ""
119
 
120
+ #: src/admin.php:1540
 
 
 
 
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr ""
123
 
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr ""
135
 
136
+ #: src/templates/wp-admin/settings/existing-backups-table.php:70
137
  msgid "Stored at: %s"
138
  msgstr ""
139
 
141
  msgid "Cloud Files"
142
  msgstr ""
143
 
144
+ #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr ""
147
 
148
+ #: src/admin.php:4219
149
  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."
150
  msgstr ""
151
 
162
  msgid "Extra database"
163
  msgstr ""
164
 
165
+ #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr ""
168
 
206
  msgid "Skipped tables:"
207
  msgstr ""
208
 
209
+ #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr ""
212
 
213
+ #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr ""
216
 
217
+ #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr ""
220
 
714
  msgid "Backup of: %s"
715
  msgstr ""
716
 
717
+ #: src/methods/googledrive.php:248
718
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
719
  msgstr ""
720
 
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr ""
744
 
745
+ #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr ""
748
 
749
+ #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr ""
752
 
815
  msgid "An error response was received; HTTP code:"
816
  msgstr ""
817
 
818
+ #: src/includes/class-commands.php:322
819
  msgid "%s add-on not found"
820
  msgstr "%s অ্যাড-অন পাওয়া যায়নি"
821
 
827
  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"
828
  msgstr "এভাবে \"টাইম-আউট\" হতে পারে। আপনাকে safe_mode বন্ধ করার অথবা একসাথে শুধুমাত্র একটা জিনিস পুনরুদ্ধার করার পরামর্শ দেয়া হচ্ছে"
829
 
830
+ #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr "এই সমস্যা সমাধান করতে এখানে যান।"
833
 
834
+ #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr "অপটিমাইজপ্রেস ২.০ এর কন্টেন্টসমূহ সঙ্কেতাক্ষরে লিখে রাখে, তাই সার্চ/প্রতিস্থাপন কাজ করে না।"
837
 
867
  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."
868
  msgstr "কোন রেসপন্স ডাটা পাওয়া যায়নি। এটা সাধারণত এই সাইট এবং UpdraftPlus.com এর মধ্যে নেটওয়ার্ক সংযোগ সমস্যা নির্দেশ করে (যেমনঃ আউটগোয়িং ফায়ারওয়াল অথবা ওভারলোডেড নেটওয়ার্ক)।"
869
 
870
+ #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr "এই AWS access key মনে হয় ভূল (সঠিক %s access keys \"AK\" দিয়ে শুরু হয়)"
873
 
874
+ #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr "কোন সেটিং পাওয়া যায়নি - দয়া করে সেটিং ট্যাবে গিয়ে আপনার সেটিং যাচাই করুন।"
877
 
919
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
920
  msgstr "%s: অপাঠযোগ্য ফাইল - ব্যাকআপ নেওয়া সম্ভব নয় (ফাইলের মালিকানা ও পাঠের অনুমতি পরীক্ষা করুন)"
921
 
922
+ #: src/addons/migrator.php:2218
923
  msgid "Create key"
924
  msgstr "পিন তৈরি করুন"
925
 
926
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr "ধীরতর, সবচেয়ে বেশি শক্তিশালী"
929
 
930
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr "নির্দেশিত"
933
 
934
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr "%s বাইটস"
937
 
938
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr "দ্রুততর (ধীর পি এইচ পি ইন্সটল এর ক্ষেত্রে)"
941
 
942
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr "ভাঙতে সহজ, দ্রুততম সময়ে"
945
 
946
+ #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr "%s বিটস"
951
 
952
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr "এনক্রিপশন পিনের সাইজঃ"
955
 
956
+ #: src/addons/migrator.php:2208
957
  msgid "Enter your chosen name"
958
  msgstr "পূর্বেই ঠিক করা নামটি লিখুন"
959
 
960
+ #: src/addons/migrator.php:2207
961
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
962
  msgstr "একটি পিন তৈরি করুনঃ এই পিনটির একটি অনন্য নাম দিন (উদাহরণস্বরূপ, এই সাইট টি কিসের জন্য তা উল্লেখ করতে পারেন), তারপর \"পিন তৈরি করুন\" এ ক্লিক করুনঃ"
963
 
964
+ #: src/methods/googledrive.php:491
965
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
966
  msgstr "আপলোড সফল হবে নাঃ যেকোন একটি ফাইলের %s লিমিট হচ্ছে %s, যেখনে এই ফাইলের সাইজ হচ্ছে %s GB (%d bytes)"
967
 
1001
  msgid "Now"
1002
  msgstr "এখন"
1003
 
1004
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr ""
1007
 
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr ""
1125
 
1126
+ #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr ""
1129
 
1130
+ #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr "আপনার সেটিংস সংরক্ষণ করা হয়েছে। "
1133
 
1134
+ #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr ""
1137
 
1138
+ #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr ""
1141
 
1142
+ #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr ""
1145
 
1161
  msgid "this backup set"
1162
  msgstr "এই ব্যাকআপ সেট"
1163
 
1164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
1165
  msgid "calculate"
1166
  msgstr "গণনা করুন"
1167
 
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr ""
1207
 
1208
+ #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr ""
1211
 
1212
+ #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr ""
1215
 
1216
+ #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr ""
1219
 
1220
+ #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr "খারিজ"
1242
  msgid "Which site to restore"
1243
  msgstr ""
1244
 
1245
+ #: src/addons/migrator.php:514, src/addons/migrator.php:515
1246
  msgid "Error when creating new site at your chosen address:"
1247
  msgstr ""
1248
 
1249
+ #: src/addons/migrator.php:456
1250
  msgid "Required information for restoring this backup was not given (%s)"
1251
  msgstr ""
1252
 
1253
+ #: src/addons/migrator.php:415
1254
  msgid "Attribute imported content to user"
1255
  msgstr ""
1256
 
1257
+ #: src/addons/migrator.php:405, src/addons/migrator.php:407
1258
  msgid "You must use lower-case letters or numbers for the site path, only."
1259
  msgstr ""
1260
 
1261
+ #: src/addons/migrator.php:393
1262
  msgid "This feature is not compatible with %s"
1263
  msgstr ""
1264
 
1265
+ #: src/addons/migrator.php:391, src/addons/migrator.php:393
1266
  msgid "Importing a single site into a multisite install"
1267
  msgstr ""
1268
 
1269
+ #: src/addons/migrator.php:382
1270
  msgid "other content from wp-content"
1271
  msgstr ""
1272
 
1273
+ #: src/addons/migrator.php:379
1274
  msgid "WordPress core"
1275
  msgstr ""
1276
 
1277
+ #: src/addons/migrator.php:379, src/addons/migrator.php:382,
1278
+ #: src/addons/migrator.php:385
1279
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1280
  msgstr ""
1281
 
1283
  msgid "Call WordPress action:"
1284
  msgstr ""
1285
 
1286
+ #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr ""
1289
 
1290
+ #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr ""
1293
 
1319
  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)."
1320
  msgstr ""
1321
 
1322
+ #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr ""
1325
 
1326
+ #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr ""
1329
 
1330
+ #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr ""
1333
 
1334
+ #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr "সেটিংস"
1337
 
1338
+ #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr ""
1341
 
1342
+ #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr ""
1345
 
1346
+ #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr ""
1349
 
1350
+ #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr ""
1353
 
1354
+ #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr ""
1357
 
1358
+ #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr ""
1361
 
1362
+ #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr ""
1365
 
1366
+ #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr ""
1369
 
1371
  msgid "Premium / Extensions"
1372
  msgstr ""
1373
 
1374
+ #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr ""
1377
 
1518
  msgid "Could not access container"
1519
  msgstr ""
1520
 
1521
+ #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr ""
1524
 
1643
  msgid "Actions upon selected backups"
1644
  msgstr ""
1645
 
1646
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
1647
  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)."
1648
  msgstr ""
1649
 
1650
+ #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr ""
1653
 
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr ""
1701
 
1702
+ #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr ""
1705
 
1706
+ #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr ""
1709
 
1710
+ #: src/admin.php:2291
1711
  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."
1712
  msgstr ""
1713
 
1876
  msgstr "ভল্ট আপডেট করুন"
1877
 
1878
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
+ #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr "ডিলিট ব্যর্থ:"
1882
 
1900
  msgid "Allow download"
1901
  msgstr "ডাউনলোড এর অনুমতি দিন"
1902
 
1903
+ #: src/addons/migrator.php:1762
1904
  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."
1905
  msgstr ""
1906
 
1907
+ #: src/addons/migrator.php:1747, src/admin.php:709
1908
  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."
1909
  msgstr ""
1910
 
1911
+ #: src/addons/migrator.php:2250
1912
  msgid "Existing keys"
1913
  msgstr ""
1914
 
1915
+ #: src/addons/migrator.php:2241
1916
  msgid "No keys to allow remote sites to connect have yet been created."
1917
  msgstr ""
1918
 
1919
+ #: src/addons/migrator.php:2223
1920
  msgid "Your new key:"
1921
  msgstr "আপনার নতুন চাবি:"
1922
 
1923
+ #: src/addons/migrator.php:2202
1924
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1925
  msgstr ""
1926
 
1927
+ #: src/addons/migrator.php:2184
1928
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1929
  msgstr ""
1930
 
1931
+ #: src/addons/migrator.php:2184
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr ""
1934
 
1935
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr ""
1938
 
1939
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr "চাবি সফলভাবে তৈরি করা হয়েছে।"
1942
 
1943
+ #: src/addons/migrator.php:1849
1944
  msgid "A key with this name already exists; you must use a unique name."
1945
  msgstr ""
1946
 
1947
+ #: src/addons/migrator.php:1793
1948
  msgid "Also send this backup to the active remote storage locations"
1949
  msgstr ""
1950
 
1951
+ #: src/addons/migrator.php:1758
1952
  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."
1953
  msgstr ""
1954
 
1955
+ #: src/addons/migrator.php:1714
1956
  msgid "site not found"
1957
  msgstr "সাইট খুঁজে পাওয়া যায় নি"
1958
 
1959
+ #: src/addons/migrator.php:1699
1960
  msgid "Backup data will be sent to:"
1961
  msgstr "ব্যাক তথ্য পাঠানো হবে:"
1962
 
1963
+ #: src/addons/migrator.php:203
1964
  msgid "Restore an existing backup set onto this site"
1965
  msgstr ""
1966
 
1967
+ #: src/addons/migrator.php:196
1968
  msgid "This site has no backups to restore from yet."
1969
  msgstr ""
1970
 
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr "এই স্টোরেজ পদ্ধতি ডাউনলোড করার অনুমতি দেয় না"
1978
 
1979
+ #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr "(ব্যাকআপ সেট দূরবর্তী অবস্থান থেকে আমদানি করা হয়েছে)"
1982
 
1983
+ #: src/templates/wp-admin/settings/existing-backups-table.php:83
1984
  msgid "Site"
1985
  msgstr "সাইট"
1986
 
1987
+ #: src/templates/wp-admin/settings/existing-backups-table.php:82
1988
  msgid "Backup sent to remote site - not available for download."
1989
  msgstr "ব্যাকআপ রিমোট সাইটের পাঠানো হয়েছে - ডাউনলোডের জন্য উপলব্ধ না"
1990
 
1996
  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."
1997
  msgstr ""
1998
 
1999
+ #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr "কানেকশন পরীক্ষা করা হচ্ছে..."
2002
 
2016
  msgid "Creating..."
2017
  msgstr "তৈরি করা হচ্ছে..."
2018
 
2019
+ #: src/addons/migrator.php:2201
2020
  msgid "Or, receive a backup from a remote site"
2021
  msgstr "অথবা, অন্য একটি সাইট থেকে ব্যাকআপ গ্রহণ করুন"
2022
 
2023
+ #: src/addons/migrator.php:2190
2024
  msgid "Paste key here"
2025
  msgstr "চাবি এখানে পেস্ট করুন"
2026
 
2027
+ #: src/addons/migrator.php:2184
2028
  msgid "How do I get a site's key?"
2029
  msgstr ""
2030
 
2031
+ #: src/addons/migrator.php:2184
2032
  msgid "To add a site as a destination for sending to, enter that site's key below."
2033
  msgstr ""
2034
 
2035
+ #: src/addons/migrator.php:2181
2036
  msgid "Or, send a backup to another site"
2037
  msgstr "অথবা, ব্যাকআপ অন্য একটি সাইটে পাঠান"
2038
 
2039
+ #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr "পাঠান"
2042
 
2043
+ #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr ""
2046
 
2047
+ #: src/addons/migrator.php:1938
2048
  msgid "No receiving sites have yet been added."
2049
  msgstr "কোন প্রাপ্তির সাইট এখনো যোগ হয়নি"
2050
 
2051
+ #: src/addons/migrator.php:1919
2052
  msgid "It is for sending backups to the following site: "
2053
  msgstr ""
2054
 
2055
+ #: src/addons/migrator.php:1919
2056
  msgid "The key was successfully added."
2057
  msgstr ""
2058
 
2059
+ #: src/addons/migrator.php:1903
2060
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2061
  msgstr ""
2062
 
2063
+ #: src/addons/migrator.php:1892, src/addons/migrator.php:1894,
2064
+ #: src/addons/migrator.php:1898
2065
  msgid "The entered key was corrupt - please try again."
2066
  msgstr ""
2067
 
2068
+ #: src/addons/migrator.php:1890
2069
  msgid "The entered key was the wrong length - please try again."
2070
  msgstr ""
2071
 
2072
+ #: src/addons/migrator.php:1880
2073
  msgid "key"
2074
  msgstr "চাবি"
2075
 
2109
  msgid "Resetting..."
2110
  msgstr ""
2111
 
2112
+ #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr "সাইট যুক্ত করুন"
2115
 
2117
  msgid "Adding..."
2118
  msgstr "যুক্ত করা হচ্ছে..."
2119
 
2120
+ #: src/udaddons/options.php:336
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr ""
2123
 
2137
  msgid "Go here to re-enter your password."
2138
  msgstr "এখানে যান আপনার পাসওয়ার্ডটি পুনরাই দিতে।"
2139
 
2140
+ #: src/addons/migrator.php:232
2141
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2142
  msgstr ""
2143
 
2144
+ #: src/addons/migrator.php:203
2145
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2146
  msgstr ""
2147
 
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr ""
2163
 
2164
+ #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr ""
2340
  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)"
2341
  msgstr ""
2342
 
2343
+ #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr ""
2346
 
2415
  msgid "(at same time as files backup)"
2416
  msgstr ""
2417
 
2418
+ #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr ""
2421
 
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr ""
2466
 
2467
+ #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
+ #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr "%s ত্রুটি: ইনিশিয়ালাইজ করতে ব্যর্থ"
2471
 
2505
  msgid "Check this box to have a basic report sent to"
2506
  msgstr ""
2507
 
2508
+ #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr ""
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr ""
2525
 
2526
+ #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr ""
2529
 
2613
  msgid "(learn more about this significant option)"
2614
  msgstr ""
2615
 
2616
+ #: src/udaddons/options.php:278
2617
  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."
2618
  msgstr ""
2619
 
2620
+ #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr ""
2623
 
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr ""
2636
 
2637
+ #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr ""
2640
 
2642
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2643
  msgstr ""
2644
 
2645
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr ""
2648
 
2649
+ #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr ""
2653
 
2654
+ #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr ""
2657
 
2658
+ #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr ""
2661
 
2675
  msgid "Your label for this backup (optional)"
2676
  msgstr ""
2677
 
2678
+ #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1087
2679
  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."
2680
  msgstr ""
2681
 
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr ""
2697
 
2698
+ #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr ""
2701
 
2702
+ #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr ""
2705
 
2706
+ #: src/addons/migrator.php:1091
2707
  msgid "already done"
2708
  msgstr ""
2709
 
2710
+ #: src/addons/migrator.php:1048
2711
  msgid "skipped (not in list)"
2712
  msgstr ""
2713
 
2714
+ #: src/addons/migrator.php:1048, src/addons/migrator.php:1091,
2715
+ #: src/addons/migrator.php:1223
2716
  msgid "Search and replacing table:"
2717
  msgstr ""
2718
 
2719
+ #: src/addons/migrator.php:330
2720
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2721
  msgstr ""
2722
 
2723
+ #: src/addons/migrator.php:330
2724
  msgid "These tables only"
2725
  msgstr ""
2726
 
2727
+ #: src/addons/migrator.php:329
2728
  msgid "Rows per batch"
2729
  msgstr ""
2730
 
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr ""
2738
 
2739
+ #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr ""
2742
 
2743
+ #: src/class-updraftplus.php:4781
2744
  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."
2745
  msgstr ""
2746
 
2747
+ #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr ""
2750
 
2751
+ #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr ""
2754
 
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
+ #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr "আমি কেন এটি দেখছি?"
2783
 
2784
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2785
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2786
  msgstr ""
2787
 
2788
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr ""
2791
 
2792
+ #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr "ব্যাকআপ শুরু করুন"
2795
 
2796
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr ""
2799
 
2800
+ #: src/admin.php:2964
2801
  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."
2802
  msgstr ""
2803
 
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr ""
2807
 
2808
+ #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr "ফাইলটি আপলোড করা সম্ভব হয় নি"
2811
 
2812
+ #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr ""
2815
 
2829
  msgid "Memory limit"
2830
  msgstr ""
2831
 
2832
+ #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr ""
2835
 
2853
  msgid "Backup succeeded"
2854
  msgstr ""
2855
 
2856
+ #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr ""
2860
 
2861
+ #: src/addons/migrator.php:793, src/addons/migrator.php:795
2862
  msgid "search and replace"
2863
  msgstr ""
2864
 
2865
+ #: src/addons/migrator.php:332
2866
  msgid "Go"
2867
  msgstr ""
2868
 
2869
+ #: src/addons/migrator.php:321
2870
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2871
  msgstr ""
2872
 
2873
+ #: src/addons/migrator.php:320
2874
  msgid "This can easily destroy your site; so, use it with care!"
2875
  msgstr ""
2876
 
2877
+ #: src/addons/migrator.php:290, src/addons/migrator.php:328
2878
  msgid "Replace with"
2879
  msgstr ""
2880
 
2881
+ #: src/addons/migrator.php:289, src/addons/migrator.php:327
2882
  msgid "Search for"
2883
  msgstr ""
2884
 
2885
+ #: src/addons/migrator.php:288, src/addons/migrator.php:319,
2886
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2887
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2888
  msgid "Search / replace database"
2889
  msgstr ""
2890
 
2891
+ #: src/addons/migrator.php:294
2892
  msgid "search term"
2893
  msgstr ""
2894
 
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr ""
2906
 
2907
+ #: src/methods/googledrive.php:1095
2908
  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."
2909
  msgstr ""
2910
 
2911
+ #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr ""
2914
 
2928
  msgid "Free disk space in account:"
2929
  msgstr ""
2930
 
2931
+ #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr ""
2934
 
2935
+ #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
+ #: src/includes/deprecated-actions.php:29,
2937
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr ""
3027
  msgid "External database (%s)"
3028
  msgstr ""
3029
 
3030
+ #: src/methods/googledrive.php:1095
3031
  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."
3032
  msgstr ""
3033
 
3034
+ #: src/methods/googledrive.php:455
3035
  msgid "failed to access parent folder"
3036
  msgstr ""
3037
 
3038
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3039
+ #: src/addons/onedrive.php:773, src/methods/googledrive.php:408
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr ""
3042
 
3043
+ #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr ""
3046
 
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr ""
3074
 
3075
+ #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr ""
3078
 
3093
  msgid "database connection attempt failed."
3094
  msgstr ""
3095
 
3096
+ #: src/addons/migrator.php:979
3097
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3098
  msgstr ""
3099
 
3176
  msgid "Authenticate with %s"
3177
  msgstr ""
3178
 
3179
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr ""
3182
 
3204
  msgstr ""
3205
 
3206
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3207
+ #: src/methods/dropbox.php:546, src/methods/googledrive.php:1161
3208
  msgid "Account holder's name: %s."
3209
  msgstr ""
3210
 
3211
+ #: src/methods/googledrive.php:1139
3212
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3213
  msgstr ""
3214
 
3215
+ #: src/methods/googledrive.php:1130
3216
  msgid "It is an ID number internal to Google Drive"
3217
  msgstr ""
3218
 
3219
+ #: src/methods/googledrive.php:1130
3220
  msgid "<strong>This is NOT a folder name</strong>."
3221
  msgstr ""
3222
 
3223
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3224
+ #: src/methods/googledrive.php:1126, src/methods/googledrive.php:1136
3225
  msgid "Folder"
3226
  msgstr ""
3227
 
3228
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3229
+ #: src/methods/googledrive.php:1046
3230
  msgid "%s download: failed: file not found"
3231
  msgstr ""
3232
 
3233
+ #: src/addons/googlecloud.php:635, src/methods/googledrive.php:428
3234
  msgid "Name: %s."
3235
  msgstr ""
3236
 
3237
+ #: src/methods/googledrive.php:186
3238
  msgid "Google Drive list files: failed to access parent folder"
3239
  msgstr ""
3240
 
3259
  msgid "Fetch"
3260
  msgstr ""
3261
 
3262
+ #: src/addons/migrator.php:391,
3263
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
  #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr ""
3273
  msgid "Error - failed to download the file"
3274
  msgstr ""
3275
 
3276
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
3277
  msgid "Rescan local folder for new backup sets"
3278
  msgstr ""
3279
 
3293
  msgid "password/key"
3294
  msgstr ""
3295
 
3296
+ #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
+ #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr ""
3300
 
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr ""
3312
 
3313
+ #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr ""
3316
 
3317
+ #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr ""
3320
 
3321
+ #: src/addons/importer.php:276, src/admin.php:3470,
3322
+ #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr ""
3325
 
3326
+ #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr ""
3329
 
3330
+ #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr ""
3333
 
3334
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3335
  msgid "Rescan remote storage"
3336
  msgstr ""
3337
 
3338
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:39
3339
  msgid "Upload backup files"
3340
  msgstr ""
3341
 
3342
+ #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr ""
3345
 
3351
  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."
3352
  msgstr ""
3353
 
3354
+ #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr ""
3357
 
3359
  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."
3360
  msgstr ""
3361
 
3362
+ #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
3363
  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))."
3364
  msgstr ""
3365
 
3366
+ #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr ""
3389
  msgid "No settings were found"
3390
  msgstr ""
3391
 
3392
+ #: src/class-updraftplus.php:3100
3393
  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."
3394
  msgstr ""
3395
 
3415
  msgid "Remove"
3416
  msgstr ""
3417
 
3418
+ #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr ""
3421
 
3423
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3424
  msgstr ""
3425
 
3426
+ #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  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."
3428
  msgstr ""
3429
 
3430
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr ""
3434
 
3435
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr ""
3438
 
3452
  msgid "Backup created by:"
3453
  msgstr ""
3454
 
3455
+ #: src/udaddons/options.php:485
3456
  msgid "Available to claim on this site"
3457
  msgstr ""
3458
 
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr ""
3504
 
3505
+ #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr ""
3508
 
3509
+ #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr ""
3512
 
3513
+ #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr ""
3516
 
3543
  msgid "Errors occurred:"
3544
  msgstr ""
3545
 
3546
+ #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr ""
3549
 
3571
  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)"
3572
  msgstr ""
3573
 
3574
+ #: src/addons/migrator.php:261
3575
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3576
  msgstr ""
3577
 
3580
  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."
3581
  msgstr ""
3582
 
3583
+ #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr ""
3586
 
3740
  msgid "Authorisation failed (check your credentials)"
3741
  msgstr ""
3742
 
3743
+ #: src/methods/updraftvault.php:568, src/udaddons/options.php:270
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr ""
3746
 
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr ""
3758
 
3759
+ #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr ""
3762
 
3763
+ #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr ""
3766
 
3767
+ #: src/admin.php:2585
3768
  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."
3769
  msgstr ""
3770
 
3820
  msgid "Debugging information"
3821
  msgstr ""
3822
 
3823
+ #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr ""
3826
 
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
+ #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
3893
  msgstr ""
3894
 
3895
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
+ #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
+ #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr ""
3976
 
3977
+ #: src/udaddons/options.php:491
3978
  msgid "(or connect using the form on this page if you have already purchased it)"
3979
  msgstr ""
3980
 
3981
+ #: src/udaddons/options.php:477
3982
  msgid "please follow this link to update the plugin in order to activate it"
3983
  msgstr ""
3984
 
3985
+ #: src/udaddons/options.php:474
3986
  msgid "please follow this link to update the plugin in order to get it"
3987
  msgstr ""
3988
 
3989
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
3990
  msgid "latest"
3991
  msgstr ""
3992
 
3993
+ #: src/udaddons/options.php:462
3994
  msgid "Your version: %s"
3995
  msgstr ""
3996
 
3997
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
3998
  msgid "You've got it"
3999
  msgstr ""
4000
 
4001
+ #: src/udaddons/options.php:421
4002
  msgid "UpdraftPlus Support"
4003
  msgstr ""
4004
 
4005
+ #: src/udaddons/options.php:379
4006
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4007
  msgstr ""
4008
 
4009
+ #: src/udaddons/options.php:368, src/udaddons/updraftplus-addons.php:290
4010
  msgid "UpdraftPlus Addons"
4011
  msgstr ""
4012
 
4042
  msgid "Reporting"
4043
  msgstr ""
4044
 
4045
+ #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr ""
4048
 
4070
  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)"
4071
  msgstr ""
4072
 
4073
+ #: src/udaddons/options.php:556
4074
  msgid "Manage Addons"
4075
  msgstr ""
4076
 
4077
+ #: src/udaddons/options.php:492, src/udaddons/options.php:492
4078
  msgid "Buy It"
4079
  msgstr ""
4080
 
4081
+ #: src/udaddons/options.php:491
4082
  msgid "Get it from the UpdraftPlus.Com Store"
4083
  msgstr ""
4084
 
4085
+ #: src/udaddons/options.php:485, src/udaddons/options.php:487
4086
  msgid "activate it on this site"
4087
  msgstr ""
4088
 
4089
+ #: src/udaddons/options.php:487
4090
  msgid "You have an inactive purchase"
4091
  msgstr ""
4092
 
4093
+ #: src/udaddons/options.php:477
4094
  msgid "Assigned to this site"
4095
  msgstr ""
4096
 
4097
+ #: src/udaddons/options.php:474
4098
  msgid "Available for this site (via your all-addons purchase)"
4099
  msgstr ""
4100
 
4101
+ #: src/udaddons/options.php:468
4102
  msgid "(apparently a pre-release or withdrawn release)"
4103
  msgstr ""
4104
 
4105
+ #: src/udaddons/options.php:423
4106
  msgid "Go here"
4107
  msgstr ""
4108
 
4109
+ #: src/udaddons/options.php:423
4110
  msgid "Need to get support?"
4111
  msgstr ""
4112
 
4113
+ #: src/udaddons/options.php:405
4114
  msgid "An error occurred when trying to retrieve your add-ons."
4115
  msgstr ""
4116
 
4117
+ #: src/udaddons/options.php:338
4118
  msgid "An unknown response was received. Response was:"
4119
  msgstr ""
4120
 
4121
+ #: src/udaddons/options.php:337
4122
  msgid "Claim not granted - your account login details were wrong"
4123
  msgstr ""
4124
 
4125
+ #: src/udaddons/options.php:335
4126
  msgid "Please wait whilst we make the claim..."
4127
  msgstr ""
4128
 
4129
+ #: src/udaddons/options.php:288
4130
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4131
  msgstr ""
4132
 
4133
+ #: src/udaddons/options.php:281
4134
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr ""
4136
 
4137
+ #: src/udaddons/options.php:277
4138
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4139
  msgstr ""
4140
 
4141
+ #: src/udaddons/options.php:276
4142
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4143
  msgstr ""
4144
 
4145
+ #: src/udaddons/options.php:247
4146
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4147
  msgstr ""
4148
 
4149
+ #: src/udaddons/options.php:175
4150
  msgid "Forgotten your details?"
4151
  msgstr ""
4152
 
4153
+ #: src/udaddons/options.php:164
4154
  msgid "Not yet got an account (it's free)? Go get one!"
4155
  msgstr ""
4156
 
4157
+ #: src/udaddons/options.php:131
4158
  msgid "Connect with your UpdraftPlus.Com account"
4159
  msgstr ""
4160
 
4194
  msgid "Your web-server does not have the %s module installed."
4195
  msgstr ""
4196
 
4197
+ #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1148
4198
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4199
  msgstr ""
4200
 
4201
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:67
4202
  msgid "Drop backup files here"
4203
  msgstr ""
4204
 
4205
+ #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr ""
4208
 
4243
  msgid "You can send a backup to more than one destination with an add-on."
4244
  msgstr ""
4245
 
4246
+ #: src/admin.php:2803
4247
  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."
4248
  msgstr ""
4249
 
4250
+ #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr ""
4253
 
4288
  msgid "%s settings test result:"
4289
  msgstr ""
4290
 
4291
+ #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr ""
4294
 
4295
+ #: src/admin.php:3542
4296
  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."
4297
  msgstr ""
4298
 
4304
  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)."
4305
  msgstr ""
4306
 
4307
+ #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr ""
4310
 
4311
+ #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr ""
4314
 
4315
+ #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr ""
4318
 
4319
+ #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr ""
4324
 
4325
+ #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr ""
4328
 
4329
+ #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr ""
4332
 
4333
+ #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr ""
4336
 
4337
+ #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr ""
4340
 
4341
+ #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr ""
4344
 
4345
+ #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr ""
4348
 
4349
+ #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr ""
4352
 
4353
+ #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr ""
4356
 
4357
+ #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr ""
4360
 
4361
+ #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr ""
4364
 
4365
+ #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr ""
4368
 
4369
+ #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr ""
4372
 
4373
+ #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr ""
4376
 
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr ""
4392
 
4393
+ #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr ""
4396
 
4404
  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)."
4405
  msgstr ""
4406
 
4407
+ #: src/admin.php:2336
4408
  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)."
4409
  msgstr ""
4410
 
4483
  msgid "Support"
4484
  msgstr "সহায়তা"
4485
 
4486
+ #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr ""
4489
 
4490
+ #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr ""
4493
 
4494
+ #: src/class-updraftplus.php:4774
4495
  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."
4496
  msgstr ""
4497
 
4498
+ #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr ""
4501
 
4502
+ #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr ""
4505
 
4508
  msgid "Be safe with an automatic backup"
4509
  msgstr ""
4510
 
4511
+ #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr ""
4514
 
4556
  msgid "Delete from your web server"
4557
  msgstr ""
4558
 
4559
+ #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr ""
4562
 
4563
+ #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr ""
4566
 
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr ""
4582
 
4583
+ #: src/admin.php:2049
4584
  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?"
4585
  msgstr ""
4586
 
4616
  msgid "No such backup set exists"
4617
  msgstr ""
4618
 
4619
+ #: src/admin.php:1291
4620
  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"
4621
  msgstr ""
4622
 
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr ""
4634
 
4635
+ #: src/methods/s3.php:851
4636
  msgid "%s end-point"
4637
  msgstr ""
4638
 
4639
+ #: src/methods/s3.php:813
4640
  msgid "... and many more!"
4641
  msgstr ""
4642
 
4643
+ #: src/methods/s3generic.php:52, src/methods/s3generic.php:61
4644
  msgid "S3 (Compatible)"
4645
  msgstr ""
4646
 
4647
+ #: src/admin.php:1205
4648
  msgid "File is not locally present - needs retrieving from remote storage"
4649
  msgstr ""
4650
 
4651
+ #: src/admin.php:3810
4652
  msgid "Looking for %s archive: file name: %s"
4653
  msgstr ""
4654
 
4655
+ #: src/admin.php:3771
4656
  msgid "Final checks"
4657
  msgstr ""
4658
 
4664
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4665
  msgstr ""
4666
 
4667
+ #: src/admin.php:3162
4668
  msgid "Your wp-content directory server path: %s"
4669
  msgstr ""
4670
 
4680
  msgid "Processing files - please wait..."
4681
  msgstr ""
4682
 
4683
+ #: src/admin.php:3956,
4684
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4685
  msgid "Please consult this FAQ for help on what to do about it."
4686
  msgstr ""
4687
 
4688
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4689
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4690
  msgstr ""
4691
 
4692
+ #: src/class-updraftplus.php:4682
4693
  msgid "Failed to open database file."
4694
  msgstr ""
4695
 
4696
+ #: src/admin.php:4382
4697
  msgid "Known backups (raw)"
4698
  msgstr ""
4699
 
4705
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4706
  msgstr ""
4707
 
4708
+ #: src/addons/migrator.php:341
4709
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4710
  msgstr ""
4711
 
4712
+ #: src/admin.php:3830
4713
  msgid "file is size:"
4714
  msgstr ""
4715
 
4716
+ #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4717
+ #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:945,
4718
+ #: src/admin.php:2293, src/backup.php:3043, src/updraftplus.php:156
4719
  msgid "Go here for more information."
4720
  msgstr ""
4721
 
4723
  msgid "Some files are still downloading or being processed - please wait."
4724
  msgstr ""
4725
 
4726
+ #: src/class-updraftplus.php:4746, src/class-updraftplus.php:4764
4727
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4728
  msgstr ""
4729
 
4769
 
4770
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4771
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4772
+ #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:420,
4773
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4774
  #: src/methods/stream-base.php:285
4775
  msgid "%s Error"
4793
  msgid "%s authentication failed"
4794
  msgstr ""
4795
 
4796
+ #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4797
+ #: src/admin.php:1994, src/admin.php:2041, src/admin.php:2049,
4798
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4799
+ #: src/class-updraftplus.php:4653, src/class-updraftplus.php:4655,
4800
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4804,
4801
+ #: src/class-updraftplus.php:4839, src/methods/googledrive.php:369,
4802
+ #: src/methods/s3.php:321
4803
  msgid "Error: %s"
4804
  msgstr ""
4805
 
4806
+ #: src/admin.php:3099
4807
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4808
  msgstr ""
4809
 
4810
+ #: src/admin.php:3097
4811
  msgid "Backup directory specified does <b>not</b> exist."
4812
  msgstr ""
4813
 
4814
+ #: src/admin.php:2810, src/admin.php:3053
4815
  msgid "Warning: %s"
4816
  msgstr ""
4817
 
4839
  msgid "Warnings encountered:"
4840
  msgstr ""
4841
 
4842
+ #: src/class-updraftplus.php:3194
4843
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4844
  msgstr ""
4845
 
4847
  msgid "Your free disk space is very low - only %s Mb remain"
4848
  msgstr ""
4849
 
4850
+ #: src/addons/migrator.php:478
4851
  msgid "New site:"
4852
  msgstr ""
4853
 
4854
+ #: src/addons/migrator.php:453
4855
  msgid "Migrated site (from UpdraftPlus)"
4856
  msgstr ""
4857
 
4858
+ #: src/addons/migrator.php:400
4859
  msgid "Enter details for where this new site is to live within your multisite install:"
4860
  msgstr ""
4861
 
4862
+ #: src/addons/migrator.php:399
4863
  msgid "Information needed to continue:"
4864
  msgstr ""
4865
 
4866
+ #: src/addons/migrator.php:356
4867
  msgid "Network activating theme:"
4868
  msgstr ""
4869
 
4870
+ #: src/addons/migrator.php:346
4871
  msgid "Processed plugin:"
4872
  msgstr ""
4873
 
4879
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4880
  msgstr ""
4881
 
4882
+ #: src/methods/s3.php:827
4883
  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."
4884
  msgstr ""
4885
 
4886
+ #: src/methods/s3.php:1082
4887
  msgid "Please check your access credentials."
4888
  msgstr ""
4889
 
4890
+ #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1060
4891
  msgid "The error reported by %s was:"
4892
  msgstr ""
4893
 
4895
  msgid "Please supply the requested information, and then continue."
4896
  msgstr ""
4897
 
4898
+ #: src/class-updraftplus.php:4815, src/restorer.php:1706
4899
  msgid "Site information:"
4900
  msgstr ""
4901
 
4903
  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."
4904
  msgstr ""
4905
 
4906
+ #: src/addons/migrator.php:341, src/admin.php:2288,
4907
+ #: src/class-updraftplus.php:4808, src/restorer.php:2033
4908
  msgid "Warning:"
4909
  msgstr ""
4910
 
4911
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4800,
4912
  #: src/restorer.php:154
4913
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4914
  msgstr ""
4915
 
4916
+ #: src/admin.php:3798
4917
  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."
4918
  msgstr ""
4919
 
4920
+ #: src/admin.php:3228, src/methods/updraftvault.php:286
4921
  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."
4922
  msgstr ""
4923
 
4972
  msgid "Also delete from remote storage"
4973
  msgstr ""
4974
 
4975
+ #: src/admin.php:2540
4976
  msgid "Latest UpdraftPlus.com news:"
4977
  msgstr ""
4978
 
4989
  msgid "News"
4990
  msgstr ""
4991
 
4992
+ #: src/admin.php:1469, src/includes/class-wpadmin-commands.php:465
4993
  msgid "Backup set not found"
4994
  msgstr ""
4995
 
5015
  msgid "Testing %s Settings..."
5016
  msgstr ""
5017
 
5018
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
5019
  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."
5020
  msgstr ""
5021
 
5043
  msgid "Store at"
5044
  msgstr ""
5045
 
5046
+ #: src/addons/migrator.php:1388
5047
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5048
  msgstr ""
5049
 
5050
+ #: src/addons/migrator.php:1266
5051
  msgid "rows: %d"
5052
  msgstr ""
5053
 
5054
+ #: src/addons/migrator.php:1142
5055
  msgid "Time taken (seconds):"
5056
  msgstr ""
5057
 
5058
+ #: src/addons/migrator.php:1141, src/admin.php:659
5059
  msgid "Errors:"
5060
  msgstr ""
5061
 
5062
+ #: src/addons/migrator.php:1140
5063
  msgid "SQL update commands run:"
5064
  msgstr ""
5065
 
5066
+ #: src/addons/migrator.php:1139
5067
  msgid "Changes made:"
5068
  msgstr ""
5069
 
5070
+ #: src/addons/migrator.php:1138
5071
  msgid "Rows examined:"
5072
  msgstr ""
5073
 
5074
+ #: src/addons/migrator.php:1137
5075
  msgid "Tables examined:"
5076
  msgstr ""
5077
 
5078
+ #: src/addons/migrator.php:1026
5079
  msgid "Could not get list of tables"
5080
  msgstr ""
5081
 
5082
+ #: src/addons/migrator.php:971
5083
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5084
  msgstr ""
5085
 
5086
+ #: src/addons/migrator.php:960
5087
  msgid "Nothing to do: the site URL is already: %s"
5088
  msgstr ""
5089
 
5090
+ #: src/addons/migrator.php:924, src/addons/migrator.php:928,
5091
+ #: src/addons/migrator.php:932, src/addons/migrator.php:937,
5092
+ #: src/addons/migrator.php:941, src/addons/migrator.php:946
5093
  msgid "Error: unexpected empty parameter (%s, %s)"
5094
  msgstr ""
5095
 
5096
+ #: src/addons/migrator.php:884
5097
  msgid "Database: search and replace site URL"
5098
  msgstr ""
5099
 
5100
+ #: src/addons/migrator.php:795, src/addons/migrator.php:1123
5101
  msgid "Failed: we did not understand the result returned by the %s operation."
5102
  msgstr ""
5103
 
5104
+ #: src/addons/migrator.php:793, src/addons/migrator.php:1121
5105
  msgid "Failed: the %s operation was not able to start."
5106
  msgstr ""
5107
 
5108
+ #: src/addons/migrator.php:558
5109
  msgid "(learn more)"
5110
  msgstr ""
5111
 
5112
+ #: src/addons/migrator.php:558
5113
  msgid "Search and replace site location in the database (migrate)"
5114
  msgstr ""
5115
 
5116
+ #: src/addons/migrator.php:558
5117
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5118
  msgstr ""
5119
 
5121
  msgid "Blog uploads"
5122
  msgstr ""
5123
 
5124
+ #: src/addons/migrator.php:385, src/addons/multisite.php:649
5125
  msgid "Must-use plugins"
5126
  msgstr ""
5127
 
5160
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5161
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5162
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5163
+ #: src/udaddons/options.php:135
5164
  msgid "Password"
5165
  msgstr ""
5166
 
5226
  msgstr ""
5227
 
5228
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5229
+ #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2864,
5230
+ #: src/admin.php:2899, src/admin.php:2908, src/methods/addon-base-v2.php:289,
5231
  #: src/methods/stream-base.php:301
5232
  msgid "Failed"
5233
  msgstr ""
5252
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5253
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5254
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5255
+ #: src/methods/googledrive.php:172, src/methods/googledrive.php:174,
5256
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5257
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5258
  #: src/methods/stream-base.php:246
5320
  msgid "You do not appear to be authenticated with Dropbox"
5321
  msgstr ""
5322
 
5323
+ #: src/methods/s3.php:1077
5324
  msgid "The communication with %s was not encrypted."
5325
  msgstr ""
5326
 
5327
+ #: src/methods/s3.php:1075
5328
  msgid "The communication with %s was encrypted."
5329
  msgstr ""
5330
 
5331
+ #: src/addons/googlecloud.php:756, src/methods/s3.php:1072
5332
  msgid "We accessed the bucket, and were able to create files within it."
5333
  msgstr ""
5334
 
5335
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5336
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5337
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5338
  msgstr ""
5339
 
5340
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5341
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5342
  msgid "Failure"
5343
  msgstr ""
5344
 
5345
+ #: src/methods/s3.php:1058
5346
  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)."
5347
  msgstr ""
5348
 
5349
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5350
+ #: src/methods/s3.php:1052
5351
  msgid "Region"
5352
  msgstr ""
5353
 
5354
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5355
+ #: src/methods/s3.php:1034
5356
  msgid "Failure: No bucket details were given."
5357
  msgstr ""
5358
 
5359
+ #: src/methods/s3.php:1012
5360
  msgid "API secret"
5361
  msgstr ""
5362
 
5363
+ #: src/methods/s3.php:888
5364
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5365
  msgstr ""
5366
 
5367
+ #: src/methods/s3.php:887
5368
  msgid "%s location"
5369
  msgstr ""
5370
 
5371
+ #: src/methods/s3.php:883
5372
  msgid "%s secret key"
5373
  msgstr ""
5374
 
5375
+ #: src/methods/s3.php:879
5376
  msgid "%s access key"
5377
  msgstr ""
5378
 
5379
+ #: src/methods/s3.php:844
5380
  msgid "If you see errors about SSL certificates, then please go here for help."
5381
  msgstr ""
5382
 
5383
+ #: src/methods/s3.php:842
5384
  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."
5385
  msgstr ""
5386
 
5387
+ #: src/methods/s3.php:462, src/methods/s3.php:574, src/methods/s3.php:646,
5388
+ #: src/methods/s3.php:749
5389
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5390
  msgstr ""
5391
 
5392
+ #: src/methods/s3.php:732, src/methods/s3.php:742, src/methods/s3.php:778
5393
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5394
  msgstr ""
5395
 
5396
+ #: src/methods/s3.php:440
5397
  msgid "%s re-assembly error (%s): (see log file for more)"
5398
  msgstr ""
5399
 
5400
+ #: src/methods/s3.php:436
5401
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5402
  msgstr ""
5403
 
5404
+ #: src/methods/s3.php:420
5405
  msgid "%s chunk %s: upload failed"
5406
  msgstr ""
5407
 
5408
+ #: src/methods/s3.php:410
5409
  msgid "%s error: file %s was shortened unexpectedly"
5410
  msgstr ""
5411
 
5412
+ #: src/methods/s3.php:388
5413
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5414
  msgstr ""
5415
 
5440
  msgstr "ব্যবহারকারী নাম"
5441
 
5442
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5443
+ #: src/methods/s3.php:1008
5444
  msgid "API key"
5445
  msgstr ""
5446
 
5447
+ #: src/addons/migrator.php:294, src/addons/migrator.php:1880,
5448
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5449
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5450
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5454
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5455
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5456
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5457
+ #: src/methods/s3.php:1008, src/methods/s3.php:1012
5458
  msgid "Failure: No %s was given."
5459
  msgstr ""
5460
 
5461
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5462
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5463
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5464
  msgstr ""
5465
 
5498
  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."
5499
  msgstr ""
5500
 
5501
+ #: src/admin.php:735, src/methods/backup-module.php:247
5502
  msgid "Test %s Settings"
5503
  msgstr ""
5504
 
5514
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5515
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5516
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5517
+ #: src/methods/s3.php:356, src/methods/s3.php:368, src/methods/s3.php:369
5518
  msgid "%s Error: Failed to upload"
5519
  msgstr ""
5520
 
5521
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5522
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5523
+ #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5524
  msgid "%s Error: Failed to open local file"
5525
  msgstr ""
5526
 
5536
  msgid "Cloud Files authentication failed"
5537
  msgstr ""
5538
 
5539
+ #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1166
5540
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5541
  msgstr ""
5542
 
5543
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5544
+ #: src/methods/googledrive.php:1114
5545
  msgid "Client Secret"
5546
  msgstr ""
5547
 
5548
+ #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1111
5549
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5550
  msgstr ""
5551
 
5552
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5553
+ #: src/methods/googledrive.php:1110
5554
  msgid "Client ID"
5555
  msgstr ""
5556
 
5557
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5558
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5559
  msgstr ""
5560
 
5561
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5562
  msgid "Select 'Web Application' as the application type."
5563
  msgstr ""
5564
 
5565
+ #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1093
5566
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5567
  msgstr ""
5568
 
5569
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5570
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5571
+ #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:531,
5572
+ #: src/methods/s3.php:802, src/methods/stream-base.php:218
5573
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5574
  msgstr ""
5575
 
5576
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5577
+ #: src/addons/googlecloud.php:783, src/methods/googledrive.php:531,
5578
+ #: src/methods/googledrive.php:532, src/methods/googledrive.php:542,
5579
+ #: src/methods/googledrive.php:543
5580
  msgid "Account is not authorized."
5581
  msgstr ""
5582
 
5583
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:501,
5584
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
5585
  #: src/methods/stream-base.php:200
5586
  msgid "Failed to upload to %s"
5587
  msgstr ""
5588
 
5589
+ #: src/methods/googledrive.php:484
5590
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5591
  msgstr ""
5592
 
5593
+ #: src/methods/googledrive.php:575, src/methods/googledrive.php:611
5594
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5595
  msgstr ""
5596
 
5597
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5598
+ #: src/methods/googledrive.php:428
5599
  msgid "you have authenticated your %s account."
5600
  msgstr ""
5601
 
5602
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5603
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5604
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5605
+ #: src/methods/googledrive.php:428, src/methods/openstack-base.php:495,
5606
+ #: src/methods/s3.php:1072, src/methods/stream-base.php:312
5607
  msgid "Success"
5608
  msgstr ""
5609
 
5610
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5611
+ #: src/methods/dropbox.php:693, src/methods/googledrive.php:402
5612
  msgid "Your %s quota usage: %s %% used, %s available"
5613
  msgstr ""
5614
 
5615
+ #: src/addons/googlecloud.php:438, src/methods/googledrive.php:375
5616
  msgid "Authorization failed"
5617
  msgstr "অনুমোদন ব্যর্থ"
5618
 
5619
+ #: src/addons/googlecloud.php:430, src/methods/googledrive.php:367
5620
  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."
5621
  msgstr ""
5622
 
5642
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5643
  msgstr ""
5644
 
5645
+ #: src/addons/migrator.php:1775, src/admin.php:1233, src/admin.php:2867,
5646
+ #: src/admin.php:2901, src/admin.php:2905, src/admin.php:3828,
5647
  #: src/restorer.php:2273, src/restorer.php:2378
5648
  msgid "OK"
5649
  msgstr "ঠিক আছে"
5652
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5653
  msgstr ""
5654
 
5655
+ #: src/addons/migrator.php:1154, src/restorer.php:2170
5656
  msgid "the database query being run was:"
5657
  msgstr ""
5658
 
5660
  msgid "will restore as:"
5661
  msgstr ""
5662
 
5663
+ #: src/class-updraftplus.php:4786, src/restorer.php:1688,
5664
  #: src/restorer.php:1777, src/restorer.php:1803
5665
  msgid "Old table prefix:"
5666
  msgstr ""
5667
 
5668
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5669
+ #: src/backup.php:960, src/class-updraftplus.php:4725
5670
  msgid "Backup of:"
5671
  msgstr ""
5672
 
5738
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5739
  msgstr ""
5740
 
5741
+ #: src/admin.php:3836, src/admin.php:3837
5742
  msgid "Could not find one of the files for restoration"
5743
  msgstr ""
5744
 
5745
+ #: src/admin.php:3946
5746
  msgid "Error message"
5747
  msgstr ""
5748
 
5749
+ #: src/admin.php:3833
5750
  msgid "The backup records do not contain information about the proper size of this file."
5751
  msgstr ""
5752
 
5753
+ #: src/admin.php:3825
5754
  msgid "Archive is expected to be size:"
5755
  msgstr ""
5756
 
5757
+ #: src/admin.php:3722
5758
  msgid "If making a request for support, please include this information:"
5759
  msgstr ""
5760
 
5761
+ #: src/admin.php:3721
5762
  msgid "ABORT: Could not find the information on which entities to restore."
5763
  msgstr ""
5764
 
5765
+ #: src/admin.php:3676
5766
  msgid "UpdraftPlus Restoration: Progress"
5767
  msgstr ""
5768
 
5769
+ #: src/admin.php:3628
5770
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5771
  msgstr ""
5772
 
5773
+ #: src/admin.php:3570
5774
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5775
  msgstr ""
5776
 
5777
+ #: src/admin.php:3579
5778
  msgid "Delete this backup set"
5779
  msgstr ""
5780
 
5781
+ #: src/admin.php:3240
5782
  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."
5783
  msgstr ""
5784
 
5785
+ #: src/admin.php:3237
5786
  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."
5787
  msgstr ""
5788
 
5789
+ #: src/admin.php:3235
5790
  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)."
5791
  msgstr ""
5792
 
5793
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5794
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5795
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5796
  msgstr ""
5797
 
5827
  msgid "Use the server's SSL certificates"
5828
  msgstr ""
5829
 
5830
+ #: src/admin.php:3101
5831
  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."
5832
  msgstr ""
5833
 
5834
+ #: src/admin.php:3101
5835
  msgid "click here"
5836
  msgstr "এখানে ক্লিক করুন"
5837
 
5838
+ #: src/admin.php:3101
5839
  msgid "or, to reset this option"
5840
  msgstr ""
5841
 
5842
+ #: src/admin.php:3101
5843
  msgid "Follow this link to attempt to create the directory and set the permissions"
5844
  msgstr ""
5845
 
5846
+ #: src/admin.php:3093
5847
  msgid "Backup directory specified is writable, which is good."
5848
  msgstr ""
5849
 
5883
  msgid "Cancel"
5884
  msgstr "বাতিল"
5885
 
5886
+ #: src/addons/reporting.php:233, src/admin.php:3384
5887
  msgid "None"
5888
  msgstr "কোনটিই না"
5889
 
5900
  msgstr ""
5901
 
5902
  #: src/templates/wp-admin/settings/form-contents.php:285,
5903
+ #: src/udaddons/options.php:133
5904
  msgid "Email"
5905
  msgstr ""
5906
 
5908
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5909
  msgstr ""
5910
 
5911
+ #: src/addons/morefiles.php:443, src/admin.php:3171
5912
  msgid "Exclude these:"
5913
  msgstr ""
5914
 
5915
+ #: src/admin.php:3162
5916
  msgid "Any other directories found inside wp-content"
5917
  msgstr ""
5918
 
5928
  msgid "To fix the time at which a backup should take place,"
5929
  msgstr ""
5930
 
5931
+ #: src/admin.php:3087
5932
  msgid "Monthly"
5933
  msgstr "মাসিক"
5934
 
5935
+ #: src/admin.php:3086
5936
  msgid "Fortnightly"
5937
  msgstr "পাক্ষিক"
5938
 
5939
+ #: src/admin.php:3085
5940
  msgid "Weekly"
5941
  msgstr "সাপ্তাহিক"
5942
 
5943
+ #: src/admin.php:3084
5944
  msgid "Daily"
5945
  msgstr ""
5946
 
5947
+ #: src/admin.php:694, src/admin.php:3067
5948
  msgid "Download log file"
5949
  msgstr "লগ ফাইল ডাউনলোড করুন"
5950
 
5951
+ #: src/admin.php:2964
5952
  msgid "The folder exists, but your webserver does not have permission to write to it."
5953
  msgstr ""
5954
 
5955
+ #: src/admin.php:2959
5956
  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"
5957
  msgstr ""
5958
 
5959
+ #: src/admin.php:2945
5960
  msgid "The request to the filesystem to create the directory failed."
5961
  msgstr ""
5962
 
5963
+ #: src/addons/migrator.php:2253, src/admin.php:688, src/admin.php:2861,
5964
+ #: src/admin.php:2894, src/admin.php:3579,
5965
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5966
  msgid "Delete"
5967
  msgstr "মুছুন"
5968
 
5969
+ #: src/admin.php:2645
5970
  msgid "(None)"
5971
  msgstr ""
5972
 
5973
+ #: src/admin.php:2801
5974
  msgid "show log"
5975
  msgstr "লগ দেখান"
5976
 
6075
  msgid "Multisite"
6076
  msgstr "মাল্টিসাইট"
6077
 
6078
+ #: src/admin.php:2464
6079
  msgid "Go here for help."
6080
  msgstr "সাহায্যের জন্য এখানে যান।"
6081
 
6132
  msgid "Download error: the server sent us a response which we did not understand."
6133
  msgstr ""
6134
 
6135
+ #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:780,
6136
+ #: src/addons/migrator.php:1026, src/addons/migrator.php:1107,
6137
+ #: src/addons/migrator.php:1154, src/addons/migrator.php:1388,
6138
+ #: src/addons/migrator.php:1714, src/addons/migrator.php:1741,
6139
+ #: src/addons/migrator.php:1747, src/addons/migrator.php:1809,
6140
+ #: src/addons/migrator.php:1849, src/addons/migrator.php:1888,
6141
+ #: src/addons/migrator.php:1898, src/addons/migrator.php:1903,
6142
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6143
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6144
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6145
+ #: src/admin.php:3830, src/admin.php:3860, src/methods/remotesend.php:71,
6146
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6147
  #: src/restorer.php:1408
6148
  msgid "Error:"
6149
  msgstr ""
6150
 
6151
  #: src/admin.php:653,
6152
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6153
  msgid "calculating..."
6154
  msgstr ""
6155
 
6156
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:56
6157
  msgid "UpdraftPlus - Upload backup files"
6158
  msgstr ""
6159
 
6160
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6161
  msgid "refresh"
6162
  msgstr "রিফ্রেশ"
6163
 
6164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6165
  msgid "Web-server disk space in use by UpdraftPlus"
6166
  msgstr ""
6167
 
6168
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6169
  msgid "This is a count of the contents of your Updraft directory"
6170
  msgstr ""
6171
 
6172
+ #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:172,
6173
+ #: src/methods/googledrive.php:174, src/methods/googledrive.php:428,
6174
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:484,
6175
+ #: src/methods/googledrive.php:491, src/methods/googledrive.php:501,
6176
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
6177
+ #: src/methods/googledrive.php:1075, src/methods/googledrive.php:1087,
6178
+ #: src/methods/googledrive.php:1087, src/methods/googledrive.php:1110,
6179
+ #: src/methods/googledrive.php:1114, src/methods/googledrive.php:1126,
6180
+ #: src/methods/googledrive.php:1136, src/methods/googledrive.php:1149
6181
  msgid "Google Drive"
6182
  msgstr "গুগোল ড্রাইভ"
6183
 
6184
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6185
  msgid "If you are using this, then turn Turbo/Road mode off."
6186
  msgstr ""
6187
 
6188
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6189
  msgid "Opera web browser"
6190
  msgstr "অপেরা ওযেব ব্রাউজার"
6191
 
6192
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:35
6193
  msgid "More tasks:"
6194
  msgstr "আরও টাস্ক:"
6195
 
6196
+ #: src/admin.php:2564
6197
  msgid "Download most recently modified log file"
6198
  msgstr ""
6199
 
6200
+ #: src/admin.php:2523, src/admin.php:2529, src/central/bootstrap.php:169
6201
  msgid "(Nothing yet logged)"
6202
  msgstr ""
6203
 
6204
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6205
+ #: src/admin.php:2522, src/admin.php:2527
6206
  msgid "Last log message"
6207
  msgstr ""
6208
 
6209
+ #: src/addons/migrator.php:232, src/admin.php:693, src/admin.php:3570,
6210
  #: src/templates/wp-admin/settings/tab-status.php:30
6211
  msgid "Restore"
6212
  msgstr "পুনঃস্থাপন"
6216
  msgid "Backup Now"
6217
  msgstr ""
6218
 
6219
+ #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6220
+ #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3359,
6221
+ #: src/admin.php:3439, src/admin.php:3914,
6222
  #: src/includes/class-wpadmin-commands.php:147,
6223
  #: src/includes/class-wpadmin-commands.php:480,
6224
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
6226
  msgid "Database"
6227
  msgstr ""
6228
 
6229
+ #: src/admin.php:295, src/admin.php:4388
6230
  msgid "Files"
6231
  msgstr ""
6232
 
6254
  msgid "JavaScript warning"
6255
  msgstr ""
6256
 
6257
+ #: src/admin.php:673, src/admin.php:2591
6258
  msgid "Delete Old Directories"
6259
  msgstr ""
6260
 
6261
+ #: src/admin.php:2336
6262
  msgid "Current limit is:"
6263
  msgstr ""
6264
 
6265
+ #: src/admin.php:2310
6266
  msgid "Your backup has been restored."
6267
  msgstr ""
6268
 
6274
  msgid "Lead developer's homepage"
6275
  msgstr "প্রধান ডেভেলপার এর হোমপেজে"
6276
 
6277
+ #: src/admin.php:4308
6278
  msgid "Your settings have been wiped."
6279
  msgstr ""
6280
 
6281
+ #: src/admin.php:2270
6282
  msgid "Backup directory successfully created."
6283
  msgstr ""
6284
 
6285
+ #: src/admin.php:2263
6286
  msgid "Backup directory could not be created"
6287
  msgstr ""
6288
 
6289
+ #: src/admin.php:2833
6290
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6291
  msgstr ""
6292
 
6293
+ #: src/admin.php:2831
6294
  msgid "Old directories successfully removed."
6295
  msgstr ""
6296
 
6297
+ #: src/admin.php:2828, src/admin.php:2828
6298
  msgid "Remove old directories"
6299
  msgstr ""
6300
 
6301
+ #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6302
+ #: src/admin.php:2212, src/admin.php:2221, src/admin.php:2230,
6303
+ #: src/admin.php:2272, src/admin.php:2835
6304
  msgid "Return to UpdraftPlus Configuration"
6305
  msgstr ""
6306
 
6307
+ #: src/admin.php:666, src/admin.php:2212, src/admin.php:2221,
6308
+ #: src/admin.php:2230, src/admin.php:2272, src/admin.php:2835,
6309
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6310
  msgid "Actions"
6311
  msgstr ""
6312
 
6313
+ #: src/admin.php:2131
6314
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6315
  msgstr ""
6316
 
6317
+ #: src/admin.php:2041
6318
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6319
  msgstr ""
6320
 
6321
+ #: src/admin.php:1922
6322
  msgid "No local copy present."
6323
  msgstr ""
6324
 
6325
+ #: src/admin.php:1919
6326
  msgid "Download in progress"
6327
  msgstr "ডাউনলোড হচ্ছে"
6328
 
6329
+ #: src/admin.php:665, src/admin.php:1908
6330
  msgid "File ready."
6331
  msgstr "ফাইল তৈরি।"
6332
 
6333
+ #: src/admin.php:1889
6334
  msgid "Download failed"
6335
  msgstr ""
6336
 
6337
+ #: src/admin.php:663, src/admin.php:1241, src/admin.php:1668,
6338
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6339
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6340
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6343
  msgid "Error"
6344
  msgstr ""
6345
 
6346
+ #: src/admin.php:1696
6347
  msgid "Could not find that job - perhaps it has already finished?"
6348
  msgstr ""
6349
 
6350
+ #: src/admin.php:1688
6351
  msgid "Job deleted"
6352
  msgstr ""
6353
 
6354
+ #: src/admin.php:1772
6355
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6356
  msgstr ""
6357
 
6376
  msgstr ""
6377
 
6378
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6379
+ #: src/admin.php:957, src/admin.php:966, src/admin.php:3228,
6380
+ #: src/admin.php:3235, src/admin.php:3237, src/methods/cloudfiles-new.php:107,
6381
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6382
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:827,
6383
+ #: src/methods/s3.php:831, src/methods/updraftvault.php:286,
6384
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6385
  #: src/udaddons/updraftplus-addons.php:242
6386
  msgid "Warning"
6387
  msgstr "সতর্কতা"
6411
  msgid "Like UpdraftPlus and can spare one minute?"
6412
  msgstr ""
6413
 
6414
+ #: src/addons/azure.php:217, src/class-updraftplus.php:4449,
6415
+ #: src/methods/googledrive.php:1006, src/methods/s3.php:321
6416
  msgid "File not found"
6417
  msgstr "ফাইলটি খুঁজে পাওয়া যায় নি"
6418
 
6419
+ #: src/class-updraftplus.php:4356
6420
  msgid "The decryption key used:"
6421
  msgstr ""
6422
 
6423
+ #: src/class-updraftplus.php:4356, src/class-updraftplus.php:4665,
6424
  #: src/restorer.php:389
6425
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6426
  msgstr ""
6427
 
6428
+ #: src/class-updraftplus.php:4337, src/class-updraftplus.php:4653,
6429
  #: src/restorer.php:376
6430
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6431
  msgstr ""
6434
  msgid "Could not open the backup file for writing"
6435
  msgstr ""
6436
 
6437
+ #: src/class-updraftplus.php:3731
6438
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6439
  msgstr ""
6440
 
6441
+ #: src/class-updraftplus.php:3691
6442
  msgid "Could not read the directory"
6443
  msgstr "ডিরেক্টরিটি পড়া যায়নি"
6444
 
6445
+ #: src/admin.php:1959, src/backup.php:1157
6446
  msgid "Backup directory (%s) is not writable, or does not exist."
6447
  msgstr ""
6448
 
6450
  msgid "WordPress backup is complete"
6451
  msgstr "ওয়ার্ডপ্রেস ব্যাক-আপ সমাপ্ত"
6452
 
6453
+ #: src/class-updraftplus.php:3203
6454
  msgid "The backup attempt has finished, apparently unsuccessfully"
6455
  msgstr ""
6456
 
6457
+ #: src/class-updraftplus.php:3188
6458
  msgid "The backup apparently succeeded and is now complete"
6459
  msgstr ""
6460
 
6486
  msgid "No log files were found."
6487
  msgstr "কোনও লগ ফাইল খুঁজে পাওয়া যায় নি।"
6488
 
6489
+ #: src/admin.php:1841, src/admin.php:1845, src/class-updraftplus.php:516
6490
  msgid "The log file could not be read."
6491
  msgstr "লগ ফাইলটি পড়া সম্ভব হয় নি।"
6492
 
languages/updraftplus-bs_BA.po CHANGED
@@ -11,20 +11,48 @@ msgstr ""
11
  "Language: bs_BA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/addons/sftp.php:346
15
- msgid "UpdraftPlus debug mode is on: detailed debugging data follows.n"
16
  msgstr ""
17
 
18
  #: src/admin.php:740
19
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
20
  msgstr ""
21
 
22
- #: src/admin.php:1234, src/admin.php:3881, src/class-updraftplus.php:2095,
23
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
24
  msgid "A PHP fatal error (%s) has occurred: %s"
25
  msgstr ""
26
 
27
- #: src/admin.php:1227, src/admin.php:3873, src/class-updraftplus.php:2088,
28
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
29
  msgid "A PHP exception (%s) has occurred: %s"
30
  msgstr ""
@@ -41,8 +69,8 @@ msgstr ""
41
  msgid "North-east Asia"
42
  msgstr ""
43
 
44
- #: src/udaddons/options.php:115
45
- msgid "Your web server's version of PHP is too old (.phpversion.) - 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"
46
  msgstr ""
47
 
48
  #: src/templates/wp-admin/settings/tab-status.php:80
@@ -69,18 +97,6 @@ msgstr ""
69
  msgid "Select Files"
70
  msgstr ""
71
 
72
- #: src/methods/updraftvault.php:346
73
- msgid "__Password"
74
- msgstr ""
75
-
76
- #: src/methods/updraftvault.php:345
77
- msgid "__E-mail"
78
- msgstr ""
79
-
80
- #: src/methods/openstack-base.php:420
81
- msgid "Error downloading remote file: Failed to download. (.$e->getMessage.)"
82
- msgstr ""
83
-
84
  #: src/methods/cloudfiles.php:497
85
  msgid "Rackspace Storage Region"
86
  msgstr ""
@@ -93,23 +109,15 @@ msgstr ""
93
  msgid "Instant and secure logon with a wave of your phone."
94
  msgstr ""
95
 
96
- #: src/class-updraftplus.php:946
97
- msgid "$pre_line"
98
- msgstr ""
99
-
100
  #: src/backup.php:1907
101
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
102
  msgstr ""
103
 
104
- #: src/admin.php:4362
105
  msgid "Value"
106
  msgstr ""
107
 
108
- #: src/admin.php:3543
109
- msgid "No backup log)"
110
- msgstr ""
111
-
112
- #: src/admin.php:1479
113
  msgid "Did not know how to delete from this cloud service."
114
  msgstr ""
115
 
@@ -125,7 +133,7 @@ msgstr ""
125
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
126
  msgstr ""
127
 
128
- #: src/templates/wp-admin/settings/existing-backups-table.php:69
129
  msgid "Stored at: %s"
130
  msgstr ""
131
 
@@ -133,11 +141,11 @@ msgstr ""
133
  msgid "Cloud Files"
134
  msgstr ""
135
 
136
- #: src/admin.php:4207
137
  msgid "Your settings failed to save. Please refresh the settings page and try again"
138
  msgstr ""
139
 
140
- #: src/admin.php:4166
141
  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."
142
  msgstr ""
143
 
@@ -154,7 +162,7 @@ msgstr ""
154
  msgid "Extra database"
155
  msgstr ""
156
 
157
- #: src/admin.php:3436
158
  msgid "Press here to download or browse"
159
  msgstr ""
160
 
@@ -198,15 +206,15 @@ msgstr ""
198
  msgid "Skipped tables:"
199
  msgstr ""
200
 
201
- #: src/class-updraftplus.php:4764
202
  msgid "This database backup has the following WordPress tables excluded: %s"
203
  msgstr ""
204
 
205
- #: src/admin.php:2422
206
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
207
  msgstr ""
208
 
209
- #: src/admin.php:2422
210
  msgid "All WordPress tables will be backed up."
211
  msgstr ""
212
 
@@ -706,7 +714,7 @@ msgstr ""
706
  msgid "Backup of: %s"
707
  msgstr ""
708
 
709
- #: src/methods/googledrive.php:243
710
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
711
  msgstr ""
712
 
@@ -734,11 +742,11 @@ msgstr ""
734
  msgid "You have selected a remote storage option which has an authorization step to complete:"
735
  msgstr ""
736
 
737
- #: src/admin.php:1531
738
  msgid "Remote files deleted:"
739
  msgstr ""
740
 
741
- #: src/admin.php:1530
742
  msgid "Local files deleted:"
743
  msgstr ""
744
 
@@ -807,7 +815,7 @@ msgstr ""
807
  msgid "An error response was received; HTTP code:"
808
  msgstr ""
809
 
810
- #: src/includes/class-commands.php:325
811
  msgid "%s add-on not found"
812
  msgstr ""
813
 
@@ -819,11 +827,11 @@ msgstr ""
819
  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"
820
  msgstr ""
821
 
822
- #: src/admin.php:2247
823
  msgid "To fix this problem go here."
824
  msgstr ""
825
 
826
- #: src/admin.php:2247
827
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
828
  msgstr ""
829
 
@@ -859,11 +867,11 @@ msgstr ""
859
  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."
860
  msgstr ""
861
 
862
- #: src/methods/s3.php:1052
863
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
864
  msgstr ""
865
 
866
- #: src/methods/s3.php:120
867
  msgid "No settings were found - please go to the Settings tab and check your settings"
868
  msgstr ""
869
 
@@ -911,49 +919,49 @@ msgstr ""
911
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
912
  msgstr ""
913
 
914
- #: src/addons/migrator.php:2210
915
  msgid "Create key"
916
  msgstr ""
917
 
918
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:513
919
  msgid "slower, strongest"
920
  msgstr ""
921
 
922
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
923
  msgid "recommended"
924
  msgstr ""
925
 
926
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
927
  msgid "%s bytes"
928
  msgstr ""
929
 
930
- #: src/addons/migrator.php:2205, src/central/bootstrap.php:511
931
  msgid "faster (possibility for slow PHP installs)"
932
  msgstr ""
933
 
934
- #: src/addons/migrator.php:2204, src/central/bootstrap.php:510
935
  msgid "easy to break, fastest"
936
  msgstr ""
937
 
938
- #: src/addons/migrator.php:2204, src/addons/migrator.php:2205,
939
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:510,
940
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
941
  msgid "%s bits"
942
  msgstr ""
943
 
944
- #: src/addons/migrator.php:2202, src/central/bootstrap.php:508
945
  msgid "Encryption key size:"
946
  msgstr ""
947
 
948
- #: src/addons/migrator.php:2200
949
  msgid "Enter your chosen name"
950
  msgstr ""
951
 
952
- #: src/addons/migrator.php:2199
953
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
954
  msgstr ""
955
 
956
- #: src/methods/googledrive.php:486
957
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
958
  msgstr ""
959
 
@@ -993,7 +1001,7 @@ msgstr ""
993
  msgid "Now"
994
  msgstr ""
995
 
996
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
997
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
998
  msgstr ""
999
 
@@ -1115,23 +1123,23 @@ msgstr ""
1115
  msgid "UpdraftCentral Connection"
1116
  msgstr ""
1117
 
1118
- #: src/backup.php:867, src/class-updraftplus.php:3094
1119
  msgid "The backup was aborted by the user"
1120
  msgstr ""
1121
 
1122
- #: src/admin.php:4202
1123
  msgid "Your settings have been saved."
1124
  msgstr ""
1125
 
1126
- #: src/admin.php:3330
1127
  msgid "Total backup size:"
1128
  msgstr ""
1129
 
1130
- #: src/admin.php:2744
1131
  msgid "stop"
1132
  msgstr ""
1133
 
1134
- #: src/admin.php:2582
1135
  msgid "The backup has finished running"
1136
  msgstr ""
1137
 
@@ -1153,7 +1161,7 @@ msgstr ""
1153
  msgid "this backup set"
1154
  msgstr ""
1155
 
1156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
1157
  msgid "calculate"
1158
  msgstr ""
1159
 
@@ -1197,19 +1205,19 @@ msgstr ""
1197
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1198
  msgstr ""
1199
 
1200
- #: src/class-updraftplus.php:4679, src/restorer.php:1700
1201
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1202
  msgstr ""
1203
 
1204
- #: src/class-updraftplus.php:4675
1205
  msgid "Please read this link for important information on this process."
1206
  msgstr ""
1207
 
1208
- #: src/class-updraftplus.php:4675
1209
  msgid "It will be imported as a new site."
1210
  msgstr ""
1211
 
1212
- #: src/admin.php:2395, src/templates/wp-admin/notices/horizontal-notice.php:16,
1213
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1214
  msgid "Dismiss"
1215
  msgstr ""
@@ -1234,40 +1242,40 @@ msgstr ""
1234
  msgid "Which site to restore"
1235
  msgstr ""
1236
 
1237
- #: src/addons/migrator.php:506, src/addons/migrator.php:507
1238
  msgid "Error when creating new site at your chosen address:"
1239
  msgstr ""
1240
 
1241
- #: src/addons/migrator.php:448
1242
  msgid "Required information for restoring this backup was not given (%s)"
1243
  msgstr ""
1244
 
1245
- #: src/addons/migrator.php:407
1246
  msgid "Attribute imported content to user"
1247
  msgstr ""
1248
 
1249
- #: src/addons/migrator.php:397, src/addons/migrator.php:399
1250
  msgid "You must use lower-case letters or numbers for the site path, only."
1251
  msgstr ""
1252
 
1253
- #: src/addons/migrator.php:385
1254
  msgid "This feature is not compatible with %s"
1255
  msgstr ""
1256
 
1257
- #: src/addons/migrator.php:383, src/addons/migrator.php:385
1258
  msgid "Importing a single site into a multisite install"
1259
  msgstr ""
1260
 
1261
- #: src/addons/migrator.php:374
1262
  msgid "other content from wp-content"
1263
  msgstr ""
1264
 
1265
- #: src/addons/migrator.php:371
1266
  msgid "WordPress core"
1267
  msgstr ""
1268
 
1269
- #: src/addons/migrator.php:371, src/addons/migrator.php:374,
1270
- #: src/addons/migrator.php:377
1271
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1272
  msgstr ""
1273
 
@@ -1275,11 +1283,11 @@ msgstr ""
1275
  msgid "Call WordPress action:"
1276
  msgstr ""
1277
 
1278
- #: src/admin.php:2430
1279
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1280
  msgstr ""
1281
 
1282
- #: src/admin.php:3748
1283
  msgid "Skipping: this archive was already restored."
1284
  msgstr ""
1285
 
@@ -1311,51 +1319,51 @@ msgstr ""
1311
  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)."
1312
  msgstr ""
1313
 
1314
- #: src/admin.php:4079
1315
  msgid "Send this backup to remote storage"
1316
  msgstr ""
1317
 
1318
- #: src/admin.php:4077
1319
  msgid "Check out UpdraftPlus Vault."
1320
  msgstr ""
1321
 
1322
- #: src/admin.php:4077
1323
  msgid "Not got any remote storage?"
1324
  msgstr ""
1325
 
1326
- #: src/admin.php:4077
1327
  msgid "settings"
1328
  msgstr ""
1329
 
1330
- #: src/admin.php:4077
1331
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1332
  msgstr ""
1333
 
1334
- #: src/admin.php:2428
1335
  msgid "Include any files in the backup"
1336
  msgstr ""
1337
 
1338
- #: src/admin.php:2414
1339
  msgid "Include the database in the backup"
1340
  msgstr ""
1341
 
1342
- #: src/admin.php:2394
1343
  msgid "Continue restoration"
1344
  msgstr ""
1345
 
1346
- #: src/admin.php:2389
1347
  msgid "You have an unfinished restoration operation, begun %s ago."
1348
  msgstr ""
1349
 
1350
- #: src/admin.php:2388
1351
  msgid "Unfinished restoration"
1352
  msgstr ""
1353
 
1354
- #: src/admin.php:2386
1355
  msgid "%s minutes, %s seconds"
1356
  msgstr ""
1357
 
1358
- #: src/admin.php:2333
1359
  msgid "Backup Contents And Schedule"
1360
  msgstr ""
1361
 
@@ -1363,7 +1371,7 @@ msgstr ""
1363
  msgid "Premium / Extensions"
1364
  msgstr ""
1365
 
1366
- #: src/admin.php:2113, src/admin.php:2122
1367
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1368
  msgstr ""
1369
 
@@ -1510,7 +1518,7 @@ msgstr ""
1510
  msgid "Could not access container"
1511
  msgstr ""
1512
 
1513
- #: src/class-updraftplus.php:3111
1514
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1515
  msgstr ""
1516
 
@@ -1635,11 +1643,11 @@ msgstr ""
1635
  msgid "Actions upon selected backups"
1636
  msgstr ""
1637
 
1638
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
1639
  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)."
1640
  msgstr ""
1641
 
1642
- #: src/admin.php:1529
1643
  msgid "Backup sets removed:"
1644
  msgstr ""
1645
 
@@ -1691,15 +1699,15 @@ msgstr ""
1691
  msgid "You do not currently have any UpdraftPlus Vault quota"
1692
  msgstr ""
1693
 
1694
- #: src/class-updraftplus.php:4714
1695
  msgid "You must upgrade MySQL to be able to use this database."
1696
  msgstr ""
1697
 
1698
- #: src/class-updraftplus.php:4714
1699
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1700
  msgstr ""
1701
 
1702
- #: src/admin.php:2232
1703
  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."
1704
  msgstr ""
1705
 
@@ -1868,7 +1876,7 @@ msgid "Updraft Vault"
1868
  msgstr ""
1869
 
1870
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1871
- #: src/methods/s3.php:1080
1872
  msgid "Delete failed:"
1873
  msgstr ""
1874
 
@@ -1892,71 +1900,71 @@ msgstr ""
1892
  msgid "Allow download"
1893
  msgstr ""
1894
 
1895
- #: src/addons/migrator.php:1754
1896
  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."
1897
  msgstr ""
1898
 
1899
- #: src/addons/migrator.php:1739, src/admin.php:709
1900
  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."
1901
  msgstr ""
1902
 
1903
- #: src/addons/migrator.php:2242
1904
  msgid "Existing keys"
1905
  msgstr ""
1906
 
1907
- #: src/addons/migrator.php:2233
1908
  msgid "No keys to allow remote sites to connect have yet been created."
1909
  msgstr ""
1910
 
1911
- #: src/addons/migrator.php:2215
1912
  msgid "Your new key:"
1913
  msgstr ""
1914
 
1915
- #: src/addons/migrator.php:2194
1916
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1917
  msgstr ""
1918
 
1919
- #: src/addons/migrator.php:2176
1920
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1921
  msgstr ""
1922
 
1923
- #: src/addons/migrator.php:2176
1924
  msgid "Keys for this site are created in the section below the one you just pressed in."
1925
  msgstr ""
1926
 
1927
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1928
  msgid "You must copy and paste this key now - it cannot be shown again."
1929
  msgstr ""
1930
 
1931
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1932
  msgid "Key created successfully."
1933
  msgstr ""
1934
 
1935
- #: src/addons/migrator.php:1841
1936
  msgid "A key with this name already exists; you must use a unique name."
1937
  msgstr ""
1938
 
1939
- #: src/addons/migrator.php:1785
1940
  msgid "Also send this backup to the active remote storage locations"
1941
  msgstr ""
1942
 
1943
- #: src/addons/migrator.php:1750
1944
  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."
1945
  msgstr ""
1946
 
1947
- #: src/addons/migrator.php:1706
1948
  msgid "site not found"
1949
  msgstr ""
1950
 
1951
- #: src/addons/migrator.php:1691
1952
  msgid "Backup data will be sent to:"
1953
  msgstr ""
1954
 
1955
- #: src/addons/migrator.php:195
1956
  msgid "Restore an existing backup set onto this site"
1957
  msgstr ""
1958
 
1959
- #: src/addons/migrator.php:188
1960
  msgid "This site has no backups to restore from yet."
1961
  msgstr ""
1962
 
@@ -1968,15 +1976,15 @@ msgstr ""
1968
  msgid "This storage method does not allow downloading"
1969
  msgstr ""
1970
 
1971
- #: src/admin.php:3501
1972
  msgid "(backup set imported from remote location)"
1973
  msgstr ""
1974
 
1975
- #: src/templates/wp-admin/settings/existing-backups-table.php:82
1976
  msgid "Site"
1977
  msgstr ""
1978
 
1979
- #: src/templates/wp-admin/settings/existing-backups-table.php:81
1980
  msgid "Backup sent to remote site - not available for download."
1981
  msgstr ""
1982
 
@@ -1988,7 +1996,7 @@ msgstr ""
1988
  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."
1989
  msgstr ""
1990
 
1991
- #: src/addons/migrator.php:1767, src/admin.php:716
1992
  msgid "Testing connection..."
1993
  msgstr ""
1994
 
@@ -2008,60 +2016,60 @@ msgstr ""
2008
  msgid "Creating..."
2009
  msgstr ""
2010
 
2011
- #: src/addons/migrator.php:2193
2012
  msgid "Or, receive a backup from a remote site"
2013
  msgstr ""
2014
 
2015
- #: src/addons/migrator.php:2182
2016
  msgid "Paste key here"
2017
  msgstr ""
2018
 
2019
- #: src/addons/migrator.php:2176
2020
  msgid "How do I get a site's key?"
2021
  msgstr ""
2022
 
2023
- #: src/addons/migrator.php:2176
2024
  msgid "To add a site as a destination for sending to, enter that site's key below."
2025
  msgstr ""
2026
 
2027
- #: src/addons/migrator.php:2173
2028
  msgid "Or, send a backup to another site"
2029
  msgstr ""
2030
 
2031
- #: src/addons/migrator.php:1938, src/admin.php:717
2032
  msgid "Send"
2033
  msgstr ""
2034
 
2035
- #: src/addons/migrator.php:1932, src/admin.php:708
2036
  msgid "Send to site:"
2037
  msgstr ""
2038
 
2039
- #: src/addons/migrator.php:1930
2040
  msgid "No receiving sites have yet been added."
2041
  msgstr ""
2042
 
2043
- #: src/addons/migrator.php:1911
2044
  msgid "It is for sending backups to the following site: "
2045
  msgstr ""
2046
 
2047
- #: src/addons/migrator.php:1911
2048
  msgid "The key was successfully added."
2049
  msgstr ""
2050
 
2051
- #: src/addons/migrator.php:1895
2052
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2053
  msgstr ""
2054
 
2055
- #: src/addons/migrator.php:1884, src/addons/migrator.php:1886,
2056
- #: src/addons/migrator.php:1890
2057
  msgid "The entered key was corrupt - please try again."
2058
  msgstr ""
2059
 
2060
- #: src/addons/migrator.php:1882
2061
  msgid "The entered key was the wrong length - please try again."
2062
  msgstr ""
2063
 
2064
- #: src/addons/migrator.php:1872
2065
  msgid "key"
2066
  msgstr ""
2067
 
@@ -2101,7 +2109,7 @@ msgstr ""
2101
  msgid "Resetting..."
2102
  msgstr ""
2103
 
2104
- #: src/addons/migrator.php:2182, src/admin.php:705
2105
  msgid "Add site"
2106
  msgstr ""
2107
 
@@ -2109,7 +2117,7 @@ msgstr ""
2109
  msgid "Adding..."
2110
  msgstr ""
2111
 
2112
- #: src/udaddons/options.php:333
2113
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2114
  msgstr ""
2115
 
@@ -2129,11 +2137,11 @@ msgstr ""
2129
  msgid "Go here to re-enter your password."
2130
  msgstr ""
2131
 
2132
- #: src/addons/migrator.php:224
2133
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2134
  msgstr ""
2135
 
2136
- #: src/addons/migrator.php:195
2137
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2138
  msgstr ""
2139
 
@@ -2153,7 +2161,7 @@ msgstr ""
2153
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2154
  msgstr ""
2155
 
2156
- #: src/addons/azure.php:541, src/addons/migrator.php:1754,
2157
  #: src/addons/onedrive.php:955
2158
  msgid "For longer help, including screenshots, follow this link."
2159
  msgstr ""
@@ -2332,7 +2340,7 @@ msgstr ""
2332
  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)"
2333
  msgstr ""
2334
 
2335
- #: src/methods/s3.php:868
2336
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2337
  msgstr ""
2338
 
@@ -2407,7 +2415,7 @@ msgstr ""
2407
  msgid "(at same time as files backup)"
2408
  msgstr ""
2409
 
2410
- #: src/admin.php:3012
2411
  msgid "No backup has been completed"
2412
  msgstr ""
2413
 
@@ -2456,8 +2464,8 @@ msgstr ""
2456
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2457
  msgstr ""
2458
 
2459
- #: src/methods/s3.php:166, src/methods/s3.php:167, src/methods/s3.php:168,
2460
- #: src/methods/s3.php:176, src/methods/s3.php:177, src/methods/s3.php:178
2461
  msgid "%s Error: Failed to initialise"
2462
  msgstr ""
2463
 
@@ -2497,7 +2505,7 @@ msgstr ""
2497
  msgid "Check this box to have a basic report sent to"
2498
  msgstr ""
2499
 
2500
- #: src/admin.php:3021
2501
  msgctxt "i.e. Non-automatic"
2502
  msgid "Manual"
2503
  msgstr ""
@@ -2515,7 +2523,7 @@ msgstr ""
2515
  msgid "Any other file/directory on your server that you wish to back up"
2516
  msgstr ""
2517
 
2518
- #: src/admin.php:2249
2519
  msgid "For even more features and personal support, check out "
2520
  msgstr ""
2521
 
@@ -2605,11 +2613,11 @@ msgstr ""
2605
  msgid "(learn more about this significant option)"
2606
  msgstr ""
2607
 
2608
- #: src/udaddons/options.php:275
2609
  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."
2610
  msgstr ""
2611
 
2612
- #: src/admin.php:2582, src/admin.php:3523, src/admin.php:3524
2613
  msgid "View Log"
2614
  msgstr ""
2615
 
@@ -2626,7 +2634,7 @@ msgstr ""
2626
  msgid "and retain this many scheduled backups"
2627
  msgstr ""
2628
 
2629
- #: src/admin.php:2982
2630
  msgid "incremental backup; base backup: %s"
2631
  msgstr ""
2632
 
@@ -2634,20 +2642,20 @@ msgstr ""
2634
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2635
  msgstr ""
2636
 
2637
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
2638
  msgid "Upload files into UpdraftPlus."
2639
  msgstr ""
2640
 
2641
- #: src/admin.php:932, src/includes/class-commands.php:379,
2642
  #: src/templates/wp-admin/settings/tab-status.php:22
2643
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2644
  msgstr ""
2645
 
2646
- #: src/class-updraftplus.php:4664
2647
  msgid "Backup label:"
2648
  msgstr ""
2649
 
2650
- #: src/admin.php:1774
2651
  msgid "Error: unexpected file read fail"
2652
  msgstr ""
2653
 
@@ -2667,7 +2675,7 @@ msgstr ""
2667
  msgid "Your label for this backup (optional)"
2668
  msgstr ""
2669
 
2670
- #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1082
2671
  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."
2672
  msgstr ""
2673
 
@@ -2687,36 +2695,36 @@ msgstr ""
2687
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2688
  msgstr ""
2689
 
2690
- #: src/class-updraftplus.php:4683
2691
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2692
  msgstr ""
2693
 
2694
- #: src/class-updraftplus.php:4683
2695
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2696
  msgstr ""
2697
 
2698
- #: src/addons/migrator.php:1083
2699
  msgid "already done"
2700
  msgstr ""
2701
 
2702
- #: src/addons/migrator.php:1040
2703
  msgid "skipped (not in list)"
2704
  msgstr ""
2705
 
2706
- #: src/addons/migrator.php:1040, src/addons/migrator.php:1083,
2707
- #: src/addons/migrator.php:1215
2708
  msgid "Search and replacing table:"
2709
  msgstr ""
2710
 
2711
- #: src/addons/migrator.php:322
2712
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2713
  msgstr ""
2714
 
2715
- #: src/addons/migrator.php:322
2716
  msgid "These tables only"
2717
  msgstr ""
2718
 
2719
- #: src/addons/migrator.php:321
2720
  msgid "Rows per batch"
2721
  msgstr ""
2722
 
@@ -2728,19 +2736,19 @@ msgstr ""
2728
  msgid "You need to connect to receive future updates to UpdraftPlus."
2729
  msgstr ""
2730
 
2731
- #: src/class-updraftplus.php:4656
2732
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2733
  msgstr ""
2734
 
2735
- #: src/class-updraftplus.php:4656
2736
  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."
2737
  msgstr ""
2738
 
2739
- #: src/class-updraftplus.php:4656
2740
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2741
  msgstr ""
2742
 
2743
- #: src/class-updraftplus.php:4656
2744
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2745
  msgstr ""
2746
 
@@ -2769,27 +2777,27 @@ msgstr ""
2769
  msgid "UpdraftPlus is on social media - check us out!"
2770
  msgstr ""
2771
 
2772
- #: src/admin.php:3592
2773
  msgid "Why am I seeing this?"
2774
  msgstr ""
2775
 
2776
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2777
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2778
  msgstr ""
2779
 
2780
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2781
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2782
  msgstr ""
2783
 
2784
- #: src/admin.php:1713, src/admin.php:1725
2785
  msgid "Start backup"
2786
  msgstr ""
2787
 
2788
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
2789
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2790
  msgstr ""
2791
 
2792
- #: src/admin.php:2905
2793
  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."
2794
  msgstr ""
2795
 
@@ -2797,11 +2805,11 @@ msgstr ""
2797
  msgid "Unless you have a problem, you can completely ignore everything here."
2798
  msgstr ""
2799
 
2800
- #: src/admin.php:1935
2801
  msgid "This file could not be uploaded"
2802
  msgstr ""
2803
 
2804
- #: src/admin.php:1900
2805
  msgid "You will find more information about this in the Settings section."
2806
  msgstr ""
2807
 
@@ -2821,7 +2829,7 @@ msgstr ""
2821
  msgid "Memory limit"
2822
  msgstr ""
2823
 
2824
- #: src/class-updraftplus.php:4786, src/restorer.php:1493
2825
  msgid "restoration"
2826
  msgstr ""
2827
 
@@ -2845,42 +2853,42 @@ msgstr ""
2845
  msgid "Backup succeeded"
2846
  msgstr ""
2847
 
2848
- #: src/admin.php:3022, src/admin.php:3023, src/admin.php:3024,
2849
  #: src/updraftplus.php:99, src/updraftplus.php:100
2850
  msgid "Every %s hours"
2851
  msgstr ""
2852
 
2853
- #: src/addons/migrator.php:785, src/addons/migrator.php:787
2854
  msgid "search and replace"
2855
  msgstr ""
2856
 
2857
- #: src/addons/migrator.php:324
2858
  msgid "Go"
2859
  msgstr ""
2860
 
2861
- #: src/addons/migrator.php:313
2862
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2863
  msgstr ""
2864
 
2865
- #: src/addons/migrator.php:312
2866
  msgid "This can easily destroy your site; so, use it with care!"
2867
  msgstr ""
2868
 
2869
- #: src/addons/migrator.php:282, src/addons/migrator.php:320
2870
  msgid "Replace with"
2871
  msgstr ""
2872
 
2873
- #: src/addons/migrator.php:281, src/addons/migrator.php:319
2874
  msgid "Search for"
2875
  msgstr ""
2876
 
2877
- #: src/addons/migrator.php:280, src/addons/migrator.php:311,
2878
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2879
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2880
  msgid "Search / replace database"
2881
  msgstr ""
2882
 
2883
- #: src/addons/migrator.php:286
2884
  msgid "search term"
2885
  msgstr ""
2886
 
@@ -2896,11 +2904,11 @@ msgstr ""
2896
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2897
  msgstr ""
2898
 
2899
- #: src/methods/googledrive.php:1090
2900
  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."
2901
  msgstr ""
2902
 
2903
- #: src/admin.php:3350
2904
  msgid "You have not yet made any backups."
2905
  msgstr ""
2906
 
@@ -2920,13 +2928,13 @@ msgstr ""
2920
  msgid "Free disk space in account:"
2921
  msgstr ""
2922
 
2923
- #: src/admin.php:4173, src/templates/wp-admin/settings/tab-status.php:27
2924
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2925
  msgstr ""
2926
 
2927
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1578,
2928
- #: src/includes/deprecated-actions.php:30,
2929
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:22,
2930
  #: src/templates/wp-admin/settings/tab-bar.php:6
2931
  msgid "Existing Backups"
2932
  msgstr ""
@@ -3019,20 +3027,20 @@ msgstr ""
3019
  msgid "External database (%s)"
3020
  msgstr ""
3021
 
3022
- #: src/methods/googledrive.php:1090
3023
  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."
3024
  msgstr ""
3025
 
3026
- #: src/methods/googledrive.php:450
3027
  msgid "failed to access parent folder"
3028
  msgstr ""
3029
 
3030
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3031
- #: src/addons/onedrive.php:773, src/methods/googledrive.php:403
3032
  msgid "However, subsequent access attempts failed:"
3033
  msgstr ""
3034
 
3035
- #: src/admin.php:3375
3036
  msgid "External database"
3037
  msgstr ""
3038
 
@@ -3064,7 +3072,7 @@ msgstr ""
3064
  msgid "use UpdraftPlus Premium"
3065
  msgstr ""
3066
 
3067
- #: src/class-updraftplus.php:4546
3068
  msgid "Decryption failed. The database file is encrypted."
3069
  msgstr ""
3070
 
@@ -3085,7 +3093,7 @@ msgstr ""
3085
  msgid "database connection attempt failed."
3086
  msgstr ""
3087
 
3088
- #: src/addons/migrator.php:971
3089
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3090
  msgstr ""
3091
 
@@ -3168,7 +3176,7 @@ msgstr ""
3168
  msgid "Authenticate with %s"
3169
  msgstr ""
3170
 
3171
- #: src/methods/cloudfiles.php:422
3172
  msgid "Error downloading remote file: Failed to download"
3173
  msgstr ""
3174
 
@@ -3196,37 +3204,37 @@ msgid "%s error - failed to access the container"
3196
  msgstr ""
3197
 
3198
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3199
- #: src/methods/dropbox.php:546, src/methods/googledrive.php:1146
3200
  msgid "Account holder's name: %s."
3201
  msgstr ""
3202
 
3203
- #: src/methods/googledrive.php:1135
3204
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3205
  msgstr ""
3206
 
3207
- #: src/methods/googledrive.php:1126
3208
  msgid "It is an ID number internal to Google Drive"
3209
  msgstr ""
3210
 
3211
- #: src/methods/googledrive.php:1126
3212
  msgid "<strong>This is NOT a folder name</strong>."
3213
  msgstr ""
3214
 
3215
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3216
- #: src/methods/googledrive.php:1122, src/methods/googledrive.php:1132
3217
  msgid "Folder"
3218
  msgstr ""
3219
 
3220
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3221
- #: src/methods/googledrive.php:1041
3222
  msgid "%s download: failed: file not found"
3223
  msgstr ""
3224
 
3225
- #: src/addons/googlecloud.php:635, src/methods/googledrive.php:423
3226
  msgid "Name: %s."
3227
  msgstr ""
3228
 
3229
- #: src/methods/googledrive.php:181
3230
  msgid "Google Drive list files: failed to access parent folder"
3231
  msgstr ""
3232
 
@@ -3251,8 +3259,8 @@ msgstr ""
3251
  msgid "Fetch"
3252
  msgstr ""
3253
 
3254
- #: src/addons/migrator.php:383,
3255
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:62,
3256
  #: src/templates/wp-admin/settings/form-contents.php:212
3257
  msgid "This feature requires %s version %s or later"
3258
  msgstr ""
@@ -3265,7 +3273,7 @@ msgstr ""
3265
  msgid "Error - failed to download the file"
3266
  msgstr ""
3267
 
3268
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3269
  msgid "Rescan local folder for new backup sets"
3270
  msgstr ""
3271
 
@@ -3285,8 +3293,8 @@ msgstr ""
3285
  msgid "password/key"
3286
  msgstr ""
3287
 
3288
- #: src/addons/azure.php:549, src/addons/migrator.php:2200,
3289
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4362
3290
  msgid "Key"
3291
  msgstr ""
3292
 
@@ -3302,36 +3310,36 @@ msgstr ""
3302
  msgid "SCP/SFTP password/key"
3303
  msgstr ""
3304
 
3305
- #: src/admin.php:3410
3306
  msgid "Files backup (created by %s)"
3307
  msgstr ""
3308
 
3309
- #: src/admin.php:3410
3310
  msgid "Files and database WordPress backup (created by %s)"
3311
  msgstr ""
3312
 
3313
- #: src/addons/importer.php:276, src/admin.php:3404,
3314
- #: src/class-updraftplus.php:2893
3315
  msgid "Backup created by: %s."
3316
  msgstr ""
3317
 
3318
- #: src/admin.php:3373
3319
  msgid "Database (created by %s)"
3320
  msgstr ""
3321
 
3322
- #: src/admin.php:3367, src/admin.php:3406
3323
  msgid "unknown source"
3324
  msgstr ""
3325
 
3326
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
3327
  msgid "Rescan remote storage"
3328
  msgstr ""
3329
 
3330
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:40
3331
  msgid "Upload backup files"
3332
  msgstr ""
3333
 
3334
- #: src/admin.php:1979
3335
  msgid "This backup was created by %s, and can be imported."
3336
  msgstr ""
3337
 
@@ -3343,7 +3351,7 @@ msgstr ""
3343
  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."
3344
  msgstr ""
3345
 
3346
- #: src/admin.php:676, src/class-updraftplus.php:2900
3347
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3348
  msgstr ""
3349
 
@@ -3351,11 +3359,11 @@ msgstr ""
3351
  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."
3352
  msgstr ""
3353
 
3354
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2900
3355
  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))."
3356
  msgstr ""
3357
 
3358
- #: src/admin.php:3407, src/includes/class-wpadmin-commands.php:152,
3359
  #: src/restorer.php:1462
3360
  msgid "Backup created by unknown source (%s) - cannot be restored."
3361
  msgstr ""
@@ -3381,7 +3389,7 @@ msgstr ""
3381
  msgid "No settings were found"
3382
  msgstr ""
3383
 
3384
- #: src/class-updraftplus.php:3021
3385
  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."
3386
  msgstr ""
3387
 
@@ -3407,7 +3415,7 @@ msgstr ""
3407
  msgid "Remove"
3408
  msgstr ""
3409
 
3410
- #: src/methods/s3.php:840
3411
  msgid "Other %s FAQs."
3412
  msgstr ""
3413
 
@@ -3415,16 +3423,16 @@ msgstr ""
3415
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3416
  msgstr ""
3417
 
3418
- #: src/addons/morefiles.php:445, src/admin.php:3114
3419
  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."
3420
  msgstr ""
3421
 
3422
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309,
3423
  #: src/restorer.php:1493
3424
  msgid "Your hosting company must enable these functions before %s can work."
3425
  msgstr ""
3426
 
3427
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309
3428
  msgid "Your web server's PHP installation has these functions disabled: %s."
3429
  msgstr ""
3430
 
@@ -3444,7 +3452,7 @@ msgstr ""
3444
  msgid "Backup created by:"
3445
  msgstr ""
3446
 
3447
- #: src/udaddons/options.php:482
3448
  msgid "Available to claim on this site"
3449
  msgstr ""
3450
 
@@ -3494,15 +3502,15 @@ msgstr ""
3494
  msgid "Dismiss from main dashboard (for %s weeks)"
3495
  msgstr ""
3496
 
3497
- #: src/class-updraftplus.php:4836
3498
  msgid "The attempt to undo the double-compression succeeded."
3499
  msgstr ""
3500
 
3501
- #: src/class-updraftplus.php:4813, src/class-updraftplus.php:4834
3502
  msgid "The attempt to undo the double-compression failed."
3503
  msgstr ""
3504
 
3505
- #: src/class-updraftplus.php:4806
3506
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3507
  msgstr ""
3508
 
@@ -3535,7 +3543,7 @@ msgstr ""
3535
  msgid "Errors occurred:"
3536
  msgstr ""
3537
 
3538
- #: src/admin.php:3612
3539
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3540
  msgstr ""
3541
 
@@ -3563,7 +3571,7 @@ msgstr ""
3563
  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)"
3564
  msgstr ""
3565
 
3566
- #: src/addons/migrator.php:253
3567
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3568
  msgstr ""
3569
 
@@ -3572,7 +3580,7 @@ msgstr ""
3572
  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."
3573
  msgstr ""
3574
 
3575
- #: src/addons/moredatabase.php:137, src/admin.php:1363
3576
  msgid "Messages:"
3577
  msgstr ""
3578
 
@@ -3732,7 +3740,7 @@ msgstr ""
3732
  msgid "Authorisation failed (check your credentials)"
3733
  msgstr ""
3734
 
3735
- #: src/methods/updraftvault.php:568, src/udaddons/options.php:267
3736
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3737
  msgstr ""
3738
 
@@ -3748,15 +3756,15 @@ msgstr ""
3748
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3749
  msgstr ""
3750
 
3751
- #: src/admin.php:661, src/admin.php:3902
3752
  msgid "Error data:"
3753
  msgstr ""
3754
 
3755
- #: src/admin.php:3563
3756
  msgid "Backup does not exist in the backup history"
3757
  msgstr ""
3758
 
3759
- #: src/admin.php:2526
3760
  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."
3761
  msgstr ""
3762
 
@@ -3812,7 +3820,7 @@ msgstr ""
3812
  msgid "Debugging information"
3813
  msgstr ""
3814
 
3815
- #: src/addons/reporting.php:211, src/admin.php:3313
3816
  msgid "Uploaded to:"
3817
  msgstr ""
3818
 
@@ -3872,7 +3880,7 @@ msgstr ""
3872
  msgid "%s did not return the expected response - check your log file for more details"
3873
  msgstr ""
3874
 
3875
- #: src/methods/s3.php:287
3876
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3877
  msgstr ""
3878
 
@@ -3885,7 +3893,7 @@ msgid "Your site's admin email address (%s) will be used."
3885
  msgstr ""
3886
 
3887
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3888
- #: src/methods/updraftvault.php:347, src/udaddons/options.php:246
3889
  msgid "Connect"
3890
  msgstr ""
3891
 
@@ -3893,7 +3901,7 @@ msgstr ""
3893
  msgid "For more reporting features, use the Reporting add-on."
3894
  msgstr ""
3895
 
3896
- #: src/class-updraftplus.php:4616
3897
  msgid "(version: %s)"
3898
  msgstr ""
3899
 
@@ -3966,39 +3974,39 @@ msgstr ""
3966
  msgid "UpdraftPlus warning:"
3967
  msgstr ""
3968
 
3969
- #: src/udaddons/options.php:488
3970
  msgid "(or connect using the form on this page if you have already purchased it)"
3971
  msgstr ""
3972
 
3973
- #: src/udaddons/options.php:474
3974
  msgid "please follow this link to update the plugin in order to activate it"
3975
  msgstr ""
3976
 
3977
- #: src/udaddons/options.php:471
3978
  msgid "please follow this link to update the plugin in order to get it"
3979
  msgstr ""
3980
 
3981
- #: src/udaddons/options.php:461, src/udaddons/options.php:463
3982
  msgid "latest"
3983
  msgstr ""
3984
 
3985
- #: src/udaddons/options.php:459
3986
  msgid "Your version: %s"
3987
  msgstr ""
3988
 
3989
- #: src/udaddons/options.php:457, src/udaddons/options.php:457
3990
  msgid "You've got it"
3991
  msgstr ""
3992
 
3993
- #: src/udaddons/options.php:418
3994
  msgid "UpdraftPlus Support"
3995
  msgstr ""
3996
 
3997
- #: src/udaddons/options.php:376
3998
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3999
  msgstr ""
4000
 
4001
- #: src/udaddons/options.php:365, src/udaddons/updraftplus-addons.php:290
4002
  msgid "UpdraftPlus Addons"
4003
  msgstr ""
4004
 
@@ -4034,7 +4042,7 @@ msgstr ""
4034
  msgid "Reporting"
4035
  msgstr ""
4036
 
4037
- #: src/admin.php:4359
4038
  msgid "Options (raw)"
4039
  msgstr ""
4040
 
@@ -4062,91 +4070,91 @@ msgstr ""
4062
  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)"
4063
  msgstr ""
4064
 
4065
- #: src/udaddons/options.php:553
4066
  msgid "Manage Addons"
4067
  msgstr ""
4068
 
4069
- #: src/udaddons/options.php:489, src/udaddons/options.php:489
4070
  msgid "Buy It"
4071
  msgstr ""
4072
 
4073
- #: src/udaddons/options.php:488
4074
  msgid "Get it from the UpdraftPlus.Com Store"
4075
  msgstr ""
4076
 
4077
- #: src/udaddons/options.php:482, src/udaddons/options.php:484
4078
  msgid "activate it on this site"
4079
  msgstr ""
4080
 
4081
- #: src/udaddons/options.php:484
4082
  msgid "You have an inactive purchase"
4083
  msgstr ""
4084
 
4085
- #: src/udaddons/options.php:474
4086
  msgid "Assigned to this site"
4087
  msgstr ""
4088
 
4089
- #: src/udaddons/options.php:471
4090
  msgid "Available for this site (via your all-addons purchase)"
4091
  msgstr ""
4092
 
4093
- #: src/udaddons/options.php:465
4094
  msgid "(apparently a pre-release or withdrawn release)"
4095
  msgstr ""
4096
 
4097
- #: src/udaddons/options.php:420
4098
  msgid "Go here"
4099
  msgstr ""
4100
 
4101
- #: src/udaddons/options.php:420
4102
  msgid "Need to get support?"
4103
  msgstr ""
4104
 
4105
- #: src/udaddons/options.php:402
4106
  msgid "An error occurred when trying to retrieve your add-ons."
4107
  msgstr ""
4108
 
4109
- #: src/udaddons/options.php:335
4110
  msgid "An unknown response was received. Response was:"
4111
  msgstr ""
4112
 
4113
- #: src/udaddons/options.php:334
4114
  msgid "Claim not granted - your account login details were wrong"
4115
  msgstr ""
4116
 
4117
- #: src/udaddons/options.php:332
4118
  msgid "Please wait whilst we make the claim..."
4119
  msgstr ""
4120
 
4121
- #: src/udaddons/options.php:285
4122
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4123
  msgstr ""
4124
 
4125
- #: src/udaddons/options.php:278
4126
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4127
  msgstr ""
4128
 
4129
- #: src/udaddons/options.php:274
4130
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4131
  msgstr ""
4132
 
4133
- #: src/udaddons/options.php:273
4134
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr ""
4136
 
4137
- #: src/udaddons/options.php:244
4138
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4139
  msgstr ""
4140
 
4141
- #: src/udaddons/options.php:172
4142
  msgid "Forgotten your details?"
4143
  msgstr ""
4144
 
4145
- #: src/udaddons/options.php:161
4146
  msgid "Not yet got an account (it's free)? Go get one!"
4147
  msgstr ""
4148
 
4149
- #: src/udaddons/options.php:128
4150
  msgid "Connect with your UpdraftPlus.Com account"
4151
  msgstr ""
4152
 
@@ -4186,15 +4194,15 @@ msgstr ""
4186
  msgid "Your web-server does not have the %s module installed."
4187
  msgstr ""
4188
 
4189
- #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1142
4190
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4191
  msgstr ""
4192
 
4193
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:68
4194
  msgid "Drop backup files here"
4195
  msgstr ""
4196
 
4197
- #: src/admin.php:2405
4198
  msgid "Does nothing happen when you attempt backups?"
4199
  msgstr ""
4200
 
@@ -4235,11 +4243,11 @@ msgstr ""
4235
  msgid "You can send a backup to more than one destination with an add-on."
4236
  msgstr ""
4237
 
4238
- #: src/admin.php:2744
4239
  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."
4240
  msgstr ""
4241
 
4242
- #: src/admin.php:2642
4243
  msgid "(%s%%, file %s of %s)"
4244
  msgstr ""
4245
 
@@ -4280,11 +4288,11 @@ msgstr ""
4280
  msgid "%s settings test result:"
4281
  msgstr ""
4282
 
4283
- #: src/admin.php:3474, src/admin.php:3476
4284
  msgid "(Not finished)"
4285
  msgstr ""
4286
 
4287
- #: src/admin.php:3476
4288
  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."
4289
  msgstr ""
4290
 
@@ -4296,73 +4304,73 @@ msgstr ""
4296
  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)."
4297
  msgstr ""
4298
 
4299
- #: src/admin.php:2739
4300
  msgid "Job ID: %s"
4301
  msgstr ""
4302
 
4303
- #: src/admin.php:2724
4304
  msgid "last activity: %ss ago"
4305
  msgstr ""
4306
 
4307
- #: src/admin.php:2723
4308
  msgid "next resumption: %d (after %ss)"
4309
  msgstr ""
4310
 
4311
- #: src/admin.php:2706, src/central/bootstrap.php:411,
4312
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4313
  #: src/methods/updraftvault.php:467
4314
  msgid "Unknown"
4315
  msgstr ""
4316
 
4317
- #: src/admin.php:2656
4318
  msgid "Backup finished"
4319
  msgstr ""
4320
 
4321
- #: src/admin.php:2651
4322
  msgid "Waiting until scheduled time to retry because of errors"
4323
  msgstr ""
4324
 
4325
- #: src/admin.php:2647
4326
  msgid "Pruning old backup sets"
4327
  msgstr ""
4328
 
4329
- #: src/admin.php:2635
4330
  msgid "Uploading files to remote storage"
4331
  msgstr ""
4332
 
4333
- #: src/admin.php:2704
4334
  msgid "Encrypted database"
4335
  msgstr ""
4336
 
4337
- #: src/admin.php:2696
4338
  msgid "Encrypting database"
4339
  msgstr ""
4340
 
4341
- #: src/admin.php:2670
4342
  msgid "Created database backup"
4343
  msgstr ""
4344
 
4345
- #: src/admin.php:2683
4346
  msgid "table: %s"
4347
  msgstr ""
4348
 
4349
- #: src/admin.php:2681
4350
  msgid "Creating database backup"
4351
  msgstr ""
4352
 
4353
- #: src/admin.php:2629
4354
  msgid "Created file backup zips"
4355
  msgstr ""
4356
 
4357
- #: src/admin.php:2616
4358
  msgid "Creating file backup zips"
4359
  msgstr ""
4360
 
4361
- #: src/admin.php:2611
4362
  msgid "Backup begun"
4363
  msgstr ""
4364
 
4365
- #: src/admin.php:2454
4366
  msgid "Backups in progress:"
4367
  msgstr ""
4368
 
@@ -4382,7 +4390,7 @@ msgstr ""
4382
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4383
  msgstr ""
4384
 
4385
- #: src/class-updraftplus.php:3118
4386
  msgid "The backup has not finished; a resumption is scheduled"
4387
  msgstr ""
4388
 
@@ -4396,7 +4404,7 @@ msgstr ""
4396
  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)."
4397
  msgstr ""
4398
 
4399
- #: src/admin.php:2277
4400
  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)."
4401
  msgstr ""
4402
 
@@ -4475,23 +4483,23 @@ msgstr ""
4475
  msgid "Support"
4476
  msgstr ""
4477
 
4478
- #: src/class-updraftplus.php:4769
4479
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4480
  msgstr ""
4481
 
4482
- #: src/class-updraftplus.php:4761
4483
  msgid "This database backup is missing core WordPress tables: %s"
4484
  msgstr ""
4485
 
4486
- #: src/class-updraftplus.php:4649
4487
  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."
4488
  msgstr ""
4489
 
4490
- #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4655
4491
  msgid "%s version: %s"
4492
  msgstr ""
4493
 
4494
- #: src/class-updraftplus.php:4565
4495
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4496
  msgstr ""
4497
 
@@ -4500,7 +4508,7 @@ msgstr ""
4500
  msgid "Be safe with an automatic backup"
4501
  msgstr ""
4502
 
4503
- #: src/admin.php:2229
4504
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4505
  msgstr ""
4506
 
@@ -4548,11 +4556,11 @@ msgstr ""
4548
  msgid "Delete from your web server"
4549
  msgstr ""
4550
 
4551
- #: src/admin.php:3444
4552
  msgid "You appear to be missing one or more archives from this multi-archive set."
4553
  msgstr ""
4554
 
4555
- #: src/admin.php:3441
4556
  msgid "(%d archive(s) in set)."
4557
  msgstr ""
4558
 
@@ -4572,7 +4580,7 @@ msgstr ""
4572
  msgid "Error: the server sent an empty response."
4573
  msgstr ""
4574
 
4575
- #: src/admin.php:1990
4576
  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?"
4577
  msgstr ""
4578
 
@@ -4608,7 +4616,7 @@ msgstr ""
4608
  msgid "No such backup set exists"
4609
  msgstr ""
4610
 
4611
- #: src/admin.php:1239
4612
  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"
4613
  msgstr ""
4614
 
@@ -4624,27 +4632,27 @@ msgstr ""
4624
  msgid "WordPress root directory server path: %s"
4625
  msgstr ""
4626
 
4627
- #: src/methods/s3.php:845
4628
  msgid "%s end-point"
4629
  msgstr ""
4630
 
4631
- #: src/methods/s3.php:807
4632
  msgid "... and many more!"
4633
  msgstr ""
4634
 
4635
- #: src/methods/s3generic.php:52, src/methods/s3generic.php:60
4636
  msgid "S3 (Compatible)"
4637
  msgstr ""
4638
 
4639
- #: src/admin.php:3758
4640
  msgid "File is not locally present - needs retrieving from remote storage"
4641
  msgstr ""
4642
 
4643
- #: src/admin.php:3745
4644
  msgid "Looking for %s archive: file name: %s"
4645
  msgstr ""
4646
 
4647
- #: src/admin.php:3706
4648
  msgid "Final checks"
4649
  msgstr ""
4650
 
@@ -4656,7 +4664,7 @@ msgstr ""
4656
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4657
  msgstr ""
4658
 
4659
- #: src/admin.php:3103
4660
  msgid "Your wp-content directory server path: %s"
4661
  msgstr ""
4662
 
@@ -4672,20 +4680,20 @@ msgstr ""
4672
  msgid "Processing files - please wait..."
4673
  msgstr ""
4674
 
4675
- #: src/admin.php:3904,
4676
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4677
  msgid "Please consult this FAQ for help on what to do about it."
4678
  msgstr ""
4679
 
4680
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4681
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4682
  msgstr ""
4683
 
4684
- #: src/class-updraftplus.php:4573
4685
  msgid "Failed to open database file."
4686
  msgstr ""
4687
 
4688
- #: src/admin.php:4329
4689
  msgid "Known backups (raw)"
4690
  msgstr ""
4691
 
@@ -4697,17 +4705,17 @@ msgstr ""
4697
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4698
  msgstr ""
4699
 
4700
- #: src/addons/migrator.php:333
4701
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4702
  msgstr ""
4703
 
4704
- #: src/admin.php:3778
4705
  msgid "file is size:"
4706
  msgstr ""
4707
 
4708
- #: src/addons/googlecloud.php:941, src/addons/migrator.php:371,
4709
- #: src/addons/migrator.php:374, src/addons/migrator.php:377, src/admin.php:945,
4710
- #: src/admin.php:2234, src/backup.php:3043, src/updraftplus.php:156
4711
  msgid "Go here for more information."
4712
  msgstr ""
4713
 
@@ -4715,7 +4723,7 @@ msgstr ""
4715
  msgid "Some files are still downloading or being processed - please wait."
4716
  msgstr ""
4717
 
4718
- #: src/class-updraftplus.php:4621, src/class-updraftplus.php:4639
4719
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4720
  msgstr ""
4721
 
@@ -4761,7 +4769,7 @@ msgstr ""
4761
 
4762
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4763
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4764
- #: src/methods/googledrive.php:1001, src/methods/openstack-base.php:420,
4765
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4766
  #: src/methods/stream-base.php:285
4767
  msgid "%s Error"
@@ -4785,25 +4793,25 @@ msgstr ""
4785
  msgid "%s authentication failed"
4786
  msgstr ""
4787
 
4788
- #: src/addons/googlecloud.php:432, src/addons/migrator.php:462,
4789
- #: src/admin.php:1935, src/admin.php:1982, src/admin.php:1990,
4790
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4791
- #: src/class-updraftplus.php:4544, src/class-updraftplus.php:4546,
4792
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4679,
4793
- #: src/class-updraftplus.php:4714, src/methods/googledrive.php:364,
4794
- #: src/methods/s3.php:316
4795
  msgid "Error: %s"
4796
  msgstr ""
4797
 
4798
- #: src/admin.php:3040
4799
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4800
  msgstr ""
4801
 
4802
- #: src/admin.php:3038
4803
  msgid "Backup directory specified does <b>not</b> exist."
4804
  msgstr ""
4805
 
4806
- #: src/admin.php:2751, src/admin.php:2994
4807
  msgid "Warning: %s"
4808
  msgstr ""
4809
 
@@ -4831,7 +4839,7 @@ msgstr ""
4831
  msgid "Warnings encountered:"
4832
  msgstr ""
4833
 
4834
- #: src/class-updraftplus.php:3106
4835
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4836
  msgstr ""
4837
 
@@ -4839,27 +4847,27 @@ msgstr ""
4839
  msgid "Your free disk space is very low - only %s Mb remain"
4840
  msgstr ""
4841
 
4842
- #: src/addons/migrator.php:470
4843
  msgid "New site:"
4844
  msgstr ""
4845
 
4846
- #: src/addons/migrator.php:445
4847
  msgid "Migrated site (from UpdraftPlus)"
4848
  msgstr ""
4849
 
4850
- #: src/addons/migrator.php:392
4851
  msgid "Enter details for where this new site is to live within your multisite install:"
4852
  msgstr ""
4853
 
4854
- #: src/addons/migrator.php:391
4855
  msgid "Information needed to continue:"
4856
  msgstr ""
4857
 
4858
- #: src/addons/migrator.php:348
4859
  msgid "Network activating theme:"
4860
  msgstr ""
4861
 
4862
- #: src/addons/migrator.php:338
4863
  msgid "Processed plugin:"
4864
  msgstr ""
4865
 
@@ -4871,15 +4879,15 @@ msgstr ""
4871
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4872
  msgstr ""
4873
 
4874
- #: src/methods/s3.php:821
4875
  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."
4876
  msgstr ""
4877
 
4878
- #: src/methods/s3.php:1073
4879
  msgid "Please check your access credentials."
4880
  msgstr ""
4881
 
4882
- #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1051
4883
  msgid "The error reported by %s was:"
4884
  msgstr ""
4885
 
@@ -4887,7 +4895,7 @@ msgstr ""
4887
  msgid "Please supply the requested information, and then continue."
4888
  msgstr ""
4889
 
4890
- #: src/class-updraftplus.php:4690, src/restorer.php:1706
4891
  msgid "Site information:"
4892
  msgstr ""
4893
 
@@ -4895,21 +4903,21 @@ msgstr ""
4895
  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."
4896
  msgstr ""
4897
 
4898
- #: src/addons/migrator.php:333, src/admin.php:2229,
4899
- #: src/class-updraftplus.php:4683, src/restorer.php:2033
4900
  msgid "Warning:"
4901
  msgstr ""
4902
 
4903
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4675,
4904
  #: src/restorer.php:154
4905
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4906
  msgstr ""
4907
 
4908
- #: src/admin.php:3733
4909
  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."
4910
  msgstr ""
4911
 
4912
- #: src/admin.php:3169, src/methods/updraftvault.php:286
4913
  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."
4914
  msgstr ""
4915
 
@@ -4964,7 +4972,7 @@ msgstr ""
4964
  msgid "Also delete from remote storage"
4965
  msgstr ""
4966
 
4967
- #: src/admin.php:2481
4968
  msgid "Latest UpdraftPlus.com news:"
4969
  msgstr ""
4970
 
@@ -4981,7 +4989,7 @@ msgstr ""
4981
  msgid "News"
4982
  msgstr ""
4983
 
4984
- #: src/admin.php:1409, src/includes/class-wpadmin-commands.php:465
4985
  msgid "Backup set not found"
4986
  msgstr ""
4987
 
@@ -5007,7 +5015,7 @@ msgstr ""
5007
  msgid "Testing %s Settings..."
5008
  msgstr ""
5009
 
5010
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
5011
  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."
5012
  msgstr ""
5013
 
@@ -5035,77 +5043,77 @@ msgstr ""
5035
  msgid "Store at"
5036
  msgstr ""
5037
 
5038
- #: src/addons/migrator.php:1380
5039
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5040
  msgstr ""
5041
 
5042
- #: src/addons/migrator.php:1258
5043
  msgid "rows: %d"
5044
  msgstr ""
5045
 
5046
- #: src/addons/migrator.php:1134
5047
  msgid "Time taken (seconds):"
5048
  msgstr ""
5049
 
5050
- #: src/addons/migrator.php:1133, src/admin.php:659
5051
  msgid "Errors:"
5052
  msgstr ""
5053
 
5054
- #: src/addons/migrator.php:1132
5055
  msgid "SQL update commands run:"
5056
  msgstr ""
5057
 
5058
- #: src/addons/migrator.php:1131
5059
  msgid "Changes made:"
5060
  msgstr ""
5061
 
5062
- #: src/addons/migrator.php:1130
5063
  msgid "Rows examined:"
5064
  msgstr ""
5065
 
5066
- #: src/addons/migrator.php:1129
5067
  msgid "Tables examined:"
5068
  msgstr ""
5069
 
5070
- #: src/addons/migrator.php:1018
5071
  msgid "Could not get list of tables"
5072
  msgstr ""
5073
 
5074
- #: src/addons/migrator.php:963
5075
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5076
  msgstr ""
5077
 
5078
- #: src/addons/migrator.php:952
5079
  msgid "Nothing to do: the site URL is already: %s"
5080
  msgstr ""
5081
 
5082
- #: src/addons/migrator.php:916, src/addons/migrator.php:920,
5083
- #: src/addons/migrator.php:924, src/addons/migrator.php:929,
5084
- #: src/addons/migrator.php:933, src/addons/migrator.php:938
5085
  msgid "Error: unexpected empty parameter (%s, %s)"
5086
  msgstr ""
5087
 
5088
- #: src/addons/migrator.php:876
5089
  msgid "Database: search and replace site URL"
5090
  msgstr ""
5091
 
5092
- #: src/addons/migrator.php:787, src/addons/migrator.php:1115
5093
  msgid "Failed: we did not understand the result returned by the %s operation."
5094
  msgstr ""
5095
 
5096
- #: src/addons/migrator.php:785, src/addons/migrator.php:1113
5097
  msgid "Failed: the %s operation was not able to start."
5098
  msgstr ""
5099
 
5100
- #: src/addons/migrator.php:550
5101
  msgid "(learn more)"
5102
  msgstr ""
5103
 
5104
- #: src/addons/migrator.php:550
5105
  msgid "Search and replace site location in the database (migrate)"
5106
  msgstr ""
5107
 
5108
- #: src/addons/migrator.php:550
5109
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5110
  msgstr ""
5111
 
@@ -5113,7 +5121,7 @@ msgstr ""
5113
  msgid "Blog uploads"
5114
  msgstr ""
5115
 
5116
- #: src/addons/migrator.php:377, src/addons/multisite.php:649
5117
  msgid "Must-use plugins"
5118
  msgstr ""
5119
 
@@ -5152,7 +5160,7 @@ msgstr ""
5152
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5153
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5154
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5155
- #: src/udaddons/options.php:132
5156
  msgid "Password"
5157
  msgstr ""
5158
 
@@ -5218,8 +5226,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
5218
  msgstr ""
5219
 
5220
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5221
- #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2805,
5222
- #: src/admin.php:2840, src/admin.php:2849, src/methods/addon-base-v2.php:289,
5223
  #: src/methods/stream-base.php:301
5224
  msgid "Failed"
5225
  msgstr ""
@@ -5244,7 +5252,7 @@ msgstr ""
5244
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5245
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5246
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5247
- #: src/methods/googledrive.php:167, src/methods/googledrive.php:169,
5248
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5249
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5250
  #: src/methods/stream-base.php:246
@@ -5312,96 +5320,96 @@ msgstr ""
5312
  msgid "You do not appear to be authenticated with Dropbox"
5313
  msgstr ""
5314
 
5315
- #: src/methods/s3.php:1068
5316
  msgid "The communication with %s was not encrypted."
5317
  msgstr ""
5318
 
5319
- #: src/methods/s3.php:1066
5320
  msgid "The communication with %s was encrypted."
5321
  msgstr ""
5322
 
5323
- #: src/addons/googlecloud.php:756, src/methods/s3.php:1063
5324
  msgid "We accessed the bucket, and were able to create files within it."
5325
  msgstr ""
5326
 
5327
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5328
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5329
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5330
  msgstr ""
5331
 
5332
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5333
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5334
  msgid "Failure"
5335
  msgstr ""
5336
 
5337
- #: src/methods/s3.php:1049
5338
  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)."
5339
  msgstr ""
5340
 
5341
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5342
- #: src/methods/s3.php:1043
5343
  msgid "Region"
5344
  msgstr ""
5345
 
5346
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5347
- #: src/methods/s3.php:1025
5348
  msgid "Failure: No bucket details were given."
5349
  msgstr ""
5350
 
5351
- #: src/methods/s3.php:1003
5352
  msgid "API secret"
5353
  msgstr ""
5354
 
5355
- #: src/methods/s3.php:882
5356
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5357
  msgstr ""
5358
 
5359
- #: src/methods/s3.php:881
5360
  msgid "%s location"
5361
  msgstr ""
5362
 
5363
- #: src/methods/s3.php:877
5364
  msgid "%s secret key"
5365
  msgstr ""
5366
 
5367
- #: src/methods/s3.php:873
5368
  msgid "%s access key"
5369
  msgstr ""
5370
 
5371
- #: src/methods/s3.php:838
5372
  msgid "If you see errors about SSL certificates, then please go here for help."
5373
  msgstr ""
5374
 
5375
- #: src/methods/s3.php:836
5376
  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."
5377
  msgstr ""
5378
 
5379
- #: src/methods/s3.php:457, src/methods/s3.php:569, src/methods/s3.php:641,
5380
- #: src/methods/s3.php:744
5381
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5382
  msgstr ""
5383
 
5384
- #: src/methods/s3.php:727, src/methods/s3.php:737, src/methods/s3.php:773
5385
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5386
  msgstr ""
5387
 
5388
- #: src/methods/s3.php:435
5389
  msgid "%s re-assembly error (%s): (see log file for more)"
5390
  msgstr ""
5391
 
5392
- #: src/methods/s3.php:431
5393
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5394
  msgstr ""
5395
 
5396
- #: src/methods/s3.php:415
5397
  msgid "%s chunk %s: upload failed"
5398
  msgstr ""
5399
 
5400
- #: src/methods/s3.php:405
5401
  msgid "%s error: file %s was shortened unexpectedly"
5402
  msgstr ""
5403
 
5404
- #: src/methods/s3.php:383
5405
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5406
  msgstr ""
5407
 
@@ -5432,11 +5440,11 @@ msgid "Username"
5432
  msgstr ""
5433
 
5434
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5435
- #: src/methods/s3.php:999
5436
  msgid "API key"
5437
  msgstr ""
5438
 
5439
- #: src/addons/migrator.php:286, src/addons/migrator.php:1872,
5440
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5441
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5442
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
@@ -5446,12 +5454,12 @@ msgstr ""
5446
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5447
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5448
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5449
- #: src/methods/s3.php:999, src/methods/s3.php:1003
5450
  msgid "Failure: No %s was given."
5451
  msgstr ""
5452
 
5453
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5454
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5455
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5456
  msgstr ""
5457
 
@@ -5490,7 +5498,7 @@ msgstr ""
5490
  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."
5491
  msgstr ""
5492
 
5493
- #: src/admin.php:735, src/methods/backup-module.php:242
5494
  msgid "Test %s Settings"
5495
  msgstr ""
5496
 
@@ -5506,13 +5514,13 @@ msgstr ""
5506
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5507
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5508
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5509
- #: src/methods/s3.php:351, src/methods/s3.php:363, src/methods/s3.php:364
5510
  msgid "%s Error: Failed to upload"
5511
  msgstr ""
5512
 
5513
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5514
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5515
- #: src/methods/googledrive.php:919, src/methods/googledrive.php:924
5516
  msgid "%s Error: Failed to open local file"
5517
  msgstr ""
5518
 
@@ -5528,87 +5536,87 @@ msgstr ""
5528
  msgid "Cloud Files authentication failed"
5529
  msgstr ""
5530
 
5531
- #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1152
5532
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5533
  msgstr ""
5534
 
5535
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5536
- #: src/methods/googledrive.php:1110
5537
  msgid "Client Secret"
5538
  msgstr ""
5539
 
5540
- #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1107
5541
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5542
  msgstr ""
5543
 
5544
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5545
- #: src/methods/googledrive.php:1106
5546
  msgid "Client ID"
5547
  msgstr ""
5548
 
5549
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5550
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5551
  msgstr ""
5552
 
5553
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5554
  msgid "Select 'Web Application' as the application type."
5555
  msgstr ""
5556
 
5557
- #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1088
5558
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5559
  msgstr ""
5560
 
5561
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5562
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5563
- #: src/methods/googledrive.php:1071, src/methods/openstack-base.php:531,
5564
- #: src/methods/s3.php:797, src/methods/stream-base.php:218
5565
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5566
  msgstr ""
5567
 
5568
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5569
- #: src/addons/googlecloud.php:783, src/methods/googledrive.php:526,
5570
- #: src/methods/googledrive.php:527, src/methods/googledrive.php:537,
5571
- #: src/methods/googledrive.php:538
5572
  msgid "Account is not authorized."
5573
  msgstr ""
5574
 
5575
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:496,
5576
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
5577
  #: src/methods/stream-base.php:200
5578
  msgid "Failed to upload to %s"
5579
  msgstr ""
5580
 
5581
- #: src/methods/googledrive.php:479
5582
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5583
  msgstr ""
5584
 
5585
- #: src/methods/googledrive.php:570, src/methods/googledrive.php:606
5586
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5587
  msgstr ""
5588
 
5589
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5590
- #: src/methods/googledrive.php:423
5591
  msgid "you have authenticated your %s account."
5592
  msgstr ""
5593
 
5594
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5595
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5596
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5597
- #: src/methods/googledrive.php:423, src/methods/openstack-base.php:495,
5598
- #: src/methods/s3.php:1063, src/methods/stream-base.php:312
5599
  msgid "Success"
5600
  msgstr ""
5601
 
5602
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5603
- #: src/methods/dropbox.php:693, src/methods/googledrive.php:397
5604
  msgid "Your %s quota usage: %s %% used, %s available"
5605
  msgstr ""
5606
 
5607
- #: src/addons/googlecloud.php:438, src/methods/googledrive.php:370
5608
  msgid "Authorization failed"
5609
  msgstr ""
5610
 
5611
- #: src/addons/googlecloud.php:430, src/methods/googledrive.php:362
5612
  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."
5613
  msgstr ""
5614
 
@@ -5634,8 +5642,8 @@ msgstr ""
5634
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5635
  msgstr ""
5636
 
5637
- #: src/addons/migrator.php:1767, src/admin.php:2808, src/admin.php:2842,
5638
- #: src/admin.php:2846, src/admin.php:3763, src/admin.php:3776,
5639
  #: src/restorer.php:2273, src/restorer.php:2378
5640
  msgid "OK"
5641
  msgstr ""
@@ -5644,7 +5652,7 @@ msgstr ""
5644
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5645
  msgstr ""
5646
 
5647
- #: src/addons/migrator.php:1146, src/restorer.php:2170
5648
  msgid "the database query being run was:"
5649
  msgstr ""
5650
 
@@ -5652,13 +5660,13 @@ msgstr ""
5652
  msgid "will restore as:"
5653
  msgstr ""
5654
 
5655
- #: src/class-updraftplus.php:4661, src/restorer.php:1688,
5656
  #: src/restorer.php:1777, src/restorer.php:1803
5657
  msgid "Old table prefix:"
5658
  msgstr ""
5659
 
5660
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5661
- #: src/backup.php:960, src/class-updraftplus.php:4616
5662
  msgid "Backup of:"
5663
  msgstr ""
5664
 
@@ -5730,60 +5738,60 @@ msgstr ""
5730
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5731
  msgstr ""
5732
 
5733
- #: src/admin.php:3784, src/admin.php:3785
5734
  msgid "Could not find one of the files for restoration"
5735
  msgstr ""
5736
 
5737
- #: src/admin.php:3894
5738
  msgid "Error message"
5739
  msgstr ""
5740
 
5741
- #: src/admin.php:3781
5742
  msgid "The backup records do not contain information about the proper size of this file."
5743
  msgstr ""
5744
 
5745
- #: src/admin.php:3773
5746
  msgid "Archive is expected to be size:"
5747
  msgstr ""
5748
 
5749
- #: src/admin.php:3657
5750
  msgid "If making a request for support, please include this information:"
5751
  msgstr ""
5752
 
5753
- #: src/admin.php:3656
5754
  msgid "ABORT: Could not find the information on which entities to restore."
5755
  msgstr ""
5756
 
5757
- #: src/admin.php:3610
5758
  msgid "UpdraftPlus Restoration: Progress"
5759
  msgstr ""
5760
 
5761
- #: src/admin.php:3562
5762
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5763
  msgstr ""
5764
 
5765
- #: src/admin.php:3504
5766
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5767
  msgstr ""
5768
 
5769
- #: src/admin.php:3513
5770
  msgid "Delete this backup set"
5771
  msgstr ""
5772
 
5773
- #: src/admin.php:3181
5774
  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."
5775
  msgstr ""
5776
 
5777
- #: src/admin.php:3178
5778
  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."
5779
  msgstr ""
5780
 
5781
- #: src/admin.php:3176
5782
  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)."
5783
  msgstr ""
5784
 
5785
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5786
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5787
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5788
  msgstr ""
5789
 
@@ -5819,23 +5827,23 @@ msgstr ""
5819
  msgid "Use the server's SSL certificates"
5820
  msgstr ""
5821
 
5822
- #: src/admin.php:3042
5823
  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."
5824
  msgstr ""
5825
 
5826
- #: src/admin.php:3042
5827
  msgid "click here"
5828
  msgstr ""
5829
 
5830
- #: src/admin.php:3042
5831
  msgid "or, to reset this option"
5832
  msgstr ""
5833
 
5834
- #: src/admin.php:3042
5835
  msgid "Follow this link to attempt to create the directory and set the permissions"
5836
  msgstr ""
5837
 
5838
- #: src/admin.php:3034
5839
  msgid "Backup directory specified is writable, which is good."
5840
  msgstr ""
5841
 
@@ -5875,7 +5883,7 @@ msgstr ""
5875
  msgid "Cancel"
5876
  msgstr ""
5877
 
5878
- #: src/addons/reporting.php:233, src/admin.php:3325
5879
  msgid "None"
5880
  msgstr ""
5881
 
@@ -5892,7 +5900,7 @@ msgid "Database encryption phrase"
5892
  msgstr ""
5893
 
5894
  #: src/templates/wp-admin/settings/form-contents.php:285,
5895
- #: src/udaddons/options.php:130
5896
  msgid "Email"
5897
  msgstr ""
5898
 
@@ -5900,11 +5908,11 @@ msgstr ""
5900
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5901
  msgstr ""
5902
 
5903
- #: src/addons/morefiles.php:443, src/admin.php:3112
5904
  msgid "Exclude these:"
5905
  msgstr ""
5906
 
5907
- #: src/admin.php:3103
5908
  msgid "Any other directories found inside wp-content"
5909
  msgstr ""
5910
 
@@ -5920,49 +5928,49 @@ msgstr ""
5920
  msgid "To fix the time at which a backup should take place,"
5921
  msgstr ""
5922
 
5923
- #: src/admin.php:3028
5924
  msgid "Monthly"
5925
  msgstr ""
5926
 
5927
- #: src/admin.php:3027
5928
  msgid "Fortnightly"
5929
  msgstr ""
5930
 
5931
- #: src/admin.php:3026
5932
  msgid "Weekly"
5933
  msgstr ""
5934
 
5935
- #: src/admin.php:3025
5936
  msgid "Daily"
5937
  msgstr ""
5938
 
5939
- #: src/admin.php:694, src/admin.php:3008
5940
  msgid "Download log file"
5941
  msgstr ""
5942
 
5943
- #: src/admin.php:2905
5944
  msgid "The folder exists, but your webserver does not have permission to write to it."
5945
  msgstr ""
5946
 
5947
- #: src/admin.php:2900
5948
  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"
5949
  msgstr ""
5950
 
5951
- #: src/admin.php:2886
5952
  msgid "The request to the filesystem to create the directory failed."
5953
  msgstr ""
5954
 
5955
- #: src/addons/migrator.php:2245, src/admin.php:688, src/admin.php:2802,
5956
- #: src/admin.php:2835, src/admin.php:3513,
5957
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5958
  msgid "Delete"
5959
  msgstr ""
5960
 
5961
- #: src/admin.php:2586
5962
  msgid "(None)"
5963
  msgstr ""
5964
 
5965
- #: src/admin.php:2742
5966
  msgid "show log"
5967
  msgstr ""
5968
 
@@ -6067,7 +6075,7 @@ msgstr ""
6067
  msgid "Multisite"
6068
  msgstr ""
6069
 
6070
- #: src/admin.php:2405
6071
  msgid "Go here for help."
6072
  msgstr ""
6073
 
@@ -6124,81 +6132,81 @@ msgstr ""
6124
  msgid "Download error: the server sent us a response which we did not understand."
6125
  msgstr ""
6126
 
6127
- #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:772,
6128
- #: src/addons/migrator.php:1018, src/addons/migrator.php:1099,
6129
- #: src/addons/migrator.php:1146, src/addons/migrator.php:1380,
6130
- #: src/addons/migrator.php:1706, src/addons/migrator.php:1733,
6131
- #: src/addons/migrator.php:1739, src/addons/migrator.php:1801,
6132
- #: src/addons/migrator.php:1841, src/addons/migrator.php:1880,
6133
- #: src/addons/migrator.php:1890, src/addons/migrator.php:1895,
6134
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6135
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6136
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6137
- #: src/admin.php:3778, src/admin.php:3808, src/methods/remotesend.php:71,
6138
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6139
  #: src/restorer.php:1408
6140
  msgid "Error:"
6141
  msgstr ""
6142
 
6143
  #: src/admin.php:653,
6144
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6145
  msgid "calculating..."
6146
  msgstr ""
6147
 
6148
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
6149
  msgid "UpdraftPlus - Upload backup files"
6150
  msgstr ""
6151
 
6152
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6153
  msgid "refresh"
6154
  msgstr ""
6155
 
6156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6157
  msgid "Web-server disk space in use by UpdraftPlus"
6158
  msgstr ""
6159
 
6160
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6161
  msgid "This is a count of the contents of your Updraft directory"
6162
  msgstr ""
6163
 
6164
- #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:167,
6165
- #: src/methods/googledrive.php:169, src/methods/googledrive.php:423,
6166
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:479,
6167
- #: src/methods/googledrive.php:486, src/methods/googledrive.php:496,
6168
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
6169
- #: src/methods/googledrive.php:1070, src/methods/googledrive.php:1082,
6170
- #: src/methods/googledrive.php:1082, src/methods/googledrive.php:1106,
6171
- #: src/methods/googledrive.php:1110, src/methods/googledrive.php:1122,
6172
- #: src/methods/googledrive.php:1132
6173
  msgid "Google Drive"
6174
  msgstr ""
6175
 
6176
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6177
  msgid "If you are using this, then turn Turbo/Road mode off."
6178
  msgstr ""
6179
 
6180
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6181
  msgid "Opera web browser"
6182
  msgstr ""
6183
 
6184
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:36
6185
  msgid "More tasks:"
6186
  msgstr ""
6187
 
6188
- #: src/admin.php:2505
6189
  msgid "Download most recently modified log file"
6190
  msgstr ""
6191
 
6192
- #: src/admin.php:2464, src/admin.php:2470, src/central/bootstrap.php:169
6193
  msgid "(Nothing yet logged)"
6194
  msgstr ""
6195
 
6196
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6197
- #: src/admin.php:2463, src/admin.php:2468
6198
  msgid "Last log message"
6199
  msgstr ""
6200
 
6201
- #: src/addons/migrator.php:224, src/admin.php:693, src/admin.php:3504,
6202
  #: src/templates/wp-admin/settings/tab-status.php:30
6203
  msgid "Restore"
6204
  msgstr ""
@@ -6208,9 +6216,9 @@ msgstr ""
6208
  msgid "Backup Now"
6209
  msgstr ""
6210
 
6211
- #: src/addons/migrator.php:1771, src/addons/moredatabase.php:247,
6212
- #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3300,
6213
- #: src/admin.php:3373, src/admin.php:3862,
6214
  #: src/includes/class-wpadmin-commands.php:147,
6215
  #: src/includes/class-wpadmin-commands.php:480,
6216
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
@@ -6218,7 +6226,7 @@ msgstr ""
6218
  msgid "Database"
6219
  msgstr ""
6220
 
6221
- #: src/admin.php:295, src/admin.php:4335
6222
  msgid "Files"
6223
  msgstr ""
6224
 
@@ -6246,15 +6254,15 @@ msgstr ""
6246
  msgid "JavaScript warning"
6247
  msgstr ""
6248
 
6249
- #: src/admin.php:673, src/admin.php:2532
6250
  msgid "Delete Old Directories"
6251
  msgstr ""
6252
 
6253
- #: src/admin.php:2277
6254
  msgid "Current limit is:"
6255
  msgstr ""
6256
 
6257
- #: src/admin.php:2251
6258
  msgid "Your backup has been restored."
6259
  msgstr ""
6260
 
@@ -6266,67 +6274,67 @@ msgstr ""
6266
  msgid "Lead developer's homepage"
6267
  msgstr ""
6268
 
6269
- #: src/admin.php:4255
6270
  msgid "Your settings have been wiped."
6271
  msgstr ""
6272
 
6273
- #: src/admin.php:2211
6274
  msgid "Backup directory successfully created."
6275
  msgstr ""
6276
 
6277
- #: src/admin.php:2204
6278
  msgid "Backup directory could not be created"
6279
  msgstr ""
6280
 
6281
- #: src/admin.php:2774
6282
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6283
  msgstr ""
6284
 
6285
- #: src/admin.php:2772
6286
  msgid "Old directories successfully removed."
6287
  msgstr ""
6288
 
6289
- #: src/admin.php:2769, src/admin.php:2769
6290
  msgid "Remove old directories"
6291
  msgstr ""
6292
 
6293
- #: src/addons/migrator.php:289, src/addons/migrator.php:304,
6294
- #: src/admin.php:2153, src/admin.php:2162, src/admin.php:2171,
6295
- #: src/admin.php:2213, src/admin.php:2776
6296
  msgid "Return to UpdraftPlus Configuration"
6297
  msgstr ""
6298
 
6299
- #: src/admin.php:666, src/admin.php:2153, src/admin.php:2162,
6300
- #: src/admin.php:2171, src/admin.php:2213, src/admin.php:2776,
6301
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6302
  msgid "Actions"
6303
  msgstr ""
6304
 
6305
- #: src/admin.php:2072
6306
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6307
  msgstr ""
6308
 
6309
- #: src/admin.php:1982
6310
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6311
  msgstr ""
6312
 
6313
- #: src/admin.php:1863
6314
  msgid "No local copy present."
6315
  msgstr ""
6316
 
6317
- #: src/admin.php:1860
6318
  msgid "Download in progress"
6319
  msgstr ""
6320
 
6321
- #: src/admin.php:665, src/admin.php:1849
6322
  msgid "File ready."
6323
  msgstr ""
6324
 
6325
- #: src/admin.php:1830
6326
  msgid "Download failed"
6327
  msgstr ""
6328
 
6329
- #: src/admin.php:663, src/admin.php:1609, src/admin.php:3761,
6330
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6331
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6332
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
@@ -6335,15 +6343,15 @@ msgstr ""
6335
  msgid "Error"
6336
  msgstr ""
6337
 
6338
- #: src/admin.php:1637
6339
  msgid "Could not find that job - perhaps it has already finished?"
6340
  msgstr ""
6341
 
6342
- #: src/admin.php:1629
6343
  msgid "Job deleted"
6344
  msgstr ""
6345
 
6346
- #: src/admin.php:1713
6347
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6348
  msgstr ""
6349
 
@@ -6368,12 +6376,12 @@ msgid "You have less than %s of free disk space on the disk which UpdraftPlus is
6368
  msgstr ""
6369
 
6370
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6371
- #: src/admin.php:957, src/admin.php:966, src/admin.php:3169,
6372
- #: src/admin.php:3176, src/admin.php:3178, src/methods/cloudfiles-new.php:107,
6373
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6374
- #: src/methods/openstack-base.php:541, src/methods/s3.php:821,
6375
- #: src/methods/s3.php:825, src/methods/updraftvault.php:286,
6376
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28,
6377
  #: src/udaddons/updraftplus-addons.php:242
6378
  msgid "Warning"
6379
  msgstr ""
@@ -6403,21 +6411,21 @@ msgstr ""
6403
  msgid "Like UpdraftPlus and can spare one minute?"
6404
  msgstr ""
6405
 
6406
- #: src/addons/azure.php:217, src/class-updraftplus.php:4340,
6407
- #: src/methods/googledrive.php:1001, src/methods/s3.php:316
6408
  msgid "File not found"
6409
  msgstr ""
6410
 
6411
- #: src/class-updraftplus.php:4247
6412
  msgid "The decryption key used:"
6413
  msgstr ""
6414
 
6415
- #: src/class-updraftplus.php:4247, src/class-updraftplus.php:4556,
6416
  #: src/restorer.php:389
6417
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6418
  msgstr ""
6419
 
6420
- #: src/class-updraftplus.php:4228, src/class-updraftplus.php:4544,
6421
  #: src/restorer.php:376
6422
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6423
  msgstr ""
@@ -6426,15 +6434,15 @@ msgstr ""
6426
  msgid "Could not open the backup file for writing"
6427
  msgstr ""
6428
 
6429
- #: src/class-updraftplus.php:3638
6430
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6431
  msgstr ""
6432
 
6433
- #: src/class-updraftplus.php:3604
6434
  msgid "Could not read the directory"
6435
  msgstr ""
6436
 
6437
- #: src/admin.php:1900, src/backup.php:1157
6438
  msgid "Backup directory (%s) is not writable, or does not exist."
6439
  msgstr ""
6440
 
@@ -6442,11 +6450,11 @@ msgstr ""
6442
  msgid "WordPress backup is complete"
6443
  msgstr ""
6444
 
6445
- #: src/class-updraftplus.php:3115
6446
  msgid "The backup attempt has finished, apparently unsuccessfully"
6447
  msgstr ""
6448
 
6449
- #: src/class-updraftplus.php:3100
6450
  msgid "The backup apparently succeeded and is now complete"
6451
  msgstr ""
6452
 
@@ -6478,7 +6486,7 @@ msgstr ""
6478
  msgid "No log files were found."
6479
  msgstr ""
6480
 
6481
- #: src/admin.php:1782, src/admin.php:1786, src/class-updraftplus.php:516
6482
  msgid "The log file could not be read."
6483
  msgstr ""
6484
 
11
  "Language: bs_BA\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/class-updraftplus.php:4741
15
+ 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."
16
+ msgstr ""
17
+
18
+ #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
+ msgid "the migrator add-on"
20
+ msgstr ""
21
+
22
+ #: src/class-updraftplus.php:4739
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/class-updraftplus.php:4737
27
+ 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."
28
+ msgstr ""
29
+
30
+ #: src/class-updraftplus.php:4734
31
+ 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."
32
+ msgstr ""
33
+
34
+ #: src/methods/googledrive.php:1153
35
+ msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
36
+ msgstr ""
37
+
38
+ #: src/methods/googledrive.php:1149
39
+ msgid "Follow this link to remove this site's settings for %s."
40
+ msgstr ""
41
+
42
  #: src/addons/sftp.php:346
43
+ msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr ""
45
 
46
  #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr ""
49
 
50
+ #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr ""
54
 
55
+ #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr ""
69
  msgid "North-east Asia"
70
  msgstr ""
71
 
72
+ #: src/udaddons/options.php:118
73
+ 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"
74
  msgstr ""
75
 
76
  #: src/templates/wp-admin/settings/tab-status.php:80
97
  msgid "Select Files"
98
  msgstr ""
99
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  #: src/methods/cloudfiles.php:497
101
  msgid "Rackspace Storage Region"
102
  msgstr ""
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr ""
111
 
 
 
 
 
112
  #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr ""
115
 
116
+ #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr ""
119
 
120
+ #: src/admin.php:1540
 
 
 
 
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr ""
123
 
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr ""
135
 
136
+ #: src/templates/wp-admin/settings/existing-backups-table.php:70
137
  msgid "Stored at: %s"
138
  msgstr ""
139
 
141
  msgid "Cloud Files"
142
  msgstr ""
143
 
144
+ #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr ""
147
 
148
+ #: src/admin.php:4219
149
  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."
150
  msgstr ""
151
 
162
  msgid "Extra database"
163
  msgstr ""
164
 
165
+ #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr ""
168
 
206
  msgid "Skipped tables:"
207
  msgstr ""
208
 
209
+ #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr ""
212
 
213
+ #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr ""
216
 
217
+ #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr ""
220
 
714
  msgid "Backup of: %s"
715
  msgstr ""
716
 
717
+ #: src/methods/googledrive.php:248
718
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
719
  msgstr ""
720
 
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr ""
744
 
745
+ #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr ""
748
 
749
+ #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr ""
752
 
815
  msgid "An error response was received; HTTP code:"
816
  msgstr ""
817
 
818
+ #: src/includes/class-commands.php:322
819
  msgid "%s add-on not found"
820
  msgstr ""
821
 
827
  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"
828
  msgstr ""
829
 
830
+ #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr ""
833
 
834
+ #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr ""
837
 
867
  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."
868
  msgstr ""
869
 
870
+ #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr ""
873
 
874
+ #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr ""
877
 
919
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
920
  msgstr ""
921
 
922
+ #: src/addons/migrator.php:2218
923
  msgid "Create key"
924
  msgstr ""
925
 
926
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr ""
929
 
930
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr ""
933
 
934
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr ""
937
 
938
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr ""
941
 
942
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr ""
945
 
946
+ #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr ""
951
 
952
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr ""
955
 
956
+ #: src/addons/migrator.php:2208
957
  msgid "Enter your chosen name"
958
  msgstr ""
959
 
960
+ #: src/addons/migrator.php:2207
961
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
962
  msgstr ""
963
 
964
+ #: src/methods/googledrive.php:491
965
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
966
  msgstr ""
967
 
1001
  msgid "Now"
1002
  msgstr ""
1003
 
1004
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr ""
1007
 
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr ""
1125
 
1126
+ #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr ""
1129
 
1130
+ #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr ""
1133
 
1134
+ #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr ""
1137
 
1138
+ #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr ""
1141
 
1142
+ #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr ""
1145
 
1161
  msgid "this backup set"
1162
  msgstr ""
1163
 
1164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
1165
  msgid "calculate"
1166
  msgstr ""
1167
 
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr ""
1207
 
1208
+ #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr ""
1211
 
1212
+ #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr ""
1215
 
1216
+ #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr ""
1219
 
1220
+ #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr ""
1242
  msgid "Which site to restore"
1243
  msgstr ""
1244
 
1245
+ #: src/addons/migrator.php:514, src/addons/migrator.php:515
1246
  msgid "Error when creating new site at your chosen address:"
1247
  msgstr ""
1248
 
1249
+ #: src/addons/migrator.php:456
1250
  msgid "Required information for restoring this backup was not given (%s)"
1251
  msgstr ""
1252
 
1253
+ #: src/addons/migrator.php:415
1254
  msgid "Attribute imported content to user"
1255
  msgstr ""
1256
 
1257
+ #: src/addons/migrator.php:405, src/addons/migrator.php:407
1258
  msgid "You must use lower-case letters or numbers for the site path, only."
1259
  msgstr ""
1260
 
1261
+ #: src/addons/migrator.php:393
1262
  msgid "This feature is not compatible with %s"
1263
  msgstr ""
1264
 
1265
+ #: src/addons/migrator.php:391, src/addons/migrator.php:393
1266
  msgid "Importing a single site into a multisite install"
1267
  msgstr ""
1268
 
1269
+ #: src/addons/migrator.php:382
1270
  msgid "other content from wp-content"
1271
  msgstr ""
1272
 
1273
+ #: src/addons/migrator.php:379
1274
  msgid "WordPress core"
1275
  msgstr ""
1276
 
1277
+ #: src/addons/migrator.php:379, src/addons/migrator.php:382,
1278
+ #: src/addons/migrator.php:385
1279
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1280
  msgstr ""
1281
 
1283
  msgid "Call WordPress action:"
1284
  msgstr ""
1285
 
1286
+ #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr ""
1289
 
1290
+ #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr ""
1293
 
1319
  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)."
1320
  msgstr ""
1321
 
1322
+ #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr ""
1325
 
1326
+ #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr ""
1329
 
1330
+ #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr ""
1333
 
1334
+ #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr ""
1337
 
1338
+ #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr ""
1341
 
1342
+ #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr ""
1345
 
1346
+ #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr ""
1349
 
1350
+ #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr ""
1353
 
1354
+ #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr ""
1357
 
1358
+ #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr ""
1361
 
1362
+ #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr ""
1365
 
1366
+ #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr ""
1369
 
1371
  msgid "Premium / Extensions"
1372
  msgstr ""
1373
 
1374
+ #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr ""
1377
 
1518
  msgid "Could not access container"
1519
  msgstr ""
1520
 
1521
+ #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr ""
1524
 
1643
  msgid "Actions upon selected backups"
1644
  msgstr ""
1645
 
1646
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
1647
  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)."
1648
  msgstr ""
1649
 
1650
+ #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr ""
1653
 
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr ""
1701
 
1702
+ #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr ""
1705
 
1706
+ #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr ""
1709
 
1710
+ #: src/admin.php:2291
1711
  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."
1712
  msgstr ""
1713
 
1876
  msgstr ""
1877
 
1878
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
+ #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr ""
1882
 
1900
  msgid "Allow download"
1901
  msgstr ""
1902
 
1903
+ #: src/addons/migrator.php:1762
1904
  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."
1905
  msgstr ""
1906
 
1907
+ #: src/addons/migrator.php:1747, src/admin.php:709
1908
  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."
1909
  msgstr ""
1910
 
1911
+ #: src/addons/migrator.php:2250
1912
  msgid "Existing keys"
1913
  msgstr ""
1914
 
1915
+ #: src/addons/migrator.php:2241
1916
  msgid "No keys to allow remote sites to connect have yet been created."
1917
  msgstr ""
1918
 
1919
+ #: src/addons/migrator.php:2223
1920
  msgid "Your new key:"
1921
  msgstr ""
1922
 
1923
+ #: src/addons/migrator.php:2202
1924
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1925
  msgstr ""
1926
 
1927
+ #: src/addons/migrator.php:2184
1928
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1929
  msgstr ""
1930
 
1931
+ #: src/addons/migrator.php:2184
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr ""
1934
 
1935
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr ""
1938
 
1939
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr ""
1942
 
1943
+ #: src/addons/migrator.php:1849
1944
  msgid "A key with this name already exists; you must use a unique name."
1945
  msgstr ""
1946
 
1947
+ #: src/addons/migrator.php:1793
1948
  msgid "Also send this backup to the active remote storage locations"
1949
  msgstr ""
1950
 
1951
+ #: src/addons/migrator.php:1758
1952
  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."
1953
  msgstr ""
1954
 
1955
+ #: src/addons/migrator.php:1714
1956
  msgid "site not found"
1957
  msgstr ""
1958
 
1959
+ #: src/addons/migrator.php:1699
1960
  msgid "Backup data will be sent to:"
1961
  msgstr ""
1962
 
1963
+ #: src/addons/migrator.php:203
1964
  msgid "Restore an existing backup set onto this site"
1965
  msgstr ""
1966
 
1967
+ #: src/addons/migrator.php:196
1968
  msgid "This site has no backups to restore from yet."
1969
  msgstr ""
1970
 
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr ""
1978
 
1979
+ #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr ""
1982
 
1983
+ #: src/templates/wp-admin/settings/existing-backups-table.php:83
1984
  msgid "Site"
1985
  msgstr ""
1986
 
1987
+ #: src/templates/wp-admin/settings/existing-backups-table.php:82
1988
  msgid "Backup sent to remote site - not available for download."
1989
  msgstr ""
1990
 
1996
  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."
1997
  msgstr ""
1998
 
1999
+ #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr ""
2002
 
2016
  msgid "Creating..."
2017
  msgstr ""
2018
 
2019
+ #: src/addons/migrator.php:2201
2020
  msgid "Or, receive a backup from a remote site"
2021
  msgstr ""
2022
 
2023
+ #: src/addons/migrator.php:2190
2024
  msgid "Paste key here"
2025
  msgstr ""
2026
 
2027
+ #: src/addons/migrator.php:2184
2028
  msgid "How do I get a site's key?"
2029
  msgstr ""
2030
 
2031
+ #: src/addons/migrator.php:2184
2032
  msgid "To add a site as a destination for sending to, enter that site's key below."
2033
  msgstr ""
2034
 
2035
+ #: src/addons/migrator.php:2181
2036
  msgid "Or, send a backup to another site"
2037
  msgstr ""
2038
 
2039
+ #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr ""
2042
 
2043
+ #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr ""
2046
 
2047
+ #: src/addons/migrator.php:1938
2048
  msgid "No receiving sites have yet been added."
2049
  msgstr ""
2050
 
2051
+ #: src/addons/migrator.php:1919
2052
  msgid "It is for sending backups to the following site: "
2053
  msgstr ""
2054
 
2055
+ #: src/addons/migrator.php:1919
2056
  msgid "The key was successfully added."
2057
  msgstr ""
2058
 
2059
+ #: src/addons/migrator.php:1903
2060
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2061
  msgstr ""
2062
 
2063
+ #: src/addons/migrator.php:1892, src/addons/migrator.php:1894,
2064
+ #: src/addons/migrator.php:1898
2065
  msgid "The entered key was corrupt - please try again."
2066
  msgstr ""
2067
 
2068
+ #: src/addons/migrator.php:1890
2069
  msgid "The entered key was the wrong length - please try again."
2070
  msgstr ""
2071
 
2072
+ #: src/addons/migrator.php:1880
2073
  msgid "key"
2074
  msgstr ""
2075
 
2109
  msgid "Resetting..."
2110
  msgstr ""
2111
 
2112
+ #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr ""
2115
 
2117
  msgid "Adding..."
2118
  msgstr ""
2119
 
2120
+ #: src/udaddons/options.php:336
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr ""
2123
 
2137
  msgid "Go here to re-enter your password."
2138
  msgstr ""
2139
 
2140
+ #: src/addons/migrator.php:232
2141
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2142
  msgstr ""
2143
 
2144
+ #: src/addons/migrator.php:203
2145
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2146
  msgstr ""
2147
 
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr ""
2163
 
2164
+ #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr ""
2340
  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)"
2341
  msgstr ""
2342
 
2343
+ #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr ""
2346
 
2415
  msgid "(at same time as files backup)"
2416
  msgstr ""
2417
 
2418
+ #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr ""
2421
 
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr ""
2466
 
2467
+ #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
+ #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr ""
2471
 
2505
  msgid "Check this box to have a basic report sent to"
2506
  msgstr ""
2507
 
2508
+ #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr ""
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr ""
2525
 
2526
+ #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr ""
2529
 
2613
  msgid "(learn more about this significant option)"
2614
  msgstr ""
2615
 
2616
+ #: src/udaddons/options.php:278
2617
  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."
2618
  msgstr ""
2619
 
2620
+ #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr ""
2623
 
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr ""
2636
 
2637
+ #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr ""
2640
 
2642
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2643
  msgstr ""
2644
 
2645
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr ""
2648
 
2649
+ #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr ""
2653
 
2654
+ #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr ""
2657
 
2658
+ #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr ""
2661
 
2675
  msgid "Your label for this backup (optional)"
2676
  msgstr ""
2677
 
2678
+ #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1087
2679
  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."
2680
  msgstr ""
2681
 
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr ""
2697
 
2698
+ #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr ""
2701
 
2702
+ #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr ""
2705
 
2706
+ #: src/addons/migrator.php:1091
2707
  msgid "already done"
2708
  msgstr ""
2709
 
2710
+ #: src/addons/migrator.php:1048
2711
  msgid "skipped (not in list)"
2712
  msgstr ""
2713
 
2714
+ #: src/addons/migrator.php:1048, src/addons/migrator.php:1091,
2715
+ #: src/addons/migrator.php:1223
2716
  msgid "Search and replacing table:"
2717
  msgstr ""
2718
 
2719
+ #: src/addons/migrator.php:330
2720
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2721
  msgstr ""
2722
 
2723
+ #: src/addons/migrator.php:330
2724
  msgid "These tables only"
2725
  msgstr ""
2726
 
2727
+ #: src/addons/migrator.php:329
2728
  msgid "Rows per batch"
2729
  msgstr ""
2730
 
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr ""
2738
 
2739
+ #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr ""
2742
 
2743
+ #: src/class-updraftplus.php:4781
2744
  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."
2745
  msgstr ""
2746
 
2747
+ #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr ""
2750
 
2751
+ #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr ""
2754
 
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
+ #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr ""
2783
 
2784
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2785
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2786
  msgstr ""
2787
 
2788
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr ""
2791
 
2792
+ #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr ""
2795
 
2796
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr ""
2799
 
2800
+ #: src/admin.php:2964
2801
  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."
2802
  msgstr ""
2803
 
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr ""
2807
 
2808
+ #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr ""
2811
 
2812
+ #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr ""
2815
 
2829
  msgid "Memory limit"
2830
  msgstr ""
2831
 
2832
+ #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr ""
2835
 
2853
  msgid "Backup succeeded"
2854
  msgstr ""
2855
 
2856
+ #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr ""
2860
 
2861
+ #: src/addons/migrator.php:793, src/addons/migrator.php:795
2862
  msgid "search and replace"
2863
  msgstr ""
2864
 
2865
+ #: src/addons/migrator.php:332
2866
  msgid "Go"
2867
  msgstr ""
2868
 
2869
+ #: src/addons/migrator.php:321
2870
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2871
  msgstr ""
2872
 
2873
+ #: src/addons/migrator.php:320
2874
  msgid "This can easily destroy your site; so, use it with care!"
2875
  msgstr ""
2876
 
2877
+ #: src/addons/migrator.php:290, src/addons/migrator.php:328
2878
  msgid "Replace with"
2879
  msgstr ""
2880
 
2881
+ #: src/addons/migrator.php:289, src/addons/migrator.php:327
2882
  msgid "Search for"
2883
  msgstr ""
2884
 
2885
+ #: src/addons/migrator.php:288, src/addons/migrator.php:319,
2886
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2887
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2888
  msgid "Search / replace database"
2889
  msgstr ""
2890
 
2891
+ #: src/addons/migrator.php:294
2892
  msgid "search term"
2893
  msgstr ""
2894
 
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr ""
2906
 
2907
+ #: src/methods/googledrive.php:1095
2908
  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."
2909
  msgstr ""
2910
 
2911
+ #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr ""
2914
 
2928
  msgid "Free disk space in account:"
2929
  msgstr ""
2930
 
2931
+ #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr ""
2934
 
2935
+ #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
+ #: src/includes/deprecated-actions.php:29,
2937
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr ""
3027
  msgid "External database (%s)"
3028
  msgstr ""
3029
 
3030
+ #: src/methods/googledrive.php:1095
3031
  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."
3032
  msgstr ""
3033
 
3034
+ #: src/methods/googledrive.php:455
3035
  msgid "failed to access parent folder"
3036
  msgstr ""
3037
 
3038
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3039
+ #: src/addons/onedrive.php:773, src/methods/googledrive.php:408
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr ""
3042
 
3043
+ #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr ""
3046
 
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr ""
3074
 
3075
+ #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr ""
3078
 
3093
  msgid "database connection attempt failed."
3094
  msgstr ""
3095
 
3096
+ #: src/addons/migrator.php:979
3097
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3098
  msgstr ""
3099
 
3176
  msgid "Authenticate with %s"
3177
  msgstr ""
3178
 
3179
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr ""
3182
 
3204
  msgstr ""
3205
 
3206
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3207
+ #: src/methods/dropbox.php:546, src/methods/googledrive.php:1161
3208
  msgid "Account holder's name: %s."
3209
  msgstr ""
3210
 
3211
+ #: src/methods/googledrive.php:1139
3212
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3213
  msgstr ""
3214
 
3215
+ #: src/methods/googledrive.php:1130
3216
  msgid "It is an ID number internal to Google Drive"
3217
  msgstr ""
3218
 
3219
+ #: src/methods/googledrive.php:1130
3220
  msgid "<strong>This is NOT a folder name</strong>."
3221
  msgstr ""
3222
 
3223
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3224
+ #: src/methods/googledrive.php:1126, src/methods/googledrive.php:1136
3225
  msgid "Folder"
3226
  msgstr ""
3227
 
3228
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3229
+ #: src/methods/googledrive.php:1046
3230
  msgid "%s download: failed: file not found"
3231
  msgstr ""
3232
 
3233
+ #: src/addons/googlecloud.php:635, src/methods/googledrive.php:428
3234
  msgid "Name: %s."
3235
  msgstr ""
3236
 
3237
+ #: src/methods/googledrive.php:186
3238
  msgid "Google Drive list files: failed to access parent folder"
3239
  msgstr ""
3240
 
3259
  msgid "Fetch"
3260
  msgstr ""
3261
 
3262
+ #: src/addons/migrator.php:391,
3263
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
  #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr ""
3273
  msgid "Error - failed to download the file"
3274
  msgstr ""
3275
 
3276
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
3277
  msgid "Rescan local folder for new backup sets"
3278
  msgstr ""
3279
 
3293
  msgid "password/key"
3294
  msgstr ""
3295
 
3296
+ #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
+ #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr ""
3300
 
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr ""
3312
 
3313
+ #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr ""
3316
 
3317
+ #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr ""
3320
 
3321
+ #: src/addons/importer.php:276, src/admin.php:3470,
3322
+ #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr ""
3325
 
3326
+ #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr ""
3329
 
3330
+ #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr ""
3333
 
3334
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3335
  msgid "Rescan remote storage"
3336
  msgstr ""
3337
 
3338
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:39
3339
  msgid "Upload backup files"
3340
  msgstr ""
3341
 
3342
+ #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr ""
3345
 
3351
  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."
3352
  msgstr ""
3353
 
3354
+ #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr ""
3357
 
3359
  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."
3360
  msgstr ""
3361
 
3362
+ #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
3363
  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))."
3364
  msgstr ""
3365
 
3366
+ #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr ""
3389
  msgid "No settings were found"
3390
  msgstr ""
3391
 
3392
+ #: src/class-updraftplus.php:3100
3393
  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."
3394
  msgstr ""
3395
 
3415
  msgid "Remove"
3416
  msgstr ""
3417
 
3418
+ #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr ""
3421
 
3423
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3424
  msgstr ""
3425
 
3426
+ #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  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."
3428
  msgstr ""
3429
 
3430
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr ""
3434
 
3435
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr ""
3438
 
3452
  msgid "Backup created by:"
3453
  msgstr ""
3454
 
3455
+ #: src/udaddons/options.php:485
3456
  msgid "Available to claim on this site"
3457
  msgstr ""
3458
 
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr ""
3504
 
3505
+ #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr ""
3508
 
3509
+ #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr ""
3512
 
3513
+ #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr ""
3516
 
3543
  msgid "Errors occurred:"
3544
  msgstr ""
3545
 
3546
+ #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr ""
3549
 
3571
  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)"
3572
  msgstr ""
3573
 
3574
+ #: src/addons/migrator.php:261
3575
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3576
  msgstr ""
3577
 
3580
  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."
3581
  msgstr ""
3582
 
3583
+ #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr ""
3586
 
3740
  msgid "Authorisation failed (check your credentials)"
3741
  msgstr ""
3742
 
3743
+ #: src/methods/updraftvault.php:568, src/udaddons/options.php:270
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr ""
3746
 
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr ""
3758
 
3759
+ #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr ""
3762
 
3763
+ #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr ""
3766
 
3767
+ #: src/admin.php:2585
3768
  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."
3769
  msgstr ""
3770
 
3820
  msgid "Debugging information"
3821
  msgstr ""
3822
 
3823
+ #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr ""
3826
 
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
+ #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
3893
  msgstr ""
3894
 
3895
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
+ #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
+ #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr ""
3976
 
3977
+ #: src/udaddons/options.php:491
3978
  msgid "(or connect using the form on this page if you have already purchased it)"
3979
  msgstr ""
3980
 
3981
+ #: src/udaddons/options.php:477
3982
  msgid "please follow this link to update the plugin in order to activate it"
3983
  msgstr ""
3984
 
3985
+ #: src/udaddons/options.php:474
3986
  msgid "please follow this link to update the plugin in order to get it"
3987
  msgstr ""
3988
 
3989
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
3990
  msgid "latest"
3991
  msgstr ""
3992
 
3993
+ #: src/udaddons/options.php:462
3994
  msgid "Your version: %s"
3995
  msgstr ""
3996
 
3997
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
3998
  msgid "You've got it"
3999
  msgstr ""
4000
 
4001
+ #: src/udaddons/options.php:421
4002
  msgid "UpdraftPlus Support"
4003
  msgstr ""
4004
 
4005
+ #: src/udaddons/options.php:379
4006
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4007
  msgstr ""
4008
 
4009
+ #: src/udaddons/options.php:368, src/udaddons/updraftplus-addons.php:290
4010
  msgid "UpdraftPlus Addons"
4011
  msgstr ""
4012
 
4042
  msgid "Reporting"
4043
  msgstr ""
4044
 
4045
+ #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr ""
4048
 
4070
  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)"
4071
  msgstr ""
4072
 
4073
+ #: src/udaddons/options.php:556
4074
  msgid "Manage Addons"
4075
  msgstr ""
4076
 
4077
+ #: src/udaddons/options.php:492, src/udaddons/options.php:492
4078
  msgid "Buy It"
4079
  msgstr ""
4080
 
4081
+ #: src/udaddons/options.php:491
4082
  msgid "Get it from the UpdraftPlus.Com Store"
4083
  msgstr ""
4084
 
4085
+ #: src/udaddons/options.php:485, src/udaddons/options.php:487
4086
  msgid "activate it on this site"
4087
  msgstr ""
4088
 
4089
+ #: src/udaddons/options.php:487
4090
  msgid "You have an inactive purchase"
4091
  msgstr ""
4092
 
4093
+ #: src/udaddons/options.php:477
4094
  msgid "Assigned to this site"
4095
  msgstr ""
4096
 
4097
+ #: src/udaddons/options.php:474
4098
  msgid "Available for this site (via your all-addons purchase)"
4099
  msgstr ""
4100
 
4101
+ #: src/udaddons/options.php:468
4102
  msgid "(apparently a pre-release or withdrawn release)"
4103
  msgstr ""
4104
 
4105
+ #: src/udaddons/options.php:423
4106
  msgid "Go here"
4107
  msgstr ""
4108
 
4109
+ #: src/udaddons/options.php:423
4110
  msgid "Need to get support?"
4111
  msgstr ""
4112
 
4113
+ #: src/udaddons/options.php:405
4114
  msgid "An error occurred when trying to retrieve your add-ons."
4115
  msgstr ""
4116
 
4117
+ #: src/udaddons/options.php:338
4118
  msgid "An unknown response was received. Response was:"
4119
  msgstr ""
4120
 
4121
+ #: src/udaddons/options.php:337
4122
  msgid "Claim not granted - your account login details were wrong"
4123
  msgstr ""
4124
 
4125
+ #: src/udaddons/options.php:335
4126
  msgid "Please wait whilst we make the claim..."
4127
  msgstr ""
4128
 
4129
+ #: src/udaddons/options.php:288
4130
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4131
  msgstr ""
4132
 
4133
+ #: src/udaddons/options.php:281
4134
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr ""
4136
 
4137
+ #: src/udaddons/options.php:277
4138
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4139
  msgstr ""
4140
 
4141
+ #: src/udaddons/options.php:276
4142
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4143
  msgstr ""
4144
 
4145
+ #: src/udaddons/options.php:247
4146
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4147
  msgstr ""
4148
 
4149
+ #: src/udaddons/options.php:175
4150
  msgid "Forgotten your details?"
4151
  msgstr ""
4152
 
4153
+ #: src/udaddons/options.php:164
4154
  msgid "Not yet got an account (it's free)? Go get one!"
4155
  msgstr ""
4156
 
4157
+ #: src/udaddons/options.php:131
4158
  msgid "Connect with your UpdraftPlus.Com account"
4159
  msgstr ""
4160
 
4194
  msgid "Your web-server does not have the %s module installed."
4195
  msgstr ""
4196
 
4197
+ #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1148
4198
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4199
  msgstr ""
4200
 
4201
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:67
4202
  msgid "Drop backup files here"
4203
  msgstr ""
4204
 
4205
+ #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr ""
4208
 
4243
  msgid "You can send a backup to more than one destination with an add-on."
4244
  msgstr ""
4245
 
4246
+ #: src/admin.php:2803
4247
  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."
4248
  msgstr ""
4249
 
4250
+ #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr ""
4253
 
4288
  msgid "%s settings test result:"
4289
  msgstr ""
4290
 
4291
+ #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr ""
4294
 
4295
+ #: src/admin.php:3542
4296
  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."
4297
  msgstr ""
4298
 
4304
  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)."
4305
  msgstr ""
4306
 
4307
+ #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr ""
4310
 
4311
+ #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr ""
4314
 
4315
+ #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr ""
4318
 
4319
+ #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr ""
4324
 
4325
+ #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr ""
4328
 
4329
+ #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr ""
4332
 
4333
+ #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr ""
4336
 
4337
+ #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr ""
4340
 
4341
+ #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr ""
4344
 
4345
+ #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr ""
4348
 
4349
+ #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr ""
4352
 
4353
+ #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr ""
4356
 
4357
+ #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr ""
4360
 
4361
+ #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr ""
4364
 
4365
+ #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr ""
4368
 
4369
+ #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr ""
4372
 
4373
+ #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr ""
4376
 
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr ""
4392
 
4393
+ #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr ""
4396
 
4404
  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)."
4405
  msgstr ""
4406
 
4407
+ #: src/admin.php:2336
4408
  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)."
4409
  msgstr ""
4410
 
4483
  msgid "Support"
4484
  msgstr ""
4485
 
4486
+ #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr ""
4489
 
4490
+ #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr ""
4493
 
4494
+ #: src/class-updraftplus.php:4774
4495
  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."
4496
  msgstr ""
4497
 
4498
+ #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr ""
4501
 
4502
+ #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr ""
4505
 
4508
  msgid "Be safe with an automatic backup"
4509
  msgstr ""
4510
 
4511
+ #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr ""
4514
 
4556
  msgid "Delete from your web server"
4557
  msgstr ""
4558
 
4559
+ #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr ""
4562
 
4563
+ #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr ""
4566
 
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr ""
4582
 
4583
+ #: src/admin.php:2049
4584
  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?"
4585
  msgstr ""
4586
 
4616
  msgid "No such backup set exists"
4617
  msgstr ""
4618
 
4619
+ #: src/admin.php:1291
4620
  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"
4621
  msgstr ""
4622
 
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr ""
4634
 
4635
+ #: src/methods/s3.php:851
4636
  msgid "%s end-point"
4637
  msgstr ""
4638
 
4639
+ #: src/methods/s3.php:813
4640
  msgid "... and many more!"
4641
  msgstr ""
4642
 
4643
+ #: src/methods/s3generic.php:52, src/methods/s3generic.php:61
4644
  msgid "S3 (Compatible)"
4645
  msgstr ""
4646
 
4647
+ #: src/admin.php:1205
4648
  msgid "File is not locally present - needs retrieving from remote storage"
4649
  msgstr ""
4650
 
4651
+ #: src/admin.php:3810
4652
  msgid "Looking for %s archive: file name: %s"
4653
  msgstr ""
4654
 
4655
+ #: src/admin.php:3771
4656
  msgid "Final checks"
4657
  msgstr ""
4658
 
4664
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4665
  msgstr ""
4666
 
4667
+ #: src/admin.php:3162
4668
  msgid "Your wp-content directory server path: %s"
4669
  msgstr ""
4670
 
4680
  msgid "Processing files - please wait..."
4681
  msgstr ""
4682
 
4683
+ #: src/admin.php:3956,
4684
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4685
  msgid "Please consult this FAQ for help on what to do about it."
4686
  msgstr ""
4687
 
4688
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4689
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4690
  msgstr ""
4691
 
4692
+ #: src/class-updraftplus.php:4682
4693
  msgid "Failed to open database file."
4694
  msgstr ""
4695
 
4696
+ #: src/admin.php:4382
4697
  msgid "Known backups (raw)"
4698
  msgstr ""
4699
 
4705
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4706
  msgstr ""
4707
 
4708
+ #: src/addons/migrator.php:341
4709
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4710
  msgstr ""
4711
 
4712
+ #: src/admin.php:3830
4713
  msgid "file is size:"
4714
  msgstr ""
4715
 
4716
+ #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4717
+ #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:945,
4718
+ #: src/admin.php:2293, src/backup.php:3043, src/updraftplus.php:156
4719
  msgid "Go here for more information."
4720
  msgstr ""
4721
 
4723
  msgid "Some files are still downloading or being processed - please wait."
4724
  msgstr ""
4725
 
4726
+ #: src/class-updraftplus.php:4746, src/class-updraftplus.php:4764
4727
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4728
  msgstr ""
4729
 
4769
 
4770
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4771
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4772
+ #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:420,
4773
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4774
  #: src/methods/stream-base.php:285
4775
  msgid "%s Error"
4793
  msgid "%s authentication failed"
4794
  msgstr ""
4795
 
4796
+ #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4797
+ #: src/admin.php:1994, src/admin.php:2041, src/admin.php:2049,
4798
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4799
+ #: src/class-updraftplus.php:4653, src/class-updraftplus.php:4655,
4800
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4804,
4801
+ #: src/class-updraftplus.php:4839, src/methods/googledrive.php:369,
4802
+ #: src/methods/s3.php:321
4803
  msgid "Error: %s"
4804
  msgstr ""
4805
 
4806
+ #: src/admin.php:3099
4807
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4808
  msgstr ""
4809
 
4810
+ #: src/admin.php:3097
4811
  msgid "Backup directory specified does <b>not</b> exist."
4812
  msgstr ""
4813
 
4814
+ #: src/admin.php:2810, src/admin.php:3053
4815
  msgid "Warning: %s"
4816
  msgstr ""
4817
 
4839
  msgid "Warnings encountered:"
4840
  msgstr ""
4841
 
4842
+ #: src/class-updraftplus.php:3194
4843
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4844
  msgstr ""
4845
 
4847
  msgid "Your free disk space is very low - only %s Mb remain"
4848
  msgstr ""
4849
 
4850
+ #: src/addons/migrator.php:478
4851
  msgid "New site:"
4852
  msgstr ""
4853
 
4854
+ #: src/addons/migrator.php:453
4855
  msgid "Migrated site (from UpdraftPlus)"
4856
  msgstr ""
4857
 
4858
+ #: src/addons/migrator.php:400
4859
  msgid "Enter details for where this new site is to live within your multisite install:"
4860
  msgstr ""
4861
 
4862
+ #: src/addons/migrator.php:399
4863
  msgid "Information needed to continue:"
4864
  msgstr ""
4865
 
4866
+ #: src/addons/migrator.php:356
4867
  msgid "Network activating theme:"
4868
  msgstr ""
4869
 
4870
+ #: src/addons/migrator.php:346
4871
  msgid "Processed plugin:"
4872
  msgstr ""
4873
 
4879
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4880
  msgstr ""
4881
 
4882
+ #: src/methods/s3.php:827
4883
  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."
4884
  msgstr ""
4885
 
4886
+ #: src/methods/s3.php:1082
4887
  msgid "Please check your access credentials."
4888
  msgstr ""
4889
 
4890
+ #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1060
4891
  msgid "The error reported by %s was:"
4892
  msgstr ""
4893
 
4895
  msgid "Please supply the requested information, and then continue."
4896
  msgstr ""
4897
 
4898
+ #: src/class-updraftplus.php:4815, src/restorer.php:1706
4899
  msgid "Site information:"
4900
  msgstr ""
4901
 
4903
  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."
4904
  msgstr ""
4905
 
4906
+ #: src/addons/migrator.php:341, src/admin.php:2288,
4907
+ #: src/class-updraftplus.php:4808, src/restorer.php:2033
4908
  msgid "Warning:"
4909
  msgstr ""
4910
 
4911
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4800,
4912
  #: src/restorer.php:154
4913
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4914
  msgstr ""
4915
 
4916
+ #: src/admin.php:3798
4917
  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."
4918
  msgstr ""
4919
 
4920
+ #: src/admin.php:3228, src/methods/updraftvault.php:286
4921
  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."
4922
  msgstr ""
4923
 
4972
  msgid "Also delete from remote storage"
4973
  msgstr ""
4974
 
4975
+ #: src/admin.php:2540
4976
  msgid "Latest UpdraftPlus.com news:"
4977
  msgstr ""
4978
 
4989
  msgid "News"
4990
  msgstr ""
4991
 
4992
+ #: src/admin.php:1469, src/includes/class-wpadmin-commands.php:465
4993
  msgid "Backup set not found"
4994
  msgstr ""
4995
 
5015
  msgid "Testing %s Settings..."
5016
  msgstr ""
5017
 
5018
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
5019
  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."
5020
  msgstr ""
5021
 
5043
  msgid "Store at"
5044
  msgstr ""
5045
 
5046
+ #: src/addons/migrator.php:1388
5047
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5048
  msgstr ""
5049
 
5050
+ #: src/addons/migrator.php:1266
5051
  msgid "rows: %d"
5052
  msgstr ""
5053
 
5054
+ #: src/addons/migrator.php:1142
5055
  msgid "Time taken (seconds):"
5056
  msgstr ""
5057
 
5058
+ #: src/addons/migrator.php:1141, src/admin.php:659
5059
  msgid "Errors:"
5060
  msgstr ""
5061
 
5062
+ #: src/addons/migrator.php:1140
5063
  msgid "SQL update commands run:"
5064
  msgstr ""
5065
 
5066
+ #: src/addons/migrator.php:1139
5067
  msgid "Changes made:"
5068
  msgstr ""
5069
 
5070
+ #: src/addons/migrator.php:1138
5071
  msgid "Rows examined:"
5072
  msgstr ""
5073
 
5074
+ #: src/addons/migrator.php:1137
5075
  msgid "Tables examined:"
5076
  msgstr ""
5077
 
5078
+ #: src/addons/migrator.php:1026
5079
  msgid "Could not get list of tables"
5080
  msgstr ""
5081
 
5082
+ #: src/addons/migrator.php:971
5083
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5084
  msgstr ""
5085
 
5086
+ #: src/addons/migrator.php:960
5087
  msgid "Nothing to do: the site URL is already: %s"
5088
  msgstr ""
5089
 
5090
+ #: src/addons/migrator.php:924, src/addons/migrator.php:928,
5091
+ #: src/addons/migrator.php:932, src/addons/migrator.php:937,
5092
+ #: src/addons/migrator.php:941, src/addons/migrator.php:946
5093
  msgid "Error: unexpected empty parameter (%s, %s)"
5094
  msgstr ""
5095
 
5096
+ #: src/addons/migrator.php:884
5097
  msgid "Database: search and replace site URL"
5098
  msgstr ""
5099
 
5100
+ #: src/addons/migrator.php:795, src/addons/migrator.php:1123
5101
  msgid "Failed: we did not understand the result returned by the %s operation."
5102
  msgstr ""
5103
 
5104
+ #: src/addons/migrator.php:793, src/addons/migrator.php:1121
5105
  msgid "Failed: the %s operation was not able to start."
5106
  msgstr ""
5107
 
5108
+ #: src/addons/migrator.php:558
5109
  msgid "(learn more)"
5110
  msgstr ""
5111
 
5112
+ #: src/addons/migrator.php:558
5113
  msgid "Search and replace site location in the database (migrate)"
5114
  msgstr ""
5115
 
5116
+ #: src/addons/migrator.php:558
5117
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5118
  msgstr ""
5119
 
5121
  msgid "Blog uploads"
5122
  msgstr ""
5123
 
5124
+ #: src/addons/migrator.php:385, src/addons/multisite.php:649
5125
  msgid "Must-use plugins"
5126
  msgstr ""
5127
 
5160
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5161
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5162
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5163
+ #: src/udaddons/options.php:135
5164
  msgid "Password"
5165
  msgstr ""
5166
 
5226
  msgstr ""
5227
 
5228
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5229
+ #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2864,
5230
+ #: src/admin.php:2899, src/admin.php:2908, src/methods/addon-base-v2.php:289,
5231
  #: src/methods/stream-base.php:301
5232
  msgid "Failed"
5233
  msgstr ""
5252
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5253
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5254
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5255
+ #: src/methods/googledrive.php:172, src/methods/googledrive.php:174,
5256
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5257
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5258
  #: src/methods/stream-base.php:246
5320
  msgid "You do not appear to be authenticated with Dropbox"
5321
  msgstr ""
5322
 
5323
+ #: src/methods/s3.php:1077
5324
  msgid "The communication with %s was not encrypted."
5325
  msgstr ""
5326
 
5327
+ #: src/methods/s3.php:1075
5328
  msgid "The communication with %s was encrypted."
5329
  msgstr ""
5330
 
5331
+ #: src/addons/googlecloud.php:756, src/methods/s3.php:1072
5332
  msgid "We accessed the bucket, and were able to create files within it."
5333
  msgstr ""
5334
 
5335
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5336
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5337
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5338
  msgstr ""
5339
 
5340
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5341
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5342
  msgid "Failure"
5343
  msgstr ""
5344
 
5345
+ #: src/methods/s3.php:1058
5346
  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)."
5347
  msgstr ""
5348
 
5349
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5350
+ #: src/methods/s3.php:1052
5351
  msgid "Region"
5352
  msgstr ""
5353
 
5354
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5355
+ #: src/methods/s3.php:1034
5356
  msgid "Failure: No bucket details were given."
5357
  msgstr ""
5358
 
5359
+ #: src/methods/s3.php:1012
5360
  msgid "API secret"
5361
  msgstr ""
5362
 
5363
+ #: src/methods/s3.php:888
5364
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5365
  msgstr ""
5366
 
5367
+ #: src/methods/s3.php:887
5368
  msgid "%s location"
5369
  msgstr ""
5370
 
5371
+ #: src/methods/s3.php:883
5372
  msgid "%s secret key"
5373
  msgstr ""
5374
 
5375
+ #: src/methods/s3.php:879
5376
  msgid "%s access key"
5377
  msgstr ""
5378
 
5379
+ #: src/methods/s3.php:844
5380
  msgid "If you see errors about SSL certificates, then please go here for help."
5381
  msgstr ""
5382
 
5383
+ #: src/methods/s3.php:842
5384
  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."
5385
  msgstr ""
5386
 
5387
+ #: src/methods/s3.php:462, src/methods/s3.php:574, src/methods/s3.php:646,
5388
+ #: src/methods/s3.php:749
5389
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5390
  msgstr ""
5391
 
5392
+ #: src/methods/s3.php:732, src/methods/s3.php:742, src/methods/s3.php:778
5393
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5394
  msgstr ""
5395
 
5396
+ #: src/methods/s3.php:440
5397
  msgid "%s re-assembly error (%s): (see log file for more)"
5398
  msgstr ""
5399
 
5400
+ #: src/methods/s3.php:436
5401
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5402
  msgstr ""
5403
 
5404
+ #: src/methods/s3.php:420
5405
  msgid "%s chunk %s: upload failed"
5406
  msgstr ""
5407
 
5408
+ #: src/methods/s3.php:410
5409
  msgid "%s error: file %s was shortened unexpectedly"
5410
  msgstr ""
5411
 
5412
+ #: src/methods/s3.php:388
5413
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5414
  msgstr ""
5415
 
5440
  msgstr ""
5441
 
5442
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5443
+ #: src/methods/s3.php:1008
5444
  msgid "API key"
5445
  msgstr ""
5446
 
5447
+ #: src/addons/migrator.php:294, src/addons/migrator.php:1880,
5448
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5449
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5450
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5454
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5455
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5456
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5457
+ #: src/methods/s3.php:1008, src/methods/s3.php:1012
5458
  msgid "Failure: No %s was given."
5459
  msgstr ""
5460
 
5461
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5462
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5463
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5464
  msgstr ""
5465
 
5498
  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."
5499
  msgstr ""
5500
 
5501
+ #: src/admin.php:735, src/methods/backup-module.php:247
5502
  msgid "Test %s Settings"
5503
  msgstr ""
5504
 
5514
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5515
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5516
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5517
+ #: src/methods/s3.php:356, src/methods/s3.php:368, src/methods/s3.php:369
5518
  msgid "%s Error: Failed to upload"
5519
  msgstr ""
5520
 
5521
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5522
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5523
+ #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5524
  msgid "%s Error: Failed to open local file"
5525
  msgstr ""
5526
 
5536
  msgid "Cloud Files authentication failed"
5537
  msgstr ""
5538
 
5539
+ #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1166
5540
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5541
  msgstr ""
5542
 
5543
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5544
+ #: src/methods/googledrive.php:1114
5545
  msgid "Client Secret"
5546
  msgstr ""
5547
 
5548
+ #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1111
5549
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5550
  msgstr ""
5551
 
5552
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5553
+ #: src/methods/googledrive.php:1110
5554
  msgid "Client ID"
5555
  msgstr ""
5556
 
5557
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5558
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5559
  msgstr ""
5560
 
5561
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5562
  msgid "Select 'Web Application' as the application type."
5563
  msgstr ""
5564
 
5565
+ #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1093
5566
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5567
  msgstr ""
5568
 
5569
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5570
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5571
+ #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:531,
5572
+ #: src/methods/s3.php:802, src/methods/stream-base.php:218
5573
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5574
  msgstr ""
5575
 
5576
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5577
+ #: src/addons/googlecloud.php:783, src/methods/googledrive.php:531,
5578
+ #: src/methods/googledrive.php:532, src/methods/googledrive.php:542,
5579
+ #: src/methods/googledrive.php:543
5580
  msgid "Account is not authorized."
5581
  msgstr ""
5582
 
5583
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:501,
5584
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
5585
  #: src/methods/stream-base.php:200
5586
  msgid "Failed to upload to %s"
5587
  msgstr ""
5588
 
5589
+ #: src/methods/googledrive.php:484
5590
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5591
  msgstr ""
5592
 
5593
+ #: src/methods/googledrive.php:575, src/methods/googledrive.php:611
5594
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5595
  msgstr ""
5596
 
5597
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5598
+ #: src/methods/googledrive.php:428
5599
  msgid "you have authenticated your %s account."
5600
  msgstr ""
5601
 
5602
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5603
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5604
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5605
+ #: src/methods/googledrive.php:428, src/methods/openstack-base.php:495,
5606
+ #: src/methods/s3.php:1072, src/methods/stream-base.php:312
5607
  msgid "Success"
5608
  msgstr ""
5609
 
5610
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5611
+ #: src/methods/dropbox.php:693, src/methods/googledrive.php:402
5612
  msgid "Your %s quota usage: %s %% used, %s available"
5613
  msgstr ""
5614
 
5615
+ #: src/addons/googlecloud.php:438, src/methods/googledrive.php:375
5616
  msgid "Authorization failed"
5617
  msgstr ""
5618
 
5619
+ #: src/addons/googlecloud.php:430, src/methods/googledrive.php:367
5620
  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."
5621
  msgstr ""
5622
 
5642
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5643
  msgstr ""
5644
 
5645
+ #: src/addons/migrator.php:1775, src/admin.php:1233, src/admin.php:2867,
5646
+ #: src/admin.php:2901, src/admin.php:2905, src/admin.php:3828,
5647
  #: src/restorer.php:2273, src/restorer.php:2378
5648
  msgid "OK"
5649
  msgstr ""
5652
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5653
  msgstr ""
5654
 
5655
+ #: src/addons/migrator.php:1154, src/restorer.php:2170
5656
  msgid "the database query being run was:"
5657
  msgstr ""
5658
 
5660
  msgid "will restore as:"
5661
  msgstr ""
5662
 
5663
+ #: src/class-updraftplus.php:4786, src/restorer.php:1688,
5664
  #: src/restorer.php:1777, src/restorer.php:1803
5665
  msgid "Old table prefix:"
5666
  msgstr ""
5667
 
5668
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5669
+ #: src/backup.php:960, src/class-updraftplus.php:4725
5670
  msgid "Backup of:"
5671
  msgstr ""
5672
 
5738
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5739
  msgstr ""
5740
 
5741
+ #: src/admin.php:3836, src/admin.php:3837
5742
  msgid "Could not find one of the files for restoration"
5743
  msgstr ""
5744
 
5745
+ #: src/admin.php:3946
5746
  msgid "Error message"
5747
  msgstr ""
5748
 
5749
+ #: src/admin.php:3833
5750
  msgid "The backup records do not contain information about the proper size of this file."
5751
  msgstr ""
5752
 
5753
+ #: src/admin.php:3825
5754
  msgid "Archive is expected to be size:"
5755
  msgstr ""
5756
 
5757
+ #: src/admin.php:3722
5758
  msgid "If making a request for support, please include this information:"
5759
  msgstr ""
5760
 
5761
+ #: src/admin.php:3721
5762
  msgid "ABORT: Could not find the information on which entities to restore."
5763
  msgstr ""
5764
 
5765
+ #: src/admin.php:3676
5766
  msgid "UpdraftPlus Restoration: Progress"
5767
  msgstr ""
5768
 
5769
+ #: src/admin.php:3628
5770
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5771
  msgstr ""
5772
 
5773
+ #: src/admin.php:3570
5774
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5775
  msgstr ""
5776
 
5777
+ #: src/admin.php:3579
5778
  msgid "Delete this backup set"
5779
  msgstr ""
5780
 
5781
+ #: src/admin.php:3240
5782
  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."
5783
  msgstr ""
5784
 
5785
+ #: src/admin.php:3237
5786
  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."
5787
  msgstr ""
5788
 
5789
+ #: src/admin.php:3235
5790
  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)."
5791
  msgstr ""
5792
 
5793
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5794
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5795
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5796
  msgstr ""
5797
 
5827
  msgid "Use the server's SSL certificates"
5828
  msgstr ""
5829
 
5830
+ #: src/admin.php:3101
5831
  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."
5832
  msgstr ""
5833
 
5834
+ #: src/admin.php:3101
5835
  msgid "click here"
5836
  msgstr ""
5837
 
5838
+ #: src/admin.php:3101
5839
  msgid "or, to reset this option"
5840
  msgstr ""
5841
 
5842
+ #: src/admin.php:3101
5843
  msgid "Follow this link to attempt to create the directory and set the permissions"
5844
  msgstr ""
5845
 
5846
+ #: src/admin.php:3093
5847
  msgid "Backup directory specified is writable, which is good."
5848
  msgstr ""
5849
 
5883
  msgid "Cancel"
5884
  msgstr ""
5885
 
5886
+ #: src/addons/reporting.php:233, src/admin.php:3384
5887
  msgid "None"
5888
  msgstr ""
5889
 
5900
  msgstr ""
5901
 
5902
  #: src/templates/wp-admin/settings/form-contents.php:285,
5903
+ #: src/udaddons/options.php:133
5904
  msgid "Email"
5905
  msgstr ""
5906
 
5908
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5909
  msgstr ""
5910
 
5911
+ #: src/addons/morefiles.php:443, src/admin.php:3171
5912
  msgid "Exclude these:"
5913
  msgstr ""
5914
 
5915
+ #: src/admin.php:3162
5916
  msgid "Any other directories found inside wp-content"
5917
  msgstr ""
5918
 
5928
  msgid "To fix the time at which a backup should take place,"
5929
  msgstr ""
5930
 
5931
+ #: src/admin.php:3087
5932
  msgid "Monthly"
5933
  msgstr ""
5934
 
5935
+ #: src/admin.php:3086
5936
  msgid "Fortnightly"
5937
  msgstr ""
5938
 
5939
+ #: src/admin.php:3085
5940
  msgid "Weekly"
5941
  msgstr ""
5942
 
5943
+ #: src/admin.php:3084
5944
  msgid "Daily"
5945
  msgstr ""
5946
 
5947
+ #: src/admin.php:694, src/admin.php:3067
5948
  msgid "Download log file"
5949
  msgstr ""
5950
 
5951
+ #: src/admin.php:2964
5952
  msgid "The folder exists, but your webserver does not have permission to write to it."
5953
  msgstr ""
5954
 
5955
+ #: src/admin.php:2959
5956
  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"
5957
  msgstr ""
5958
 
5959
+ #: src/admin.php:2945
5960
  msgid "The request to the filesystem to create the directory failed."
5961
  msgstr ""
5962
 
5963
+ #: src/addons/migrator.php:2253, src/admin.php:688, src/admin.php:2861,
5964
+ #: src/admin.php:2894, src/admin.php:3579,
5965
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5966
  msgid "Delete"
5967
  msgstr ""
5968
 
5969
+ #: src/admin.php:2645
5970
  msgid "(None)"
5971
  msgstr ""
5972
 
5973
+ #: src/admin.php:2801
5974
  msgid "show log"
5975
  msgstr ""
5976
 
6075
  msgid "Multisite"
6076
  msgstr ""
6077
 
6078
+ #: src/admin.php:2464
6079
  msgid "Go here for help."
6080
  msgstr ""
6081
 
6132
  msgid "Download error: the server sent us a response which we did not understand."
6133
  msgstr ""
6134
 
6135
+ #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:780,
6136
+ #: src/addons/migrator.php:1026, src/addons/migrator.php:1107,
6137
+ #: src/addons/migrator.php:1154, src/addons/migrator.php:1388,
6138
+ #: src/addons/migrator.php:1714, src/addons/migrator.php:1741,
6139
+ #: src/addons/migrator.php:1747, src/addons/migrator.php:1809,
6140
+ #: src/addons/migrator.php:1849, src/addons/migrator.php:1888,
6141
+ #: src/addons/migrator.php:1898, src/addons/migrator.php:1903,
6142
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6143
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6144
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6145
+ #: src/admin.php:3830, src/admin.php:3860, src/methods/remotesend.php:71,
6146
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6147
  #: src/restorer.php:1408
6148
  msgid "Error:"
6149
  msgstr ""
6150
 
6151
  #: src/admin.php:653,
6152
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6153
  msgid "calculating..."
6154
  msgstr ""
6155
 
6156
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:56
6157
  msgid "UpdraftPlus - Upload backup files"
6158
  msgstr ""
6159
 
6160
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6161
  msgid "refresh"
6162
  msgstr ""
6163
 
6164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6165
  msgid "Web-server disk space in use by UpdraftPlus"
6166
  msgstr ""
6167
 
6168
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6169
  msgid "This is a count of the contents of your Updraft directory"
6170
  msgstr ""
6171
 
6172
+ #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:172,
6173
+ #: src/methods/googledrive.php:174, src/methods/googledrive.php:428,
6174
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:484,
6175
+ #: src/methods/googledrive.php:491, src/methods/googledrive.php:501,
6176
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
6177
+ #: src/methods/googledrive.php:1075, src/methods/googledrive.php:1087,
6178
+ #: src/methods/googledrive.php:1087, src/methods/googledrive.php:1110,
6179
+ #: src/methods/googledrive.php:1114, src/methods/googledrive.php:1126,
6180
+ #: src/methods/googledrive.php:1136, src/methods/googledrive.php:1149
6181
  msgid "Google Drive"
6182
  msgstr ""
6183
 
6184
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6185
  msgid "If you are using this, then turn Turbo/Road mode off."
6186
  msgstr ""
6187
 
6188
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6189
  msgid "Opera web browser"
6190
  msgstr ""
6191
 
6192
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:35
6193
  msgid "More tasks:"
6194
  msgstr ""
6195
 
6196
+ #: src/admin.php:2564
6197
  msgid "Download most recently modified log file"
6198
  msgstr ""
6199
 
6200
+ #: src/admin.php:2523, src/admin.php:2529, src/central/bootstrap.php:169
6201
  msgid "(Nothing yet logged)"
6202
  msgstr ""
6203
 
6204
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6205
+ #: src/admin.php:2522, src/admin.php:2527
6206
  msgid "Last log message"
6207
  msgstr ""
6208
 
6209
+ #: src/addons/migrator.php:232, src/admin.php:693, src/admin.php:3570,
6210
  #: src/templates/wp-admin/settings/tab-status.php:30
6211
  msgid "Restore"
6212
  msgstr ""
6216
  msgid "Backup Now"
6217
  msgstr ""
6218
 
6219
+ #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6220
+ #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3359,
6221
+ #: src/admin.php:3439, src/admin.php:3914,
6222
  #: src/includes/class-wpadmin-commands.php:147,
6223
  #: src/includes/class-wpadmin-commands.php:480,
6224
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
6226
  msgid "Database"
6227
  msgstr ""
6228
 
6229
+ #: src/admin.php:295, src/admin.php:4388
6230
  msgid "Files"
6231
  msgstr ""
6232
 
6254
  msgid "JavaScript warning"
6255
  msgstr ""
6256
 
6257
+ #: src/admin.php:673, src/admin.php:2591
6258
  msgid "Delete Old Directories"
6259
  msgstr ""
6260
 
6261
+ #: src/admin.php:2336
6262
  msgid "Current limit is:"
6263
  msgstr ""
6264
 
6265
+ #: src/admin.php:2310
6266
  msgid "Your backup has been restored."
6267
  msgstr ""
6268
 
6274
  msgid "Lead developer's homepage"
6275
  msgstr ""
6276
 
6277
+ #: src/admin.php:4308
6278
  msgid "Your settings have been wiped."
6279
  msgstr ""
6280
 
6281
+ #: src/admin.php:2270
6282
  msgid "Backup directory successfully created."
6283
  msgstr ""
6284
 
6285
+ #: src/admin.php:2263
6286
  msgid "Backup directory could not be created"
6287
  msgstr ""
6288
 
6289
+ #: src/admin.php:2833
6290
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6291
  msgstr ""
6292
 
6293
+ #: src/admin.php:2831
6294
  msgid "Old directories successfully removed."
6295
  msgstr ""
6296
 
6297
+ #: src/admin.php:2828, src/admin.php:2828
6298
  msgid "Remove old directories"
6299
  msgstr ""
6300
 
6301
+ #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6302
+ #: src/admin.php:2212, src/admin.php:2221, src/admin.php:2230,
6303
+ #: src/admin.php:2272, src/admin.php:2835
6304
  msgid "Return to UpdraftPlus Configuration"
6305
  msgstr ""
6306
 
6307
+ #: src/admin.php:666, src/admin.php:2212, src/admin.php:2221,
6308
+ #: src/admin.php:2230, src/admin.php:2272, src/admin.php:2835,
6309
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6310
  msgid "Actions"
6311
  msgstr ""
6312
 
6313
+ #: src/admin.php:2131
6314
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6315
  msgstr ""
6316
 
6317
+ #: src/admin.php:2041
6318
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6319
  msgstr ""
6320
 
6321
+ #: src/admin.php:1922
6322
  msgid "No local copy present."
6323
  msgstr ""
6324
 
6325
+ #: src/admin.php:1919
6326
  msgid "Download in progress"
6327
  msgstr ""
6328
 
6329
+ #: src/admin.php:665, src/admin.php:1908
6330
  msgid "File ready."
6331
  msgstr ""
6332
 
6333
+ #: src/admin.php:1889
6334
  msgid "Download failed"
6335
  msgstr ""
6336
 
6337
+ #: src/admin.php:663, src/admin.php:1241, src/admin.php:1668,
6338
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6339
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6340
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6343
  msgid "Error"
6344
  msgstr ""
6345
 
6346
+ #: src/admin.php:1696
6347
  msgid "Could not find that job - perhaps it has already finished?"
6348
  msgstr ""
6349
 
6350
+ #: src/admin.php:1688
6351
  msgid "Job deleted"
6352
  msgstr ""
6353
 
6354
+ #: src/admin.php:1772
6355
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6356
  msgstr ""
6357
 
6376
  msgstr ""
6377
 
6378
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6379
+ #: src/admin.php:957, src/admin.php:966, src/admin.php:3228,
6380
+ #: src/admin.php:3235, src/admin.php:3237, src/methods/cloudfiles-new.php:107,
6381
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6382
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:827,
6383
+ #: src/methods/s3.php:831, src/methods/updraftvault.php:286,
6384
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6385
  #: src/udaddons/updraftplus-addons.php:242
6386
  msgid "Warning"
6387
  msgstr ""
6411
  msgid "Like UpdraftPlus and can spare one minute?"
6412
  msgstr ""
6413
 
6414
+ #: src/addons/azure.php:217, src/class-updraftplus.php:4449,
6415
+ #: src/methods/googledrive.php:1006, src/methods/s3.php:321
6416
  msgid "File not found"
6417
  msgstr ""
6418
 
6419
+ #: src/class-updraftplus.php:4356
6420
  msgid "The decryption key used:"
6421
  msgstr ""
6422
 
6423
+ #: src/class-updraftplus.php:4356, src/class-updraftplus.php:4665,
6424
  #: src/restorer.php:389
6425
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6426
  msgstr ""
6427
 
6428
+ #: src/class-updraftplus.php:4337, src/class-updraftplus.php:4653,
6429
  #: src/restorer.php:376
6430
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6431
  msgstr ""
6434
  msgid "Could not open the backup file for writing"
6435
  msgstr ""
6436
 
6437
+ #: src/class-updraftplus.php:3731
6438
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6439
  msgstr ""
6440
 
6441
+ #: src/class-updraftplus.php:3691
6442
  msgid "Could not read the directory"
6443
  msgstr ""
6444
 
6445
+ #: src/admin.php:1959, src/backup.php:1157
6446
  msgid "Backup directory (%s) is not writable, or does not exist."
6447
  msgstr ""
6448
 
6450
  msgid "WordPress backup is complete"
6451
  msgstr ""
6452
 
6453
+ #: src/class-updraftplus.php:3203
6454
  msgid "The backup attempt has finished, apparently unsuccessfully"
6455
  msgstr ""
6456
 
6457
+ #: src/class-updraftplus.php:3188
6458
  msgid "The backup apparently succeeded and is now complete"
6459
  msgstr ""
6460
 
6486
  msgid "No log files were found."
6487
  msgstr ""
6488
 
6489
+ #: src/admin.php:1841, src/admin.php:1845, src/class-updraftplus.php:516
6490
  msgid "The log file could not be read."
6491
  msgstr ""
6492
 
languages/updraftplus-ca.po CHANGED
@@ -11,20 +11,48 @@ msgstr ""
11
  "Language: ca\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/addons/sftp.php:346
15
- msgid "UpdraftPlus debug mode is on: detailed debugging data follows.n"
16
  msgstr ""
17
 
18
  #: src/admin.php:740
19
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
20
  msgstr ""
21
 
22
- #: src/admin.php:1234, src/admin.php:3881, src/class-updraftplus.php:2095,
23
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
24
  msgid "A PHP fatal error (%s) has occurred: %s"
25
  msgstr ""
26
 
27
- #: src/admin.php:1227, src/admin.php:3873, src/class-updraftplus.php:2088,
28
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
29
  msgid "A PHP exception (%s) has occurred: %s"
30
  msgstr ""
@@ -41,8 +69,8 @@ msgstr ""
41
  msgid "North-east Asia"
42
  msgstr ""
43
 
44
- #: src/udaddons/options.php:115
45
- msgid "Your web server's version of PHP is too old (.phpversion.) - 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"
46
  msgstr ""
47
 
48
  #: src/templates/wp-admin/settings/tab-status.php:80
@@ -69,18 +97,6 @@ msgstr ""
69
  msgid "Select Files"
70
  msgstr ""
71
 
72
- #: src/methods/updraftvault.php:346
73
- msgid "__Password"
74
- msgstr ""
75
-
76
- #: src/methods/updraftvault.php:345
77
- msgid "__E-mail"
78
- msgstr ""
79
-
80
- #: src/methods/openstack-base.php:420
81
- msgid "Error downloading remote file: Failed to download. (.$e->getMessage.)"
82
- msgstr ""
83
-
84
  #: src/methods/cloudfiles.php:497
85
  msgid "Rackspace Storage Region"
86
  msgstr ""
@@ -93,23 +109,15 @@ msgstr ""
93
  msgid "Instant and secure logon with a wave of your phone."
94
  msgstr ""
95
 
96
- #: src/class-updraftplus.php:946
97
- msgid "$pre_line"
98
- msgstr ""
99
-
100
  #: src/backup.php:1907
101
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
102
  msgstr ""
103
 
104
- #: src/admin.php:4362
105
  msgid "Value"
106
  msgstr ""
107
 
108
- #: src/admin.php:3543
109
- msgid "No backup log)"
110
- msgstr ""
111
-
112
- #: src/admin.php:1479
113
  msgid "Did not know how to delete from this cloud service."
114
  msgstr ""
115
 
@@ -125,7 +133,7 @@ msgstr ""
125
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
126
  msgstr ""
127
 
128
- #: src/templates/wp-admin/settings/existing-backups-table.php:69
129
  msgid "Stored at: %s"
130
  msgstr ""
131
 
@@ -133,11 +141,11 @@ msgstr ""
133
  msgid "Cloud Files"
134
  msgstr ""
135
 
136
- #: src/admin.php:4207
137
  msgid "Your settings failed to save. Please refresh the settings page and try again"
138
  msgstr ""
139
 
140
- #: src/admin.php:4166
141
  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."
142
  msgstr ""
143
 
@@ -154,7 +162,7 @@ msgstr ""
154
  msgid "Extra database"
155
  msgstr ""
156
 
157
- #: src/admin.php:3436
158
  msgid "Press here to download or browse"
159
  msgstr ""
160
 
@@ -198,15 +206,15 @@ msgstr ""
198
  msgid "Skipped tables:"
199
  msgstr ""
200
 
201
- #: src/class-updraftplus.php:4764
202
  msgid "This database backup has the following WordPress tables excluded: %s"
203
  msgstr ""
204
 
205
- #: src/admin.php:2422
206
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
207
  msgstr ""
208
 
209
- #: src/admin.php:2422
210
  msgid "All WordPress tables will be backed up."
211
  msgstr ""
212
 
@@ -706,7 +714,7 @@ msgstr ""
706
  msgid "Backup of: %s"
707
  msgstr ""
708
 
709
- #: src/methods/googledrive.php:243
710
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
711
  msgstr ""
712
 
@@ -734,11 +742,11 @@ msgstr ""
734
  msgid "You have selected a remote storage option which has an authorization step to complete:"
735
  msgstr ""
736
 
737
- #: src/admin.php:1531
738
  msgid "Remote files deleted:"
739
  msgstr ""
740
 
741
- #: src/admin.php:1530
742
  msgid "Local files deleted:"
743
  msgstr ""
744
 
@@ -807,7 +815,7 @@ msgstr ""
807
  msgid "An error response was received; HTTP code:"
808
  msgstr ""
809
 
810
- #: src/includes/class-commands.php:325
811
  msgid "%s add-on not found"
812
  msgstr ""
813
 
@@ -819,11 +827,11 @@ msgstr ""
819
  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"
820
  msgstr ""
821
 
822
- #: src/admin.php:2247
823
  msgid "To fix this problem go here."
824
  msgstr ""
825
 
826
- #: src/admin.php:2247
827
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
828
  msgstr ""
829
 
@@ -859,11 +867,11 @@ msgstr ""
859
  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."
860
  msgstr ""
861
 
862
- #: src/methods/s3.php:1052
863
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
864
  msgstr ""
865
 
866
- #: src/methods/s3.php:120
867
  msgid "No settings were found - please go to the Settings tab and check your settings"
868
  msgstr ""
869
 
@@ -911,49 +919,49 @@ msgstr ""
911
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
912
  msgstr ""
913
 
914
- #: src/addons/migrator.php:2210
915
  msgid "Create key"
916
  msgstr ""
917
 
918
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:513
919
  msgid "slower, strongest"
920
  msgstr ""
921
 
922
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
923
  msgid "recommended"
924
  msgstr ""
925
 
926
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
927
  msgid "%s bytes"
928
  msgstr ""
929
 
930
- #: src/addons/migrator.php:2205, src/central/bootstrap.php:511
931
  msgid "faster (possibility for slow PHP installs)"
932
  msgstr ""
933
 
934
- #: src/addons/migrator.php:2204, src/central/bootstrap.php:510
935
  msgid "easy to break, fastest"
936
  msgstr ""
937
 
938
- #: src/addons/migrator.php:2204, src/addons/migrator.php:2205,
939
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:510,
940
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
941
  msgid "%s bits"
942
  msgstr ""
943
 
944
- #: src/addons/migrator.php:2202, src/central/bootstrap.php:508
945
  msgid "Encryption key size:"
946
  msgstr ""
947
 
948
- #: src/addons/migrator.php:2200
949
  msgid "Enter your chosen name"
950
  msgstr ""
951
 
952
- #: src/addons/migrator.php:2199
953
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
954
  msgstr ""
955
 
956
- #: src/methods/googledrive.php:486
957
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
958
  msgstr ""
959
 
@@ -993,7 +1001,7 @@ msgstr ""
993
  msgid "Now"
994
  msgstr ""
995
 
996
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
997
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
998
  msgstr ""
999
 
@@ -1115,23 +1123,23 @@ msgstr ""
1115
  msgid "UpdraftCentral Connection"
1116
  msgstr ""
1117
 
1118
- #: src/backup.php:867, src/class-updraftplus.php:3094
1119
  msgid "The backup was aborted by the user"
1120
  msgstr ""
1121
 
1122
- #: src/admin.php:4202
1123
  msgid "Your settings have been saved."
1124
  msgstr ""
1125
 
1126
- #: src/admin.php:3330
1127
  msgid "Total backup size:"
1128
  msgstr ""
1129
 
1130
- #: src/admin.php:2744
1131
  msgid "stop"
1132
  msgstr ""
1133
 
1134
- #: src/admin.php:2582
1135
  msgid "The backup has finished running"
1136
  msgstr ""
1137
 
@@ -1153,7 +1161,7 @@ msgstr ""
1153
  msgid "this backup set"
1154
  msgstr ""
1155
 
1156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
1157
  msgid "calculate"
1158
  msgstr ""
1159
 
@@ -1197,19 +1205,19 @@ msgstr ""
1197
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1198
  msgstr ""
1199
 
1200
- #: src/class-updraftplus.php:4679, src/restorer.php:1700
1201
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1202
  msgstr ""
1203
 
1204
- #: src/class-updraftplus.php:4675
1205
  msgid "Please read this link for important information on this process."
1206
  msgstr ""
1207
 
1208
- #: src/class-updraftplus.php:4675
1209
  msgid "It will be imported as a new site."
1210
  msgstr ""
1211
 
1212
- #: src/admin.php:2395, src/templates/wp-admin/notices/horizontal-notice.php:16,
1213
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1214
  msgid "Dismiss"
1215
  msgstr ""
@@ -1234,40 +1242,40 @@ msgstr ""
1234
  msgid "Which site to restore"
1235
  msgstr ""
1236
 
1237
- #: src/addons/migrator.php:506, src/addons/migrator.php:507
1238
  msgid "Error when creating new site at your chosen address:"
1239
  msgstr ""
1240
 
1241
- #: src/addons/migrator.php:448
1242
  msgid "Required information for restoring this backup was not given (%s)"
1243
  msgstr ""
1244
 
1245
- #: src/addons/migrator.php:407
1246
  msgid "Attribute imported content to user"
1247
  msgstr ""
1248
 
1249
- #: src/addons/migrator.php:397, src/addons/migrator.php:399
1250
  msgid "You must use lower-case letters or numbers for the site path, only."
1251
  msgstr ""
1252
 
1253
- #: src/addons/migrator.php:385
1254
  msgid "This feature is not compatible with %s"
1255
  msgstr ""
1256
 
1257
- #: src/addons/migrator.php:383, src/addons/migrator.php:385
1258
  msgid "Importing a single site into a multisite install"
1259
  msgstr ""
1260
 
1261
- #: src/addons/migrator.php:374
1262
  msgid "other content from wp-content"
1263
  msgstr ""
1264
 
1265
- #: src/addons/migrator.php:371
1266
  msgid "WordPress core"
1267
  msgstr ""
1268
 
1269
- #: src/addons/migrator.php:371, src/addons/migrator.php:374,
1270
- #: src/addons/migrator.php:377
1271
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1272
  msgstr ""
1273
 
@@ -1275,11 +1283,11 @@ msgstr ""
1275
  msgid "Call WordPress action:"
1276
  msgstr ""
1277
 
1278
- #: src/admin.php:2430
1279
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1280
  msgstr ""
1281
 
1282
- #: src/admin.php:3748
1283
  msgid "Skipping: this archive was already restored."
1284
  msgstr ""
1285
 
@@ -1311,51 +1319,51 @@ msgstr ""
1311
  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)."
1312
  msgstr ""
1313
 
1314
- #: src/admin.php:4079
1315
  msgid "Send this backup to remote storage"
1316
  msgstr ""
1317
 
1318
- #: src/admin.php:4077
1319
  msgid "Check out UpdraftPlus Vault."
1320
  msgstr ""
1321
 
1322
- #: src/admin.php:4077
1323
  msgid "Not got any remote storage?"
1324
  msgstr ""
1325
 
1326
- #: src/admin.php:4077
1327
  msgid "settings"
1328
  msgstr ""
1329
 
1330
- #: src/admin.php:4077
1331
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1332
  msgstr ""
1333
 
1334
- #: src/admin.php:2428
1335
  msgid "Include any files in the backup"
1336
  msgstr ""
1337
 
1338
- #: src/admin.php:2414
1339
  msgid "Include the database in the backup"
1340
  msgstr ""
1341
 
1342
- #: src/admin.php:2394
1343
  msgid "Continue restoration"
1344
  msgstr ""
1345
 
1346
- #: src/admin.php:2389
1347
  msgid "You have an unfinished restoration operation, begun %s ago."
1348
  msgstr ""
1349
 
1350
- #: src/admin.php:2388
1351
  msgid "Unfinished restoration"
1352
  msgstr ""
1353
 
1354
- #: src/admin.php:2386
1355
  msgid "%s minutes, %s seconds"
1356
  msgstr ""
1357
 
1358
- #: src/admin.php:2333
1359
  msgid "Backup Contents And Schedule"
1360
  msgstr ""
1361
 
@@ -1363,7 +1371,7 @@ msgstr ""
1363
  msgid "Premium / Extensions"
1364
  msgstr ""
1365
 
1366
- #: src/admin.php:2113, src/admin.php:2122
1367
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1368
  msgstr ""
1369
 
@@ -1510,7 +1518,7 @@ msgstr ""
1510
  msgid "Could not access container"
1511
  msgstr ""
1512
 
1513
- #: src/class-updraftplus.php:3111
1514
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1515
  msgstr ""
1516
 
@@ -1635,11 +1643,11 @@ msgstr ""
1635
  msgid "Actions upon selected backups"
1636
  msgstr ""
1637
 
1638
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
1639
  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)."
1640
  msgstr ""
1641
 
1642
- #: src/admin.php:1529
1643
  msgid "Backup sets removed:"
1644
  msgstr ""
1645
 
@@ -1691,15 +1699,15 @@ msgstr ""
1691
  msgid "You do not currently have any UpdraftPlus Vault quota"
1692
  msgstr ""
1693
 
1694
- #: src/class-updraftplus.php:4714
1695
  msgid "You must upgrade MySQL to be able to use this database."
1696
  msgstr ""
1697
 
1698
- #: src/class-updraftplus.php:4714
1699
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1700
  msgstr ""
1701
 
1702
- #: src/admin.php:2232
1703
  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."
1704
  msgstr ""
1705
 
@@ -1868,7 +1876,7 @@ msgid "Updraft Vault"
1868
  msgstr ""
1869
 
1870
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1871
- #: src/methods/s3.php:1080
1872
  msgid "Delete failed:"
1873
  msgstr ""
1874
 
@@ -1892,71 +1900,71 @@ msgstr ""
1892
  msgid "Allow download"
1893
  msgstr ""
1894
 
1895
- #: src/addons/migrator.php:1754
1896
  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."
1897
  msgstr ""
1898
 
1899
- #: src/addons/migrator.php:1739, src/admin.php:709
1900
  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."
1901
  msgstr ""
1902
 
1903
- #: src/addons/migrator.php:2242
1904
  msgid "Existing keys"
1905
  msgstr ""
1906
 
1907
- #: src/addons/migrator.php:2233
1908
  msgid "No keys to allow remote sites to connect have yet been created."
1909
  msgstr ""
1910
 
1911
- #: src/addons/migrator.php:2215
1912
  msgid "Your new key:"
1913
  msgstr ""
1914
 
1915
- #: src/addons/migrator.php:2194
1916
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1917
  msgstr ""
1918
 
1919
- #: src/addons/migrator.php:2176
1920
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1921
  msgstr ""
1922
 
1923
- #: src/addons/migrator.php:2176
1924
  msgid "Keys for this site are created in the section below the one you just pressed in."
1925
  msgstr ""
1926
 
1927
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1928
  msgid "You must copy and paste this key now - it cannot be shown again."
1929
  msgstr ""
1930
 
1931
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1932
  msgid "Key created successfully."
1933
  msgstr ""
1934
 
1935
- #: src/addons/migrator.php:1841
1936
  msgid "A key with this name already exists; you must use a unique name."
1937
  msgstr ""
1938
 
1939
- #: src/addons/migrator.php:1785
1940
  msgid "Also send this backup to the active remote storage locations"
1941
  msgstr ""
1942
 
1943
- #: src/addons/migrator.php:1750
1944
  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."
1945
  msgstr ""
1946
 
1947
- #: src/addons/migrator.php:1706
1948
  msgid "site not found"
1949
  msgstr ""
1950
 
1951
- #: src/addons/migrator.php:1691
1952
  msgid "Backup data will be sent to:"
1953
  msgstr ""
1954
 
1955
- #: src/addons/migrator.php:195
1956
  msgid "Restore an existing backup set onto this site"
1957
  msgstr ""
1958
 
1959
- #: src/addons/migrator.php:188
1960
  msgid "This site has no backups to restore from yet."
1961
  msgstr ""
1962
 
@@ -1968,15 +1976,15 @@ msgstr ""
1968
  msgid "This storage method does not allow downloading"
1969
  msgstr ""
1970
 
1971
- #: src/admin.php:3501
1972
  msgid "(backup set imported from remote location)"
1973
  msgstr ""
1974
 
1975
- #: src/templates/wp-admin/settings/existing-backups-table.php:82
1976
  msgid "Site"
1977
  msgstr ""
1978
 
1979
- #: src/templates/wp-admin/settings/existing-backups-table.php:81
1980
  msgid "Backup sent to remote site - not available for download."
1981
  msgstr ""
1982
 
@@ -1988,7 +1996,7 @@ msgstr ""
1988
  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."
1989
  msgstr ""
1990
 
1991
- #: src/addons/migrator.php:1767, src/admin.php:716
1992
  msgid "Testing connection..."
1993
  msgstr ""
1994
 
@@ -2008,60 +2016,60 @@ msgstr ""
2008
  msgid "Creating..."
2009
  msgstr ""
2010
 
2011
- #: src/addons/migrator.php:2193
2012
  msgid "Or, receive a backup from a remote site"
2013
  msgstr ""
2014
 
2015
- #: src/addons/migrator.php:2182
2016
  msgid "Paste key here"
2017
  msgstr ""
2018
 
2019
- #: src/addons/migrator.php:2176
2020
  msgid "How do I get a site's key?"
2021
  msgstr ""
2022
 
2023
- #: src/addons/migrator.php:2176
2024
  msgid "To add a site as a destination for sending to, enter that site's key below."
2025
  msgstr ""
2026
 
2027
- #: src/addons/migrator.php:2173
2028
  msgid "Or, send a backup to another site"
2029
  msgstr ""
2030
 
2031
- #: src/addons/migrator.php:1938, src/admin.php:717
2032
  msgid "Send"
2033
  msgstr ""
2034
 
2035
- #: src/addons/migrator.php:1932, src/admin.php:708
2036
  msgid "Send to site:"
2037
  msgstr ""
2038
 
2039
- #: src/addons/migrator.php:1930
2040
  msgid "No receiving sites have yet been added."
2041
  msgstr ""
2042
 
2043
- #: src/addons/migrator.php:1911
2044
  msgid "It is for sending backups to the following site: "
2045
  msgstr ""
2046
 
2047
- #: src/addons/migrator.php:1911
2048
  msgid "The key was successfully added."
2049
  msgstr ""
2050
 
2051
- #: src/addons/migrator.php:1895
2052
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2053
  msgstr ""
2054
 
2055
- #: src/addons/migrator.php:1884, src/addons/migrator.php:1886,
2056
- #: src/addons/migrator.php:1890
2057
  msgid "The entered key was corrupt - please try again."
2058
  msgstr ""
2059
 
2060
- #: src/addons/migrator.php:1882
2061
  msgid "The entered key was the wrong length - please try again."
2062
  msgstr ""
2063
 
2064
- #: src/addons/migrator.php:1872
2065
  msgid "key"
2066
  msgstr ""
2067
 
@@ -2101,7 +2109,7 @@ msgstr ""
2101
  msgid "Resetting..."
2102
  msgstr ""
2103
 
2104
- #: src/addons/migrator.php:2182, src/admin.php:705
2105
  msgid "Add site"
2106
  msgstr ""
2107
 
@@ -2109,7 +2117,7 @@ msgstr ""
2109
  msgid "Adding..."
2110
  msgstr ""
2111
 
2112
- #: src/udaddons/options.php:333
2113
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2114
  msgstr ""
2115
 
@@ -2129,11 +2137,11 @@ msgstr ""
2129
  msgid "Go here to re-enter your password."
2130
  msgstr ""
2131
 
2132
- #: src/addons/migrator.php:224
2133
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2134
  msgstr ""
2135
 
2136
- #: src/addons/migrator.php:195
2137
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2138
  msgstr ""
2139
 
@@ -2153,7 +2161,7 @@ msgstr ""
2153
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2154
  msgstr ""
2155
 
2156
- #: src/addons/azure.php:541, src/addons/migrator.php:1754,
2157
  #: src/addons/onedrive.php:955
2158
  msgid "For longer help, including screenshots, follow this link."
2159
  msgstr ""
@@ -2332,7 +2340,7 @@ msgstr ""
2332
  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)"
2333
  msgstr ""
2334
 
2335
- #: src/methods/s3.php:868
2336
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2337
  msgstr ""
2338
 
@@ -2407,7 +2415,7 @@ msgstr ""
2407
  msgid "(at same time as files backup)"
2408
  msgstr ""
2409
 
2410
- #: src/admin.php:3012
2411
  msgid "No backup has been completed"
2412
  msgstr ""
2413
 
@@ -2456,8 +2464,8 @@ msgstr ""
2456
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2457
  msgstr ""
2458
 
2459
- #: src/methods/s3.php:166, src/methods/s3.php:167, src/methods/s3.php:168,
2460
- #: src/methods/s3.php:176, src/methods/s3.php:177, src/methods/s3.php:178
2461
  msgid "%s Error: Failed to initialise"
2462
  msgstr ""
2463
 
@@ -2497,7 +2505,7 @@ msgstr ""
2497
  msgid "Check this box to have a basic report sent to"
2498
  msgstr ""
2499
 
2500
- #: src/admin.php:3021
2501
  msgctxt "i.e. Non-automatic"
2502
  msgid "Manual"
2503
  msgstr ""
@@ -2515,7 +2523,7 @@ msgstr ""
2515
  msgid "Any other file/directory on your server that you wish to back up"
2516
  msgstr ""
2517
 
2518
- #: src/admin.php:2249
2519
  msgid "For even more features and personal support, check out "
2520
  msgstr ""
2521
 
@@ -2605,11 +2613,11 @@ msgstr ""
2605
  msgid "(learn more about this significant option)"
2606
  msgstr ""
2607
 
2608
- #: src/udaddons/options.php:275
2609
  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."
2610
  msgstr ""
2611
 
2612
- #: src/admin.php:2582, src/admin.php:3523, src/admin.php:3524
2613
  msgid "View Log"
2614
  msgstr ""
2615
 
@@ -2626,7 +2634,7 @@ msgstr ""
2626
  msgid "and retain this many scheduled backups"
2627
  msgstr ""
2628
 
2629
- #: src/admin.php:2982
2630
  msgid "incremental backup; base backup: %s"
2631
  msgstr ""
2632
 
@@ -2634,20 +2642,20 @@ msgstr ""
2634
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2635
  msgstr ""
2636
 
2637
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
2638
  msgid "Upload files into UpdraftPlus."
2639
  msgstr ""
2640
 
2641
- #: src/admin.php:932, src/includes/class-commands.php:379,
2642
  #: src/templates/wp-admin/settings/tab-status.php:22
2643
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2644
  msgstr ""
2645
 
2646
- #: src/class-updraftplus.php:4664
2647
  msgid "Backup label:"
2648
  msgstr ""
2649
 
2650
- #: src/admin.php:1774
2651
  msgid "Error: unexpected file read fail"
2652
  msgstr ""
2653
 
@@ -2667,7 +2675,7 @@ msgstr ""
2667
  msgid "Your label for this backup (optional)"
2668
  msgstr ""
2669
 
2670
- #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1082
2671
  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."
2672
  msgstr ""
2673
 
@@ -2687,36 +2695,36 @@ msgstr ""
2687
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2688
  msgstr ""
2689
 
2690
- #: src/class-updraftplus.php:4683
2691
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2692
  msgstr ""
2693
 
2694
- #: src/class-updraftplus.php:4683
2695
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2696
  msgstr ""
2697
 
2698
- #: src/addons/migrator.php:1083
2699
  msgid "already done"
2700
  msgstr ""
2701
 
2702
- #: src/addons/migrator.php:1040
2703
  msgid "skipped (not in list)"
2704
  msgstr ""
2705
 
2706
- #: src/addons/migrator.php:1040, src/addons/migrator.php:1083,
2707
- #: src/addons/migrator.php:1215
2708
  msgid "Search and replacing table:"
2709
  msgstr ""
2710
 
2711
- #: src/addons/migrator.php:322
2712
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2713
  msgstr ""
2714
 
2715
- #: src/addons/migrator.php:322
2716
  msgid "These tables only"
2717
  msgstr ""
2718
 
2719
- #: src/addons/migrator.php:321
2720
  msgid "Rows per batch"
2721
  msgstr ""
2722
 
@@ -2728,19 +2736,19 @@ msgstr ""
2728
  msgid "You need to connect to receive future updates to UpdraftPlus."
2729
  msgstr ""
2730
 
2731
- #: src/class-updraftplus.php:4656
2732
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2733
  msgstr ""
2734
 
2735
- #: src/class-updraftplus.php:4656
2736
  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."
2737
  msgstr ""
2738
 
2739
- #: src/class-updraftplus.php:4656
2740
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2741
  msgstr ""
2742
 
2743
- #: src/class-updraftplus.php:4656
2744
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2745
  msgstr ""
2746
 
@@ -2769,27 +2777,27 @@ msgstr ""
2769
  msgid "UpdraftPlus is on social media - check us out!"
2770
  msgstr ""
2771
 
2772
- #: src/admin.php:3592
2773
  msgid "Why am I seeing this?"
2774
  msgstr "Per què estic veient això ?"
2775
 
2776
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2777
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2778
  msgstr "La ubicació d'aquest directori es troba en la configuració d'experts, a la pestanya Configuració."
2779
 
2780
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2781
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2782
  msgstr "Prem aquí per cercar nous conjunts de còpies de seguretat que s'han pujat al directori UpdraftPlus (dins l'espai del seu servidor web)."
2783
 
2784
- #: src/admin.php:1713, src/admin.php:1725
2785
  msgid "Start backup"
2786
  msgstr "Iniciar còpia de seguretat"
2787
 
2788
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
2789
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2790
  msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
2791
 
2792
- #: src/admin.php:2905
2793
  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."
2794
  msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
2795
 
@@ -2797,11 +2805,11 @@ msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'es
2797
  msgid "Unless you have a problem, you can completely ignore everything here."
2798
  msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
2799
 
2800
- #: src/admin.php:1935
2801
  msgid "This file could not be uploaded"
2802
  msgstr "No s'ha pogut carregar aquest fitxer"
2803
 
2804
- #: src/admin.php:1900
2805
  msgid "You will find more information about this in the Settings section."
2806
  msgstr "Més informació sobre això en la secció Configuració."
2807
 
@@ -2821,7 +2829,7 @@ msgstr "Explica'm més coses sobre les còpies de seguretat incrementals."
2821
  msgid "Memory limit"
2822
  msgstr "Límit de memòria"
2823
 
2824
- #: src/class-updraftplus.php:4786, src/restorer.php:1493
2825
  msgid "restoration"
2826
  msgstr "Restauració"
2827
 
@@ -2845,42 +2853,42 @@ msgstr "(veure registre ...)"
2845
  msgid "Backup succeeded"
2846
  msgstr "Còpia de seguretat executada correctament"
2847
 
2848
- #: src/admin.php:3022, src/admin.php:3023, src/admin.php:3024,
2849
  #: src/updraftplus.php:99, src/updraftplus.php:100
2850
  msgid "Every %s hours"
2851
  msgstr "Cada %s hores"
2852
 
2853
- #: src/addons/migrator.php:785, src/addons/migrator.php:787
2854
  msgid "search and replace"
2855
  msgstr "cercar i substituir"
2856
 
2857
- #: src/addons/migrator.php:324
2858
  msgid "Go"
2859
  msgstr "Endavant"
2860
 
2861
- #: src/addons/migrator.php:313
2862
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2863
  msgstr "Una cerca/substitució no es pot desfer - Estàs segur que vols fer això?"
2864
 
2865
- #: src/addons/migrator.php:312
2866
  msgid "This can easily destroy your site; so, use it with care!"
2867
  msgstr "Això pot destruir el teu lloc web fàcilment; utilitza-ho amb compte!"
2868
 
2869
- #: src/addons/migrator.php:282, src/addons/migrator.php:320
2870
  msgid "Replace with"
2871
  msgstr "Substituir per"
2872
 
2873
- #: src/addons/migrator.php:281, src/addons/migrator.php:319
2874
  msgid "Search for"
2875
  msgstr "Cercar"
2876
 
2877
- #: src/addons/migrator.php:280, src/addons/migrator.php:311,
2878
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2879
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2880
  msgid "Search / replace database"
2881
  msgstr "Cercar / substituir base de dades"
2882
 
2883
- #: src/addons/migrator.php:286
2884
  msgid "search term"
2885
  msgstr "terme de cerca"
2886
 
@@ -2896,11 +2904,11 @@ msgstr "Llegir més a %s"
2896
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2897
  msgstr ""
2898
 
2899
- #: src/methods/googledrive.php:1090
2900
  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."
2901
  msgstr ""
2902
 
2903
- #: src/admin.php:3350
2904
  msgid "You have not yet made any backups."
2905
  msgstr ""
2906
 
@@ -2920,13 +2928,13 @@ msgstr ""
2920
  msgid "Free disk space in account:"
2921
  msgstr ""
2922
 
2923
- #: src/admin.php:4173, src/templates/wp-admin/settings/tab-status.php:27
2924
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2925
  msgstr ""
2926
 
2927
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1578,
2928
- #: src/includes/deprecated-actions.php:30,
2929
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:22,
2930
  #: src/templates/wp-admin/settings/tab-bar.php:6
2931
  msgid "Existing Backups"
2932
  msgstr ""
@@ -3019,20 +3027,20 @@ msgstr ""
3019
  msgid "External database (%s)"
3020
  msgstr ""
3021
 
3022
- #: src/methods/googledrive.php:1090
3023
  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."
3024
  msgstr ""
3025
 
3026
- #: src/methods/googledrive.php:450
3027
  msgid "failed to access parent folder"
3028
  msgstr ""
3029
 
3030
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3031
- #: src/addons/onedrive.php:773, src/methods/googledrive.php:403
3032
  msgid "However, subsequent access attempts failed:"
3033
  msgstr ""
3034
 
3035
- #: src/admin.php:3375
3036
  msgid "External database"
3037
  msgstr ""
3038
 
@@ -3064,7 +3072,7 @@ msgstr ""
3064
  msgid "use UpdraftPlus Premium"
3065
  msgstr ""
3066
 
3067
- #: src/class-updraftplus.php:4546
3068
  msgid "Decryption failed. The database file is encrypted."
3069
  msgstr ""
3070
 
@@ -3085,7 +3093,7 @@ msgstr ""
3085
  msgid "database connection attempt failed."
3086
  msgstr ""
3087
 
3088
- #: src/addons/migrator.php:971
3089
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3090
  msgstr ""
3091
 
@@ -3168,7 +3176,7 @@ msgstr ""
3168
  msgid "Authenticate with %s"
3169
  msgstr ""
3170
 
3171
- #: src/methods/cloudfiles.php:422
3172
  msgid "Error downloading remote file: Failed to download"
3173
  msgstr ""
3174
 
@@ -3196,37 +3204,37 @@ msgid "%s error - failed to access the container"
3196
  msgstr ""
3197
 
3198
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3199
- #: src/methods/dropbox.php:546, src/methods/googledrive.php:1146
3200
  msgid "Account holder's name: %s."
3201
  msgstr ""
3202
 
3203
- #: src/methods/googledrive.php:1135
3204
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3205
  msgstr ""
3206
 
3207
- #: src/methods/googledrive.php:1126
3208
  msgid "It is an ID number internal to Google Drive"
3209
  msgstr ""
3210
 
3211
- #: src/methods/googledrive.php:1126
3212
  msgid "<strong>This is NOT a folder name</strong>."
3213
  msgstr ""
3214
 
3215
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3216
- #: src/methods/googledrive.php:1122, src/methods/googledrive.php:1132
3217
  msgid "Folder"
3218
  msgstr ""
3219
 
3220
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3221
- #: src/methods/googledrive.php:1041
3222
  msgid "%s download: failed: file not found"
3223
  msgstr ""
3224
 
3225
- #: src/addons/googlecloud.php:635, src/methods/googledrive.php:423
3226
  msgid "Name: %s."
3227
  msgstr ""
3228
 
3229
- #: src/methods/googledrive.php:181
3230
  msgid "Google Drive list files: failed to access parent folder"
3231
  msgstr ""
3232
 
@@ -3251,8 +3259,8 @@ msgstr ""
3251
  msgid "Fetch"
3252
  msgstr ""
3253
 
3254
- #: src/addons/migrator.php:383,
3255
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:62,
3256
  #: src/templates/wp-admin/settings/form-contents.php:212
3257
  msgid "This feature requires %s version %s or later"
3258
  msgstr ""
@@ -3265,7 +3273,7 @@ msgstr ""
3265
  msgid "Error - failed to download the file"
3266
  msgstr ""
3267
 
3268
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3269
  msgid "Rescan local folder for new backup sets"
3270
  msgstr ""
3271
 
@@ -3285,8 +3293,8 @@ msgstr ""
3285
  msgid "password/key"
3286
  msgstr ""
3287
 
3288
- #: src/addons/azure.php:549, src/addons/migrator.php:2200,
3289
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4362
3290
  msgid "Key"
3291
  msgstr ""
3292
 
@@ -3302,36 +3310,36 @@ msgstr ""
3302
  msgid "SCP/SFTP password/key"
3303
  msgstr ""
3304
 
3305
- #: src/admin.php:3410
3306
  msgid "Files backup (created by %s)"
3307
  msgstr ""
3308
 
3309
- #: src/admin.php:3410
3310
  msgid "Files and database WordPress backup (created by %s)"
3311
  msgstr ""
3312
 
3313
- #: src/addons/importer.php:276, src/admin.php:3404,
3314
- #: src/class-updraftplus.php:2893
3315
  msgid "Backup created by: %s."
3316
  msgstr ""
3317
 
3318
- #: src/admin.php:3373
3319
  msgid "Database (created by %s)"
3320
  msgstr ""
3321
 
3322
- #: src/admin.php:3367, src/admin.php:3406
3323
  msgid "unknown source"
3324
  msgstr ""
3325
 
3326
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
3327
  msgid "Rescan remote storage"
3328
  msgstr ""
3329
 
3330
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:40
3331
  msgid "Upload backup files"
3332
  msgstr ""
3333
 
3334
- #: src/admin.php:1979
3335
  msgid "This backup was created by %s, and can be imported."
3336
  msgstr ""
3337
 
@@ -3343,7 +3351,7 @@ msgstr ""
3343
  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."
3344
  msgstr ""
3345
 
3346
- #: src/admin.php:676, src/class-updraftplus.php:2900
3347
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3348
  msgstr ""
3349
 
@@ -3351,11 +3359,11 @@ msgstr ""
3351
  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."
3352
  msgstr ""
3353
 
3354
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2900
3355
  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))."
3356
  msgstr ""
3357
 
3358
- #: src/admin.php:3407, src/includes/class-wpadmin-commands.php:152,
3359
  #: src/restorer.php:1462
3360
  msgid "Backup created by unknown source (%s) - cannot be restored."
3361
  msgstr ""
@@ -3381,7 +3389,7 @@ msgstr ""
3381
  msgid "No settings were found"
3382
  msgstr ""
3383
 
3384
- #: src/class-updraftplus.php:3021
3385
  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."
3386
  msgstr ""
3387
 
@@ -3407,7 +3415,7 @@ msgstr ""
3407
  msgid "Remove"
3408
  msgstr ""
3409
 
3410
- #: src/methods/s3.php:840
3411
  msgid "Other %s FAQs."
3412
  msgstr ""
3413
 
@@ -3415,16 +3423,16 @@ msgstr ""
3415
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3416
  msgstr ""
3417
 
3418
- #: src/addons/morefiles.php:445, src/admin.php:3114
3419
  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."
3420
  msgstr ""
3421
 
3422
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309,
3423
  #: src/restorer.php:1493
3424
  msgid "Your hosting company must enable these functions before %s can work."
3425
  msgstr ""
3426
 
3427
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309
3428
  msgid "Your web server's PHP installation has these functions disabled: %s."
3429
  msgstr ""
3430
 
@@ -3444,7 +3452,7 @@ msgstr ""
3444
  msgid "Backup created by:"
3445
  msgstr ""
3446
 
3447
- #: src/udaddons/options.php:482
3448
  msgid "Available to claim on this site"
3449
  msgstr ""
3450
 
@@ -3494,15 +3502,15 @@ msgstr ""
3494
  msgid "Dismiss from main dashboard (for %s weeks)"
3495
  msgstr ""
3496
 
3497
- #: src/class-updraftplus.php:4836
3498
  msgid "The attempt to undo the double-compression succeeded."
3499
  msgstr ""
3500
 
3501
- #: src/class-updraftplus.php:4813, src/class-updraftplus.php:4834
3502
  msgid "The attempt to undo the double-compression failed."
3503
  msgstr ""
3504
 
3505
- #: src/class-updraftplus.php:4806
3506
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3507
  msgstr ""
3508
 
@@ -3535,7 +3543,7 @@ msgstr ""
3535
  msgid "Errors occurred:"
3536
  msgstr ""
3537
 
3538
- #: src/admin.php:3612
3539
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3540
  msgstr ""
3541
 
@@ -3563,7 +3571,7 @@ msgstr ""
3563
  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)"
3564
  msgstr ""
3565
 
3566
- #: src/addons/migrator.php:253
3567
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3568
  msgstr ""
3569
 
@@ -3572,7 +3580,7 @@ msgstr ""
3572
  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."
3573
  msgstr ""
3574
 
3575
- #: src/addons/moredatabase.php:137, src/admin.php:1363
3576
  msgid "Messages:"
3577
  msgstr ""
3578
 
@@ -3732,7 +3740,7 @@ msgstr ""
3732
  msgid "Authorisation failed (check your credentials)"
3733
  msgstr ""
3734
 
3735
- #: src/methods/updraftvault.php:568, src/udaddons/options.php:267
3736
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3737
  msgstr ""
3738
 
@@ -3748,15 +3756,15 @@ msgstr ""
3748
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3749
  msgstr ""
3750
 
3751
- #: src/admin.php:661, src/admin.php:3902
3752
  msgid "Error data:"
3753
  msgstr ""
3754
 
3755
- #: src/admin.php:3563
3756
  msgid "Backup does not exist in the backup history"
3757
  msgstr ""
3758
 
3759
- #: src/admin.php:2526
3760
  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."
3761
  msgstr ""
3762
 
@@ -3812,7 +3820,7 @@ msgstr ""
3812
  msgid "Debugging information"
3813
  msgstr ""
3814
 
3815
- #: src/addons/reporting.php:211, src/admin.php:3313
3816
  msgid "Uploaded to:"
3817
  msgstr ""
3818
 
@@ -3872,7 +3880,7 @@ msgstr ""
3872
  msgid "%s did not return the expected response - check your log file for more details"
3873
  msgstr ""
3874
 
3875
- #: src/methods/s3.php:287
3876
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3877
  msgstr ""
3878
 
@@ -3885,7 +3893,7 @@ msgid "Your site's admin email address (%s) will be used."
3885
  msgstr ""
3886
 
3887
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3888
- #: src/methods/updraftvault.php:347, src/udaddons/options.php:246
3889
  msgid "Connect"
3890
  msgstr ""
3891
 
@@ -3893,7 +3901,7 @@ msgstr ""
3893
  msgid "For more reporting features, use the Reporting add-on."
3894
  msgstr ""
3895
 
3896
- #: src/class-updraftplus.php:4616
3897
  msgid "(version: %s)"
3898
  msgstr ""
3899
 
@@ -3966,39 +3974,39 @@ msgstr ""
3966
  msgid "UpdraftPlus warning:"
3967
  msgstr ""
3968
 
3969
- #: src/udaddons/options.php:488
3970
  msgid "(or connect using the form on this page if you have already purchased it)"
3971
  msgstr ""
3972
 
3973
- #: src/udaddons/options.php:474
3974
  msgid "please follow this link to update the plugin in order to activate it"
3975
  msgstr ""
3976
 
3977
- #: src/udaddons/options.php:471
3978
  msgid "please follow this link to update the plugin in order to get it"
3979
  msgstr ""
3980
 
3981
- #: src/udaddons/options.php:461, src/udaddons/options.php:463
3982
  msgid "latest"
3983
  msgstr ""
3984
 
3985
- #: src/udaddons/options.php:459
3986
  msgid "Your version: %s"
3987
  msgstr ""
3988
 
3989
- #: src/udaddons/options.php:457, src/udaddons/options.php:457
3990
  msgid "You've got it"
3991
  msgstr ""
3992
 
3993
- #: src/udaddons/options.php:418
3994
  msgid "UpdraftPlus Support"
3995
  msgstr ""
3996
 
3997
- #: src/udaddons/options.php:376
3998
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3999
  msgstr ""
4000
 
4001
- #: src/udaddons/options.php:365, src/udaddons/updraftplus-addons.php:290
4002
  msgid "UpdraftPlus Addons"
4003
  msgstr ""
4004
 
@@ -4034,7 +4042,7 @@ msgstr ""
4034
  msgid "Reporting"
4035
  msgstr ""
4036
 
4037
- #: src/admin.php:4359
4038
  msgid "Options (raw)"
4039
  msgstr ""
4040
 
@@ -4062,91 +4070,91 @@ msgstr ""
4062
  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)"
4063
  msgstr ""
4064
 
4065
- #: src/udaddons/options.php:553
4066
  msgid "Manage Addons"
4067
  msgstr ""
4068
 
4069
- #: src/udaddons/options.php:489, src/udaddons/options.php:489
4070
  msgid "Buy It"
4071
  msgstr ""
4072
 
4073
- #: src/udaddons/options.php:488
4074
  msgid "Get it from the UpdraftPlus.Com Store"
4075
  msgstr ""
4076
 
4077
- #: src/udaddons/options.php:482, src/udaddons/options.php:484
4078
  msgid "activate it on this site"
4079
  msgstr ""
4080
 
4081
- #: src/udaddons/options.php:484
4082
  msgid "You have an inactive purchase"
4083
  msgstr ""
4084
 
4085
- #: src/udaddons/options.php:474
4086
  msgid "Assigned to this site"
4087
  msgstr ""
4088
 
4089
- #: src/udaddons/options.php:471
4090
  msgid "Available for this site (via your all-addons purchase)"
4091
  msgstr ""
4092
 
4093
- #: src/udaddons/options.php:465
4094
  msgid "(apparently a pre-release or withdrawn release)"
4095
  msgstr ""
4096
 
4097
- #: src/udaddons/options.php:420
4098
  msgid "Go here"
4099
  msgstr ""
4100
 
4101
- #: src/udaddons/options.php:420
4102
  msgid "Need to get support?"
4103
  msgstr ""
4104
 
4105
- #: src/udaddons/options.php:402
4106
  msgid "An error occurred when trying to retrieve your add-ons."
4107
  msgstr ""
4108
 
4109
- #: src/udaddons/options.php:335
4110
  msgid "An unknown response was received. Response was:"
4111
  msgstr ""
4112
 
4113
- #: src/udaddons/options.php:334
4114
  msgid "Claim not granted - your account login details were wrong"
4115
  msgstr ""
4116
 
4117
- #: src/udaddons/options.php:332
4118
  msgid "Please wait whilst we make the claim..."
4119
  msgstr ""
4120
 
4121
- #: src/udaddons/options.php:285
4122
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4123
  msgstr ""
4124
 
4125
- #: src/udaddons/options.php:278
4126
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4127
  msgstr ""
4128
 
4129
- #: src/udaddons/options.php:274
4130
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4131
  msgstr ""
4132
 
4133
- #: src/udaddons/options.php:273
4134
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr ""
4136
 
4137
- #: src/udaddons/options.php:244
4138
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4139
  msgstr ""
4140
 
4141
- #: src/udaddons/options.php:172
4142
  msgid "Forgotten your details?"
4143
  msgstr ""
4144
 
4145
- #: src/udaddons/options.php:161
4146
  msgid "Not yet got an account (it's free)? Go get one!"
4147
  msgstr ""
4148
 
4149
- #: src/udaddons/options.php:128
4150
  msgid "Connect with your UpdraftPlus.Com account"
4151
  msgstr ""
4152
 
@@ -4186,15 +4194,15 @@ msgstr ""
4186
  msgid "Your web-server does not have the %s module installed."
4187
  msgstr ""
4188
 
4189
- #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1142
4190
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4191
  msgstr ""
4192
 
4193
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:68
4194
  msgid "Drop backup files here"
4195
  msgstr ""
4196
 
4197
- #: src/admin.php:2405
4198
  msgid "Does nothing happen when you attempt backups?"
4199
  msgstr ""
4200
 
@@ -4235,11 +4243,11 @@ msgstr ""
4235
  msgid "You can send a backup to more than one destination with an add-on."
4236
  msgstr ""
4237
 
4238
- #: src/admin.php:2744
4239
  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."
4240
  msgstr ""
4241
 
4242
- #: src/admin.php:2642
4243
  msgid "(%s%%, file %s of %s)"
4244
  msgstr ""
4245
 
@@ -4280,11 +4288,11 @@ msgstr ""
4280
  msgid "%s settings test result:"
4281
  msgstr ""
4282
 
4283
- #: src/admin.php:3474, src/admin.php:3476
4284
  msgid "(Not finished)"
4285
  msgstr ""
4286
 
4287
- #: src/admin.php:3476
4288
  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."
4289
  msgstr ""
4290
 
@@ -4296,73 +4304,73 @@ msgstr ""
4296
  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)."
4297
  msgstr ""
4298
 
4299
- #: src/admin.php:2739
4300
  msgid "Job ID: %s"
4301
  msgstr ""
4302
 
4303
- #: src/admin.php:2724
4304
  msgid "last activity: %ss ago"
4305
  msgstr ""
4306
 
4307
- #: src/admin.php:2723
4308
  msgid "next resumption: %d (after %ss)"
4309
  msgstr ""
4310
 
4311
- #: src/admin.php:2706, src/central/bootstrap.php:411,
4312
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4313
  #: src/methods/updraftvault.php:467
4314
  msgid "Unknown"
4315
  msgstr ""
4316
 
4317
- #: src/admin.php:2656
4318
  msgid "Backup finished"
4319
  msgstr ""
4320
 
4321
- #: src/admin.php:2651
4322
  msgid "Waiting until scheduled time to retry because of errors"
4323
  msgstr ""
4324
 
4325
- #: src/admin.php:2647
4326
  msgid "Pruning old backup sets"
4327
  msgstr ""
4328
 
4329
- #: src/admin.php:2635
4330
  msgid "Uploading files to remote storage"
4331
  msgstr ""
4332
 
4333
- #: src/admin.php:2704
4334
  msgid "Encrypted database"
4335
  msgstr ""
4336
 
4337
- #: src/admin.php:2696
4338
  msgid "Encrypting database"
4339
  msgstr ""
4340
 
4341
- #: src/admin.php:2670
4342
  msgid "Created database backup"
4343
  msgstr ""
4344
 
4345
- #: src/admin.php:2683
4346
  msgid "table: %s"
4347
  msgstr ""
4348
 
4349
- #: src/admin.php:2681
4350
  msgid "Creating database backup"
4351
  msgstr ""
4352
 
4353
- #: src/admin.php:2629
4354
  msgid "Created file backup zips"
4355
  msgstr ""
4356
 
4357
- #: src/admin.php:2616
4358
  msgid "Creating file backup zips"
4359
  msgstr ""
4360
 
4361
- #: src/admin.php:2611
4362
  msgid "Backup begun"
4363
  msgstr ""
4364
 
4365
- #: src/admin.php:2454
4366
  msgid "Backups in progress:"
4367
  msgstr ""
4368
 
@@ -4382,7 +4390,7 @@ msgstr ""
4382
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4383
  msgstr ""
4384
 
4385
- #: src/class-updraftplus.php:3118
4386
  msgid "The backup has not finished; a resumption is scheduled"
4387
  msgstr ""
4388
 
@@ -4396,7 +4404,7 @@ msgstr ""
4396
  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)."
4397
  msgstr ""
4398
 
4399
- #: src/admin.php:2277
4400
  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)."
4401
  msgstr ""
4402
 
@@ -4475,23 +4483,23 @@ msgstr ""
4475
  msgid "Support"
4476
  msgstr ""
4477
 
4478
- #: src/class-updraftplus.php:4769
4479
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4480
  msgstr ""
4481
 
4482
- #: src/class-updraftplus.php:4761
4483
  msgid "This database backup is missing core WordPress tables: %s"
4484
  msgstr ""
4485
 
4486
- #: src/class-updraftplus.php:4649
4487
  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."
4488
  msgstr ""
4489
 
4490
- #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4655
4491
  msgid "%s version: %s"
4492
  msgstr ""
4493
 
4494
- #: src/class-updraftplus.php:4565
4495
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4496
  msgstr ""
4497
 
@@ -4500,7 +4508,7 @@ msgstr ""
4500
  msgid "Be safe with an automatic backup"
4501
  msgstr ""
4502
 
4503
- #: src/admin.php:2229
4504
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4505
  msgstr ""
4506
 
@@ -4548,11 +4556,11 @@ msgstr ""
4548
  msgid "Delete from your web server"
4549
  msgstr ""
4550
 
4551
- #: src/admin.php:3444
4552
  msgid "You appear to be missing one or more archives from this multi-archive set."
4553
  msgstr ""
4554
 
4555
- #: src/admin.php:3441
4556
  msgid "(%d archive(s) in set)."
4557
  msgstr ""
4558
 
@@ -4572,7 +4580,7 @@ msgstr ""
4572
  msgid "Error: the server sent an empty response."
4573
  msgstr ""
4574
 
4575
- #: src/admin.php:1990
4576
  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?"
4577
  msgstr ""
4578
 
@@ -4608,7 +4616,7 @@ msgstr ""
4608
  msgid "No such backup set exists"
4609
  msgstr ""
4610
 
4611
- #: src/admin.php:1239
4612
  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"
4613
  msgstr ""
4614
 
@@ -4624,27 +4632,27 @@ msgstr ""
4624
  msgid "WordPress root directory server path: %s"
4625
  msgstr ""
4626
 
4627
- #: src/methods/s3.php:845
4628
  msgid "%s end-point"
4629
  msgstr ""
4630
 
4631
- #: src/methods/s3.php:807
4632
  msgid "... and many more!"
4633
  msgstr ""
4634
 
4635
- #: src/methods/s3generic.php:52, src/methods/s3generic.php:60
4636
  msgid "S3 (Compatible)"
4637
  msgstr ""
4638
 
4639
- #: src/admin.php:3758
4640
  msgid "File is not locally present - needs retrieving from remote storage"
4641
  msgstr ""
4642
 
4643
- #: src/admin.php:3745
4644
  msgid "Looking for %s archive: file name: %s"
4645
  msgstr ""
4646
 
4647
- #: src/admin.php:3706
4648
  msgid "Final checks"
4649
  msgstr ""
4650
 
@@ -4656,7 +4664,7 @@ msgstr ""
4656
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4657
  msgstr ""
4658
 
4659
- #: src/admin.php:3103
4660
  msgid "Your wp-content directory server path: %s"
4661
  msgstr ""
4662
 
@@ -4672,20 +4680,20 @@ msgstr ""
4672
  msgid "Processing files - please wait..."
4673
  msgstr ""
4674
 
4675
- #: src/admin.php:3904,
4676
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4677
  msgid "Please consult this FAQ for help on what to do about it."
4678
  msgstr ""
4679
 
4680
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28
4681
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4682
  msgstr ""
4683
 
4684
- #: src/class-updraftplus.php:4573
4685
  msgid "Failed to open database file."
4686
  msgstr ""
4687
 
4688
- #: src/admin.php:4329
4689
  msgid "Known backups (raw)"
4690
  msgstr ""
4691
 
@@ -4697,17 +4705,17 @@ msgstr ""
4697
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4698
  msgstr ""
4699
 
4700
- #: src/addons/migrator.php:333
4701
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4702
  msgstr ""
4703
 
4704
- #: src/admin.php:3778
4705
  msgid "file is size:"
4706
  msgstr ""
4707
 
4708
- #: src/addons/googlecloud.php:941, src/addons/migrator.php:371,
4709
- #: src/addons/migrator.php:374, src/addons/migrator.php:377, src/admin.php:945,
4710
- #: src/admin.php:2234, src/backup.php:3043, src/updraftplus.php:156
4711
  msgid "Go here for more information."
4712
  msgstr ""
4713
 
@@ -4715,7 +4723,7 @@ msgstr ""
4715
  msgid "Some files are still downloading or being processed - please wait."
4716
  msgstr ""
4717
 
4718
- #: src/class-updraftplus.php:4621, src/class-updraftplus.php:4639
4719
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4720
  msgstr ""
4721
 
@@ -4761,7 +4769,7 @@ msgstr ""
4761
 
4762
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4763
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4764
- #: src/methods/googledrive.php:1001, src/methods/openstack-base.php:420,
4765
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4766
  #: src/methods/stream-base.php:285
4767
  msgid "%s Error"
@@ -4785,25 +4793,25 @@ msgstr ""
4785
  msgid "%s authentication failed"
4786
  msgstr ""
4787
 
4788
- #: src/addons/googlecloud.php:432, src/addons/migrator.php:462,
4789
- #: src/admin.php:1935, src/admin.php:1982, src/admin.php:1990,
4790
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4791
- #: src/class-updraftplus.php:4544, src/class-updraftplus.php:4546,
4792
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4679,
4793
- #: src/class-updraftplus.php:4714, src/methods/googledrive.php:364,
4794
- #: src/methods/s3.php:316
4795
  msgid "Error: %s"
4796
  msgstr ""
4797
 
4798
- #: src/admin.php:3040
4799
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4800
  msgstr ""
4801
 
4802
- #: src/admin.php:3038
4803
  msgid "Backup directory specified does <b>not</b> exist."
4804
  msgstr ""
4805
 
4806
- #: src/admin.php:2751, src/admin.php:2994
4807
  msgid "Warning: %s"
4808
  msgstr ""
4809
 
@@ -4831,7 +4839,7 @@ msgstr ""
4831
  msgid "Warnings encountered:"
4832
  msgstr ""
4833
 
4834
- #: src/class-updraftplus.php:3106
4835
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4836
  msgstr ""
4837
 
@@ -4839,27 +4847,27 @@ msgstr ""
4839
  msgid "Your free disk space is very low - only %s Mb remain"
4840
  msgstr ""
4841
 
4842
- #: src/addons/migrator.php:470
4843
  msgid "New site:"
4844
  msgstr ""
4845
 
4846
- #: src/addons/migrator.php:445
4847
  msgid "Migrated site (from UpdraftPlus)"
4848
  msgstr ""
4849
 
4850
- #: src/addons/migrator.php:392
4851
  msgid "Enter details for where this new site is to live within your multisite install:"
4852
  msgstr ""
4853
 
4854
- #: src/addons/migrator.php:391
4855
  msgid "Information needed to continue:"
4856
  msgstr ""
4857
 
4858
- #: src/addons/migrator.php:348
4859
  msgid "Network activating theme:"
4860
  msgstr ""
4861
 
4862
- #: src/addons/migrator.php:338
4863
  msgid "Processed plugin:"
4864
  msgstr ""
4865
 
@@ -4871,15 +4879,15 @@ msgstr ""
4871
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4872
  msgstr ""
4873
 
4874
- #: src/methods/s3.php:821
4875
  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."
4876
  msgstr ""
4877
 
4878
- #: src/methods/s3.php:1073
4879
  msgid "Please check your access credentials."
4880
  msgstr ""
4881
 
4882
- #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1051
4883
  msgid "The error reported by %s was:"
4884
  msgstr ""
4885
 
@@ -4887,7 +4895,7 @@ msgstr ""
4887
  msgid "Please supply the requested information, and then continue."
4888
  msgstr ""
4889
 
4890
- #: src/class-updraftplus.php:4690, src/restorer.php:1706
4891
  msgid "Site information:"
4892
  msgstr ""
4893
 
@@ -4895,21 +4903,21 @@ msgstr ""
4895
  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."
4896
  msgstr ""
4897
 
4898
- #: src/addons/migrator.php:333, src/admin.php:2229,
4899
- #: src/class-updraftplus.php:4683, src/restorer.php:2033
4900
  msgid "Warning:"
4901
  msgstr ""
4902
 
4903
- #: src/class-updraftplus.php:4672, src/class-updraftplus.php:4675,
4904
  #: src/restorer.php:154
4905
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4906
  msgstr ""
4907
 
4908
- #: src/admin.php:3733
4909
  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."
4910
  msgstr ""
4911
 
4912
- #: src/admin.php:3169, src/methods/updraftvault.php:286
4913
  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."
4914
  msgstr ""
4915
 
@@ -4964,7 +4972,7 @@ msgstr ""
4964
  msgid "Also delete from remote storage"
4965
  msgstr ""
4966
 
4967
- #: src/admin.php:2481
4968
  msgid "Latest UpdraftPlus.com news:"
4969
  msgstr ""
4970
 
@@ -4981,7 +4989,7 @@ msgstr ""
4981
  msgid "News"
4982
  msgstr ""
4983
 
4984
- #: src/admin.php:1409, src/includes/class-wpadmin-commands.php:465
4985
  msgid "Backup set not found"
4986
  msgstr ""
4987
 
@@ -5007,7 +5015,7 @@ msgstr ""
5007
  msgid "Testing %s Settings..."
5008
  msgstr ""
5009
 
5010
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
5011
  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."
5012
  msgstr ""
5013
 
@@ -5035,77 +5043,77 @@ msgstr ""
5035
  msgid "Store at"
5036
  msgstr ""
5037
 
5038
- #: src/addons/migrator.php:1380
5039
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5040
  msgstr ""
5041
 
5042
- #: src/addons/migrator.php:1258
5043
  msgid "rows: %d"
5044
  msgstr ""
5045
 
5046
- #: src/addons/migrator.php:1134
5047
  msgid "Time taken (seconds):"
5048
  msgstr ""
5049
 
5050
- #: src/addons/migrator.php:1133, src/admin.php:659
5051
  msgid "Errors:"
5052
  msgstr ""
5053
 
5054
- #: src/addons/migrator.php:1132
5055
  msgid "SQL update commands run:"
5056
  msgstr ""
5057
 
5058
- #: src/addons/migrator.php:1131
5059
  msgid "Changes made:"
5060
  msgstr ""
5061
 
5062
- #: src/addons/migrator.php:1130
5063
  msgid "Rows examined:"
5064
  msgstr ""
5065
 
5066
- #: src/addons/migrator.php:1129
5067
  msgid "Tables examined:"
5068
  msgstr ""
5069
 
5070
- #: src/addons/migrator.php:1018
5071
  msgid "Could not get list of tables"
5072
  msgstr ""
5073
 
5074
- #: src/addons/migrator.php:963
5075
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5076
  msgstr ""
5077
 
5078
- #: src/addons/migrator.php:952
5079
  msgid "Nothing to do: the site URL is already: %s"
5080
  msgstr ""
5081
 
5082
- #: src/addons/migrator.php:916, src/addons/migrator.php:920,
5083
- #: src/addons/migrator.php:924, src/addons/migrator.php:929,
5084
- #: src/addons/migrator.php:933, src/addons/migrator.php:938
5085
  msgid "Error: unexpected empty parameter (%s, %s)"
5086
  msgstr ""
5087
 
5088
- #: src/addons/migrator.php:876
5089
  msgid "Database: search and replace site URL"
5090
  msgstr ""
5091
 
5092
- #: src/addons/migrator.php:787, src/addons/migrator.php:1115
5093
  msgid "Failed: we did not understand the result returned by the %s operation."
5094
  msgstr ""
5095
 
5096
- #: src/addons/migrator.php:785, src/addons/migrator.php:1113
5097
  msgid "Failed: the %s operation was not able to start."
5098
  msgstr ""
5099
 
5100
- #: src/addons/migrator.php:550
5101
  msgid "(learn more)"
5102
  msgstr ""
5103
 
5104
- #: src/addons/migrator.php:550
5105
  msgid "Search and replace site location in the database (migrate)"
5106
  msgstr ""
5107
 
5108
- #: src/addons/migrator.php:550
5109
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5110
  msgstr ""
5111
 
@@ -5113,7 +5121,7 @@ msgstr ""
5113
  msgid "Blog uploads"
5114
  msgstr ""
5115
 
5116
- #: src/addons/migrator.php:377, src/addons/multisite.php:649
5117
  msgid "Must-use plugins"
5118
  msgstr ""
5119
 
@@ -5152,7 +5160,7 @@ msgstr ""
5152
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5153
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5154
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5155
- #: src/udaddons/options.php:132
5156
  msgid "Password"
5157
  msgstr ""
5158
 
@@ -5218,8 +5226,8 @@ msgid "Failed: We were not able to place a file in that directory - please check
5218
  msgstr ""
5219
 
5220
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5221
- #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2805,
5222
- #: src/admin.php:2840, src/admin.php:2849, src/methods/addon-base-v2.php:289,
5223
  #: src/methods/stream-base.php:301
5224
  msgid "Failed"
5225
  msgstr ""
@@ -5244,7 +5252,7 @@ msgstr ""
5244
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5245
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5246
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5247
- #: src/methods/googledrive.php:167, src/methods/googledrive.php:169,
5248
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5249
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5250
  #: src/methods/stream-base.php:246
@@ -5312,96 +5320,96 @@ msgstr ""
5312
  msgid "You do not appear to be authenticated with Dropbox"
5313
  msgstr ""
5314
 
5315
- #: src/methods/s3.php:1068
5316
  msgid "The communication with %s was not encrypted."
5317
  msgstr ""
5318
 
5319
- #: src/methods/s3.php:1066
5320
  msgid "The communication with %s was encrypted."
5321
  msgstr ""
5322
 
5323
- #: src/addons/googlecloud.php:756, src/methods/s3.php:1063
5324
  msgid "We accessed the bucket, and were able to create files within it."
5325
  msgstr ""
5326
 
5327
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5328
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5329
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5330
  msgstr ""
5331
 
5332
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5333
- #: src/methods/s3.php:1061, src/methods/s3.php:1073
5334
  msgid "Failure"
5335
  msgstr ""
5336
 
5337
- #: src/methods/s3.php:1049
5338
  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)."
5339
  msgstr ""
5340
 
5341
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5342
- #: src/methods/s3.php:1043
5343
  msgid "Region"
5344
  msgstr ""
5345
 
5346
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5347
- #: src/methods/s3.php:1025
5348
  msgid "Failure: No bucket details were given."
5349
  msgstr ""
5350
 
5351
- #: src/methods/s3.php:1003
5352
  msgid "API secret"
5353
  msgstr ""
5354
 
5355
- #: src/methods/s3.php:882
5356
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5357
  msgstr ""
5358
 
5359
- #: src/methods/s3.php:881
5360
  msgid "%s location"
5361
  msgstr ""
5362
 
5363
- #: src/methods/s3.php:877
5364
  msgid "%s secret key"
5365
  msgstr ""
5366
 
5367
- #: src/methods/s3.php:873
5368
  msgid "%s access key"
5369
  msgstr ""
5370
 
5371
- #: src/methods/s3.php:838
5372
  msgid "If you see errors about SSL certificates, then please go here for help."
5373
  msgstr ""
5374
 
5375
- #: src/methods/s3.php:836
5376
  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."
5377
  msgstr ""
5378
 
5379
- #: src/methods/s3.php:457, src/methods/s3.php:569, src/methods/s3.php:641,
5380
- #: src/methods/s3.php:744
5381
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5382
  msgstr ""
5383
 
5384
- #: src/methods/s3.php:727, src/methods/s3.php:737, src/methods/s3.php:773
5385
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5386
  msgstr ""
5387
 
5388
- #: src/methods/s3.php:435
5389
  msgid "%s re-assembly error (%s): (see log file for more)"
5390
  msgstr ""
5391
 
5392
- #: src/methods/s3.php:431
5393
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5394
  msgstr ""
5395
 
5396
- #: src/methods/s3.php:415
5397
  msgid "%s chunk %s: upload failed"
5398
  msgstr ""
5399
 
5400
- #: src/methods/s3.php:405
5401
  msgid "%s error: file %s was shortened unexpectedly"
5402
  msgstr ""
5403
 
5404
- #: src/methods/s3.php:383
5405
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5406
  msgstr ""
5407
 
@@ -5432,11 +5440,11 @@ msgid "Username"
5432
  msgstr ""
5433
 
5434
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5435
- #: src/methods/s3.php:999
5436
  msgid "API key"
5437
  msgstr ""
5438
 
5439
- #: src/addons/migrator.php:286, src/addons/migrator.php:1872,
5440
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5441
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5442
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
@@ -5446,12 +5454,12 @@ msgstr ""
5446
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5447
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5448
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5449
- #: src/methods/s3.php:999, src/methods/s3.php:1003
5450
  msgid "Failure: No %s was given."
5451
  msgstr ""
5452
 
5453
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5454
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5455
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5456
  msgstr ""
5457
 
@@ -5490,7 +5498,7 @@ msgstr ""
5490
  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."
5491
  msgstr ""
5492
 
5493
- #: src/admin.php:735, src/methods/backup-module.php:242
5494
  msgid "Test %s Settings"
5495
  msgstr ""
5496
 
@@ -5506,13 +5514,13 @@ msgstr ""
5506
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5507
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5508
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5509
- #: src/methods/s3.php:351, src/methods/s3.php:363, src/methods/s3.php:364
5510
  msgid "%s Error: Failed to upload"
5511
  msgstr ""
5512
 
5513
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5514
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5515
- #: src/methods/googledrive.php:919, src/methods/googledrive.php:924
5516
  msgid "%s Error: Failed to open local file"
5517
  msgstr ""
5518
 
@@ -5528,87 +5536,87 @@ msgstr ""
5528
  msgid "Cloud Files authentication failed"
5529
  msgstr ""
5530
 
5531
- #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1152
5532
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5533
  msgstr ""
5534
 
5535
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5536
- #: src/methods/googledrive.php:1110
5537
  msgid "Client Secret"
5538
  msgstr ""
5539
 
5540
- #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1107
5541
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5542
  msgstr ""
5543
 
5544
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5545
- #: src/methods/googledrive.php:1106
5546
  msgid "Client ID"
5547
  msgstr ""
5548
 
5549
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5550
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5551
  msgstr ""
5552
 
5553
- #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1090
5554
  msgid "Select 'Web Application' as the application type."
5555
  msgstr ""
5556
 
5557
- #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1088
5558
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5559
  msgstr ""
5560
 
5561
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5562
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5563
- #: src/methods/googledrive.php:1071, src/methods/openstack-base.php:531,
5564
- #: src/methods/s3.php:797, src/methods/stream-base.php:218
5565
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5566
  msgstr ""
5567
 
5568
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5569
- #: src/addons/googlecloud.php:783, src/methods/googledrive.php:526,
5570
- #: src/methods/googledrive.php:527, src/methods/googledrive.php:537,
5571
- #: src/methods/googledrive.php:538
5572
  msgid "Account is not authorized."
5573
  msgstr ""
5574
 
5575
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:496,
5576
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
5577
  #: src/methods/stream-base.php:200
5578
  msgid "Failed to upload to %s"
5579
  msgstr ""
5580
 
5581
- #: src/methods/googledrive.php:479
5582
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5583
  msgstr ""
5584
 
5585
- #: src/methods/googledrive.php:570, src/methods/googledrive.php:606
5586
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5587
  msgstr ""
5588
 
5589
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5590
- #: src/methods/googledrive.php:423
5591
  msgid "you have authenticated your %s account."
5592
  msgstr ""
5593
 
5594
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5595
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5596
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5597
- #: src/methods/googledrive.php:423, src/methods/openstack-base.php:495,
5598
- #: src/methods/s3.php:1063, src/methods/stream-base.php:312
5599
  msgid "Success"
5600
  msgstr ""
5601
 
5602
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5603
- #: src/methods/dropbox.php:693, src/methods/googledrive.php:397
5604
  msgid "Your %s quota usage: %s %% used, %s available"
5605
  msgstr ""
5606
 
5607
- #: src/addons/googlecloud.php:438, src/methods/googledrive.php:370
5608
  msgid "Authorization failed"
5609
  msgstr ""
5610
 
5611
- #: src/addons/googlecloud.php:430, src/methods/googledrive.php:362
5612
  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."
5613
  msgstr ""
5614
 
@@ -5634,8 +5642,8 @@ msgstr ""
5634
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5635
  msgstr ""
5636
 
5637
- #: src/addons/migrator.php:1767, src/admin.php:2808, src/admin.php:2842,
5638
- #: src/admin.php:2846, src/admin.php:3763, src/admin.php:3776,
5639
  #: src/restorer.php:2273, src/restorer.php:2378
5640
  msgid "OK"
5641
  msgstr ""
@@ -5644,7 +5652,7 @@ msgstr ""
5644
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5645
  msgstr ""
5646
 
5647
- #: src/addons/migrator.php:1146, src/restorer.php:2170
5648
  msgid "the database query being run was:"
5649
  msgstr ""
5650
 
@@ -5652,13 +5660,13 @@ msgstr ""
5652
  msgid "will restore as:"
5653
  msgstr ""
5654
 
5655
- #: src/class-updraftplus.php:4661, src/restorer.php:1688,
5656
  #: src/restorer.php:1777, src/restorer.php:1803
5657
  msgid "Old table prefix:"
5658
  msgstr ""
5659
 
5660
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5661
- #: src/backup.php:960, src/class-updraftplus.php:4616
5662
  msgid "Backup of:"
5663
  msgstr ""
5664
 
@@ -5730,60 +5738,60 @@ msgstr ""
5730
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5731
  msgstr ""
5732
 
5733
- #: src/admin.php:3784, src/admin.php:3785
5734
  msgid "Could not find one of the files for restoration"
5735
  msgstr ""
5736
 
5737
- #: src/admin.php:3894
5738
  msgid "Error message"
5739
  msgstr ""
5740
 
5741
- #: src/admin.php:3781
5742
  msgid "The backup records do not contain information about the proper size of this file."
5743
  msgstr ""
5744
 
5745
- #: src/admin.php:3773
5746
  msgid "Archive is expected to be size:"
5747
  msgstr ""
5748
 
5749
- #: src/admin.php:3657
5750
  msgid "If making a request for support, please include this information:"
5751
  msgstr ""
5752
 
5753
- #: src/admin.php:3656
5754
  msgid "ABORT: Could not find the information on which entities to restore."
5755
  msgstr ""
5756
 
5757
- #: src/admin.php:3610
5758
  msgid "UpdraftPlus Restoration: Progress"
5759
  msgstr ""
5760
 
5761
- #: src/admin.php:3562
5762
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5763
  msgstr ""
5764
 
5765
- #: src/admin.php:3504
5766
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5767
  msgstr ""
5768
 
5769
- #: src/admin.php:3513
5770
  msgid "Delete this backup set"
5771
  msgstr ""
5772
 
5773
- #: src/admin.php:3181
5774
  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."
5775
  msgstr ""
5776
 
5777
- #: src/admin.php:3178
5778
  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."
5779
  msgstr ""
5780
 
5781
- #: src/admin.php:3176
5782
  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)."
5783
  msgstr ""
5784
 
5785
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5786
- #: src/methods/openstack-base.php:541, src/methods/s3.php:825
5787
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5788
  msgstr ""
5789
 
@@ -5819,23 +5827,23 @@ msgstr ""
5819
  msgid "Use the server's SSL certificates"
5820
  msgstr ""
5821
 
5822
- #: src/admin.php:3042
5823
  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."
5824
  msgstr ""
5825
 
5826
- #: src/admin.php:3042
5827
  msgid "click here"
5828
  msgstr ""
5829
 
5830
- #: src/admin.php:3042
5831
  msgid "or, to reset this option"
5832
  msgstr ""
5833
 
5834
- #: src/admin.php:3042
5835
  msgid "Follow this link to attempt to create the directory and set the permissions"
5836
  msgstr ""
5837
 
5838
- #: src/admin.php:3034
5839
  msgid "Backup directory specified is writable, which is good."
5840
  msgstr ""
5841
 
@@ -5875,7 +5883,7 @@ msgstr ""
5875
  msgid "Cancel"
5876
  msgstr ""
5877
 
5878
- #: src/addons/reporting.php:233, src/admin.php:3325
5879
  msgid "None"
5880
  msgstr ""
5881
 
@@ -5892,7 +5900,7 @@ msgid "Database encryption phrase"
5892
  msgstr ""
5893
 
5894
  #: src/templates/wp-admin/settings/form-contents.php:285,
5895
- #: src/udaddons/options.php:130
5896
  msgid "Email"
5897
  msgstr ""
5898
 
@@ -5900,11 +5908,11 @@ msgstr ""
5900
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5901
  msgstr ""
5902
 
5903
- #: src/addons/morefiles.php:443, src/admin.php:3112
5904
  msgid "Exclude these:"
5905
  msgstr ""
5906
 
5907
- #: src/admin.php:3103
5908
  msgid "Any other directories found inside wp-content"
5909
  msgstr ""
5910
 
@@ -5920,49 +5928,49 @@ msgstr ""
5920
  msgid "To fix the time at which a backup should take place,"
5921
  msgstr ""
5922
 
5923
- #: src/admin.php:3028
5924
  msgid "Monthly"
5925
  msgstr ""
5926
 
5927
- #: src/admin.php:3027
5928
  msgid "Fortnightly"
5929
  msgstr ""
5930
 
5931
- #: src/admin.php:3026
5932
  msgid "Weekly"
5933
  msgstr ""
5934
 
5935
- #: src/admin.php:3025
5936
  msgid "Daily"
5937
  msgstr ""
5938
 
5939
- #: src/admin.php:694, src/admin.php:3008
5940
  msgid "Download log file"
5941
  msgstr ""
5942
 
5943
- #: src/admin.php:2905
5944
  msgid "The folder exists, but your webserver does not have permission to write to it."
5945
  msgstr ""
5946
 
5947
- #: src/admin.php:2900
5948
  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"
5949
  msgstr ""
5950
 
5951
- #: src/admin.php:2886
5952
  msgid "The request to the filesystem to create the directory failed."
5953
  msgstr ""
5954
 
5955
- #: src/addons/migrator.php:2245, src/admin.php:688, src/admin.php:2802,
5956
- #: src/admin.php:2835, src/admin.php:3513,
5957
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5958
  msgid "Delete"
5959
  msgstr ""
5960
 
5961
- #: src/admin.php:2586
5962
  msgid "(None)"
5963
  msgstr ""
5964
 
5965
- #: src/admin.php:2742
5966
  msgid "show log"
5967
  msgstr ""
5968
 
@@ -6067,7 +6075,7 @@ msgstr ""
6067
  msgid "Multisite"
6068
  msgstr ""
6069
 
6070
- #: src/admin.php:2405
6071
  msgid "Go here for help."
6072
  msgstr ""
6073
 
@@ -6124,81 +6132,81 @@ msgstr ""
6124
  msgid "Download error: the server sent us a response which we did not understand."
6125
  msgstr ""
6126
 
6127
- #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:772,
6128
- #: src/addons/migrator.php:1018, src/addons/migrator.php:1099,
6129
- #: src/addons/migrator.php:1146, src/addons/migrator.php:1380,
6130
- #: src/addons/migrator.php:1706, src/addons/migrator.php:1733,
6131
- #: src/addons/migrator.php:1739, src/addons/migrator.php:1801,
6132
- #: src/addons/migrator.php:1841, src/addons/migrator.php:1880,
6133
- #: src/addons/migrator.php:1890, src/addons/migrator.php:1895,
6134
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6135
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6136
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6137
- #: src/admin.php:3778, src/admin.php:3808, src/methods/remotesend.php:71,
6138
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6139
  #: src/restorer.php:1408
6140
  msgid "Error:"
6141
  msgstr ""
6142
 
6143
  #: src/admin.php:653,
6144
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6145
  msgid "calculating..."
6146
  msgstr ""
6147
 
6148
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
6149
  msgid "UpdraftPlus - Upload backup files"
6150
  msgstr ""
6151
 
6152
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6153
  msgid "refresh"
6154
  msgstr ""
6155
 
6156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6157
  msgid "Web-server disk space in use by UpdraftPlus"
6158
  msgstr ""
6159
 
6160
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
6161
  msgid "This is a count of the contents of your Updraft directory"
6162
  msgstr ""
6163
 
6164
- #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:167,
6165
- #: src/methods/googledrive.php:169, src/methods/googledrive.php:423,
6166
- #: src/methods/googledrive.php:450, src/methods/googledrive.php:479,
6167
- #: src/methods/googledrive.php:486, src/methods/googledrive.php:496,
6168
- #: src/methods/googledrive.php:502, src/methods/googledrive.php:504,
6169
- #: src/methods/googledrive.php:1070, src/methods/googledrive.php:1082,
6170
- #: src/methods/googledrive.php:1082, src/methods/googledrive.php:1106,
6171
- #: src/methods/googledrive.php:1110, src/methods/googledrive.php:1122,
6172
- #: src/methods/googledrive.php:1132
6173
  msgid "Google Drive"
6174
  msgstr ""
6175
 
6176
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6177
  msgid "If you are using this, then turn Turbo/Road mode off."
6178
  msgstr ""
6179
 
6180
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:48
6181
  msgid "Opera web browser"
6182
  msgstr ""
6183
 
6184
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:36
6185
  msgid "More tasks:"
6186
  msgstr ""
6187
 
6188
- #: src/admin.php:2505
6189
  msgid "Download most recently modified log file"
6190
  msgstr ""
6191
 
6192
- #: src/admin.php:2464, src/admin.php:2470, src/central/bootstrap.php:169
6193
  msgid "(Nothing yet logged)"
6194
  msgstr ""
6195
 
6196
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6197
- #: src/admin.php:2463, src/admin.php:2468
6198
  msgid "Last log message"
6199
  msgstr ""
6200
 
6201
- #: src/addons/migrator.php:224, src/admin.php:693, src/admin.php:3504,
6202
  #: src/templates/wp-admin/settings/tab-status.php:30
6203
  msgid "Restore"
6204
  msgstr ""
@@ -6208,9 +6216,9 @@ msgstr ""
6208
  msgid "Backup Now"
6209
  msgstr ""
6210
 
6211
- #: src/addons/migrator.php:1771, src/addons/moredatabase.php:247,
6212
- #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3300,
6213
- #: src/admin.php:3373, src/admin.php:3862,
6214
  #: src/includes/class-wpadmin-commands.php:147,
6215
  #: src/includes/class-wpadmin-commands.php:480,
6216
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
@@ -6218,7 +6226,7 @@ msgstr ""
6218
  msgid "Database"
6219
  msgstr ""
6220
 
6221
- #: src/admin.php:295, src/admin.php:4335
6222
  msgid "Files"
6223
  msgstr ""
6224
 
@@ -6246,15 +6254,15 @@ msgstr ""
6246
  msgid "JavaScript warning"
6247
  msgstr ""
6248
 
6249
- #: src/admin.php:673, src/admin.php:2532
6250
  msgid "Delete Old Directories"
6251
  msgstr ""
6252
 
6253
- #: src/admin.php:2277
6254
  msgid "Current limit is:"
6255
  msgstr ""
6256
 
6257
- #: src/admin.php:2251
6258
  msgid "Your backup has been restored."
6259
  msgstr ""
6260
 
@@ -6266,67 +6274,67 @@ msgstr ""
6266
  msgid "Lead developer's homepage"
6267
  msgstr ""
6268
 
6269
- #: src/admin.php:4255
6270
  msgid "Your settings have been wiped."
6271
  msgstr ""
6272
 
6273
- #: src/admin.php:2211
6274
  msgid "Backup directory successfully created."
6275
  msgstr ""
6276
 
6277
- #: src/admin.php:2204
6278
  msgid "Backup directory could not be created"
6279
  msgstr ""
6280
 
6281
- #: src/admin.php:2774
6282
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6283
  msgstr ""
6284
 
6285
- #: src/admin.php:2772
6286
  msgid "Old directories successfully removed."
6287
  msgstr ""
6288
 
6289
- #: src/admin.php:2769, src/admin.php:2769
6290
  msgid "Remove old directories"
6291
  msgstr ""
6292
 
6293
- #: src/addons/migrator.php:289, src/addons/migrator.php:304,
6294
- #: src/admin.php:2153, src/admin.php:2162, src/admin.php:2171,
6295
- #: src/admin.php:2213, src/admin.php:2776
6296
  msgid "Return to UpdraftPlus Configuration"
6297
  msgstr ""
6298
 
6299
- #: src/admin.php:666, src/admin.php:2153, src/admin.php:2162,
6300
- #: src/admin.php:2171, src/admin.php:2213, src/admin.php:2776,
6301
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6302
  msgid "Actions"
6303
  msgstr ""
6304
 
6305
- #: src/admin.php:2072
6306
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6307
  msgstr ""
6308
 
6309
- #: src/admin.php:1982
6310
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6311
  msgstr ""
6312
 
6313
- #: src/admin.php:1863
6314
  msgid "No local copy present."
6315
  msgstr ""
6316
 
6317
- #: src/admin.php:1860
6318
  msgid "Download in progress"
6319
  msgstr ""
6320
 
6321
- #: src/admin.php:665, src/admin.php:1849
6322
  msgid "File ready."
6323
  msgstr ""
6324
 
6325
- #: src/admin.php:1830
6326
  msgid "Download failed"
6327
  msgstr ""
6328
 
6329
- #: src/admin.php:663, src/admin.php:1609, src/admin.php:3761,
6330
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6331
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6332
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
@@ -6335,15 +6343,15 @@ msgstr ""
6335
  msgid "Error"
6336
  msgstr ""
6337
 
6338
- #: src/admin.php:1637
6339
  msgid "Could not find that job - perhaps it has already finished?"
6340
  msgstr ""
6341
 
6342
- #: src/admin.php:1629
6343
  msgid "Job deleted"
6344
  msgstr ""
6345
 
6346
- #: src/admin.php:1713
6347
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6348
  msgstr ""
6349
 
@@ -6368,12 +6376,12 @@ msgid "You have less than %s of free disk space on the disk which UpdraftPlus is
6368
  msgstr ""
6369
 
6370
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6371
- #: src/admin.php:957, src/admin.php:966, src/admin.php:3169,
6372
- #: src/admin.php:3176, src/admin.php:3178, src/methods/cloudfiles-new.php:107,
6373
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6374
- #: src/methods/openstack-base.php:541, src/methods/s3.php:821,
6375
- #: src/methods/s3.php:825, src/methods/updraftvault.php:286,
6376
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:28,
6377
  #: src/udaddons/updraftplus-addons.php:242
6378
  msgid "Warning"
6379
  msgstr ""
@@ -6403,21 +6411,21 @@ msgstr ""
6403
  msgid "Like UpdraftPlus and can spare one minute?"
6404
  msgstr ""
6405
 
6406
- #: src/addons/azure.php:217, src/class-updraftplus.php:4340,
6407
- #: src/methods/googledrive.php:1001, src/methods/s3.php:316
6408
  msgid "File not found"
6409
  msgstr ""
6410
 
6411
- #: src/class-updraftplus.php:4247
6412
  msgid "The decryption key used:"
6413
  msgstr ""
6414
 
6415
- #: src/class-updraftplus.php:4247, src/class-updraftplus.php:4556,
6416
  #: src/restorer.php:389
6417
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6418
  msgstr ""
6419
 
6420
- #: src/class-updraftplus.php:4228, src/class-updraftplus.php:4544,
6421
  #: src/restorer.php:376
6422
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6423
  msgstr ""
@@ -6426,15 +6434,15 @@ msgstr ""
6426
  msgid "Could not open the backup file for writing"
6427
  msgstr ""
6428
 
6429
- #: src/class-updraftplus.php:3638
6430
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6431
  msgstr ""
6432
 
6433
- #: src/class-updraftplus.php:3604
6434
  msgid "Could not read the directory"
6435
  msgstr ""
6436
 
6437
- #: src/admin.php:1900, src/backup.php:1157
6438
  msgid "Backup directory (%s) is not writable, or does not exist."
6439
  msgstr ""
6440
 
@@ -6442,11 +6450,11 @@ msgstr ""
6442
  msgid "WordPress backup is complete"
6443
  msgstr ""
6444
 
6445
- #: src/class-updraftplus.php:3115
6446
  msgid "The backup attempt has finished, apparently unsuccessfully"
6447
  msgstr ""
6448
 
6449
- #: src/class-updraftplus.php:3100
6450
  msgid "The backup apparently succeeded and is now complete"
6451
  msgstr ""
6452
 
@@ -6478,7 +6486,7 @@ msgstr ""
6478
  msgid "No log files were found."
6479
  msgstr ""
6480
 
6481
- #: src/admin.php:1782, src/admin.php:1786, src/class-updraftplus.php:516
6482
  msgid "The log file could not be read."
6483
  msgstr ""
6484
 
11
  "Language: ca\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/class-updraftplus.php:4741
15
+ 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."
16
+ msgstr ""
17
+
18
+ #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
+ msgid "the migrator add-on"
20
+ msgstr ""
21
+
22
+ #: src/class-updraftplus.php:4739
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/class-updraftplus.php:4737
27
+ 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."
28
+ msgstr ""
29
+
30
+ #: src/class-updraftplus.php:4734
31
+ 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."
32
+ msgstr ""
33
+
34
+ #: src/methods/googledrive.php:1153
35
+ msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
36
+ msgstr ""
37
+
38
+ #: src/methods/googledrive.php:1149
39
+ msgid "Follow this link to remove this site's settings for %s."
40
+ msgstr ""
41
+
42
  #: src/addons/sftp.php:346
43
+ msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr ""
45
 
46
  #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr ""
49
 
50
+ #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr ""
54
 
55
+ #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr ""
69
  msgid "North-east Asia"
70
  msgstr ""
71
 
72
+ #: src/udaddons/options.php:118
73
+ 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"
74
  msgstr ""
75
 
76
  #: src/templates/wp-admin/settings/tab-status.php:80
97
  msgid "Select Files"
98
  msgstr ""
99
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  #: src/methods/cloudfiles.php:497
101
  msgid "Rackspace Storage Region"
102
  msgstr ""
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr ""
111
 
 
 
 
 
112
  #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr ""
115
 
116
+ #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr ""
119
 
120
+ #: src/admin.php:1540
 
 
 
 
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr ""
123
 
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr ""
135
 
136
+ #: src/templates/wp-admin/settings/existing-backups-table.php:70
137
  msgid "Stored at: %s"
138
  msgstr ""
139
 
141
  msgid "Cloud Files"
142
  msgstr ""
143
 
144
+ #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr ""
147
 
148
+ #: src/admin.php:4219
149
  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."
150
  msgstr ""
151
 
162
  msgid "Extra database"
163
  msgstr ""
164
 
165
+ #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr ""
168
 
206
  msgid "Skipped tables:"
207
  msgstr ""
208
 
209
+ #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr ""
212
 
213
+ #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr ""
216
 
217
+ #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr ""
220
 
714
  msgid "Backup of: %s"
715
  msgstr ""
716
 
717
+ #: src/methods/googledrive.php:248
718
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
719
  msgstr ""
720
 
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr ""
744
 
745
+ #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr ""
748
 
749
+ #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr ""
752
 
815
  msgid "An error response was received; HTTP code:"
816
  msgstr ""
817
 
818
+ #: src/includes/class-commands.php:322
819
  msgid "%s add-on not found"
820
  msgstr ""
821
 
827
  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"
828
  msgstr ""
829
 
830
+ #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr ""
833
 
834
+ #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr ""
837
 
867
  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."
868
  msgstr ""
869
 
870
+ #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr ""
873
 
874
+ #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr ""
877
 
919
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
920
  msgstr ""
921
 
922
+ #: src/addons/migrator.php:2218
923
  msgid "Create key"
924
  msgstr ""
925
 
926
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr ""
929
 
930
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr ""
933
 
934
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr ""
937
 
938
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr ""
941
 
942
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr ""
945
 
946
+ #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr ""
951
 
952
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr ""
955
 
956
+ #: src/addons/migrator.php:2208
957
  msgid "Enter your chosen name"
958
  msgstr ""
959
 
960
+ #: src/addons/migrator.php:2207
961
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
962
  msgstr ""
963
 
964
+ #: src/methods/googledrive.php:491
965
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
966
  msgstr ""
967
 
1001
  msgid "Now"
1002
  msgstr ""
1003
 
1004
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr ""
1007
 
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr ""
1125
 
1126
+ #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr ""
1129
 
1130
+ #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr ""
1133
 
1134
+ #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr ""
1137
 
1138
+ #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr ""
1141
 
1142
+ #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr ""
1145
 
1161
  msgid "this backup set"
1162
  msgstr ""
1163
 
1164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
1165
  msgid "calculate"
1166
  msgstr ""
1167
 
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr ""
1207
 
1208
+ #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr ""
1211
 
1212
+ #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr ""
1215
 
1216
+ #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr ""
1219
 
1220
+ #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr ""
1242
  msgid "Which site to restore"
1243
  msgstr ""
1244
 
1245
+ #: src/addons/migrator.php:514, src/addons/migrator.php:515
1246
  msgid "Error when creating new site at your chosen address:"
1247
  msgstr ""
1248
 
1249
+ #: src/addons/migrator.php:456
1250
  msgid "Required information for restoring this backup was not given (%s)"
1251
  msgstr ""
1252
 
1253
+ #: src/addons/migrator.php:415
1254
  msgid "Attribute imported content to user"
1255
  msgstr ""
1256
 
1257
+ #: src/addons/migrator.php:405, src/addons/migrator.php:407
1258
  msgid "You must use lower-case letters or numbers for the site path, only."
1259
  msgstr ""
1260
 
1261
+ #: src/addons/migrator.php:393
1262
  msgid "This feature is not compatible with %s"
1263
  msgstr ""
1264
 
1265
+ #: src/addons/migrator.php:391, src/addons/migrator.php:393
1266
  msgid "Importing a single site into a multisite install"
1267
  msgstr ""
1268
 
1269
+ #: src/addons/migrator.php:382
1270
  msgid "other content from wp-content"
1271
  msgstr ""
1272
 
1273
+ #: src/addons/migrator.php:379
1274
  msgid "WordPress core"
1275
  msgstr ""
1276
 
1277
+ #: src/addons/migrator.php:379, src/addons/migrator.php:382,
1278
+ #: src/addons/migrator.php:385
1279
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1280
  msgstr ""
1281
 
1283
  msgid "Call WordPress action:"
1284
  msgstr ""
1285
 
1286
+ #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr ""
1289
 
1290
+ #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr ""
1293
 
1319
  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)."
1320
  msgstr ""
1321
 
1322
+ #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr ""
1325
 
1326
+ #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr ""
1329
 
1330
+ #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr ""
1333
 
1334
+ #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr ""
1337
 
1338
+ #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr ""
1341
 
1342
+ #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr ""
1345
 
1346
+ #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr ""
1349
 
1350
+ #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr ""
1353
 
1354
+ #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr ""
1357
 
1358
+ #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr ""
1361
 
1362
+ #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr ""
1365
 
1366
+ #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr ""
1369
 
1371
  msgid "Premium / Extensions"
1372
  msgstr ""
1373
 
1374
+ #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr ""
1377
 
1518
  msgid "Could not access container"
1519
  msgstr ""
1520
 
1521
+ #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr ""
1524
 
1643
  msgid "Actions upon selected backups"
1644
  msgstr ""
1645
 
1646
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
1647
  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)."
1648
  msgstr ""
1649
 
1650
+ #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr ""
1653
 
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr ""
1701
 
1702
+ #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr ""
1705
 
1706
+ #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr ""
1709
 
1710
+ #: src/admin.php:2291
1711
  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."
1712
  msgstr ""
1713
 
1876
  msgstr ""
1877
 
1878
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
+ #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr ""
1882
 
1900
  msgid "Allow download"
1901
  msgstr ""
1902
 
1903
+ #: src/addons/migrator.php:1762
1904
  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."
1905
  msgstr ""
1906
 
1907
+ #: src/addons/migrator.php:1747, src/admin.php:709
1908
  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."
1909
  msgstr ""
1910
 
1911
+ #: src/addons/migrator.php:2250
1912
  msgid "Existing keys"
1913
  msgstr ""
1914
 
1915
+ #: src/addons/migrator.php:2241
1916
  msgid "No keys to allow remote sites to connect have yet been created."
1917
  msgstr ""
1918
 
1919
+ #: src/addons/migrator.php:2223
1920
  msgid "Your new key:"
1921
  msgstr ""
1922
 
1923
+ #: src/addons/migrator.php:2202
1924
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1925
  msgstr ""
1926
 
1927
+ #: src/addons/migrator.php:2184
1928
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1929
  msgstr ""
1930
 
1931
+ #: src/addons/migrator.php:2184
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr ""
1934
 
1935
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr ""
1938
 
1939
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr ""
1942
 
1943
+ #: src/addons/migrator.php:1849
1944
  msgid "A key with this name already exists; you must use a unique name."
1945
  msgstr ""
1946
 
1947
+ #: src/addons/migrator.php:1793
1948
  msgid "Also send this backup to the active remote storage locations"
1949
  msgstr ""
1950
 
1951
+ #: src/addons/migrator.php:1758
1952
  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."
1953
  msgstr ""
1954
 
1955
+ #: src/addons/migrator.php:1714
1956
  msgid "site not found"
1957
  msgstr ""
1958
 
1959
+ #: src/addons/migrator.php:1699
1960
  msgid "Backup data will be sent to:"
1961
  msgstr ""
1962
 
1963
+ #: src/addons/migrator.php:203
1964
  msgid "Restore an existing backup set onto this site"
1965
  msgstr ""
1966
 
1967
+ #: src/addons/migrator.php:196
1968
  msgid "This site has no backups to restore from yet."
1969
  msgstr ""
1970
 
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr ""
1978
 
1979
+ #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr ""
1982
 
1983
+ #: src/templates/wp-admin/settings/existing-backups-table.php:83
1984
  msgid "Site"
1985
  msgstr ""
1986
 
1987
+ #: src/templates/wp-admin/settings/existing-backups-table.php:82
1988
  msgid "Backup sent to remote site - not available for download."
1989
  msgstr ""
1990
 
1996
  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."
1997
  msgstr ""
1998
 
1999
+ #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr ""
2002
 
2016
  msgid "Creating..."
2017
  msgstr ""
2018
 
2019
+ #: src/addons/migrator.php:2201
2020
  msgid "Or, receive a backup from a remote site"
2021
  msgstr ""
2022
 
2023
+ #: src/addons/migrator.php:2190
2024
  msgid "Paste key here"
2025
  msgstr ""
2026
 
2027
+ #: src/addons/migrator.php:2184
2028
  msgid "How do I get a site's key?"
2029
  msgstr ""
2030
 
2031
+ #: src/addons/migrator.php:2184
2032
  msgid "To add a site as a destination for sending to, enter that site's key below."
2033
  msgstr ""
2034
 
2035
+ #: src/addons/migrator.php:2181
2036
  msgid "Or, send a backup to another site"
2037
  msgstr ""
2038
 
2039
+ #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr ""
2042
 
2043
+ #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr ""
2046
 
2047
+ #: src/addons/migrator.php:1938
2048
  msgid "No receiving sites have yet been added."
2049
  msgstr ""
2050
 
2051
+ #: src/addons/migrator.php:1919
2052
  msgid "It is for sending backups to the following site: "
2053
  msgstr ""
2054
 
2055
+ #: src/addons/migrator.php:1919
2056
  msgid "The key was successfully added."
2057
  msgstr ""
2058
 
2059
+ #: src/addons/migrator.php:1903
2060
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2061
  msgstr ""
2062
 
2063
+ #: src/addons/migrator.php:1892, src/addons/migrator.php:1894,
2064
+ #: src/addons/migrator.php:1898
2065
  msgid "The entered key was corrupt - please try again."
2066
  msgstr ""
2067
 
2068
+ #: src/addons/migrator.php:1890
2069
  msgid "The entered key was the wrong length - please try again."
2070
  msgstr ""
2071
 
2072
+ #: src/addons/migrator.php:1880
2073
  msgid "key"
2074
  msgstr ""
2075
 
2109
  msgid "Resetting..."
2110
  msgstr ""
2111
 
2112
+ #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr ""
2115
 
2117
  msgid "Adding..."
2118
  msgstr ""
2119
 
2120
+ #: src/udaddons/options.php:336
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr ""
2123
 
2137
  msgid "Go here to re-enter your password."
2138
  msgstr ""
2139
 
2140
+ #: src/addons/migrator.php:232
2141
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2142
  msgstr ""
2143
 
2144
+ #: src/addons/migrator.php:203
2145
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2146
  msgstr ""
2147
 
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr ""
2163
 
2164
+ #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr ""
2340
  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)"
2341
  msgstr ""
2342
 
2343
+ #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr ""
2346
 
2415
  msgid "(at same time as files backup)"
2416
  msgstr ""
2417
 
2418
+ #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr ""
2421
 
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr ""
2466
 
2467
+ #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
+ #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr ""
2471
 
2505
  msgid "Check this box to have a basic report sent to"
2506
  msgstr ""
2507
 
2508
+ #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr ""
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr ""
2525
 
2526
+ #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr ""
2529
 
2613
  msgid "(learn more about this significant option)"
2614
  msgstr ""
2615
 
2616
+ #: src/udaddons/options.php:278
2617
  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."
2618
  msgstr ""
2619
 
2620
+ #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr ""
2623
 
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr ""
2636
 
2637
+ #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr ""
2640
 
2642
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2643
  msgstr ""
2644
 
2645
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr ""
2648
 
2649
+ #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr ""
2653
 
2654
+ #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr ""
2657
 
2658
+ #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr ""
2661
 
2675
  msgid "Your label for this backup (optional)"
2676
  msgstr ""
2677
 
2678
+ #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1087
2679
  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."
2680
  msgstr ""
2681
 
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr ""
2697
 
2698
+ #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr ""
2701
 
2702
+ #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr ""
2705
 
2706
+ #: src/addons/migrator.php:1091
2707
  msgid "already done"
2708
  msgstr ""
2709
 
2710
+ #: src/addons/migrator.php:1048
2711
  msgid "skipped (not in list)"
2712
  msgstr ""
2713
 
2714
+ #: src/addons/migrator.php:1048, src/addons/migrator.php:1091,
2715
+ #: src/addons/migrator.php:1223
2716
  msgid "Search and replacing table:"
2717
  msgstr ""
2718
 
2719
+ #: src/addons/migrator.php:330
2720
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2721
  msgstr ""
2722
 
2723
+ #: src/addons/migrator.php:330
2724
  msgid "These tables only"
2725
  msgstr ""
2726
 
2727
+ #: src/addons/migrator.php:329
2728
  msgid "Rows per batch"
2729
  msgstr ""
2730
 
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr ""
2738
 
2739
+ #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr ""
2742
 
2743
+ #: src/class-updraftplus.php:4781
2744
  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."
2745
  msgstr ""
2746
 
2747
+ #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr ""
2750
 
2751
+ #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr ""
2754
 
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
+ #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr "Per què estic veient això ?"
2783
 
2784
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2785
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2786
  msgstr "La ubicació d'aquest directori es troba en la configuració d'experts, a la pestanya Configuració."
2787
 
2788
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr "Prem aquí per cercar nous conjunts de còpies de seguretat que s'han pujat al directori UpdraftPlus (dins l'espai del seu servidor web)."
2791
 
2792
+ #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr "Iniciar còpia de seguretat"
2795
 
2796
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
2799
 
2800
+ #: src/admin.php:2964
2801
  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."
2802
  msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
2803
 
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
2807
 
2808
+ #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr "No s'ha pogut carregar aquest fitxer"
2811
 
2812
+ #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr "Més informació sobre això en la secció Configuració."
2815
 
2829
  msgid "Memory limit"
2830
  msgstr "Límit de memòria"
2831
 
2832
+ #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr "Restauració"
2835
 
2853
  msgid "Backup succeeded"
2854
  msgstr "Còpia de seguretat executada correctament"
2855
 
2856
+ #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr "Cada %s hores"
2860
 
2861
+ #: src/addons/migrator.php:793, src/addons/migrator.php:795
2862
  msgid "search and replace"
2863
  msgstr "cercar i substituir"
2864
 
2865
+ #: src/addons/migrator.php:332
2866
  msgid "Go"
2867
  msgstr "Endavant"
2868
 
2869
+ #: src/addons/migrator.php:321
2870
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2871
  msgstr "Una cerca/substitució no es pot desfer - Estàs segur que vols fer això?"
2872
 
2873
+ #: src/addons/migrator.php:320
2874
  msgid "This can easily destroy your site; so, use it with care!"
2875
  msgstr "Això pot destruir el teu lloc web fàcilment; utilitza-ho amb compte!"
2876
 
2877
+ #: src/addons/migrator.php:290, src/addons/migrator.php:328
2878
  msgid "Replace with"
2879
  msgstr "Substituir per"
2880
 
2881
+ #: src/addons/migrator.php:289, src/addons/migrator.php:327
2882
  msgid "Search for"
2883
  msgstr "Cercar"
2884
 
2885
+ #: src/addons/migrator.php:288, src/addons/migrator.php:319,
2886
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2887
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2888
  msgid "Search / replace database"
2889
  msgstr "Cercar / substituir base de dades"
2890
 
2891
+ #: src/addons/migrator.php:294
2892
  msgid "search term"
2893
  msgstr "terme de cerca"
2894
 
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr ""
2906
 
2907
+ #: src/methods/googledrive.php:1095
2908
  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."
2909
  msgstr ""
2910
 
2911
+ #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr ""
2914
 
2928
  msgid "Free disk space in account:"
2929
  msgstr ""
2930
 
2931
+ #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr ""
2934
 
2935
+ #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
+ #: src/includes/deprecated-actions.php:29,
2937
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr ""
3027
  msgid "External database (%s)"
3028
  msgstr ""
3029
 
3030
+ #: src/methods/googledrive.php:1095
3031
  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."
3032
  msgstr ""
3033
 
3034
+ #: src/methods/googledrive.php:455
3035
  msgid "failed to access parent folder"
3036
  msgstr ""
3037
 
3038
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3039
+ #: src/addons/onedrive.php:773, src/methods/googledrive.php:408
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr ""
3042
 
3043
+ #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr ""
3046
 
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr ""
3074
 
3075
+ #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr ""
3078
 
3093
  msgid "database connection attempt failed."
3094
  msgstr ""
3095
 
3096
+ #: src/addons/migrator.php:979
3097
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3098
  msgstr ""
3099
 
3176
  msgid "Authenticate with %s"
3177
  msgstr ""
3178
 
3179
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr ""
3182
 
3204
  msgstr ""
3205
 
3206
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3207
+ #: src/methods/dropbox.php:546, src/methods/googledrive.php:1161
3208
  msgid "Account holder's name: %s."
3209
  msgstr ""
3210
 
3211
+ #: src/methods/googledrive.php:1139
3212
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3213
  msgstr ""
3214
 
3215
+ #: src/methods/googledrive.php:1130
3216
  msgid "It is an ID number internal to Google Drive"
3217
  msgstr ""
3218
 
3219
+ #: src/methods/googledrive.php:1130
3220
  msgid "<strong>This is NOT a folder name</strong>."
3221
  msgstr ""
3222
 
3223
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3224
+ #: src/methods/googledrive.php:1126, src/methods/googledrive.php:1136
3225
  msgid "Folder"
3226
  msgstr ""
3227
 
3228
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3229
+ #: src/methods/googledrive.php:1046
3230
  msgid "%s download: failed: file not found"
3231
  msgstr ""
3232
 
3233
+ #: src/addons/googlecloud.php:635, src/methods/googledrive.php:428
3234
  msgid "Name: %s."
3235
  msgstr ""
3236
 
3237
+ #: src/methods/googledrive.php:186
3238
  msgid "Google Drive list files: failed to access parent folder"
3239
  msgstr ""
3240
 
3259
  msgid "Fetch"
3260
  msgstr ""
3261
 
3262
+ #: src/addons/migrator.php:391,
3263
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
  #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr ""
3273
  msgid "Error - failed to download the file"
3274
  msgstr ""
3275
 
3276
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
3277
  msgid "Rescan local folder for new backup sets"
3278
  msgstr ""
3279
 
3293
  msgid "password/key"
3294
  msgstr ""
3295
 
3296
+ #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
+ #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr ""
3300
 
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr ""
3312
 
3313
+ #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr ""
3316
 
3317
+ #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr ""
3320
 
3321
+ #: src/addons/importer.php:276, src/admin.php:3470,
3322
+ #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr ""
3325
 
3326
+ #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr ""
3329
 
3330
+ #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr ""
3333
 
3334
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3335
  msgid "Rescan remote storage"
3336
  msgstr ""
3337
 
3338
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:39
3339
  msgid "Upload backup files"
3340
  msgstr ""
3341
 
3342
+ #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr ""
3345
 
3351
  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."
3352
  msgstr ""
3353
 
3354
+ #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr ""
3357
 
3359
  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."
3360
  msgstr ""
3361
 
3362
+ #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
3363
  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))."
3364
  msgstr ""
3365
 
3366
+ #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr ""
3389
  msgid "No settings were found"
3390
  msgstr ""
3391
 
3392
+ #: src/class-updraftplus.php:3100
3393
  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."
3394
  msgstr ""
3395
 
3415
  msgid "Remove"
3416
  msgstr ""
3417
 
3418
+ #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr ""
3421
 
3423
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3424
  msgstr ""
3425
 
3426
+ #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  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."
3428
  msgstr ""
3429
 
3430
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr ""
3434
 
3435
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr ""
3438
 
3452
  msgid "Backup created by:"
3453
  msgstr ""
3454
 
3455
+ #: src/udaddons/options.php:485
3456
  msgid "Available to claim on this site"
3457
  msgstr ""
3458
 
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr ""
3504
 
3505
+ #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr ""
3508
 
3509
+ #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr ""
3512
 
3513
+ #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr ""
3516
 
3543
  msgid "Errors occurred:"
3544
  msgstr ""
3545
 
3546
+ #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr ""
3549
 
3571
  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)"
3572
  msgstr ""
3573
 
3574
+ #: src/addons/migrator.php:261
3575
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3576
  msgstr ""
3577
 
3580
  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."
3581
  msgstr ""
3582
 
3583
+ #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr ""
3586
 
3740
  msgid "Authorisation failed (check your credentials)"
3741
  msgstr ""
3742
 
3743
+ #: src/methods/updraftvault.php:568, src/udaddons/options.php:270
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr ""
3746
 
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr ""
3758
 
3759
+ #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr ""
3762
 
3763
+ #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr ""
3766
 
3767
+ #: src/admin.php:2585
3768
  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."
3769
  msgstr ""
3770
 
3820
  msgid "Debugging information"
3821
  msgstr ""
3822
 
3823
+ #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr ""
3826
 
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr ""
3882
 
3883
+ #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr ""
3886
 
3893
  msgstr ""
3894
 
3895
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
+ #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr ""
3899
 
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr ""
3903
 
3904
+ #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr ""
3907
 
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr ""
3976
 
3977
+ #: src/udaddons/options.php:491
3978
  msgid "(or connect using the form on this page if you have already purchased it)"
3979
  msgstr ""
3980
 
3981
+ #: src/udaddons/options.php:477
3982
  msgid "please follow this link to update the plugin in order to activate it"
3983
  msgstr ""
3984
 
3985
+ #: src/udaddons/options.php:474
3986
  msgid "please follow this link to update the plugin in order to get it"
3987
  msgstr ""
3988
 
3989
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
3990
  msgid "latest"
3991
  msgstr ""
3992
 
3993
+ #: src/udaddons/options.php:462
3994
  msgid "Your version: %s"
3995
  msgstr ""
3996
 
3997
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
3998
  msgid "You've got it"
3999
  msgstr ""
4000
 
4001
+ #: src/udaddons/options.php:421
4002
  msgid "UpdraftPlus Support"
4003
  msgstr ""
4004
 
4005
+ #: src/udaddons/options.php:379
4006
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4007
  msgstr ""
4008
 
4009
+ #: src/udaddons/options.php:368, src/udaddons/updraftplus-addons.php:290
4010
  msgid "UpdraftPlus Addons"
4011
  msgstr ""
4012
 
4042
  msgid "Reporting"
4043
  msgstr ""
4044
 
4045
+ #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr ""
4048
 
4070
  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)"
4071
  msgstr ""
4072
 
4073
+ #: src/udaddons/options.php:556
4074
  msgid "Manage Addons"
4075
  msgstr ""
4076
 
4077
+ #: src/udaddons/options.php:492, src/udaddons/options.php:492
4078
  msgid "Buy It"
4079
  msgstr ""
4080
 
4081
+ #: src/udaddons/options.php:491
4082
  msgid "Get it from the UpdraftPlus.Com Store"
4083
  msgstr ""
4084
 
4085
+ #: src/udaddons/options.php:485, src/udaddons/options.php:487
4086
  msgid "activate it on this site"
4087
  msgstr ""
4088
 
4089
+ #: src/udaddons/options.php:487
4090
  msgid "You have an inactive purchase"
4091
  msgstr ""
4092
 
4093
+ #: src/udaddons/options.php:477
4094
  msgid "Assigned to this site"
4095
  msgstr ""
4096
 
4097
+ #: src/udaddons/options.php:474
4098
  msgid "Available for this site (via your all-addons purchase)"
4099
  msgstr ""
4100
 
4101
+ #: src/udaddons/options.php:468
4102
  msgid "(apparently a pre-release or withdrawn release)"
4103
  msgstr ""
4104
 
4105
+ #: src/udaddons/options.php:423
4106
  msgid "Go here"
4107
  msgstr ""
4108
 
4109
+ #: src/udaddons/options.php:423
4110
  msgid "Need to get support?"
4111
  msgstr ""
4112
 
4113
+ #: src/udaddons/options.php:405
4114
  msgid "An error occurred when trying to retrieve your add-ons."
4115
  msgstr ""
4116
 
4117
+ #: src/udaddons/options.php:338
4118
  msgid "An unknown response was received. Response was:"
4119
  msgstr ""
4120
 
4121
+ #: src/udaddons/options.php:337
4122
  msgid "Claim not granted - your account login details were wrong"
4123
  msgstr ""
4124
 
4125
+ #: src/udaddons/options.php:335
4126
  msgid "Please wait whilst we make the claim..."
4127
  msgstr ""
4128
 
4129
+ #: src/udaddons/options.php:288
4130
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4131
  msgstr ""
4132
 
4133
+ #: src/udaddons/options.php:281
4134
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr ""
4136
 
4137
+ #: src/udaddons/options.php:277
4138
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4139
  msgstr ""
4140
 
4141
+ #: src/udaddons/options.php:276
4142
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4143
  msgstr ""
4144
 
4145
+ #: src/udaddons/options.php:247
4146
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4147
  msgstr ""
4148
 
4149
+ #: src/udaddons/options.php:175
4150
  msgid "Forgotten your details?"
4151
  msgstr ""
4152
 
4153
+ #: src/udaddons/options.php:164
4154
  msgid "Not yet got an account (it's free)? Go get one!"
4155
  msgstr ""
4156
 
4157
+ #: src/udaddons/options.php:131
4158
  msgid "Connect with your UpdraftPlus.Com account"
4159
  msgstr ""
4160
 
4194
  msgid "Your web-server does not have the %s module installed."
4195
  msgstr ""
4196
 
4197
+ #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1148
4198
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4199
  msgstr ""
4200
 
4201
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:67
4202
  msgid "Drop backup files here"
4203
  msgstr ""
4204
 
4205
+ #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr ""
4208
 
4243
  msgid "You can send a backup to more than one destination with an add-on."
4244
  msgstr ""
4245
 
4246
+ #: src/admin.php:2803
4247
  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."
4248
  msgstr ""
4249
 
4250
+ #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr ""
4253
 
4288
  msgid "%s settings test result:"
4289
  msgstr ""
4290
 
4291
+ #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr ""
4294
 
4295
+ #: src/admin.php:3542
4296
  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."
4297
  msgstr ""
4298
 
4304
  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)."
4305
  msgstr ""
4306
 
4307
+ #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr ""
4310
 
4311
+ #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr ""
4314
 
4315
+ #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr ""
4318
 
4319
+ #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr ""
4324
 
4325
+ #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr ""
4328
 
4329
+ #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr ""
4332
 
4333
+ #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr ""
4336
 
4337
+ #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr ""
4340
 
4341
+ #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr ""
4344
 
4345
+ #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr ""
4348
 
4349
+ #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr ""
4352
 
4353
+ #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr ""
4356
 
4357
+ #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr ""
4360
 
4361
+ #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr ""
4364
 
4365
+ #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr ""
4368
 
4369
+ #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr ""
4372
 
4373
+ #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr ""
4376
 
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr ""
4392
 
4393
+ #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr ""
4396
 
4404
  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)."
4405
  msgstr ""
4406
 
4407
+ #: src/admin.php:2336
4408
  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)."
4409
  msgstr ""
4410
 
4483
  msgid "Support"
4484
  msgstr ""
4485
 
4486
+ #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr ""
4489
 
4490
+ #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr ""
4493
 
4494
+ #: src/class-updraftplus.php:4774
4495
  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."
4496
  msgstr ""
4497
 
4498
+ #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr ""
4501
 
4502
+ #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr ""
4505
 
4508
  msgid "Be safe with an automatic backup"
4509
  msgstr ""
4510
 
4511
+ #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr ""
4514
 
4556
  msgid "Delete from your web server"
4557
  msgstr ""
4558
 
4559
+ #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr ""
4562
 
4563
+ #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr ""
4566
 
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr ""
4582
 
4583
+ #: src/admin.php:2049
4584
  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?"
4585
  msgstr ""
4586
 
4616
  msgid "No such backup set exists"
4617
  msgstr ""
4618
 
4619
+ #: src/admin.php:1291
4620
  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"
4621
  msgstr ""
4622
 
4632
  msgid "WordPress root directory server path: %s"
4633
  msgstr ""
4634
 
4635
+ #: src/methods/s3.php:851
4636
  msgid "%s end-point"
4637
  msgstr ""
4638
 
4639
+ #: src/methods/s3.php:813
4640
  msgid "... and many more!"
4641
  msgstr ""
4642
 
4643
+ #: src/methods/s3generic.php:52, src/methods/s3generic.php:61
4644
  msgid "S3 (Compatible)"
4645
  msgstr ""
4646
 
4647
+ #: src/admin.php:1205
4648
  msgid "File is not locally present - needs retrieving from remote storage"
4649
  msgstr ""
4650
 
4651
+ #: src/admin.php:3810
4652
  msgid "Looking for %s archive: file name: %s"
4653
  msgstr ""
4654
 
4655
+ #: src/admin.php:3771
4656
  msgid "Final checks"
4657
  msgstr ""
4658
 
4664
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4665
  msgstr ""
4666
 
4667
+ #: src/admin.php:3162
4668
  msgid "Your wp-content directory server path: %s"
4669
  msgstr ""
4670
 
4680
  msgid "Processing files - please wait..."
4681
  msgstr ""
4682
 
4683
+ #: src/admin.php:3956,
4684
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4685
  msgid "Please consult this FAQ for help on what to do about it."
4686
  msgstr ""
4687
 
4688
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27
4689
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4690
  msgstr ""
4691
 
4692
+ #: src/class-updraftplus.php:4682
4693
  msgid "Failed to open database file."
4694
  msgstr ""
4695
 
4696
+ #: src/admin.php:4382
4697
  msgid "Known backups (raw)"
4698
  msgstr ""
4699
 
4705
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4706
  msgstr ""
4707
 
4708
+ #: src/addons/migrator.php:341
4709
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4710
  msgstr ""
4711
 
4712
+ #: src/admin.php:3830
4713
  msgid "file is size:"
4714
  msgstr ""
4715
 
4716
+ #: src/addons/googlecloud.php:941, src/addons/migrator.php:379,
4717
+ #: src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:945,
4718
+ #: src/admin.php:2293, src/backup.php:3043, src/updraftplus.php:156
4719
  msgid "Go here for more information."
4720
  msgstr ""
4721
 
4723
  msgid "Some files are still downloading or being processed - please wait."
4724
  msgstr ""
4725
 
4726
+ #: src/class-updraftplus.php:4746, src/class-updraftplus.php:4764
4727
  msgid "This backup set is from a different site - this is not a restoration, but a migration. You need the Migrator add-on in order to make this work."
4728
  msgstr ""
4729
 
4769
 
4770
  #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219,
4771
  #: src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422,
4772
+ #: src/methods/googledrive.php:1006, src/methods/openstack-base.php:420,
4773
  #: src/methods/stream-base.php:265, src/methods/stream-base.php:272,
4774
  #: src/methods/stream-base.php:285
4775
  msgid "%s Error"
4793
  msgid "%s authentication failed"
4794
  msgstr ""
4795
 
4796
+ #: src/addons/googlecloud.php:432, src/addons/migrator.php:470,
4797
+ #: src/admin.php:1994, src/admin.php:2041, src/admin.php:2049,
4798
  #: src/class-updraftplus.php:886, src/class-updraftplus.php:892,
4799
+ #: src/class-updraftplus.php:4653, src/class-updraftplus.php:4655,
4800
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4804,
4801
+ #: src/class-updraftplus.php:4839, src/methods/googledrive.php:369,
4802
+ #: src/methods/s3.php:321
4803
  msgid "Error: %s"
4804
  msgstr ""
4805
 
4806
+ #: src/admin.php:3099
4807
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4808
  msgstr ""
4809
 
4810
+ #: src/admin.php:3097
4811
  msgid "Backup directory specified does <b>not</b> exist."
4812
  msgstr ""
4813
 
4814
+ #: src/admin.php:2810, src/admin.php:3053
4815
  msgid "Warning: %s"
4816
  msgstr ""
4817
 
4839
  msgid "Warnings encountered:"
4840
  msgstr ""
4841
 
4842
+ #: src/class-updraftplus.php:3194
4843
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4844
  msgstr ""
4845
 
4847
  msgid "Your free disk space is very low - only %s Mb remain"
4848
  msgstr ""
4849
 
4850
+ #: src/addons/migrator.php:478
4851
  msgid "New site:"
4852
  msgstr ""
4853
 
4854
+ #: src/addons/migrator.php:453
4855
  msgid "Migrated site (from UpdraftPlus)"
4856
  msgstr ""
4857
 
4858
+ #: src/addons/migrator.php:400
4859
  msgid "Enter details for where this new site is to live within your multisite install:"
4860
  msgstr ""
4861
 
4862
+ #: src/addons/migrator.php:399
4863
  msgid "Information needed to continue:"
4864
  msgstr ""
4865
 
4866
+ #: src/addons/migrator.php:356
4867
  msgid "Network activating theme:"
4868
  msgstr ""
4869
 
4870
+ #: src/addons/migrator.php:346
4871
  msgid "Processed plugin:"
4872
  msgstr ""
4873
 
4879
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4880
  msgstr ""
4881
 
4882
+ #: src/methods/s3.php:827
4883
  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."
4884
  msgstr ""
4885
 
4886
+ #: src/methods/s3.php:1082
4887
  msgid "Please check your access credentials."
4888
  msgstr ""
4889
 
4890
+ #: src/addons/s3-enhanced.php:179, src/methods/s3.php:1060
4891
  msgid "The error reported by %s was:"
4892
  msgstr ""
4893
 
4895
  msgid "Please supply the requested information, and then continue."
4896
  msgstr ""
4897
 
4898
+ #: src/class-updraftplus.php:4815, src/restorer.php:1706
4899
  msgid "Site information:"
4900
  msgstr ""
4901
 
4903
  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."
4904
  msgstr ""
4905
 
4906
+ #: src/addons/migrator.php:341, src/admin.php:2288,
4907
+ #: src/class-updraftplus.php:4808, src/restorer.php:2033
4908
  msgid "Warning:"
4909
  msgstr ""
4910
 
4911
+ #: src/class-updraftplus.php:4797, src/class-updraftplus.php:4800,
4912
  #: src/restorer.php:154
4913
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4914
  msgstr ""
4915
 
4916
+ #: src/admin.php:3798
4917
  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."
4918
  msgstr ""
4919
 
4920
+ #: src/admin.php:3228, src/methods/updraftvault.php:286
4921
  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."
4922
  msgstr ""
4923
 
4972
  msgid "Also delete from remote storage"
4973
  msgstr ""
4974
 
4975
+ #: src/admin.php:2540
4976
  msgid "Latest UpdraftPlus.com news:"
4977
  msgstr ""
4978
 
4989
  msgid "News"
4990
  msgstr ""
4991
 
4992
+ #: src/admin.php:1469, src/includes/class-wpadmin-commands.php:465
4993
  msgid "Backup set not found"
4994
  msgstr ""
4995
 
5015
  msgid "Testing %s Settings..."
5016
  msgstr ""
5017
 
5018
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
5019
  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."
5020
  msgstr ""
5021
 
5043
  msgid "Store at"
5044
  msgstr ""
5045
 
5046
+ #: src/addons/migrator.php:1388
5047
  msgid "\"%s\" has no primary key, manual change needed on row %s."
5048
  msgstr ""
5049
 
5050
+ #: src/addons/migrator.php:1266
5051
  msgid "rows: %d"
5052
  msgstr ""
5053
 
5054
+ #: src/addons/migrator.php:1142
5055
  msgid "Time taken (seconds):"
5056
  msgstr ""
5057
 
5058
+ #: src/addons/migrator.php:1141, src/admin.php:659
5059
  msgid "Errors:"
5060
  msgstr ""
5061
 
5062
+ #: src/addons/migrator.php:1140
5063
  msgid "SQL update commands run:"
5064
  msgstr ""
5065
 
5066
+ #: src/addons/migrator.php:1139
5067
  msgid "Changes made:"
5068
  msgstr ""
5069
 
5070
+ #: src/addons/migrator.php:1138
5071
  msgid "Rows examined:"
5072
  msgstr ""
5073
 
5074
+ #: src/addons/migrator.php:1137
5075
  msgid "Tables examined:"
5076
  msgstr ""
5077
 
5078
+ #: src/addons/migrator.php:1026
5079
  msgid "Could not get list of tables"
5080
  msgstr ""
5081
 
5082
+ #: src/addons/migrator.php:971
5083
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
5084
  msgstr ""
5085
 
5086
+ #: src/addons/migrator.php:960
5087
  msgid "Nothing to do: the site URL is already: %s"
5088
  msgstr ""
5089
 
5090
+ #: src/addons/migrator.php:924, src/addons/migrator.php:928,
5091
+ #: src/addons/migrator.php:932, src/addons/migrator.php:937,
5092
+ #: src/addons/migrator.php:941, src/addons/migrator.php:946
5093
  msgid "Error: unexpected empty parameter (%s, %s)"
5094
  msgstr ""
5095
 
5096
+ #: src/addons/migrator.php:884
5097
  msgid "Database: search and replace site URL"
5098
  msgstr ""
5099
 
5100
+ #: src/addons/migrator.php:795, src/addons/migrator.php:1123
5101
  msgid "Failed: we did not understand the result returned by the %s operation."
5102
  msgstr ""
5103
 
5104
+ #: src/addons/migrator.php:793, src/addons/migrator.php:1121
5105
  msgid "Failed: the %s operation was not able to start."
5106
  msgstr ""
5107
 
5108
+ #: src/addons/migrator.php:558
5109
  msgid "(learn more)"
5110
  msgstr ""
5111
 
5112
+ #: src/addons/migrator.php:558
5113
  msgid "Search and replace site location in the database (migrate)"
5114
  msgstr ""
5115
 
5116
+ #: src/addons/migrator.php:558
5117
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
5118
  msgstr ""
5119
 
5121
  msgid "Blog uploads"
5122
  msgstr ""
5123
 
5124
+ #: src/addons/migrator.php:385, src/addons/multisite.php:649
5125
  msgid "Must-use plugins"
5126
  msgstr ""
5127
 
5160
  #: src/addons/lockadmin.php:156, src/addons/moredatabase.php:246,
5161
  #: src/addons/sftp.php:431, src/addons/webdav.php:109,
5162
  #: src/methods/openstack2.php:158, src/methods/updraftvault.php:346,
5163
+ #: src/udaddons/options.php:135
5164
  msgid "Password"
5165
  msgstr ""
5166
 
5226
  msgstr ""
5227
 
5228
  #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727,
5229
+ #: src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2864,
5230
+ #: src/admin.php:2899, src/admin.php:2908, src/methods/addon-base-v2.php:289,
5231
  #: src/methods/stream-base.php:301
5232
  msgid "Failed"
5233
  msgstr ""
5252
  #: src/methods/addon-base-v2.php:76, src/methods/addon-base-v2.php:117,
5253
  #: src/methods/addon-base-v2.php:149, src/methods/addon-base-v2.php:195,
5254
  #: src/methods/addon-base-v2.php:269, src/methods/ftp.php:42,
5255
+ #: src/methods/googledrive.php:172, src/methods/googledrive.php:174,
5256
  #: src/methods/stream-base.php:27, src/methods/stream-base.php:144,
5257
  #: src/methods/stream-base.php:150, src/methods/stream-base.php:184,
5258
  #: src/methods/stream-base.php:246
5320
  msgid "You do not appear to be authenticated with Dropbox"
5321
  msgstr ""
5322
 
5323
+ #: src/methods/s3.php:1077
5324
  msgid "The communication with %s was not encrypted."
5325
  msgstr ""
5326
 
5327
+ #: src/methods/s3.php:1075
5328
  msgid "The communication with %s was encrypted."
5329
  msgstr ""
5330
 
5331
+ #: src/addons/googlecloud.php:756, src/methods/s3.php:1072
5332
  msgid "We accessed the bucket, and were able to create files within it."
5333
  msgstr ""
5334
 
5335
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5336
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5337
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
5338
  msgstr ""
5339
 
5340
  #: src/addons/googlecloud.php:750, src/addons/googlecloud.php:764,
5341
+ #: src/methods/s3.php:1070, src/methods/s3.php:1082
5342
  msgid "Failure"
5343
  msgstr ""
5344
 
5345
+ #: src/methods/s3.php:1058
5346
  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)."
5347
  msgstr ""
5348
 
5349
  #: src/addons/s3-enhanced.php:152, src/methods/openstack2.php:144,
5350
+ #: src/methods/s3.php:1052
5351
  msgid "Region"
5352
  msgstr ""
5353
 
5354
  #: src/addons/googlecloud.php:120, src/addons/googlecloud.php:710,
5355
+ #: src/methods/s3.php:1034
5356
  msgid "Failure: No bucket details were given."
5357
  msgstr ""
5358
 
5359
+ #: src/methods/s3.php:1012
5360
  msgid "API secret"
5361
  msgstr ""
5362
 
5363
+ #: src/methods/s3.php:888
5364
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
5365
  msgstr ""
5366
 
5367
+ #: src/methods/s3.php:887
5368
  msgid "%s location"
5369
  msgstr ""
5370
 
5371
+ #: src/methods/s3.php:883
5372
  msgid "%s secret key"
5373
  msgstr ""
5374
 
5375
+ #: src/methods/s3.php:879
5376
  msgid "%s access key"
5377
  msgstr ""
5378
 
5379
+ #: src/methods/s3.php:844
5380
  msgid "If you see errors about SSL certificates, then please go here for help."
5381
  msgstr ""
5382
 
5383
+ #: src/methods/s3.php:842
5384
  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."
5385
  msgstr ""
5386
 
5387
+ #: src/methods/s3.php:462, src/methods/s3.php:574, src/methods/s3.php:646,
5388
+ #: src/methods/s3.php:749
5389
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
5390
  msgstr ""
5391
 
5392
+ #: src/methods/s3.php:732, src/methods/s3.php:742, src/methods/s3.php:778
5393
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
5394
  msgstr ""
5395
 
5396
+ #: src/methods/s3.php:440
5397
  msgid "%s re-assembly error (%s): (see log file for more)"
5398
  msgstr ""
5399
 
5400
+ #: src/methods/s3.php:436
5401
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
5402
  msgstr ""
5403
 
5404
+ #: src/methods/s3.php:420
5405
  msgid "%s chunk %s: upload failed"
5406
  msgstr ""
5407
 
5408
+ #: src/methods/s3.php:410
5409
  msgid "%s error: file %s was shortened unexpectedly"
5410
  msgstr ""
5411
 
5412
+ #: src/methods/s3.php:388
5413
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
5414
  msgstr ""
5415
 
5440
  msgstr ""
5441
 
5442
  #: src/methods/cloudfiles-new.php:173, src/methods/cloudfiles.php:526,
5443
+ #: src/methods/s3.php:1008
5444
  msgid "API key"
5445
  msgstr ""
5446
 
5447
+ #: src/addons/migrator.php:294, src/addons/migrator.php:1880,
5448
  #: src/addons/moredatabase.php:82, src/addons/moredatabase.php:84,
5449
  #: src/addons/moredatabase.php:86, src/addons/sftp.php:485,
5450
  #: src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143,
5454
  #: src/methods/ftp.php:380, src/methods/ftp.php:384,
5455
  #: src/methods/openstack2.php:173, src/methods/openstack2.php:178,
5456
  #: src/methods/openstack2.php:183, src/methods/openstack2.php:188,
5457
+ #: src/methods/s3.php:1008, src/methods/s3.php:1012
5458
  msgid "Failure: No %s was given."
5459
  msgstr ""
5460
 
5461
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5462
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5463
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
5464
  msgstr ""
5465
 
5498
  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."
5499
  msgstr ""
5500
 
5501
+ #: src/admin.php:735, src/methods/backup-module.php:247
5502
  msgid "Test %s Settings"
5503
  msgstr ""
5504
 
5514
  #: src/addons/sftp.php:136, src/addons/sftp.php:148,
5515
  #: src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201,
5516
  #: src/methods/openstack-base.php:81, src/methods/openstack-base.php:280,
5517
+ #: src/methods/s3.php:356, src/methods/s3.php:368, src/methods/s3.php:369
5518
  msgid "%s Error: Failed to upload"
5519
  msgstr ""
5520
 
5521
  #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208,
5522
  #: src/class-updraftplus.php:1016, src/methods/cloudfiles.php:142,
5523
+ #: src/methods/googledrive.php:924, src/methods/googledrive.php:929
5524
  msgid "%s Error: Failed to open local file"
5525
  msgstr ""
5526
 
5536
  msgid "Cloud Files authentication failed"
5537
  msgstr ""
5538
 
5539
+ #: src/addons/googlecloud.php:993, src/methods/googledrive.php:1166
5540
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5541
  msgstr ""
5542
 
5543
  #: src/addons/googlecloud.php:933, src/addons/onedrive.php:974,
5544
+ #: src/methods/googledrive.php:1114
5545
  msgid "Client Secret"
5546
  msgstr ""
5547
 
5548
+ #: src/addons/googlecloud.php:928, src/methods/googledrive.php:1111
5549
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
5550
  msgstr ""
5551
 
5552
  #: src/addons/googlecloud.php:925, src/addons/onedrive.php:970,
5553
+ #: src/methods/googledrive.php:1110
5554
  msgid "Client ID"
5555
  msgstr ""
5556
 
5557
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5558
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
5559
  msgstr ""
5560
 
5561
+ #: src/addons/googlecloud.php:914, src/methods/googledrive.php:1095
5562
  msgid "Select 'Web Application' as the application type."
5563
  msgstr ""
5564
 
5565
+ #: src/addons/googlecloud.php:912, src/methods/googledrive.php:1093
5566
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
5567
  msgstr ""
5568
 
5569
  #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458,
5570
  #: src/methods/dropbox.php:497, src/methods/ftp.php:321,
5571
+ #: src/methods/googledrive.php:1076, src/methods/openstack-base.php:531,
5572
+ #: src/methods/s3.php:802, src/methods/stream-base.php:218
5573
  msgid "%s is a great choice, because UpdraftPlus supports chunked uploads - no matter how big your site is, UpdraftPlus can upload it a little at a time, and not get thwarted by timeouts."
5574
  msgstr ""
5575
 
5576
  #: src/addons/googlecloud.php:499, src/addons/googlecloud.php:500,
5577
+ #: src/addons/googlecloud.php:783, src/methods/googledrive.php:531,
5578
+ #: src/methods/googledrive.php:532, src/methods/googledrive.php:542,
5579
+ #: src/methods/googledrive.php:543
5580
  msgid "Account is not authorized."
5581
  msgstr ""
5582
 
5583
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:501,
5584
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
5585
  #: src/methods/stream-base.php:200
5586
  msgid "Failed to upload to %s"
5587
  msgstr ""
5588
 
5589
+ #: src/methods/googledrive.php:484
5590
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5591
  msgstr ""
5592
 
5593
+ #: src/methods/googledrive.php:575, src/methods/googledrive.php:611
5594
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5595
  msgstr ""
5596
 
5597
  #: src/addons/googlecloud.php:635, src/addons/onedrive.php:794,
5598
+ #: src/methods/googledrive.php:428
5599
  msgid "you have authenticated your %s account."
5600
  msgstr ""
5601
 
5602
  #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756,
5603
  #: src/addons/onedrive.php:794, src/addons/sftp.php:550,
5604
  #: src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582,
5605
+ #: src/methods/googledrive.php:428, src/methods/openstack-base.php:495,
5606
+ #: src/methods/s3.php:1072, src/methods/stream-base.php:312
5607
  msgid "Success"
5608
  msgstr ""
5609
 
5610
  #: src/addons/onedrive.php:748, src/methods/dropbox.php:684,
5611
+ #: src/methods/dropbox.php:693, src/methods/googledrive.php:402
5612
  msgid "Your %s quota usage: %s %% used, %s available"
5613
  msgstr ""
5614
 
5615
+ #: src/addons/googlecloud.php:438, src/methods/googledrive.php:375
5616
  msgid "Authorization failed"
5617
  msgstr ""
5618
 
5619
+ #: src/addons/googlecloud.php:430, src/methods/googledrive.php:367
5620
  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."
5621
  msgstr ""
5622
 
5642
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5643
  msgstr ""
5644
 
5645
+ #: src/addons/migrator.php:1775, src/admin.php:1233, src/admin.php:2867,
5646
+ #: src/admin.php:2901, src/admin.php:2905, src/admin.php:3828,
5647
  #: src/restorer.php:2273, src/restorer.php:2378
5648
  msgid "OK"
5649
  msgstr ""
5652
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5653
  msgstr ""
5654
 
5655
+ #: src/addons/migrator.php:1154, src/restorer.php:2170
5656
  msgid "the database query being run was:"
5657
  msgstr ""
5658
 
5660
  msgid "will restore as:"
5661
  msgstr ""
5662
 
5663
+ #: src/class-updraftplus.php:4786, src/restorer.php:1688,
5664
  #: src/restorer.php:1777, src/restorer.php:1803
5665
  msgid "Old table prefix:"
5666
  msgstr ""
5667
 
5668
  #: src/addons/reporting.php:70, src/addons/reporting.php:169,
5669
+ #: src/backup.php:960, src/class-updraftplus.php:4725
5670
  msgid "Backup of:"
5671
  msgstr ""
5672
 
5738
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5739
  msgstr ""
5740
 
5741
+ #: src/admin.php:3836, src/admin.php:3837
5742
  msgid "Could not find one of the files for restoration"
5743
  msgstr ""
5744
 
5745
+ #: src/admin.php:3946
5746
  msgid "Error message"
5747
  msgstr ""
5748
 
5749
+ #: src/admin.php:3833
5750
  msgid "The backup records do not contain information about the proper size of this file."
5751
  msgstr ""
5752
 
5753
+ #: src/admin.php:3825
5754
  msgid "Archive is expected to be size:"
5755
  msgstr ""
5756
 
5757
+ #: src/admin.php:3722
5758
  msgid "If making a request for support, please include this information:"
5759
  msgstr ""
5760
 
5761
+ #: src/admin.php:3721
5762
  msgid "ABORT: Could not find the information on which entities to restore."
5763
  msgstr ""
5764
 
5765
+ #: src/admin.php:3676
5766
  msgid "UpdraftPlus Restoration: Progress"
5767
  msgstr ""
5768
 
5769
+ #: src/admin.php:3628
5770
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5771
  msgstr ""
5772
 
5773
+ #: src/admin.php:3570
5774
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5775
  msgstr ""
5776
 
5777
+ #: src/admin.php:3579
5778
  msgid "Delete this backup set"
5779
  msgstr ""
5780
 
5781
+ #: src/admin.php:3240
5782
  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."
5783
  msgstr ""
5784
 
5785
+ #: src/admin.php:3237
5786
  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."
5787
  msgstr ""
5788
 
5789
+ #: src/admin.php:3235
5790
  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)."
5791
  msgstr ""
5792
 
5793
  #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468,
5794
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:831
5795
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5796
  msgstr ""
5797
 
5827
  msgid "Use the server's SSL certificates"
5828
  msgstr ""
5829
 
5830
+ #: src/admin.php:3101
5831
  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."
5832
  msgstr ""
5833
 
5834
+ #: src/admin.php:3101
5835
  msgid "click here"
5836
  msgstr ""
5837
 
5838
+ #: src/admin.php:3101
5839
  msgid "or, to reset this option"
5840
  msgstr ""
5841
 
5842
+ #: src/admin.php:3101
5843
  msgid "Follow this link to attempt to create the directory and set the permissions"
5844
  msgstr ""
5845
 
5846
+ #: src/admin.php:3093
5847
  msgid "Backup directory specified is writable, which is good."
5848
  msgstr ""
5849
 
5883
  msgid "Cancel"
5884
  msgstr ""
5885
 
5886
+ #: src/addons/reporting.php:233, src/admin.php:3384
5887
  msgid "None"
5888
  msgstr ""
5889
 
5900
  msgstr ""
5901
 
5902
  #: src/templates/wp-admin/settings/form-contents.php:285,
5903
+ #: src/udaddons/options.php:133
5904
  msgid "Email"
5905
  msgstr ""
5906
 
5908
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5909
  msgstr ""
5910
 
5911
+ #: src/addons/morefiles.php:443, src/admin.php:3171
5912
  msgid "Exclude these:"
5913
  msgstr ""
5914
 
5915
+ #: src/admin.php:3162
5916
  msgid "Any other directories found inside wp-content"
5917
  msgstr ""
5918
 
5928
  msgid "To fix the time at which a backup should take place,"
5929
  msgstr ""
5930
 
5931
+ #: src/admin.php:3087
5932
  msgid "Monthly"
5933
  msgstr ""
5934
 
5935
+ #: src/admin.php:3086
5936
  msgid "Fortnightly"
5937
  msgstr ""
5938
 
5939
+ #: src/admin.php:3085
5940
  msgid "Weekly"
5941
  msgstr ""
5942
 
5943
+ #: src/admin.php:3084
5944
  msgid "Daily"
5945
  msgstr ""
5946
 
5947
+ #: src/admin.php:694, src/admin.php:3067
5948
  msgid "Download log file"
5949
  msgstr ""
5950
 
5951
+ #: src/admin.php:2964
5952
  msgid "The folder exists, but your webserver does not have permission to write to it."
5953
  msgstr ""
5954
 
5955
+ #: src/admin.php:2959
5956
  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"
5957
  msgstr ""
5958
 
5959
+ #: src/admin.php:2945
5960
  msgid "The request to the filesystem to create the directory failed."
5961
  msgstr ""
5962
 
5963
+ #: src/addons/migrator.php:2253, src/admin.php:688, src/admin.php:2861,
5964
+ #: src/admin.php:2894, src/admin.php:3579,
5965
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:5
5966
  msgid "Delete"
5967
  msgstr ""
5968
 
5969
+ #: src/admin.php:2645
5970
  msgid "(None)"
5971
  msgstr ""
5972
 
5973
+ #: src/admin.php:2801
5974
  msgid "show log"
5975
  msgstr ""
5976
 
6075
  msgid "Multisite"
6076
  msgstr ""
6077
 
6078
+ #: src/admin.php:2464
6079
  msgid "Go here for help."
6080
  msgstr ""
6081
 
6132
  msgid "Download error: the server sent us a response which we did not understand."
6133
  msgstr ""
6134
 
6135
+ #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:780,
6136
+ #: src/addons/migrator.php:1026, src/addons/migrator.php:1107,
6137
+ #: src/addons/migrator.php:1154, src/addons/migrator.php:1388,
6138
+ #: src/addons/migrator.php:1714, src/addons/migrator.php:1741,
6139
+ #: src/addons/migrator.php:1747, src/addons/migrator.php:1809,
6140
+ #: src/addons/migrator.php:1849, src/addons/migrator.php:1888,
6141
+ #: src/addons/migrator.php:1898, src/addons/migrator.php:1903,
6142
  #: src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132,
6143
  #: src/addons/s3-enhanced.php:134, src/addons/sftp.php:814,
6144
  #: src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662,
6145
+ #: src/admin.php:3830, src/admin.php:3860, src/methods/remotesend.php:71,
6146
  #: src/methods/remotesend.php:239, src/methods/updraftvault.php:465,
6147
  #: src/restorer.php:1408
6148
  msgid "Error:"
6149
  msgstr ""
6150
 
6151
  #: src/admin.php:653,
6152
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6153
  msgid "calculating..."
6154
  msgstr ""
6155
 
6156
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:56
6157
  msgid "UpdraftPlus - Upload backup files"
6158
  msgstr ""
6159
 
6160
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6161
  msgid "refresh"
6162
  msgstr ""
6163
 
6164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6165
  msgid "Web-server disk space in use by UpdraftPlus"
6166
  msgstr ""
6167
 
6168
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
6169
  msgid "This is a count of the contents of your Updraft directory"
6170
  msgstr ""
6171
 
6172
+ #: src/addons/google-enhanced.php:84, src/methods/googledrive.php:172,
6173
+ #: src/methods/googledrive.php:174, src/methods/googledrive.php:428,
6174
+ #: src/methods/googledrive.php:455, src/methods/googledrive.php:484,
6175
+ #: src/methods/googledrive.php:491, src/methods/googledrive.php:501,
6176
+ #: src/methods/googledrive.php:507, src/methods/googledrive.php:509,
6177
+ #: src/methods/googledrive.php:1075, src/methods/googledrive.php:1087,
6178
+ #: src/methods/googledrive.php:1087, src/methods/googledrive.php:1110,
6179
+ #: src/methods/googledrive.php:1114, src/methods/googledrive.php:1126,
6180
+ #: src/methods/googledrive.php:1136, src/methods/googledrive.php:1149
6181
  msgid "Google Drive"
6182
  msgstr ""
6183
 
6184
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6185
  msgid "If you are using this, then turn Turbo/Road mode off."
6186
  msgstr ""
6187
 
6188
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:47
6189
  msgid "Opera web browser"
6190
  msgstr ""
6191
 
6192
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:35
6193
  msgid "More tasks:"
6194
  msgstr ""
6195
 
6196
+ #: src/admin.php:2564
6197
  msgid "Download most recently modified log file"
6198
  msgstr ""
6199
 
6200
+ #: src/admin.php:2523, src/admin.php:2529, src/central/bootstrap.php:169
6201
  msgid "(Nothing yet logged)"
6202
  msgstr ""
6203
 
6204
  #: src/addons/autobackup.php:325, src/addons/autobackup.php:420,
6205
+ #: src/admin.php:2522, src/admin.php:2527
6206
  msgid "Last log message"
6207
  msgstr ""
6208
 
6209
+ #: src/addons/migrator.php:232, src/admin.php:693, src/admin.php:3570,
6210
  #: src/templates/wp-admin/settings/tab-status.php:30
6211
  msgid "Restore"
6212
  msgstr ""
6216
  msgid "Backup Now"
6217
  msgstr ""
6218
 
6219
+ #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247,
6220
+ #: src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3359,
6221
+ #: src/admin.php:3439, src/admin.php:3914,
6222
  #: src/includes/class-wpadmin-commands.php:147,
6223
  #: src/includes/class-wpadmin-commands.php:480,
6224
  #: src/templates/wp-admin/settings/delete-and-restore-modals.php:81,
6226
  msgid "Database"
6227
  msgstr ""
6228
 
6229
+ #: src/admin.php:295, src/admin.php:4388
6230
  msgid "Files"
6231
  msgstr ""
6232
 
6254
  msgid "JavaScript warning"
6255
  msgstr ""
6256
 
6257
+ #: src/admin.php:673, src/admin.php:2591
6258
  msgid "Delete Old Directories"
6259
  msgstr ""
6260
 
6261
+ #: src/admin.php:2336
6262
  msgid "Current limit is:"
6263
  msgstr ""
6264
 
6265
+ #: src/admin.php:2310
6266
  msgid "Your backup has been restored."
6267
  msgstr ""
6268
 
6274
  msgid "Lead developer's homepage"
6275
  msgstr ""
6276
 
6277
+ #: src/admin.php:4308
6278
  msgid "Your settings have been wiped."
6279
  msgstr ""
6280
 
6281
+ #: src/admin.php:2270
6282
  msgid "Backup directory successfully created."
6283
  msgstr ""
6284
 
6285
+ #: src/admin.php:2263
6286
  msgid "Backup directory could not be created"
6287
  msgstr ""
6288
 
6289
+ #: src/admin.php:2833
6290
  msgid "Old directory removal failed for some reason. You may want to do this manually."
6291
  msgstr ""
6292
 
6293
+ #: src/admin.php:2831
6294
  msgid "Old directories successfully removed."
6295
  msgstr ""
6296
 
6297
+ #: src/admin.php:2828, src/admin.php:2828
6298
  msgid "Remove old directories"
6299
  msgstr ""
6300
 
6301
+ #: src/addons/migrator.php:297, src/addons/migrator.php:312,
6302
+ #: src/admin.php:2212, src/admin.php:2221, src/admin.php:2230,
6303
+ #: src/admin.php:2272, src/admin.php:2835
6304
  msgid "Return to UpdraftPlus Configuration"
6305
  msgstr ""
6306
 
6307
+ #: src/admin.php:666, src/admin.php:2212, src/admin.php:2221,
6308
+ #: src/admin.php:2230, src/admin.php:2272, src/admin.php:2835,
6309
  #: src/templates/wp-admin/settings/existing-backups-table.php:16
6310
  msgid "Actions"
6311
  msgstr ""
6312
 
6313
+ #: src/admin.php:2131
6314
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
6315
  msgstr ""
6316
 
6317
+ #: src/admin.php:2041
6318
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
6319
  msgstr ""
6320
 
6321
+ #: src/admin.php:1922
6322
  msgid "No local copy present."
6323
  msgstr ""
6324
 
6325
+ #: src/admin.php:1919
6326
  msgid "Download in progress"
6327
  msgstr ""
6328
 
6329
+ #: src/admin.php:665, src/admin.php:1908
6330
  msgid "File ready."
6331
  msgstr ""
6332
 
6333
+ #: src/admin.php:1889
6334
  msgid "Download failed"
6335
  msgstr ""
6336
 
6337
+ #: src/admin.php:663, src/admin.php:1241, src/admin.php:1668,
6338
  #: src/class-updraftplus.php:1157, src/class-updraftplus.php:1201,
6339
  #: src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100,
6340
  #: src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225,
6343
  msgid "Error"
6344
  msgstr ""
6345
 
6346
+ #: src/admin.php:1696
6347
  msgid "Could not find that job - perhaps it has already finished?"
6348
  msgstr ""
6349
 
6350
+ #: src/admin.php:1688
6351
  msgid "Job deleted"
6352
  msgstr ""
6353
 
6354
+ #: src/admin.php:1772
6355
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
6356
  msgstr ""
6357
 
6376
  msgstr ""
6377
 
6378
  #: src/admin.php:941, src/admin.php:945, src/admin.php:949, src/admin.php:953,
6379
+ #: src/admin.php:957, src/admin.php:966, src/admin.php:3228,
6380
+ #: src/admin.php:3235, src/admin.php:3237, src/methods/cloudfiles-new.php:107,
6381
  #: src/methods/cloudfiles.php:468, src/methods/ftp.php:309,
6382
+ #: src/methods/openstack-base.php:541, src/methods/s3.php:827,
6383
+ #: src/methods/s3.php:831, src/methods/updraftvault.php:286,
6384
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:27,
6385
  #: src/udaddons/updraftplus-addons.php:242
6386
  msgid "Warning"
6387
  msgstr ""
6411
  msgid "Like UpdraftPlus and can spare one minute?"
6412
  msgstr ""
6413
 
6414
+ #: src/addons/azure.php:217, src/class-updraftplus.php:4449,
6415
+ #: src/methods/googledrive.php:1006, src/methods/s3.php:321
6416
  msgid "File not found"
6417
  msgstr ""
6418
 
6419
+ #: src/class-updraftplus.php:4356
6420
  msgid "The decryption key used:"
6421
  msgstr ""
6422
 
6423
+ #: src/class-updraftplus.php:4356, src/class-updraftplus.php:4665,
6424
  #: src/restorer.php:389
6425
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
6426
  msgstr ""
6427
 
6428
+ #: src/class-updraftplus.php:4337, src/class-updraftplus.php:4653,
6429
  #: src/restorer.php:376
6430
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
6431
  msgstr ""
6434
  msgid "Could not open the backup file for writing"
6435
  msgstr ""
6436
 
6437
+ #: src/class-updraftplus.php:3731
6438
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
6439
  msgstr ""
6440
 
6441
+ #: src/class-updraftplus.php:3691
6442
  msgid "Could not read the directory"
6443
  msgstr ""
6444
 
6445
+ #: src/admin.php:1959, src/backup.php:1157
6446
  msgid "Backup directory (%s) is not writable, or does not exist."
6447
  msgstr ""
6448
 
6450
  msgid "WordPress backup is complete"
6451
  msgstr ""
6452
 
6453
+ #: src/class-updraftplus.php:3203
6454
  msgid "The backup attempt has finished, apparently unsuccessfully"
6455
  msgstr ""
6456
 
6457
+ #: src/class-updraftplus.php:3188
6458
  msgid "The backup apparently succeeded and is now complete"
6459
  msgstr ""
6460
 
6486
  msgid "No log files were found."
6487
  msgstr ""
6488
 
6489
+ #: src/admin.php:1841, src/admin.php:1845, src/class-updraftplus.php:516
6490
  msgid "The log file could not be read."
6491
  msgstr ""
6492
 
languages/updraftplus-da_DK.mo CHANGED
Binary file
languages/updraftplus-da_DK.po CHANGED
@@ -11,20 +11,48 @@ msgstr ""
11
  "Language: da_DK\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/addons/sftp.php:346
15
- msgid "UpdraftPlus debug mode is on: detailed debugging data follows.n"
16
  msgstr ""
17
 
18
  #: src/admin.php:740
19
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
20
  msgstr ""
21
 
22
- #: src/admin.php:1234, src/admin.php:3881, src/class-updraftplus.php:2095,
23
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
24
  msgid "A PHP fatal error (%s) has occurred: %s"
25
  msgstr ""
26
 
27
- #: src/admin.php:1227, src/admin.php:3873, src/class-updraftplus.php:2088,
28
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
29
  msgid "A PHP exception (%s) has occurred: %s"
30
  msgstr ""
@@ -41,9 +69,9 @@ msgstr ""
41
  msgid "North-east Asia"
42
  msgstr ""
43
 
44
- #: src/udaddons/options.php:115
45
- msgid "Your web server's version of PHP is too old (.phpversion.) - 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"
46
- msgstr "Din web-servers version af PHP er for gammel (.phpversion.) - UpdraftPlus forventer mindst %s. Du kan prøve det, men vær ikke overrasket, hvis det ikke virker. For at løse dette problem skal du kontakte dit webhostingsfirma"
47
 
48
  #: src/templates/wp-admin/settings/tab-status.php:80
49
  msgid "Remote storage authentication"
@@ -69,18 +97,6 @@ msgstr "Fjernlager"
69
  msgid "Select Files"
70
  msgstr "Vælg filer"
71
 
72
- #: src/methods/updraftvault.php:346
73
- msgid "__Password"
74
- msgstr "__Adgangskode"
75
-
76
- #: src/methods/updraftvault.php:345
77
- msgid "__E-mail"
78
- msgstr "__E-mail"
79
-
80
- #: src/methods/openstack-base.php:420
81
- msgid "Error downloading remote file: Failed to download. (.$e->getMessage.)"
82
- msgstr "Fejl ved download af fjernlager fil: Kunne ikke downloade. (.$e>getMessage.)"
83
-
84
  #: src/methods/cloudfiles.php:497
85
  msgid "Rackspace Storage Region"
86
  msgstr "Rackspace Storage Region"
@@ -93,23 +109,15 @@ msgstr "Få mere at vide om vores revolutionerende nye WordPress-plugin."
93
  msgid "Instant and secure logon with a wave of your phone."
94
  msgstr "Øjeblikkelig og sikker logon ved hjælp af din telefon."
95
 
96
- #: src/class-updraftplus.php:946
97
- msgid "$pre_line"
98
- msgstr "$pre_line"
99
-
100
  #: src/backup.php:1907
101
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
102
  msgstr "Som tidligere oplyst (se:%s), er kryptering ikke længere en mulighed i den gratis udgave af UpdraftPlus"
103
 
104
- #: src/admin.php:4362
105
  msgid "Value"
106
  msgstr "Værdi"
107
 
108
- #: src/admin.php:3543
109
- msgid "No backup log)"
110
- msgstr "Ingen backup log)"
111
-
112
- #: src/admin.php:1479
113
  msgid "Did not know how to delete from this cloud service."
114
  msgstr "Ved ikke, hvordan der slettes fra denne cloud service."
115
 
@@ -125,7 +133,7 @@ msgstr ""
125
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
126
  msgstr ""
127
 
128
- #: src/templates/wp-admin/settings/existing-backups-table.php:69
129
  msgid "Stored at: %s"
130
  msgstr "Lagret på: %s"
131
 
@@ -133,11 +141,11 @@ msgstr "Lagret på: %s"
133
  msgid "Cloud Files"
134
  msgstr "Cloud filer"
135
 
136
- #: src/admin.php:4207
137
  msgid "Your settings failed to save. Please refresh the settings page and try again"
138
  msgstr "Dine indstillinger kunne ikke gemmes. Opdater siden for indstillingerne og prøv igen."
139
 
140
- #: src/admin.php:4166
141
  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."
142
  msgstr ""
143
 
@@ -154,7 +162,7 @@ msgstr "arkiv"
154
  msgid "Extra database"
155
  msgstr "Ekstra database"
156
 
157
- #: src/admin.php:3436
158
  msgid "Press here to download or browse"
159
  msgstr "Klik her for at downloade eller gennemse"
160
 
@@ -198,15 +206,15 @@ msgstr "Gennemse indhold"
198
  msgid "Skipped tables:"
199
  msgstr "Kasserede tabeller:"
200
 
201
- #: src/class-updraftplus.php:4764
202
  msgid "This database backup has the following WordPress tables excluded: %s"
203
  msgstr "Denne database backup har følgende WordPress udelukkede tabeller:%s"
204
 
205
- #: src/admin.php:2422
206
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
207
  msgstr "Med UpdraftPlus Premium kan du vælge at sikkerhedskopiere ikke-WordPress-tabeller, eller kun tage backup af udvalgte tabeller og endelig også at sikkerhedskopiere andre databaser."
208
 
209
- #: src/admin.php:2422
210
  msgid "All WordPress tables will be backed up."
211
  msgstr "Alle WordPress tabeller vil blive sikkerhedskopieret."
212
 
@@ -706,7 +714,7 @@ msgstr "Behandler tabel (%s)"
706
  msgid "Backup of: %s"
707
  msgstr "Backup af: %s"
708
 
709
- #: src/methods/googledrive.php:243
710
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
711
  msgstr "Klienten er blevet slettet fra Google Drive API-konsollen. Opret venligst et nyt Google Drive projekt og genopret forbindelsen med UpdraftPlus."
712
 
@@ -734,11 +742,11 @@ msgstr "Hvis ikke, skal du enten fjerne data fra denne tabel, eller kontakte dit
734
  msgid "You have selected a remote storage option which has an authorization step to complete:"
735
  msgstr "Du har valgt en ekstern lagerløsning, der har et tilladelses-step for at fuldføre:"
736
 
737
- #: src/admin.php:1531
738
  msgid "Remote files deleted:"
739
  msgstr "Slettede eksterne filer:"
740
 
741
- #: src/admin.php:1530
742
  msgid "Local files deleted:"
743
  msgstr "Slettede lokale filer:"
744
 
@@ -807,7 +815,7 @@ msgstr "Fjern enhver blok her."
807
  msgid "An error response was received; HTTP code:"
808
  msgstr "En fejlmeddelelse blev modtaget; HTTP kode:"
809
 
810
- #: src/includes/class-commands.php:325
811
  msgid "%s add-on not found"
812
  msgstr "%s add-on blev ikke fundet"
813
 
@@ -819,11 +827,11 @@ msgstr "eller at gendanne manuelt"
819
  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"
820
  msgstr "Dette gør time-outs langt mere sandsynligt. Det anbefales at slå safe mode fra, eller kun at gendanne én enhed ad gangen"
821
 
822
- #: src/admin.php:2247
823
  msgid "To fix this problem go here."
824
  msgstr "Løs dette problem her."
825
 
826
- #: src/admin.php:2247
827
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
828
  msgstr "OptimizePress 2.0 koder dens indhold, så søg/erstat virker ikke."
829
 
@@ -859,11 +867,11 @@ msgstr "Denne WebDAV URL genereres ved at udfylde nedenstående muligheder. Hvis
859
  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."
860
  msgstr "Ingen respons data blev modtaget. Dette indikerer normalt et netværksforbindelseproblem (fx en udgående firewall eller et overbelastet netværk) mellem dette websted og UpdraftPlus.com."
861
 
862
- #: src/methods/s3.php:1052
863
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
864
  msgstr "AWS adgangskoden er tilsyneladende forkert (gyldige %s adgangskoder begynder med \"AK\")"
865
 
866
- #: src/methods/s3.php:120
867
  msgid "No settings were found - please go to the Settings tab and check your settings"
868
  msgstr "Indstillinger blev ikke fundet - Gå venligst til Indstillinger knappen og kontroller dine indstillinger"
869
 
@@ -911,49 +919,49 @@ msgstr "Kunne ikke åbne bibliotek (tjek fil-tilladelser og -ejerskab): %s"
911
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
912
  msgstr "%s: Ulæselig fil - kunne ikke sikkerhedskopieres (check fil-tilladelser og -ejerskab)"
913
 
914
- #: src/addons/migrator.php:2210
915
  msgid "Create key"
916
  msgstr "Opret nøgle"
917
 
918
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:513
919
  msgid "slower, strongest"
920
  msgstr "langsomere, stærkest"
921
 
922
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
923
  msgid "recommended"
924
  msgstr "anbefalet"
925
 
926
- #: src/addons/migrator.php:2206, src/central/bootstrap.php:512
927
  msgid "%s bytes"
928
  msgstr "%s bytes"
929
 
930
- #: src/addons/migrator.php:2205, src/central/bootstrap.php:511
931
  msgid "faster (possibility for slow PHP installs)"
932
  msgstr "hurtigere (mulighed for langsomme PHP installationer)"
933
 
934
- #: src/addons/migrator.php:2204, src/central/bootstrap.php:510
935
  msgid "easy to break, fastest"
936
  msgstr "let at bryde, hurtigst"
937
 
938
- #: src/addons/migrator.php:2204, src/addons/migrator.php:2205,
939
- #: src/addons/migrator.php:2207, src/central/bootstrap.php:510,
940
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
941
  msgid "%s bits"
942
  msgstr "%s bits"
943
 
944
- #: src/addons/migrator.php:2202, src/central/bootstrap.php:508
945
  msgid "Encryption key size:"
946
  msgstr "Krypterings-nøglens størrelse:"
947
 
948
- #: src/addons/migrator.php:2200
949
  msgid "Enter your chosen name"
950
  msgstr "Indtast dit valgte navn"
951
 
952
- #: src/addons/migrator.php:2199
953
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
954
  msgstr "Opret en nøgle: Giv denne nøgle et unikt navn (som f.eks antyder det site, den er til), og tryk derefter på \"Opret Nøgle\":"
955
 
956
- #: src/methods/googledrive.php:486
957
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
958
  msgstr "Upload forventes at svigte: %s grænsen for en enkelt fil er %s, mens denne fil er %s GB (%d bytes)"
959
 
@@ -993,7 +1001,7 @@ msgstr "UpdraftPlus vil opdele backup arkiver, når de overskrider denne filstø
993
  msgid "Now"
994
  msgstr "Nu"
995
 
996
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
997
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
998
  msgstr "Du bør frigøre %s for at pæne permalinks (f.eks. %s) kan virke"
999
 
@@ -1115,23 +1123,23 @@ msgstr "En UpdraftCentral forbindelse blev oprettet med succes."
1115
  msgid "UpdraftCentral Connection"
1116
  msgstr "UpdraftCentral Connection"
1117
 
1118
- #: src/backup.php:867, src/class-updraftplus.php:3094
1119
  msgid "The backup was aborted by the user"
1120
  msgstr "Backup'en blev afbrudt af brugeren"
1121
 
1122
- #: src/admin.php:4202
1123
  msgid "Your settings have been saved."
1124
  msgstr "Dine indstillinger er gemt"
1125
 
1126
- #: src/admin.php:3330
1127
  msgid "Total backup size:"
1128
  msgstr "Total backup-størrelse:"
1129
 
1130
- #: src/admin.php:2744
1131
  msgid "stop"
1132
  msgstr "stoppe"
1133
 
1134
- #: src/admin.php:2582
1135
  msgid "The backup has finished running"
1136
  msgstr "Denne backup er færdig"
1137
 
@@ -1153,7 +1161,7 @@ msgstr "disse backup sæt"
1153
  msgid "this backup set"
1154
  msgstr "dette backup sæt"
1155
 
1156
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:33
1157
  msgid "calculate"
1158
  msgstr "Beregn"
1159
 
@@ -1197,19 +1205,19 @@ msgstr "Uventet fejl: Ingen klasse '%s' blev fundet (der er sandsynligvis fejl p
1197
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1198
  msgstr "Det nødvendige %s PHP modul er ikke installeret - bed din webudbyder om at aktivere det."
1199
 
1200
- #: src/class-updraftplus.php:4679, src/restorer.php:1700
1201
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1202
  msgstr "For at importere et almindeligt WordPress site til en multisite installation kræves %s."
1203
 
1204
- #: src/class-updraftplus.php:4675
1205
  msgid "Please read this link for important information on this process."
1206
  msgstr "Venligst læs dette link for vigtig information om processen."
1207
 
1208
- #: src/class-updraftplus.php:4675
1209
  msgid "It will be imported as a new site."
1210
  msgstr "Vil blive importeret som et nyt site."
1211
 
1212
- #: src/admin.php:2395, src/templates/wp-admin/notices/horizontal-notice.php:16,
1213
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1214
  msgid "Dismiss"
1215
  msgstr "Luk"
@@ -1234,40 +1242,40 @@ msgstr "Allle sider"
1234
  msgid "Which site to restore"
1235
  msgstr "Hvilket site at gendanne"
1236
 
1237
- #: src/addons/migrator.php:506, src/addons/migrator.php:507
1238
  msgid "Error when creating new site at your chosen address:"
1239
  msgstr "Der opsted fejl oprettelse af nyt site på din valgte adresse:"
1240
 
1241
- #: src/addons/migrator.php:448
1242
  msgid "Required information for restoring this backup was not given (%s)"
1243
  msgstr "Der blev ikke givet nødvendige oplysninger for at kunne genskabe denne sikkerhedskopi (%s)"
1244
 
1245
- #: src/addons/migrator.php:407
1246
  msgid "Attribute imported content to user"
1247
  msgstr "Egenskabs importeret indhold til bruger"
1248
 
1249
- #: src/addons/migrator.php:397, src/addons/migrator.php:399
1250
  msgid "You must use lower-case letters or numbers for the site path, only."
1251
  msgstr "Du skal bruge små bogstaver eller tal i websitets sti."
1252
 
1253
- #: src/addons/migrator.php:385
1254
  msgid "This feature is not compatible with %s"
1255
  msgstr "Denne funktion er ikke kompatibel med %s"
1256
 
1257
- #: src/addons/migrator.php:383, src/addons/migrator.php:385
1258
  msgid "Importing a single site into a multisite install"
1259
  msgstr "Importerer et single site til en multisite installation"
1260
 
1261
- #: src/addons/migrator.php:374
1262
  msgid "other content from wp-content"
1263
  msgstr "andet indhold end wp-indhold"
1264
 
1265
- #: src/addons/migrator.php:371
1266
  msgid "WordPress core"
1267
  msgstr "WordPress core"
1268
 
1269
- #: src/addons/migrator.php:371, src/addons/migrator.php:374,
1270
- #: src/addons/migrator.php:377
1271
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1272
  msgstr "Du valgte at %s skal indgå i gendannelsen - det kan ikke / bør ikke ske ved import af et enkelt site til et netværk."
1273
 
@@ -1275,11 +1283,11 @@ msgstr "Du valgte at %s skal indgå i gendannelsen - det kan ikke / bør ikke sk
1275
  msgid "Call WordPress action:"
1276
  msgstr "Udfør WordPress handling:"
1277
 
1278
- #: src/admin.php:2430
1279
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1280
  msgstr "Dine gemte indstillinger påvirker også, hvad der oprettes back up af - f.eks. udelukkes filer."
1281
 
1282
- #: src/admin.php:3748
1283
  msgid "Skipping: this archive was already restored."
1284
  msgstr "Stopper: Dette arkiv er allerede genskabt."
1285
 
@@ -1311,51 +1319,51 @@ msgstr "Du skal derefter indtaste alle dine indstillinger igen. Du kan også gø
1311
  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)."
1312
  msgstr "Denne knap vil slette alle UpdraftPlus indstillinger og information om igangværende sikkerhedskopier (men ikke slette eksisterende sikkerhedskopier i din sky)."
1313
 
1314
- #: src/admin.php:4079
1315
  msgid "Send this backup to remote storage"
1316
  msgstr "Send denne backup til fjernlager"
1317
 
1318
- #: src/admin.php:4077
1319
  msgid "Check out UpdraftPlus Vault."
1320
  msgstr "Se UpdraftPlus Vault"
1321
 
1322
- #: src/admin.php:4077
1323
  msgid "Not got any remote storage?"
1324
  msgstr "Har du ikke et fjernlager?"
1325
 
1326
- #: src/admin.php:4077
1327
  msgid "settings"
1328
  msgstr "Indstillinger"
1329
 
1330
- #: src/admin.php:4077
1331
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1332
  msgstr "Backup vil ikke blive sendt til noget lager - Intet er blevet gemt i %s"
1333
 
1334
- #: src/admin.php:2428
1335
  msgid "Include any files in the backup"
1336
  msgstr "Medtag alle filer i backup'en"
1337
 
1338
- #: src/admin.php:2414
1339
  msgid "Include the database in the backup"
1340
  msgstr "Medtag databasen i backup'en"
1341
 
1342
- #: src/admin.php:2394
1343
  msgid "Continue restoration"
1344
  msgstr "Fortsæt gendannelse"
1345
 
1346
- #: src/admin.php:2389
1347
  msgid "You have an unfinished restoration operation, begun %s ago."
1348
  msgstr "Du har en ufærdig gendannelses-operation, påbegyndt for %s siden."
1349
 
1350
- #: src/admin.php:2388
1351
  msgid "Unfinished restoration"
1352
  msgstr "Ufærdig gendannelse"
1353
 
1354
- #: src/admin.php:2386
1355
  msgid "%s minutes, %s seconds"
1356
  msgstr "%s minutter, %s sekunder"
1357
 
1358
- #: src/admin.php:2333
1359
  msgid "Backup Contents And Schedule"
1360
  msgstr "Backup Indhold og Tidspland"
1361
 
@@ -1363,7 +1371,7 @@ msgstr "Backup Indhold og Tidspland"
1363
  msgid "Premium / Extensions"
1364
  msgstr "Premium / Udvidelser"
1365
 
1366
- #: src/admin.php:2113, src/admin.php:2122
1367
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1368
  msgstr "Tilstrækkelige informationer om den igangværende genskabelse kunne ikke findes."
1369
 
@@ -1510,7 +1518,7 @@ msgstr "Kunne ikke oprette beholderen"
1510
  msgid "Could not access container"
1511
  msgstr "Kunne ikke tilgå mappe"
1512
 
1513
- #: src/class-updraftplus.php:3111
1514
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1515
  msgstr "For at fuldføre din migrering/kloning, bør du nu logge ind på det eksterne site og genoprette backup sættet."
1516
 
@@ -1635,11 +1643,11 @@ msgstr "Vælg alle"
1635
  msgid "Actions upon selected backups"
1636
  msgstr "Handlinger for udvalgte backups"
1637
 
1638
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
1639
  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)."
1640
  msgstr "Tryk her for at se dit fjernlagers muligheder ved eventuelle eksisterende backup sæt (fra ethvert websted, hvis de opbevares i samme mappe)."
1641
 
1642
- #: src/admin.php:1529
1643
  msgid "Backup sets removed:"
1644
  msgstr "Backup sæt fjernet:"
1645
 
@@ -1691,15 +1699,15 @@ msgstr "Dette problem er forårsaget af forsøg på genskabelse af en database p
1691
  msgid "You do not currently have any UpdraftPlus Vault quota"
1692
  msgstr "Du har ikke på nuværende tidspunkt nogen UpdraftPlus Vault kvote"
1693
 
1694
- #: src/class-updraftplus.php:4714
1695
  msgid "You must upgrade MySQL to be able to use this database."
1696
  msgstr "Du skal opgradere MySQL for at kunne bruge denne database."
1697
 
1698
- #: src/class-updraftplus.php:4714
1699
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1700
  msgstr "Database-backup'en bruger MySQL funktioner, som ikke findes i den gamle MySQL version (%s), dette websted kører på."
1701
 
1702
- #: src/admin.php:2232
1703
  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."
1704
  msgstr "UpdraftPlus-mappen i wp-content/plugins indeholder white-space (tom plads / mellemrum); WordPress kan ikke lide dette. Du bør omdøbe mappen til wp-content/plugins/updraftplus for at løse dette problem."
1705
 
@@ -1868,7 +1876,7 @@ msgid "Updraft Vault"
1868
  msgstr "Updraft Vault"
1869
 
1870
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1871
- #: src/methods/s3.php:1080
1872
  msgid "Delete failed:"
1873
  msgstr "Sletning mislykkedes:"
1874
 
@@ -1892,71 +1900,71 @@ msgstr "Uden denne tilladelse, kan du ikke downloade eller gendanne direkte ved
1892
  msgid "Allow download"
1893
  msgstr "Tillad download"
1894
 
1895
- #: src/addons/migrator.php:1754
1896
  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."
1897
  msgstr "Hvis muligheden for at sende direkte fra site til site ikke virker for dig, så er der tre andre metoder - prøv en af disse i stedet."
1898
 
1899
- #: src/addons/migrator.php:1739, src/admin.php:709
1900
  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."
1901
  msgstr "Du bør kontrollere, at den eksterne site er online, ikke er bag en firewall, ikke har sikkerhedsmoduler, der kan blokere adgangen, har UpdraftPlus version %s eller nyere aktiv, og at nøglerne er blevet indtastet korrekt."
1902
 
1903
- #: src/addons/migrator.php:2242
1904
  msgid "Existing keys"
1905
  msgstr "Eksisterende nøgler"
1906
 
1907
- #: src/addons/migrator.php:2233
1908
  msgid "No keys to allow remote sites to connect have yet been created."
1909
  msgstr "Der er endnu ikke oprettet nøgler, der kan tillade eksterne sites at skabe forbindelse."
1910
 
1911
- #: src/addons/migrator.php:2215
1912
  msgid "Your new key:"
1913
  msgstr "Din nye nøgle:"
1914
 
1915
- #: src/addons/migrator.php:2194
1916
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1917
  msgstr "For at tillade en anden hjemmeside til at sende en backup til denne hjemmeside, skal du oprette en nøgle, og derefter klikke på \"Overfør\"-knappen på det afsendende site, og kopiere og indsætte nøglen der."
1918
 
1919
- #: src/addons/migrator.php:2176
1920
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1921
  msgstr "Så for at få nøglen til det eksterne site, skal du åbne 'Overfør' vinduet på det eksterne websted, scrolle ned, og så oprette en der."
1922
 
1923
- #: src/addons/migrator.php:2176
1924
  msgid "Keys for this site are created in the section below the one you just pressed in."
1925
  msgstr "Nøgler til dette site er skabt i afsnittet nedenfor den, du netop har indtastet ind."
1926
 
1927
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1928
  msgid "You must copy and paste this key now - it cannot be shown again."
1929
  msgstr "Du skal kopiere og indsætte denne nøgle nu - den kan ikke vises igen."
1930
 
1931
- #: src/addons/migrator.php:1856, src/central/bootstrap.php:370
1932
  msgid "Key created successfully."
1933
  msgstr "Nøgle blev skabt med succes."
1934
 
1935
- #: src/addons/migrator.php:1841
1936
  msgid "A key with this name already exists; you must use a unique name."
1937
  msgstr "En nøgle med dette navn eksisterer allerede; du skal bruge et unikt navn."
1938
 
1939
- #: src/addons/migrator.php:1785
1940
  msgid "Also send this backup to the active remote storage locations"
1941
  msgstr "Send også denne backup til de aktive eksterne lagringslokationer"
1942
 
1943
- #: src/addons/migrator.php:1750
1944
  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."
1945
  msgstr "Den webadresse, du sender til (%s) ligner en lokal udviklings-hjemmeside. Hvis du sender fra et eksternt netværk, er det sandsynligt, at en firewall vil blokere dette."
1946
 
1947
- #: src/addons/migrator.php:1706
1948
  msgid "site not found"
1949
  msgstr "site ikke fundet"
1950
 
1951
- #: src/addons/migrator.php:1691
1952
  msgid "Backup data will be sent to:"
1953
  msgstr "Backup data vil blive sendt til:"
1954
 
1955
- #: src/addons/migrator.php:195
1956
  msgid "Restore an existing backup set onto this site"
1957
  msgstr "Genskab et eksisterende backup sæt til dette site"
1958
 
1959
- #: src/addons/migrator.php:188
1960
  msgid "This site has no backups to restore from yet."
1961
  msgstr "Dette site har ingeb backups at genskabe fra endnu."
1962
 
@@ -1968,15 +1976,15 @@ msgstr "Backup skabt af %s"
1968
  msgid "This storage method does not allow downloading"
1969
  msgstr "Denne lagringsmetode tillader ikke download"
1970
 
1971
- #: src/admin.php:3501
1972
  msgid "(backup set imported from remote location)"
1973
  msgstr "(backup sæt importeret fra ekstern lokation)"
1974
 
1975
- #: src/templates/wp-admin/settings/existing-backups-table.php:82
1976
  msgid "Site"
1977
  msgstr "Site"
1978
 
1979
- #: src/templates/wp-admin/settings/existing-backups-table.php:81
1980
  msgid "Backup sent to remote site - not available for download."
1981
  msgstr "Backup sendt til eksternt site - ikke tilgængelig til download."
1982
 
@@ -1988,7 +1996,7 @@ msgstr "Du bør sørge for, at dette virkelig er et backup sæt beregnet til bru
1988
  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."
1989
  msgstr "Dette backup sæt blev ikke genkendt af UpdraftPlus som værende skabt af den nuværende WordPress installation, men blev enten fundet i fjernlager, eller blev sendt fra et eksternt site."
1990
 
1991
- #: src/addons/migrator.php:1767, src/admin.php:716
1992
  msgid "Testing connection..."
1993
  msgstr "Tester forbindelse..."
1994
 
@@ -2008,60 +2016,60 @@ msgstr "Giv denne nøgle et navn (angiv f.eks. sitet den er til):"
2008
  msgid "Creating..."
2009
  msgstr "Opretter..."
2010
 
2011
- #: src/addons/migrator.php:2193
2012
  msgid "Or, receive a backup from a remote site"
2013
  msgstr "Eller, modtag en backup fra det andet site"
2014
 
2015
- #: src/addons/migrator.php:2182
2016
  msgid "Paste key here"
2017
  msgstr "Indsæt nøglen her"
2018
 
2019
- #: src/addons/migrator.php:2176
2020
  msgid "How do I get a site's key?"
2021
  msgstr "Hvordan får jeg et sites nøgle?"
2022
 
2023
- #: src/addons/migrator.php:2176
2024
  msgid "To add a site as a destination for sending to, enter that site's key below."
2025
  msgstr "For at tilføje en hjemmeside som en destination til at sende til, skal du indtaste dette websteds nøgle nedenfor."
2026
 
2027
- #: src/addons/migrator.php:2173
2028
  msgid "Or, send a backup to another site"
2029
  msgstr "Eller, send en backup til et andet site"
2030
 
2031
- #: src/addons/migrator.php:1938, src/admin.php:717
2032
  msgid "Send"
2033
  msgstr "Send"
2034
 
2035
- #: src/addons/migrator.php:1932, src/admin.php:708
2036
  msgid "Send to site:"
2037
  msgstr "Send til site:"
2038
 
2039
- #: src/addons/migrator.php:1930
2040
  msgid "No receiving sites have yet been added."
2041
  msgstr "Ingen modtagerside er blevet tilføjet."
2042
 
2043
- #: src/addons/migrator.php:1911
2044
  msgid "It is for sending backups to the following site: "
2045
  msgstr "Det er til brug ved afsendelse af backup til følgende side:"
2046
 
2047
- #: src/addons/migrator.php:1911
2048
  msgid "The key was successfully added."
2049
  msgstr "Nøglen blev tilføjet med succes."
2050
 
2051
- #: src/addons/migrator.php:1895
2052
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2053
  msgstr "Den angivne nøgle tilhører ikke en fjern-side (den tilhører denne side)."
2054
 
2055
- #: src/addons/migrator.php:1884, src/addons/migrator.php:1886,
2056
- #: src/addons/migrator.php:1890
2057
  msgid "The entered key was corrupt - please try again."
2058
  msgstr "Den angivne nøgle var i stykker - prøv venligst igen."
2059
 
2060
- #: src/addons/migrator.php:1882
2061
  msgid "The entered key was the wrong length - please try again."
2062
  msgstr "Den angivne nøgle havde forkert længde - prøv venligst igen."
2063
 
2064
- #: src/addons/migrator.php:1872
2065
  msgid "key"
2066
  msgstr "nøgle"
2067
 
@@ -2101,7 +2109,7 @@ msgstr "En \"flytning\" er i sidste ende det samme som en restaurering - men ben
2101
  msgid "Resetting..."
2102
  msgstr "Nulstiller..."
2103
 
2104
- #: src/addons/migrator.php:2182, src/admin.php:705
2105
  msgid "Add site"
2106
  msgstr "Tilføj site"
2107
 
@@ -2109,7 +2117,7 @@ msgstr "Tilføj site"
2109
  msgid "Adding..."
2110
  msgstr "Tilføjer..."
2111
 
2112
- #: src/udaddons/options.php:333
2113
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2114
  msgstr "Adgang nægtet - Måske har du allerede brugt dette køb et andet sted, eller din betalte periode til at downloade fra updraftplus.com er udløbet?"
2115
 
@@ -2129,11 +2137,11 @@ msgstr "Hvis du har glemt dit password"
2129
  msgid "Go here to re-enter your password."
2130
  msgstr "Klik her for at indtaste dit password igen."
2131
 
2132
- #: src/addons/migrator.php:224
2133
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2134
  msgstr "Når du trykker på denne knap, vil du få mulighed for at vælge, hvilke komponenter du ønsker at migrere"
2135
 
2136
- #: src/addons/migrator.php:195
2137
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2138
  msgstr "Gå til \"Eksisterende backups\" for at importere et backup-sæt."
2139
 
@@ -2153,7 +2161,7 @@ msgstr "N.B. %s skelner ikke mellem store og små bogstaver."
2153
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2154
  msgstr "Hvis OneDrive senere viser meddelelsen \"unauthorized_client\", så har du ikke indtastet en gyldig klient-id her."
2155
 
2156
- #: src/addons/azure.php:541, src/addons/migrator.php:1754,
2157
  #: src/addons/onedrive.php:955
2158
  msgid "For longer help, including screenshots, follow this link."
2159
  msgstr "Følg dette link for mere uddybende hjælp, der blandt andet indkluderer skærmbilleder."
@@ -2332,7 +2340,7 @@ msgstr "Du skal indtaste en admin adgangsnøgle"
2332
  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)"
2333
  msgstr "Hvis du har en AWS admin brugerkonto, kan du bruge denne guide til hurtigt at oprette en ny AWS (IAM) bruger med adgang til kun denne spand (i stedet for hele din konto)"
2334
 
2335
- #: src/methods/s3.php:868
2336
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2337
  msgstr "Brug denne tilføjelse for at oprette en ny IAM sub-bruger og adgangsnøgle, der kun har adgang til denne spand."
2338
 
@@ -2407,7 +2415,7 @@ msgstr "Udskyd (i %s måneder)"
2407
  msgid "(at same time as files backup)"
2408
  msgstr "(samtidigt, som der tages backup af filerne)"
2409
 
2410
- #: src/admin.php:3012
2411
  msgid "No backup has been completed"
2412
  msgstr "Ingen backup er fuldført."
2413
 
@@ -2456,8 +2464,8 @@ msgstr "Du bruger i øjeblikket den gratis version af UpdraftPlus fra wordpress.
2456
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2457
  msgstr "Lav backup (hvis relevant) af plugins, temaer og WordPress database med UpdraftPlus før du opdaterer"
2458
 
2459
- #: src/methods/s3.php:166, src/methods/s3.php:167, src/methods/s3.php:168,
2460
- #: src/methods/s3.php:176, src/methods/s3.php:177, src/methods/s3.php:178
2461
  msgid "%s Error: Failed to initialise"
2462
  msgstr "%s Fejl: Kunne ikke initialiseres"
2463
 
@@ -2497,7 +2505,7 @@ msgstr "dit websteds admin adresse"
2497
  msgid "Check this box to have a basic report sent to"
2498
  msgstr "Markér dette felt for at få en grundlæggende rapport sendt til"
2499
 
2500
- #: src/admin.php:3021
2501
  msgctxt "i.e. Non-automatic"
2502
  msgid "Manual"
2503
  msgstr "Manual"
@@ -2515,7 +2523,7 @@ msgstr "Skift låse-indstillinger"
2515
  msgid "Any other file/directory on your server that you wish to back up"
2516
  msgstr "Enhver anden fil/mappe på din server, som du ønsker at sikkerhedskopiere"
2517
 
2518
- #: src/admin.php:2249
2519
  msgid "For even more features and personal support, check out "
2520
  msgstr "For endnu flere funktioner og personlig support, tjek"
2521
 
@@ -2605,11 +2613,11 @@ msgstr "Administrator adgangskoden er nu blevet fjernet."
2605
  msgid "(learn more about this significant option)"
2606
  msgstr "(lær mere om denne betydelige mulighed)"
2607
 
2608
- #: src/udaddons/options.php:275
2609
  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."
2610
  msgstr "Bemærk, at efter du har modtaget dine tilføjelser, kan du fjerne dit password (men ikke e-mail-adresse) fra indstillingerne nedenfor, uden at påvirke dette sites adgang til opdateringer."
2611
 
2612
- #: src/admin.php:2582, src/admin.php:3523, src/admin.php:3524
2613
  msgid "View Log"
2614
  msgstr "Se loggen"
2615
 
@@ -2626,7 +2634,7 @@ msgstr "Backup dato"
2626
  msgid "and retain this many scheduled backups"
2627
  msgstr "og fastholde så mange planlagte backups"
2628
 
2629
- #: src/admin.php:2982
2630
  msgid "incremental backup; base backup: %s"
2631
  msgstr "trinvis sikkerhedskopi; basis backup: %s"
2632
 
@@ -2634,20 +2642,20 @@ msgstr "trinvis sikkerhedskopi; basis backup: %s"
2634
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2635
  msgstr "For evnen til at låse adgangen til UpdraftPlus-indstillingerne med en adgangskode, skal du opgradere til UpdraftPlus Premium."
2636
 
2637
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:58
2638
  msgid "Upload files into UpdraftPlus."
2639
  msgstr "Upload filer til UpdraftPlus."
2640
 
2641
- #: src/admin.php:932, src/includes/class-commands.php:379,
2642
  #: src/templates/wp-admin/settings/tab-status.php:22
2643
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2644
  msgstr "\"Backup Nu\"-knappen er deaktiveret, da din backup mappe er ikke skrivbar (gå til fanen \"Indstillinger\", og find den relevante mulighed)."
2645
 
2646
- #: src/class-updraftplus.php:4664
2647
  msgid "Backup label:"
2648
  msgstr "Backup etiket:"
2649
 
2650
- #: src/admin.php:1774
2651
  msgid "Error: unexpected file read fail"
2652
  msgstr "Fejl: Uventet fejl ved læsning af fil"
2653
 
@@ -2667,7 +2675,7 @@ msgstr "En zip fejl opstod"
2667
  msgid "Your label for this backup (optional)"
2668
  msgstr "Din label til denne backup (valgfrit)"
2669
 
2670
- #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1082
2671
  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."
2672
  msgstr "%s tillader ikke godkendelse af sider hostet direkte på IP-adresser. Du bliver nødt til at ændre din webstedsadresse (%s), før du kan bruge %s til lagring."
2673
 
@@ -2687,36 +2695,36 @@ msgstr "Du er nødt til at bruge både en e-mail adresse og en adgangskode"
2687
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2688
  msgstr "For at fortsætte, så tryk på 'Backup Nu' og derefter se 'Sidste Log Besked' feltet for aktivitet."
2689
 
2690
- #: src/class-updraftplus.php:4683
2691
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2692
  msgstr "Hvis du ønsker at genskabe en multisite backup, så skal du først sætte din WordPress op som en multisite installation."
2693
 
2694
- #: src/class-updraftplus.php:4683
2695
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2696
  msgstr "Din backup er fra en WordPress multisite installation; men det er denne side ikke. Det er kun den første side som vil være tilgængelig."
2697
 
2698
- #: src/addons/migrator.php:1083
2699
  msgid "already done"
2700
  msgstr "Allerede færdig"
2701
 
2702
- #: src/addons/migrator.php:1040
2703
  msgid "skipped (not in list)"
2704
  msgstr "Sprang over (ikke på listen)"
2705
 
2706
- #: src/addons/migrator.php:1040, src/addons/migrator.php:1083,
2707
- #: src/addons/migrator.php:1215
2708
  msgid "Search and replacing table:"
2709
  msgstr "Søg og erstat tabel:"
2710
 
2711
- #: src/addons/migrator.php:322
2712
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2713
  msgstr "Indtast en kommasepareret liste; ellers efterlad tom for alle felter."
2714
 
2715
- #: src/addons/migrator.php:322
2716
  msgid "These tables only"
2717
  msgstr "Kun disse tabeller"
2718
 
2719
- #: src/addons/migrator.php:321
2720
  msgid "Rows per batch"
2721
  msgstr "Rækker pr. kørsel"
2722
 
@@ -2728,19 +2736,19 @@ msgstr "Du har endnu ikke forbundet din UpdraftPlus.Com konto."
2728
  msgid "You need to connect to receive future updates to UpdraftPlus."
2729
  msgstr "Du er nødt til at modtage fremtidige opdateringer UpdraftPlus."
2730
 
2731
- #: src/class-updraftplus.php:4656
2732
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2733
  msgstr "Eventuelle support anmodninger som har med %s at gøre bør løses med dit web-hosting firma."
2734
 
2735
- #: src/class-updraftplus.php:4656
2736
  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."
2737
  msgstr "Du bør kun fortsætte, hvis du ikke kan opdatere den aktuelle server og er overbeviste om (eller villig til at forsøge om), at dine plugins/temaer/osv. er kompatible med den ældre %s version."
2738
 
2739
- #: src/class-updraftplus.php:4656
2740
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2741
  msgstr "Denne er markant nyere end den serverversion, som du nu ønsker at gendanne på (version %s)."
2742
 
2743
- #: src/class-updraftplus.php:4656
2744
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2745
  msgstr "Siden i denne backup blev lavet på en webserver med version %s af %s."
2746
 
@@ -2769,27 +2777,27 @@ msgstr "Twitter"
2769
  msgid "UpdraftPlus is on social media - check us out!"
2770
  msgstr ""
2771
 
2772
- #: src/admin.php:3592
2773
  msgid "Why am I seeing this?"
2774
  msgstr "Hvorfor ser jeg dette?"
2775
 
2776
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2777
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2778
  msgstr "Placeringen af denne mappe er angivet i ekspertindstillingerne i fanen Indstillinger."
2779
 
2780
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
2781
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2782
  msgstr "Klik her for at se i din UpdraftPlus mappe (på dit webhotel) efter nye backups som du har uploadet."
2783
 
2784
- #: src/admin.php:1713, src/admin.php:1725
2785
  msgid "Start backup"
2786
  msgstr "Start backup"
2787
 
2788
- #: src/class-updraftplus.php:4628, src/restorer.php:1010
2789
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2790
  msgstr "Du bruger %s webserver, men den lader ikke til at have %s modulet indlæst."
2791
 
2792
- #: src/admin.php:2905
2793
  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."
2794
  msgstr "Du er nødt til at kontakte din hostingudbyder for at finde ud af, hvordan du skal angive tilladelser for et WordPress plugin for at det kan skrive til mappen."
2795
 
@@ -2797,11 +2805,11 @@ msgstr "Du er nødt til at kontakte din hostingudbyder for at finde ud af, hvord
2797
  msgid "Unless you have a problem, you can completely ignore everything here."
2798
  msgstr "Med mindre du har problemmer, kan du bare ignorere alt her."
2799
 
2800
- #: src/admin.php:1935
2801
  msgid "This file could not be uploaded"
2802
  msgstr "Denne fil kunne ikke blive uploadet"
2803
 
2804
- #: src/admin.php:1900
2805
  msgid "You will find more information about this in the Settings section."
2806
  msgstr "Du kan finde mere information om dette i afsnittet Indstillinger."
2807
 
@@ -2821,7 +2829,7 @@ msgstr "Fortæl mig mere om trinvis sikkerhedskopiering"
2821
  msgid "Memory limit"
2822
  msgstr "hukommelsesgrænse"
2823
 
2824
- #: src/class-updraftplus.php:4786, src/restorer.php:1493
2825
  msgid "restoration"
2826
  msgstr "genoprettelse"
2827
 
@@ -2845,42 +2853,42 @@ msgstr "(se log...)"
2845
  msgid "Backup succeeded"
2846
  msgstr "Backup lykkedes"
2847
 
2848
- #: src/admin.php:3022, src/admin.php:3023, src/admin.php:3024,
2849
  #: src/updraftplus.php:99, src/updraftplus.php:100
2850
  msgid "Every %s hours"
2851
  msgstr "Hver %s time"
2852
 
2853
- #: src/addons/migrator.php:785, src/addons/migrator.php:787
2854
  msgid "search and replace"
2855
  msgstr "søger og erstatter"
2856
 
2857
- #: src/addons/migrator.php:324
2858
  msgid "Go"
2859
  msgstr "Start"
2860
 
2861
- #: src/addons/migrator.php:313
2862
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2863
  msgstr "En søg/erstat kan ikke gøres om - er du sikker på, at du vil gøre dette?"
2864
 
2865
- #: src/addons/migrator.php:312
2866
  msgid "This can easily destroy your site; so, use it with care!"
2867
  msgstr "Dette kan let ødelægge din side; så anvend det med forsigtighed!"
2868
 
2869
- #: src/addons/migrator.php:282, src/addons/migrator.php:320
2870
  msgid "Replace with"
2871
  msgstr "Erstat med"
2872
 
2873
- #: src/addons/migrator.php:281, src/addons/migrator.php:319
2874
  msgid "Search for"
2875
  msgstr "Søg efter"
2876
 
2877
- #: src/addons/migrator.php:280, src/addons/migrator.php:311,
2878
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2879
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2880
  msgid "Search / replace database"
2881
  msgstr "Søg / erstat database"
2882
 
2883
- #: src/addons/migrator.php:286
2884
  msgid "search term"
2885
  msgstr "søgefrase"
2886
 
@@ -2896,11 +2904,11 @@ msgstr "læs mere på %s"
2896
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2897
  msgstr "E-mail rapporter skabt af UpdraftPlus (gratis) giver dig de seneste UpdraftPlus.com nyheder"
2898
 
2899
- #: src/methods/googledrive.php:1090
2900
  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."
2901
  msgstr "P.S. Hvis du installerer UpdraftPlus på flere WordPress-sider, kan du ikke genbruge dine projekter; du må oprette et ny ud fra din Google API konsol for hver side."
2902
 
2903
- #: src/admin.php:3350
2904
  msgid "You have not yet made any backups."
2905
  msgstr "Du har endnu ikke oprettet nogle backups."
2906
 
@@ -2920,13 +2928,13 @@ msgstr "%s (%s brugt)"
2920
  msgid "Free disk space in account:"
2921
  msgstr "Ledig diskplads på konto:"
2922
 
2923
- #: src/admin.php:4173, src/templates/wp-admin/settings/tab-status.php:27
2924
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2925
  msgstr "Denne knap er deaktiveret fordi dit backup-arkiv ikke er skrivbart (se indstillingerne)."
2926
 
2927
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1578,
2928
- #: src/includes/deprecated-actions.php:30,
2929
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:22,
2930
  #: src/templates/wp-admin/settings/tab-bar.php:6
2931
  msgid "Existing Backups"
2932
  msgstr "Eksisterende backups"
@@ -3019,20 +3027,20 @@ msgstr "bruger"
3019
  msgid "External database (%s)"
3020
  msgstr "Ekstern database (%s)"
3021
 
3022
- #: src/methods/googledrive.php:1090
3023
  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."
3024
  msgstr "Følg linket til din Google API konsol og aktivér der Drive API og skab en Client ID i API Access sektionen."
3025
 
3026
- #: src/methods/googledrive.php:450
3027
  msgid "failed to access parent folder"
3028
  msgstr "adgang til den overliggende mappe mislykkedes"
3029
 
3030
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3031
- #: src/addons/onedrive.php:773, src/methods/googledrive.php:403
3032
  msgid "However, subsequent access attempts failed:"
3033
  msgstr "Dog mislykkede adgangsforsøget efterfølgende:"
3034
 
3035
- #: src/admin.php:3375
3036
  msgid "External database"
3037
  msgstr "Ekstern database"
3038
 
@@ -3064,7 +3072,7 @@ msgstr "Har du ikke lyst til at blive udspioneret? UpdraftPlus Premium kan krypt
3064
  msgid "use UpdraftPlus Premium"
3065
  msgstr "brug UpdraftPlus Premium"
3066
 
3067
- #: src/class-updraftplus.php:4546
3068
  msgid "Decryption failed. The database file is encrypted."
3069
  msgstr "Dekryptering mislykkedes. Databasefilen er krypteret."
3070
 
@@ -3085,7 +3093,7 @@ msgstr "Forbindelsesfejl: kontrollere dine adgangsoplysninger, at database serve
3085
  msgid "database connection attempt failed."
3086
  msgstr "database forbindelse mislykkedes."
3087
 
3088
- #: src/addons/migrator.php:971
3089
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3090
  msgstr "Advarsel: Databasens URL (%s) er forskellig fra, hvad vi forventede (%s)"
3091
 
@@ -3168,7 +3176,7 @@ msgstr "Dropbox"
3168
  msgid "Authenticate with %s"
3169
  msgstr "Godkend med %s"
3170
 
3171
- #: src/methods/cloudfiles.php:422
3172
  msgid "Error downloading remote file: Failed to download"
3173
  msgstr "Fejl ved download af fil: Download mislykkedes"
3174
 
@@ -3196,37 +3204,37 @@ msgid "%s error - failed to access the container"
3196
  msgstr "%s fejl - Adgang til containeren mislykkedes"
3197
 
3198
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3199
- #: src/methods/dropbox.php:546, src/methods/googledrive.php:1146
3200
  msgid "Account holder's name: %s."
3201
  msgstr "Kontoindehavers navn: %s."
3202
 
3203
- #: src/methods/googledrive.php:1135
3204
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3205
  msgstr "For at kunne oprette et standard mappe-navn skal du bruge UpdraftPlus Premium."
3206
 
3207
- #: src/methods/googledrive.php:1126
3208
  msgid "It is an ID number internal to Google Drive"
3209
  msgstr "Det er et internt Google Drive ID-nummer"
3210
 
3211
- #: src/methods/googledrive.php:1126
3212
  msgid "<strong>This is NOT a folder name</strong>."
3213
  msgstr "<strong>Dette er IKKE et mappenavn</strong>."
3214
 
3215
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3216
- #: src/methods/googledrive.php:1122, src/methods/googledrive.php:1132
3217
  msgid "Folder"
3218
  msgstr "Mappe"
3219
 
3220
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3221
- #: src/methods/googledrive.php:1041
3222
  msgid "%s download: failed: file not found"
3223
  msgstr "%s download: Mislykkedes: Filen blev ikke fundet"
3224
 
3225
- #: src/addons/googlecloud.php:635, src/methods/googledrive.php:423
3226
  msgid "Name: %s."
3227
  msgstr "Navn: %s."
3228
 
3229
- #: src/methods/googledrive.php:181
3230
  msgid "Google Drive list files: failed to access parent folder"
3231
  msgstr "Google Drive fil-liste: Kunne ikke få adgang til hovedmappen"
3232
 
@@ -3251,8 +3259,8 @@ msgstr "Opkald"
3251
  msgid "Fetch"
3252
  msgstr "Fetch"
3253
 
3254
- #: src/addons/migrator.php:383,
3255
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:62,
3256
  #: src/templates/wp-admin/settings/form-contents.php:212
3257
  msgid "This feature requires %s version %s or later"
3258
  msgstr "Denne funktion kræver %s version %s eller nyere"
@@ -3265,7 +3273,7 @@ msgstr "Kunne ikke udpakke arkivet."
3265
  msgid "Error - failed to download the file"
3266
  msgstr "Fejl - Kunne ikke downloade filen"
3267
 
3268
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3269
  msgid "Rescan local folder for new backup sets"
3270
  msgstr "Gentag scanning af lokal mappe for nye sæt."
3271
 
@@ -3285,8 +3293,8 @@ msgstr "Den indstallerede version af UpdraftPlus Backup/Restore er ikke blevet t
3285
  msgid "password/key"
3286
  msgstr "password/nøgle"
3287
 
3288
- #: src/addons/azure.php:549, src/addons/migrator.php:2200,
3289
- #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4362
3290
  msgid "Key"
3291
  msgstr "Nøgle"
3292
 
@@ -3302,36 +3310,36 @@ msgstr "Nøglen var enten ikke i et godkendt format eller var ikke korrekt."
3302
  msgid "SCP/SFTP password/key"
3303
  msgstr "SCP/SFTP password/nøgle"
3304
 
3305
- #: src/admin.php:3410
3306
  msgid "Files backup (created by %s)"
3307
  msgstr "Fil-backup (lavet af %s)"
3308
 
3309
- #: src/admin.php:3410
3310
  msgid "Files and database WordPress backup (created by %s)"
3311
  msgstr "Filer og database WordPress backup (lavet af %s)"
3312
 
3313
- #: src/addons/importer.php:276, src/admin.php:3404,
3314
- #: src/class-updraftplus.php:2893
3315
  msgid "Backup created by: %s."
3316
  msgstr "Backup lavet af: %s."
3317
 
3318
- #: src/admin.php:3373
3319
  msgid "Database (created by %s)"
3320
  msgstr "Database (oprettet af %s)"
3321
 
3322
- #: src/admin.php:3367, src/admin.php:3406
3323
  msgid "unknown source"
3324
  msgstr "ukendt kilde"
3325
 
3326
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:45
3327
  msgid "Rescan remote storage"
3328
  msgstr "Gentag scanning af fjernlager"
3329
 
3330
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:40
3331
  msgid "Upload backup files"
3332
  msgstr "Upload backup filer"
3333
 
3334
- #: src/admin.php:1979
3335
  msgid "This backup was created by %s, and can be imported."
3336
  msgstr "Denne backup blev lavet af %s og kan importeres."
3337
 
@@ -3343,7 +3351,7 @@ msgstr "Læs denne side for en guide til mulige årsager og løsningsforslag."
3343
  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."
3344
  msgstr "WordPress har et antal (%d) planlagte opgaver, som skulle have være udført. Med mindre dette er et udviklingssite, tyder det på, at planlægningsdelen i din WordPress installation ikke fungerer korrekt."
3345
 
3346
- #: src/admin.php:676, src/class-updraftplus.php:2900
3347
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3348
  msgstr "Hvis dette er en backup skabt af en anden backup plugin, kan UpdraftPlus Premium muligvis hjælpe dig."
3349
 
@@ -3351,11 +3359,11 @@ msgstr "Hvis dette er en backup skabt af en anden backup plugin, kan UpdraftPlus
3351
  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."
3352
  msgstr "Men, UpdraftPlus arkiver er standard zip/SQL filer - så hvis du er sikker på, at filen har det rette format, kan du omdøbe dem, så de matcher dette mønster."
3353
 
3354
- #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2900
3355
  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))."
3356
  msgstr "Denne fil er tilsyneladende ikke et UpdraftPlus backup arkiv (som skal være .zip eller .gz filer med et navn som: backup_(tidspunkt)_(site navn)_(kode)_(type).(zip/gz))."
3357
 
3358
- #: src/admin.php:3407, src/includes/class-wpadmin-commands.php:152,
3359
  #: src/restorer.php:1462
3360
  msgid "Backup created by unknown source (%s) - cannot be restored."
3361
  msgstr "Backup skabt af ukendt kilde (%s) - Kan ikke genskabes."
@@ -3381,7 +3389,7 @@ msgstr "UpdraftPlus modulet til denne fil-adgangsmetode (%s) understøtter ikke
3381
  msgid "No settings were found"
3382
  msgstr "Indstillinger blev ikke fundet"
3383
 
3384
- #: src/class-updraftplus.php:3021
3385
  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."
3386
  msgstr "Én eller flere backups er blevet tilføjet efter scanning af fjernlager; bemærk at disse backups ikke automatisk vil blive slettet gennem \"behold\"-instillingerne. Når/hvis du ønsker at slette dem, må dette gøres manuelt."
3387
 
@@ -3407,7 +3415,7 @@ msgstr "Ingen backup af lokation: Der blev ikke fundet noget at tage backup af"
3407
  msgid "Remove"
3408
  msgstr "Fjern"
3409
 
3410
- #: src/methods/s3.php:840
3411
  msgid "Other %s FAQs."
3412
  msgstr "Andre %s FAQ's."
3413
 
@@ -3415,16 +3423,16 @@ msgstr "Andre %s FAQ's."
3415
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3416
  msgstr "Se her for mere information og e-mails om backup-processen - Nyttigt, hvis noget går galt."
3417
 
3418
- #: src/addons/morefiles.php:445, src/admin.php:3114
3419
  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."
3420
  msgstr "Ved angivelse af flere filer/arkiver skal de adskilles med kommaer. Ved enheder på top niveau kan du bruge et * før eller efter det indtastede. "
3421
 
3422
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309,
3423
  #: src/restorer.php:1493
3424
  msgid "Your hosting company must enable these functions before %s can work."
3425
  msgstr "Din hosting udbyder skal slå disse funktioner til inden %s kan virke."
3426
 
3427
- #: src/class-updraftplus.php:4786, src/methods/ftp.php:309
3428
  msgid "Your web server's PHP installation has these functions disabled: %s."
3429
  msgstr "Din webservers PHP installation har slået disse funktioner fra: %s."
3430
 
@@ -3444,7 +3452,7 @@ msgstr "almindelig ikke-krypteret FTP"
3444
  msgid "Backup created by:"
3445
  msgstr "Backup udført af:"
3446
 
3447
- #: src/udaddons/options.php:482
3448
  msgid "Available to claim on this site"
3449
  msgstr "Klar til at hente fra denne side."
3450
 
@@ -3494,15 +3502,15 @@ msgstr "Din betalte adgang til UpdraftPlus opdateringer til denne side er udløb
3494
  msgid "Dismiss from main dashboard (for %s weeks)"
3495
  msgstr "Afvis fra hovedoversigten (i %s uger)"
3496
 
3497
- #: src/class-updraftplus.php:4836
3498
  msgid "The attempt to undo the double-compression succeeded."
3499
  msgstr "Forsøg på at rette dobbelt-kompresionen lykkedes."
3500
 
3501
- #: src/class-updraftplus.php:4813, src/class-updraftplus.php:4834
3502
  msgid "The attempt to undo the double-compression failed."
3503
  msgstr "Forsøg på at rette dobbelt-kompresionen mislykkedes."
3504
 
3505
- #: src/class-updraftplus.php:4806
3506
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3507
  msgstr "Det ser ud til, at filerne i databasen er blevet komprimeret to gange - Måske har siden, du har downloaded dem fra, en forkert konfigureret webserver."
3508
 
@@ -3535,7 +3543,7 @@ msgstr "Kontoen er brugt op: Din %s konto har kun %d bytes tilbage, men filen, d
3535
  msgid "Errors occurred:"
3536
  msgstr "Fejl opstod:"
3537
 
3538
- #: src/admin.php:3612
3539
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3540
  msgstr "Følg dette link for at downloade log-filen for denne genoprettelse (nødvendig for enhver henvendelse til support)."
3541
 
@@ -3563,7 +3571,7 @@ msgstr "Der findes ikke slettede mapper fra en tidligere genskabelse (venligst a
3563
  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)"
3564
  msgstr "Grænsen for kørsel af WordPress plugins er meget lav (%s sekunder) - Du bør hæve grænsen for at undgå backup-fejl på grund af time-outs (rådfør dig med din web-udbyder for mere hjælp angående max_execution_time PHP indstillingen. Den anbefalede værdig er %s sekunder eller mere)"
3565
 
3566
- #: src/addons/migrator.php:253
3567
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3568
  msgstr "Dette plugin er disabled: %s genaktivér det manuelt, når du er klar."
3569
 
@@ -3572,7 +3580,7 @@ msgstr "Dette plugin er disabled: %s genaktivér det manuelt, når du er klar."
3572
  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."
3573
  msgstr "%s forbindelsen udløb. Hvis du angav serveren korrekt, skyldes dette normalt at en firewall blokerer forbindelsen. Du bør tjekke dette med din web-udbyder."
3574
 
3575
- #: src/addons/moredatabase.php:137, src/admin.php:1363
3576
  msgid "Messages:"
3577
  msgstr "Beskeder:"
3578
 
@@ -3732,7 +3740,7 @@ msgstr "Konti oprettet på rackspacecloud.com er US konti; konti oprettet på ra
3732
  msgid "Authorisation failed (check your credentials)"
3733
  msgstr "Autorisation mislykkedes (tjek dine personlige oplysninger)"
3734
 
3735
- #: src/methods/updraftvault.php:568, src/udaddons/options.php:267
3736
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3737
  msgstr "En ukendt fejl opstod ved forsøg på forbindelse til UpdraftPlus.com"
3738
 
@@ -3748,15 +3756,15 @@ msgstr "Forsøger..."
3748
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3749
  msgstr "Den nye brugers RackSpace konsol password er (dette vil ikke blive vist igen):"
3750
 
3751
- #: src/admin.php:661, src/admin.php:3902
3752
  msgid "Error data:"
3753
  msgstr "Fejldata:"
3754
 
3755
- #: src/admin.php:3563
3756
  msgid "Backup does not exist in the backup history"
3757
  msgstr "Backup eksisterer ikke i backup-historie"
3758
 
3759
- #: src/admin.php:2526
3760
  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."
3761
  msgstr "Din WordPres installation har gamle arkiver fra tiden inden du genoprettede/flyttede (teknisk information: disse filer slutter med -old). Du bør klikke på denne knap, når du er sikker på at din tidligere handling virker."
3762
 
@@ -3812,7 +3820,7 @@ msgstr "Brug \"Reporting\"-sektionen til at konfigurere den e-mail, du ønsker a
3812
  msgid "Debugging information"
3813
  msgstr "Information om rens af filer"
3814
 
3815
- #: src/addons/reporting.php:211, src/admin.php:3313
3816
  msgid "Uploaded to:"
3817
  msgstr "Uploaded til:"
3818
 
@@ -3872,7 +3880,7 @@ msgstr "%s logo"
3872
  msgid "%s did not return the expected response - check your log file for more details"
3873
  msgstr "%s returnerede ikke det forventede svar - tjek din logfil for flere detaljer"
3874
 
3875
- #: src/methods/s3.php:287
3876
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3877
  msgstr "Det nødvendige %s PHP modul er ikke installeret - ret henvendelse til dit hostingfirma for at få dette aktiveret"
3878
 
@@ -3885,7 +3893,7 @@ msgid "Your site's admin email address (%s) will be used."
3885
  msgstr "Din sides admin e-mail adresse (%s) vil blive brugt."
3886
 
3887
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3888
- #: src/methods/updraftvault.php:347, src/udaddons/options.php:246
3889
  msgid "Connect"
3890
  msgstr "Tilslut"
3891
 
@@ -3893,7 +3901,7 @@ msgstr "Tilslut"
3893
  msgid "For more reporting features, use the Reporting add-on."
3894
  msgstr "For udvidede muligheder for fejlrapportering, brug da Reporting add-on, "
3895
 
3896
- #: src/class-updraftplus.php:4616
3897
  msgid "(version: %s)"
3898
  msgstr "(version: %s)"
3899
 
@@ -3966,39 +3974,39 @@ msgstr "Dette er en WordPress multi-site (også kaldet netværk) installation."
3966
  msgid "UpdraftPlus warning:"
3967
  msgstr "UpdraftPlus advarsel:"
3968
 
3969
- #: src/udaddons/options.php:488
3970
  msgid "(or connect using the form on this page if you have already purchased it)"
3971
  msgstr "(eller skab forbindelse ved at bruge formularen på denne side, hvis du købt adgang til den)"
3972
 
3973
- #: src/udaddons/options.php:474
3974
  msgid "please follow this link to update the plugin in order to activate it"
3975
  msgstr "venligst aktiver dette plugin ved at opdatere det via dette link"
3976
 
3977
- #: src/udaddons/options.php:471
3978
  msgid "please follow this link to update the plugin in order to get it"
3979
  msgstr "For at få dette plugin, bedes du følge dette opdaterings-link"
3980
 
3981
- #: src/udaddons/options.php:461, src/udaddons/options.php:463
3982
  msgid "latest"
3983
  msgstr "seneste"
3984
 
3985
- #: src/udaddons/options.php:459
3986
  msgid "Your version: %s"
3987
  msgstr "Din version: %s"
3988
 
3989
- #: src/udaddons/options.php:457, src/udaddons/options.php:457
3990
  msgid "You've got it"
3991
  msgstr "Værsgo"
3992
 
3993
- #: src/udaddons/options.php:418
3994
  msgid "UpdraftPlus Support"
3995
  msgstr "UpdraftPlus support"
3996
 
3997
- #: src/udaddons/options.php:376
3998
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3999
  msgstr "En UpdraftPlus opdatering indeholdende dine tilføjelser er tilgængelig - følg dette link for at få den."
4000
 
4001
- #: src/udaddons/options.php:365, src/udaddons/updraftplus-addons.php:290
4002
  msgid "UpdraftPlus Addons"
4003
  msgstr "UpdraftPlus addons"
4004
 
@@ -4034,7 +4042,7 @@ msgstr "Det lykkedes ikke at skabe forbindelse til UpdraftPlus.Com"
4034
  msgid "Reporting"
4035
  msgstr "Rapportering"
4036
 
4037
- #: src/admin.php:4359
4038
  msgid "Options (raw)"
4039
  msgstr "Muligheder (raw)"
4040
 
@@ -4062,91 +4070,91 @@ msgstr "Din ledige plads på din hosting-konto er meget lille - kun %s Mb tilbag
4062
  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)"
4063
  msgstr "Mængden af hukommelse (RAM) tilladt til PHP er meget lav (%s Mb) - Du bør udvide hukommelsen p.g.a. for lidt hukommelse (kontakt din webhosting-udbyder for mere hjælp)"
4064
 
4065
- #: src/udaddons/options.php:553
4066
  msgid "Manage Addons"
4067
  msgstr "Håndtér tilføjelser"
4068
 
4069
- #: src/udaddons/options.php:489, src/udaddons/options.php:489
4070
  msgid "Buy It"
4071
  msgstr "Køb"
4072
 
4073
- #: src/udaddons/options.php:488
4074
  msgid "Get it from the UpdraftPlus.Com Store"
4075
  msgstr "Få den i UpdraftPlus.COM Store"
4076
 
4077
- #: src/udaddons/options.php:482, src/udaddons/options.php:484
4078
  msgid "activate it on this site"
4079
  msgstr "aktivier den på denne side"
4080
 
4081
- #: src/udaddons/options.php:484
4082
  msgid "You have an inactive purchase"
4083
  msgstr "Du har et inaktivt køb"
4084
 
4085
- #: src/udaddons/options.php:474
4086
  msgid "Assigned to this site"
4087
  msgstr "Tildelt til denne side"
4088
 
4089
- #: src/udaddons/options.php:471
4090
  msgid "Available for this site (via your all-addons purchase)"
4091
  msgstr "Tilgængelig for denne side (via dit tilføjelses fuldpakke køb)"
4092
 
4093
- #: src/udaddons/options.php:465
4094
  msgid "(apparently a pre-release or withdrawn release)"
4095
  msgstr "(tilsyneladende en tidligere- eller tilbagetrykket udgivelse)"
4096
 
4097
- #: src/udaddons/options.php:420
4098
  msgid "Go here"
4099
  msgstr "Klik her"
4100
 
4101
- #: src/udaddons/options.php:420
4102
  msgid "Need to get support?"
4103
  msgstr "Behov for support?"
4104
 
4105
- #: src/udaddons/options.php:402
4106
  msgid "An error occurred when trying to retrieve your add-ons."
4107
  msgstr "En fejl opstod ved forsøg på modtagelse af dine tilføjelser."
4108
 
4109
- #: src/udaddons/options.php:335
4110
  msgid "An unknown response was received. Response was:"
4111
  msgstr "Et ukendt svar blev modtaget. Svaret var:"
4112
 
4113
- #: src/udaddons/options.php:334
4114
  msgid "Claim not granted - your account login details were wrong"
4115
  msgstr "Anmodning ikke godkendt - Dine login detaljer til kontoen er forkerte"
4116
 
4117
- #: src/udaddons/options.php:332
4118
  msgid "Please wait whilst we make the claim..."
4119
  msgstr "Vent venligst mens vi udfører fordringen..."
4120
 
4121
- #: src/udaddons/options.php:285
4122
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4123
  msgstr "Der opstod fejl ved forsøg på at forbinde til UpdraftPlus.Com:"
4124
 
4125
- #: src/udaddons/options.php:278
4126
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4127
  msgstr "Du er i øjeblikket <strong>ikke forbundet</strong> til en UpdraftPlus.Com konto."
4128
 
4129
- #: src/udaddons/options.php:274
4130
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4131
  msgstr "Hvis du har købt nye tilføjelser, bedes du følge dette link for at opdatere din forbindelse"
4132
 
4133
- #: src/udaddons/options.php:273
4134
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr "Du er i øjeblikket <strong>forbundet</strong> til en UpdraftPlus.Com konto."
4136
 
4137
- #: src/udaddons/options.php:244
4138
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4139
  msgstr "Interesseret i at vide mere om UpdraftPlus.Com password sikkerhed? Læs mere her."
4140
 
4141
- #: src/udaddons/options.php:172
4142
  msgid "Forgotten your details?"
4143
  msgstr "Har du glemt dine oplysninger?"
4144
 
4145
- #: src/udaddons/options.php:161
4146
  msgid "Not yet got an account (it's free)? Go get one!"
4147
  msgstr "Har du endnu ikke en konto (det er gratis)? Få en her!"
4148
 
4149
- #: src/udaddons/options.php:128
4150
  msgid "Connect with your UpdraftPlus.Com account"
4151
  msgstr "Forbind til din UpdraftPlus.Com konto"
4152
 
@@ -4186,15 +4194,15 @@ msgstr "Uden denne vil kryptering foregå langsommere."
4186
  msgid "Your web-server does not have the %s module installed."
4187
  msgstr "Din web-server har ikke %s modulet installeret."
4188
 
4189
- #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1142
4190
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4191
  msgstr "<strong>(Det ser ud til, at du allerede er godkendt,</strong>, men du kan gennemgå godkendelse igen for at genskabe forbindelse, hvis du har oplevet et problem)."
4192
 
4193
- #: src/templates/wp-admin/settings/downloading-and-restoring.php:68
4194
  msgid "Drop backup files here"
4195
  msgstr "Drop backup-filer her"
4196
 
4197
- #: src/admin.php:2405
4198
  msgid "Does nothing happen when you attempt backups?"
4199
  msgstr "Sker der ingenting, når du forsøger at køre backup?"
4200
 
@@ -4235,11 +4243,11 @@ msgstr "Upload mislykkedes"
4235
  msgid "You can send a backup to more than one destination with an add-on."
4236
  msgstr "Du kan sende en backup til mere end én destination ved hjælp af et tilføjelsesprogram."
4237
 
4238
- #: src/admin.php:2744
4239
  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."
4240
  msgstr "Note: Tidslinjen nedenfor er baseret på stadier, IKKE tid. Stop ikke backup'en kun på grund af, at den tilsyneladende har stået på det samme sted i et stykke tid - dette er normalt."
4241
 
4242
- #: src/admin.php:2642
4243
  msgid "(%s%%, file %s of %s)"
4244
  msgstr "(%s%%, file %s of %s)"
4245
 
@@ -4280,11 +4288,11 @@ msgstr "Backup er: %s."
4280
  msgid "%s settings test result:"
4281
  msgstr "%s indstillinger test resultat:"
4282
 
4283
- #: src/admin.php:3474, src/admin.php:3476
4284
  msgid "(Not finished)"
4285
  msgstr "(Ikke færdig)"
4286
 
4287
- #: src/admin.php:3476
4288
  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."
4289
  msgstr "Hvis du ser flere backup's, end du havde forventet, er det sikkert på grund af, at sletning af gamle backup sæt ikke sker, før en ny backup er færdig."
4290
 
@@ -4296,73 +4304,73 @@ msgstr "<b>Venligst ikke</b> plaver det i dine uploads eller plugins arkiv, da d
4296
  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)."
4297
  msgstr "Dette er, hvor UpdraftPlus vil skrive zip-filerne indledningsvis. Dette arkiv må være skrivbare for din web-server. Dette relaterer til dit indholdsarkiv (der som standard kaldes wp-content)."
4298
 
4299
- #: src/admin.php:2739
4300
  msgid "Job ID: %s"
4301
  msgstr "Job ID: %s"
4302
 
4303
- #: src/admin.php:2724
4304
  msgid "last activity: %ss ago"
4305
  msgstr "Seneste aktivitet: for %ss siden"
4306
 
4307
- #: src/admin.php:2723
4308
  msgid "next resumption: %d (after %ss)"
4309
  msgstr "Gentages næste gang: %d (after %ss)"
4310
 
4311
- #: src/admin.php:2706, src/central/bootstrap.php:411,
4312
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4313
  #: src/methods/updraftvault.php:467
4314
  msgid "Unknown"
4315
  msgstr "Ukendt"
4316
 
4317
- #: src/admin.php:2656
4318
  msgid "Backup finished"
4319
  msgstr "Backup er færdig"
4320
 
4321
- #: src/admin.php:2651
4322
  msgid "Waiting until scheduled time to retry because of errors"
4323
  msgstr "Afventer planlagt kørsel før næste forsøg pga. fejl"
4324
 
4325
- #: src/admin.php:2647
4326
  msgid "Pruning old backup sets"
4327
  msgstr "Nedbringer antal gamle backup-sæt"
4328
 
4329
- #: src/admin.php:2635
4330
  msgid "Uploading files to remote storage"
4331
  msgstr "Uploader filer til fjernlager"
4332
 
4333
- #: src/admin.php:2704
4334
  msgid "Encrypted database"
4335
  msgstr "Krypteret database"
4336
 
4337
- #: src/admin.php:2696
4338
  msgid "Encrypting database"
4339
  msgstr "Krypterer database"
4340
 
4341
- #: src/admin.php:2670
4342
  msgid "Created database backup"
4343
  msgstr "Oprettet database backup"
4344
 
4345
- #: src/admin.php:2683
4346
  msgid "table: %s"
4347
  msgstr "tabel: %s"
4348
 
4349
- #: src/admin.php:2681
4350
  msgid "Creating database backup"
4351
  msgstr "Opretter database backup"
4352
 
4353
- #: src/admin.php:2629
4354
  msgid "Created file backup zips"
4355
  msgstr "Oprettede fil backup zips"
4356
 
4357
- #: src/admin.php:2616
4358
  msgid "Creating file backup zips"
4359
  msgstr "Opretter fil backup zips"
4360
 
4361
- #: src/admin.php:2611
4362
  msgid "Backup begun"
4363
  msgstr "Backup er startet"
4364
 
4365
- #: src/admin.php:2454
4366
  msgid "Backups in progress:"
4367
  msgstr "Igangværende backups:"
4368
 
@@ -4382,7 +4390,7 @@ msgstr "mappe"
4382
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4383
  msgstr "UpdraftPlus havde behov for at oprette en %s i dit indholdsarkiv, men mislykkedes - Venligst tjek dine rettigheder og giv adgang (%s)"
4384
 
4385
- #: src/class-updraftplus.php:3118
4386
  msgid "The backup has not finished; a resumption is scheduled"
4387
  msgstr "Backup'en er ikke færdig; en genoptagelse er planlagt"
4388
 
@@ -4396,7 +4404,7 @@ msgstr "Dit website besøges kun sjældent og UpdraftPlus modtager ikke de forve
4396
  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)."
4397
  msgstr "%s godkendelsen kunne ikke fuldføres, fordi noget andet på dit site ødelægger den. Prøv at sætte plugins til passiv og skift til et standard tema. (Det, du leder efter, er de komponenter, der sender output (sandsynligvis PHP advarsler/fejl) inden siden starter op. At slå antivirus-indstillinger fra kan også hjælpe)."
4398
 
4399
- #: src/admin.php:2277
4400
  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)."
4401
  msgstr "Din PHP hukommelsesgrænse (bestemt af din web hosting udbyder) er meget lav. UpdraftPlus forsøgte uden held at øge denne grænse. Dette plugin har problemer med grænser mindre end 64 Mb - specielt hvis du har upload'et meget store filer (selv om mange sider vil fungere med en 32Mb grænse)."
4402
 
@@ -4475,23 +4483,23 @@ msgstr "Flere plugins"
4475
  msgid "Support"
4476
  msgstr "Support"
4477
 
4478
- #: src/class-updraftplus.php:4769
4479
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4480
  msgstr "UpdraftPlus kunne ikke finde indstillinger for tabeller ved scanning af database backup'en."
4481
 
4482
- #: src/class-updraftplus.php:4761
4483
  msgid "This database backup is missing core WordPress tables: %s"
4484
  msgstr "Denne database backup mangler WordPress tabeller: %s"
4485
 
4486
- #: src/class-updraftplus.php:4649
4487
  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."
4488
  msgstr "Du importerer fra en nyere version af WordPress (%s) til en ældre version (%s). Det kan ikke garanteres, at WordPress kan håndtere dette."
4489
 
4490
- #: src/class-updraftplus.php:4648, src/class-updraftplus.php:4655
4491
  msgid "%s version: %s"
4492
  msgstr ""
4493
 
4494
- #: src/class-updraftplus.php:4565
4495
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4496
  msgstr "Databasen er for lille til at være en godkendt WordPress database (størrelse: %s Kb)."
4497
 
@@ -4500,7 +4508,7 @@ msgstr "Databasen er for lille til at være en godkendt WordPress database (stø
4500
  msgid "Be safe with an automatic backup"
4501
  msgstr "Vær på den sikre side med en automatisk backup"
4502
 
4503
- #: src/admin.php:2229
4504
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4505
  msgstr "Hvis du stadig kan læse denne tekst, efter siden er færdig med at loade, så er der et problem med JavaScrips eller jQuery på siden."
4506
 
@@ -4548,11 +4556,11 @@ msgstr "Download til din computer"
4548
  msgid "Delete from your web server"
4549
  msgstr "Slet fra din webserver"
4550
 
4551
- #: src/admin.php:3444
4552
  msgid "You appear to be missing one or more archives from this multi-archive set."
4553
  msgstr "Du mangler tilsyneladende et eller flere arkiver fra dette multi-arkiv sæt."
4554
 
4555
- #: src/admin.php:3441
4556
  msgid "(%d archive(s) in set)."
4557
  msgstr "%d arkiv(er) i sæt)."
4558
 
@@ -4572,7 +4580,7 @@ msgstr "Advarsler:"
4572
  msgid "Error: the server sent an empty response."
4573
  msgstr "Fejl: Serveren sendte et tomt svar. "
4574
 
4575
- #: src/admin.php:1990
4576
  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?"
4577
  msgstr "Dette ligner en fil skabt af UpdraftPlus, men denne installation kender ikke til denne type objekt: %s. Måske skal du installere en add-on?"
4578
 
@@ -4608,7 +4616,7 @@ msgstr "Filen blev ikke fundet (du skal uploade den): %s"
4608
  msgid "No such backup set exists"
4609
  msgstr "En sådan backup findes ikke"
4610
 
4611
- #: src/admin.php:1239
4612
  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"
4613
  msgstr "Backup-arkivet for denne fil kunne ikke fi
11
  "Language: da_DK\n"
12
  "Project-Id-Version: UpdraftPlus\n"
13
 
14
+ #: src/class-updraftplus.php:4741
15
+ 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."
16
+ msgstr ""
17
+
18
+ #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
+ msgid "the migrator add-on"
20
+ msgstr ""
21
+
22
+ #: src/class-updraftplus.php:4739
23
+ msgid "This restoration will work if you still have an SSL certificate (i.e. can use https) to access the site. Otherwise, you will want to use %s to search/replace the site address so that the site can be visited without https."
24
+ msgstr ""
25
+
26
+ #: src/class-updraftplus.php:4737
27
+ 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."
28
+ msgstr ""
29
+
30
+ #: src/class-updraftplus.php:4734
31
+ 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."
32
+ msgstr ""
33
+
34
+ #: src/methods/googledrive.php:1153
35
+ msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
36
+ msgstr ""
37
+
38
+ #: src/methods/googledrive.php:1149
39
+ msgid "Follow this link to remove this site's settings for %s."
40
+ msgstr ""
41
+
42
  #: src/addons/sftp.php:346
43
+ msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
  msgstr ""
45
 
46
  #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
  msgstr ""
49
 
50
+ #: src/admin.php:1286, src/admin.php:3933, src/class-updraftplus.php:2095,
51
  #: src/class-updraftplus.php:2160, src/class-updraftplus.php:2294
52
  msgid "A PHP fatal error (%s) has occurred: %s"
53
  msgstr ""
54
 
55
+ #: src/admin.php:1279, src/admin.php:3925, src/class-updraftplus.php:2088,
56
  #: src/class-updraftplus.php:2153, src/class-updraftplus.php:2287
57
  msgid "A PHP exception (%s) has occurred: %s"
58
  msgstr ""
69
  msgid "North-east Asia"
70
  msgstr ""
71
 
72
+ #: src/udaddons/options.php:118
73
+ 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"
74
+ msgstr ""
75
 
76
  #: src/templates/wp-admin/settings/tab-status.php:80
77
  msgid "Remote storage authentication"
97
  msgid "Select Files"
98
  msgstr "Vælg filer"
99
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  #: src/methods/cloudfiles.php:497
101
  msgid "Rackspace Storage Region"
102
  msgstr "Rackspace Storage Region"
109
  msgid "Instant and secure logon with a wave of your phone."
110
  msgstr "Øjeblikkelig og sikker logon ved hjælp af din telefon."
111
 
 
 
 
 
112
  #: src/backup.php:1907
113
  msgid "As previously warned (see: %s), encryption is no longer a feature of the free edition of UpdraftPlus"
114
  msgstr "Som tidligere oplyst (se:%s), er kryptering ikke længere en mulighed i den gratis udgave af UpdraftPlus"
115
 
116
+ #: src/admin.php:4415
117
  msgid "Value"
118
  msgstr "Værdi"
119
 
120
+ #: src/admin.php:1540
 
 
 
 
121
  msgid "Did not know how to delete from this cloud service."
122
  msgstr "Ved ikke, hvordan der slettes fra denne cloud service."
123
 
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
  msgstr ""
135
 
136
+ #: src/templates/wp-admin/settings/existing-backups-table.php:70
137
  msgid "Stored at: %s"
138
  msgstr "Lagret på: %s"
139
 
141
  msgid "Cloud Files"
142
  msgstr "Cloud filer"
143
 
144
+ #: src/admin.php:4260
145
  msgid "Your settings failed to save. Please refresh the settings page and try again"
146
  msgstr "Dine indstillinger kunne ikke gemmes. Opdater siden for indstillingerne og prøv igen."
147
 
148
+ #: src/admin.php:4219
149
  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."
150
  msgstr ""
151
 
162
  msgid "Extra database"
163
  msgstr "Ekstra database"
164
 
165
+ #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
  msgstr "Klik her for at downloade eller gennemse"
168
 
206
  msgid "Skipped tables:"
207
  msgstr "Kasserede tabeller:"
208
 
209
+ #: src/class-updraftplus.php:4889
210
  msgid "This database backup has the following WordPress tables excluded: %s"
211
  msgstr "Denne database backup har følgende WordPress udelukkede tabeller:%s"
212
 
213
+ #: src/admin.php:2481
214
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
215
  msgstr "Med UpdraftPlus Premium kan du vælge at sikkerhedskopiere ikke-WordPress-tabeller, eller kun tage backup af udvalgte tabeller og endelig også at sikkerhedskopiere andre databaser."
216
 
217
+ #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
  msgstr "Alle WordPress tabeller vil blive sikkerhedskopieret."
220
 
714
  msgid "Backup of: %s"
715
  msgstr "Backup af: %s"
716
 
717
+ #: src/methods/googledrive.php:248
718
  msgid "The client has been deleted from the Google Drive API console. Please create a new Google Drive project and reconnect with UpdraftPlus."
719
  msgstr "Klienten er blevet slettet fra Google Drive API-konsollen. Opret venligst et nyt Google Drive projekt og genopret forbindelsen med UpdraftPlus."
720
 
742
  msgid "You have selected a remote storage option which has an authorization step to complete:"
743
  msgstr "Du har valgt en ekstern lagerløsning, der har et tilladelses-step for at fuldføre:"
744
 
745
+ #: src/admin.php:1591
746
  msgid "Remote files deleted:"
747
  msgstr "Slettede eksterne filer:"
748
 
749
+ #: src/admin.php:1590
750
  msgid "Local files deleted:"
751
  msgstr "Slettede lokale filer:"
752
 
815
  msgid "An error response was received; HTTP code:"
816
  msgstr "En fejlmeddelelse blev modtaget; HTTP kode:"
817
 
818
+ #: src/includes/class-commands.php:322
819
  msgid "%s add-on not found"
820
  msgstr "%s add-on blev ikke fundet"
821
 
827
  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"
828
  msgstr "Dette gør time-outs langt mere sandsynligt. Det anbefales at slå safe mode fra, eller kun at gendanne én enhed ad gangen"
829
 
830
+ #: src/admin.php:2306
831
  msgid "To fix this problem go here."
832
  msgstr "Løs dette problem her."
833
 
834
+ #: src/admin.php:2306
835
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
836
  msgstr "OptimizePress 2.0 koder dens indhold, så søg/erstat virker ikke."
837
 
867
  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."
868
  msgstr "Ingen respons data blev modtaget. Dette indikerer normalt et netværksforbindelseproblem (fx en udgående firewall eller et overbelastet netværk) mellem dette websted og UpdraftPlus.com."
869
 
870
+ #: src/methods/s3.php:1061
871
  msgid "The AWS access key looks to be wrong (valid %s access keys begin with \"AK\")"
872
  msgstr "AWS adgangskoden er tilsyneladende forkert (gyldige %s adgangskoder begynder med \"AK\")"
873
 
874
+ #: src/methods/s3.php:125
875
  msgid "No settings were found - please go to the Settings tab and check your settings"
876
  msgstr "Indstillinger blev ikke fundet - Gå venligst til Indstillinger knappen og kontroller dine indstillinger"
877
 
919
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
920
  msgstr "%s: Ulæselig fil - kunne ikke sikkerhedskopieres (check fil-tilladelser og -ejerskab)"
921
 
922
+ #: src/addons/migrator.php:2218
923
  msgid "Create key"
924
  msgstr "Opret nøgle"
925
 
926
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:513
927
  msgid "slower, strongest"
928
  msgstr "langsomere, stærkest"
929
 
930
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
931
  msgid "recommended"
932
  msgstr "anbefalet"
933
 
934
+ #: src/addons/migrator.php:2214, src/central/bootstrap.php:512
935
  msgid "%s bytes"
936
  msgstr "%s bytes"
937
 
938
+ #: src/addons/migrator.php:2213, src/central/bootstrap.php:511
939
  msgid "faster (possibility for slow PHP installs)"
940
  msgstr "hurtigere (mulighed for langsomme PHP installationer)"
941
 
942
+ #: src/addons/migrator.php:2212, src/central/bootstrap.php:510
943
  msgid "easy to break, fastest"
944
  msgstr "let at bryde, hurtigst"
945
 
946
+ #: src/addons/migrator.php:2212, src/addons/migrator.php:2213,
947
+ #: src/addons/migrator.php:2215, src/central/bootstrap.php:510,
948
  #: src/central/bootstrap.php:511, src/central/bootstrap.php:513
949
  msgid "%s bits"
950
  msgstr "%s bits"
951
 
952
+ #: src/addons/migrator.php:2210, src/central/bootstrap.php:508
953
  msgid "Encryption key size:"
954
  msgstr "Krypterings-nøglens størrelse:"
955
 
956
+ #: src/addons/migrator.php:2208
957
  msgid "Enter your chosen name"
958
  msgstr "Indtast dit valgte navn"
959
 
960
+ #: src/addons/migrator.php:2207
961
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
962
  msgstr "Opret en nøgle: Giv denne nøgle et unikt navn (som f.eks antyder det site, den er til), og tryk derefter på \"Opret Nøgle\":"
963
 
964
+ #: src/methods/googledrive.php:491
965
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
966
  msgstr "Upload forventes at svigte: %s grænsen for en enkelt fil er %s, mens denne fil er %s GB (%d bytes)"
967
 
1001
  msgid "Now"
1002
  msgstr "Nu"
1003
 
1004
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
1005
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
1006
  msgstr "Du bør frigøre %s for at pæne permalinks (f.eks. %s) kan virke"
1007
 
1123
  msgid "UpdraftCentral Connection"
1124
  msgstr "UpdraftCentral Connection"
1125
 
1126
+ #: src/backup.php:867, src/class-updraftplus.php:3182
1127
  msgid "The backup was aborted by the user"
1128
  msgstr "Backup'en blev afbrudt af brugeren"
1129
 
1130
+ #: src/admin.php:4255
1131
  msgid "Your settings have been saved."
1132
  msgstr "Dine indstillinger er gemt"
1133
 
1134
+ #: src/admin.php:3389
1135
  msgid "Total backup size:"
1136
  msgstr "Total backup-størrelse:"
1137
 
1138
+ #: src/admin.php:2803
1139
  msgid "stop"
1140
  msgstr "stoppe"
1141
 
1142
+ #: src/admin.php:2641
1143
  msgid "The backup has finished running"
1144
  msgstr "Denne backup er færdig"
1145
 
1161
  msgid "this backup set"
1162
  msgstr "dette backup sæt"
1163
 
1164
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:32
1165
  msgid "calculate"
1166
  msgstr "Beregn"
1167
 
1205
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
1206
  msgstr "Det nødvendige %s PHP modul er ikke installeret - bed din webudbyder om at aktivere det."
1207
 
1208
+ #: src/class-updraftplus.php:4804, src/restorer.php:1700
1209
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
1210
  msgstr "For at importere et almindeligt WordPress site til en multisite installation kræves %s."
1211
 
1212
+ #: src/class-updraftplus.php:4800
1213
  msgid "Please read this link for important information on this process."
1214
  msgstr "Venligst læs dette link for vigtig information om processen."
1215
 
1216
+ #: src/class-updraftplus.php:4800
1217
  msgid "It will be imported as a new site."
1218
  msgstr "Vil blive importeret som et nyt site."
1219
 
1220
+ #: src/admin.php:2454, src/templates/wp-admin/notices/horizontal-notice.php:16,
1221
  #: src/templates/wp-admin/notices/horizontal-notice.php:18
1222
  msgid "Dismiss"
1223
  msgstr "Luk"
1242
  msgid "Which site to restore"
1243
  msgstr "Hvilket site at gendanne"
1244
 
1245
+ #: src/addons/migrator.php:514, src/addons/migrator.php:515
1246
  msgid "Error when creating new site at your chosen address:"
1247
  msgstr "Der opsted fejl oprettelse af nyt site på din valgte adresse:"
1248
 
1249
+ #: src/addons/migrator.php:456
1250
  msgid "Required information for restoring this backup was not given (%s)"
1251
  msgstr "Der blev ikke givet nødvendige oplysninger for at kunne genskabe denne sikkerhedskopi (%s)"
1252
 
1253
+ #: src/addons/migrator.php:415
1254
  msgid "Attribute imported content to user"
1255
  msgstr "Egenskabs importeret indhold til bruger"
1256
 
1257
+ #: src/addons/migrator.php:405, src/addons/migrator.php:407
1258
  msgid "You must use lower-case letters or numbers for the site path, only."
1259
  msgstr "Du skal bruge små bogstaver eller tal i websitets sti."
1260
 
1261
+ #: src/addons/migrator.php:393
1262
  msgid "This feature is not compatible with %s"
1263
  msgstr "Denne funktion er ikke kompatibel med %s"
1264
 
1265
+ #: src/addons/migrator.php:391, src/addons/migrator.php:393
1266
  msgid "Importing a single site into a multisite install"
1267
  msgstr "Importerer et single site til en multisite installation"
1268
 
1269
+ #: src/addons/migrator.php:382
1270
  msgid "other content from wp-content"
1271
  msgstr "andet indhold end wp-indhold"
1272
 
1273
+ #: src/addons/migrator.php:379
1274
  msgid "WordPress core"
1275
  msgstr "WordPress core"
1276
 
1277
+ #: src/addons/migrator.php:379, src/addons/migrator.php:382,
1278
+ #: src/addons/migrator.php:385
1279
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
1280
  msgstr "Du valgte at %s skal indgå i gendannelsen - det kan ikke / bør ikke ske ved import af et enkelt site til et netværk."
1281
 
1283
  msgid "Call WordPress action:"
1284
  msgstr "Udfør WordPress handling:"
1285
 
1286
+ #: src/admin.php:2489
1287
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
1288
  msgstr "Dine gemte indstillinger påvirker også, hvad der oprettes back up af - f.eks. udelukkes filer."
1289
 
1290
+ #: src/admin.php:3813
1291
  msgid "Skipping: this archive was already restored."
1292
  msgstr "Stopper: Dette arkiv er allerede genskabt."
1293
 
1319
  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)."
1320
  msgstr "Denne knap vil slette alle UpdraftPlus indstillinger og information om igangværende sikkerhedskopier (men ikke slette eksisterende sikkerhedskopier i din sky)."
1321
 
1322
+ #: src/admin.php:4132
1323
  msgid "Send this backup to remote storage"
1324
  msgstr "Send denne backup til fjernlager"
1325
 
1326
+ #: src/admin.php:4130
1327
  msgid "Check out UpdraftPlus Vault."
1328
  msgstr "Se UpdraftPlus Vault"
1329
 
1330
+ #: src/admin.php:4130
1331
  msgid "Not got any remote storage?"
1332
  msgstr "Har du ikke et fjernlager?"
1333
 
1334
+ #: src/admin.php:4130
1335
  msgid "settings"
1336
  msgstr "Indstillinger"
1337
 
1338
+ #: src/admin.php:4130
1339
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
1340
  msgstr "Backup vil ikke blive sendt til noget lager - Intet er blevet gemt i %s"
1341
 
1342
+ #: src/admin.php:2487
1343
  msgid "Include any files in the backup"
1344
  msgstr "Medtag alle filer i backup'en"
1345
 
1346
+ #: src/admin.php:2473
1347
  msgid "Include the database in the backup"
1348
  msgstr "Medtag databasen i backup'en"
1349
 
1350
+ #: src/admin.php:2453
1351
  msgid "Continue restoration"
1352
  msgstr "Fortsæt gendannelse"
1353
 
1354
+ #: src/admin.php:2448
1355
  msgid "You have an unfinished restoration operation, begun %s ago."
1356
  msgstr "Du har en ufærdig gendannelses-operation, påbegyndt for %s siden."
1357
 
1358
+ #: src/admin.php:2447
1359
  msgid "Unfinished restoration"
1360
  msgstr "Ufærdig gendannelse"
1361
 
1362
+ #: src/admin.php:2445
1363
  msgid "%s minutes, %s seconds"
1364
  msgstr "%s minutter, %s sekunder"
1365
 
1366
+ #: src/admin.php:2392
1367
  msgid "Backup Contents And Schedule"
1368
  msgstr "Backup Indhold og Tidspland"
1369
 
1371
  msgid "Premium / Extensions"
1372
  msgstr "Premium / Udvidelser"
1373
 
1374
+ #: src/admin.php:2172, src/admin.php:2181
1375
  msgid "Sufficient information about the in-progress restoration operation could not be found."
1376
  msgstr "Tilstrækkelige informationer om den igangværende genskabelse kunne ikke findes."
1377
 
1518
  msgid "Could not access container"
1519
  msgstr "Kunne ikke tilgå mappe"
1520
 
1521
+ #: src/class-updraftplus.php:3199
1522
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
1523
  msgstr "For at fuldføre din migrering/kloning, bør du nu logge ind på det eksterne site og genoprette backup sættet."
1524
 
1643
  msgid "Actions upon selected backups"
1644
  msgstr "Handlinger for udvalgte backups"
1645
 
1646
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
1647
  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)."
1648
  msgstr "Tryk her for at se dit fjernlagers muligheder ved eventuelle eksisterende backup sæt (fra ethvert websted, hvis de opbevares i samme mappe)."
1649
 
1650
+ #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
  msgstr "Backup sæt fjernet:"
1653
 
1699
  msgid "You do not currently have any UpdraftPlus Vault quota"
1700
  msgstr "Du har ikke på nuværende tidspunkt nogen UpdraftPlus Vault kvote"
1701
 
1702
+ #: src/class-updraftplus.php:4839
1703
  msgid "You must upgrade MySQL to be able to use this database."
1704
  msgstr "Du skal opgradere MySQL for at kunne bruge denne database."
1705
 
1706
+ #: src/class-updraftplus.php:4839
1707
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
1708
  msgstr "Database-backup'en bruger MySQL funktioner, som ikke findes i den gamle MySQL version (%s), dette websted kører på."
1709
 
1710
+ #: src/admin.php:2291
1711
  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."
1712
  msgstr "UpdraftPlus-mappen i wp-content/plugins indeholder white-space (tom plads / mellemrum); WordPress kan ikke lide dette. Du bør omdøbe mappen til wp-content/plugins/updraftplus for at løse dette problem."
1713
 
1876
  msgstr "Updraft Vault"
1877
 
1878
  #: src/addons/azure.php:374, src/addons/googlecloud.php:760,
1879
+ #: src/methods/s3.php:1089
1880
  msgid "Delete failed:"
1881
  msgstr "Sletning mislykkedes:"
1882
 
1900
  msgid "Allow download"
1901
  msgstr "Tillad download"
1902
 
1903
+ #: src/addons/migrator.php:1762
1904
  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."
1905
  msgstr "Hvis muligheden for at sende direkte fra site til site ikke virker for dig, så er der tre andre metoder - prøv en af disse i stedet."
1906
 
1907
+ #: src/addons/migrator.php:1747, src/admin.php:709
1908
  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."
1909
  msgstr "Du bør kontrollere, at den eksterne site er online, ikke er bag en firewall, ikke har sikkerhedsmoduler, der kan blokere adgangen, har UpdraftPlus version %s eller nyere aktiv, og at nøglerne er blevet indtastet korrekt."
1910
 
1911
+ #: src/addons/migrator.php:2250
1912
  msgid "Existing keys"
1913
  msgstr "Eksisterende nøgler"
1914
 
1915
+ #: src/addons/migrator.php:2241
1916
  msgid "No keys to allow remote sites to connect have yet been created."
1917
  msgstr "Der er endnu ikke oprettet nøgler, der kan tillade eksterne sites at skabe forbindelse."
1918
 
1919
+ #: src/addons/migrator.php:2223
1920
  msgid "Your new key:"
1921
  msgstr "Din nye nøgle:"
1922
 
1923
+ #: src/addons/migrator.php:2202
1924
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1925
  msgstr "For at tillade en anden hjemmeside til at sende en backup til denne hjemmeside, skal du oprette en nøgle, og derefter klikke på \"Overfør\"-knappen på det afsendende site, og kopiere og indsætte nøglen der."
1926
 
1927
+ #: src/addons/migrator.php:2184
1928
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1929
  msgstr "Så for at få nøglen til det eksterne site, skal du åbne 'Overfør' vinduet på det eksterne websted, scrolle ned, og så oprette en der."
1930
 
1931
+ #: src/addons/migrator.php:2184
1932
  msgid "Keys for this site are created in the section below the one you just pressed in."
1933
  msgstr "Nøgler til dette site er skabt i afsnittet nedenfor den, du netop har indtastet ind."
1934
 
1935
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1936
  msgid "You must copy and paste this key now - it cannot be shown again."
1937
  msgstr "Du skal kopiere og indsætte denne nøgle nu - den kan ikke vises igen."
1938
 
1939
+ #: src/addons/migrator.php:1864, src/central/bootstrap.php:370
1940
  msgid "Key created successfully."
1941
  msgstr "Nøgle blev skabt med succes."
1942
 
1943
+ #: src/addons/migrator.php:1849
1944
  msgid "A key with this name already exists; you must use a unique name."
1945
  msgstr "En nøgle med dette navn eksisterer allerede; du skal bruge et unikt navn."
1946
 
1947
+ #: src/addons/migrator.php:1793
1948
  msgid "Also send this backup to the active remote storage locations"
1949
  msgstr "Send også denne backup til de aktive eksterne lagringslokationer"
1950
 
1951
+ #: src/addons/migrator.php:1758
1952
  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."
1953
  msgstr "Den webadresse, du sender til (%s) ligner en lokal udviklings-hjemmeside. Hvis du sender fra et eksternt netværk, er det sandsynligt, at en firewall vil blokere dette."
1954
 
1955
+ #: src/addons/migrator.php:1714
1956
  msgid "site not found"
1957
  msgstr "site ikke fundet"
1958
 
1959
+ #: src/addons/migrator.php:1699
1960
  msgid "Backup data will be sent to:"
1961
  msgstr "Backup data vil blive sendt til:"
1962
 
1963
+ #: src/addons/migrator.php:203
1964
  msgid "Restore an existing backup set onto this site"
1965
  msgstr "Genskab et eksisterende backup sæt til dette site"
1966
 
1967
+ #: src/addons/migrator.php:196
1968
  msgid "This site has no backups to restore from yet."
1969
  msgstr "Dette site har ingeb backups at genskabe fra endnu."
1970
 
1976
  msgid "This storage method does not allow downloading"
1977
  msgstr "Denne lagringsmetode tillader ikke download"
1978
 
1979
+ #: src/admin.php:3567
1980
  msgid "(backup set imported from remote location)"
1981
  msgstr "(backup sæt importeret fra ekstern lokation)"
1982
 
1983
+ #: src/templates/wp-admin/settings/existing-backups-table.php:83
1984
  msgid "Site"
1985
  msgstr "Site"
1986
 
1987
+ #: src/templates/wp-admin/settings/existing-backups-table.php:82
1988
  msgid "Backup sent to remote site - not available for download."
1989
  msgstr "Backup sendt til eksternt site - ikke tilgængelig til download."
1990
 
1996
  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."
1997
  msgstr "Dette backup sæt blev ikke genkendt af UpdraftPlus som værende skabt af den nuværende WordPress installation, men blev enten fundet i fjernlager, eller blev sendt fra et eksternt site."
1998
 
1999
+ #: src/addons/migrator.php:1775, src/admin.php:716
2000
  msgid "Testing connection..."
2001
  msgstr "Tester forbindelse..."
2002
 
2016
  msgid "Creating..."
2017
  msgstr "Opretter..."
2018
 
2019
+ #: src/addons/migrator.php:2201
2020
  msgid "Or, receive a backup from a remote site"
2021
  msgstr "Eller, modtag en backup fra det andet site"
2022
 
2023
+ #: src/addons/migrator.php:2190
2024
  msgid "Paste key here"
2025
  msgstr "Indsæt nøglen her"
2026
 
2027
+ #: src/addons/migrator.php:2184
2028
  msgid "How do I get a site's key?"
2029
  msgstr "Hvordan får jeg et sites nøgle?"
2030
 
2031
+ #: src/addons/migrator.php:2184
2032
  msgid "To add a site as a destination for sending to, enter that site's key below."
2033
  msgstr "For at tilføje en hjemmeside som en destination til at sende til, skal du indtaste dette websteds nøgle nedenfor."
2034
 
2035
+ #: src/addons/migrator.php:2181
2036
  msgid "Or, send a backup to another site"
2037
  msgstr "Eller, send en backup til et andet site"
2038
 
2039
+ #: src/addons/migrator.php:1946, src/admin.php:717
2040
  msgid "Send"
2041
  msgstr "Send"
2042
 
2043
+ #: src/addons/migrator.php:1940, src/admin.php:708
2044
  msgid "Send to site:"
2045
  msgstr "Send til site:"
2046
 
2047
+ #: src/addons/migrator.php:1938
2048
  msgid "No receiving sites have yet been added."
2049
  msgstr "Ingen modtagerside er blevet tilføjet."
2050
 
2051
+ #: src/addons/migrator.php:1919
2052
  msgid "It is for sending backups to the following site: "
2053
  msgstr "Det er til brug ved afsendelse af backup til følgende side:"
2054
 
2055
+ #: src/addons/migrator.php:1919
2056
  msgid "The key was successfully added."
2057
  msgstr "Nøglen blev tilføjet med succes."
2058
 
2059
+ #: src/addons/migrator.php:1903
2060
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
2061
  msgstr "Den angivne nøgle tilhører ikke en fjern-side (den tilhører denne side)."
2062
 
2063
+ #: src/addons/migrator.php:1892, src/addons/migrator.php:1894,
2064
+ #: src/addons/migrator.php:1898
2065
  msgid "The entered key was corrupt - please try again."
2066
  msgstr "Den angivne nøgle var i stykker - prøv venligst igen."
2067
 
2068
+ #: src/addons/migrator.php:1890
2069
  msgid "The entered key was the wrong length - please try again."
2070
  msgstr "Den angivne nøgle havde forkert længde - prøv venligst igen."
2071
 
2072
+ #: src/addons/migrator.php:1880
2073
  msgid "key"
2074
  msgstr "nøgle"
2075
 
2109
  msgid "Resetting..."
2110
  msgstr "Nulstiller..."
2111
 
2112
+ #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2114
  msgstr "Tilføj site"
2115
 
2117
  msgid "Adding..."
2118
  msgstr "Tilføjer..."
2119
 
2120
+ #: src/udaddons/options.php:336
2121
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
2122
  msgstr "Adgang nægtet - Måske har du allerede brugt dette køb et andet sted, eller din betalte periode til at downloade fra updraftplus.com er udløbet?"
2123
 
2137
  msgid "Go here to re-enter your password."
2138
  msgstr "Klik her for at indtaste dit password igen."
2139
 
2140
+ #: src/addons/migrator.php:232
2141
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
2142
  msgstr "Når du trykker på denne knap, vil du få mulighed for at vælge, hvilke komponenter du ønsker at migrere"
2143
 
2144
+ #: src/addons/migrator.php:203
2145
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
2146
  msgstr "Gå til \"Eksisterende backups\" for at importere et backup-sæt."
2147
 
2161
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
2162
  msgstr "Hvis OneDrive senere viser meddelelsen \"unauthorized_client\", så har du ikke indtastet en gyldig klient-id her."
2163
 
2164
+ #: src/addons/azure.php:541, src/addons/migrator.php:1762,
2165
  #: src/addons/onedrive.php:955
2166
  msgid "For longer help, including screenshots, follow this link."
2167
  msgstr "Følg dette link for mere uddybende hjælp, der blandt andet indkluderer skærmbilleder."
2340
  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)"
2341
  msgstr "Hvis du har en AWS admin brugerkonto, kan du bruge denne guide til hurtigt at oprette en ny AWS (IAM) bruger med adgang til kun denne spand (i stedet for hele din konto)"
2342
 
2343
+ #: src/methods/s3.php:874
2344
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
2345
  msgstr "Brug denne tilføjelse for at oprette en ny IAM sub-bruger og adgangsnøgle, der kun har adgang til denne spand."
2346
 
2415
  msgid "(at same time as files backup)"
2416
  msgstr "(samtidigt, som der tages backup af filerne)"
2417
 
2418
+ #: src/admin.php:3071
2419
  msgid "No backup has been completed"
2420
  msgstr "Ingen backup er fuldført."
2421
 
2464
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2465
  msgstr "Lav backup (hvis relevant) af plugins, temaer og WordPress database med UpdraftPlus før du opdaterer"
2466
 
2467
+ #: src/methods/s3.php:171, src/methods/s3.php:172, src/methods/s3.php:173,
2468
+ #: src/methods/s3.php:181, src/methods/s3.php:182, src/methods/s3.php:183
2469
  msgid "%s Error: Failed to initialise"
2470
  msgstr "%s Fejl: Kunne ikke initialiseres"
2471
 
2505
  msgid "Check this box to have a basic report sent to"
2506
  msgstr "Markér dette felt for at få en grundlæggende rapport sendt til"
2507
 
2508
+ #: src/admin.php:3080
2509
  msgctxt "i.e. Non-automatic"
2510
  msgid "Manual"
2511
  msgstr "Manual"
2523
  msgid "Any other file/directory on your server that you wish to back up"
2524
  msgstr "Enhver anden fil/mappe på din server, som du ønsker at sikkerhedskopiere"
2525
 
2526
+ #: src/admin.php:2308
2527
  msgid "For even more features and personal support, check out "
2528
  msgstr "For endnu flere funktioner og personlig support, tjek"
2529
 
2613
  msgid "(learn more about this significant option)"
2614
  msgstr "(lær mere om denne betydelige mulighed)"
2615
 
2616
+ #: src/udaddons/options.php:278
2617
  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."
2618
  msgstr "Bemærk, at efter du har modtaget dine tilføjelser, kan du fjerne dit password (men ikke e-mail-adresse) fra indstillingerne nedenfor, uden at påvirke dette sites adgang til opdateringer."
2619
 
2620
+ #: src/admin.php:2641, src/admin.php:3589, src/admin.php:3590
2621
  msgid "View Log"
2622
  msgstr "Se loggen"
2623
 
2634
  msgid "and retain this many scheduled backups"
2635
  msgstr "og fastholde så mange planlagte backups"
2636
 
2637
+ #: src/admin.php:3041
2638
  msgid "incremental backup; base backup: %s"
2639
  msgstr "trinvis sikkerhedskopi; basis backup: %s"
2640
 
2642
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
2643
  msgstr "For evnen til at låse adgangen til UpdraftPlus-indstillingerne med en adgangskode, skal du opgradere til UpdraftPlus Premium."
2644
 
2645
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:57
2646
  msgid "Upload files into UpdraftPlus."
2647
  msgstr "Upload filer til UpdraftPlus."
2648
 
2649
+ #: src/admin.php:932, src/includes/class-commands.php:376,
2650
  #: src/templates/wp-admin/settings/tab-status.php:22
2651
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2652
  msgstr "\"Backup Nu\"-knappen er deaktiveret, da din backup mappe er ikke skrivbar (gå til fanen \"Indstillinger\", og find den relevante mulighed)."
2653
 
2654
+ #: src/class-updraftplus.php:4789
2655
  msgid "Backup label:"
2656
  msgstr "Backup etiket:"
2657
 
2658
+ #: src/admin.php:1833
2659
  msgid "Error: unexpected file read fail"
2660
  msgstr "Fejl: Uventet fejl ved læsning af fil"
2661
 
2675
  msgid "Your label for this backup (optional)"
2676
  msgstr "Din label til denne backup (valgfrit)"
2677
 
2678
+ #: src/addons/googlecloud.php:908, src/methods/googledrive.php:1087
2679
  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."
2680
  msgstr "%s tillader ikke godkendelse af sider hostet direkte på IP-adresser. Du bliver nødt til at ændre din webstedsadresse (%s), før du kan bruge %s til lagring."
2681
 
2695
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
2696
  msgstr "For at fortsætte, så tryk på 'Backup Nu' og derefter se 'Sidste Log Besked' feltet for aktivitet."
2697
 
2698
+ #: src/class-updraftplus.php:4808
2699
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
2700
  msgstr "Hvis du ønsker at genskabe en multisite backup, så skal du først sætte din WordPress op som en multisite installation."
2701
 
2702
+ #: src/class-updraftplus.php:4808
2703
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
2704
  msgstr "Din backup er fra en WordPress multisite installation; men det er denne side ikke. Det er kun den første side som vil være tilgængelig."
2705
 
2706
+ #: src/addons/migrator.php:1091
2707
  msgid "already done"
2708
  msgstr "Allerede færdig"
2709
 
2710
+ #: src/addons/migrator.php:1048
2711
  msgid "skipped (not in list)"
2712
  msgstr "Sprang over (ikke på listen)"
2713
 
2714
+ #: src/addons/migrator.php:1048, src/addons/migrator.php:1091,
2715
+ #: src/addons/migrator.php:1223
2716
  msgid "Search and replacing table:"
2717
  msgstr "Søg og erstat tabel:"
2718
 
2719
+ #: src/addons/migrator.php:330
2720
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2721
  msgstr "Indtast en kommasepareret liste; ellers efterlad tom for alle felter."
2722
 
2723
+ #: src/addons/migrator.php:330
2724
  msgid "These tables only"
2725
  msgstr "Kun disse tabeller"
2726
 
2727
+ #: src/addons/migrator.php:329
2728
  msgid "Rows per batch"
2729
  msgstr "Rækker pr. kørsel"
2730
 
2736
  msgid "You need to connect to receive future updates to UpdraftPlus."
2737
  msgstr "Du er nødt til at modtage fremtidige opdateringer UpdraftPlus."
2738
 
2739
+ #: src/class-updraftplus.php:4781
2740
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2741
  msgstr "Eventuelle support anmodninger som har med %s at gøre bør løses med dit web-hosting firma."
2742
 
2743
+ #: src/class-updraftplus.php:4781
2744
  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."
2745
  msgstr "Du bør kun fortsætte, hvis du ikke kan opdatere den aktuelle server og er overbeviste om (eller villig til at forsøge om), at dine plugins/temaer/osv. er kompatible med den ældre %s version."
2746
 
2747
+ #: src/class-updraftplus.php:4781
2748
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2749
  msgstr "Denne er markant nyere end den serverversion, som du nu ønsker at gendanne på (version %s)."
2750
 
2751
+ #: src/class-updraftplus.php:4781
2752
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2753
  msgstr "Siden i denne backup blev lavet på en webserver med version %s af %s."
2754
 
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
  msgstr ""
2779
 
2780
+ #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
2782
  msgstr "Hvorfor ser jeg dette?"
2783
 
2784
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2785
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2786
  msgstr "Placeringen af denne mappe er angivet i ekspertindstillingerne i fanen Indstillinger."
2787
 
2788
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
2789
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2790
  msgstr "Klik her for at se i din UpdraftPlus mappe (på dit webhotel) efter nye backups som du har uploadet."
2791
 
2792
+ #: src/admin.php:1772, src/admin.php:1784
2793
  msgid "Start backup"
2794
  msgstr "Start backup"
2795
 
2796
+ #: src/class-updraftplus.php:4753, src/restorer.php:1010
2797
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2798
  msgstr "Du bruger %s webserver, men den lader ikke til at have %s modulet indlæst."
2799
 
2800
+ #: src/admin.php:2964
2801
  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."
2802
  msgstr "Du er nødt til at kontakte din hostingudbyder for at finde ud af, hvordan du skal angive tilladelser for et WordPress plugin for at det kan skrive til mappen."
2803
 
2805
  msgid "Unless you have a problem, you can completely ignore everything here."
2806
  msgstr "Med mindre du har problemmer, kan du bare ignorere alt her."
2807
 
2808
+ #: src/admin.php:1994
2809
  msgid "This file could not be uploaded"
2810
  msgstr "Denne fil kunne ikke blive uploadet"
2811
 
2812
+ #: src/admin.php:1959
2813
  msgid "You will find more information about this in the Settings section."
2814
  msgstr "Du kan finde mere information om dette i afsnittet Indstillinger."
2815
 
2829
  msgid "Memory limit"
2830
  msgstr "hukommelsesgrænse"
2831
 
2832
+ #: src/class-updraftplus.php:4911, src/restorer.php:1493
2833
  msgid "restoration"
2834
  msgstr "genoprettelse"
2835
 
2853
  msgid "Backup succeeded"
2854
  msgstr "Backup lykkedes"
2855
 
2856
+ #: src/admin.php:3081, src/admin.php:3082, src/admin.php:3083,
2857
  #: src/updraftplus.php:99, src/updraftplus.php:100
2858
  msgid "Every %s hours"
2859
  msgstr "Hver %s time"
2860
 
2861
+ #: src/addons/migrator.php:793, src/addons/migrator.php:795
2862
  msgid "search and replace"
2863
  msgstr "søger og erstatter"
2864
 
2865
+ #: src/addons/migrator.php:332
2866
  msgid "Go"
2867
  msgstr "Start"
2868
 
2869
+ #: src/addons/migrator.php:321
2870
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2871
  msgstr "En søg/erstat kan ikke gøres om - er du sikker på, at du vil gøre dette?"
2872
 
2873
+ #: src/addons/migrator.php:320
2874
  msgid "This can easily destroy your site; so, use it with care!"
2875
  msgstr "Dette kan let ødelægge din side; så anvend det med forsigtighed!"
2876
 
2877
+ #: src/addons/migrator.php:290, src/addons/migrator.php:328
2878
  msgid "Replace with"
2879
  msgstr "Erstat med"
2880
 
2881
+ #: src/addons/migrator.php:289, src/addons/migrator.php:327
2882
  msgid "Search for"
2883
  msgstr "Søg efter"
2884
 
2885
+ #: src/addons/migrator.php:288, src/addons/migrator.php:319,
2886
  #: src/templates/wp-admin/advanced/search-replace.php:7,
2887
  #: src/templates/wp-admin/advanced/tools-menu.php:18
2888
  msgid "Search / replace database"
2889
  msgstr "Søg / erstat database"
2890
 
2891
+ #: src/addons/migrator.php:294
2892
  msgid "search term"
2893
  msgstr "søgefrase"
2894
 
2904
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2905
  msgstr "E-mail rapporter skabt af UpdraftPlus (gratis) giver dig de seneste UpdraftPlus.com nyheder"
2906
 
2907
+ #: src/methods/googledrive.php:1095
2908
  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."
2909
  msgstr "P.S. Hvis du installerer UpdraftPlus på flere WordPress-sider, kan du ikke genbruge dine projekter; du må oprette et ny ud fra din Google API konsol for hver side."
2910
 
2911
+ #: src/admin.php:3416
2912
  msgid "You have not yet made any backups."
2913
  msgstr "Du har endnu ikke oprettet nogle backups."
2914
 
2928
  msgid "Free disk space in account:"
2929
  msgstr "Ledig diskplads på konto:"
2930
 
2931
+ #: src/admin.php:4226, src/templates/wp-admin/settings/tab-status.php:27
2932
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2933
  msgstr "Denne knap er deaktiveret fordi dit backup-arkiv ikke er skrivbart (se indstillingerne)."
2934
 
2935
+ #: src/admin.php:522, src/admin.php:664, src/admin.php:1637,
2936
+ #: src/includes/deprecated-actions.php:29,
2937
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:21,
2938
  #: src/templates/wp-admin/settings/tab-bar.php:6
2939
  msgid "Existing Backups"
2940
  msgstr "Eksisterende backups"
3027
  msgid "External database (%s)"
3028
  msgstr "Ekstern database (%s)"
3029
 
3030
+ #: src/methods/googledrive.php:1095
3031
  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."
3032
  msgstr "Følg linket til din Google API konsol og aktivér der Drive API og skab en Client ID i API Access sektionen."
3033
 
3034
+ #: src/methods/googledrive.php:455
3035
  msgid "failed to access parent folder"
3036
  msgstr "adgang til den overliggende mappe mislykkedes"
3037
 
3038
  #: src/addons/googlecloud.php:615, src/addons/onedrive.php:762,
3039
+ #: src/addons/onedrive.php:773, src/methods/googledrive.php:408
3040
  msgid "However, subsequent access attempts failed:"
3041
  msgstr "Dog mislykkede adgangsforsøget efterfølgende:"
3042
 
3043
+ #: src/admin.php:3441
3044
  msgid "External database"
3045
  msgstr "Ekstern database"
3046
 
3072
  msgid "use UpdraftPlus Premium"
3073
  msgstr "brug UpdraftPlus Premium"
3074
 
3075
+ #: src/class-updraftplus.php:4655
3076
  msgid "Decryption failed. The database file is encrypted."
3077
  msgstr "Dekryptering mislykkedes. Databasefilen er krypteret."
3078
 
3093
  msgid "database connection attempt failed."
3094
  msgstr "database forbindelse mislykkedes."
3095
 
3096
+ #: src/addons/migrator.php:979
3097
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
3098
  msgstr "Advarsel: Databasens URL (%s) er forskellig fra, hvad vi forventede (%s)"
3099
 
3176
  msgid "Authenticate with %s"
3177
  msgstr "Godkend med %s"
3178
 
3179
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
3180
  msgid "Error downloading remote file: Failed to download"
3181
  msgstr "Fejl ved download af fil: Download mislykkedes"
3182
 
3204
  msgstr "%s fejl - Adgang til containeren mislykkedes"
3205
 
3206
  #: src/addons/googlecloud.php:988, src/addons/onedrive.php:990,
3207
+ #: src/methods/dropbox.php:546, src/methods/googledrive.php:1161
3208
  msgid "Account holder's name: %s."
3209
  msgstr "Kontoindehavers navn: %s."
3210
 
3211
+ #: src/methods/googledrive.php:1139
3212
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
3213
  msgstr "For at kunne oprette et standard mappe-navn skal du bruge UpdraftPlus Premium."
3214
 
3215
+ #: src/methods/googledrive.php:1130
3216
  msgid "It is an ID number internal to Google Drive"
3217
  msgstr "Det er et internt Google Drive ID-nummer"
3218
 
3219
+ #: src/methods/googledrive.php:1130
3220
  msgid "<strong>This is NOT a folder name</strong>."
3221
  msgstr "<strong>Dette er IKKE et mappenavn</strong>."
3222
 
3223
  #: src/addons/google-enhanced.php:84, src/addons/onedrive.php:982,
3224
+ #: src/methods/googledrive.php:1126, src/methods/googledrive.php:1136
3225
  msgid "Folder"
3226
  msgstr "Mappe"
3227
 
3228
  #: src/addons/googlecloud.php:296, src/addons/onedrive.php:366,
3229
+ #: src/methods/googledrive.php:1046
3230
  msgid "%s download: failed: file not found"
3231
  msgstr "%s download: Mislykkedes: Filen blev ikke fundet"
3232
 
3233
+ #: src/addons/googlecloud.php:635, src/methods/googledrive.php:428
3234
  msgid "Name: %s."
3235
  msgstr "Navn: %s."
3236
 
3237
+ #: src/methods/googledrive.php:186
3238
  msgid "Google Drive list files: failed to access parent folder"
3239
  msgstr "Google Drive fil-liste: Kunne ikke få adgang til hovedmappen"
3240
 
3259
  msgid "Fetch"
3260
  msgstr "Fetch"
3261
 
3262
+ #: src/addons/migrator.php:391,
3263
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:61,
3264
  #: src/templates/wp-admin/settings/form-contents.php:212
3265
  msgid "This feature requires %s version %s or later"
3266
  msgstr "Denne funktion kræver %s version %s eller nyere"
3273
  msgid "Error - failed to download the file"
3274
  msgstr "Fejl - Kunne ikke downloade filen"
3275
 
3276
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:43
3277
  msgid "Rescan local folder for new backup sets"
3278
  msgstr "Gentag scanning af lokal mappe for nye sæt."
3279
 
3293
  msgid "password/key"
3294
  msgstr "password/nøgle"
3295
 
3296
+ #: src/addons/azure.php:549, src/addons/migrator.php:2208,
3297
+ #: src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4415
3298
  msgid "Key"
3299
  msgstr "Nøgle"
3300
 
3310
  msgid "SCP/SFTP password/key"
3311
  msgstr "SCP/SFTP password/nøgle"
3312
 
3313
+ #: src/admin.php:3476
3314
  msgid "Files backup (created by %s)"
3315
  msgstr "Fil-backup (lavet af %s)"
3316
 
3317
+ #: src/admin.php:3476
3318
  msgid "Files and database WordPress backup (created by %s)"
3319
  msgstr "Filer og database WordPress backup (lavet af %s)"
3320
 
3321
+ #: src/addons/importer.php:276, src/admin.php:3470,
3322
+ #: src/class-updraftplus.php:2927
3323
  msgid "Backup created by: %s."
3324
  msgstr "Backup lavet af: %s."
3325
 
3326
+ #: src/admin.php:3439
3327
  msgid "Database (created by %s)"
3328
  msgstr "Database (oprettet af %s)"
3329
 
3330
+ #: src/admin.php:3433, src/admin.php:3472
3331
  msgid "unknown source"
3332
  msgstr "ukendt kilde"
3333
 
3334
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:44
3335
  msgid "Rescan remote storage"
3336
  msgstr "Gentag scanning af fjernlager"
3337
 
3338
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:39
3339
  msgid "Upload backup files"
3340
  msgstr "Upload backup filer"
3341
 
3342
+ #: src/admin.php:2038
3343
  msgid "This backup was created by %s, and can be imported."
3344
  msgstr "Denne backup blev lavet af %s og kan importeres."
3345
 
3351
  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."
3352
  msgstr "WordPress har et antal (%d) planlagte opgaver, som skulle have være udført. Med mindre dette er et udviklingssite, tyder det på, at planlægningsdelen i din WordPress installation ikke fungerer korrekt."
3353
 
3354
+ #: src/admin.php:676, src/class-updraftplus.php:2934
3355
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
3356
  msgstr "Hvis dette er en backup skabt af en anden backup plugin, kan UpdraftPlus Premium muligvis hjælpe dig."
3357
 
3359
  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."
3360
  msgstr "Men, UpdraftPlus arkiver er standard zip/SQL filer - så hvis du er sikker på, at filen har det rette format, kan du omdøbe dem, så de matcher dette mønster."
3361
 
3362
+ #: src/admin.php:675, src/admin.php:676, src/class-updraftplus.php:2934
3363
  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))."
3364
  msgstr "Denne fil er tilsyneladende ikke et UpdraftPlus backup arkiv (som skal være .zip eller .gz filer med et navn som: backup_(tidspunkt)_(site navn)_(kode)_(type).(zip/gz))."
3365
 
3366
+ #: src/admin.php:3473, src/includes/class-wpadmin-commands.php:152,
3367
  #: src/restorer.php:1462
3368
  msgid "Backup created by unknown source (%s) - cannot be restored."
3369
  msgstr "Backup skabt af ukendt kilde (%s) - Kan ikke genskabes."
3389
  msgid "No settings were found"
3390
  msgstr "Indstillinger blev ikke fundet"
3391
 
3392
+ #: src/class-updraftplus.php:3100
3393
  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."
3394
  msgstr "Én eller flere backups er blevet tilføjet efter scanning af fjernlager; bemærk at disse backups ikke automatisk vil blive slettet gennem \"behold\"-instillingerne. Når/hvis du ønsker at slette dem, må dette gøres manuelt."
3395
 
3415
  msgid "Remove"
3416
  msgstr "Fjern"
3417
 
3418
+ #: src/methods/s3.php:846
3419
  msgid "Other %s FAQs."
3420
  msgstr "Andre %s FAQ's."
3421
 
3423
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
3424
  msgstr "Se her for mere information og e-mails om backup-processen - Nyttigt, hvis noget går galt."
3425
 
3426
+ #: src/addons/morefiles.php:445, src/admin.php:3173
3427
  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."
3428
  msgstr "Ved angivelse af flere filer/arkiver skal de adskilles med kommaer. Ved enheder på top niveau kan du bruge et * før eller efter det indtastede. "
3429
 
3430
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309,
3431
  #: src/restorer.php:1493
3432
  msgid "Your hosting company must enable these functions before %s can work."
3433
  msgstr "Din hosting udbyder skal slå disse funktioner til inden %s kan virke."
3434
 
3435
+ #: src/class-updraftplus.php:4911, src/methods/ftp.php:309
3436
  msgid "Your web server's PHP installation has these functions disabled: %s."
3437
  msgstr "Din webservers PHP installation har slået disse funktioner fra: %s."
3438
 
3452
  msgid "Backup created by:"
3453
  msgstr "Backup udført af:"
3454
 
3455
+ #: src/udaddons/options.php:485
3456
  msgid "Available to claim on this site"
3457
  msgstr "Klar til at hente fra denne side."
3458
 
3502
  msgid "Dismiss from main dashboard (for %s weeks)"
3503
  msgstr "Afvis fra hovedoversigten (i %s uger)"
3504
 
3505
+ #: src/class-updraftplus.php:4961
3506
  msgid "The attempt to undo the double-compression succeeded."
3507
  msgstr "Forsøg på at rette dobbelt-kompresionen lykkedes."
3508
 
3509
+ #: src/class-updraftplus.php:4938, src/class-updraftplus.php:4959
3510
  msgid "The attempt to undo the double-compression failed."
3511
  msgstr "Forsøg på at rette dobbelt-kompresionen mislykkedes."
3512
 
3513
+ #: src/class-updraftplus.php:4931
3514
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3515
  msgstr "Det ser ud til, at filerne i databasen er blevet komprimeret to gange - Måske har siden, du har downloaded dem fra, en forkert konfigureret webserver."
3516
 
3543
  msgid "Errors occurred:"
3544
  msgstr "Fejl opstod:"
3545
 
3546
+ #: src/admin.php:3678
3547
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3548
  msgstr "Følg dette link for at downloade log-filen for denne genoprettelse (nødvendig for enhver henvendelse til support)."
3549
 
3571
  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)"
3572
  msgstr "Grænsen for kørsel af WordPress plugins er meget lav (%s sekunder) - Du bør hæve grænsen for at undgå backup-fejl på grund af time-outs (rådfør dig med din web-udbyder for mere hjælp angående max_execution_time PHP indstillingen. Den anbefalede værdig er %s sekunder eller mere)"
3573
 
3574
+ #: src/addons/migrator.php:261
3575
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
3576
  msgstr "Dette plugin er disabled: %s genaktivér det manuelt, når du er klar."
3577
 
3580
  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."
3581
  msgstr "%s forbindelsen udløb. Hvis du angav serveren korrekt, skyldes dette normalt at en firewall blokerer forbindelsen. Du bør tjekke dette med din web-udbyder."
3582
 
3583
+ #: src/addons/moredatabase.php:137, src/admin.php:1415
3584
  msgid "Messages:"
3585
  msgstr "Beskeder:"
3586
 
3740
  msgid "Authorisation failed (check your credentials)"
3741
  msgstr "Autorisation mislykkedes (tjek dine personlige oplysninger)"
3742
 
3743
+ #: src/methods/updraftvault.php:568, src/udaddons/options.php:270
3744
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3745
  msgstr "En ukendt fejl opstod ved forsøg på forbindelse til UpdraftPlus.com"
3746
 
3756
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3757
  msgstr "Den nye brugers RackSpace konsol password er (dette vil ikke blive vist igen):"
3758
 
3759
+ #: src/admin.php:661, src/admin.php:3954
3760
  msgid "Error data:"
3761
  msgstr "Fejldata:"
3762
 
3763
+ #: src/admin.php:3629
3764
  msgid "Backup does not exist in the backup history"
3765
  msgstr "Backup eksisterer ikke i backup-historie"
3766
 
3767
+ #: src/admin.php:2585
3768
  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."
3769
  msgstr "Din WordPres installation har gamle arkiver fra tiden inden du genoprettede/flyttede (teknisk information: disse filer slutter med -old). Du bør klikke på denne knap, når du er sikker på at din tidligere handling virker."
3770
 
3820
  msgid "Debugging information"
3821
  msgstr "Information om rens af filer"
3822
 
3823
+ #: src/addons/reporting.php:211, src/admin.php:3372
3824
  msgid "Uploaded to:"
3825
  msgstr "Uploaded til:"
3826
 
3880
  msgid "%s did not return the expected response - check your log file for more details"
3881
  msgstr "%s returnerede ikke det forventede svar - tjek din logfil for flere detaljer"
3882
 
3883
+ #: src/methods/s3.php:292
3884
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3885
  msgstr "Det nødvendige %s PHP modul er ikke installeret - ret henvendelse til dit hostingfirma for at få dette aktiveret"
3886
 
3893
  msgstr "Din sides admin e-mail adresse (%s) vil blive brugt."
3894
 
3895
  #: src/admin.php:698, src/methods/updraftvault.php:302,
3896
+ #: src/methods/updraftvault.php:347, src/udaddons/options.php:249
3897
  msgid "Connect"
3898
  msgstr "Tilslut"
3899
 
3901
  msgid "For more reporting features, use the Reporting add-on."
3902
  msgstr "For udvidede muligheder for fejlrapportering, brug da Reporting add-on, "
3903
 
3904
+ #: src/class-updraftplus.php:4725
3905
  msgid "(version: %s)"
3906
  msgstr "(version: %s)"
3907
 
3974
  msgid "UpdraftPlus warning:"
3975
  msgstr "UpdraftPlus advarsel:"
3976
 
3977
+ #: src/udaddons/options.php:491
3978
  msgid "(or connect using the form on this page if you have already purchased it)"
3979
  msgstr "(eller skab forbindelse ved at bruge formularen på denne side, hvis du købt adgang til den)"
3980
 
3981
+ #: src/udaddons/options.php:477
3982
  msgid "please follow this link to update the plugin in order to activate it"
3983
  msgstr "venligst aktiver dette plugin ved at opdatere det via dette link"
3984
 
3985
+ #: src/udaddons/options.php:474
3986
  msgid "please follow this link to update the plugin in order to get it"
3987
  msgstr "For at få dette plugin, bedes du følge dette opdaterings-link"
3988
 
3989
+ #: src/udaddons/options.php:464, src/udaddons/options.php:466
3990
  msgid "latest"
3991
  msgstr "seneste"
3992
 
3993
+ #: src/udaddons/options.php:462
3994
  msgid "Your version: %s"
3995
  msgstr "Din version: %s"
3996
 
3997
+ #: src/udaddons/options.php:460, src/udaddons/options.php:460
3998
  msgid "You've got it"
3999
  msgstr "Værsgo"
4000
 
4001
+ #: src/udaddons/options.php:421
4002
  msgid "UpdraftPlus Support"
4003
  msgstr "UpdraftPlus support"
4004
 
4005
+ #: src/udaddons/options.php:379
4006
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
4007
  msgstr "En UpdraftPlus opdatering indeholdende dine tilføjelser er tilgængelig - følg dette link for at få den."
4008
 
4009
+ #: src/udaddons/options.php:368, src/udaddons/updraftplus-addons.php:290
4010
  msgid "UpdraftPlus Addons"
4011
  msgstr "UpdraftPlus addons"
4012
 
4042
  msgid "Reporting"
4043
  msgstr "Rapportering"
4044
 
4045
+ #: src/admin.php:4412
4046
  msgid "Options (raw)"
4047
  msgstr "Muligheder (raw)"
4048
 
4070
  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)"
4071
  msgstr "Mængden af hukommelse (RAM) tilladt til PHP er meget lav (%s Mb) - Du bør udvide hukommelsen p.g.a. for lidt hukommelse (kontakt din webhosting-udbyder for mere hjælp)"
4072
 
4073
+ #: src/udaddons/options.php:556
4074
  msgid "Manage Addons"
4075
  msgstr "Håndtér tilføjelser"
4076
 
4077
+ #: src/udaddons/options.php:492, src/udaddons/options.php:492
4078
  msgid "Buy It"
4079
  msgstr "Køb"
4080
 
4081
+ #: src/udaddons/options.php:491
4082
  msgid "Get it from the UpdraftPlus.Com Store"
4083
  msgstr "Få den i UpdraftPlus.COM Store"
4084
 
4085
+ #: src/udaddons/options.php:485, src/udaddons/options.php:487
4086
  msgid "activate it on this site"
4087
  msgstr "aktivier den på denne side"
4088
 
4089
+ #: src/udaddons/options.php:487
4090
  msgid "You have an inactive purchase"
4091
  msgstr "Du har et inaktivt køb"
4092
 
4093
+ #: src/udaddons/options.php:477
4094
  msgid "Assigned to this site"
4095
  msgstr "Tildelt til denne side"
4096
 
4097
+ #: src/udaddons/options.php:474
4098
  msgid "Available for this site (via your all-addons purchase)"
4099
  msgstr "Tilgængelig for denne side (via dit tilføjelses fuldpakke køb)"
4100
 
4101
+ #: src/udaddons/options.php:468
4102
  msgid "(apparently a pre-release or withdrawn release)"
4103
  msgstr "(tilsyneladende en tidligere- eller tilbagetrykket udgivelse)"
4104
 
4105
+ #: src/udaddons/options.php:423
4106
  msgid "Go here"
4107
  msgstr "Klik her"
4108
 
4109
+ #: src/udaddons/options.php:423
4110
  msgid "Need to get support?"
4111
  msgstr "Behov for support?"
4112
 
4113
+ #: src/udaddons/options.php:405
4114
  msgid "An error occurred when trying to retrieve your add-ons."
4115
  msgstr "En fejl opstod ved forsøg på modtagelse af dine tilføjelser."
4116
 
4117
+ #: src/udaddons/options.php:338
4118
  msgid "An unknown response was received. Response was:"
4119
  msgstr "Et ukendt svar blev modtaget. Svaret var:"
4120
 
4121
+ #: src/udaddons/options.php:337
4122
  msgid "Claim not granted - your account login details were wrong"
4123
  msgstr "Anmodning ikke godkendt - Dine login detaljer til kontoen er forkerte"
4124
 
4125
+ #: src/udaddons/options.php:335
4126
  msgid "Please wait whilst we make the claim..."
4127
  msgstr "Vent venligst mens vi udfører fordringen..."
4128
 
4129
+ #: src/udaddons/options.php:288
4130
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
4131
  msgstr "Der opstod fejl ved forsøg på at forbinde til UpdraftPlus.Com:"
4132
 
4133
+ #: src/udaddons/options.php:281
4134
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
4135
  msgstr "Du er i øjeblikket <strong>ikke forbundet</strong> til en UpdraftPlus.Com konto."
4136
 
4137
+ #: src/udaddons/options.php:277
4138
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
4139
  msgstr "Hvis du har købt nye tilføjelser, bedes du følge dette link for at opdatere din forbindelse"
4140
 
4141
+ #: src/udaddons/options.php:276
4142
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
4143
  msgstr "Du er i øjeblikket <strong>forbundet</strong> til en UpdraftPlus.Com konto."
4144
 
4145
+ #: src/udaddons/options.php:247
4146
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
4147
  msgstr "Interesseret i at vide mere om UpdraftPlus.Com password sikkerhed? Læs mere her."
4148
 
4149
+ #: src/udaddons/options.php:175
4150
  msgid "Forgotten your details?"
4151
  msgstr "Har du glemt dine oplysninger?"
4152
 
4153
+ #: src/udaddons/options.php:164
4154
  msgid "Not yet got an account (it's free)? Go get one!"
4155
  msgstr "Har du endnu ikke en konto (det er gratis)? Få en her!"
4156
 
4157
+ #: src/udaddons/options.php:131
4158
  msgid "Connect with your UpdraftPlus.Com account"
4159
  msgstr "Forbind til din UpdraftPlus.Com konto"
4160
 
4194
  msgid "Your web-server does not have the %s module installed."
4195
  msgstr "Din web-server har ikke %s modulet installeret."
4196
 
4197
+ #: src/addons/googlecloud.php:984, src/methods/googledrive.php:1148
4198
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
4199
  msgstr "<strong>(Det ser ud til, at du allerede er godkendt,</strong>, men du kan gennemgå godkendelse igen for at genskabe forbindelse, hvis du har oplevet et problem)."
4200
 
4201
+ #: src/templates/wp-admin/settings/downloading-and-restoring.php:67
4202
  msgid "Drop backup files here"
4203
  msgstr "Drop backup-filer her"
4204
 
4205
+ #: src/admin.php:2464
4206
  msgid "Does nothing happen when you attempt backups?"
4207
  msgstr "Sker der ingenting, når du forsøger at køre backup?"
4208
 
4243
  msgid "You can send a backup to more than one destination with an add-on."
4244
  msgstr "Du kan sende en backup til mere end én destination ved hjælp af et tilføjelsesprogram."
4245
 
4246
+ #: src/admin.php:2803
4247
  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."
4248
  msgstr "Note: Tidslinjen nedenfor er baseret på stadier, IKKE tid. Stop ikke backup'en kun på grund af, at den tilsyneladende har stået på det samme sted i et stykke tid - dette er normalt."
4249
 
4250
+ #: src/admin.php:2701
4251
  msgid "(%s%%, file %s of %s)"
4252
  msgstr "(%s%%, file %s of %s)"
4253
 
4288
  msgid "%s settings test result:"
4289
  msgstr "%s indstillinger test resultat:"
4290
 
4291
+ #: src/admin.php:3540, src/admin.php:3542
4292
  msgid "(Not finished)"
4293
  msgstr "(Ikke færdig)"
4294
 
4295
+ #: src/admin.php:3542
4296
  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."
4297
  msgstr "Hvis du ser flere backup's, end du havde forventet, er det sikkert på grund af, at sletning af gamle backup sæt ikke sker, før en ny backup er færdig."
4298
 
4304
  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)."
4305
  msgstr "Dette er, hvor UpdraftPlus vil skrive zip-filerne indledningsvis. Dette arkiv må være skrivbare for din web-server. Dette relaterer til dit indholdsarkiv (der som standard kaldes wp-content)."
4306
 
4307
+ #: src/admin.php:2798
4308
  msgid "Job ID: %s"
4309
  msgstr "Job ID: %s"
4310
 
4311
+ #: src/admin.php:2783
4312
  msgid "last activity: %ss ago"
4313
  msgstr "Seneste aktivitet: for %ss siden"
4314
 
4315
+ #: src/admin.php:2782
4316
  msgid "next resumption: %d (after %ss)"
4317
  msgstr "Gentages næste gang: %d (after %ss)"
4318
 
4319
+ #: src/admin.php:2765, src/central/bootstrap.php:411,
4320
  #: src/central/bootstrap.php:418, src/methods/updraftvault.php:382,
4321
  #: src/methods/updraftvault.php:467
4322
  msgid "Unknown"
4323
  msgstr "Ukendt"
4324
 
4325
+ #: src/admin.php:2715
4326
  msgid "Backup finished"
4327
  msgstr "Backup er færdig"
4328
 
4329
+ #: src/admin.php:2710
4330
  msgid "Waiting until scheduled time to retry because of errors"
4331
  msgstr "Afventer planlagt kørsel før næste forsøg pga. fejl"
4332
 
4333
+ #: src/admin.php:2706
4334
  msgid "Pruning old backup sets"
4335
  msgstr "Nedbringer antal gamle backup-sæt"
4336
 
4337
+ #: src/admin.php:2694
4338
  msgid "Uploading files to remote storage"
4339
  msgstr "Uploader filer til fjernlager"
4340
 
4341
+ #: src/admin.php:2763
4342
  msgid "Encrypted database"
4343
  msgstr "Krypteret database"
4344
 
4345
+ #: src/admin.php:2755
4346
  msgid "Encrypting database"
4347
  msgstr "Krypterer database"
4348
 
4349
+ #: src/admin.php:2729
4350
  msgid "Created database backup"
4351
  msgstr "Oprettet database backup"
4352
 
4353
+ #: src/admin.php:2742
4354
  msgid "table: %s"
4355
  msgstr "tabel: %s"
4356
 
4357
+ #: src/admin.php:2740
4358
  msgid "Creating database backup"
4359
  msgstr "Opretter database backup"
4360
 
4361
+ #: src/admin.php:2688
4362
  msgid "Created file backup zips"
4363
  msgstr "Oprettede fil backup zips"
4364
 
4365
+ #: src/admin.php:2675
4366
  msgid "Creating file backup zips"
4367
  msgstr "Opretter fil backup zips"
4368
 
4369
+ #: src/admin.php:2670
4370
  msgid "Backup begun"
4371
  msgstr "Backup er startet"
4372
 
4373
+ #: src/admin.php:2513
4374
  msgid "Backups in progress:"
4375
  msgstr "Igangværende backups:"
4376
 
4390
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
4391
  msgstr "UpdraftPlus havde behov for at oprette en %s i dit indholdsarkiv, men mislykkedes - Venligst tjek dine rettigheder og giv adgang (%s)"
4392
 
4393
+ #: src/class-updraftplus.php:3206
4394
  msgid "The backup has not finished; a resumption is scheduled"
4395
  msgstr "Backup'en er ikke færdig; en genoptagelse er planlagt"
4396
 
4404
  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)."
4405
  msgstr "%s godkendelsen kunne ikke fuldføres, fordi noget andet på dit site ødelægger den. Prøv at sætte plugins til passiv og skift til et standard tema. (Det, du leder efter, er de komponenter, der sender output (sandsynligvis PHP advarsler/fejl) inden siden starter op. At slå antivirus-indstillinger fra kan også hjælpe)."
4406
 
4407
+ #: src/admin.php:2336
4408
  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)."
4409
  msgstr "Din PHP hukommelsesgrænse (bestemt af din web hosting udbyder) er meget lav. UpdraftPlus forsøgte uden held at øge denne grænse. Dette plugin har problemer med grænser mindre end 64 Mb - specielt hvis du har upload'et meget store filer (selv om mange sider vil fungere med en 32Mb grænse)."
4410
 
4483
  msgid "Support"
4484
  msgstr "Support"
4485
 
4486
+ #: src/class-updraftplus.php:4894
4487
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
4488
  msgstr "UpdraftPlus kunne ikke finde indstillinger for tabeller ved scanning af database backup'en."
4489
 
4490
+ #: src/class-updraftplus.php:4886
4491
  msgid "This database backup is missing core WordPress tables: %s"
4492
  msgstr "Denne database backup mangler WordPress tabeller: %s"
4493
 
4494
+ #: src/class-updraftplus.php:4774
4495
  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."
4496
  msgstr "Du importerer fra en nyere version af WordPress (%s) til en ældre version (%s). Det kan ikke garanteres, at WordPress kan håndtere dette."
4497
 
4498
+ #: src/class-updraftplus.php:4773, src/class-updraftplus.php:4780
4499
  msgid "%s version: %s"
4500
  msgstr ""
4501
 
4502
+ #: src/class-updraftplus.php:4674
4503
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
4504
  msgstr "Databasen er for lille til at være en godkendt WordPress database (størrelse: %s Kb)."
4505
 
4508
  msgid "Be safe with an automatic backup"
4509
  msgstr "Vær på den sikre side med en automatisk backup"
4510
 
4511
+ #: src/admin.php:2288
4512
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
4513
  msgstr "Hvis du stadig kan læse denne tekst, efter siden er færdig med at loade, så er der et problem med JavaScrips eller jQuery på siden."
4514
 
4556
  msgid "Delete from your web server"
4557
  msgstr "Slet fra din webserver"
4558
 
4559
+ #: src/admin.php:3510
4560
  msgid "You appear to be missing one or more archives from this multi-archive set."
4561
  msgstr "Du mangler tilsyneladende et eller flere arkiver fra dette multi-arkiv sæt."
4562
 
4563
+ #: src/admin.php:3507
4564
  msgid "(%d archive(s) in set)."
4565
  msgstr "%d arkiv(er) i sæt)."
4566
 
4580
  msgid "Error: the server sent an empty response."
4581
  msgstr "Fejl: Serveren sendte et tomt svar. "
4582
 
4583
+ #: src/admin.php:2049
4584
  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?"
4585
  msgstr "Dette ligner en fil skabt af UpdraftPlus, men denne installation kender ikke til denne type objekt: %s. Måske skal du installere en add-on?"
4586
 
4616
  msgid "No such backup set exists"
4617
  msgstr "En sådan backup findes ikke"
4618
 
4619
+ #: src/admin.php:1291
4620
  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"
4621
  msgstr "Backup-arkivet for denne fil kunne ikke fi