UpdraftPlus WordPress Backup Plugin - Version 1.13.9

Version Description

  • 25/Sep/2017 =

  • FEATURE: Backblaze B2 (https://www.backblaze.com/b2/) support in UpdraftPlus Premium

  • TWEAK: Port job data used by Azure, Google Cloud and OneDrive storage to being instance-local (now believed to all be ported)

  • TWEAK: The automatic correcting of wrongly-input S3 and FTP settings had regressed in a recent version

  • TWEAK: Various small fixes to the standards compliance of the HTML output in the remote storage settings area

  • TWEAK: When deleting backups with multiple remote storage instances of the same type, order the attempts

Download this release

Release Info

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

Code changes from version 1.13.8 to 1.13.9

admin.php CHANGED
@@ -13,6 +13,8 @@ class UpdraftPlus_Admin {
13
 
14
  private $template_directories;
15
 
 
 
16
  public function __construct() {
17
  $this->admin_init();
18
  }
@@ -1524,14 +1526,25 @@ class UpdraftPlus_Admin {
1524
  }
1525
 
1526
  if ('log' != $key && count($delete_from_service) > 0) {
 
 
 
1527
  foreach ($delete_from_service as $service) {
1528
- if ('email' == $service) continue;
1529
- if (file_exists(UPDRAFTPLUS_DIR."/methods/$service.php")) require_once(UPDRAFTPLUS_DIR."/methods/$service.php");
1530
- $objname = "UpdraftPlus_BackupModule_".$service;
1531
  $deleted = -1;
1532
- if (class_exists($objname)) {
1533
- # TODO: Re-use the object (i.e. prevent repeated connection setup/teardown)
1534
- $remote_obj = new $objname;
 
 
 
 
 
 
 
 
1535
 
1536
  foreach ($files as $index => $file) {
1537
  if ($remote_deleted == $remote_delete_limit) {
@@ -1563,7 +1576,6 @@ class UpdraftPlus_Admin {
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
  }
1569
  }
@@ -1579,6 +1591,21 @@ class UpdraftPlus_Admin {
1579
 
1580
  }
1581
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1582
  /**
1583
  * Called by self::delete_set() to finish up before returning (whether the complete deletion is finished or not)
1584
  *
@@ -3021,10 +3048,10 @@ class UpdraftPlus_Admin {
3021
  }
3022
 
3023
  /**
3024
- * Outputs html for a storage method using the parameters passed in, this version of the method is compatible with multi storage options
3025
- * @param [String] $classes - a list of classes to be used when
3026
- * @param [String] $header - the table header content
3027
- * @param [String] $contents - the table contents
3028
  */
3029
  public function storagemethod_row_multi($classes, $header, $contents) {
3030
  ?>
13
 
14
  private $template_directories;
15
 
16
+ private $backups_instance_ids;
17
+
18
  public function __construct() {
19
  $this->admin_init();
20
  }
1526
  }
1527
 
1528
  if ('log' != $key && count($delete_from_service) > 0) {
1529
+
1530
+ $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids($delete_from_service);
1531
+
1532
  foreach ($delete_from_service as $service) {
1533
+
1534
+ if ('email' == $service || 'none' == $service || !$service) continue;
1535
+
1536
  $deleted = -1;
1537
+
1538
+ $remote_obj = $storage_objects_and_ids[$service]['object'];
1539
+
1540
+ $instance_settings = $storage_objects_and_ids[$service]['instance_settings'];
1541
+ $this->backups_instance_ids = empty($backups[$timestamp]['service_instance_ids'][$service]) ? array() : $backups[$timestamp]['service_instance_ids'][$service];
1542
+
1543
+ uksort($instance_settings, array($this, 'instance_ids_sort'));
1544
+
1545
+ foreach ($instance_settings as $instance_id => $options) {
1546
+
1547
+ $remote_obj->set_options($options, false, $instance_id);
1548
 
1549
  foreach ($files as $index => $file) {
1550
  if ($remote_deleted == $remote_delete_limit) {
1576
 
1577
  // 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.
1578
  UpdraftPlus_Backup_History::save_history($backups);
 
1579
  }
1580
  }
1581
  }
1591
 
1592
  }
1593
 
1594
+ /**
1595
+ * This function sorts the array of instance ids currently saved so that any instance id that is in both the saved settings and the backup history move to the top of the array, as these are likely to work. Then values that don't appear in the backup history move to the bottom.
1596
+ *
1597
+ * @param String $a - the first instance id
1598
+ * @param String $b - the second instance id
1599
+ * @return Integer - returns an integer to indicate what position the $b value should be moved in
1600
+ */
1601
+ public function instance_ids_sort($a, $b) {
1602
+ if (in_array($a, $this->backups_instance_ids)) {
1603
+ if (in_array($b, $this->backups_instance_ids)) return 0;
1604
+ return -1;
1605
+ }
1606
+ return in_array($b, $this->backups_instance_ids) ? 1 : 0;
1607
+ }
1608
+
1609
  /**
1610
  * Called by self::delete_set() to finish up before returning (whether the complete deletion is finished or not)
1611
  *
3048
  }
3049
 
3050
  /**
3051
+ * Outputs html for a storage method using the parameters passed in. This version of the method is compatible with multi storage options
3052
+ * @param String $classes - a list of classes to be used when
3053
+ * @param String $header - the table header content
3054
+ * @param String $contents - the table contents
3055
  */
3056
  public function storagemethod_row_multi($classes, $header, $contents) {
3057
  ?>
class-updraftplus.php CHANGED
@@ -20,6 +20,7 @@ class UpdraftPlus {
20
  'azure' => 'Microsoft Azure',
21
  'sftp' => 'SFTP / SCP',
22
  'googlecloud' => 'Google Cloud',
 
23
  'webdav' => 'WebDAV',
24
  's3generic' => 'S3-Compatible (Generic)',
25
  'openstack' => 'OpenStack (Swift)',
@@ -1041,7 +1042,7 @@ class UpdraftPlus {
1041
  // There will be a remnant unless the file size was exactly on a chunk boundary
1042
  if ($orig_file_size % $chunk_size > 0) $chunks++;
1043
 
1044
- $this->log("$logname upload: $file (chunks: $chunks, size: $chunk_size) -> $cloudpath ($uploaded_size)");
1045
 
1046
  if (0 == $chunks) {
1047
  return 1;
@@ -1119,7 +1120,8 @@ class UpdraftPlus {
1119
  $uploaded = (!isset($uploaded->log) || $uploaded->log) ? true : 1;
1120
  }
1121
 
1122
- if ($uploaded) {
 
1123
  $perc = round(100*($upload_end + 1)/max($orig_file_size, 1), 1);
1124
  // Consumers use a return value of (int)1 (rather than (bool)true) to suppress logging
1125
  $log_it = (1 === $uploaded) ? false : true;
@@ -1151,7 +1153,7 @@ class UpdraftPlus {
1151
  if (method_exists($caller, 'chunked_upload_finish')) {
1152
  $ret = $caller->chunked_upload_finish($file);
1153
  if (!$ret) {
1154
- $this->log("$logname - failed to re-assemble chunks (".$e->getMessage().')');
1155
  $this->log(sprintf(__('%s error - failed to re-assemble chunks', 'updraftplus'), $logname), 'error');
1156
  }
1157
  }
@@ -1173,7 +1175,7 @@ class UpdraftPlus {
1173
  * @param object $method - This remote storage method object needs to have a chunked_download() method to call back
1174
  * @param integer $remote_size - The size, in bytes, of the object being downloaded
1175
  * @param boolean $manually_break_up - Whether to break the download into multiple network operations (rather than just issuing a GET with a range beginning at the end of the already-downloaded data, and carrying on until it times out)
1176
- * @param * $passback - A value to pass back to the callback function
1177
  * @param integer $chunk_size - Break up the download into chunks of this number of bytes. Should be set if and only if $manually_break_up is true.
1178
  */
1179
  public function chunked_download($file, $method, $remote_size, $manually_break_up = false, $passback = null, $chunk_size = 1048576) {
@@ -1259,7 +1261,7 @@ class UpdraftPlus {
1259
  }
1260
 
1261
  } catch (Exception $e) {
1262
- $this->log('Error ('.get_class($e).') - failed to download the file ('.$e->getCode().', '.$e->getMessage().')');
1263
  $this->log("$file: ".__('Error - failed to download the file', 'updraftplus').' ('.$e->getCode().', '.$e->getMessage().')', 'error');
1264
  return false;
1265
  }
@@ -3764,27 +3766,58 @@ class UpdraftPlus {
3764
  /**
3765
  * WordPress options filter, sanitising the FTP options saved from the options page
3766
  *
3767
- * @param Array $ftp - the options, prior to sanitisation
3768
  *
3769
  * @return Array - the sanitised options for saving
3770
  */
3771
- public function ftp_sanitise($ftp) {
3772
- if (is_array($ftp)) {
3773
- if (!empty($ftp['host']) && preg_match('#ftp(es|s)?://(.*)#i', $ftp['host'], $matches)) {
3774
- $ftp['host'] = untrailingslashit($matches[2]);
 
 
 
 
 
3775
  }
3776
- if (isset($ftp['pass'])) {
3777
- $ftp['pass'] = trim($ftp['pass'], "\n\r\0\x0B");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3778
  }
3779
  }
3780
- return $ftp;
3781
  }
3782
 
3783
- public function s3_sanitise($s3) {
3784
- if (is_array($s3) && !empty($s3['path']) && '/' == substr($s3['path'], 0, 1)) {
3785
- $s3['path'] = substr($s3['path'], 1);
 
 
 
 
 
 
 
 
 
 
 
3786
  }
3787
- return $s3;
3788
  }
3789
 
3790
  /**
@@ -4675,6 +4708,7 @@ CREATE TABLE $wpdb->signups (
4675
  'updraft_googledrive_secret',
4676
  'updraft_googledrive_remotepath',
4677
  'updraft_ftp',
 
4678
  'updraft_server_address',
4679
  'updraft_dir',
4680
  'updraft_email',
20
  'azure' => 'Microsoft Azure',
21
  'sftp' => 'SFTP / SCP',
22
  'googlecloud' => 'Google Cloud',
23
+ 'backblaze' => 'Backblaze',
24
  'webdav' => 'WebDAV',
25
  's3generic' => 'S3-Compatible (Generic)',
26
  'openstack' => 'OpenStack (Swift)',
1042
  // There will be a remnant unless the file size was exactly on a chunk boundary
1043
  if ($orig_file_size % $chunk_size > 0) $chunks++;
1044
 
1045
+ $this->log("$logname upload: $file (chunks: $chunks, of size: $chunk_size) -> $cloudpath ($uploaded_size)");
1046
 
1047
  if (0 == $chunks) {
1048
  return 1;
1120
  $uploaded = (!isset($uploaded->log) || $uploaded->log) ? true : 1;
1121
  }
1122
 
1123
+ // The joys of PHP: is_wp_error() is not false-y.
1124
+ if ($uploaded && !is_wp_error($uploaded)) {
1125
  $perc = round(100*($upload_end + 1)/max($orig_file_size, 1), 1);
1126
  // Consumers use a return value of (int)1 (rather than (bool)true) to suppress logging
1127
  $log_it = (1 === $uploaded) ? false : true;
1153
  if (method_exists($caller, 'chunked_upload_finish')) {
1154
  $ret = $caller->chunked_upload_finish($file);
1155
  if (!$ret) {
1156
+ $this->log("$logname - failed to re-assemble chunks");
1157
  $this->log(sprintf(__('%s error - failed to re-assemble chunks', 'updraftplus'), $logname), 'error');
1158
  }
1159
  }
1175
  * @param object $method - This remote storage method object needs to have a chunked_download() method to call back
1176
  * @param integer $remote_size - The size, in bytes, of the object being downloaded
1177
  * @param boolean $manually_break_up - Whether to break the download into multiple network operations (rather than just issuing a GET with a range beginning at the end of the already-downloaded data, and carrying on until it times out)
1178
+ * @param Mixed $passback - A value to pass back to the callback function
1179
  * @param integer $chunk_size - Break up the download into chunks of this number of bytes. Should be set if and only if $manually_break_up is true.
1180
  */
1181
  public function chunked_download($file, $method, $remote_size, $manually_break_up = false, $passback = null, $chunk_size = 1048576) {
1261
  }
1262
 
1263
  } catch (Exception $e) {
1264
+ $this->log('Error ('.get_class($e).') - failed to download the file ('.$e->getCode().', '.$e->getMessage().', line '.$e->getLine().' in '.$e->getFile().')');
1265
  $this->log("$file: ".__('Error - failed to download the file', 'updraftplus').' ('.$e->getCode().', '.$e->getMessage().')', 'error');
1266
  return false;
1267
  }
3766
  /**
3767
  * WordPress options filter, sanitising the FTP options saved from the options page
3768
  *
3769
+ * @param Array $settings - the options, prior to sanitisation
3770
  *
3771
  * @return Array - the sanitised options for saving
3772
  */
3773
+ public function ftp_sanitise($settings) {
3774
+ if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3775
+ foreach ($settings['settings'] as $instance_id => $instance_settings) {
3776
+ if (!empty($instance_settings['host']) && preg_match('#ftp(es|s)?://(.*)#i', $instance_settings['host'], $matches)) {
3777
+ $settings['settings'][$instance_id]['host'] = rtrim($matches[2], "/ \t\n\r\0x0B");
3778
+ }
3779
+ if (isset($instance_settings['pass'])) {
3780
+ $settings['settings'][$instance_id]['pass'] = trim($instance_settings['pass'], "\n\r\0\x0B");
3781
+ }
3782
  }
3783
+ }
3784
+ return $settings;
3785
+ }
3786
+
3787
+ /**
3788
+ * Acts as a WordPress options filter
3789
+ *
3790
+ * @param Array $settings - pre-filtered settings
3791
+ *
3792
+ * @return Array filtered settings
3793
+ */
3794
+ public function backblaze_sanitise($settings) {
3795
+ if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3796
+ foreach ($settings['settings'] as $instance_id => $instance_settings) {
3797
+ if (!empty($instance_settings['backup_path'])) {
3798
+ $settings['settings'][$instance_id]['backup_path'] = trim($instance_settings['backup_path'], "/ \t\n\r\0x0B");
3799
+ }
3800
  }
3801
  }
3802
+ return $settings;
3803
  }
3804
 
3805
+ /**
3806
+ * Acts as a WordPress options filter
3807
+ *
3808
+ * @param Array $settings - pre-filtered settings
3809
+ *
3810
+ * @return Array filtered settings
3811
+ */
3812
+ public function s3_sanitise($settings) {
3813
+ if (is_array($settings) && !empty($settings['version']) && !empty($settings['settings'])) {
3814
+ foreach ($settings['settings'] as $instance_id => $instance_settings) {
3815
+ if (!empty($instance_settings['path'])) {
3816
+ $settings['settings'][$instance_id]['path'] = trim($instance_settings['path'], "/ \t\n\r\0x0B");
3817
+ }
3818
+ }
3819
  }
3820
+ return $settings;
3821
  }
3822
 
3823
  /**
4708
  'updraft_googledrive_secret',
4709
  'updraft_googledrive_remotepath',
4710
  'updraft_ftp',
4711
+ 'updraft_backblaze',
4712
  'updraft_server_address',
4713
  'updraft_dir',
4714
  'updraft_email',
images/addons-images/copycom.png DELETED
Binary file
images/backblaze.png ADDED
Binary file
images/icons/backblaze.png ADDED
Binary file
includes/labelauty/jquery-labelauty.css CHANGED
@@ -196,6 +196,11 @@ input.labelauty.azure + label > span.labelauty-unchecked-image {
196
  background-image: url( ../../images/icons/azure.png );
197
  }
198
 
 
 
 
 
 
199
  input.labelauty.openstack + label > span.labelauty-checked-image,
200
  input.labelauty.openstack + label > span.labelauty-unchecked-image {
201
  background-image: url( ../../images/icons/openstack.png );
196
  background-image: url( ../../images/icons/azure.png );
197
  }
198
 
199
+ input.labelauty.backblaze + label > span.labelauty-checked-image,
200
+ input.labelauty.backblaze + label > span.labelauty-unchecked-image {
201
+ background-image: url( ../../images/icons/backblaze.png );
202
+ }
203
+
204
  input.labelauty.openstack + label > span.labelauty-checked-image,
205
  input.labelauty.openstack + label > span.labelauty-unchecked-image {
206
  background-image: url( ../../images/icons/openstack.png );
includes/labelauty/jquery-labelauty.min.css CHANGED
@@ -1,2 +1,2 @@
1
- /* * LABELAUTY jQuery Plugin Styles * * @file: jquery-labelauty.css * @author: Francisco Neves (@fntneves) * @site: www.francisconeves.com * @license: MIT License */input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty{display:none !important}input.labelauty+label{display:inline-block;font-size:13px;padding:3px;background-color:#efefef;color:black;cursor:pointer;margin-top:10px;margin-right:10px;width:96%;border-radius:3px 3px 3px 3px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;transition:background-color .25s;-moz-transition:background-color .25s;-webkit-transition:background-color .25s;-o-transition:background-color .25s;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}input.labelauty+label>span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked{display:inline-block;line-height:12px;margin-bottom:10px}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:inline-block;width:40px;height:40px;vertical-align:bottom;background-repeat:no-repeat;background-position:left center;transition:background-image .5s linear;-moz-transition:background-image .5s linear;-webkit-transition:background-image .5s linear;-o-transition:background-image .5s linear}input.labelauty+label>span.labelauty-unchecked-image+span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked-image+span.labelauty-checked{margin-left:7px}input.labelauty:not(:checked):not([disabled])+label:hover{background-color:#eaeaea;color:#a7a7a7}input.labelauty:not(:checked)+label>span.labelauty-checked-image{display:none}input.labelauty:not(:checked)+label>span.labelauty-checked{display:none}input.labelauty:checked+label{background-color:#3498db;color:#fff}input.labelauty:checked:not([disabled])+label:hover{background-color:#72c5fd}input.labelauty:checked+label>span.labelauty-unchecked-image{display:none}input.labelauty:checked+label>span.labelauty-unchecked{display:none}input.labelauty:checked+label>span.labelauty-checked{display:inline-block}input.labelauty.no-label:checked+label>span.labelauty-checked{display:block}input.labelauty[disabled]+label{opacity:.5}input.labelauty+label>span.labelauty-unchecked-image{background-image:url(images/icons/folder.png)}input.labelauty+label>span.labelauty-checked-image{background-image:url(images/icons/folder.png)}input.labelauty.email+label>span.labelauty-checked-image,input.labelauty.email+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/email.png)}input.labelauty.cloudfiles+label>span.labelauty-checked-image,input.labelauty.cloudfiles+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/cloudfiles.png)}input.labelauty.dreamobjects+label>span.labelauty-checked-image,input.labelauty.dreamobjects+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dreamobjects.png)}input.labelauty.dropbox+label>span.labelauty-checked-image,input.labelauty.dropbox+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dropbox.png)}input.labelauty.ftp+label>span.labelauty-checked-image,input.labelauty.ftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.sftp+label>span.labelauty-checked-image,input.labelauty.sftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.googledrive+label>span.labelauty-checked-image,input.labelauty.googledrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googledrive.png)}input.labelauty.s3generic+label>span.labelauty-checked-image,input.labelauty.s3generic+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.onedrive+label>span.labelauty-checked-image,input.labelauty.onedrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/onedrive.png)}input.labelauty.azure+label>span.labelauty-checked-image,input.labelauty.azure+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/azure.png)}input.labelauty.openstack+label>span.labelauty-checked-image,input.labelauty.openstack+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/openstack.png)}input.labelauty.s3+label>span.labelauty-checked-image,input.labelauty.s3+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/s3.png)}input.labelauty.updraftvault+label>span.labelauty-checked-image,input.labelauty.updraftvault+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/updraftvault.png)}input.labelauty.webdav+label>span.labelauty-checked-image,input.labelauty.webdav+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/webdav.png)}input.labelauty.googlecloud+label>span.labelauty-checked-image,input.labelauty.googlecloud+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googlecloud.png)}#remote-storage-container{column-count:3;height:auto;width:auto}
2
  /*# sourceMappingURL=jquery-labelauty.min.css.map */
1
+ /* * LABELAUTY jQuery Plugin Styles * * @file: jquery-labelauty.css * @author: Francisco Neves (@fntneves) * @site: www.francisconeves.com * @license: MIT License */input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::selection{background-color:rgba(255,255,255,0)}input.labelauty+label ::-moz-selection{background-color:rgba(255,255,255,0)}input.labelauty{display:none !important}input.labelauty+label{display:inline-block;font-size:13px;padding:3px;background-color:#efefef;color:black;cursor:pointer;margin-top:10px;margin-right:10px;width:96%;border-radius:3px 3px 3px 3px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;transition:background-color .25s;-moz-transition:background-color .25s;-webkit-transition:background-color .25s;-o-transition:background-color .25s;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}input.labelauty+label>span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked{display:inline-block;line-height:12px;margin-bottom:10px}input.labelauty+label>span.labelauty-unchecked-image,input.labelauty+label>span.labelauty-checked-image{display:inline-block;width:40px;height:40px;vertical-align:bottom;background-repeat:no-repeat;background-position:left center;transition:background-image .5s linear;-moz-transition:background-image .5s linear;-webkit-transition:background-image .5s linear;-o-transition:background-image .5s linear}input.labelauty+label>span.labelauty-unchecked-image+span.labelauty-unchecked,input.labelauty+label>span.labelauty-checked-image+span.labelauty-checked{margin-left:7px}input.labelauty:not(:checked):not([disabled])+label:hover{background-color:#eaeaea;color:#a7a7a7}input.labelauty:not(:checked)+label>span.labelauty-checked-image{display:none}input.labelauty:not(:checked)+label>span.labelauty-checked{display:none}input.labelauty:checked+label{background-color:#3498db;color:#fff}input.labelauty:checked:not([disabled])+label:hover{background-color:#72c5fd}input.labelauty:checked+label>span.labelauty-unchecked-image{display:none}input.labelauty:checked+label>span.labelauty-unchecked{display:none}input.labelauty:checked+label>span.labelauty-checked{display:inline-block}input.labelauty.no-label:checked+label>span.labelauty-checked{display:block}input.labelauty[disabled]+label{opacity:.5}input.labelauty+label>span.labelauty-unchecked-image{background-image:url(images/icons/folder.png)}input.labelauty+label>span.labelauty-checked-image{background-image:url(images/icons/folder.png)}input.labelauty.email+label>span.labelauty-checked-image,input.labelauty.email+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/email.png)}input.labelauty.cloudfiles+label>span.labelauty-checked-image,input.labelauty.cloudfiles+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/cloudfiles.png)}input.labelauty.dreamobjects+label>span.labelauty-checked-image,input.labelauty.dreamobjects+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dreamobjects.png)}input.labelauty.dropbox+label>span.labelauty-checked-image,input.labelauty.dropbox+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/dropbox.png)}input.labelauty.ftp+label>span.labelauty-checked-image,input.labelauty.ftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.sftp+label>span.labelauty-checked-image,input.labelauty.sftp+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.googledrive+label>span.labelauty-checked-image,input.labelauty.googledrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googledrive.png)}input.labelauty.s3generic+label>span.labelauty-checked-image,input.labelauty.s3generic+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/folder.png)}input.labelauty.onedrive+label>span.labelauty-checked-image,input.labelauty.onedrive+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/onedrive.png)}input.labelauty.azure+label>span.labelauty-checked-image,input.labelauty.azure+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/azure.png)}input.labelauty.backblaze+label>span.labelauty-checked-image,input.labelauty.backblaze+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/backblaze.png)}input.labelauty.openstack+label>span.labelauty-checked-image,input.labelauty.openstack+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/openstack.png)}input.labelauty.s3+label>span.labelauty-checked-image,input.labelauty.s3+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/s3.png)}input.labelauty.updraftvault+label>span.labelauty-checked-image,input.labelauty.updraftvault+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/updraftvault.png)}input.labelauty.webdav+label>span.labelauty-checked-image,input.labelauty.webdav+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/webdav.png)}input.labelauty.googlecloud+label>span.labelauty-checked-image,input.labelauty.googlecloud+label>span.labelauty-unchecked-image{background-image:url(../../images/icons/googlecloud.png)}#remote-storage-container{column-count:3;height:auto;width:auto}
2
  /*# sourceMappingURL=jquery-labelauty.min.css.map */
includes/labelauty/jquery-labelauty.min.css.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["includes/labelauty/jquery-labelauty.css"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAEH,uCAAuC;AACvC,2CAAsC,yCAAyC,EAAE;AAAjF,sCAAsC,yCAAyC,EAAE;AACjF,2CAA2C,yCAAyC,EAAE;;AAEtF,8CAA8C;AAC9C,kBAAkB,yBAAyB,EAAE;;AAE7C;;;GAGG;AACH;;CAEC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,0BAA0B;CAC1B,aAAa;CACb,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB,WAAW;;CAEX,+BAA+B;CAC/B,oCAAoC;CACpC,uCAAuC;;;CAGvC,mCAAmC;CACnC,wCAAwC;CACxC,2CAA2C;CAC3C,sCAAsC;;CAEtC,uBAAuB;CACvB,yBAAyB;CACzB,0BAA0B;CAC1B,qBAAqB;CACrB;;AAED,+BAA+B;;AAE/B;;;CAGC,sBAAsB;CACtB,kBAAkB;CAClB,oBAAoB;CACpB,6BAA6B;CAC7B;;AAED,gCAAgC;;AAEhC;;;CAGC,sBAAsB;CACtB,YAAY;CACZ,aAAa;CACb,uBAAuB;CACvB,6BAA6B;CAC7B,iCAAiC;;CAEjC,yCAAyC;CACzC,8CAA8C;CAC9C,iDAAiD;CACjD,4CAA4C;CAC5C;;AAED,2DAA2D;AAC3D;;;CAGC,iBAAiB;CACjB;;AAED,sBAAsB;AACtB;;CAEC,0BAA0B;CAC1B,eAAe;CACf;AACD;;CAEC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,kBAAkB;AAClB;;CAEC,0BAA0B;CAC1B,eAAe;CACf;;AAED;;CAEC,0BAA0B;CAC1B;AACD;;CAEC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED;;CAEC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED,mBAAmB;AACnB;;CAEC,aAAa;CACb;;AAED,4CAA4C;AAC5C;;CAEC,iDAAiD;CACjD;;AAED;;CAEC,iDAAiD;CACjD;;AAED;;CAEC,sDAAsD;CACtD;;AAED;;CAEC,2DAA2D;CAC3D;;AAED;;CAEC,6DAA6D;CAC7D;;AAED;;CAEC,wDAAwD;CACxD;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,yDAAyD;CACzD;;AAED;;CAEC,sDAAsD;CACtD;;AAED;;CAEC,0DAA0D;CAC1D;;AAED;;CAEC,mDAAmD;CACnD;;AAED;;CAEC,6DAA6D;CAC7D;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;IAGI,gBAAgB;IAChB,aAAa;IACb,YAAY;CACf","file":"jquery-labelauty.min.css","sourcesContent":["/*!\n * LABELAUTY jQuery Plugin Styles\n *\n * @file: jquery-labelauty.css\n * @author: Francisco Neves (@fntneves)\n * @site: www.francisconeves.com\n * @license: MIT License\n */\n\n/* Prevent text and blocks selection */\ninput.labelauty + label ::selection { background-color: rgba(255, 255, 255, 0); }\ninput.labelauty + label ::-moz-selection { background-color: rgba(255, 255, 255, 0); }\n\n/* Hide original checkboxes. They are ugly! */\ninput.labelauty { display: none !important; }\n\n/*\n * Let's style the input\n * Feel free to work with it as you wish!\n */\ninput.labelauty + label\n{\n\tdisplay: inline-block;\n\tfont-size: 13px;\n\tpadding: 3px;\n\tbackground-color: #efefef;\n\tcolor: black;\n\tcursor: pointer;\n\tmargin-top: 10px;\n\tmargin-right: 10px;\n\twidth: 96%;\n\n\tborder-radius: 3px 3px 3px 3px;\n\t-moz-border-radius: 3px 3px 3px 3px;\n\t-webkit-border-radius: 3px 3px 3px 3px;\n\n\n\ttransition: background-color 0.25s;\n\t-moz-transition: background-color 0.25s;\n\t-webkit-transition: background-color 0.25s;\n\t-o-transition: background-color 0.25s;\n\n\t-moz-user-select: none;\n\t-khtml-user-select: none;\n\t-webkit-user-select: none;\n\t-o-user-select: none;\n}\n\n/* Stylish text inside label */\n\ninput.labelauty + label > span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n\tline-height: 12px;\n\tmargin-bottom: 10px;\n\t/* vertical-align: bottom; */\n}\n\n/* Stylish icons inside label */\n\ninput.labelauty + label > span.labelauty-unchecked-image,\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tdisplay: inline-block;\n\twidth: 40px;\n\theight: 40px;\n\tvertical-align: bottom;\n\tbackground-repeat: no-repeat;\n\tbackground-position: left center;\n\n\ttransition: background-image 0.5s linear;\n\t-moz-transition: background-image 0.5s linear;\n\t-webkit-transition: background-image 0.5s linear;\n\t-o-transition: background-image 0.5s linear;\n}\n\n/* When there's a label, add a little margin to the left */\ninput.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked-image + span.labelauty-checked\n{\n\tmargin-left: 7px;\n}\n\n/* When not Checked */\ninput.labelauty:not(:checked):not([disabled]) + label:hover\n{\n\tbackground-color: #eaeaea;\n\tcolor: #a7a7a7;\n}\ninput.labelauty:not(:checked) + label > span.labelauty-checked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:not(:checked) + label > span.labelauty-checked\n{\n\tdisplay: none;\n}\n\n/* When Checked */\ninput.labelauty:checked + label\n{\n\tbackground-color: #3498db;\n\tcolor: #ffffff;\n}\n\ninput.labelauty:checked:not([disabled]) + label:hover\n{\n\tbackground-color: #72c5fd;\n}\ninput.labelauty:checked + label > span.labelauty-unchecked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-unchecked\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n}\n\ninput.labelauty.no-label:checked + label > span.labelauty-checked\n{\n\tdisplay: block;\n}\n\n/* When Disabled */\ninput.labelauty[disabled] + label\n{\n\topacity: 0.5;\n}\n\n/* Add a background to (un)checked images */\ninput.labelauty + label > span.labelauty-unchecked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty.email + label > span.labelauty-checked-image,\ninput.labelauty.email + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/email.png );\n}\n\ninput.labelauty.cloudfiles + label > span.labelauty-checked-image,\ninput.labelauty.cloudfiles + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/cloudfiles.png );\n}\n\ninput.labelauty.dreamobjects + label > span.labelauty-checked-image,\ninput.labelauty.dreamobjects + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dreamobjects.png );\n}\n\ninput.labelauty.dropbox + label > span.labelauty-checked-image,\ninput.labelauty.dropbox + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dropbox.png );\n}\n\ninput.labelauty.ftp + label > span.labelauty-checked-image,\ninput.labelauty.ftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.sftp + label > span.labelauty-checked-image,\ninput.labelauty.sftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.googledrive + label > span.labelauty-checked-image,\ninput.labelauty.googledrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googledrive.png );\n}\n\ninput.labelauty.s3generic + label > span.labelauty-checked-image,\ninput.labelauty.s3generic + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.onedrive + label > span.labelauty-checked-image,\ninput.labelauty.onedrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/onedrive.png );\n}\n\ninput.labelauty.azure + label > span.labelauty-checked-image,\ninput.labelauty.azure + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/azure.png );\n}\n\ninput.labelauty.openstack + label > span.labelauty-checked-image,\ninput.labelauty.openstack + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/openstack.png );\n}\n\ninput.labelauty.s3 + label > span.labelauty-checked-image,\ninput.labelauty.s3 + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/s3.png );\n}\n\ninput.labelauty.updraftvault + label > span.labelauty-checked-image,\ninput.labelauty.updraftvault + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/updraftvault.png );\n}\n\ninput.labelauty.webdav + label > span.labelauty-checked-image,\ninput.labelauty.webdav + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/webdav.png );\n}\n\ninput.labelauty.googlecloud + label > span.labelauty-checked-image,\ninput.labelauty.googlecloud + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googlecloud.png );\n}\n\n#remote-storage-container {\n -moz-column-count: 3;\n -webkit-column-count: 3;\n column-count: 3;\n height: auto;\n width: auto;\n}\n"]}
1
+ {"version":3,"sources":["includes/labelauty/jquery-labelauty.css"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAEH,uCAAuC;AACvC,2CAAsC,yCAAyC,EAAE;AAAjF,sCAAsC,yCAAyC,EAAE;AACjF,2CAA2C,yCAAyC,EAAE;;AAEtF,8CAA8C;AAC9C,kBAAkB,yBAAyB,EAAE;;AAE7C;;;GAGG;AACH;;CAEC,sBAAsB;CACtB,gBAAgB;CAChB,aAAa;CACb,0BAA0B;CAC1B,aAAa;CACb,gBAAgB;CAChB,iBAAiB;CACjB,mBAAmB;CACnB,WAAW;;CAEX,+BAA+B;CAC/B,oCAAoC;CACpC,uCAAuC;;;CAGvC,mCAAmC;CACnC,wCAAwC;CACxC,2CAA2C;CAC3C,sCAAsC;;CAEtC,uBAAuB;CACvB,yBAAyB;CACzB,0BAA0B;CAC1B,qBAAqB;CACrB;;AAED,+BAA+B;;AAE/B;;;CAGC,sBAAsB;CACtB,kBAAkB;CAClB,oBAAoB;CACpB,6BAA6B;CAC7B;;AAED,gCAAgC;;AAEhC;;;CAGC,sBAAsB;CACtB,YAAY;CACZ,aAAa;CACb,uBAAuB;CACvB,6BAA6B;CAC7B,iCAAiC;;CAEjC,yCAAyC;CACzC,8CAA8C;CAC9C,iDAAiD;CACjD,4CAA4C;CAC5C;;AAED,2DAA2D;AAC3D;;;CAGC,iBAAiB;CACjB;;AAED,sBAAsB;AACtB;;CAEC,0BAA0B;CAC1B,eAAe;CACf;AACD;;CAEC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED,kBAAkB;AAClB;;CAEC,0BAA0B;CAC1B,eAAe;CACf;;AAED;;CAEC,0BAA0B;CAC1B;AACD;;CAEC,cAAc;CACd;;AAED;;CAEC,cAAc;CACd;;AAED;;CAEC,sBAAsB;CACtB;;AAED;;CAEC,eAAe;CACf;;AAED,mBAAmB;AACnB;;CAEC,aAAa;CACb;;AAED,4CAA4C;AAC5C;;CAEC,iDAAiD;CACjD;;AAED;;CAEC,iDAAiD;CACjD;;AAED;;CAEC,sDAAsD;CACtD;;AAED;;CAEC,2DAA2D;CAC3D;;AAED;;CAEC,6DAA6D;CAC7D;;AAED;;CAEC,wDAAwD;CACxD;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,yDAAyD;CACzD;;AAED;;CAEC,sDAAsD;CACtD;;AAED;;CAEC,0DAA0D;CAC1D;;AAED;;CAEC,0DAA0D;CAC1D;;AAED;;CAEC,mDAAmD;CACnD;;AAED;;CAEC,6DAA6D;CAC7D;;AAED;;CAEC,uDAAuD;CACvD;;AAED;;CAEC,4DAA4D;CAC5D;;AAED;IAGI,gBAAgB;IAChB,aAAa;IACb,YAAY;CACf","file":"jquery-labelauty.min.css","sourcesContent":["/*!\n * LABELAUTY jQuery Plugin Styles\n *\n * @file: jquery-labelauty.css\n * @author: Francisco Neves (@fntneves)\n * @site: www.francisconeves.com\n * @license: MIT License\n */\n\n/* Prevent text and blocks selection */\ninput.labelauty + label ::selection { background-color: rgba(255, 255, 255, 0); }\ninput.labelauty + label ::-moz-selection { background-color: rgba(255, 255, 255, 0); }\n\n/* Hide original checkboxes. They are ugly! */\ninput.labelauty { display: none !important; }\n\n/*\n * Let's style the input\n * Feel free to work with it as you wish!\n */\ninput.labelauty + label\n{\n\tdisplay: inline-block;\n\tfont-size: 13px;\n\tpadding: 3px;\n\tbackground-color: #efefef;\n\tcolor: black;\n\tcursor: pointer;\n\tmargin-top: 10px;\n\tmargin-right: 10px;\n\twidth: 96%;\n\n\tborder-radius: 3px 3px 3px 3px;\n\t-moz-border-radius: 3px 3px 3px 3px;\n\t-webkit-border-radius: 3px 3px 3px 3px;\n\n\n\ttransition: background-color 0.25s;\n\t-moz-transition: background-color 0.25s;\n\t-webkit-transition: background-color 0.25s;\n\t-o-transition: background-color 0.25s;\n\n\t-moz-user-select: none;\n\t-khtml-user-select: none;\n\t-webkit-user-select: none;\n\t-o-user-select: none;\n}\n\n/* Stylish text inside label */\n\ninput.labelauty + label > span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n\tline-height: 12px;\n\tmargin-bottom: 10px;\n\t/* vertical-align: bottom; */\n}\n\n/* Stylish icons inside label */\n\ninput.labelauty + label > span.labelauty-unchecked-image,\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tdisplay: inline-block;\n\twidth: 40px;\n\theight: 40px;\n\tvertical-align: bottom;\n\tbackground-repeat: no-repeat;\n\tbackground-position: left center;\n\n\ttransition: background-image 0.5s linear;\n\t-moz-transition: background-image 0.5s linear;\n\t-webkit-transition: background-image 0.5s linear;\n\t-o-transition: background-image 0.5s linear;\n}\n\n/* When there's a label, add a little margin to the left */\ninput.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked,\ninput.labelauty + label > span.labelauty-checked-image + span.labelauty-checked\n{\n\tmargin-left: 7px;\n}\n\n/* When not Checked */\ninput.labelauty:not(:checked):not([disabled]) + label:hover\n{\n\tbackground-color: #eaeaea;\n\tcolor: #a7a7a7;\n}\ninput.labelauty:not(:checked) + label > span.labelauty-checked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:not(:checked) + label > span.labelauty-checked\n{\n\tdisplay: none;\n}\n\n/* When Checked */\ninput.labelauty:checked + label\n{\n\tbackground-color: #3498db;\n\tcolor: #ffffff;\n}\n\ninput.labelauty:checked:not([disabled]) + label:hover\n{\n\tbackground-color: #72c5fd;\n}\ninput.labelauty:checked + label > span.labelauty-unchecked-image\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-unchecked\n{\n\tdisplay: none;\n}\n\ninput.labelauty:checked + label > span.labelauty-checked\n{\n\tdisplay: inline-block;\n}\n\ninput.labelauty.no-label:checked + label > span.labelauty-checked\n{\n\tdisplay: block;\n}\n\n/* When Disabled */\ninput.labelauty[disabled] + label\n{\n\topacity: 0.5;\n}\n\n/* Add a background to (un)checked images */\ninput.labelauty + label > span.labelauty-unchecked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty + label > span.labelauty-checked-image\n{\n\tbackground-image: url( images/icons/folder.png );\n}\n\ninput.labelauty.email + label > span.labelauty-checked-image,\ninput.labelauty.email + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/email.png );\n}\n\ninput.labelauty.cloudfiles + label > span.labelauty-checked-image,\ninput.labelauty.cloudfiles + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/cloudfiles.png );\n}\n\ninput.labelauty.dreamobjects + label > span.labelauty-checked-image,\ninput.labelauty.dreamobjects + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dreamobjects.png );\n}\n\ninput.labelauty.dropbox + label > span.labelauty-checked-image,\ninput.labelauty.dropbox + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/dropbox.png );\n}\n\ninput.labelauty.ftp + label > span.labelauty-checked-image,\ninput.labelauty.ftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.sftp + label > span.labelauty-checked-image,\ninput.labelauty.sftp + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.googledrive + label > span.labelauty-checked-image,\ninput.labelauty.googledrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googledrive.png );\n}\n\ninput.labelauty.s3generic + label > span.labelauty-checked-image,\ninput.labelauty.s3generic + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/folder.png );\n}\n\ninput.labelauty.onedrive + label > span.labelauty-checked-image,\ninput.labelauty.onedrive + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/onedrive.png );\n}\n\ninput.labelauty.azure + label > span.labelauty-checked-image,\ninput.labelauty.azure + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/azure.png );\n}\n\ninput.labelauty.backblaze + label > span.labelauty-checked-image,\ninput.labelauty.backblaze + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/backblaze.png );\n}\n\ninput.labelauty.openstack + label > span.labelauty-checked-image,\ninput.labelauty.openstack + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/openstack.png );\n}\n\ninput.labelauty.s3 + label > span.labelauty-checked-image,\ninput.labelauty.s3 + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/s3.png );\n}\n\ninput.labelauty.updraftvault + label > span.labelauty-checked-image,\ninput.labelauty.updraftvault + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/updraftvault.png );\n}\n\ninput.labelauty.webdav + label > span.labelauty-checked-image,\ninput.labelauty.webdav + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/webdav.png );\n}\n\ninput.labelauty.googlecloud + label > span.labelauty-checked-image,\ninput.labelauty.googlecloud + label > span.labelauty-unchecked-image {\n\tbackground-image: url( ../../images/icons/googlecloud.png );\n}\n\n#remote-storage-container {\n -moz-column-count: 3;\n -webkit-column-count: 3;\n column-count: 3;\n height: auto;\n width: auto;\n}\n"]}
languages/updraftplus-da_DK.mo CHANGED
Binary file
languages/updraftplus-da_DK.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-09-05 14:35:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,61 +13,61 @@ msgstr ""
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 ""
59
 
60
  #: src/addons/googlecloud.php:56
61
  msgid "South-east Australia"
62
- msgstr ""
63
 
64
  #: src/addons/googlecloud.php:55
65
  msgid "South-east Asia"
66
- msgstr ""
67
 
68
  #: src/addons/googlecloud.php:54
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"
@@ -123,15 +123,15 @@ msgstr "Ved ikke, hvordan der slettes fra denne cloud service."
123
 
124
  #: src/addons/sftp.php:696
125
  msgid "Encrypted login failed; trying non-encrypted"
126
- msgstr ""
127
 
128
  #: src/addons/s3-enhanced.php:68
129
  msgid "__Check this box to use Amazon's server-side encryption"
130
- msgstr ""
131
 
132
  #: src/addons/azure.php:535
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"
@@ -413,15 +413,15 @@ msgstr "UpdraftPlus"
413
 
414
  #: src/templates/wp-admin/settings/form-contents.php:245
415
  msgid "Recommended: optimize your database with WP-Optimize."
416
- msgstr ""
417
 
418
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
419
  msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
420
- msgstr ""
421
 
422
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
423
  msgid "WP-Optimize"
424
- msgstr ""
425
 
426
  #: src/templates/wp-admin/notices/bottom-notice.php:31,
427
  #: src/templates/wp-admin/notices/horizontal-notice.php:42,
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-09-24 21:19:29+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\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 "Så længe din webhosting tillader http (dvs. ikke-SSL-adgang) eller vil sende forespørgsler til https (hvilket næsten altid er tilfældet), er dette ikke noget problem. Hvis det endnu ikke er oprettet, skal du sætte det op, eller bruge%s, sådan at ikke-https-links automatisk erstattes."
17
 
18
  #: src/class-updraftplus.php:4739, src/class-updraftplus.php:4741
19
  msgid "the migrator add-on"
20
+ msgstr "migrator tilføjelsen"
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 "Denne opgradering vil fungere, hvis du har et aktivt SSL-certifikat (dvs. kan bruge https). Ellers vil du bruge %s til at søge/erstatte webstedets adresse, så webstedet kan besøges uden https."
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 "Dette backup-sæt er slået fra på dette websted, men på tidspunktet for sikkerhedskopien brugte du %s, mens webstedet nu bruger %s."
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 "Webstedets adresse i backup'en (%s) er lidt anderledes end det nuværende websted (%s). Dette forventes ikke at være et problem for genoprettelsen af webstedet, så længe besøg på den tidligere adresse stadig kommer til webstedet."
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 "Hvis du vil fjerne tilladelse til UpdraftPlus (alle websteder) til at få adgang til dit Google Drev, skal du følge dette link til dine Google-kontoindstillinger."
37
 
38
  #: src/methods/googledrive.php:1149
39
  msgid "Follow this link to remove this site's settings for %s."
40
+ msgstr "Følg dette link for at fjerne dette websteds indstillinger for %s."
41
 
42
  #: src/addons/sftp.php:346
43
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
+ msgstr "UpdraftPlus debug mode er aktivt: Detaljerede debugging data følger."
45
 
46
  #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
+ msgstr "Fejl: Den valgte fil er beskadiget. Vælg venligst en gyldig UpdraftPlus eksportfil."
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 "En alvorlig PHP fejl (%s) er opstået: %s"
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 "Der er opstået en PHP-undtagelse (%s): %s"
59
 
60
  #: src/addons/googlecloud.php:56
61
  msgid "South-east Australia"
62
+ msgstr "Syd-øst Australien"
63
 
64
  #: src/addons/googlecloud.php:55
65
  msgid "South-east Asia"
66
+ msgstr "Syd-øst Asien"
67
 
68
  #: src/addons/googlecloud.php:54
69
  msgid "North-east Asia"
70
+ msgstr "Nord-øst Asien"
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"
123
 
124
  #: src/addons/sftp.php:696
125
  msgid "Encrypted login failed; trying non-encrypted"
126
+ msgstr "Krypteret login mislykkedes. Forsøger nu en ikke-krypteret"
127
 
128
  #: src/addons/s3-enhanced.php:68
129
  msgid "__Check this box to use Amazon's server-side encryption"
130
+ msgstr "__Afkryds denne boks for at bruge Amazons kryptering på server-siden"
131
 
132
  #: src/addons/azure.php:535
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
+ msgstr "Du skal tilføje følgende som autoriseret omdirigerings-URI i din Azure-konsol (under \"API-indstillinger\"), når du bliver spurgt"
135
 
136
  #: src/templates/wp-admin/settings/existing-backups-table.php:70
137
  msgid "Stored at: %s"
413
 
414
  #: src/templates/wp-admin/settings/form-contents.php:245
415
  msgid "Recommended: optimize your database with WP-Optimize."
416
+ msgstr "Anbefalet: Optimer din database med WP-Optimize."
417
 
418
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
419
  msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
420
+ msgstr "Når du har sikkerhedskopieret din database, anbefaler vi, at du installerer vores WP-Optimize-plugin for at strømline det til bedre website-ydelse."
421
 
422
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
423
  msgid "WP-Optimize"
424
+ msgstr "WP-Optimize"
425
 
426
  #: src/templates/wp-admin/notices/bottom-notice.php:31,
427
  #: src/templates/wp-admin/notices/horizontal-notice.php:42,
languages/updraftplus-el.mo CHANGED
Binary file
languages/updraftplus-el.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-02-07 13:43:39+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,546 +13,546 @@ msgstr ""
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 ""
59
 
60
  #: src/addons/googlecloud.php:56
61
  msgid "South-east Australia"
62
- msgstr ""
63
 
64
  #: src/addons/googlecloud.php:55
65
  msgid "South-east Asia"
66
- msgstr ""
67
 
68
  #: src/addons/googlecloud.php:54
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"
78
- msgstr ""
79
 
80
  #: src/templates/wp-admin/settings/tab-addons.php:151
81
  msgid "Network and multisite"
82
- msgstr ""
83
 
84
  #: src/templates/wp-admin/settings/tab-addons.php:87
85
  msgid "Migrator"
86
- msgstr ""
87
 
88
  #: src/templates/wp-admin/settings/tab-addons.php:71
89
  msgid "Additional storage"
90
- msgstr ""
91
 
92
  #: src/templates/wp-admin/settings/tab-addons.php:55
93
  msgid "Remote storage"
94
- msgstr ""
95
 
96
  #: src/templates/wp-admin/settings/form-contents.php:221
97
  msgid "Select Files"
98
- msgstr ""
99
 
100
  #: src/methods/cloudfiles.php:497
101
  msgid "Rackspace Storage Region"
102
- msgstr ""
103
 
104
  #: src/includes/updraftplus-notices.php:193
105
  msgid "Find out more about our revolutionary new WordPress plugin."
106
- msgstr ""
107
 
108
  #: src/includes/updraftplus-notices.php:193
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
 
124
  #: src/addons/sftp.php:696
125
  msgid "Encrypted login failed; trying non-encrypted"
126
- msgstr ""
127
 
128
  #: src/addons/s3-enhanced.php:68
129
  msgid "__Check this box to use Amazon's server-side encryption"
130
- msgstr ""
131
 
132
  #: src/addons/azure.php:535
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
 
140
  #: src/methods/cloudfiles.php:520
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
 
152
  #: src/methods/updraftvault.php:71,
153
  #: src/templates/wp-admin/settings/tab-addons.php:277
154
  msgid "UpdraftVault"
155
- msgstr ""
156
 
157
  #: src/includes/class-wpadmin-commands.php:488
158
  msgid "archive"
159
- msgstr ""
160
 
161
  #: src/includes/class-wpadmin-commands.php:479
162
  msgid "Extra database"
163
- msgstr ""
164
 
165
  #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
- msgstr ""
168
 
169
  #: src/admin.php:1070, src/admin.php:1080
170
  msgid "Error: invalid path"
171
- msgstr ""
172
 
173
  #: src/admin.php:928
174
  msgid "An error occurred when fetching storage module options: "
175
- msgstr ""
176
 
177
  #: src/admin.php:756
178
  msgid "Loading log file"
179
- msgstr ""
180
 
181
  #: src/admin.php:755
182
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
183
- msgstr ""
184
 
185
  #: src/admin.php:754
186
  msgid "Search"
187
- msgstr ""
188
 
189
  #: src/admin.php:753
190
  msgid "Select a file to view information about it"
191
- msgstr ""
192
 
193
  #: src/admin.php:752
194
  msgid "Browsing zip file"
195
- msgstr ""
196
 
197
  #: src/admin.php:721
198
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
199
- msgstr ""
200
 
201
  #: src/admin.php:669
202
  msgid "Browse contents"
203
- msgstr ""
204
 
205
  #: src/restorer.php:1692
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
 
221
  #: src/admin.php:751
222
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
223
- msgstr ""
224
 
225
  #: src/admin.php:751
226
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
227
- msgstr ""
228
 
229
  #: src/admin.php:751
230
  msgid "The available memory on the server."
231
- msgstr ""
232
 
233
  #: src/admin.php:751
234
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
235
- msgstr ""
236
 
237
  #: src/admin.php:751
238
  msgid "The file failed to upload. Please check the following:"
239
- msgstr ""
240
 
241
  #: src/admin.php:750
242
  msgid "HTTP code:"
243
- msgstr ""
244
 
245
  #: src/admin.php:646
246
  msgid "You have chosen to backup a database, but no tables have been selected"
247
- msgstr ""
248
 
249
  #: src/addons/moredatabase.php:585
250
  msgid "tables"
251
- msgstr ""
252
 
253
  #: src/addons/moredatabase.php:584
254
  msgid "WordPress database"
255
- msgstr ""
256
 
257
  #: src/addons/moredatabase.php:577
258
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
259
- msgstr ""
260
 
261
  #: src/templates/wp-admin/settings/tab-addons.php:300
262
  msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
263
- msgstr ""
264
 
265
  #: src/templates/wp-admin/settings/tab-addons.php:298
266
  msgid "UpdraftCentral Cloud or Premium"
267
- msgstr ""
268
 
269
  #: src/templates/wp-admin/settings/tab-addons.php:281,
270
  #: src/templates/wp-admin/settings/tab-addons.php:301
271
  msgid "Find out more"
272
- msgstr ""
273
 
274
  #: src/templates/wp-admin/settings/tab-addons.php:280
275
  msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
276
- msgstr ""
277
 
278
  #: src/templates/wp-admin/settings/tab-addons.php:37,
279
  #: src/templates/wp-admin/settings/tab-addons.php:272
280
  msgid "UpdraftPlus Gold"
281
- msgstr ""
282
 
283
  #: src/templates/wp-admin/settings/tab-addons.php:266
284
  msgid "UpdraftPlus Free"
285
- msgstr ""
286
 
287
  #: src/templates/wp-admin/settings/tab-addons.php:263
288
  msgid "Other products bundled with UpdraftPlus Premium or Gold"
289
- msgstr ""
290
 
291
  #: src/templates/wp-admin/settings/tab-addons.php:249
292
  msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
293
- msgstr ""
294
 
295
  #: src/templates/wp-admin/settings/tab-addons.php:233
296
  msgid "Some backup plugins can’t restore a backup, so Premium allows you to restore backups from other plugins."
297
- msgstr ""
298
 
299
  #: src/templates/wp-admin/settings/tab-addons.php:231,
300
  #: src/templates/wp-admin/settings/tab-addons.php:232
301
  msgid "Importer"
302
- msgstr ""
303
 
304
  #: src/templates/wp-admin/settings/tab-addons.php:217
305
  msgid "Tidy things up for clients and remove all adverts for our other products."
306
- msgstr ""
307
 
308
  #: src/templates/wp-admin/settings/tab-addons.php:215,
309
  #: src/templates/wp-admin/settings/tab-addons.php:216
310
  msgid "No ads"
311
- msgstr ""
312
 
313
  #: src/templates/wp-admin/settings/tab-addons.php:201
314
  msgid "Sophisticated reporting and emailing capabilities."
315
- msgstr ""
316
 
317
  #: src/templates/wp-admin/settings/tab-addons.php:185
318
  msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
319
- msgstr ""
320
 
321
  #: src/templates/wp-admin/settings/tab-addons.php:183,
322
  #: src/templates/wp-admin/settings/tab-addons.php:184
323
  msgid "More database options"
324
- msgstr ""
325
 
326
  #: src/templates/wp-admin/settings/tab-addons.php:169
327
  msgid "Set exact times to create or delete backups."
328
- msgstr ""
329
 
330
  #: src/templates/wp-admin/settings/tab-addons.php:167,
331
  #: src/templates/wp-admin/settings/tab-addons.php:168
332
  msgid "Backup time and scheduling"
333
- msgstr ""
334
 
335
  #: src/templates/wp-admin/settings/tab-addons.php:153
336
  msgid "Backup WordPress multisites (i.e, networks), securely."
337
- msgstr ""
338
 
339
  #: src/templates/wp-admin/settings/tab-addons.php:152
340
  msgid "Network / multisite"
341
- msgstr ""
342
 
343
  #: src/templates/wp-admin/settings/tab-addons.php:137
344
  msgid "Backup WordPress core and non-WP files and databases."
345
- msgstr ""
346
 
347
  #: src/templates/wp-admin/settings/tab-addons.php:121
348
  msgid "Automatically backs up your website before any updates to plugins, themes and WordPress core."
349
- msgstr ""
350
 
351
  #: src/templates/wp-admin/settings/tab-addons.php:119,
352
  #: src/templates/wp-admin/settings/tab-addons.php:120
353
  msgid "Pre-update backups"
354
- msgstr ""
355
 
356
  #: src/templates/wp-admin/settings/tab-addons.php:105
357
  msgid "Provides expert help and support from the developers whenever you need it."
358
- msgstr ""
359
 
360
  #: src/templates/wp-admin/settings/tab-addons.php:104
361
  msgid "Fast, personal support"
362
- msgstr ""
363
 
364
  #: src/templates/wp-admin/settings/tab-addons.php:89
365
  msgid "UpdraftPlus Migrator clones your WordPress site and moves it to a new domain directly and simply."
366
- msgstr ""
367
 
368
  #: src/templates/wp-admin/settings/tab-addons.php:88
369
  msgid "Cloning and migration"
370
- msgstr ""
371
 
372
  #: src/templates/wp-admin/settings/tab-addons.php:73
373
  msgid "Get enhanced versions of the free remote storage options and even more remote storage options like OneDrive, SFTP, Azure, WebDAV and more with UpdraftPlus Premium."
374
- msgstr ""
375
 
376
  #: src/templates/wp-admin/settings/tab-addons.php:72
377
  msgid "Additional and enhanced remote storage locations"
378
- msgstr ""
379
 
380
  #: src/templates/wp-admin/settings/tab-addons.php:57
381
  msgid "To avoid server-wide risks, always backup to remote cloud storage. UpdraftPlus free includes Dropbox, Google Drive, Amazon S3, Rackspace and more."
382
- msgstr ""
383
 
384
  #: src/templates/wp-admin/settings/tab-addons.php:56
385
  msgid "Backup to remote storage locations"
386
- msgstr ""
387
 
388
  #: src/templates/wp-admin/settings/tab-addons.php:47,
389
  #: src/templates/wp-admin/settings/tab-addons.php:50,
390
  #: src/templates/wp-admin/settings/tab-addons.php:320,
391
  #: src/templates/wp-admin/settings/tab-addons.php:323
392
  msgid "Upgrade now"
393
- msgstr ""
394
 
395
  #: src/templates/wp-admin/settings/tab-addons.php:44,
396
  #: src/templates/wp-admin/settings/tab-addons.php:317
397
  msgid "Installed"
398
- msgstr ""
399
 
400
  #: src/templates/wp-admin/settings/tab-addons.php:38
401
  msgid "Gold"
402
- msgstr ""
403
 
404
  #: src/templates/wp-admin/settings/tab-addons.php:30
405
  msgid "Free"
406
- msgstr ""
407
 
408
  #: src/templates/wp-admin/settings/tab-addons.php:30,
409
  #: src/templates/wp-admin/settings/tab-addons.php:34,
410
  #: src/templates/wp-admin/settings/tab-addons.php:38
411
  msgid "UpdraftPlus"
412
- msgstr ""
413
 
414
  #: src/templates/wp-admin/settings/form-contents.php:245
415
  msgid "Recommended: optimize your database with WP-Optimize."
416
- msgstr ""
417
 
418
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
419
  msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
420
- msgstr ""
421
 
422
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
423
  msgid "WP-Optimize"
424
- msgstr ""
425
 
426
  #: src/templates/wp-admin/notices/bottom-notice.php:31,
427
  #: src/templates/wp-admin/notices/horizontal-notice.php:42,
428
  #: src/templates/wp-admin/notices/report-plain.php:33,
429
  #: src/templates/wp-admin/notices/report.php:30
430
  msgid "Read more"
431
- msgstr ""
432
 
433
  #: src/includes/updraftplus-notices.php:182
434
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
435
- msgstr ""
436
 
437
  #: src/addons/morefiles.php:309
438
  msgid "Please choose a file or directory"
439
- msgstr ""
440
 
441
  #: src/addons/morefiles.php:298
442
  msgid "Confirm"
443
- msgstr ""
444
 
445
  #: src/addons/morefiles.php:301
446
  msgid "Go up a directory"
447
- msgstr ""
448
 
449
  #: src/addons/morefiles.php:294
450
  msgid "Add directory..."
451
- msgstr ""
452
 
453
  #: src/addons/morefiles.php:287, src/addons/morefiles.php:307
454
  msgid "Edit"
455
- msgstr ""
456
 
457
  #: src/addons/morefiles.php:270
458
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
459
- msgstr ""
460
 
461
  #: src/addons/s3-enhanced.php:338
462
  msgid "Europe (Frankfurt)"
463
- msgstr ""
464
 
465
  #: src/addons/s3-enhanced.php:337
466
  msgid "Europe (London)"
467
- msgstr ""
468
 
469
  #: src/addons/s3-enhanced.php:336
470
  msgid "Europe (Ireland)"
471
- msgstr ""
472
 
473
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
474
  msgid "WP-Optimize (free)"
475
- msgstr ""
476
 
477
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
478
  msgid "Explore our Cloud and Premium versions."
479
- msgstr ""
480
 
481
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
482
  msgid "Download it for free from WordPress.org"
483
- msgstr ""
484
 
485
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
486
  msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
487
- msgstr ""
488
 
489
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
490
  msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
491
- msgstr ""
492
 
493
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
494
  #: src/templates/wp-admin/settings/tab-addons.php:297
495
  msgid "UpdraftCentral"
496
- msgstr ""
497
 
498
  #: src/templates/wp-admin/notices/horizontal-notice.php:6
499
  msgid "notice image"
500
- msgstr ""
501
 
502
  #: src/templates/wp-admin/notices/bottom-notice.php:29,
503
  #: src/templates/wp-admin/notices/horizontal-notice.php:40,
504
  #: src/templates/wp-admin/notices/report-plain.php:31,
505
  #: src/templates/wp-admin/notices/report.php:28
506
  msgid "Go there"
507
- msgstr ""
508
 
509
  #: src/templates/wp-admin/notices/bottom-notice.php:27,
510
  #: src/templates/wp-admin/notices/horizontal-notice.php:38,
511
  #: src/templates/wp-admin/notices/report-plain.php:29,
512
  #: src/templates/wp-admin/notices/report.php:26
513
  msgid "Sign up"
514
- msgstr ""
515
 
516
  #: src/templates/wp-admin/notices/bottom-notice.php:25,
517
  #: src/templates/wp-admin/notices/horizontal-notice.php:36,
518
  #: src/templates/wp-admin/notices/report-plain.php:27,
519
  #: src/templates/wp-admin/notices/report.php:24
520
  msgid "Get Premium"
521
- msgstr ""
522
 
523
  #: src/templates/wp-admin/notices/bottom-notice.php:23,
524
  #: src/templates/wp-admin/notices/horizontal-notice.php:34,
525
  #: src/templates/wp-admin/notices/report-plain.php:25,
526
  #: src/templates/wp-admin/notices/report.php:22
527
  msgid "Review UpdraftPlus"
528
- msgstr ""
529
 
530
  #: src/templates/wp-admin/notices/bottom-notice.php:21,
531
  #: src/templates/wp-admin/notices/horizontal-notice.php:32,
532
  #: src/templates/wp-admin/notices/report-plain.php:23,
533
  #: src/templates/wp-admin/notices/report.php:20
534
  msgid "Get UpdraftCentral"
535
- msgstr ""
536
 
537
  #: src/templates/wp-admin/advanced/site-info.php:84
538
  msgid "Apache modules"
539
- msgstr ""
540
 
541
  #: src/includes/updraftplus-notices.php:255
542
  msgid "Summer sale - 20% off UpdraftPlus Premium until July 31st"
543
- msgstr ""
544
 
545
  #: src/includes/updraftplus-notices.php:242
546
  msgid "Spring sale - 20% off UpdraftPlus Premium until April 31st"
547
- msgstr ""
548
 
549
  #: src/includes/updraftplus-notices.php:229
550
  msgid "Happy New Year - 20% off UpdraftPlus Premium until January 1st"
551
- msgstr ""
552
 
553
  #: src/includes/updraftplus-notices.php:216
554
  msgid "Christmas sale - 20% off UpdraftPlus Premium until December 25th"
555
- msgstr ""
556
 
557
  #: src/includes/updraftplus-notices.php:204,
558
  #: src/includes/updraftplus-notices.php:217,
@@ -560,90 +560,90 @@ msgstr ""
560
  #: src/includes/updraftplus-notices.php:243,
561
  #: src/includes/updraftplus-notices.php:256
562
  msgid "To benefit, use this discount code:"
563
- msgstr ""
564
 
565
  #: src/includes/updraftplus-notices.php:203
566
  msgid "Black Friday - 20% off UpdraftPlus Premium until November 30th"
567
- msgstr ""
568
 
569
  #: src/includes/updraftplus-notices.php:172
570
  msgid "UpdraftPlus Premium can automatically backup your plugins/themes/database before you update, without you needing to remember."
571
- msgstr ""
572
 
573
  #: src/includes/updraftplus-notices.php:151,
574
  #: src/includes/updraftplus-notices.php:161
575
  msgid "UpdraftPlus Blog - get up-to-date news and offers"
576
- msgstr ""
577
 
578
  #: src/includes/updraftplus-notices.php:141
579
  msgid "UpdraftPlus Newsletter"
580
- msgstr ""
581
 
582
  #: src/includes/updraftplus-notices.php:112
583
  msgid "Control all your WordPress installations from one place using UpdraftCentral remote site management!"
584
- msgstr ""
585
 
586
  #: src/includes/updraftplus-notices.php:111
587
  msgid "Do you use UpdraftPlus on multiple sites?"
588
- msgstr ""
589
 
590
  #: src/includes/updraftplus-notices.php:92,
591
  #: src/templates/wp-admin/settings/tab-addons.php:300
592
  msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
593
- msgstr ""
594
 
595
  #: src/includes/updraftplus-notices.php:91
596
  msgid "Introducing UpdraftCentral"
597
- msgstr ""
598
 
599
  #: src/includes/updraftplus-notices.php:82
600
  msgid "Copy your site to another domain directly. Includes find-and-replace tool for database references."
601
- msgstr ""
602
 
603
  #: src/includes/updraftplus-notices.php:81
604
  msgid "easily migrate or clone your site in minutes"
605
- msgstr ""
606
 
607
  #: src/includes/updraftplus-notices.php:72
608
  msgid "Add SFTP to send your data securely, lock settings and encrypt your database backups for extra security."
609
- msgstr ""
610
 
611
  #: src/includes/updraftplus-notices.php:71
612
  msgid "secure your backups"
613
- msgstr ""
614
 
615
  #: src/includes/updraftplus-notices.php:62
616
  msgid "Secure multisite installation, advanced reporting and much more."
617
- msgstr ""
618
 
619
  #: src/includes/updraftplus-notices.php:61
620
  msgid "advanced options"
621
- msgstr ""
622
 
623
  #: src/includes/updraftplus-notices.php:52
624
  msgid "Enhanced storage options for Dropbox, Google Drive and S3. Plus many more options."
625
- msgstr ""
626
 
627
  #: src/includes/updraftplus-notices.php:51
628
  msgid "enhanced remote storage options"
629
- msgstr ""
630
 
631
  #: src/includes/updraftplus-notices.php:42
632
  msgid "The ultimately secure and convenient place to store your backups."
633
- msgstr ""
634
 
635
  #: src/includes/updraftplus-notices.php:41,
636
  #: src/templates/wp-admin/settings/tab-addons.php:278
637
  msgid "UpdraftVault storage"
638
- msgstr ""
639
 
640
  #: src/includes/updraftplus-notices.php:32
641
  msgid "Enjoy professional, fast, and friendly help whenever you need it."
642
- msgstr ""
643
 
644
  #: src/includes/updraftplus-notices.php:31
645
  msgid "support"
646
- msgstr ""
647
 
648
  #: src/includes/updraftplus-notices.php:30,
649
  #: src/includes/updraftplus-notices.php:40,
@@ -652,151 +652,151 @@ msgstr ""
652
  #: src/includes/updraftplus-notices.php:70,
653
  #: src/includes/updraftplus-notices.php:80
654
  msgid "UpdraftPlus Premium:"
655
- msgstr ""
656
 
657
  #: src/templates/wp-admin/settings/tab-status.php:70
658
  msgid "Then, try out our \"Migrator\" add-on which can perform a direct site-to-site migration. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
659
- msgstr ""
660
 
661
  #: src/addons/s3-enhanced.php:335
662
  msgid "Canada Central"
663
- msgstr ""
664
 
665
  #: src/templates/wp-admin/advanced/tools-menu.php:22
666
  msgid "Site size"
667
- msgstr ""
668
 
669
  #: src/templates/wp-admin/advanced/tools-menu.php:10,
670
  #: src/templates/wp-admin/settings/tab-addons.php:247,
671
  #: src/templates/wp-admin/settings/tab-addons.php:248
672
  msgid "Lock settings"
673
- msgstr ""
674
 
675
  #: src/templates/wp-admin/advanced/site-info.php:5,
676
  #: src/templates/wp-admin/advanced/tools-menu.php:6
677
  msgid "Site information"
678
- msgstr ""
679
 
680
  #: src/templates/wp-admin/advanced/search-replace.php:9
681
  msgid "For the ability to migrate websites, upgrade to UpdraftPlus Premium."
682
- msgstr ""
683
 
684
  #: src/templates/wp-admin/advanced/export-settings.php:15
685
  msgid "Import settings"
686
- msgstr ""
687
 
688
  #: src/templates/wp-admin/advanced/export-settings.php:12
689
  msgid "You can also import previously-exported settings. This tool will replace all your saved settings."
690
- msgstr ""
691
 
692
  #: src/templates/wp-admin/advanced/export-settings.php:9
693
  msgid "Export settings"
694
- msgstr ""
695
 
696
  #: src/templates/wp-admin/advanced/export-settings.php:7
697
  msgid "including any passwords"
698
- msgstr ""
699
 
700
  #: src/templates/wp-admin/advanced/export-settings.php:7
701
  msgid "Here, you can export your UpdraftPlus settings (%s), either for using on another site, or to keep as a backup. This tool will export what is currently in the settings tab."
702
- msgstr ""
703
 
704
  #: src/templates/wp-admin/advanced/export-settings.php:5,
705
  #: src/templates/wp-admin/advanced/tools-menu.php:26
706
  msgid "Export / import settings"
707
- msgstr ""
708
 
709
  #: src/restorer.php:1869
710
  msgid "Processing table (%s)"
711
- msgstr ""
712
 
713
  #: src/restorer.php:1658
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
 
721
  #: src/methods/dropbox.php:598
722
  msgid "%s de-authentication"
723
- msgstr ""
724
 
725
  #: src/methods/dropbox.php:563
726
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
727
- msgstr ""
728
 
729
  #: src/methods/dropbox.php:532
730
  msgid "Follow this link to deauthenticate with %s."
731
- msgstr ""
732
 
733
  #: src/central/bootstrap.php:549
734
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
735
- msgstr ""
736
 
737
  #: src/backup.php:1527
738
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
739
- msgstr ""
740
 
741
  #: src/templates/wp-admin/settings/tab-status.php:81
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
 
753
  #: src/admin.php:973, src/admin.php:977, src/admin.php:985, src/admin.php:989
754
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
755
- msgstr ""
756
 
757
  #: src/admin.php:749
758
  msgid "remote files deleted"
759
- msgstr ""
760
 
761
  #: src/admin.php:747
762
  msgid "Complete"
763
- msgstr ""
764
 
765
  #: src/admin.php:746
766
  msgid "Do you want to carry out the import?"
767
- msgstr ""
768
 
769
  #: src/admin.php:745
770
  msgid "Which was exported on:"
771
- msgstr ""
772
 
773
  #: src/admin.php:744
774
  msgid "This will import data from:"
775
- msgstr ""
776
 
777
  #: src/admin.php:743
778
  msgid "Importing..."
779
- msgstr ""
780
 
781
  #: src/admin.php:739
782
  msgid "You have not yet selected a file to import."
783
- msgstr ""
784
 
785
  #: src/admin.php:723
786
  msgid "Your export file will be of your displayed settings, not your saved ones."
787
- msgstr ""
788
 
789
  #: src/admin.php:82
790
  msgid "template not found"
791
- msgstr ""
792
 
793
  #: src/addons/s3-enhanced.php:331
794
  msgid "US East (Ohio)"
795
- msgstr ""
796
 
797
  #: src/addons/onedrive.php:946
798
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
799
- msgstr ""
800
 
801
  #: src/addons/onedrive.php:634
802
  msgid "Account is not authorized (%s)."
@@ -1649,7 +1649,7 @@ msgstr "Πατήστε εδώ για να αναζητήσετε στα σημε
1649
 
1650
  #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
- msgstr ""
1653
 
1654
  #: src/admin.php:733
1655
  msgid "Processing..."
@@ -2107,7 +2107,7 @@ msgstr "Μια διαδικασία «μετανάστευσης» είναι τ
2107
 
2108
  #: src/admin.php:706
2109
  msgid "Resetting..."
2110
- msgstr ""
2111
 
2112
  #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
@@ -2176,7 +2176,7 @@ msgstr "Θα πρέπει να προσθέσετε το ακόλουθο ως
2176
 
2177
  #: src/addons/azure.php:533
2178
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2179
- msgstr ""
2180
 
2181
  #: src/addons/onedrive.php:922, src/addons/onedrive.php:924
2182
  msgid "%s authorisation failed:"
@@ -2438,7 +2438,7 @@ msgstr "Ακολουθήστε αυτό το σύνδεσμο για να εγγ
2438
  #: src/templates/wp-admin/settings/tab-addons.php:135,
2439
  #: src/templates/wp-admin/settings/tab-addons.php:136
2440
  msgid "Backup non-WordPress files and databases"
2441
- msgstr ""
2442
 
2443
  #: src/templates/wp-admin/settings/tab-addons.php:19
2444
  msgid "Ask a pre-sales question"
@@ -2775,7 +2775,7 @@ msgstr "Twitter"
2775
 
2776
  #: src/includes/updraftplus-notices.php:132
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?"
@@ -3408,7 +3408,7 @@ msgstr "Συνδέστε όλα τα μηνύματα στο syslog (μόνο ο
3408
 
3409
  #: src/addons/morefiles.php:491
3410
  msgid "No backup of location: there was nothing found to back up"
3411
- msgstr ""
3412
 
3413
  #: src/addons/moredatabase.php:241, src/addons/morefiles.php:287,
3414
  #: src/addons/morefiles.php:308
@@ -4056,7 +4056,7 @@ msgstr "URL περιεχομένου:"
4056
 
4057
  #: src/restorer.php:149
4058
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4059
- msgstr ""
4060
 
4061
  #: src/templates/wp-admin/settings/form-contents.php:176
4062
  msgid "See also the \"More Files\" add-on from our shop."
@@ -5195,7 +5195,7 @@ msgstr "Δεν δημιουργήθηκε αντίγραφο ασφαλείας
5195
 
5196
  #: src/addons/morefiles.php:272
5197
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5198
- msgstr ""
5199
 
5200
  #: src/addons/morefiles.php:270
5201
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
@@ -5788,7 +5788,7 @@ msgstr "Η εγκατάσταση της PHP/Curl στον εξυπηρετητ
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
@@ -5841,7 +5841,7 @@ 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."
@@ -5968,7 +5968,7 @@ msgstr "Διαγραφή"
5968
 
5969
  #: src/admin.php:2645
5970
  msgid "(None)"
5971
- msgstr ""
5972
 
5973
  #: src/admin.php:2801
5974
  msgid "show log"
@@ -6405,7 +6405,7 @@ msgstr "Άπειρη αναδρομή: συμβουλευτείτε το αρχ
6405
 
6406
  #: src/includes/updraftplus-notices.php:102
6407
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org."
6408
- msgstr ""
6409
 
6410
  #: src/includes/updraftplus-notices.php:101
6411
  msgid "Like UpdraftPlus and can spare one minute?"
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-09-23 19:31:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\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 "Όσο η φιλοξενία σας στο διαδίκτυο επιτρέπει την πρόσβαση http (δηλαδή πρόσβαση χωρίς SSL) ή θα προωθεί τα αιτήματα σε https (κάτι που συμβαίνει σχεδόν πάντοτε), αυτό δεν αποτελεί πρόβλημα. Αν αυτό δεν το έχετε ρυθμίσει ακόμα, θα πρέπει να το ορίσετε ή να χρησιμοποιήσετε το %s έτσι ώστε οι σύνδεσμοι που δεν είναι https να αντικατασταθούν αυτόματα."
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 "Αυτή η αποκατάσταση θα λειτουργήσει εάν εξακολουθείτε να έχετε ένα πιστοποιητικό SSL (δηλ. να μπορείτε να χρησιμοποιήσετε το https) για να αποκτήσετε πρόσβαση στον ιστότοπο. Διαφορετικά, θα πρέπει να χρησιμοποιήσετε το %s για να αναζητήσετε/αντικαταστήσετε τη διεύθυνση ιστότοπου έτσι ώστε να μπορέστε να επισκεφθείτε τον ιστότοπο χωρίς https."
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 "Αυτό το σετ αντιγράφων ασφαλείας είναι αυτού του ιστότοπου, αλλά κατά τη στιγμή της δημιουργίας αντιγράφων ασφαλείας χρησιμοποιούσατε %s, ενώ ο ιστότοπος χρησιμοποιεί τώρα %s."
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 "Η διεύθυνση ιστότοπου στο αντίγραφο ασφαλείας (%s) είναι ελαφρώς διαφορετική από αυτή του ιστότοπου τώρα (%s). Αυτό δεν αναμένεται να αποτελέσει κάποιο πρόβλημα για την αποκατάσταση του ιστότοπου, εφόσον οι επισκέψεις στην προηγούμενη διεύθυνση εξακολουθούν να φθάνουν στον ιστότοπο."
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 "Για να γίνει άρση της αξουσιοδότησης του UpdraftPlus (όλους τους ιστότοπους) από την πρόσβαση στο Google Drive σας, ακολουθήστε αυτόν τον σύνδεσμο στις ρυθμίσεις του λογαριασμού σας Google."
37
 
38
  #: src/methods/googledrive.php:1149
39
  msgid "Follow this link to remove this site's settings for %s."
40
+ msgstr "Ακολουθήστε αυτόν τον σύνδεσμο για να καταργήσετε τις ρυθμίσεις του ιστότοπου για το %s."
41
 
42
  #: src/addons/sftp.php:346
43
  msgid "UpdraftPlus debug mode is on: detailed debugging data follows."
44
+ msgstr "Η λειτουργία αποσφαλμάτωσης του UpdraftPlus είναι ενεργοποιημένη: ακολουθούν λεπτομερή δεδομένα εντοπισμού σφαλμάτων."
45
 
46
  #: src/admin.php:740
47
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
48
+ msgstr "Σφάλμα: Το επιλεγμένο αρχείο είναι κατεστραμμένο. Επιλέξτε ένα έγκυρο αρχείο εξαγωγής του UpdraftPlus."
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 "Έχει συμβεί ένα καίριο σφάλμα (%s) στην PHP: %s"
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 "Έχει γίνει εξαίρεση (%s) στην PHP: %s"
59
 
60
  #: src/addons/googlecloud.php:56
61
  msgid "South-east Australia"
62
+ msgstr "Νοτιοανατολική Αυστραλία"
63
 
64
  #: src/addons/googlecloud.php:55
65
  msgid "South-east Asia"
66
+ msgstr "Νοτιοανατολική Ασία"
67
 
68
  #: src/addons/googlecloud.php:54
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 "Η έκδοση PHP του διακομιστή σας είναι πολύ παλιά (%s) - Το UpdraftPlus για να λειτουργήσει πρέπει να υπάρχει τουλάχιστον η έκδοση %s. Μπορείτε να το δοκιμάσετε, αλλά μην εκπλαγείτε αν δεν λειτουργεί. Για να διορθώσετε αυτό το πρόβλημα, επικοινωνήστε με την εταιρεία φιλοξενίας της ισοτσελίδας σας"
75
 
76
  #: src/templates/wp-admin/settings/tab-status.php:80
77
  msgid "Remote storage authentication"
78
+ msgstr "Αυθεντικοποίηση απομακρυσμένης αποθήκευσης"
79
 
80
  #: src/templates/wp-admin/settings/tab-addons.php:151
81
  msgid "Network and multisite"
82
+ msgstr "Δίκτυο και multisite"
83
 
84
  #: src/templates/wp-admin/settings/tab-addons.php:87
85
  msgid "Migrator"
86
+ msgstr "Πρόσθετο μετανάστευσης"
87
 
88
  #: src/templates/wp-admin/settings/tab-addons.php:71
89
  msgid "Additional storage"
90
+ msgstr "Πρόσθετος χώρος αποθήκευσης"
91
 
92
  #: src/templates/wp-admin/settings/tab-addons.php:55
93
  msgid "Remote storage"
94
+ msgstr "Απομακρυσμένος χώρος αποθήκευσης"
95
 
96
  #: src/templates/wp-admin/settings/form-contents.php:221
97
  msgid "Select Files"
98
+ msgstr "Επιλογή αρχείων"
99
 
100
  #: src/methods/cloudfiles.php:497
101
  msgid "Rackspace Storage Region"
102
+ msgstr "Περιοχή χώρος αποθήκευσης του Rackspace"
103
 
104
  #: src/includes/updraftplus-notices.php:193
105
  msgid "Find out more about our revolutionary new WordPress plugin."
106
+ msgstr "Μάθετε περισσότερα για το επαναστατικό νέο μας πρόσθετο της WordPress."
107
 
108
  #: src/includes/updraftplus-notices.php:193
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 "Όπως σας προειδοποιήσαμε προηγουμένως (δείτε:%s), η κρυπτογράφηση δεν αποτελεί πλέον χαρακτηριστικό της δωρεάν έκδοσης του UpdraftPlus"
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
 
124
  #: src/addons/sftp.php:696
125
  msgid "Encrypted login failed; trying non-encrypted"
126
+ msgstr "Η κρυπτογραφημένη σύνδεση απέτυχε, προσπάθεια μη κρυπτογραφημένης σύνδεσης"
127
 
128
  #: src/addons/s3-enhanced.php:68
129
  msgid "__Check this box to use Amazon's server-side encryption"
130
+ msgstr "__Επιλέξτε αυτό το πλαίσιο για να χρησιμοποιήσετε την κρυπτογράφηση από την πλευρά του διακομιστή του Amazon"
131
 
132
  #: src/addons/azure.php:535
133
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
134
+ msgstr "Πρέπει να προσθέσετε τα ακόλουθα ως εξουσιοδοτημένο URI ανακατεύθυνσης στην κονσόλα Azure (κάτω από τις \"Ρυθμίσεις API\") όταν σας ζητηθεί"
135
 
136
  #: src/templates/wp-admin/settings/existing-backups-table.php:70
137
  msgid "Stored at: %s"
138
+ msgstr "Αποθήκευση στο: %s"
139
 
140
  #: src/methods/cloudfiles.php:520
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 "Το UpdraftPlus φαίνεται να έχει ενημερωθεί στην έκδοση (%s), η οποία είναι διαφορετική από την εκδοχή που εκτελείται κατά τη φόρτωση αυτής της σελίδας ρυθμίσεων. Παρακαλούμε επαναφορτώστε τη σελίδα ρυθμίσεων πριν επιχειρήσετε να αποθηκεύσετε τις ρυθμίσεις."
151
 
152
  #: src/methods/updraftvault.php:71,
153
  #: src/templates/wp-admin/settings/tab-addons.php:277
154
  msgid "UpdraftVault"
155
+ msgstr "UpdraftVault"
156
 
157
  #: src/includes/class-wpadmin-commands.php:488
158
  msgid "archive"
159
+ msgstr "αρχείο"
160
 
161
  #: src/includes/class-wpadmin-commands.php:479
162
  msgid "Extra database"
163
+ msgstr "Επιπρόσθετη βάση δεδομένων"
164
 
165
  #: src/admin.php:3502
166
  msgid "Press here to download or browse"
167
+ msgstr "Πατήστε εδώ για λήψη ή περιήγηση"
168
 
169
  #: src/admin.php:1070, src/admin.php:1080
170
  msgid "Error: invalid path"
171
+ msgstr "Σφάλμα: μη έγκυρη διαδρομή"
172
 
173
  #: src/admin.php:928
174
  msgid "An error occurred when fetching storage module options: "
175
+ msgstr "Παρουσιάστηκε σφάλμα κατά την ανάκτηση των επιλογών μονάδας αποθήκευσης:"
176
 
177
  #: src/admin.php:756
178
  msgid "Loading log file"
179
+ msgstr "Φόρτωση αρχείου καταγραφής"
180
 
181
  #: src/admin.php:755
182
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
183
+ msgstr "Δεν είναι δυνατή η λήψη αρχείου. Αυτό θα μπορούσε να προκληθεί από την υπέρβαση του χρονικού ορίου. Θα ήταν καλύτερο να κατεβάσετε το συμπιεσμένο αρχείο στον υπολογιστή σας."
184
 
185
  #: src/admin.php:754
186
  msgid "Search"
187
+ msgstr "Αναζήτηση"
188
 
189
  #: src/admin.php:753
190
  msgid "Select a file to view information about it"
191
+ msgstr "Επιλέξτε ένα αρχείο για να δείτε πληροφορίες σχετικά με αυτό"
192
 
193
  #: src/admin.php:752
194
  msgid "Browsing zip file"
195
+ msgstr "Περιήγηση στο αρχείο zip"
196
 
197
  #: src/admin.php:721
198
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
199
+ msgstr "Με το UpdraftPlus Premium, μπορείτε να κατεβάσετε άμεσα μεμονωμένα αρχεία από εδώ."
200
 
201
  #: src/admin.php:669
202
  msgid "Browse contents"
203
+ msgstr "Περιήγηση περιεχομένων"
204
 
205
  #: src/restorer.php:1692
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 "Από αυτό το αντίγραφο ασφαλείας των βάσεων δεδομένων έχουν εξαιρέθει οι παρακάτω πίνακες της WordPress: %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 "Με το UpdraftPlus Premium, μπορείτε να επιλέξετε να δημιουργήσετε αντίγραφα ασφαλείας για μη πίνακες της WordPress, να δημιουργήσετε αντίγραφα ασφαλείας μόνο για συγκεκριμένους πίνακες και να δημιουργήσετε αντίγραφα ασφαλείας και για άλλες βάσεις δεδομένων."
216
 
217
  #: src/admin.php:2481
218
  msgid "All WordPress tables will be backed up."
219
+ msgstr "Θα δημιουργηθούν αντίγραφα ασφαλείας για όλους τους πίνακες της WordPress."
220
 
221
  #: src/admin.php:751
222
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
223
+ msgstr "Περισσότερες πληροφορίες μπορούν να βρεθούν στην κονσόλα JavaScript του προγράμματος περιήγησης και οι καταγραφές σφαλμάτων του διακομιστή PHP."
224
 
225
  #: src/admin.php:751
226
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
227
+ msgstr "Ότι προσπαθείτε να ανεβάσετε ένα αρχείο zip που δημιουργήθηκε προηγουμένως από το UpdraftPlus."
228
 
229
  #: src/admin.php:751
230
  msgid "The available memory on the server."
231
+ msgstr "Η διαθέσιμη μνήμη στο διακομιστή."
232
 
233
  #: src/admin.php:751
234
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
235
+ msgstr "Οποιαδήποτε ρύθμιση στο αρχείο .htaccess ή web.config που επηρεάζει το μέγιστο μέγεθος μεταφόρτωσης ή αρθρου."
236
 
237
  #: src/admin.php:751
238
  msgid "The file failed to upload. Please check the following:"
239
+ msgstr "Το αρχείο απέτυχε να ανέβει. Ελέγξτε τα εξής:"
240
 
241
  #: src/admin.php:750
242
  msgid "HTTP code:"
243
+ msgstr "Κωδικός HTTP:"
244
 
245
  #: src/admin.php:646
246
  msgid "You have chosen to backup a database, but no tables have been selected"
247
+ msgstr "Έχετε επιλέξει να δημιουργήσετε αντίγραφα ασφαλείας μιας βάσης δεδομένων, αλλά δεν έχετε επιλέξει πίνακες"
248
 
249
  #: src/addons/moredatabase.php:585
250
  msgid "tables"
251
+ msgstr "πίνακες"
252
 
253
  #: src/addons/moredatabase.php:584
254
  msgid "WordPress database"
255
+ msgstr "βάση δεδομένων της WordPress"
256
 
257
  #: src/addons/moredatabase.php:577
258
  msgid "You should backup all tables unless you are an expert in the internals of the WordPress database."
259
+ msgstr "Θα πρέπει να δημιουργήσετε αντίγραφα ασφαλείας για όλους τους πίνακες εκτός αν είστε ειδικός στα εσωτερικά της βάσης δεδομένων WordPress."
260
 
261
  #: src/templates/wp-admin/settings/tab-addons.php:300
262
  msgid "Everyone can use the free version; but UpdraftGold bundles an enhanced paid version."
263
+ msgstr "Ο καθένας μπορεί να χρησιμοποιήσει την δωρεάν έκδοση, αλλά το UpdraftGold περιέχει μια ενισχυμένη έκδοση με πληρωμή."
264
 
265
  #: src/templates/wp-admin/settings/tab-addons.php:298
266
  msgid "UpdraftCentral Cloud or Premium"
267
+ msgstr "UpdraftCentral Cloud or Premium"
268
 
269
  #: src/templates/wp-admin/settings/tab-addons.php:281,
270
  #: src/templates/wp-admin/settings/tab-addons.php:301
271
  msgid "Find out more"
272
+ msgstr "Δείτε περισσότερα"
273
 
274
  #: src/templates/wp-admin/settings/tab-addons.php:280
275
  msgid "UpdraftPlus has its own embedded storage option, providing a zero-hassle way to download, store and manage all your backups from one place."
276
+ msgstr "Το UpdraftPlus διαθέτει τη δική του ενσωματωμένη επιλογή αποθήκευσης, παρέχοντας έναν τρόπο μηδενικής ταλαιπωρίας για τη λήψη, την αποθήκευση και τη διαχείριση όλων των αντιγράφων ασφαλείας σας από ένα μέρος."
277
 
278
  #: src/templates/wp-admin/settings/tab-addons.php:37,
279
  #: src/templates/wp-admin/settings/tab-addons.php:272
280
  msgid "UpdraftPlus Gold"
281
+ msgstr "UpdraftPlus Gold"
282
 
283
  #: src/templates/wp-admin/settings/tab-addons.php:266
284
  msgid "UpdraftPlus Free"
285
+ msgstr "Δωρεάν UpdraftPlus"
286
 
287
  #: src/templates/wp-admin/settings/tab-addons.php:263
288
  msgid "Other products bundled with UpdraftPlus Premium or Gold"
289
+ msgstr "Άλλα προϊόντα που έχουν συνδυαστεί με το UpdraftPlus Premium ή το Gold"
290
 
291
  #: src/templates/wp-admin/settings/tab-addons.php:249
292
  msgid "Lock access to UpdraftPlus via a password so you choose which admin users can access backups."
293
+ msgstr "Κλεiδώστε την πρόσβαση στο UpdraftPlus μέσω ενός κωδικού πρόσβασης, ώστε να επιλέξετε ποιοι διαχειριστές μπορούν να έχουν πρόσβαση στα αντίγραφα ασφαλείας."
294
 
295
  #: src/templates/wp-admin/settings/tab-addons.php:233
296
  msgid "Some backup plugins can’t restore a backup, so Premium allows you to restore backups from other plugins."
297
+ msgstr "Ορισμένα πρόσθετα δημιουργίας αντιγράφων ασφαλείας δεν μπορούν να επαναφέρουν ένα αντίγραφο ασφαλείας, οπότε το Premium σας επιτρέπει να επαναφέρετε τα αντίγραφα ασφαλείας από άλλα πρόσθετα."
298
 
299
  #: src/templates/wp-admin/settings/tab-addons.php:231,
300
  #: src/templates/wp-admin/settings/tab-addons.php:232
301
  msgid "Importer"
302
+ msgstr "Εισαγωγέας"
303
 
304
  #: src/templates/wp-admin/settings/tab-addons.php:217
305
  msgid "Tidy things up for clients and remove all adverts for our other products."
306
+ msgstr "Τακτοποιήστε τα πράγματα για τους πελάτες σας κι αφαιρέστε όλες τις διαφημίσεις για τα άλλα προϊόντα μας."
307
 
308
  #: src/templates/wp-admin/settings/tab-addons.php:215,
309
  #: src/templates/wp-admin/settings/tab-addons.php:216
310
  msgid "No ads"
311
+ msgstr "Χωρίς διαφημίσεις"
312
 
313
  #: src/templates/wp-admin/settings/tab-addons.php:201
314
  msgid "Sophisticated reporting and emailing capabilities."
315
+ msgstr "Εξεζητημένες δυνατότητες αναφοράς και αποστολής μηνυμάτων ηλεκτρονικού ταχυδρομείου."
316
 
317
  #: src/templates/wp-admin/settings/tab-addons.php:185
318
  msgid "Encrypt your sensitive databases (e.g. customer information or passwords); Backup external databases too."
319
+ msgstr "Κρυπτογραφήστε τις ευαίσθητες βάσεις δεδομένων σας (π.χ. πληροφορίες πελατών ή κωδικοί πρόσβασης). Δημιουργήστε αντίγραφα ασφαλείας εξωτερικών βάσεων δεδομένων."
320
 
321
  #: src/templates/wp-admin/settings/tab-addons.php:183,
322
  #: src/templates/wp-admin/settings/tab-addons.php:184
323
  msgid "More database options"
324
+ msgstr "Περισσότερες επιλογήες για τη βάση δεδομένων"
325
 
326
  #: src/templates/wp-admin/settings/tab-addons.php:169
327
  msgid "Set exact times to create or delete backups."
328
+ msgstr "Ορίστε τις ακριβείς ώρες για να δημιουργήσετε ή να διαγράψετε αντίγραφα ασφαλείας."
329
 
330
  #: src/templates/wp-admin/settings/tab-addons.php:167,
331
  #: src/templates/wp-admin/settings/tab-addons.php:168
332
  msgid "Backup time and scheduling"
333
+ msgstr "Χρόνος δημιουργίας αντιγράφων ασφαλείας και προγραμματισμός"
334
 
335
  #: src/templates/wp-admin/settings/tab-addons.php:153
336
  msgid "Backup WordPress multisites (i.e, networks), securely."
337
+ msgstr "Δημιουργήστε αντίγραφα ασφαλείας από WordPress multisites (δηλαδή, δίκτυα), με ασφάλεια."
338
 
339
  #: src/templates/wp-admin/settings/tab-addons.php:152
340
  msgid "Network / multisite"
341
+ msgstr "Network / multisite"
342
 
343
  #: src/templates/wp-admin/settings/tab-addons.php:137
344
  msgid "Backup WordPress core and non-WP files and databases."
345
+ msgstr "Δημιουργήστε αντίγραφα ασφαλείας του πυρήνα της WordPress και μη WP αρχεία και βάσεις δεδομένων."
346
 
347
  #: src/templates/wp-admin/settings/tab-addons.php:121
348
  msgid "Automatically backs up your website before any updates to plugins, themes and WordPress core."
349
+ msgstr "Αυτόματη δημιουργία αντιγράφων ασφαλείας στον ιστότοπό σας πριν από οποιεσδήποτε ενημέρωση πρόσθετων, θεμάτων και του πυρήνα της WordPress."
350
 
351
  #: src/templates/wp-admin/settings/tab-addons.php:119,
352
  #: src/templates/wp-admin/settings/tab-addons.php:120
353
  msgid "Pre-update backups"
354
+ msgstr "Προ-ενημέρωση αντιγράφων ασφαλείας"
355
 
356
  #: src/templates/wp-admin/settings/tab-addons.php:105
357
  msgid "Provides expert help and support from the developers whenever you need it."
358
+ msgstr "Παρέχει βοήθεια και υποστήριξη από τους προγραμματιστές όποτε το χρειάζεστε."
359
 
360
  #: src/templates/wp-admin/settings/tab-addons.php:104
361
  msgid "Fast, personal support"
362
+ msgstr "Γρήγορη, προσωπική υποστήριξη"
363
 
364
  #: src/templates/wp-admin/settings/tab-addons.php:89
365
  msgid "UpdraftPlus Migrator clones your WordPress site and moves it to a new domain directly and simply."
366
+ msgstr "Το UpdraftPlus Migrator κλωνοποιεί τον ιστότοπό σας WordPress και τον μεταφέρει σε ένα νέο τομέα άμεσα και απλά."
367
 
368
  #: src/templates/wp-admin/settings/tab-addons.php:88
369
  msgid "Cloning and migration"
370
+ msgstr "Κλωνοποίηση και μετανάστευση"
371
 
372
  #: src/templates/wp-admin/settings/tab-addons.php:73
373
  msgid "Get enhanced versions of the free remote storage options and even more remote storage options like OneDrive, SFTP, Azure, WebDAV and more with UpdraftPlus Premium."
374
+ msgstr "Αποκτήστε βελτιωμένες εκδόσεις των δωρεάν επιλογών απομακρυσμένης αποθήκευσης και ακόμα πιο απομακρυσμένες επιλογές αποθήκευσης όπως τα OneDrive, SFTP, Azure, WebDAV και πολλά άλλα με το UpdraftPlus Premium."
375
 
376
  #: src/templates/wp-admin/settings/tab-addons.php:72
377
  msgid "Additional and enhanced remote storage locations"
378
+ msgstr "Πρόσθετες και βελτιωμένες θέσεις απομακρυσμένης αποθήκευσης"
379
 
380
  #: src/templates/wp-admin/settings/tab-addons.php:57
381
  msgid "To avoid server-wide risks, always backup to remote cloud storage. UpdraftPlus free includes Dropbox, Google Drive, Amazon S3, Rackspace and more."
382
+ msgstr "Για να αποφύγετε τους κινδύνους που σχετίζονται με το διακομιστή, δημιουργήστε πάντα αντίγραφα ασφαλείας για απομακρυσμένη αποθήκευση στο σύννεφο. Το UpdraftPlus περιλαμβάνει δωρεάν τα Dropbox, Google Drive, Amazon S3, Rackspace και πολλά άλλα."
383
 
384
  #: src/templates/wp-admin/settings/tab-addons.php:56
385
  msgid "Backup to remote storage locations"
386
+ msgstr "Δημιουργία αντιγράφων ασφαλείας σε απομακρυσμένες θέσεις αποθήκευσης"
387
 
388
  #: src/templates/wp-admin/settings/tab-addons.php:47,
389
  #: src/templates/wp-admin/settings/tab-addons.php:50,
390
  #: src/templates/wp-admin/settings/tab-addons.php:320,
391
  #: src/templates/wp-admin/settings/tab-addons.php:323
392
  msgid "Upgrade now"
393
+ msgstr "Αναβαθμίστε τώρα"
394
 
395
  #: src/templates/wp-admin/settings/tab-addons.php:44,
396
  #: src/templates/wp-admin/settings/tab-addons.php:317
397
  msgid "Installed"
398
+ msgstr "Εγκατεστημένο"
399
 
400
  #: src/templates/wp-admin/settings/tab-addons.php:38
401
  msgid "Gold"
402
+ msgstr "Χρυσό"
403
 
404
  #: src/templates/wp-admin/settings/tab-addons.php:30
405
  msgid "Free"
406
+ msgstr "Ελεύθερο"
407
 
408
  #: src/templates/wp-admin/settings/tab-addons.php:30,
409
  #: src/templates/wp-admin/settings/tab-addons.php:34,
410
  #: src/templates/wp-admin/settings/tab-addons.php:38
411
  msgid "UpdraftPlus"
412
+ msgstr "UpdraftPlus"
413
 
414
  #: src/templates/wp-admin/settings/form-contents.php:245
415
  msgid "Recommended: optimize your database with WP-Optimize."
416
+ msgstr "Συνιστούμε: βελτιστοποιήστε τη βάση δεδομένων σας με το WP-Optimize."
417
 
418
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
419
  msgid "When you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
420
+ msgstr "Όταν δημιουργήσετε αντίγραφο ασφαλείας της βάσης δεδομένων σας, σας συνιστούμε να εγκαταστήσετε το πρόσθετο WP-Optimize για να την εξομαλύνετε για την καλύτερη απόδοση του ιστότοπου."
421
 
422
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
423
  msgid "WP-Optimize"
424
+ msgstr "WP-Optimize"
425
 
426
  #: src/templates/wp-admin/notices/bottom-notice.php:31,
427
  #: src/templates/wp-admin/notices/horizontal-notice.php:42,
428
  #: src/templates/wp-admin/notices/report-plain.php:33,
429
  #: src/templates/wp-admin/notices/report.php:30
430
  msgid "Read more"
431
+ msgstr "Διαβάστε περισσότερα"
432
 
433
  #: src/includes/updraftplus-notices.php:182
434
  msgid "After you've backed up your database, we recommend you install our WP-Optimize plugin to streamline it for better website performance."
435
+ msgstr "Αφού δημιουργήσετε αντίγραφο ασφαλείας της βάσης δεδομένων σας, σας συνιστούμε να εγκαταστήσετε το πρόσθετο WP-Optimize για να την εξομαλύνετε για καλύτερη απόδοση του ιστότοπου."
436
 
437
  #: src/addons/morefiles.php:309
438
  msgid "Please choose a file or directory"
439
+ msgstr "Παρακαλούμε επιλέξτε ένα αρχείο ή έναν κατάλογο"
440
 
441
  #: src/addons/morefiles.php:298
442
  msgid "Confirm"
443
+ msgstr "Επιβεβαίωση"
444
 
445
  #: src/addons/morefiles.php:301
446
  msgid "Go up a directory"
447
+ msgstr "Πηγαίνετε πίσω έναν κατάλογο"
448
 
449
  #: src/addons/morefiles.php:294
450
  msgid "Add directory..."
451
+ msgstr "Προσθήκη καταλόγου ..."
452
 
453
  #: src/addons/morefiles.php:287, src/addons/morefiles.php:307
454
  msgid "Edit"
455
+ msgstr "Επεξεργασία"
456
 
457
  #: src/addons/morefiles.php:270
458
  msgid "If using it, select a path from the directory tree below and then press confirm selection."
459
+ msgstr "Εάν το χρησιμοποιείτε, επιλέξτε μια διαδρομή από το παρακάτω δέντρο καταλόγου και στη συνέχεια πατήστε επιβεβαίωση επιλογής."
460
 
461
  #: src/addons/s3-enhanced.php:338
462
  msgid "Europe (Frankfurt)"
463
+ msgstr "Ευρώπη (Φρανκφούρτη)"
464
 
465
  #: src/addons/s3-enhanced.php:337
466
  msgid "Europe (London)"
467
+ msgstr "Ευρώπη (Λονδίνο)"
468
 
469
  #: src/addons/s3-enhanced.php:336
470
  msgid "Europe (Ireland)"
471
+ msgstr "Ευρώπη (Ιρλανδία)"
472
 
473
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:15
474
  msgid "WP-Optimize (free)"
475
+ msgstr "WP-Optimize (δωρεάν)"
476
 
477
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
478
  msgid "Explore our Cloud and Premium versions."
479
+ msgstr "Εξερευνήστε τις εκδόσεις Cloud και Premium."
480
 
481
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
482
  msgid "Download it for free from WordPress.org"
483
+ msgstr "Κατεβάστε το δωρεάν από το WordPress.org"
484
 
485
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
486
  msgid "You can even use it to centrally manage and update all themes, plugins and WordPress core on all your sites without logging into them!"
487
+ msgstr "Μπορείτε ακόμη να το χρησιμοποιήσετε για να διαχειριστείτε και να ενημερώσετε κεντρικά όλα τα θέματα, plugins και τον πυρήνα της WordPress σε όλες τις τοποθεσίες σας χωρίς να συνδεθείτε σε αυτές!"
488
 
489
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13
490
  msgid "UpdraftCentral is a powerful remote control plugin for WordPress that allows you to control all your UpdraftPlus installs and backups from one central location."
491
+ msgstr "Το UpdraftCentral είναι ένα ισχυρό πρόσθετο απομακρυσμένου ελέγχου για τη WordPress που σας επιτρέπει να ελέγχετε όλες τις εγκαταστάσεις και τα αντίγραφα ασφαλείας του UpdraftPlus από μια κεντρική τοποθεσία."
492
 
493
  #: src/templates/wp-admin/notices/thanks-for-using-main-dash.php:13,
494
  #: src/templates/wp-admin/settings/tab-addons.php:297
495
  msgid "UpdraftCentral"
496
+ msgstr "UpdraftCentral"
497
 
498
  #: src/templates/wp-admin/notices/horizontal-notice.php:6
499
  msgid "notice image"
500
+ msgstr "ειδοποίηση εικόνας"
501
 
502
  #: src/templates/wp-admin/notices/bottom-notice.php:29,
503
  #: src/templates/wp-admin/notices/horizontal-notice.php:40,
504
  #: src/templates/wp-admin/notices/report-plain.php:31,
505
  #: src/templates/wp-admin/notices/report.php:28
506
  msgid "Go there"
507
+ msgstr "Πηγαίνετε εκεί"
508
 
509
  #: src/templates/wp-admin/notices/bottom-notice.php:27,
510
  #: src/templates/wp-admin/notices/horizontal-notice.php:38,
511
  #: src/templates/wp-admin/notices/report-plain.php:29,
512
  #: src/templates/wp-admin/notices/report.php:26
513
  msgid "Sign up"
514
+ msgstr "Εγγραφή"
515
 
516
  #: src/templates/wp-admin/notices/bottom-notice.php:25,
517
  #: src/templates/wp-admin/notices/horizontal-notice.php:36,
518
  #: src/templates/wp-admin/notices/report-plain.php:27,
519
  #: src/templates/wp-admin/notices/report.php:24
520
  msgid "Get Premium"
521
+ msgstr "Αναβαθμίστε σε Premium"
522
 
523
  #: src/templates/wp-admin/notices/bottom-notice.php:23,
524
  #: src/templates/wp-admin/notices/horizontal-notice.php:34,
525
  #: src/templates/wp-admin/notices/report-plain.php:25,
526
  #: src/templates/wp-admin/notices/report.php:22
527
  msgid "Review UpdraftPlus"
528
+ msgstr "Ανανεώστε το UpdraftPlus"
529
 
530
  #: src/templates/wp-admin/notices/bottom-notice.php:21,
531
  #: src/templates/wp-admin/notices/horizontal-notice.php:32,
532
  #: src/templates/wp-admin/notices/report-plain.php:23,
533
  #: src/templates/wp-admin/notices/report.php:20
534
  msgid "Get UpdraftCentral"
535
+ msgstr "Πάρτε το UpdraftCentral"
536
 
537
  #: src/templates/wp-admin/advanced/site-info.php:84
538
  msgid "Apache modules"
539
+ msgstr "Apache modules"
540
 
541
  #: src/includes/updraftplus-notices.php:255
542
  msgid "Summer sale - 20% off UpdraftPlus Premium until July 31st"
543
+ msgstr "Καλοκαιρινές εκτπώσεις - 20% έκπτωση στο UpdraftPlus Premium μέχρι τις 31 Ιουλίου"
544
 
545
  #: src/includes/updraftplus-notices.php:242
546
  msgid "Spring sale - 20% off UpdraftPlus Premium until April 31st"
547
+ msgstr "Εαρινές εκπτώσεις - 20% έκπτωση στο UpdraftPlus Premium μέχρι τις 31 Απριλίου"
548
 
549
  #: src/includes/updraftplus-notices.php:229
550
  msgid "Happy New Year - 20% off UpdraftPlus Premium until January 1st"
551
+ msgstr "Ευτυχισμένο το Νέο Έτος - 20% έκπτωση στο UpdraftPlus Premium μέχρι την 1η Ιανουαρίου"
552
 
553
  #: src/includes/updraftplus-notices.php:216
554
  msgid "Christmas sale - 20% off UpdraftPlus Premium until December 25th"
555
+ msgstr "Χριστουγεννιάτικη έκπτωση - 20% έκπτωση στο UpdraftPlus Premium μέχρι τις 25 Δεκεμβρίου"
556
 
557
  #: src/includes/updraftplus-notices.php:204,
558
  #: src/includes/updraftplus-notices.php:217,
560
  #: src/includes/updraftplus-notices.php:243,
561
  #: src/includes/updraftplus-notices.php:256
562
  msgid "To benefit, use this discount code:"
563
+ msgstr "Για να επωφεληθείτε, χρησιμοποιήστε αυτόν τον κωδικό έκπτωσης:"
564
 
565
  #: src/includes/updraftplus-notices.php:203
566
  msgid "Black Friday - 20% off UpdraftPlus Premium until November 30th"
567
+ msgstr "Black Friday - 20% έκπτωση στο UpdraftPlus Premium μέχρι τις 30 Νοεμβρίου"
568
 
569
  #: src/includes/updraftplus-notices.php:172
570
  msgid "UpdraftPlus Premium can automatically backup your plugins/themes/database before you update, without you needing to remember."
571
+ msgstr "Το UpdraftPlus Premium μπορεί να δημιουργήσει αυτόματα αντίγραφα ασφαλείας των πρόσθετων/θεμάτων/βάσης δεδομένων σας πριν να τα ενημερώσετε, χωρίς να χρειάζεται να το θυμόσαστε κάθε φορά."
572
 
573
  #: src/includes/updraftplus-notices.php:151,
574
  #: src/includes/updraftplus-notices.php:161
575
  msgid "UpdraftPlus Blog - get up-to-date news and offers"
576
+ msgstr "UpdraftPlus Blog - λάβετε ενημερωμένα νέα και προσφορές"
577
 
578
  #: src/includes/updraftplus-notices.php:141
579
  msgid "UpdraftPlus Newsletter"
580
+ msgstr "UpdraftPlus Newsletter"
581
 
582
  #: src/includes/updraftplus-notices.php:112
583
  msgid "Control all your WordPress installations from one place using UpdraftCentral remote site management!"
584
+ msgstr "Ελέγξτε όλες τις εγκαταστάσεις σας της WordPress από ένα μέρος χρησιμοποιώντας την διαχείριση απομακρυσμένων τοποθεσιών UpdraftCentral!"
585
 
586
  #: src/includes/updraftplus-notices.php:111
587
  msgid "Do you use UpdraftPlus on multiple sites?"
588
+ msgstr "Χρησιμοποιείτε το UpdraftPlus σε πολλές ιστοσελίδες;"
589
 
590
  #: src/includes/updraftplus-notices.php:92,
591
  #: src/templates/wp-admin/settings/tab-addons.php:300
592
  msgid "UpdraftCentral is a highly efficient way to manage, update and backup multiple websites from one place."
593
+ msgstr "Το UpdraftCentral είναι ένας πολύ αποδοτικός τρόπος διαχείρισης, ενημέρωσης και δημιουργίας αντιγράφων ασφαλείας πολλών ιστοσελίδων από ένα μέρος."
594
 
595
  #: src/includes/updraftplus-notices.php:91
596
  msgid "Introducing UpdraftCentral"
597
+ msgstr "Παρουσιάζοντας το UpdraftCentral"
598
 
599
  #: src/includes/updraftplus-notices.php:82
600
  msgid "Copy your site to another domain directly. Includes find-and-replace tool for database references."
601
+ msgstr "Αντιγράψτε απευθείας τον ιστότοπό σας σε άλλο τομέα. Περιλαμβάνει εργαλείο εύρεσης και αντικατάστασης για αναφορές στις βάσεων δεδομένων."
602
 
603
  #: src/includes/updraftplus-notices.php:81
604
  msgid "easily migrate or clone your site in minutes"
605
+ msgstr "Μεταναστεύστε εύκολα ή κλωνοποιήστε τον ιστότοπό σας μέσα σε λίγα λεπτά"
606
 
607
  #: src/includes/updraftplus-notices.php:72
608
  msgid "Add SFTP to send your data securely, lock settings and encrypt your database backups for extra security."
609
+ msgstr "Προσθέστε SFTP για να στείλετε τα δεδομένα σας με ασφάλεια, να κλειδώσετε τις ρυθμίσεις και να κρυπτογραφήσετε τα αντίγραφα ασφαλείας της βάσης δεδομένων σας για επιπλέον ασφάλεια."
610
 
611
  #: src/includes/updraftplus-notices.php:71
612
  msgid "secure your backups"
613
+ msgstr "ασφαλίστε τα αντίγραφα ασφαλείας σας"
614
 
615
  #: src/includes/updraftplus-notices.php:62
616
  msgid "Secure multisite installation, advanced reporting and much more."
617
+ msgstr "Ασφαλής εγκατάσταση πολλαπλών σελίδων, προηγμένες αναφορές και πολλά άλλα."
618
 
619
  #: src/includes/updraftplus-notices.php:61
620
  msgid "advanced options"
621
+ msgstr "προηγμένες επιλογές"
622
 
623
  #: src/includes/updraftplus-notices.php:52
624
  msgid "Enhanced storage options for Dropbox, Google Drive and S3. Plus many more options."
625
+ msgstr "Ενισχυμένες επιλογές αποθήκευσης για τα Dropbox, Google Drive και S3. Πλέον πολλές άλλες επιλογές."
626
 
627
  #: src/includes/updraftplus-notices.php:51
628
  msgid "enhanced remote storage options"
629
+ msgstr "βελτιωμένες επιλογές απομακρυσμένης αποθήκευσης"
630
 
631
  #: src/includes/updraftplus-notices.php:42
632
  msgid "The ultimately secure and convenient place to store your backups."
633
+ msgstr "Το απόλυτα ασφαλές και βολικό μέρος για την αποθήκευση των αντιγράφων ασφαλείας σας."
634
 
635
  #: src/includes/updraftplus-notices.php:41,
636
  #: src/templates/wp-admin/settings/tab-addons.php:278
637
  msgid "UpdraftVault storage"
638
+ msgstr "χώρος αποθήκευσης του UpdraftVault"
639
 
640
  #: src/includes/updraftplus-notices.php:32
641
  msgid "Enjoy professional, fast, and friendly help whenever you need it."
642
+ msgstr "Απολαύστε επαγγελματική, γρήγορη και φιλική βοήθεια όποτε το χρειάζεστε."
643
 
644
  #: src/includes/updraftplus-notices.php:31
645
  msgid "support"
646
+ msgstr "υποστήριξη"
647
 
648
  #: src/includes/updraftplus-notices.php:30,
649
  #: src/includes/updraftplus-notices.php:40,
652
  #: src/includes/updraftplus-notices.php:70,
653
  #: src/includes/updraftplus-notices.php:80
654
  msgid "UpdraftPlus Premium:"
655
+ msgstr "UpdraftPlus Premium:"
656
 
657
  #: src/templates/wp-admin/settings/tab-status.php:70
658
  msgid "Then, try out our \"Migrator\" add-on which can perform a direct site-to-site migration. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
659
+ msgstr "Στη συνέχεια, δοκιμάστε το πρόσθετο \"Migrator\", το οποίο μπορεί να πραγματοποιήσει απευθείας μετακίνηση ιστότοπου. Αφού το χρησιμοποιήσετε μία φορά, θα έχετε κάνει απόσβεση την αξία της αγοράς σε σύγκριση με τον χρόνο που απαιτείται για την αντιγραφή ενός ιστότοπου με το χέρι."
660
 
661
  #: src/addons/s3-enhanced.php:335
662
  msgid "Canada Central"
663
+ msgstr "Canada Central"
664
 
665
  #: src/templates/wp-admin/advanced/tools-menu.php:22
666
  msgid "Site size"
667
+ msgstr "Μέγεθος ιστοσελίδας"
668
 
669
  #: src/templates/wp-admin/advanced/tools-menu.php:10,
670
  #: src/templates/wp-admin/settings/tab-addons.php:247,
671
  #: src/templates/wp-admin/settings/tab-addons.php:248
672
  msgid "Lock settings"
673
+ msgstr "Ρυθμίσεις κλειδώματος"
674
 
675
  #: src/templates/wp-admin/advanced/site-info.php:5,
676
  #: src/templates/wp-admin/advanced/tools-menu.php:6
677
  msgid "Site information"
678
+ msgstr "Πληροφορίες ιστοσελίδας"
679
 
680
  #: src/templates/wp-admin/advanced/search-replace.php:9
681
  msgid "For the ability to migrate websites, upgrade to UpdraftPlus Premium."
682
+ msgstr "Για τη δυνατότητα μετεγκατάστασης ιστοσελίδων, αναβαθμίστε σε UpdraftPlus Premium."
683
 
684
  #: src/templates/wp-admin/advanced/export-settings.php:15
685
  msgid "Import settings"
686
+ msgstr "Εισαγωγή ρυθμίσεων"
687
 
688
  #: src/templates/wp-admin/advanced/export-settings.php:12
689
  msgid "You can also import previously-exported settings. This tool will replace all your saved settings."
690
+ msgstr "Μπορείτε επίσης να εισάγετε ρυθμίσεις που έχουν εξαχθεί προηγουμένως. Αυτό το εργαλείο θα αντικαταστήσει όλες τις αποθηκευμένες ρυθμίσεις σας."
691
 
692
  #: src/templates/wp-admin/advanced/export-settings.php:9
693
  msgid "Export settings"
694
+ msgstr "Εξαγωγή ρυθμίσεων"
695
 
696
  #: src/templates/wp-admin/advanced/export-settings.php:7
697
  msgid "including any passwords"
698
+ msgstr "συμπεριλαμβανομένων των κωδικών πρόσβασης"
699
 
700
  #: src/templates/wp-admin/advanced/export-settings.php:7
701
  msgid "Here, you can export your UpdraftPlus settings (%s), either for using on another site, or to keep as a backup. This tool will export what is currently in the settings tab."
702
+ msgstr "Εδώ, μπορείτε να εξαγάγετε τις ρυθμίσεις για το UpdraftPlus (%s), είτε για χρήση σε άλλο ιστότοπο είτε για να διατηρήσετε ως αντίγραφο ασφαλείας. Αυτό το εργαλείο θα εξάγει ό,τι βρίσκεται στην καρτέλα ρυθμίσεων."
703
 
704
  #: src/templates/wp-admin/advanced/export-settings.php:5,
705
  #: src/templates/wp-admin/advanced/tools-menu.php:26
706
  msgid "Export / import settings"
707
+ msgstr "Ρυθμίσεις εξαγωγής / εισαγωγής"
708
 
709
  #: src/restorer.php:1869
710
  msgid "Processing table (%s)"
711
+ msgstr "Επεξεργασία πίνακα (%s)"
712
 
713
  #: src/restorer.php:1658
714
  msgid "Backup of: %s"
715
+ msgstr "Αντίγραφο ασφαλείας του: %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 "Ο πελάτης έχει διαγραφεί από την κονσόλα API του Google Drive. Δημιουργήστε ένα νέο έργο στο Google Drive και επανασυνδεθείτε με το UpdraftPlus."
720
 
721
  #: src/methods/dropbox.php:598
722
  msgid "%s de-authentication"
723
+ msgstr "%s αποεπιβεβαίωση"
724
 
725
  #: src/methods/dropbox.php:563
726
  msgid "You must add the following as the authorised redirect URI in your Dropbox console (under \"API Settings\") when asked"
727
+ msgstr "Πρέπει να προσθέσετε τα παρακάτω ως εξουσιοδοτημένο URI ανακατεύθυνσης στην κονσόλα Dropbox (κάτω από τις \"Ρυθμίσεις API\") όταν σας ζητηθεί"
728
 
729
  #: src/methods/dropbox.php:532
730
  msgid "Follow this link to deauthenticate with %s."
731
+ msgstr "Ακολουθήστε αυτόν τον σύνδεσμο για αποεπιβεβαίωση του %s."
732
 
733
  #: src/central/bootstrap.php:549
734
  msgid "UpdraftCentral enables control of your WordPress sites (including management of backups and updates) from a central dashboard."
735
+ msgstr "Το UpdraftCentral επιτρέπει τον έλεγχο των τοποθεσιών σας στη WordPress (συμπεριλαμβανομένης της διαχείρισης των αντιγράφων ασφαλείας και των ενημερώσεων) από έναν κεντρικό πίνακα ελέγχου."
736
 
737
  #: src/backup.php:1527
738
  msgid "If not, you will need to either remove data from this table, or contact your hosting company to request more resources."
739
+ msgstr "Αν όχι, θα πρέπει να αφαιρέσετε δεδομένα από αυτόν τον πίνακα ή να επικοινωνήσετε με την εταιρεία φιλοξενίας σας για να ζητήσετε περισσότερους πόρους."
740
 
741
  #: src/templates/wp-admin/settings/tab-status.php:81
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
 
753
  #: src/admin.php:973, src/admin.php:977, src/admin.php:985, src/admin.php:989
754
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
755
+ msgstr "Ακολουθήστε αυτόν τον σύνδεσμο για να επιτρέψετε την πρόσβαση στον λογαριασμό σας %s (δεν θα μπορείτε να δημιουργήσετε αντίγραφα ασφαλείας για το %s χωρίς αυτό)."
756
 
757
  #: src/admin.php:749
758
  msgid "remote files deleted"
759
+ msgstr "διαγραφή απομακρυσμένων αρχείων"
760
 
761
  #: src/admin.php:747
762
  msgid "Complete"
763
+ msgstr "Ολοκλήρωση"
764
 
765
  #: src/admin.php:746
766
  msgid "Do you want to carry out the import?"
767
+ msgstr "Θέλετε να πραγματοποιήσετε την εισαγωγή;"
768
 
769
  #: src/admin.php:745
770
  msgid "Which was exported on:"
771
+ msgstr "Που εξήχθη:"
772
 
773
  #: src/admin.php:744
774
  msgid "This will import data from:"
775
+ msgstr "Αυτό θα εισαγάγει δεδομένα από:"
776
 
777
  #: src/admin.php:743
778
  msgid "Importing..."
779
+ msgstr "Εισαγωγή ..."
780
 
781
  #: src/admin.php:739
782
  msgid "You have not yet selected a file to import."
783
+ msgstr "Δεν έχετε επιλέξει ακόμα ένα αρχείο για εισαγωγή."
784
 
785
  #: src/admin.php:723
786
  msgid "Your export file will be of your displayed settings, not your saved ones."
787
+ msgstr "Το αρχείο εξαγωγής σας θα είναι από τις εμφανιζόμενες ρυθμίσεις σας, όχι από τις αποθηκευμένες σας."
788
 
789
  #: src/admin.php:82
790
  msgid "template not found"
791
+ msgstr "το πρότυπο δεν βρέθηκε"
792
 
793
  #: src/addons/s3-enhanced.php:331
794
  msgid "US East (Ohio)"
795
+ msgstr "ΗΠΑ Ανατολή (Οχάιο)"
796
 
797
  #: src/addons/onedrive.php:946
798
  msgid "This site uses a URL which is either non-HTTPS, or is localhost or 127.0.0.1 URL. As such, you must use the main %s %s App to authenticate with your account."
799
+ msgstr "Αυτός ο ιστότοπος χρησιμοποιεί μια διεύθυνση URL που είναι είτε μη HTTPS, είτε είναι τοπική διεύθυνση URL ή διεύθυνση URL 127.0.0.1. Ως εκ τούτου, πρέπει να χρησιμοποιήσετε την κύρια εφαρμογή %s %s για έλεγχο ταυτότητας με το λογαριασμό σας."
800
 
801
  #: src/addons/onedrive.php:634
802
  msgid "Account is not authorized (%s)."
1649
 
1650
  #: src/admin.php:1589
1651
  msgid "Backup sets removed:"
1652
+ msgstr "Αφαίρεση συνόλων αντιγράφων ασφαλείας:"
1653
 
1654
  #: src/admin.php:733
1655
  msgid "Processing..."
2107
 
2108
  #: src/admin.php:706
2109
  msgid "Resetting..."
2110
+ msgstr "Επαναφορά ..."
2111
 
2112
  #: src/addons/migrator.php:2190, src/admin.php:705
2113
  msgid "Add site"
2176
 
2177
  #: src/addons/azure.php:533
2178
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
2179
+ msgstr "Το Microsoft Azure δεν είναι συμβατό με ιστοσελίδες που φιλοξενούνται σε localhost ή URL 127.0.0.1 - οι ρυθμίσεις τους απαγορεύουν την πρόσβαση σε αυτά (η τρέχουσα διεύθυνση URL είναι: %s)."
2180
 
2181
  #: src/addons/onedrive.php:922, src/addons/onedrive.php:924
2182
  msgid "%s authorisation failed:"
2438
  #: src/templates/wp-admin/settings/tab-addons.php:135,
2439
  #: src/templates/wp-admin/settings/tab-addons.php:136
2440
  msgid "Backup non-WordPress files and databases"
2441
+ msgstr "Δημιουργία αντιγράφων ασφαλείας αρχείων μη WordPress και βάσεων δεδομένων"
2442
 
2443
  #: src/templates/wp-admin/settings/tab-addons.php:19
2444
  msgid "Ask a pre-sales question"
2775
 
2776
  #: src/includes/updraftplus-notices.php:132
2777
  msgid "UpdraftPlus is on social media - check us out!"
2778
+ msgstr "Το UpdraftPlus είναι στα κοινωνικά δίκτυα - δείτε μας εδώ!"
2779
 
2780
  #: src/admin.php:3658
2781
  msgid "Why am I seeing this?"
3408
 
3409
  #: src/addons/morefiles.php:491
3410
  msgid "No backup of location: there was nothing found to back up"
3411
+ msgstr "Δεν υπάρχει αντίγραφο ασφαλείας της τοποθεσίας: δεν βρέθηκε τίποτα για να δημιουργηθεί αντίγραφο ασφαλείας"
3412
 
3413
  #: src/addons/moredatabase.php:241, src/addons/morefiles.php:287,
3414
  #: src/addons/morefiles.php:308
4056
 
4057
  #: src/restorer.php:149
4058
  msgid "You should check the file ownerships and permissions in your WordPress installation"
4059
+ msgstr "Θα πρέπει να ελέγξετε την ιδιοκτησία αρχείων και τα δικαιώματα στην εγκατάσταση της WordPress"
4060
 
4061
  #: src/templates/wp-admin/settings/form-contents.php:176
4062
  msgid "See also the \"More Files\" add-on from our shop."
5195
 
5196
  #: src/addons/morefiles.php:272
5197
  msgid "Be careful what you select - if you select / then it really will try to create a zip containing your entire webserver."
5198
+ msgstr "Προσέξτε τι επιλέξατε - εάν επιλέξετε / τότε πραγματικά θα γίνει προσπάθεια να δημιουργηθεί ένα αρχείο zip που περιέχει ολόκληρο το διακομιστή σας."
5199
 
5200
  #: src/addons/morefiles.php:270
5201
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
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 "Η εγκατάσταση της PHP/Curl στον διακομιστή σας δεν υποστηρίζει πρόσβαση https. Η επικοινωνία με το %s δε θα είναι κρυπτογραφημένη. Ζητήστε από τον πάροχό σας να εγκαταστήσει το Curl/SSL για να έχετε τη δυνατότητα κρυπτογράφησης (με χρήση ενός πρόσθετου). "
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
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."
5968
 
5969
  #: src/admin.php:2645
5970
  msgid "(None)"
5971
+ msgstr "(Τίποτα)"
5972
 
5973
  #: src/admin.php:2801
5974
  msgid "show log"
6405
 
6406
  #: src/includes/updraftplus-notices.php:102
6407
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org."
6408
+ msgstr "Παρακαλώ βοηθήστε το UpdraftPlus δίνοντας μια θετική κριτική στο wordpress.org."
6409
 
6410
  #: src/includes/updraftplus-notices.php:101
6411
  msgid "Like UpdraftPlus and can spare one minute?"
languages/updraftplus.pot CHANGED
@@ -25,7 +25,7 @@ msgstr ""
25
  msgid "UpdraftPlus Automatic Backups"
26
  msgstr ""
27
 
28
- #: src/addons/autobackup.php:143, src/addons/autobackup.php:1007, src/admin.php:695
29
  msgid "Automatic backup before update"
30
  msgstr ""
31
 
@@ -49,7 +49,7 @@ msgstr ""
49
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
50
  msgstr ""
51
 
52
- #: src/addons/autobackup.php:325, src/addons/autobackup.php:420, src/admin.php:2538, src/admin.php:2543
53
  msgid "Last log message"
54
  msgstr ""
55
 
@@ -57,7 +57,7 @@ msgstr ""
57
  msgid "Starting automatic backup..."
58
  msgstr ""
59
 
60
- #: src/addons/autobackup.php:330, src/addons/autobackup.php:422, src/admin.php:648, src/methods/remotesend.php:66, src/methods/remotesend.php:74, src/methods/remotesend.php:225, src/methods/remotesend.php:242
61
  msgid "Unexpected response:"
62
  msgstr ""
63
 
@@ -97,7 +97,7 @@ msgstr ""
97
  msgid "now proceeding with the updates..."
98
  msgstr ""
99
 
100
- #: src/addons/autobackup.php:1053, src/admin.php:780, src/includes/updraftplus-notices.php:171
101
  msgid "Be safe with an automatic backup"
102
  msgstr ""
103
 
@@ -109,98 +109,146 @@ msgstr ""
109
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
110
  msgstr ""
111
 
112
- #: src/addons/autobackup.php:1085, src/admin.php:691
113
  msgid "Proceed with update"
114
  msgstr ""
115
 
116
- #: src/addons/azure.php:217, src/methods/addon-base-v2.php:219, src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422, src/methods/googledrive.php:1006, src/methods/openstack-base.php:420, src/methods/stream-base.php:265, src/methods/stream-base.php:272, src/methods/stream-base.php:285
117
  msgid "%s Error"
118
  msgstr ""
119
 
120
- #: src/addons/azure.php:217, src/class-updraftplus.php:4046, src/methods/googledrive.php:1006, src/methods/s3.php:322
121
  msgid "File not found"
122
  msgstr ""
123
 
124
- #: src/addons/azure.php:352
125
  msgid "Could not access container"
126
  msgstr ""
127
 
128
- #: src/addons/azure.php:359, src/methods/stream-base.php:124, src/methods/stream-base.php:129
129
  msgid "Upload failed"
130
  msgstr ""
131
 
132
- #: src/addons/azure.php:374, src/addons/googlecloud.php:760, src/methods/s3.php:1091
133
  msgid "Delete failed:"
134
  msgstr ""
135
 
136
- #: src/addons/azure.php:489
137
  msgid "Could not create the container"
138
  msgstr ""
139
 
140
- #: src/addons/azure.php:533
141
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
142
  msgstr ""
143
 
144
- #: src/addons/azure.php:535
145
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
146
  msgstr ""
147
 
148
- #: src/addons/azure.php:541
149
  msgid "Create Azure credentials in your Azure developer console."
150
  msgstr ""
151
 
152
- #: src/addons/azure.php:541, src/addons/migrator.php:1762, src/addons/onedrive.php:955
153
  msgid "For longer help, including screenshots, follow this link."
154
  msgstr ""
155
 
156
- #: src/addons/azure.php:545, src/addons/azure.php:549
157
  msgid "Azure"
158
  msgstr ""
159
 
160
- #: src/addons/azure.php:545
161
  msgid "Account Name"
162
  msgstr ""
163
 
164
- #: src/addons/azure.php:546
165
  msgid "This is not your Azure login - see the instructions if needing more guidance."
166
  msgstr ""
167
 
168
- #: src/addons/azure.php:549, src/addons/migrator.php:2208, src/addons/sftp.php:439, src/admin.php:711, src/admin.php:4438
169
  msgid "Key"
170
  msgstr ""
171
 
172
- #: src/addons/azure.php:556, src/methods/openstack2.php:164
173
  msgid "Container"
174
  msgstr ""
175
 
176
- #: src/addons/azure.php:557
177
  msgid "Enter the path of the %s you wish to use here."
178
  msgstr ""
179
 
180
- #: src/addons/azure.php:557
181
  msgid "See Microsoft's guidelines on container naming by following this link."
182
  msgstr ""
183
 
184
- #: src/addons/azure.php:562
185
  msgid "Prefix"
186
  msgstr ""
187
 
188
- #: src/addons/azure.php:562
189
  msgid "optional"
190
  msgstr ""
191
 
192
- #: src/addons/azure.php:563
193
  msgid "You can enter the path of any %s virtual folder you wish to use here."
194
  msgstr ""
195
 
196
- #: src/addons/azure.php:563, src/addons/google-enhanced.php:85, src/addons/onedrive.php:983
197
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
198
  msgstr ""
199
 
200
- #: src/addons/azure.php:563
201
  msgid "container"
202
  msgstr ""
203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  #: src/addons/cloudfiles-enhanced.php:30
205
  msgid "Rackspace Cloud Files, enhanced"
206
  msgstr ""
@@ -269,11 +317,7 @@ msgstr ""
269
  msgid "Cloud Files authentication failed"
270
  msgstr ""
271
 
272
- #: src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:780, src/addons/migrator.php:1026, src/addons/migrator.php:1107, src/addons/migrator.php:1154, src/addons/migrator.php:1388, src/addons/migrator.php:1714, src/addons/migrator.php:1741, src/addons/migrator.php:1747, src/addons/migrator.php:1809, src/addons/migrator.php:1849, src/addons/migrator.php:1888, src/addons/migrator.php:1898, src/addons/migrator.php:1903, src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132, src/addons/s3-enhanced.php:134, src/addons/sftp.php:814, src/addons/webdav.php:119, src/admin.php:82, src/admin.php:662, src/admin.php:3846, src/admin.php:3876, src/methods/remotesend.php:71, src/methods/remotesend.php:239, src/methods/updraftvault.php:465, src/restorer.php:1408
273
- msgid "Error:"
274
- msgstr ""
275
-
276
- #: src/addons/cloudfiles-enhanced.php:139, src/addons/s3-enhanced.php:204, src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:449, src/methods/openstack-base.php:451, src/methods/openstack-base.php:472, src/methods/openstack2.php:33
277
  msgid "Authorisation failed (check your credentials)"
278
  msgstr ""
279
 
@@ -449,7 +493,7 @@ msgstr ""
449
  msgid "Failure: No bucket details were given."
450
  msgstr ""
451
 
452
- #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208, src/class-updraftplus.php:1054, src/methods/cloudfiles.php:142, src/methods/googledrive.php:924, src/methods/googledrive.php:929
453
  msgid "%s Error: Failed to open local file"
454
  msgstr ""
455
 
@@ -481,7 +525,7 @@ msgstr ""
481
  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."
482
  msgstr ""
483
 
484
- #: src/addons/googlecloud.php:432, src/addons/migrator.php:470, src/admin.php:2009, src/admin.php:2056, src/admin.php:2064, src/class-updraftplus.php:924, src/class-updraftplus.php:930, src/class-updraftplus.php:4250, src/class-updraftplus.php:4252, src/class-updraftplus.php:4399, src/class-updraftplus.php:4406, src/class-updraftplus.php:4444, src/methods/googledrive.php:369, src/methods/s3.php:322
485
  msgid "Error: %s"
486
  msgstr ""
487
 
@@ -501,7 +545,7 @@ msgstr ""
501
  msgid "However, subsequent access attempts failed:"
502
  msgstr ""
503
 
504
- #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756, src/addons/onedrive.php:794, src/addons/sftp.php:550, src/methods/addon-base-v2.php:298, src/methods/cloudfiles.php:582, src/methods/googledrive.php:428, src/methods/openstack-base.php:495, src/methods/s3.php:1074, src/methods/stream-base.php:312
505
  msgid "Success"
506
  msgstr ""
507
 
@@ -517,7 +561,7 @@ msgstr ""
517
  msgid "You must save and authenticate before you can test your settings."
518
  msgstr ""
519
 
520
- #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727, src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2880, src/admin.php:2915, src/admin.php:2924, src/methods/addon-base-v2.php:289, src/methods/stream-base.php:301
521
  msgid "Failed"
522
  msgstr ""
523
 
@@ -593,7 +637,7 @@ msgstr ""
593
  msgid "Otherwise, you can leave it blank."
594
  msgstr ""
595
 
596
- #: src/addons/googlecloud.php:941, src/addons/migrator.php:379, src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:947, src/admin.php:2308, src/backup.php:3045, src/class-updraftplus.php:4465, src/updraftplus.php:156
597
  msgid "Go here for more information."
598
  msgstr ""
599
 
@@ -653,7 +697,7 @@ msgstr ""
653
  msgid "Supported backup plugins: %s"
654
  msgstr ""
655
 
656
- #: src/addons/importer.php:276, src/admin.php:3486, src/includes/class-backup-history.php:279
657
  msgid "Backup created by: %s."
658
  msgstr ""
659
 
@@ -765,7 +809,7 @@ msgstr ""
765
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
766
  msgstr ""
767
 
768
- #: src/addons/migrator.php:232, src/admin.php:693, src/admin.php:3586, src/templates/wp-admin/settings/tab-status.php:30
769
  msgid "Restore"
770
  msgstr ""
771
 
@@ -785,7 +829,7 @@ msgstr ""
785
  msgid "Replace with"
786
  msgstr ""
787
 
788
- #: src/addons/migrator.php:294, src/addons/migrator.php:1880, src/addons/moredatabase.php:82, src/addons/moredatabase.php:84, src/addons/moredatabase.php:86, src/addons/sftp.php:485, src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143, src/admin.php:712, src/methods/addon-base-v2.php:282, src/methods/cloudfiles-new.php:173, src/methods/cloudfiles-new.php:178, src/methods/cloudfiles.php:526, src/methods/cloudfiles.php:531, src/methods/ftp.php:380, src/methods/ftp.php:384, src/methods/openstack2.php:173, src/methods/openstack2.php:178, src/methods/openstack2.php:183, src/methods/openstack2.php:188, src/methods/s3.php:1010, src/methods/s3.php:1014
789
  msgid "Failure: No %s was given."
790
  msgstr ""
791
 
@@ -793,7 +837,7 @@ msgstr ""
793
  msgid "search term"
794
  msgstr ""
795
 
796
- #: src/addons/migrator.php:297, src/addons/migrator.php:312, src/admin.php:2227, src/admin.php:2236, src/admin.php:2245, src/admin.php:2287, src/admin.php:2851
797
  msgid "Return to UpdraftPlus Configuration"
798
  msgstr ""
799
 
@@ -821,7 +865,7 @@ msgstr ""
821
  msgid "Go"
822
  msgstr ""
823
 
824
- #: src/addons/migrator.php:341, src/admin.php:2303, src/class-updraftplus.php:4410, src/restorer.php:2046
825
  msgid "Warning:"
826
  msgstr ""
827
 
@@ -849,7 +893,7 @@ msgstr ""
849
  msgid "other content from wp-content"
850
  msgstr ""
851
 
852
- #: src/addons/migrator.php:385, src/addons/multisite.php:649
853
  msgid "Must-use plugins"
854
  msgstr ""
855
 
@@ -857,7 +901,7 @@ msgstr ""
857
  msgid "Importing a single site into a multisite install"
858
  msgstr ""
859
 
860
- #: src/addons/migrator.php:391, src/templates/wp-admin/settings/downloading-and-restoring.php:61, src/templates/wp-admin/settings/form-contents.php:212
861
  msgid "This feature requires %s version %s or later"
862
  msgstr ""
863
 
@@ -973,7 +1017,7 @@ msgstr ""
973
  msgid "SQL update commands run:"
974
  msgstr ""
975
 
976
- #: src/addons/migrator.php:1141, src/admin.php:659
977
  msgid "Errors:"
978
  msgstr ""
979
 
@@ -1001,7 +1045,7 @@ msgstr ""
1001
  msgid "site not found"
1002
  msgstr ""
1003
 
1004
- #: src/addons/migrator.php:1747, src/admin.php:709
1005
  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."
1006
  msgstr ""
1007
 
@@ -1013,15 +1057,15 @@ msgstr ""
1013
  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."
1014
  msgstr ""
1015
 
1016
- #: src/addons/migrator.php:1775, src/admin.php:716
1017
  msgid "Testing connection..."
1018
  msgstr ""
1019
 
1020
- #: src/addons/migrator.php:1775, src/admin.php:1237, src/admin.php:2883, src/admin.php:2917, src/admin.php:2921, src/admin.php:3844, src/restorer.php:2286, src/restorer.php:2391
1021
  msgid "OK"
1022
  msgstr ""
1023
 
1024
- #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247, src/addons/reporting.php:248, src/admin.php:299, src/admin.php:3375, src/admin.php:3455, src/admin.php:3930, src/includes/class-wpadmin-commands.php:147, src/includes/class-wpadmin-commands.php:480, src/templates/wp-admin/settings/delete-and-restore-modals.php:81, src/templates/wp-admin/settings/delete-and-restore-modals.php:83
1025
  msgid "Database"
1026
  msgstr ""
1027
 
@@ -1069,11 +1113,11 @@ msgstr ""
1069
  msgid "No receiving sites have yet been added."
1070
  msgstr ""
1071
 
1072
- #: src/addons/migrator.php:1940, src/admin.php:708
1073
  msgid "Send to site:"
1074
  msgstr ""
1075
 
1076
- #: src/addons/migrator.php:1946, src/admin.php:717
1077
  msgid "Send"
1078
  msgstr ""
1079
 
@@ -1101,7 +1145,7 @@ msgstr ""
1101
  msgid "Paste key here"
1102
  msgstr ""
1103
 
1104
- #: src/addons/migrator.php:2190, src/admin.php:705
1105
  msgid "Add site"
1106
  msgstr ""
1107
 
@@ -1165,7 +1209,7 @@ msgstr ""
1165
  msgid "Existing keys"
1166
  msgstr ""
1167
 
1168
- #: src/addons/migrator.php:2253, src/admin.php:688, src/admin.php:2877, src/admin.php:2910, src/admin.php:3595, src/templates/wp-admin/settings/delete-and-restore-modals.php:5
1169
  msgid "Delete"
1170
  msgstr ""
1171
 
@@ -1201,7 +1245,7 @@ msgstr ""
1201
  msgid "%s total table(s) found; %s with the indicated prefix."
1202
  msgstr ""
1203
 
1204
- #: src/addons/moredatabase.php:137, src/admin.php:1419
1205
  msgid "Messages:"
1206
  msgstr ""
1207
 
@@ -1289,7 +1333,7 @@ msgstr ""
1289
  msgid "tables"
1290
  msgstr ""
1291
 
1292
- #: src/addons/morefiles.php:55, src/admin.php:720
1293
  msgctxt "(verb)"
1294
  msgid "Download"
1295
  msgstr ""
@@ -1370,7 +1414,7 @@ msgstr ""
1370
  msgid "Add directory..."
1371
  msgstr ""
1372
 
1373
- #: src/addons/morefiles.php:297, src/admin.php:687
1374
  msgid "Cancel"
1375
  msgstr ""
1376
 
@@ -1386,11 +1430,11 @@ msgstr ""
1386
  msgid "Please choose a file or directory"
1387
  msgstr ""
1388
 
1389
- #: src/addons/morefiles.php:443, src/admin.php:3187
1390
  msgid "Exclude these:"
1391
  msgstr ""
1392
 
1393
- #: src/addons/morefiles.php:445, src/admin.php:3189
1394
  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."
1395
  msgstr ""
1396
 
@@ -1410,35 +1454,35 @@ msgstr ""
1410
  msgid "Remote Storage Options"
1411
  msgstr ""
1412
 
1413
- #: src/addons/multisite.php:65, src/addons/multisite.php:686, src/options.php:50
1414
  msgid "UpdraftPlus Backups"
1415
  msgstr ""
1416
 
1417
- #: src/addons/multisite.php:173
1418
  msgid "Multisite Install"
1419
  msgstr ""
1420
 
1421
- #: src/addons/multisite.php:464, src/class-updraftplus.php:1781
1422
  msgid "Uploads"
1423
  msgstr ""
1424
 
1425
- #: src/addons/multisite.php:558
1426
  msgid "Which site to restore"
1427
  msgstr ""
1428
 
1429
- #: src/addons/multisite.php:562
1430
  msgid "All sites"
1431
  msgstr ""
1432
 
1433
- #: src/addons/multisite.php:567
1434
  msgid "may include some site-wide data"
1435
  msgstr ""
1436
 
1437
- #: src/addons/multisite.php:576
1438
  msgid "Read more..."
1439
  msgstr ""
1440
 
1441
- #: src/addons/multisite.php:656
1442
  msgid "Blog uploads"
1443
  msgstr ""
1444
 
@@ -1486,7 +1530,7 @@ msgstr ""
1486
  msgid "Account is not authorized (%s)."
1487
  msgstr ""
1488
 
1489
- #: src/addons/onedrive.php:718, src/class-updraftplus.php:467, src/methods/dropbox.php:176, src/methods/dropbox.php:598, src/methods/dropbox.php:625, src/methods/dropbox.php:638, src/methods/dropbox.php:784
1490
  msgid "%s error: %s"
1491
  msgstr ""
1492
 
@@ -1550,7 +1594,7 @@ msgstr ""
1550
  msgid "Your label for this backup (optional)"
1551
  msgstr ""
1552
 
1553
- #: src/addons/reporting.php:70, src/addons/reporting.php:169, src/backup.php:962, src/class-updraftplus.php:4327
1554
  msgid "Backup of:"
1555
  msgstr ""
1556
 
@@ -1598,11 +1642,11 @@ msgstr ""
1598
  msgid "Time taken:"
1599
  msgstr ""
1600
 
1601
- #: src/addons/reporting.php:211, src/admin.php:3388
1602
  msgid "Uploaded to:"
1603
  msgstr ""
1604
 
1605
- #: src/addons/reporting.php:233, src/admin.php:3400
1606
  msgid "None"
1607
  msgstr ""
1608
 
@@ -1634,19 +1678,19 @@ msgstr ""
1634
  msgid "Log all messages to syslog (only server admins are likely to want this)"
1635
  msgstr ""
1636
 
1637
- #: src/addons/reporting.php:451, src/admin.php:643
1638
  msgid "To send to more than one address, separate each address with a comma."
1639
  msgstr ""
1640
 
1641
- #: src/addons/reporting.php:453, src/admin.php:638
1642
  msgid "Send a report only when there are warnings/errors"
1643
  msgstr ""
1644
 
1645
- #: src/addons/reporting.php:455, src/addons/reporting.php:455, src/admin.php:640
1646
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
1647
  msgstr ""
1648
 
1649
- #: src/addons/reporting.php:455, src/admin.php:639
1650
  msgid "When the Email storage method is enabled, also send the entire backup"
1651
  msgstr ""
1652
 
@@ -1886,7 +1930,7 @@ msgstr ""
1886
  msgid "Check your file permissions: Could not successfully create and enter directory:"
1887
  msgstr ""
1888
 
1889
- #: src/addons/sftp.php:136, src/addons/sftp.php:148, src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201, src/methods/openstack-base.php:81, src/methods/openstack-base.php:280, src/methods/s3.php:357, src/methods/s3.php:369, src/methods/s3.php:370
1890
  msgid "%s Error: Failed to upload"
1891
  msgstr ""
1892
 
@@ -1999,1132 +2043,1128 @@ msgstr ""
1999
  msgid "Path"
2000
  msgstr ""
2001
 
2002
- #: src/admin.php:82
2003
  msgid "template not found"
2004
  msgstr ""
2005
 
2006
- #: src/admin.php:265, src/admin.php:286, src/admin.php:293
2007
  msgid "Nothing currently scheduled"
2008
  msgstr ""
2009
 
2010
- #: src/admin.php:275
2011
  msgid "At the same time as the files backup"
2012
  msgstr ""
2013
 
2014
- #: src/admin.php:295, src/admin.php:4411
2015
  msgid "Files"
2016
  msgstr ""
2017
 
2018
- #: src/admin.php:295, src/backup.php:871
2019
  msgid "Files and database"
2020
  msgstr ""
2021
 
2022
- #: src/admin.php:514, src/templates/wp-admin/settings/tab-bar.php:5
2023
  msgid "Current Status"
2024
  msgstr ""
2025
 
2026
- #: src/admin.php:514, src/admin.php:686, src/templates/wp-admin/settings/tab-status.php:27
2027
  msgid "Backup Now"
2028
  msgstr ""
2029
 
2030
- #: src/admin.php:522, src/admin.php:664, src/admin.php:1652, src/includes/deprecated-actions.php:29, src/templates/wp-admin/settings/downloading-and-restoring.php:21, src/templates/wp-admin/settings/tab-bar.php:6
2031
  msgid "Existing Backups"
2032
  msgstr ""
2033
 
2034
- #: src/admin.php:530, src/admin.php:884, src/templates/wp-admin/settings/tab-bar.php:7
2035
  msgid "Settings"
2036
  msgstr ""
2037
 
2038
- #: src/admin.php:538, src/templates/wp-admin/settings/tab-bar.php:8
2039
  msgid "Advanced Tools"
2040
  msgstr ""
2041
 
2042
- #: src/admin.php:546
2043
  msgid "Extensions"
2044
  msgstr ""
2045
 
2046
- #: src/admin.php:641
2047
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
2048
  msgstr ""
2049
 
2050
- #: src/admin.php:642
2051
  msgid "Rescanning remote and local storage for backup sets..."
2052
  msgstr ""
2053
 
2054
- #: src/admin.php:644
2055
  msgid "If you exclude both the database and the files, then you have excluded everything!"
2056
  msgstr ""
2057
 
2058
- #: src/admin.php:645
2059
  msgid "You have chosen to backup files, but no file entities have been selected"
2060
  msgstr ""
2061
 
2062
- #: src/admin.php:646
2063
  msgid "You have chosen to backup a database, but no tables have been selected"
2064
  msgstr ""
2065
 
2066
- #: src/admin.php:647
2067
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
2068
  msgstr ""
2069
 
2070
- #: src/admin.php:649
2071
  msgid "The web server returned an error code (try again, or check your web server logs)"
2072
  msgstr ""
2073
 
2074
- #: src/admin.php:650
2075
  msgid "The new user's RackSpace console password is (this will not be shown again):"
2076
  msgstr ""
2077
 
2078
- #: src/admin.php:651
2079
  msgid "Trying..."
2080
  msgstr ""
2081
 
2082
- #: src/admin.php:652
2083
  msgid "Fetching..."
2084
  msgstr ""
2085
 
2086
- #: src/admin.php:653, src/templates/wp-admin/settings/downloading-and-restoring.php:32
2087
  msgid "calculating..."
2088
  msgstr ""
2089
 
2090
- #: src/admin.php:654
2091
  msgid "Begun looking for this entity"
2092
  msgstr ""
2093
 
2094
- #: src/admin.php:655
2095
  msgid "Some files are still downloading or being processed - please wait."
2096
  msgstr ""
2097
 
2098
- #: src/admin.php:656
2099
  msgid "Processing files - please wait..."
2100
  msgstr ""
2101
 
2102
- #: src/admin.php:657
2103
  msgid "Error: the server sent an empty response."
2104
  msgstr ""
2105
 
2106
- #: src/admin.php:658
2107
  msgid "Warnings:"
2108
  msgstr ""
2109
 
2110
- #: src/admin.php:660
2111
  msgid "Error: the server sent us a response which we did not understand."
2112
  msgstr ""
2113
 
2114
- #: src/admin.php:661, src/admin.php:3970
2115
  msgid "Error data:"
2116
  msgstr ""
2117
 
2118
- #: src/admin.php:663, src/admin.php:1245, src/admin.php:1683, src/class-updraftplus.php:1195, src/class-updraftplus.php:1239, src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100, src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225, src/methods/stream-base.php:200, src/restorer.php:2282, src/restorer.php:2307, src/restorer.php:2388, src/updraftplus.php:156
2119
  msgid "Error"
2120
  msgstr ""
2121
 
2122
- #: src/admin.php:665, src/admin.php:1923
2123
  msgid "File ready."
2124
  msgstr ""
2125
 
2126
- #: src/admin.php:666, src/admin.php:2227, src/admin.php:2236, src/admin.php:2245, src/admin.php:2287, src/admin.php:2851, src/templates/wp-admin/settings/existing-backups-table.php:16
2127
  msgid "Actions"
2128
  msgstr ""
2129
 
2130
- #: src/admin.php:667
2131
  msgid "Delete from your web server"
2132
  msgstr ""
2133
 
2134
- #: src/admin.php:668
2135
  msgid "Download to your computer"
2136
  msgstr ""
2137
 
2138
- #: src/admin.php:669
2139
  msgid "Browse contents"
2140
  msgstr ""
2141
 
2142
- #: src/admin.php:670
2143
  msgid "Download error: the server sent us a response which we did not understand."
2144
  msgstr ""
2145
 
2146
- #: src/admin.php:671
2147
  msgid "Requesting start of backup..."
2148
  msgstr ""
2149
 
2150
- #: src/admin.php:672
2151
  msgid "PHP information"
2152
  msgstr ""
2153
 
2154
- #: src/admin.php:673, src/admin.php:2607
2155
  msgid "Delete Old Directories"
2156
  msgstr ""
2157
 
2158
- #: src/admin.php:674
2159
  msgid "Raw backup history"
2160
  msgstr ""
2161
 
2162
- #: src/admin.php:675, src/admin.php:676, src/includes/class-backup-history.php:286
2163
  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))."
2164
  msgstr ""
2165
 
2166
- #: src/admin.php:675
2167
  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."
2168
  msgstr ""
2169
 
2170
- #: src/admin.php:676, src/includes/class-backup-history.php:286
2171
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2172
  msgstr ""
2173
 
2174
- #: src/admin.php:677
2175
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
2176
  msgstr ""
2177
 
2178
- #: src/admin.php:678
2179
  msgid "Upload error:"
2180
  msgstr ""
2181
 
2182
- #: src/admin.php:679
2183
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
2184
  msgstr ""
2185
 
2186
- #: src/admin.php:680
2187
  msgid "Upload error"
2188
  msgstr ""
2189
 
2190
- #: src/admin.php:681
2191
  msgid "Follow this link to attempt decryption and download the database file to your computer."
2192
  msgstr ""
2193
 
2194
- #: src/admin.php:682
2195
  msgid "This decryption key will be attempted:"
2196
  msgstr ""
2197
 
2198
- #: src/admin.php:683
2199
  msgid "Unknown server response:"
2200
  msgstr ""
2201
 
2202
- #: src/admin.php:684
2203
  msgid "Unknown server response status:"
2204
  msgstr ""
2205
 
2206
- #: src/admin.php:685
2207
  msgid "The file was uploaded."
2208
  msgstr ""
2209
 
2210
- #: src/admin.php:689, src/central/bootstrap.php:535
2211
  msgid "Create"
2212
  msgstr ""
2213
 
2214
- #: src/admin.php:690
2215
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2216
  msgstr ""
2217
 
2218
- #: src/admin.php:692
2219
  msgid "Close"
2220
  msgstr ""
2221
 
2222
- #: src/admin.php:694, src/admin.php:3083
2223
  msgid "Download log file"
2224
  msgstr ""
2225
 
2226
- #: src/admin.php:696, src/admin.php:722, src/admin.php:723
2227
  msgid "You have made changes to your settings, and not saved."
2228
  msgstr ""
2229
 
2230
- #: src/admin.php:697
2231
  msgid "Saving..."
2232
  msgstr ""
2233
 
2234
- #: src/admin.php:698, src/methods/updraftvault.php:302, src/methods/updraftvault.php:347, src/udaddons/options.php:249
2235
  msgid "Connect"
2236
  msgstr ""
2237
 
2238
- #: src/admin.php:699
2239
  msgid "Connecting..."
2240
  msgstr ""
2241
 
2242
- #: src/admin.php:700, src/methods/updraftvault.php:388
2243
  msgid "Disconnect"
2244
  msgstr ""
2245
 
2246
- #: src/admin.php:701
2247
  msgid "Disconnecting..."
2248
  msgstr ""
2249
 
2250
- #: src/admin.php:702
2251
  msgid "Counting..."
2252
  msgstr ""
2253
 
2254
- #: src/admin.php:703
2255
  msgid "Update quota count"
2256
  msgstr ""
2257
 
2258
- #: src/admin.php:704
2259
  msgid "Adding..."
2260
  msgstr ""
2261
 
2262
- #: src/admin.php:706
2263
  msgid "Resetting..."
2264
  msgstr ""
2265
 
2266
- #: src/admin.php:707
2267
  msgid "Creating..."
2268
  msgstr ""
2269
 
2270
- #: src/admin.php:707
2271
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
2272
  msgstr ""
2273
 
2274
- #: src/admin.php:710
2275
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2276
  msgstr ""
2277
 
2278
- #: src/admin.php:712
2279
  msgid "key name"
2280
  msgstr ""
2281
 
2282
- #: src/admin.php:713
2283
  msgid "Deleting..."
2284
  msgstr ""
2285
 
2286
- #: src/admin.php:714
2287
  msgid "Please enter a valid URL"
2288
  msgstr ""
2289
 
2290
- #: src/admin.php:715
2291
  msgid "We requested to delete the file, but could not understand the server's response"
2292
  msgstr ""
2293
 
2294
- #: src/admin.php:721
2295
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
2296
  msgstr ""
2297
 
2298
- #: src/admin.php:722
2299
  msgid "You should save your changes to ensure that they are used for making your backup."
2300
  msgstr ""
2301
 
2302
- #: src/admin.php:723
2303
  msgid "Your export file will be of your displayed settings, not your saved ones."
2304
  msgstr ""
2305
 
2306
- #: src/admin.php:726
2307
  msgid "day"
2308
  msgstr ""
2309
 
2310
- #: src/admin.php:727
2311
  msgid "in the month"
2312
  msgstr ""
2313
 
2314
- #: src/admin.php:728
2315
  msgid "day(s)"
2316
  msgstr ""
2317
 
2318
- #: src/admin.php:729
2319
  msgid "hour(s)"
2320
  msgstr ""
2321
 
2322
- #: src/admin.php:730
2323
  msgid "week(s)"
2324
  msgstr ""
2325
 
2326
- #: src/admin.php:731
2327
  msgid "For backups older than"
2328
  msgstr ""
2329
 
2330
- #: src/admin.php:733
2331
  msgid "Processing..."
2332
  msgstr ""
2333
 
2334
- #: src/admin.php:734
2335
  msgid "Please fill in the required information."
2336
  msgstr ""
2337
 
2338
- #: src/admin.php:735, src/methods/backup-module.php:247
2339
  msgid "Test %s Settings"
2340
  msgstr ""
2341
 
2342
- #: src/admin.php:736
2343
  msgid "Testing %s Settings..."
2344
  msgstr ""
2345
 
2346
- #: src/admin.php:737
2347
  msgid "%s settings test result:"
2348
  msgstr ""
2349
 
2350
- #: src/admin.php:738
2351
  msgid "Nothing yet logged"
2352
  msgstr ""
2353
 
2354
- #: src/admin.php:739
2355
  msgid "You have not yet selected a file to import."
2356
  msgstr ""
2357
 
2358
- #: src/admin.php:740
2359
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
2360
  msgstr ""
2361
 
2362
- #: src/admin.php:743
2363
  msgid "Importing..."
2364
  msgstr ""
2365
 
2366
- #: src/admin.php:744
2367
  msgid "This will import data from:"
2368
  msgstr ""
2369
 
2370
- #: src/admin.php:745
2371
  msgid "Which was exported on:"
2372
  msgstr ""
2373
 
2374
- #: src/admin.php:746
2375
  msgid "Do you want to carry out the import?"
2376
  msgstr ""
2377
 
2378
- #: src/admin.php:747
2379
  msgid "Complete"
2380
  msgstr ""
2381
 
2382
- #: src/admin.php:749
2383
  msgid "remote files deleted"
2384
  msgstr ""
2385
 
2386
- #: src/admin.php:750
2387
  msgid "HTTP code:"
2388
  msgstr ""
2389
 
2390
- #: src/admin.php:751
2391
  msgid "The file failed to upload. Please check the following:"
2392
  msgstr ""
2393
 
2394
- #: src/admin.php:751
2395
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
2396
  msgstr ""
2397
 
2398
- #: src/admin.php:751
2399
  msgid "The available memory on the server."
2400
  msgstr ""
2401
 
2402
- #: src/admin.php:751
2403
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
2404
  msgstr ""
2405
 
2406
- #: src/admin.php:751
2407
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
2408
  msgstr ""
2409
 
2410
- #: src/admin.php:752
2411
  msgid "Browsing zip file"
2412
  msgstr ""
2413
 
2414
- #: src/admin.php:753
2415
  msgid "Select a file to view information about it"
2416
  msgstr ""
2417
 
2418
- #: src/admin.php:754
2419
  msgid "Search"
2420
  msgstr ""
2421
 
2422
- #: src/admin.php:755
2423
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
2424
  msgstr ""
2425
 
2426
- #: src/admin.php:756
2427
  msgid "Loading log file"
2428
  msgstr ""
2429
 
2430
- #: src/admin.php:759
2431
  msgid "Please enter a valid URL e.g http://example.com"
2432
  msgstr ""
2433
 
2434
- #: src/admin.php:888
2435
  msgid "Add-Ons / Pro Support"
2436
  msgstr ""
2437
 
2438
- #: src/admin.php:930
2439
  msgid "An error occurred when fetching storage module options: "
2440
  msgstr ""
2441
 
2442
- #: src/admin.php:934, src/includes/class-commands.php:376, src/templates/wp-admin/settings/tab-status.php:22
2443
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2444
  msgstr ""
2445
 
2446
- #: src/admin.php:939
2447
  msgid "Welcome to UpdraftPlus!"
2448
  msgstr ""
2449
 
2450
- #: src/admin.php:939
2451
  msgid "To make a backup, just press the Backup Now button."
2452
  msgstr ""
2453
 
2454
- #: src/admin.php:939
2455
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
2456
  msgstr ""
2457
 
2458
- #: src/admin.php:943, src/admin.php:947, src/admin.php:951, src/admin.php:955, src/admin.php:959, src/admin.php:968, src/admin.php:3244, src/admin.php:3251, src/admin.php:3253, src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468, src/methods/ftp.php:309, src/methods/openstack-base.php:541, src/methods/s3.php:828, src/methods/s3.php:832, src/methods/updraftvault.php:286, src/templates/wp-admin/settings/downloading-and-restoring.php:27, src/udaddons/updraftplus-addons.php:242
2459
  msgid "Warning"
2460
  msgstr ""
2461
 
2462
- #: src/admin.php:943, src/class-updraftplus.php:782
2463
  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)"
2464
  msgstr ""
2465
 
2466
- #: src/admin.php:947
2467
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even "Backup Now") unless either you have set up a facility to call the scheduler manually, or until it is enabled."
2468
  msgstr ""
2469
 
2470
- #: src/admin.php:951
2471
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
2472
  msgstr ""
2473
 
2474
- #: src/admin.php:955
2475
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
2476
  msgstr ""
2477
 
2478
- #: src/admin.php:959
2479
  msgid "Your website is hosted using the %s web server."
2480
  msgstr ""
2481
 
2482
- #: src/admin.php:959
2483
  msgid "Please consult this FAQ if you have problems backing up."
2484
  msgstr ""
2485
 
2486
- #: src/admin.php:963
2487
  msgid "Notice"
2488
  msgstr ""
2489
 
2490
- #: src/admin.php:963
2491
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
2492
  msgstr ""
2493
 
2494
- #: src/admin.php:968
2495
  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."
2496
  msgstr ""
2497
 
2498
- #: src/admin.php:968
2499
  msgid "Read this page for a guide to possible causes and how to fix it."
2500
  msgstr ""
2501
 
2502
- #: src/admin.php:975, src/admin.php:979, src/admin.php:983, src/admin.php:987, src/admin.php:991, src/class-updraftplus.php:519, src/class-updraftplus.php:554, src/class-updraftplus.php:559, src/class-updraftplus.php:564
2503
  msgid "UpdraftPlus notice:"
2504
  msgstr ""
2505
 
2506
- #: src/admin.php:975, src/admin.php:979, src/admin.php:987, src/admin.php:991
2507
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
2508
  msgstr ""
2509
 
2510
- #: src/admin.php:983
2511
  msgid "%s has been chosen for remote storage, but you are not currently connected."
2512
  msgstr ""
2513
 
2514
- #: src/admin.php:983
2515
  msgid "Go to the remote storage settings in order to connect."
2516
  msgstr ""
2517
 
2518
- #: src/admin.php:1072, src/admin.php:1082
2519
  msgid "Error: invalid path"
2520
  msgstr ""
2521
 
2522
- #: src/admin.php:1209
2523
  msgid "File is not locally present - needs retrieving from remote storage"
2524
  msgstr ""
2525
 
2526
- #: src/admin.php:1283, src/admin.php:3941, src/class-updraftplus.php:2116, src/class-updraftplus.php:2181, src/class-updraftplus.php:2315
2527
  msgid "A PHP exception (%s) has occurred: %s"
2528
  msgstr ""
2529
 
2530
- #: src/admin.php:1290, src/admin.php:3949, src/class-updraftplus.php:2123, src/class-updraftplus.php:2188, src/class-updraftplus.php:2322
2531
  msgid "A PHP fatal error (%s) has occurred: %s"
2532
  msgstr ""
2533
 
2534
- #: src/admin.php:1295
2535
  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"
2536
  msgstr ""
2537
 
2538
- #: src/admin.php:1473, src/includes/class-wpadmin-commands.php:465
2539
  msgid "Backup set not found"
2540
  msgstr ""
2541
 
2542
- #: src/admin.php:1544
2543
  msgid "Did not know how to delete from this cloud service."
2544
  msgstr ""
2545
 
2546
- #: src/admin.php:1604
2547
  msgid "Backup sets removed:"
2548
  msgstr ""
2549
 
2550
- #: src/admin.php:1605
2551
  msgid "Local files deleted:"
2552
  msgstr ""
2553
 
2554
- #: src/admin.php:1606
2555
  msgid "Remote files deleted:"
2556
  msgstr ""
2557
 
2558
- #: src/admin.php:1703
2559
  msgid "Job deleted"
2560
  msgstr ""
2561
 
2562
- #: src/admin.php:1711
2563
  msgid "Could not find that job - perhaps it has already finished?"
2564
  msgstr ""
2565
 
2566
- #: src/admin.php:1787, src/admin.php:1799
2567
  msgid "Start backup"
2568
  msgstr ""
2569
 
2570
- #: src/admin.php:1787
2571
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
2572
  msgstr ""
2573
 
2574
- #: src/admin.php:1848
2575
- msgid "Error: unexpected file read fail"
2576
- msgstr ""
2577
-
2578
- #: src/admin.php:1856, src/admin.php:1860, src/class-updraftplus.php:554
2579
  msgid "The log file could not be read."
2580
  msgstr ""
2581
 
2582
- #: src/admin.php:1904
2583
  msgid "Download failed"
2584
  msgstr ""
2585
 
2586
- #: src/admin.php:1934
2587
  msgid "Download in progress"
2588
  msgstr ""
2589
 
2590
- #: src/admin.php:1937
2591
  msgid "No local copy present."
2592
  msgstr ""
2593
 
2594
- #: src/admin.php:1974, src/backup.php:1159
2595
  msgid "Backup directory (%s) is not writable, or does not exist."
2596
  msgstr ""
2597
 
2598
- #: src/admin.php:1974
2599
  msgid "You will find more information about this in the Settings section."
2600
  msgstr ""
2601
 
2602
- #: src/admin.php:2009
2603
  msgid "This file could not be uploaded"
2604
  msgstr ""
2605
 
2606
- #: src/admin.php:2053
2607
  msgid "This backup was created by %s, and can be imported."
2608
  msgstr ""
2609
 
2610
- #: src/admin.php:2056
2611
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
2612
  msgstr ""
2613
 
2614
- #: src/admin.php:2064
2615
  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?"
2616
  msgstr ""
2617
 
2618
- #: src/admin.php:2146
2619
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
2620
  msgstr ""
2621
 
2622
- #: src/admin.php:2187, src/admin.php:2196
2623
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2624
  msgstr ""
2625
 
2626
- #: src/admin.php:2278
2627
  msgid "Backup directory could not be created"
2628
  msgstr ""
2629
 
2630
- #: src/admin.php:2285
2631
  msgid "Backup directory successfully created."
2632
  msgstr ""
2633
 
2634
- #: src/admin.php:2303
2635
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
2636
  msgstr ""
2637
 
2638
- #: src/admin.php:2306
2639
  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."
2640
  msgstr ""
2641
 
2642
- #: src/admin.php:2321
2643
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2644
  msgstr ""
2645
 
2646
- #: src/admin.php:2321
2647
  msgid "To fix this problem go here."
2648
  msgstr ""
2649
 
2650
- #: src/admin.php:2323
2651
  msgid "For even more features and personal support, check out "
2652
  msgstr ""
2653
 
2654
- #: src/admin.php:2325
2655
  msgid "Your backup has been restored."
2656
  msgstr ""
2657
 
2658
- #: src/admin.php:2351
2659
  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)."
2660
  msgstr ""
2661
 
2662
- #: src/admin.php:2351
2663
  msgid "Current limit is:"
2664
  msgstr ""
2665
 
2666
- #: src/admin.php:2408
2667
  msgid "Backup Contents And Schedule"
2668
  msgstr ""
2669
 
2670
- #: src/admin.php:2461
2671
  msgid "%s minutes, %s seconds"
2672
  msgstr ""
2673
 
2674
- #: src/admin.php:2463
2675
  msgid "Unfinished restoration"
2676
  msgstr ""
2677
 
2678
- #: src/admin.php:2464
2679
  msgid "You have an unfinished restoration operation, begun %s ago."
2680
  msgstr ""
2681
 
2682
- #: src/admin.php:2469
2683
  msgid "Continue restoration"
2684
  msgstr ""
2685
 
2686
- #: src/admin.php:2470, src/templates/wp-admin/notices/horizontal-notice.php:16, src/templates/wp-admin/notices/horizontal-notice.php:18
2687
  msgid "Dismiss"
2688
  msgstr ""
2689
 
2690
- #: src/admin.php:2480
2691
  msgid "Does nothing happen when you attempt backups?"
2692
  msgstr ""
2693
 
2694
- #: src/admin.php:2480
2695
  msgid "Go here for help."
2696
  msgstr ""
2697
 
2698
- #: src/admin.php:2489
2699
  msgid "Include the database in the backup"
2700
  msgstr ""
2701
 
2702
- #: src/admin.php:2497
2703
  msgid "All WordPress tables will be backed up."
2704
  msgstr ""
2705
 
2706
- #: src/admin.php:2497
2707
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
2708
  msgstr ""
2709
 
2710
- #: src/admin.php:2503
2711
  msgid "Include any files in the backup"
2712
  msgstr ""
2713
 
2714
- #: src/admin.php:2505
2715
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2716
  msgstr ""
2717
 
2718
- #: src/admin.php:2529
2719
  msgid "Backups in progress:"
2720
  msgstr ""
2721
 
2722
- #: src/admin.php:2539, src/admin.php:2545, src/central/bootstrap.php:169
2723
  msgid "(Nothing yet logged)"
2724
  msgstr ""
2725
 
2726
- #: src/admin.php:2556
2727
  msgid "Latest UpdraftPlus.com news:"
2728
  msgstr ""
2729
 
2730
- #: src/admin.php:2580
2731
  msgid "Download most recently modified log file"
2732
  msgstr ""
2733
 
2734
- #: src/admin.php:2601
2735
  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."
2736
  msgstr ""
2737
 
2738
- #: src/admin.php:2657
2739
  msgid "The backup has finished running"
2740
  msgstr ""
2741
 
2742
- #: src/admin.php:2657, src/admin.php:3605, src/admin.php:3606
2743
  msgid "View Log"
2744
  msgstr ""
2745
 
2746
- #: src/admin.php:2661
2747
  msgid "(None)"
2748
  msgstr ""
2749
 
2750
- #: src/admin.php:2686
2751
  msgid "Backup begun"
2752
  msgstr ""
2753
 
2754
- #: src/admin.php:2691
2755
  msgid "Creating file backup zips"
2756
  msgstr ""
2757
 
2758
- #: src/admin.php:2704
2759
  msgid "Created file backup zips"
2760
  msgstr ""
2761
 
2762
- #: src/admin.php:2710
2763
  msgid "Uploading files to remote storage"
2764
  msgstr ""
2765
 
2766
- #: src/admin.php:2717
2767
  msgid "(%s%%, file %s of %s)"
2768
  msgstr ""
2769
 
2770
- #: src/admin.php:2722
2771
  msgid "Pruning old backup sets"
2772
  msgstr ""
2773
 
2774
- #: src/admin.php:2726
2775
  msgid "Waiting until scheduled time to retry because of errors"
2776
  msgstr ""
2777
 
2778
- #: src/admin.php:2731
2779
  msgid "Backup finished"
2780
  msgstr ""
2781
 
2782
- #: src/admin.php:2745
2783
  msgid "Created database backup"
2784
  msgstr ""
2785
 
2786
- #: src/admin.php:2756
2787
  msgid "Creating database backup"
2788
  msgstr ""
2789
 
2790
- #: src/admin.php:2758
2791
  msgid "table: %s"
2792
  msgstr ""
2793
 
2794
- #: src/admin.php:2771
2795
  msgid "Encrypting database"
2796
  msgstr ""
2797
 
2798
- #: src/admin.php:2779
2799
  msgid "Encrypted database"
2800
  msgstr ""
2801
 
2802
- #: src/admin.php:2781, src/central/bootstrap.php:424, src/central/bootstrap.php:431, src/methods/updraftvault.php:382, src/methods/updraftvault.php:467
2803
  msgid "Unknown"
2804
  msgstr ""
2805
 
2806
- #: src/admin.php:2798
2807
  msgid "next resumption: %d (after %ss)"
2808
  msgstr ""
2809
 
2810
- #: src/admin.php:2799
2811
  msgid "last activity: %ss ago"
2812
  msgstr ""
2813
 
2814
- #: src/admin.php:2814
2815
  msgid "Job ID: %s"
2816
  msgstr ""
2817
 
2818
- #: src/admin.php:2817
2819
  msgid "show log"
2820
  msgstr ""
2821
 
2822
- #: src/admin.php:2819
2823
  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."
2824
  msgstr ""
2825
 
2826
- #: src/admin.php:2819
2827
  msgid "stop"
2828
  msgstr ""
2829
 
2830
- #: src/admin.php:2826, src/admin.php:3069
2831
  msgid "Warning: %s"
2832
  msgstr ""
2833
 
2834
- #: src/admin.php:2844, src/admin.php:2844
2835
  msgid "Remove old directories"
2836
  msgstr ""
2837
 
2838
- #: src/admin.php:2847
2839
  msgid "Old directories successfully removed."
2840
  msgstr ""
2841
 
2842
- #: src/admin.php:2849
2843
  msgid "Old directory removal failed for some reason. You may want to do this manually."
2844
  msgstr ""
2845
 
2846
- #: src/admin.php:2961
2847
  msgid "The request to the filesystem to create the directory failed."
2848
  msgstr ""
2849
 
2850
- #: src/admin.php:2975
2851
  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"
2852
  msgstr ""
2853
 
2854
- #: src/admin.php:2980
2855
  msgid "The folder exists, but your webserver does not have permission to write to it."
2856
  msgstr ""
2857
 
2858
- #: src/admin.php:2980
2859
  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."
2860
  msgstr ""
2861
 
2862
- #: src/admin.php:3057
2863
  msgid "incremental backup; base backup: %s"
2864
  msgstr ""
2865
 
2866
- #: src/admin.php:3087
2867
  msgid "No backup has been completed"
2868
  msgstr ""
2869
 
2870
- #: src/admin.php:3096
2871
  msgctxt "i.e. Non-automatic"
2872
  msgid "Manual"
2873
  msgstr ""
2874
 
2875
- #: src/admin.php:3097, src/admin.php:3098, src/admin.php:3099, src/updraftplus.php:99, src/updraftplus.php:100
2876
  msgid "Every %s hours"
2877
  msgstr ""
2878
 
2879
- #: src/admin.php:3100
2880
  msgid "Daily"
2881
  msgstr ""
2882
 
2883
- #: src/admin.php:3101
2884
  msgid "Weekly"
2885
  msgstr ""
2886
 
2887
- #: src/admin.php:3102
2888
  msgid "Fortnightly"
2889
  msgstr ""
2890
 
2891
- #: src/admin.php:3103
2892
  msgid "Monthly"
2893
  msgstr ""
2894
 
2895
- #: src/admin.php:3109
2896
  msgid "Backup directory specified is writable, which is good."
2897
  msgstr ""
2898
 
2899
- #: src/admin.php:3113
2900
  msgid "Backup directory specified does <b>not</b> exist."
2901
  msgstr ""
2902
 
2903
- #: src/admin.php:3115
2904
  msgid "Backup directory specified exists, but is <b>not</b> writable."
2905
  msgstr ""
2906
 
2907
- #: src/admin.php:3117
2908
  msgid "Follow this link to attempt to create the directory and set the permissions"
2909
  msgstr ""
2910
 
2911
- #: src/admin.php:3117
2912
  msgid "or, to reset this option"
2913
  msgstr ""
2914
 
2915
- #: src/admin.php:3117
2916
  msgid "click here"
2917
  msgstr ""
2918
 
2919
- #: src/admin.php:3117
2920
  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."
2921
  msgstr ""
2922
 
2923
- #: src/admin.php:3178
2924
  msgid "Your wp-content directory server path: %s"
2925
  msgstr ""
2926
 
2927
- #: src/admin.php:3178
2928
  msgid "Any other directories found inside wp-content"
2929
  msgstr ""
2930
 
2931
- #: src/admin.php:3244, src/methods/updraftvault.php:286
2932
  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."
2933
  msgstr ""
2934
 
2935
- #: src/admin.php:3251
2936
  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)."
2937
  msgstr ""
2938
 
2939
- #: src/admin.php:3253
2940
  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."
2941
  msgstr ""
2942
 
2943
- #: src/admin.php:3256
2944
  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."
2945
  msgstr ""
2946
 
2947
- #: src/admin.php:3405
2948
  msgid "Total backup size:"
2949
  msgstr ""
2950
 
2951
- #: src/admin.php:3432
2952
  msgid "You have not yet made any backups."
2953
  msgstr ""
2954
 
2955
- #: src/admin.php:3449, src/admin.php:3488
2956
  msgid "unknown source"
2957
  msgstr ""
2958
 
2959
- #: src/admin.php:3455
2960
  msgid "Database (created by %s)"
2961
  msgstr ""
2962
 
2963
- #: src/admin.php:3457
2964
  msgid "External database"
2965
  msgstr ""
2966
 
2967
- #: src/admin.php:3489, src/includes/class-wpadmin-commands.php:152, src/restorer.php:1462
2968
  msgid "Backup created by unknown source (%s) - cannot be restored."
2969
  msgstr ""
2970
 
2971
- #: src/admin.php:3492
2972
  msgid "Files and database WordPress backup (created by %s)"
2973
  msgstr ""
2974
 
2975
- #: src/admin.php:3492
2976
  msgid "Files backup (created by %s)"
2977
  msgstr ""
2978
 
2979
- #: src/admin.php:3518
2980
  msgid "Press here to download or browse"
2981
  msgstr ""
2982
 
2983
- #: src/admin.php:3523
2984
  msgid "(%d archive(s) in set)."
2985
  msgstr ""
2986
 
2987
- #: src/admin.php:3526
2988
  msgid "You appear to be missing one or more archives from this multi-archive set."
2989
  msgstr ""
2990
 
2991
- #: src/admin.php:3556, src/admin.php:3558
2992
  msgid "(Not finished)"
2993
  msgstr ""
2994
 
2995
- #: src/admin.php:3558
2996
  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."
2997
  msgstr ""
2998
 
2999
- #: src/admin.php:3583
3000
  msgid "(backup set imported from remote location)"
3001
  msgstr ""
3002
 
3003
- #: src/admin.php:3586
3004
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
3005
  msgstr ""
3006
 
3007
- #: src/admin.php:3595
3008
  msgid "Delete this backup set"
3009
  msgstr ""
3010
 
3011
- #: src/admin.php:3644
3012
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
3013
  msgstr ""
3014
 
3015
- #: src/admin.php:3645
3016
  msgid "Backup does not exist in the backup history"
3017
  msgstr ""
3018
 
3019
- #: src/admin.php:3674
3020
  msgid "Why am I seeing this?"
3021
  msgstr ""
3022
 
3023
- #: src/admin.php:3692
3024
  msgid "UpdraftPlus Restoration: Progress"
3025
  msgstr ""
3026
 
3027
- #: src/admin.php:3694
3028
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3029
  msgstr ""
3030
 
3031
- #: src/admin.php:3737
3032
  msgid "ABORT: Could not find the information on which entities to restore."
3033
  msgstr ""
3034
 
3035
- #: src/admin.php:3738
3036
  msgid "If making a request for support, please include this information:"
3037
  msgstr ""
3038
 
3039
- #: src/admin.php:3787
3040
  msgid "Final checks"
3041
  msgstr ""
3042
 
3043
- #: src/admin.php:3814
3044
  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."
3045
  msgstr ""
3046
 
3047
- #: src/admin.php:3826
3048
  msgid "Looking for %s archive: file name: %s"
3049
  msgstr ""
3050
 
3051
- #: src/admin.php:3829
3052
  msgid "Skipping: this archive was already restored."
3053
  msgstr ""
3054
 
3055
- #: src/admin.php:3841
3056
  msgid "Archive is expected to be size:"
3057
  msgstr ""
3058
 
3059
- #: src/admin.php:3846
3060
  msgid "file is size:"
3061
  msgstr ""
3062
 
3063
- #: src/admin.php:3849
3064
  msgid "The backup records do not contain information about the proper size of this file."
3065
  msgstr ""
3066
 
3067
- #: src/admin.php:3852, src/admin.php:3853
3068
  msgid "Could not find one of the files for restoration"
3069
  msgstr ""
3070
 
3071
- #: src/admin.php:3962
3072
  msgid "Error message"
3073
  msgstr ""
3074
 
3075
- #: src/admin.php:3972, src/templates/wp-admin/settings/downloading-and-restoring.php:27
3076
  msgid "Please consult this FAQ for help on what to do about it."
3077
  msgstr ""
3078
 
3079
- #: src/admin.php:4146
3080
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
3081
  msgstr ""
3082
 
3083
- #: src/admin.php:4146
3084
  msgid "settings"
3085
  msgstr ""
3086
 
3087
- #: src/admin.php:4146
3088
  msgid "Not got any remote storage?"
3089
  msgstr ""
3090
 
3091
- #: src/admin.php:4146
3092
  msgid "Check out UpdraftPlus Vault."
3093
  msgstr ""
3094
 
3095
- #: src/admin.php:4148
3096
  msgid "Send this backup to remote storage"
3097
  msgstr ""
3098
 
3099
- #: src/admin.php:4235
3100
  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."
3101
  msgstr ""
3102
 
3103
- #: src/admin.php:4242, src/templates/wp-admin/settings/tab-status.php:27
3104
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3105
  msgstr ""
3106
 
3107
- #: src/admin.php:4271
3108
  msgid "Your settings have been saved."
3109
  msgstr ""
3110
 
3111
- #: src/admin.php:4276
3112
  msgid "Your settings failed to save. Please refresh the settings page and try again"
3113
  msgstr ""
3114
 
3115
- #: src/admin.php:4324
3116
  msgid "Your settings have been wiped."
3117
  msgstr ""
3118
 
3119
- #: src/admin.php:4404
3120
  msgid "Known backups (raw)"
3121
  msgstr ""
3122
 
3123
- #: src/admin.php:4435
3124
  msgid "Options (raw)"
3125
  msgstr ""
3126
 
3127
- #: src/admin.php:4438
3128
  msgid "Value"
3129
  msgstr ""
3130
 
@@ -3148,7 +3188,7 @@ msgstr ""
3148
  msgid "Incremental"
3149
  msgstr ""
3150
 
3151
- #: src/backup.php:869, src/class-updraftplus.php:2804
3152
  msgid "The backup was aborted by the user"
3153
  msgstr ""
3154
 
@@ -3276,7 +3316,7 @@ msgstr ""
3276
  msgid "A very large file was encountered: %s (size: %s Mb)"
3277
  msgstr ""
3278
 
3279
- #: src/backup.php:3038, src/class-updraftplus.php:795
3280
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
3281
  msgstr ""
3282
 
@@ -3460,273 +3500,273 @@ msgstr ""
3460
  msgid "Create another key"
3461
  msgstr ""
3462
 
3463
- #: src/class-updraftplus.php:519, src/class-updraftplus.php:564
3464
  msgid "The given file was not found, or could not be read."
3465
  msgstr ""
3466
 
3467
- #: src/class-updraftplus.php:559
3468
  msgid "No log files were found."
3469
  msgstr ""
3470
 
3471
- #: src/class-updraftplus.php:779
3472
  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)"
3473
  msgstr ""
3474
 
3475
- #: src/class-updraftplus.php:808
3476
  msgid "Your free disk space is very low - only %s Mb remain"
3477
  msgstr ""
3478
 
3479
- #: src/class-updraftplus.php:1155, src/methods/cloudfiles.php:223
3480
  msgid "%s error - failed to re-assemble chunks"
3481
  msgstr ""
3482
 
3483
- #: src/class-updraftplus.php:1195, src/class-updraftplus.php:1239, src/methods/cloudfiles.php:405, src/methods/stream-base.php:265
3484
  msgid "Error opening local file: Failed to download"
3485
  msgstr ""
3486
 
3487
- #: src/class-updraftplus.php:1263
3488
  msgid "Error - failed to download the file"
3489
  msgstr ""
3490
 
3491
- #: src/class-updraftplus.php:1712, src/class-updraftplus.php:1714
3492
  msgid "files: %s"
3493
  msgstr ""
3494
 
3495
- #: src/class-updraftplus.php:1731
3496
  msgid "External database (%s)"
3497
  msgstr ""
3498
 
3499
- #: src/class-updraftplus.php:1734
3500
  msgid "Size: %s MB"
3501
  msgstr ""
3502
 
3503
- #: src/class-updraftplus.php:1739, src/class-updraftplus.php:1744
3504
  msgid "%s checksum: %s"
3505
  msgstr ""
3506
 
3507
- #: src/class-updraftplus.php:1779
3508
  msgid "Plugins"
3509
  msgstr ""
3510
 
3511
- #: src/class-updraftplus.php:1780
3512
  msgid "Themes"
3513
  msgstr ""
3514
 
3515
- #: src/class-updraftplus.php:1796
3516
  msgid "Others"
3517
  msgstr ""
3518
 
3519
- #: src/class-updraftplus.php:2016
3520
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3521
  msgstr ""
3522
 
3523
- #: src/class-updraftplus.php:2513
3524
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
3525
  msgstr ""
3526
 
3527
- #: src/class-updraftplus.php:2810
3528
  msgid "The backup apparently succeeded and is now complete"
3529
  msgstr ""
3530
 
3531
- #: src/class-updraftplus.php:2816
3532
  msgid "The backup apparently succeeded (with warnings) and is now complete"
3533
  msgstr ""
3534
 
3535
- #: src/class-updraftplus.php:2821
3536
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
3537
  msgstr ""
3538
 
3539
- #: src/class-updraftplus.php:2825
3540
  msgid "The backup attempt has finished, apparently unsuccessfully"
3541
  msgstr ""
3542
 
3543
- #: src/class-updraftplus.php:2828
3544
  msgid "The backup has not finished; a resumption is scheduled"
3545
  msgstr ""
3546
 
3547
- #: src/class-updraftplus.php:3313
3548
  msgid "Could not read the directory"
3549
  msgstr ""
3550
 
3551
- #: src/class-updraftplus.php:3351
3552
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
3553
  msgstr ""
3554
 
3555
- #: src/class-updraftplus.php:3934, src/class-updraftplus.php:4250, src/restorer.php:376
3556
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
3557
  msgstr ""
3558
 
3559
- #: src/class-updraftplus.php:3953, src/class-updraftplus.php:4262, src/restorer.php:389
3560
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
3561
  msgstr ""
3562
 
3563
- #: src/class-updraftplus.php:3953
3564
  msgid "The decryption key used:"
3565
  msgstr ""
3566
 
3567
- #: src/class-updraftplus.php:4252
3568
  msgid "Decryption failed. The database file is encrypted."
3569
  msgstr ""
3570
 
3571
- #: src/class-updraftplus.php:4269
3572
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3573
  msgstr ""
3574
 
3575
- #: src/class-updraftplus.php:4277
3576
  msgid "Failed to open database file."
3577
  msgstr ""
3578
 
3579
- #: src/class-updraftplus.php:4327
3580
  msgid "(version: %s)"
3581
  msgstr ""
3582
 
3583
- #: src/class-updraftplus.php:4336
3584
  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."
3585
  msgstr ""
3586
 
3587
- #: src/class-updraftplus.php:4339
3588
  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."
3589
  msgstr ""
3590
 
3591
- #: src/class-updraftplus.php:4341
3592
  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."
3593
  msgstr ""
3594
 
3595
- #: src/class-updraftplus.php:4341, src/class-updraftplus.php:4343
3596
  msgid "the migrator add-on"
3597
  msgstr ""
3598
 
3599
- #: src/class-updraftplus.php:4343
3600
  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."
3601
  msgstr ""
3602
 
3603
- #: src/class-updraftplus.php:4348, src/class-updraftplus.php:4366
3604
  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."
3605
  msgstr ""
3606
 
3607
- #: src/class-updraftplus.php:4355, src/restorer.php:1010
3608
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
3609
  msgstr ""
3610
 
3611
- #: src/class-updraftplus.php:4355, src/restorer.php:1010
3612
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
3613
  msgstr ""
3614
 
3615
- #: src/class-updraftplus.php:4375, src/class-updraftplus.php:4382
3616
  msgid "%s version: %s"
3617
  msgstr ""
3618
 
3619
- #: src/class-updraftplus.php:4376
3620
  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."
3621
  msgstr ""
3622
 
3623
- #: src/class-updraftplus.php:4383
3624
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3625
  msgstr ""
3626
 
3627
- #: src/class-updraftplus.php:4383
3628
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3629
  msgstr ""
3630
 
3631
- #: src/class-updraftplus.php:4383
3632
  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."
3633
  msgstr ""
3634
 
3635
- #: src/class-updraftplus.php:4383
3636
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3637
  msgstr ""
3638
 
3639
- #: src/class-updraftplus.php:4388, src/restorer.php:1689, src/restorer.php:1778, src/restorer.php:1804
3640
  msgid "Old table prefix:"
3641
  msgstr ""
3642
 
3643
- #: src/class-updraftplus.php:4391
3644
  msgid "Backup label:"
3645
  msgstr ""
3646
 
3647
- #: src/class-updraftplus.php:4399, src/class-updraftplus.php:4402, src/restorer.php:154
3648
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
3649
  msgstr ""
3650
 
3651
- #: src/class-updraftplus.php:4402
3652
  msgid "It will be imported as a new site."
3653
  msgstr ""
3654
 
3655
- #: src/class-updraftplus.php:4402
3656
  msgid "Please read this link for important information on this process."
3657
  msgstr ""
3658
 
3659
- #: src/class-updraftplus.php:4406, src/restorer.php:1701
3660
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
3661
  msgstr ""
3662
 
3663
- #: src/class-updraftplus.php:4410
3664
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3665
  msgstr ""
3666
 
3667
- #: src/class-updraftplus.php:4410
3668
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3669
  msgstr ""
3670
 
3671
- #: src/class-updraftplus.php:4417, src/restorer.php:1707
3672
  msgid "Site information:"
3673
  msgstr ""
3674
 
3675
- #: src/class-updraftplus.php:4444
3676
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
3677
  msgstr ""
3678
 
3679
- #: src/class-updraftplus.php:4444
3680
  msgid "You must upgrade MySQL to be able to use this database."
3681
  msgstr ""
3682
 
3683
- #: src/class-updraftplus.php:4465
3684
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
3685
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
3686
  msgstr[0] ""
3687
  msgstr[1] ""
3688
 
3689
- #: src/class-updraftplus.php:4465
3690
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
3691
  msgstr ""
3692
 
3693
- #: src/class-updraftplus.php:4472
3694
  msgid "Your chosen character set to use instead:"
3695
  msgstr ""
3696
 
3697
- #: src/class-updraftplus.php:4520
3698
  msgid "This database backup is missing core WordPress tables: %s"
3699
  msgstr ""
3700
 
3701
- #: src/class-updraftplus.php:4523
3702
  msgid "This database backup has the following WordPress tables excluded: %s"
3703
  msgstr ""
3704
 
3705
- #: src/class-updraftplus.php:4528
3706
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3707
  msgstr ""
3708
 
3709
- #: src/class-updraftplus.php:4587, src/methods/ftp.php:309
3710
  msgid "Your web server's PHP installation has these functions disabled: %s."
3711
  msgstr ""
3712
 
3713
- #: src/class-updraftplus.php:4587, src/methods/ftp.php:309, src/restorer.php:1493
3714
  msgid "Your hosting company must enable these functions before %s can work."
3715
  msgstr ""
3716
 
3717
- #: src/class-updraftplus.php:4587, src/restorer.php:1493
3718
  msgid "restoration"
3719
  msgstr ""
3720
 
3721
- #: src/class-updraftplus.php:4607
3722
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3723
  msgstr ""
3724
 
3725
- #: src/class-updraftplus.php:4614, src/class-updraftplus.php:4635
3726
  msgid "The attempt to undo the double-compression failed."
3727
  msgstr ""
3728
 
3729
- #: src/class-updraftplus.php:4637
3730
  msgid "The attempt to undo the double-compression succeeded."
3731
  msgstr ""
3732
 
@@ -3978,11 +4018,11 @@ msgstr ""
3978
  msgid "Failed to download"
3979
  msgstr ""
3980
 
3981
- #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458, src/methods/dropbox.php:497, src/methods/ftp.php:321, src/methods/googledrive.php:1076, src/methods/openstack-base.php:531, src/methods/s3.php:803, src/methods/stream-base.php:218
3982
  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."
3983
  msgstr ""
3984
 
3985
- #: src/methods/addon-base-v2.php:301, src/methods/stream-base.php:315
3986
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
3987
  msgstr ""
3988
 
@@ -4010,11 +4050,11 @@ msgstr ""
4010
  msgid "Your %s version: %s."
4011
  msgstr ""
4012
 
4013
- #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468, src/methods/openstack-base.php:541, src/methods/s3.php:832
4014
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
4015
  msgstr ""
4016
 
4017
- #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468, src/methods/openstack-base.php:541, src/methods/s3.php:832
4018
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4019
  msgstr ""
4020
 
@@ -4050,7 +4090,7 @@ msgstr ""
4050
  msgid "API key"
4051
  msgstr ""
4052
 
4053
- #: src/methods/cloudfiles.php:107, src/methods/cloudfiles.php:111, src/methods/cloudfiles.php:252, src/methods/cloudfiles.php:298, src/methods/cloudfiles.php:349, src/methods/cloudfiles.php:353, src/methods/openstack-base.php:44, src/methods/openstack-base.php:317, src/methods/openstack-base.php:382, src/methods/openstack-base.php:455, src/methods/openstack-base.php:458, src/methods/openstack-base.php:476, src/methods/openstack-base.php:481
4054
  msgid "%s authentication failed"
4055
  msgstr ""
4056
 
@@ -4066,11 +4106,7 @@ msgstr ""
4066
  msgid "%s error - failed to upload file"
4067
  msgstr ""
4068
 
4069
- #: src/methods/cloudfiles.php:246, src/methods/dropbox.php:294, src/methods/openstack-base.php:111
4070
- msgid "No settings were found"
4071
- msgstr ""
4072
-
4073
- #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:420
4074
  msgid "Error downloading remote file: Failed to download"
4075
  msgstr ""
4076
 
@@ -4106,7 +4142,7 @@ msgstr ""
4106
  msgid "Cloud Files"
4107
  msgstr ""
4108
 
4109
- #: src/methods/cloudfiles.php:551, src/methods/openstack-base.php:437
4110
  msgid "Failure: No container details were given."
4111
  msgstr ""
4112
 
@@ -4114,7 +4150,7 @@ msgstr ""
4114
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4115
  msgstr ""
4116
 
4117
- #: src/methods/cloudfiles.php:582, src/methods/openstack-base.php:495
4118
  msgid "We accessed the container, and were able to create files within it."
4119
  msgstr ""
4120
 
@@ -4226,7 +4262,7 @@ msgstr ""
4226
  msgid "For more options, use the \"%s\" add-on."
4227
  msgstr ""
4228
 
4229
- #: src/methods/email.php:76, src/templates/wp-admin/settings/form-contents.php:273, src/templates/wp-admin/settings/tab-addons.php:199, src/templates/wp-admin/settings/tab-addons.php:200
4230
  msgid "Reporting"
4231
  msgstr ""
4232
 
@@ -4370,23 +4406,23 @@ msgstr ""
4370
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
4371
  msgstr ""
4372
 
4373
- #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:116, src/methods/openstack-base.php:123, src/methods/openstack-base.php:321, src/methods/openstack-base.php:386
4374
  msgid "%s error - failed to access the container"
4375
  msgstr ""
4376
 
4377
- #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:329, src/methods/openstack-base.php:398
4378
  msgid "Could not access %s container"
4379
  msgstr ""
4380
 
4381
- #: src/methods/openstack-base.php:406
4382
  msgid "The %s object was not found"
4383
  msgstr ""
4384
 
4385
- #: src/methods/openstack-base.php:490
4386
  msgid "%s error - we accessed the container, but failed to create a file within it"
4387
  msgstr ""
4388
 
4389
- #: src/methods/openstack-base.php:491, src/methods/openstack-base.php:496
4390
  msgid "Region: %s"
4391
  msgstr ""
4392
 
@@ -4708,23 +4744,23 @@ msgstr ""
4708
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4709
  msgstr ""
4710
 
4711
- #: src/options.php:191
4712
  msgid "UpdraftPlus warning:"
4713
  msgstr ""
4714
 
4715
- #: src/options.php:191
4716
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4717
  msgstr ""
4718
 
4719
- #: src/options.php:191
4720
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4721
  msgstr ""
4722
 
4723
- #: src/options.php:191
4724
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4725
  msgstr ""
4726
 
4727
- #: src/options.php:191
4728
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4729
  msgstr ""
4730
 
@@ -5441,184 +5477,184 @@ msgstr ""
5441
  msgid "Backup using %s?"
5442
  msgstr ""
5443
 
5444
- #: src/templates/wp-admin/settings/form-contents.php:133
5445
  msgid "You can send a backup to more than one destination with an add-on."
5446
  msgstr ""
5447
 
5448
- #: src/templates/wp-admin/settings/form-contents.php:142
5449
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
5450
  msgstr ""
5451
 
5452
- #: src/templates/wp-admin/settings/form-contents.php:169
5453
  msgid "File Options"
5454
  msgstr ""
5455
 
5456
- #: src/templates/wp-admin/settings/form-contents.php:173
5457
  msgid "Include in files backup"
5458
  msgstr ""
5459
 
5460
- #: src/templates/wp-admin/settings/form-contents.php:176
5461
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5462
  msgstr ""
5463
 
5464
- #: src/templates/wp-admin/settings/form-contents.php:176
5465
  msgid "See also the \"More Files\" add-on from our shop."
5466
  msgstr ""
5467
 
5468
- #: src/templates/wp-admin/settings/form-contents.php:181
5469
  msgid "Database Options"
5470
  msgstr ""
5471
 
5472
- #: src/templates/wp-admin/settings/form-contents.php:186
5473
  msgid "Database encryption phrase"
5474
  msgstr ""
5475
 
5476
- #: src/templates/wp-admin/settings/form-contents.php:190
5477
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
5478
  msgstr ""
5479
 
5480
- #: src/templates/wp-admin/settings/form-contents.php:190
5481
  msgid "It can also backup external databases."
5482
  msgstr ""
5483
 
5484
- #: src/templates/wp-admin/settings/form-contents.php:204
5485
  msgid "You can manually decrypt an encrypted database here."
5486
  msgstr ""
5487
 
5488
- #: src/templates/wp-admin/settings/form-contents.php:207
5489
  msgid "Manually decrypt a database backup file"
5490
  msgstr ""
5491
 
5492
- #: src/templates/wp-admin/settings/form-contents.php:219
5493
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5494
  msgstr ""
5495
 
5496
- #: src/templates/wp-admin/settings/form-contents.php:220
5497
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
5498
  msgid "or"
5499
  msgstr ""
5500
 
5501
- #: src/templates/wp-admin/settings/form-contents.php:221
5502
  msgid "Select Files"
5503
  msgstr ""
5504
 
5505
- #: src/templates/wp-admin/settings/form-contents.php:222
5506
  msgid "First, enter the decryption key"
5507
  msgstr ""
5508
 
5509
- #: src/templates/wp-admin/settings/form-contents.php:245
5510
  msgid "Recommended: optimize your database with WP-Optimize."
5511
  msgstr ""
5512
 
5513
- #: src/templates/wp-admin/settings/form-contents.php:263
5514
  msgid "Back up more databases"
5515
  msgstr ""
5516
 
5517
- #: src/templates/wp-admin/settings/form-contents.php:285, src/udaddons/options.php:133
5518
  msgid "Email"
5519
  msgstr ""
5520
 
5521
- #: src/templates/wp-admin/settings/form-contents.php:290
5522
  msgid "Check this box to have a basic report sent to"
5523
  msgstr ""
5524
 
5525
- #: src/templates/wp-admin/settings/form-contents.php:290
5526
  msgid "your site's admin address"
5527
  msgstr ""
5528
 
5529
- #: src/templates/wp-admin/settings/form-contents.php:292
5530
  msgid "For more reporting features, use the Reporting add-on."
5531
  msgstr ""
5532
 
5533
- #: src/templates/wp-admin/settings/form-contents.php:318
5534
  msgid "Advanced / Debugging Settings"
5535
  msgstr ""
5536
 
5537
- #: src/templates/wp-admin/settings/form-contents.php:322
5538
  msgid "Expert settings"
5539
  msgstr ""
5540
 
5541
- #: src/templates/wp-admin/settings/form-contents.php:323
5542
  msgid "Show expert settings"
5543
  msgstr ""
5544
 
5545
- #: src/templates/wp-admin/settings/form-contents.php:323
5546
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5547
  msgstr ""
5548
 
5549
- #: src/templates/wp-admin/settings/form-contents.php:333
5550
  msgid "Debug mode"
5551
  msgstr ""
5552
 
5553
- #: src/templates/wp-admin/settings/form-contents.php:334
5554
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
5555
  msgstr ""
5556
 
5557
- #: src/templates/wp-admin/settings/form-contents.php:334
5558
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
5559
  msgstr ""
5560
 
5561
- #: src/templates/wp-admin/settings/form-contents.php:338
5562
  msgid "Split archives every:"
5563
  msgstr ""
5564
 
5565
- #: src/templates/wp-admin/settings/form-contents.php:339
5566
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
5567
  msgstr ""
5568
 
5569
- #: src/templates/wp-admin/settings/form-contents.php:343
5570
  msgid "Delete local backup"
5571
  msgstr ""
5572
 
5573
- #: src/templates/wp-admin/settings/form-contents.php:344
5574
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
5575
  msgstr ""
5576
 
5577
- #: src/templates/wp-admin/settings/form-contents.php:348
5578
  msgid "Backup directory"
5579
  msgstr ""
5580
 
5581
- #: src/templates/wp-admin/settings/form-contents.php:361
5582
  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)."
5583
  msgstr ""
5584
 
5585
- #: src/templates/wp-admin/settings/form-contents.php:361
5586
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
5587
  msgstr ""
5588
 
5589
- #: src/templates/wp-admin/settings/form-contents.php:367
5590
  msgid "Use the server's SSL certificates"
5591
  msgstr ""
5592
 
5593
- #: src/templates/wp-admin/settings/form-contents.php:368
5594
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
5595
  msgstr ""
5596
 
5597
- #: src/templates/wp-admin/settings/form-contents.php:372
5598
  msgid "Do not verify SSL certificates"
5599
  msgstr ""
5600
 
5601
- #: src/templates/wp-admin/settings/form-contents.php:373
5602
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
5603
  msgstr ""
5604
 
5605
- #: src/templates/wp-admin/settings/form-contents.php:373
5606
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5607
  msgstr ""
5608
 
5609
- #: src/templates/wp-admin/settings/form-contents.php:377
5610
  msgid "Disable SSL entirely where possible"
5611
  msgstr ""
5612
 
5613
- #: src/templates/wp-admin/settings/form-contents.php:378
5614
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
5615
  msgstr ""
5616
 
5617
- #: src/templates/wp-admin/settings/form-contents.php:378
5618
  msgid "See this FAQ also."
5619
  msgstr ""
5620
 
5621
- #: src/templates/wp-admin/settings/form-contents.php:401
5622
  msgid "Save Changes"
5623
  msgstr ""
5624
 
25
  msgid "UpdraftPlus Automatic Backups"
26
  msgstr ""
27
 
28
+ #: src/addons/autobackup.php:143, src/addons/autobackup.php:1007, src/admin.php:697
29
  msgid "Automatic backup before update"
30
  msgstr ""
31
 
49
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
50
  msgstr ""
51
 
52
+ #: src/addons/autobackup.php:325, src/addons/autobackup.php:420, src/admin.php:2565, src/admin.php:2570
53
  msgid "Last log message"
54
  msgstr ""
55
 
57
  msgid "Starting automatic backup..."
58
  msgstr ""
59
 
60
+ #: src/addons/autobackup.php:330, src/addons/autobackup.php:422, src/admin.php:650, src/methods/remotesend.php:66, src/methods/remotesend.php:74, src/methods/remotesend.php:225, src/methods/remotesend.php:242
61
  msgid "Unexpected response:"
62
  msgstr ""
63
 
97
  msgid "now proceeding with the updates..."
98
  msgstr ""
99
 
100
+ #: src/addons/autobackup.php:1053, src/admin.php:782, src/includes/updraftplus-notices.php:171
101
  msgid "Be safe with an automatic backup"
102
  msgstr ""
103
 
109
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
110
  msgstr ""
111
 
112
+ #: src/addons/autobackup.php:1085, src/admin.php:693
113
  msgid "Proceed with update"
114
  msgstr ""
115
 
116
+ #: src/addons/azure.php:218, src/methods/addon-base-v2.php:219, src/methods/cloudfiles.php:405, src/methods/cloudfiles.php:422, src/methods/googledrive.php:1006, src/methods/openstack-base.php:428, src/methods/stream-base.php:265, src/methods/stream-base.php:272, src/methods/stream-base.php:285
117
  msgid "%s Error"
118
  msgstr ""
119
 
120
+ #: src/addons/azure.php:218, src/class-updraftplus.php:4079, src/methods/googledrive.php:1006, src/methods/s3.php:322
121
  msgid "File not found"
122
  msgstr ""
123
 
124
+ #: src/addons/azure.php:358
125
  msgid "Could not access container"
126
  msgstr ""
127
 
128
+ #: src/addons/azure.php:365, src/methods/stream-base.php:124, src/methods/stream-base.php:129
129
  msgid "Upload failed"
130
  msgstr ""
131
 
132
+ #: src/addons/azure.php:388, src/addons/backblaze.php:464, src/addons/googlecloud.php:760, src/methods/s3.php:1091
133
  msgid "Delete failed:"
134
  msgstr ""
135
 
136
+ #: src/addons/azure.php:503
137
  msgid "Could not create the container"
138
  msgstr ""
139
 
140
+ #: src/addons/azure.php:547
141
  msgid "Microsoft Azure is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
142
  msgstr ""
143
 
144
+ #: src/addons/azure.php:549
145
  msgid "You must add the following as the authorised redirect URI in your Azure console (under \"API Settings\") when asked"
146
  msgstr ""
147
 
148
+ #: src/addons/azure.php:555
149
  msgid "Create Azure credentials in your Azure developer console."
150
  msgstr ""
151
 
152
+ #: src/addons/azure.php:555, src/addons/migrator.php:1762, src/addons/onedrive.php:955
153
  msgid "For longer help, including screenshots, follow this link."
154
  msgstr ""
155
 
156
+ #: src/addons/azure.php:559, src/addons/azure.php:563
157
  msgid "Azure"
158
  msgstr ""
159
 
160
+ #: src/addons/azure.php:559
161
  msgid "Account Name"
162
  msgstr ""
163
 
164
+ #: src/addons/azure.php:560
165
  msgid "This is not your Azure login - see the instructions if needing more guidance."
166
  msgstr ""
167
 
168
+ #: src/addons/azure.php:563, src/addons/migrator.php:2208, src/addons/sftp.php:439, src/admin.php:713, src/admin.php:4465
169
  msgid "Key"
170
  msgstr ""
171
 
172
+ #: src/addons/azure.php:570, src/methods/openstack2.php:164
173
  msgid "Container"
174
  msgstr ""
175
 
176
+ #: src/addons/azure.php:571
177
  msgid "Enter the path of the %s you wish to use here."
178
  msgstr ""
179
 
180
+ #: src/addons/azure.php:571
181
  msgid "See Microsoft's guidelines on container naming by following this link."
182
  msgstr ""
183
 
184
+ #: src/addons/azure.php:576
185
  msgid "Prefix"
186
  msgstr ""
187
 
188
+ #: src/addons/azure.php:576
189
  msgid "optional"
190
  msgstr ""
191
 
192
+ #: src/addons/azure.php:577
193
  msgid "You can enter the path of any %s virtual folder you wish to use here."
194
  msgstr ""
195
 
196
+ #: src/addons/azure.php:577, src/addons/google-enhanced.php:85, src/addons/onedrive.php:983
197
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
198
  msgstr ""
199
 
200
+ #: src/addons/azure.php:577
201
  msgid "container"
202
  msgstr ""
203
 
204
+ #: src/addons/backblaze.php:189, src/admin.php:1875
205
+ msgid "Error: unexpected file read fail"
206
+ msgstr ""
207
+
208
+ #: src/addons/backblaze.php:209, src/addons/cloudfiles-enhanced.php:102, src/addons/migrator.php:780, src/addons/migrator.php:1026, src/addons/migrator.php:1107, src/addons/migrator.php:1154, src/addons/migrator.php:1388, src/addons/migrator.php:1714, src/addons/migrator.php:1741, src/addons/migrator.php:1747, src/addons/migrator.php:1809, src/addons/migrator.php:1849, src/addons/migrator.php:1888, src/addons/migrator.php:1898, src/addons/migrator.php:1903, src/addons/s3-enhanced.php:127, src/addons/s3-enhanced.php:132, src/addons/s3-enhanced.php:134, src/addons/sftp.php:814, src/addons/webdav.php:119, src/admin.php:84, src/admin.php:664, src/admin.php:3873, src/admin.php:3903, src/methods/remotesend.php:71, src/methods/remotesend.php:239, src/methods/updraftvault.php:465, src/restorer.php:1408
209
+ msgid "Error:"
210
+ msgstr ""
211
+
212
+ #: src/addons/backblaze.php:389, src/addons/backblaze.php:562
213
+ msgid "Account ID"
214
+ msgstr ""
215
+
216
+ #: src/addons/backblaze.php:390
217
+ msgid "Account Key"
218
+ msgstr ""
219
+
220
+ #: src/addons/backblaze.php:434
221
+ msgid "Bucket not found"
222
+ msgstr ""
223
+
224
+ #: src/addons/backblaze.php:515, src/methods/cloudfiles.php:246, src/methods/dropbox.php:294, src/methods/openstack-base.php:111
225
+ msgid "No settings were found"
226
+ msgstr ""
227
+
228
+ #: src/addons/backblaze.php:564
229
+ msgid "Get these settings from here."
230
+ msgstr ""
231
+
232
+ #: src/addons/backblaze.php:569
233
+ msgid "Application key"
234
+ msgstr ""
235
+
236
+ #: src/addons/backblaze.php:574
237
+ msgid "Backup path"
238
+ msgstr ""
239
+
240
+ #: src/addons/backblaze.php:575
241
+ msgid "Bucket name"
242
+ msgstr ""
243
+
244
+ #: src/addons/backblaze.php:575
245
+ msgid "some/path"
246
+ msgstr ""
247
+
248
+ #: src/addons/backblaze.php:576
249
+ msgid "N.B. There are limits upon which path-names are valid. Spaces are not allowed."
250
+ msgstr ""
251
+
252
  #: src/addons/cloudfiles-enhanced.php:30
253
  msgid "Rackspace Cloud Files, enhanced"
254
  msgstr ""
317
  msgid "Cloud Files authentication failed"
318
  msgstr ""
319
 
320
+ #: src/addons/cloudfiles-enhanced.php:139, src/addons/s3-enhanced.php:204, src/methods/cloudfiles-new.php:39, src/methods/openstack-base.php:457, src/methods/openstack-base.php:459, src/methods/openstack-base.php:480, src/methods/openstack2.php:33
 
 
 
 
321
  msgid "Authorisation failed (check your credentials)"
322
  msgstr ""
323
 
493
  msgid "Failure: No bucket details were given."
494
  msgstr ""
495
 
496
+ #: src/addons/googlecloud.php:203, src/addons/googlecloud.php:208, src/class-updraftplus.php:1055, src/methods/cloudfiles.php:142, src/methods/googledrive.php:924, src/methods/googledrive.php:929
497
  msgid "%s Error: Failed to open local file"
498
  msgstr ""
499
 
525
  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."
526
  msgstr ""
527
 
528
+ #: src/addons/googlecloud.php:432, src/addons/migrator.php:470, src/admin.php:2036, src/admin.php:2083, src/admin.php:2091, src/class-updraftplus.php:925, src/class-updraftplus.php:931, src/class-updraftplus.php:4283, src/class-updraftplus.php:4285, src/class-updraftplus.php:4432, src/class-updraftplus.php:4439, src/class-updraftplus.php:4477, src/methods/googledrive.php:369, src/methods/s3.php:322
529
  msgid "Error: %s"
530
  msgstr ""
531
 
545
  msgid "However, subsequent access attempts failed:"
546
  msgstr ""
547
 
548
+ #: src/addons/googlecloud.php:635, src/addons/googlecloud.php:756, src/addons/onedrive.php:794, src/addons/sftp.php:550, src/methods/addon-base-v2.php:299, src/methods/cloudfiles.php:582, src/methods/googledrive.php:428, src/methods/openstack-base.php:503, src/methods/s3.php:1074, src/methods/stream-base.php:312
549
  msgid "Success"
550
  msgstr ""
551
 
561
  msgid "You must save and authenticate before you can test your settings."
562
  msgstr ""
563
 
564
+ #: src/addons/googlecloud.php:693, src/addons/googlecloud.php:727, src/addons/googlecloud.php:733, src/addons/sftp.php:516, src/admin.php:2907, src/admin.php:2942, src/admin.php:2951, src/methods/addon-base-v2.php:290, src/methods/stream-base.php:301
565
  msgid "Failed"
566
  msgstr ""
567
 
637
  msgid "Otherwise, you can leave it blank."
638
  msgstr ""
639
 
640
+ #: src/addons/googlecloud.php:941, src/addons/migrator.php:379, src/addons/migrator.php:382, src/addons/migrator.php:385, src/admin.php:949, src/admin.php:2335, src/backup.php:3045, src/class-updraftplus.php:4498, src/updraftplus.php:156
641
  msgid "Go here for more information."
642
  msgstr ""
643
 
697
  msgid "Supported backup plugins: %s"
698
  msgstr ""
699
 
700
+ #: src/addons/importer.php:276, src/admin.php:3513, src/includes/class-backup-history.php:279
701
  msgid "Backup created by: %s."
702
  msgstr ""
703
 
809
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
810
  msgstr ""
811
 
812
+ #: src/addons/migrator.php:232, src/admin.php:695, src/admin.php:3613, src/templates/wp-admin/settings/tab-status.php:30
813
  msgid "Restore"
814
  msgstr ""
815
 
829
  msgid "Replace with"
830
  msgstr ""
831
 
832
+ #: src/addons/migrator.php:294, src/addons/migrator.php:1880, src/addons/moredatabase.php:82, src/addons/moredatabase.php:84, src/addons/moredatabase.php:86, src/addons/sftp.php:485, src/addons/sftp.php:489, src/addons/sftp.php:493, src/addons/webdav.php:143, src/admin.php:714, src/methods/addon-base-v2.php:282, src/methods/cloudfiles-new.php:173, src/methods/cloudfiles-new.php:178, src/methods/cloudfiles.php:526, src/methods/cloudfiles.php:531, src/methods/ftp.php:380, src/methods/ftp.php:384, src/methods/openstack2.php:173, src/methods/openstack2.php:178, src/methods/openstack2.php:183, src/methods/openstack2.php:188, src/methods/s3.php:1010, src/methods/s3.php:1014
833
  msgid "Failure: No %s was given."
834
  msgstr ""
835
 
837
  msgid "search term"
838
  msgstr ""
839
 
840
+ #: src/addons/migrator.php:297, src/addons/migrator.php:312, src/admin.php:2254, src/admin.php:2263, src/admin.php:2272, src/admin.php:2314, src/admin.php:2878
841
  msgid "Return to UpdraftPlus Configuration"
842
  msgstr ""
843
 
865
  msgid "Go"
866
  msgstr ""
867
 
868
+ #: src/addons/migrator.php:341, src/admin.php:2330, src/class-updraftplus.php:4443, src/restorer.php:2046
869
  msgid "Warning:"
870
  msgstr ""
871
 
893
  msgid "other content from wp-content"
894
  msgstr ""
895
 
896
+ #: src/addons/migrator.php:385, src/addons/multisite.php:652
897
  msgid "Must-use plugins"
898
  msgstr ""
899
 
901
  msgid "Importing a single site into a multisite install"
902
  msgstr ""
903
 
904
+ #: src/addons/migrator.php:391, src/templates/wp-admin/settings/downloading-and-restoring.php:61, src/templates/wp-admin/settings/form-contents.php:210
905
  msgid "This feature requires %s version %s or later"
906
  msgstr ""
907
 
1017
  msgid "SQL update commands run:"
1018
  msgstr ""
1019
 
1020
+ #: src/addons/migrator.php:1141, src/admin.php:661
1021
  msgid "Errors:"
1022
  msgstr ""
1023
 
1045
  msgid "site not found"
1046
  msgstr ""
1047
 
1048
+ #: src/addons/migrator.php:1747, src/admin.php:711
1049
  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."
1050
  msgstr ""
1051
 
1057
  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."
1058
  msgstr ""
1059
 
1060
+ #: src/addons/migrator.php:1775, src/admin.php:718
1061
  msgid "Testing connection..."
1062
  msgstr ""
1063
 
1064
+ #: src/addons/migrator.php:1775, src/admin.php:1239, src/admin.php:2910, src/admin.php:2944, src/admin.php:2948, src/admin.php:3871, src/restorer.php:2286, src/restorer.php:2391
1065
  msgid "OK"
1066
  msgstr ""
1067
 
1068
+ #: src/addons/migrator.php:1779, src/addons/moredatabase.php:247, src/addons/reporting.php:248, src/admin.php:301, src/admin.php:3402, src/admin.php:3482, src/admin.php:3957, src/includes/class-wpadmin-commands.php:147, src/includes/class-wpadmin-commands.php:480, src/templates/wp-admin/settings/delete-and-restore-modals.php:81, src/templates/wp-admin/settings/delete-and-restore-modals.php:83
1069
  msgid "Database"
1070
  msgstr ""
1071
 
1113
  msgid "No receiving sites have yet been added."
1114
  msgstr ""
1115
 
1116
+ #: src/addons/migrator.php:1940, src/admin.php:710
1117
  msgid "Send to site:"
1118
  msgstr ""
1119
 
1120
+ #: src/addons/migrator.php:1946, src/admin.php:719
1121
  msgid "Send"
1122
  msgstr ""
1123
 
1145
  msgid "Paste key here"
1146
  msgstr ""
1147
 
1148
+ #: src/addons/migrator.php:2190, src/admin.php:707
1149
  msgid "Add site"
1150
  msgstr ""
1151
 
1209
  msgid "Existing keys"
1210
  msgstr ""
1211
 
1212
+ #: src/addons/migrator.php:2253, src/admin.php:690, src/admin.php:2904, src/admin.php:2937, src/admin.php:3622, src/templates/wp-admin/settings/delete-and-restore-modals.php:5
1213
  msgid "Delete"
1214
  msgstr ""
1215
 
1245
  msgid "%s total table(s) found; %s with the indicated prefix."
1246
  msgstr ""
1247
 
1248
+ #: src/addons/moredatabase.php:137, src/admin.php:1421
1249
  msgid "Messages:"
1250
  msgstr ""
1251
 
1333
  msgid "tables"
1334
  msgstr ""
1335
 
1336
+ #: src/addons/morefiles.php:55, src/admin.php:722
1337
  msgctxt "(verb)"
1338
  msgid "Download"
1339
  msgstr ""
1414
  msgid "Add directory..."
1415
  msgstr ""
1416
 
1417
+ #: src/addons/morefiles.php:297, src/admin.php:689
1418
  msgid "Cancel"
1419
  msgstr ""
1420
 
1430
  msgid "Please choose a file or directory"
1431
  msgstr ""
1432
 
1433
+ #: src/addons/morefiles.php:443, src/admin.php:3214
1434
  msgid "Exclude these:"
1435
  msgstr ""
1436
 
1437
+ #: src/addons/morefiles.php:445, src/admin.php:3216
1438
  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."
1439
  msgstr ""
1440
 
1454
  msgid "Remote Storage Options"
1455
  msgstr ""
1456
 
1457
+ #: src/addons/multisite.php:65, src/addons/multisite.php:689, src/options.php:50
1458
  msgid "UpdraftPlus Backups"
1459
  msgstr ""
1460
 
1461
+ #: src/addons/multisite.php:174
1462
  msgid "Multisite Install"
1463
  msgstr ""
1464
 
1465
+ #: src/addons/multisite.php:467, src/class-updraftplus.php:1783
1466
  msgid "Uploads"
1467
  msgstr ""
1468
 
1469
+ #: src/addons/multisite.php:561
1470
  msgid "Which site to restore"
1471
  msgstr ""
1472
 
1473
+ #: src/addons/multisite.php:565
1474
  msgid "All sites"
1475
  msgstr ""
1476
 
1477
+ #: src/addons/multisite.php:570
1478
  msgid "may include some site-wide data"
1479
  msgstr ""
1480
 
1481
+ #: src/addons/multisite.php:579
1482
  msgid "Read more..."
1483
  msgstr ""
1484
 
1485
+ #: src/addons/multisite.php:659
1486
  msgid "Blog uploads"
1487
  msgstr ""
1488
 
1530
  msgid "Account is not authorized (%s)."
1531
  msgstr ""
1532
 
1533
+ #: src/addons/onedrive.php:718, src/class-updraftplus.php:468, src/methods/dropbox.php:176, src/methods/dropbox.php:598, src/methods/dropbox.php:625, src/methods/dropbox.php:638, src/methods/dropbox.php:784
1534
  msgid "%s error: %s"
1535
  msgstr ""
1536
 
1594
  msgid "Your label for this backup (optional)"
1595
  msgstr ""
1596
 
1597
+ #: src/addons/reporting.php:70, src/addons/reporting.php:169, src/backup.php:962, src/class-updraftplus.php:4360
1598
  msgid "Backup of:"
1599
  msgstr ""
1600
 
1642
  msgid "Time taken:"
1643
  msgstr ""
1644
 
1645
+ #: src/addons/reporting.php:211, src/admin.php:3415
1646
  msgid "Uploaded to:"
1647
  msgstr ""
1648
 
1649
+ #: src/addons/reporting.php:233, src/admin.php:3427
1650
  msgid "None"
1651
  msgstr ""
1652
 
1678
  msgid "Log all messages to syslog (only server admins are likely to want this)"
1679
  msgstr ""
1680
 
1681
+ #: src/addons/reporting.php:451, src/admin.php:645
1682
  msgid "To send to more than one address, separate each address with a comma."
1683
  msgstr ""
1684
 
1685
+ #: src/addons/reporting.php:453, src/admin.php:640
1686
  msgid "Send a report only when there are warnings/errors"
1687
  msgstr ""
1688
 
1689
+ #: src/addons/reporting.php:455, src/addons/reporting.php:455, src/admin.php:642
1690
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
1691
  msgstr ""
1692
 
1693
+ #: src/addons/reporting.php:455, src/admin.php:641
1694
  msgid "When the Email storage method is enabled, also send the entire backup"
1695
  msgstr ""
1696
 
1930
  msgid "Check your file permissions: Could not successfully create and enter directory:"
1931
  msgstr ""
1932
 
1933
+ #: src/addons/sftp.php:136, src/addons/sftp.php:148, src/methods/cloudfiles.php:159, src/methods/cloudfiles.php:201, src/methods/openstack-base.php:81, src/methods/openstack-base.php:288, src/methods/s3.php:357, src/methods/s3.php:369, src/methods/s3.php:370
1934
  msgid "%s Error: Failed to upload"
1935
  msgstr ""
1936
 
2043
  msgid "Path"
2044
  msgstr ""
2045
 
2046
+ #: src/admin.php:84
2047
  msgid "template not found"
2048
  msgstr ""
2049
 
2050
+ #: src/admin.php:267, src/admin.php:288, src/admin.php:295
2051
  msgid "Nothing currently scheduled"
2052
  msgstr ""
2053
 
2054
+ #: src/admin.php:277
2055
  msgid "At the same time as the files backup"
2056
  msgstr ""
2057
 
2058
+ #: src/admin.php:297, src/admin.php:4438
2059
  msgid "Files"
2060
  msgstr ""
2061
 
2062
+ #: src/admin.php:297, src/backup.php:871
2063
  msgid "Files and database"
2064
  msgstr ""
2065
 
2066
+ #: src/admin.php:516, src/templates/wp-admin/settings/tab-bar.php:5
2067
  msgid "Current Status"
2068
  msgstr ""
2069
 
2070
+ #: src/admin.php:516, src/admin.php:688, src/templates/wp-admin/settings/tab-status.php:27
2071
  msgid "Backup Now"
2072
  msgstr ""
2073
 
2074
+ #: src/admin.php:524, src/admin.php:666, src/admin.php:1679, src/includes/deprecated-actions.php:29, src/templates/wp-admin/settings/downloading-and-restoring.php:21, src/templates/wp-admin/settings/tab-bar.php:6
2075
  msgid "Existing Backups"
2076
  msgstr ""
2077
 
2078
+ #: src/admin.php:532, src/admin.php:886, src/templates/wp-admin/settings/tab-bar.php:7
2079
  msgid "Settings"
2080
  msgstr ""
2081
 
2082
+ #: src/admin.php:540, src/templates/wp-admin/settings/tab-bar.php:8
2083
  msgid "Advanced Tools"
2084
  msgstr ""
2085
 
2086
+ #: src/admin.php:548
2087
  msgid "Extensions"
2088
  msgstr ""
2089
 
2090
+ #: src/admin.php:643
2091
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
2092
  msgstr ""
2093
 
2094
+ #: src/admin.php:644
2095
  msgid "Rescanning remote and local storage for backup sets..."
2096
  msgstr ""
2097
 
2098
+ #: src/admin.php:646
2099
  msgid "If you exclude both the database and the files, then you have excluded everything!"
2100
  msgstr ""
2101
 
2102
+ #: src/admin.php:647
2103
  msgid "You have chosen to backup files, but no file entities have been selected"
2104
  msgstr ""
2105
 
2106
+ #: src/admin.php:648
2107
  msgid "You have chosen to backup a database, but no tables have been selected"
2108
  msgstr ""
2109
 
2110
+ #: src/admin.php:649
2111
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
2112
  msgstr ""
2113
 
2114
+ #: src/admin.php:651
2115
  msgid "The web server returned an error code (try again, or check your web server logs)"
2116
  msgstr ""
2117
 
2118
+ #: src/admin.php:652
2119
  msgid "The new user's RackSpace console password is (this will not be shown again):"
2120
  msgstr ""
2121
 
2122
+ #: src/admin.php:653
2123
  msgid "Trying..."
2124
  msgstr ""
2125
 
2126
+ #: src/admin.php:654
2127
  msgid "Fetching..."
2128
  msgstr ""
2129
 
2130
+ #: src/admin.php:655, src/templates/wp-admin/settings/downloading-and-restoring.php:32
2131
  msgid "calculating..."
2132
  msgstr ""
2133
 
2134
+ #: src/admin.php:656
2135
  msgid "Begun looking for this entity"
2136
  msgstr ""
2137
 
2138
+ #: src/admin.php:657
2139
  msgid "Some files are still downloading or being processed - please wait."
2140
  msgstr ""
2141
 
2142
+ #: src/admin.php:658
2143
  msgid "Processing files - please wait..."
2144
  msgstr ""
2145
 
2146
+ #: src/admin.php:659
2147
  msgid "Error: the server sent an empty response."
2148
  msgstr ""
2149
 
2150
+ #: src/admin.php:660
2151
  msgid "Warnings:"
2152
  msgstr ""
2153
 
2154
+ #: src/admin.php:662
2155
  msgid "Error: the server sent us a response which we did not understand."
2156
  msgstr ""
2157
 
2158
+ #: src/admin.php:663, src/admin.php:3997
2159
  msgid "Error data:"
2160
  msgstr ""
2161
 
2162
+ #: src/admin.php:665, src/admin.php:1247, src/admin.php:1710, src/class-updraftplus.php:1197, src/class-updraftplus.php:1241, src/methods/addon-base-v2.php:95, src/methods/addon-base-v2.php:100, src/methods/addon-base-v2.php:205, src/methods/addon-base-v2.php:225, src/methods/stream-base.php:200, src/restorer.php:2282, src/restorer.php:2307, src/restorer.php:2388, src/updraftplus.php:156
2163
  msgid "Error"
2164
  msgstr ""
2165
 
2166
+ #: src/admin.php:667, src/admin.php:1950
2167
  msgid "File ready."
2168
  msgstr ""
2169
 
2170
+ #: src/admin.php:668, src/admin.php:2254, src/admin.php:2263, src/admin.php:2272, src/admin.php:2314, src/admin.php:2878, src/templates/wp-admin/settings/existing-backups-table.php:16
2171
  msgid "Actions"
2172
  msgstr ""
2173
 
2174
+ #: src/admin.php:669
2175
  msgid "Delete from your web server"
2176
  msgstr ""
2177
 
2178
+ #: src/admin.php:670
2179
  msgid "Download to your computer"
2180
  msgstr ""
2181
 
2182
+ #: src/admin.php:671
2183
  msgid "Browse contents"
2184
  msgstr ""
2185
 
2186
+ #: src/admin.php:672
2187
  msgid "Download error: the server sent us a response which we did not understand."
2188
  msgstr ""
2189
 
2190
+ #: src/admin.php:673
2191
  msgid "Requesting start of backup..."
2192
  msgstr ""
2193
 
2194
+ #: src/admin.php:674
2195
  msgid "PHP information"
2196
  msgstr ""
2197
 
2198
+ #: src/admin.php:675, src/admin.php:2634
2199
  msgid "Delete Old Directories"
2200
  msgstr ""
2201
 
2202
+ #: src/admin.php:676
2203
  msgid "Raw backup history"
2204
  msgstr ""
2205
 
2206
+ #: src/admin.php:677, src/admin.php:678, src/includes/class-backup-history.php:286
2207
  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))."
2208
  msgstr ""
2209
 
2210
+ #: src/admin.php:677
2211
  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."
2212
  msgstr ""
2213
 
2214
+ #: src/admin.php:678, src/includes/class-backup-history.php:286
2215
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2216
  msgstr ""
2217
 
2218
+ #: src/admin.php:679
2219
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
2220
  msgstr ""
2221
 
2222
+ #: src/admin.php:680
2223
  msgid "Upload error:"
2224
  msgstr ""
2225
 
2226
+ #: src/admin.php:681
2227
  msgid "This file does not appear to be an UpdraftPlus encrypted database archive (such files are .gz.crypt files which have a name like: backup_(time)_(site name)_(code)_db.crypt.gz)."
2228
  msgstr ""
2229
 
2230
+ #: src/admin.php:682
2231
  msgid "Upload error"
2232
  msgstr ""
2233
 
2234
+ #: src/admin.php:683
2235
  msgid "Follow this link to attempt decryption and download the database file to your computer."
2236
  msgstr ""
2237
 
2238
+ #: src/admin.php:684
2239
  msgid "This decryption key will be attempted:"
2240
  msgstr ""
2241
 
2242
+ #: src/admin.php:685
2243
  msgid "Unknown server response:"
2244
  msgstr ""
2245
 
2246
+ #: src/admin.php:686
2247
  msgid "Unknown server response status:"
2248
  msgstr ""
2249
 
2250
+ #: src/admin.php:687
2251
  msgid "The file was uploaded."
2252
  msgstr ""
2253
 
2254
+ #: src/admin.php:691, src/central/bootstrap.php:535
2255
  msgid "Create"
2256
  msgstr ""
2257
 
2258
+ #: src/admin.php:692
2259
  msgid "You did not select any components to restore. Please select at least one, and then try again."
2260
  msgstr ""
2261
 
2262
+ #: src/admin.php:694
2263
  msgid "Close"
2264
  msgstr ""
2265
 
2266
+ #: src/admin.php:696, src/admin.php:3110
2267
  msgid "Download log file"
2268
  msgstr ""
2269
 
2270
+ #: src/admin.php:698, src/admin.php:724, src/admin.php:725
2271
  msgid "You have made changes to your settings, and not saved."
2272
  msgstr ""
2273
 
2274
+ #: src/admin.php:699
2275
  msgid "Saving..."
2276
  msgstr ""
2277
 
2278
+ #: src/admin.php:700, src/methods/updraftvault.php:302, src/methods/updraftvault.php:347, src/udaddons/options.php:249
2279
  msgid "Connect"
2280
  msgstr ""
2281
 
2282
+ #: src/admin.php:701
2283
  msgid "Connecting..."
2284
  msgstr ""
2285
 
2286
+ #: src/admin.php:702, src/methods/updraftvault.php:388
2287
  msgid "Disconnect"
2288
  msgstr ""
2289
 
2290
+ #: src/admin.php:703
2291
  msgid "Disconnecting..."
2292
  msgstr ""
2293
 
2294
+ #: src/admin.php:704
2295
  msgid "Counting..."
2296
  msgstr ""
2297
 
2298
+ #: src/admin.php:705
2299
  msgid "Update quota count"
2300
  msgstr ""
2301
 
2302
+ #: src/admin.php:706
2303
  msgid "Adding..."
2304
  msgstr ""
2305
 
2306
+ #: src/admin.php:708
2307
  msgid "Resetting..."
2308
  msgstr ""
2309
 
2310
+ #: src/admin.php:709
2311
  msgid "Creating..."
2312
  msgstr ""
2313
 
2314
+ #: src/admin.php:709
2315
  msgid "your PHP install lacks the openssl module; as a result, this can take minutes; if nothing has happened by then, then you should either try a smaller key size, or ask your web hosting company how to enable this PHP module on your setup."
2316
  msgstr ""
2317
 
2318
+ #: src/admin.php:712
2319
  msgid "Please give this key a name (e.g. indicate the site it is for):"
2320
  msgstr ""
2321
 
2322
+ #: src/admin.php:714
2323
  msgid "key name"
2324
  msgstr ""
2325
 
2326
+ #: src/admin.php:715
2327
  msgid "Deleting..."
2328
  msgstr ""
2329
 
2330
+ #: src/admin.php:716
2331
  msgid "Please enter a valid URL"
2332
  msgstr ""
2333
 
2334
+ #: src/admin.php:717
2335
  msgid "We requested to delete the file, but could not understand the server's response"
2336
  msgstr ""
2337
 
2338
+ #: src/admin.php:723
2339
  msgid "With UpdraftPlus Premium, you can directly download individual files from here."
2340
  msgstr ""
2341
 
2342
+ #: src/admin.php:724
2343
  msgid "You should save your changes to ensure that they are used for making your backup."
2344
  msgstr ""
2345
 
2346
+ #: src/admin.php:725
2347
  msgid "Your export file will be of your displayed settings, not your saved ones."
2348
  msgstr ""
2349
 
2350
+ #: src/admin.php:728
2351
  msgid "day"
2352
  msgstr ""
2353
 
2354
+ #: src/admin.php:729
2355
  msgid "in the month"
2356
  msgstr ""
2357
 
2358
+ #: src/admin.php:730
2359
  msgid "day(s)"
2360
  msgstr ""
2361
 
2362
+ #: src/admin.php:731
2363
  msgid "hour(s)"
2364
  msgstr ""
2365
 
2366
+ #: src/admin.php:732
2367
  msgid "week(s)"
2368
  msgstr ""
2369
 
2370
+ #: src/admin.php:733
2371
  msgid "For backups older than"
2372
  msgstr ""
2373
 
2374
+ #: src/admin.php:735
2375
  msgid "Processing..."
2376
  msgstr ""
2377
 
2378
+ #: src/admin.php:736
2379
  msgid "Please fill in the required information."
2380
  msgstr ""
2381
 
2382
+ #: src/admin.php:737, src/methods/backup-module.php:253
2383
  msgid "Test %s Settings"
2384
  msgstr ""
2385
 
2386
+ #: src/admin.php:738
2387
  msgid "Testing %s Settings..."
2388
  msgstr ""
2389
 
2390
+ #: src/admin.php:739
2391
  msgid "%s settings test result:"
2392
  msgstr ""
2393
 
2394
+ #: src/admin.php:740
2395
  msgid "Nothing yet logged"
2396
  msgstr ""
2397
 
2398
+ #: src/admin.php:741
2399
  msgid "You have not yet selected a file to import."
2400
  msgstr ""
2401
 
2402
+ #: src/admin.php:742
2403
  msgid "Error: The chosen file is corrupt. Please choose a valid UpdraftPlus export file."
2404
  msgstr ""
2405
 
2406
+ #: src/admin.php:745
2407
  msgid "Importing..."
2408
  msgstr ""
2409
 
2410
+ #: src/admin.php:746
2411
  msgid "This will import data from:"
2412
  msgstr ""
2413
 
2414
+ #: src/admin.php:747
2415
  msgid "Which was exported on:"
2416
  msgstr ""
2417
 
2418
+ #: src/admin.php:748
2419
  msgid "Do you want to carry out the import?"
2420
  msgstr ""
2421
 
2422
+ #: src/admin.php:749
2423
  msgid "Complete"
2424
  msgstr ""
2425
 
2426
+ #: src/admin.php:751
2427
  msgid "remote files deleted"
2428
  msgstr ""
2429
 
2430
+ #: src/admin.php:752
2431
  msgid "HTTP code:"
2432
  msgstr ""
2433
 
2434
+ #: src/admin.php:753
2435
  msgid "The file failed to upload. Please check the following:"
2436
  msgstr ""
2437
 
2438
+ #: src/admin.php:753
2439
  msgid "Any settings in your .htaccess or web.config file that affects the maximum upload or post size."
2440
  msgstr ""
2441
 
2442
+ #: src/admin.php:753
2443
  msgid "The available memory on the server."
2444
  msgstr ""
2445
 
2446
+ #: src/admin.php:753
2447
  msgid "That you are attempting to upload a zip file previously created by UpdraftPlus."
2448
  msgstr ""
2449
 
2450
+ #: src/admin.php:753
2451
  msgid "Further information may be found in the browser JavaScript console, and the server PHP error logs."
2452
  msgstr ""
2453
 
2454
+ #: src/admin.php:754
2455
  msgid "Browsing zip file"
2456
  msgstr ""
2457
 
2458
+ #: src/admin.php:755
2459
  msgid "Select a file to view information about it"
2460
  msgstr ""
2461
 
2462
+ #: src/admin.php:756
2463
  msgid "Search"
2464
  msgstr ""
2465
 
2466
+ #: src/admin.php:757
2467
  msgid "Unable to download file. This could be caused by a timeout. It would be best to download the zip to your computer."
2468
  msgstr ""
2469
 
2470
+ #: src/admin.php:758
2471
  msgid "Loading log file"
2472
  msgstr ""
2473
 
2474
+ #: src/admin.php:761
2475
  msgid "Please enter a valid URL e.g http://example.com"
2476
  msgstr ""
2477
 
2478
+ #: src/admin.php:890
2479
  msgid "Add-Ons / Pro Support"
2480
  msgstr ""
2481
 
2482
+ #: src/admin.php:932
2483
  msgid "An error occurred when fetching storage module options: "
2484
  msgstr ""
2485
 
2486
+ #: src/admin.php:936, src/includes/class-commands.php:376, src/templates/wp-admin/settings/tab-status.php:22
2487
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
2488
  msgstr ""
2489
 
2490
+ #: src/admin.php:941
2491
  msgid "Welcome to UpdraftPlus!"
2492
  msgstr ""
2493
 
2494
+ #: src/admin.php:941
2495
  msgid "To make a backup, just press the Backup Now button."
2496
  msgstr ""
2497
 
2498
+ #: src/admin.php:941
2499
  msgid "To change any of the default settings of what is backed up, to configure scheduled backups, to send your backups to remote storage (recommended), and more, go to the settings tab."
2500
  msgstr ""
2501
 
2502
+ #: src/admin.php:945, src/admin.php:949, src/admin.php:953, src/admin.php:957, src/admin.php:961, src/admin.php:970, src/admin.php:3271, src/admin.php:3278, src/admin.php:3280, src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468, src/methods/ftp.php:309, src/methods/openstack-base.php:549, src/methods/s3.php:828, src/methods/s3.php:832, src/methods/updraftvault.php:286, src/templates/wp-admin/settings/downloading-and-restoring.php:27, src/udaddons/updraftplus-addons.php:242
2503
  msgid "Warning"
2504
  msgstr ""
2505
 
2506
+ #: src/admin.php:945, src/class-updraftplus.php:783
2507
  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)"
2508
  msgstr ""
2509
 
2510
+ #: src/admin.php:949
2511
  msgid "The scheduler is disabled in your WordPress install, via the DISABLE_WP_CRON setting. No backups can run (even &quot;Backup Now&quot;) unless either you have set up a facility to call the scheduler manually, or until it is enabled."
2512
  msgstr ""
2513
 
2514
+ #: src/admin.php:953
2515
  msgid "You have less than %s of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue."
2516
  msgstr ""
2517
 
2518
+ #: src/admin.php:957
2519
  msgid "UpdraftPlus does not officially support versions of WordPress before %s. It may work for you, but if it does not, then please be aware that no support is available until you upgrade WordPress."
2520
  msgstr ""
2521
 
2522
+ #: src/admin.php:961
2523
  msgid "Your website is hosted using the %s web server."
2524
  msgstr ""
2525
 
2526
+ #: src/admin.php:961
2527
  msgid "Please consult this FAQ if you have problems backing up."
2528
  msgstr ""
2529
 
2530
+ #: src/admin.php:965
2531
  msgid "Notice"
2532
  msgstr ""
2533
 
2534
+ #: src/admin.php:965
2535
  msgid "UpdraftPlus's debug mode is on. You may see debugging notices on this page not just from UpdraftPlus, but from any other plugin installed. Please try to make sure that the notice you are seeing is from UpdraftPlus before you raise a support request."
2536
  msgstr ""
2537
 
2538
+ #: src/admin.php:970
2539
  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."
2540
  msgstr ""
2541
 
2542
+ #: src/admin.php:970
2543
  msgid "Read this page for a guide to possible causes and how to fix it."
2544
  msgstr ""
2545
 
2546
+ #: src/admin.php:977, src/admin.php:981, src/admin.php:985, src/admin.php:989, src/admin.php:993, src/class-updraftplus.php:520, src/class-updraftplus.php:555, src/class-updraftplus.php:560, src/class-updraftplus.php:565
2547
  msgid "UpdraftPlus notice:"
2548
  msgstr ""
2549
 
2550
+ #: src/admin.php:977, src/admin.php:981, src/admin.php:989, src/admin.php:993
2551
  msgid "Follow this link to authorize access to your %s account (you will not be able to back up to %s without it)."
2552
  msgstr ""
2553
 
2554
+ #: src/admin.php:985
2555
  msgid "%s has been chosen for remote storage, but you are not currently connected."
2556
  msgstr ""
2557
 
2558
+ #: src/admin.php:985
2559
  msgid "Go to the remote storage settings in order to connect."
2560
  msgstr ""
2561
 
2562
+ #: src/admin.php:1074, src/admin.php:1084
2563
  msgid "Error: invalid path"
2564
  msgstr ""
2565
 
2566
+ #: src/admin.php:1211
2567
  msgid "File is not locally present - needs retrieving from remote storage"
2568
  msgstr ""
2569
 
2570
+ #: src/admin.php:1285, src/admin.php:3968, src/class-updraftplus.php:2118, src/class-updraftplus.php:2183, src/class-updraftplus.php:2317
2571
  msgid "A PHP exception (%s) has occurred: %s"
2572
  msgstr ""
2573
 
2574
+ #: src/admin.php:1292, src/admin.php:3976, src/class-updraftplus.php:2125, src/class-updraftplus.php:2190, src/class-updraftplus.php:2324
2575
  msgid "A PHP fatal error (%s) has occurred: %s"
2576
  msgstr ""
2577
 
2578
+ #: src/admin.php:1297
2579
  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"
2580
  msgstr ""
2581
 
2582
+ #: src/admin.php:1475, src/includes/class-wpadmin-commands.php:465
2583
  msgid "Backup set not found"
2584
  msgstr ""
2585
 
2586
+ #: src/admin.php:1557
2587
  msgid "Did not know how to delete from this cloud service."
2588
  msgstr ""
2589
 
2590
+ #: src/admin.php:1631
2591
  msgid "Backup sets removed:"
2592
  msgstr ""
2593
 
2594
+ #: src/admin.php:1632
2595
  msgid "Local files deleted:"
2596
  msgstr ""
2597
 
2598
+ #: src/admin.php:1633
2599
  msgid "Remote files deleted:"
2600
  msgstr ""
2601
 
2602
+ #: src/admin.php:1730
2603
  msgid "Job deleted"
2604
  msgstr ""
2605
 
2606
+ #: src/admin.php:1738
2607
  msgid "Could not find that job - perhaps it has already finished?"
2608
  msgstr ""
2609
 
2610
+ #: src/admin.php:1814, src/admin.php:1826
2611
  msgid "Start backup"
2612
  msgstr ""
2613
 
2614
+ #: src/admin.php:1814
2615
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
2616
  msgstr ""
2617
 
2618
+ #: src/admin.php:1883, src/admin.php:1887, src/class-updraftplus.php:555
 
 
 
 
2619
  msgid "The log file could not be read."
2620
  msgstr ""
2621
 
2622
+ #: src/admin.php:1931
2623
  msgid "Download failed"
2624
  msgstr ""
2625
 
2626
+ #: src/admin.php:1961
2627
  msgid "Download in progress"
2628
  msgstr ""
2629
 
2630
+ #: src/admin.php:1964
2631
  msgid "No local copy present."
2632
  msgstr ""
2633
 
2634
+ #: src/admin.php:2001, src/backup.php:1159
2635
  msgid "Backup directory (%s) is not writable, or does not exist."
2636
  msgstr ""
2637
 
2638
+ #: src/admin.php:2001
2639
  msgid "You will find more information about this in the Settings section."
2640
  msgstr ""
2641
 
2642
+ #: src/admin.php:2036
2643
  msgid "This file could not be uploaded"
2644
  msgstr ""
2645
 
2646
+ #: src/admin.php:2080
2647
  msgid "This backup was created by %s, and can be imported."
2648
  msgstr ""
2649
 
2650
+ #: src/admin.php:2083
2651
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
2652
  msgstr ""
2653
 
2654
+ #: src/admin.php:2091
2655
  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?"
2656
  msgstr ""
2657
 
2658
+ #: src/admin.php:2173
2659
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
2660
  msgstr ""
2661
 
2662
+ #: src/admin.php:2214, src/admin.php:2223
2663
  msgid "Sufficient information about the in-progress restoration operation could not be found."
2664
  msgstr ""
2665
 
2666
+ #: src/admin.php:2305
2667
  msgid "Backup directory could not be created"
2668
  msgstr ""
2669
 
2670
+ #: src/admin.php:2312
2671
  msgid "Backup directory successfully created."
2672
  msgstr ""
2673
 
2674
+ #: src/admin.php:2330
2675
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
2676
  msgstr ""
2677
 
2678
+ #: src/admin.php:2333
2679
  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."
2680
  msgstr ""
2681
 
2682
+ #: src/admin.php:2348
2683
  msgid "OptimizePress 2.0 encodes its contents, so search/replace does not work."
2684
  msgstr ""
2685
 
2686
+ #: src/admin.php:2348
2687
  msgid "To fix this problem go here."
2688
  msgstr ""
2689
 
2690
+ #: src/admin.php:2350
2691
  msgid "For even more features and personal support, check out "
2692
  msgstr ""
2693
 
2694
+ #: src/admin.php:2352
2695
  msgid "Your backup has been restored."
2696
  msgstr ""
2697
 
2698
+ #: src/admin.php:2378
2699
  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)."
2700
  msgstr ""
2701
 
2702
+ #: src/admin.php:2378
2703
  msgid "Current limit is:"
2704
  msgstr ""
2705
 
2706
+ #: src/admin.php:2435
2707
  msgid "Backup Contents And Schedule"
2708
  msgstr ""
2709
 
2710
+ #: src/admin.php:2488
2711
  msgid "%s minutes, %s seconds"
2712
  msgstr ""
2713
 
2714
+ #: src/admin.php:2490
2715
  msgid "Unfinished restoration"
2716
  msgstr ""
2717
 
2718
+ #: src/admin.php:2491
2719
  msgid "You have an unfinished restoration operation, begun %s ago."
2720
  msgstr ""
2721
 
2722
+ #: src/admin.php:2496
2723
  msgid "Continue restoration"
2724
  msgstr ""
2725
 
2726
+ #: src/admin.php:2497, src/templates/wp-admin/notices/horizontal-notice.php:16, src/templates/wp-admin/notices/horizontal-notice.php:18
2727
  msgid "Dismiss"
2728
  msgstr ""
2729
 
2730
+ #: src/admin.php:2507
2731
  msgid "Does nothing happen when you attempt backups?"
2732
  msgstr ""
2733
 
2734
+ #: src/admin.php:2507
2735
  msgid "Go here for help."
2736
  msgstr ""
2737
 
2738
+ #: src/admin.php:2516
2739
  msgid "Include the database in the backup"
2740
  msgstr ""
2741
 
2742
+ #: src/admin.php:2524
2743
  msgid "All WordPress tables will be backed up."
2744
  msgstr ""
2745
 
2746
+ #: src/admin.php:2524
2747
  msgid "With UpdraftPlus Premium, you can choose to backup non-WordPress tables, backup only specified tables, and backup other databases too."
2748
  msgstr ""
2749
 
2750
+ #: src/admin.php:2530
2751
  msgid "Include any files in the backup"
2752
  msgstr ""
2753
 
2754
+ #: src/admin.php:2532
2755
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
2756
  msgstr ""
2757
 
2758
+ #: src/admin.php:2556
2759
  msgid "Backups in progress:"
2760
  msgstr ""
2761
 
2762
+ #: src/admin.php:2566, src/admin.php:2572, src/central/bootstrap.php:169
2763
  msgid "(Nothing yet logged)"
2764
  msgstr ""
2765
 
2766
+ #: src/admin.php:2583
2767
  msgid "Latest UpdraftPlus.com news:"
2768
  msgstr ""
2769
 
2770
+ #: src/admin.php:2607
2771
  msgid "Download most recently modified log file"
2772
  msgstr ""
2773
 
2774
+ #: src/admin.php:2628
2775
  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."
2776
  msgstr ""
2777
 
2778
+ #: src/admin.php:2684
2779
  msgid "The backup has finished running"
2780
  msgstr ""
2781
 
2782
+ #: src/admin.php:2684, src/admin.php:3632, src/admin.php:3633
2783
  msgid "View Log"
2784
  msgstr ""
2785
 
2786
+ #: src/admin.php:2688
2787
  msgid "(None)"
2788
  msgstr ""
2789
 
2790
+ #: src/admin.php:2713
2791
  msgid "Backup begun"
2792
  msgstr ""
2793
 
2794
+ #: src/admin.php:2718
2795
  msgid "Creating file backup zips"
2796
  msgstr ""
2797
 
2798
+ #: src/admin.php:2731
2799
  msgid "Created file backup zips"
2800
  msgstr ""
2801
 
2802
+ #: src/admin.php:2737
2803
  msgid "Uploading files to remote storage"
2804
  msgstr ""
2805
 
2806
+ #: src/admin.php:2744
2807
  msgid "(%s%%, file %s of %s)"
2808
  msgstr ""
2809
 
2810
+ #: src/admin.php:2749
2811
  msgid "Pruning old backup sets"
2812
  msgstr ""
2813
 
2814
+ #: src/admin.php:2753
2815
  msgid "Waiting until scheduled time to retry because of errors"
2816
  msgstr ""
2817
 
2818
+ #: src/admin.php:2758
2819
  msgid "Backup finished"
2820
  msgstr ""
2821
 
2822
+ #: src/admin.php:2772
2823
  msgid "Created database backup"
2824
  msgstr ""
2825
 
2826
+ #: src/admin.php:2783
2827
  msgid "Creating database backup"
2828
  msgstr ""
2829
 
2830
+ #: src/admin.php:2785
2831
  msgid "table: %s"
2832
  msgstr ""
2833
 
2834
+ #: src/admin.php:2798
2835
  msgid "Encrypting database"
2836
  msgstr ""
2837
 
2838
+ #: src/admin.php:2806
2839
  msgid "Encrypted database"
2840
  msgstr ""
2841
 
2842
+ #: src/admin.php:2808, src/central/bootstrap.php:424, src/central/bootstrap.php:431, src/methods/updraftvault.php:382, src/methods/updraftvault.php:467
2843
  msgid "Unknown"
2844
  msgstr ""
2845
 
2846
+ #: src/admin.php:2825
2847
  msgid "next resumption: %d (after %ss)"
2848
  msgstr ""
2849
 
2850
+ #: src/admin.php:2826
2851
  msgid "last activity: %ss ago"
2852
  msgstr ""
2853
 
2854
+ #: src/admin.php:2841
2855
  msgid "Job ID: %s"
2856
  msgstr ""
2857
 
2858
+ #: src/admin.php:2844
2859
  msgid "show log"
2860
  msgstr ""
2861
 
2862
+ #: src/admin.php:2846
2863
  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."
2864
  msgstr ""
2865
 
2866
+ #: src/admin.php:2846
2867
  msgid "stop"
2868
  msgstr ""
2869
 
2870
+ #: src/admin.php:2853, src/admin.php:3096
2871
  msgid "Warning: %s"
2872
  msgstr ""
2873
 
2874
+ #: src/admin.php:2871, src/admin.php:2871
2875
  msgid "Remove old directories"
2876
  msgstr ""
2877
 
2878
+ #: src/admin.php:2874
2879
  msgid "Old directories successfully removed."
2880
  msgstr ""
2881
 
2882
+ #: src/admin.php:2876
2883
  msgid "Old directory removal failed for some reason. You may want to do this manually."
2884
  msgstr ""
2885
 
2886
+ #: src/admin.php:2988
2887
  msgid "The request to the filesystem to create the directory failed."
2888
  msgstr ""
2889
 
2890
+ #: src/admin.php:3002
2891
  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"
2892
  msgstr ""
2893
 
2894
+ #: src/admin.php:3007
2895
  msgid "The folder exists, but your webserver does not have permission to write to it."
2896
  msgstr ""
2897
 
2898
+ #: src/admin.php:3007
2899
  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."
2900
  msgstr ""
2901
 
2902
+ #: src/admin.php:3084
2903
  msgid "incremental backup; base backup: %s"
2904
  msgstr ""
2905
 
2906
+ #: src/admin.php:3114
2907
  msgid "No backup has been completed"
2908
  msgstr ""
2909
 
2910
+ #: src/admin.php:3123
2911
  msgctxt "i.e. Non-automatic"
2912
  msgid "Manual"
2913
  msgstr ""
2914
 
2915
+ #: src/admin.php:3124, src/admin.php:3125, src/admin.php:3126, src/updraftplus.php:99, src/updraftplus.php:100
2916
  msgid "Every %s hours"
2917
  msgstr ""
2918
 
2919
+ #: src/admin.php:3127
2920
  msgid "Daily"
2921
  msgstr ""
2922
 
2923
+ #: src/admin.php:3128
2924
  msgid "Weekly"
2925
  msgstr ""
2926
 
2927
+ #: src/admin.php:3129
2928
  msgid "Fortnightly"
2929
  msgstr ""
2930
 
2931
+ #: src/admin.php:3130
2932
  msgid "Monthly"
2933
  msgstr ""
2934
 
2935
+ #: src/admin.php:3136
2936
  msgid "Backup directory specified is writable, which is good."
2937
  msgstr ""
2938
 
2939
+ #: src/admin.php:3140
2940
  msgid "Backup directory specified does <b>not</b> exist."
2941
  msgstr ""
2942
 
2943
+ #: src/admin.php:3142
2944
  msgid "Backup directory specified exists, but is <b>not</b> writable."
2945
  msgstr ""
2946
 
2947
+ #: src/admin.php:3144
2948
  msgid "Follow this link to attempt to create the directory and set the permissions"
2949
  msgstr ""
2950
 
2951
+ #: src/admin.php:3144
2952
  msgid "or, to reset this option"
2953
  msgstr ""
2954
 
2955
+ #: src/admin.php:3144
2956
  msgid "click here"
2957
  msgstr ""
2958
 
2959
+ #: src/admin.php:3144
2960
  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."
2961
  msgstr ""
2962
 
2963
+ #: src/admin.php:3205
2964
  msgid "Your wp-content directory server path: %s"
2965
  msgstr ""
2966
 
2967
+ #: src/admin.php:3205
2968
  msgid "Any other directories found inside wp-content"
2969
  msgstr ""
2970
 
2971
+ #: src/admin.php:3271, src/methods/updraftvault.php:286
2972
  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."
2973
  msgstr ""
2974
 
2975
+ #: src/admin.php:3278
2976
  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)."
2977
  msgstr ""
2978
 
2979
+ #: src/admin.php:3280
2980
  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."
2981
  msgstr ""
2982
 
2983
+ #: src/admin.php:3283
2984
  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."
2985
  msgstr ""
2986
 
2987
+ #: src/admin.php:3432
2988
  msgid "Total backup size:"
2989
  msgstr ""
2990
 
2991
+ #: src/admin.php:3459
2992
  msgid "You have not yet made any backups."
2993
  msgstr ""
2994
 
2995
+ #: src/admin.php:3476, src/admin.php:3515
2996
  msgid "unknown source"
2997
  msgstr ""
2998
 
2999
+ #: src/admin.php:3482
3000
  msgid "Database (created by %s)"
3001
  msgstr ""
3002
 
3003
+ #: src/admin.php:3484
3004
  msgid "External database"
3005
  msgstr ""
3006
 
3007
+ #: src/admin.php:3516, src/includes/class-wpadmin-commands.php:152, src/restorer.php:1462
3008
  msgid "Backup created by unknown source (%s) - cannot be restored."
3009
  msgstr ""
3010
 
3011
+ #: src/admin.php:3519
3012
  msgid "Files and database WordPress backup (created by %s)"
3013
  msgstr ""
3014
 
3015
+ #: src/admin.php:3519
3016
  msgid "Files backup (created by %s)"
3017
  msgstr ""
3018
 
3019
+ #: src/admin.php:3545
3020
  msgid "Press here to download or browse"
3021
  msgstr ""
3022
 
3023
+ #: src/admin.php:3550
3024
  msgid "(%d archive(s) in set)."
3025
  msgstr ""
3026
 
3027
+ #: src/admin.php:3553
3028
  msgid "You appear to be missing one or more archives from this multi-archive set."
3029
  msgstr ""
3030
 
3031
+ #: src/admin.php:3583, src/admin.php:3585
3032
  msgid "(Not finished)"
3033
  msgstr ""
3034
 
3035
+ #: src/admin.php:3585
3036
  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."
3037
  msgstr ""
3038
 
3039
+ #: src/admin.php:3610
3040
  msgid "(backup set imported from remote location)"
3041
  msgstr ""
3042
 
3043
+ #: src/admin.php:3613
3044
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
3045
  msgstr ""
3046
 
3047
+ #: src/admin.php:3622
3048
  msgid "Delete this backup set"
3049
  msgstr ""
3050
 
3051
+ #: src/admin.php:3671
3052
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
3053
  msgstr ""
3054
 
3055
+ #: src/admin.php:3672
3056
  msgid "Backup does not exist in the backup history"
3057
  msgstr ""
3058
 
3059
+ #: src/admin.php:3701
3060
  msgid "Why am I seeing this?"
3061
  msgstr ""
3062
 
3063
+ #: src/admin.php:3719
3064
  msgid "UpdraftPlus Restoration: Progress"
3065
  msgstr ""
3066
 
3067
+ #: src/admin.php:3721
3068
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
3069
  msgstr ""
3070
 
3071
+ #: src/admin.php:3764
3072
  msgid "ABORT: Could not find the information on which entities to restore."
3073
  msgstr ""
3074
 
3075
+ #: src/admin.php:3765
3076
  msgid "If making a request for support, please include this information:"
3077
  msgstr ""
3078
 
3079
+ #: src/admin.php:3814
3080
  msgid "Final checks"
3081
  msgstr ""
3082
 
3083
+ #: src/admin.php:3841
3084
  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."
3085
  msgstr ""
3086
 
3087
+ #: src/admin.php:3853
3088
  msgid "Looking for %s archive: file name: %s"
3089
  msgstr ""
3090
 
3091
+ #: src/admin.php:3856
3092
  msgid "Skipping: this archive was already restored."
3093
  msgstr ""
3094
 
3095
+ #: src/admin.php:3868
3096
  msgid "Archive is expected to be size:"
3097
  msgstr ""
3098
 
3099
+ #: src/admin.php:3873
3100
  msgid "file is size:"
3101
  msgstr ""
3102
 
3103
+ #: src/admin.php:3876
3104
  msgid "The backup records do not contain information about the proper size of this file."
3105
  msgstr ""
3106
 
3107
+ #: src/admin.php:3879, src/admin.php:3880
3108
  msgid "Could not find one of the files for restoration"
3109
  msgstr ""
3110
 
3111
+ #: src/admin.php:3989
3112
  msgid "Error message"
3113
  msgstr ""
3114
 
3115
+ #: src/admin.php:3999, src/templates/wp-admin/settings/downloading-and-restoring.php:27
3116
  msgid "Please consult this FAQ for help on what to do about it."
3117
  msgstr ""
3118
 
3119
+ #: src/admin.php:4173
3120
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
3121
  msgstr ""
3122
 
3123
+ #: src/admin.php:4173
3124
  msgid "settings"
3125
  msgstr ""
3126
 
3127
+ #: src/admin.php:4173
3128
  msgid "Not got any remote storage?"
3129
  msgstr ""
3130
 
3131
+ #: src/admin.php:4173
3132
  msgid "Check out UpdraftPlus Vault."
3133
  msgstr ""
3134
 
3135
+ #: src/admin.php:4175
3136
  msgid "Send this backup to remote storage"
3137
  msgstr ""
3138
 
3139
+ #: src/admin.php:4262
3140
  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."
3141
  msgstr ""
3142
 
3143
+ #: src/admin.php:4269, src/templates/wp-admin/settings/tab-status.php:27
3144
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
3145
  msgstr ""
3146
 
3147
+ #: src/admin.php:4298
3148
  msgid "Your settings have been saved."
3149
  msgstr ""
3150
 
3151
+ #: src/admin.php:4303
3152
  msgid "Your settings failed to save. Please refresh the settings page and try again"
3153
  msgstr ""
3154
 
3155
+ #: src/admin.php:4351
3156
  msgid "Your settings have been wiped."
3157
  msgstr ""
3158
 
3159
+ #: src/admin.php:4431
3160
  msgid "Known backups (raw)"
3161
  msgstr ""
3162
 
3163
+ #: src/admin.php:4462
3164
  msgid "Options (raw)"
3165
  msgstr ""
3166
 
3167
+ #: src/admin.php:4465
3168
  msgid "Value"
3169
  msgstr ""
3170
 
3188
  msgid "Incremental"
3189
  msgstr ""
3190
 
3191
+ #: src/backup.php:869, src/class-updraftplus.php:2806
3192
  msgid "The backup was aborted by the user"
3193
  msgstr ""
3194
 
3316
  msgid "A very large file was encountered: %s (size: %s Mb)"
3317
  msgstr ""
3318
 
3319
+ #: src/backup.php:3038, src/class-updraftplus.php:796
3320
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
3321
  msgstr ""
3322
 
3500
  msgid "Create another key"
3501
  msgstr ""
3502
 
3503
+ #: src/class-updraftplus.php:520, src/class-updraftplus.php:565
3504
  msgid "The given file was not found, or could not be read."
3505
  msgstr ""
3506
 
3507
+ #: src/class-updraftplus.php:560
3508
  msgid "No log files were found."
3509
  msgstr ""
3510
 
3511
+ #: src/class-updraftplus.php:780
3512
  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)"
3513
  msgstr ""
3514
 
3515
+ #: src/class-updraftplus.php:809
3516
  msgid "Your free disk space is very low - only %s Mb remain"
3517
  msgstr ""
3518
 
3519
+ #: src/class-updraftplus.php:1157, src/methods/cloudfiles.php:223
3520
  msgid "%s error - failed to re-assemble chunks"
3521
  msgstr ""
3522
 
3523
+ #: src/class-updraftplus.php:1197, src/class-updraftplus.php:1241, src/methods/cloudfiles.php:405, src/methods/stream-base.php:265
3524
  msgid "Error opening local file: Failed to download"
3525
  msgstr ""
3526
 
3527
+ #: src/class-updraftplus.php:1265
3528
  msgid "Error - failed to download the file"
3529
  msgstr ""
3530
 
3531
+ #: src/class-updraftplus.php:1714, src/class-updraftplus.php:1716
3532
  msgid "files: %s"
3533
  msgstr ""
3534
 
3535
+ #: src/class-updraftplus.php:1733
3536
  msgid "External database (%s)"
3537
  msgstr ""
3538
 
3539
+ #: src/class-updraftplus.php:1736
3540
  msgid "Size: %s MB"
3541
  msgstr ""
3542
 
3543
+ #: src/class-updraftplus.php:1741, src/class-updraftplus.php:1746
3544
  msgid "%s checksum: %s"
3545
  msgstr ""
3546
 
3547
+ #: src/class-updraftplus.php:1781
3548
  msgid "Plugins"
3549
  msgstr ""
3550
 
3551
+ #: src/class-updraftplus.php:1782
3552
  msgid "Themes"
3553
  msgstr ""
3554
 
3555
+ #: src/class-updraftplus.php:1798
3556
  msgid "Others"
3557
  msgstr ""
3558
 
3559
+ #: src/class-updraftplus.php:2018
3560
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3561
  msgstr ""
3562
 
3563
+ #: src/class-updraftplus.php:2515
3564
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
3565
  msgstr ""
3566
 
3567
+ #: src/class-updraftplus.php:2812
3568
  msgid "The backup apparently succeeded and is now complete"
3569
  msgstr ""
3570
 
3571
+ #: src/class-updraftplus.php:2818
3572
  msgid "The backup apparently succeeded (with warnings) and is now complete"
3573
  msgstr ""
3574
 
3575
+ #: src/class-updraftplus.php:2823
3576
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
3577
  msgstr ""
3578
 
3579
+ #: src/class-updraftplus.php:2827
3580
  msgid "The backup attempt has finished, apparently unsuccessfully"
3581
  msgstr ""
3582
 
3583
+ #: src/class-updraftplus.php:2830
3584
  msgid "The backup has not finished; a resumption is scheduled"
3585
  msgstr ""
3586
 
3587
+ #: src/class-updraftplus.php:3315
3588
  msgid "Could not read the directory"
3589
  msgstr ""
3590
 
3591
+ #: src/class-updraftplus.php:3353
3592
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
3593
  msgstr ""
3594
 
3595
+ #: src/class-updraftplus.php:3967, src/class-updraftplus.php:4283, src/restorer.php:376
3596
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
3597
  msgstr ""
3598
 
3599
+ #: src/class-updraftplus.php:3986, src/class-updraftplus.php:4295, src/restorer.php:389
3600
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
3601
  msgstr ""
3602
 
3603
+ #: src/class-updraftplus.php:3986
3604
  msgid "The decryption key used:"
3605
  msgstr ""
3606
 
3607
+ #: src/class-updraftplus.php:4285
3608
  msgid "Decryption failed. The database file is encrypted."
3609
  msgstr ""
3610
 
3611
+ #: src/class-updraftplus.php:4302
3612
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3613
  msgstr ""
3614
 
3615
+ #: src/class-updraftplus.php:4310
3616
  msgid "Failed to open database file."
3617
  msgstr ""
3618
 
3619
+ #: src/class-updraftplus.php:4360
3620
  msgid "(version: %s)"
3621
  msgstr ""
3622
 
3623
+ #: src/class-updraftplus.php:4369
3624
  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."
3625
  msgstr ""
3626
 
3627
+ #: src/class-updraftplus.php:4372
3628
  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."
3629
  msgstr ""
3630
 
3631
+ #: src/class-updraftplus.php:4374
3632
  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."
3633
  msgstr ""
3634
 
3635
+ #: src/class-updraftplus.php:4374, src/class-updraftplus.php:4376
3636
  msgid "the migrator add-on"
3637
  msgstr ""
3638
 
3639
+ #: src/class-updraftplus.php:4376
3640
  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."
3641
  msgstr ""
3642
 
3643
+ #: src/class-updraftplus.php:4381, src/class-updraftplus.php:4399
3644
  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."
3645
  msgstr ""
3646
 
3647
+ #: src/class-updraftplus.php:4388, src/restorer.php:1010
3648
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
3649
  msgstr ""
3650
 
3651
+ #: src/class-updraftplus.php:4388, src/restorer.php:1010
3652
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
3653
  msgstr ""
3654
 
3655
+ #: src/class-updraftplus.php:4408, src/class-updraftplus.php:4415
3656
  msgid "%s version: %s"
3657
  msgstr ""
3658
 
3659
+ #: src/class-updraftplus.php:4409
3660
  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."
3661
  msgstr ""
3662
 
3663
+ #: src/class-updraftplus.php:4416
3664
  msgid "The site in this backup was running on a webserver with version %s of %s. "
3665
  msgstr ""
3666
 
3667
+ #: src/class-updraftplus.php:4416
3668
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
3669
  msgstr ""
3670
 
3671
+ #: src/class-updraftplus.php:4416
3672
  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."
3673
  msgstr ""
3674
 
3675
+ #: src/class-updraftplus.php:4416
3676
  msgid "Any support requests to do with %s should be raised with your web hosting company."
3677
  msgstr ""
3678
 
3679
+ #: src/class-updraftplus.php:4421, src/restorer.php:1689, src/restorer.php:1778, src/restorer.php:1804
3680
  msgid "Old table prefix:"
3681
  msgstr ""
3682
 
3683
+ #: src/class-updraftplus.php:4424
3684
  msgid "Backup label:"
3685
  msgstr ""
3686
 
3687
+ #: src/class-updraftplus.php:4432, src/class-updraftplus.php:4435, src/restorer.php:154
3688
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
3689
  msgstr ""
3690
 
3691
+ #: src/class-updraftplus.php:4435
3692
  msgid "It will be imported as a new site."
3693
  msgstr ""
3694
 
3695
+ #: src/class-updraftplus.php:4435
3696
  msgid "Please read this link for important information on this process."
3697
  msgstr ""
3698
 
3699
+ #: src/class-updraftplus.php:4439, src/restorer.php:1701
3700
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
3701
  msgstr ""
3702
 
3703
+ #: src/class-updraftplus.php:4443
3704
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
3705
  msgstr ""
3706
 
3707
+ #: src/class-updraftplus.php:4443
3708
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
3709
  msgstr ""
3710
 
3711
+ #: src/class-updraftplus.php:4450, src/restorer.php:1707
3712
  msgid "Site information:"
3713
  msgstr ""
3714
 
3715
+ #: src/class-updraftplus.php:4477
3716
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
3717
  msgstr ""
3718
 
3719
+ #: src/class-updraftplus.php:4477
3720
  msgid "You must upgrade MySQL to be able to use this database."
3721
  msgstr ""
3722
 
3723
+ #: src/class-updraftplus.php:4498
3724
  msgid "The database server that this WordPress site is running on doesn't support the character set (%s) which you are trying to import."
3725
  msgid_plural "The database server that this WordPress site is running on doesn't support the character sets (%s) which you are trying to import."
3726
  msgstr[0] ""
3727
  msgstr[1] ""
3728
 
3729
+ #: src/class-updraftplus.php:4498
3730
  msgid "You can choose another suitable character set instead and continue with the restoration at your own risk."
3731
  msgstr ""
3732
 
3733
+ #: src/class-updraftplus.php:4505
3734
  msgid "Your chosen character set to use instead:"
3735
  msgstr ""
3736
 
3737
+ #: src/class-updraftplus.php:4553
3738
  msgid "This database backup is missing core WordPress tables: %s"
3739
  msgstr ""
3740
 
3741
+ #: src/class-updraftplus.php:4556
3742
  msgid "This database backup has the following WordPress tables excluded: %s"
3743
  msgstr ""
3744
 
3745
+ #: src/class-updraftplus.php:4561
3746
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3747
  msgstr ""
3748
 
3749
+ #: src/class-updraftplus.php:4620, src/methods/ftp.php:309
3750
  msgid "Your web server's PHP installation has these functions disabled: %s."
3751
  msgstr ""
3752
 
3753
+ #: src/class-updraftplus.php:4620, src/methods/ftp.php:309, src/restorer.php:1493
3754
  msgid "Your hosting company must enable these functions before %s can work."
3755
  msgstr ""
3756
 
3757
+ #: src/class-updraftplus.php:4620, src/restorer.php:1493
3758
  msgid "restoration"
3759
  msgstr ""
3760
 
3761
+ #: src/class-updraftplus.php:4640
3762
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
3763
  msgstr ""
3764
 
3765
+ #: src/class-updraftplus.php:4647, src/class-updraftplus.php:4668
3766
  msgid "The attempt to undo the double-compression failed."
3767
  msgstr ""
3768
 
3769
+ #: src/class-updraftplus.php:4670
3770
  msgid "The attempt to undo the double-compression succeeded."
3771
  msgstr ""
3772
 
4018
  msgid "Failed to download"
4019
  msgstr ""
4020
 
4021
+ #: src/methods/addon-base-v2.php:243, src/methods/cloudfiles.php:458, src/methods/dropbox.php:497, src/methods/ftp.php:321, src/methods/googledrive.php:1076, src/methods/openstack-base.php:539, src/methods/s3.php:803, src/methods/stream-base.php:218
4022
  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."
4023
  msgstr ""
4024
 
4025
+ #: src/methods/addon-base-v2.php:302, src/methods/stream-base.php:315
4026
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
4027
  msgstr ""
4028
 
4050
  msgid "Your %s version: %s."
4051
  msgstr ""
4052
 
4053
+ #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468, src/methods/openstack-base.php:549, src/methods/s3.php:832
4054
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
4055
  msgstr ""
4056
 
4057
+ #: src/methods/cloudfiles-new.php:107, src/methods/cloudfiles.php:468, src/methods/openstack-base.php:549, src/methods/s3.php:832
4058
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4059
  msgstr ""
4060
 
4090
  msgid "API key"
4091
  msgstr ""
4092
 
4093
+ #: src/methods/cloudfiles.php:107, src/methods/cloudfiles.php:111, src/methods/cloudfiles.php:252, src/methods/cloudfiles.php:298, src/methods/cloudfiles.php:349, src/methods/cloudfiles.php:353, src/methods/openstack-base.php:44, src/methods/openstack-base.php:325, src/methods/openstack-base.php:390, src/methods/openstack-base.php:463, src/methods/openstack-base.php:466, src/methods/openstack-base.php:484, src/methods/openstack-base.php:489
4094
  msgid "%s authentication failed"
4095
  msgstr ""
4096
 
4106
  msgid "%s error - failed to upload file"
4107
  msgstr ""
4108
 
4109
+ #: src/methods/cloudfiles.php:422, src/methods/openstack-base.php:428
 
 
 
 
4110
  msgid "Error downloading remote file: Failed to download"
4111
  msgstr ""
4112
 
4142
  msgid "Cloud Files"
4143
  msgstr ""
4144
 
4145
+ #: src/methods/cloudfiles.php:551, src/methods/openstack-base.php:445
4146
  msgid "Failure: No container details were given."
4147
  msgstr ""
4148
 
4150
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4151
  msgstr ""
4152
 
4153
+ #: src/methods/cloudfiles.php:582, src/methods/openstack-base.php:503
4154
  msgid "We accessed the container, and were able to create files within it."
4155
  msgstr ""
4156
 
4262
  msgid "For more options, use the \"%s\" add-on."
4263
  msgstr ""
4264
 
4265
+ #: src/methods/email.php:76, src/templates/wp-admin/settings/form-contents.php:271, src/templates/wp-admin/settings/tab-addons.php:199, src/templates/wp-admin/settings/tab-addons.php:200
4266
  msgid "Reporting"
4267
  msgstr ""
4268
 
4406
  msgid "To de-authorize UpdraftPlus (all sites) from accessing your Google Drive, follow this link to your Google account settings."
4407
  msgstr ""
4408
 
4409
+ #: src/methods/openstack-base.php:48, src/methods/openstack-base.php:116, src/methods/openstack-base.php:123, src/methods/openstack-base.php:329, src/methods/openstack-base.php:394
4410
  msgid "%s error - failed to access the container"
4411
  msgstr ""
4412
 
4413
+ #: src/methods/openstack-base.php:56, src/methods/openstack-base.php:337, src/methods/openstack-base.php:406
4414
  msgid "Could not access %s container"
4415
  msgstr ""
4416
 
4417
+ #: src/methods/openstack-base.php:414
4418
  msgid "The %s object was not found"
4419
  msgstr ""
4420
 
4421
+ #: src/methods/openstack-base.php:498
4422
  msgid "%s error - we accessed the container, but failed to create a file within it"
4423
  msgstr ""
4424
 
4425
+ #: src/methods/openstack-base.php:499, src/methods/openstack-base.php:504
4426
  msgid "Region: %s"
4427
  msgstr ""
4428
 
4744
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
4745
  msgstr ""
4746
 
4747
+ #: src/options.php:192
4748
  msgid "UpdraftPlus warning:"
4749
  msgstr ""
4750
 
4751
+ #: src/options.php:192
4752
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
4753
  msgstr ""
4754
 
4755
+ #: src/options.php:192
4756
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
4757
  msgstr ""
4758
 
4759
+ #: src/options.php:192
4760
  msgid "Without upgrading, UpdraftPlus allows <strong>every</strong> blog admin who can modify plugin settings to back up (and hence access the data, including passwords, from) and restore (including with customised modifications, e.g. changed passwords) <strong>the entire network</strong>."
4761
  msgstr ""
4762
 
4763
+ #: src/options.php:192
4764
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
4765
  msgstr ""
4766
 
5477
  msgid "Backup using %s?"
5478
  msgstr ""
5479
 
5480
+ #: src/templates/wp-admin/settings/form-contents.php:132
5481
  msgid "You can send a backup to more than one destination with an add-on."
5482
  msgstr ""
5483
 
5484
+ #: src/templates/wp-admin/settings/form-contents.php:141
5485
  msgid "If you choose no remote storage, then the backups remain on the web-server. This is not recommended (unless you plan to manually copy them to your computer), as losing the web-server would mean losing both your website and the backups in one event."
5486
  msgstr ""
5487
 
5488
+ #: src/templates/wp-admin/settings/form-contents.php:167
5489
  msgid "File Options"
5490
  msgstr ""
5491
 
5492
+ #: src/templates/wp-admin/settings/form-contents.php:171
5493
  msgid "Include in files backup"
5494
  msgstr ""
5495
 
5496
+ #: src/templates/wp-admin/settings/form-contents.php:174
5497
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5498
  msgstr ""
5499
 
5500
+ #: src/templates/wp-admin/settings/form-contents.php:174
5501
  msgid "See also the \"More Files\" add-on from our shop."
5502
  msgstr ""
5503
 
5504
+ #: src/templates/wp-admin/settings/form-contents.php:179
5505
  msgid "Database Options"
5506
  msgstr ""
5507
 
5508
+ #: src/templates/wp-admin/settings/form-contents.php:184
5509
  msgid "Database encryption phrase"
5510
  msgstr ""
5511
 
5512
+ #: src/templates/wp-admin/settings/form-contents.php:188
5513
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
5514
  msgstr ""
5515
 
5516
+ #: src/templates/wp-admin/settings/form-contents.php:188
5517
  msgid "It can also backup external databases."
5518
  msgstr ""
5519
 
5520
+ #: src/templates/wp-admin/settings/form-contents.php:202
5521
  msgid "You can manually decrypt an encrypted database here."
5522
  msgstr ""
5523
 
5524
+ #: src/templates/wp-admin/settings/form-contents.php:205
5525
  msgid "Manually decrypt a database backup file"
5526
  msgstr ""
5527
 
5528
+ #: src/templates/wp-admin/settings/form-contents.php:217
5529
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
5530
  msgstr ""
5531
 
5532
+ #: src/templates/wp-admin/settings/form-contents.php:218
5533
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
5534
  msgid "or"
5535
  msgstr ""
5536
 
5537
+ #: src/templates/wp-admin/settings/form-contents.php:219
5538
  msgid "Select Files"
5539
  msgstr ""
5540
 
5541
+ #: src/templates/wp-admin/settings/form-contents.php:220
5542
  msgid "First, enter the decryption key"
5543
  msgstr ""
5544
 
5545
+ #: src/templates/wp-admin/settings/form-contents.php:243
5546
  msgid "Recommended: optimize your database with WP-Optimize."
5547
  msgstr ""
5548
 
5549
+ #: src/templates/wp-admin/settings/form-contents.php:261
5550
  msgid "Back up more databases"
5551
  msgstr ""
5552
 
5553
+ #: src/templates/wp-admin/settings/form-contents.php:283, src/udaddons/options.php:133
5554
  msgid "Email"
5555
  msgstr ""
5556
 
5557
+ #: src/templates/wp-admin/settings/form-contents.php:288
5558
  msgid "Check this box to have a basic report sent to"
5559
  msgstr ""
5560
 
5561
+ #: src/templates/wp-admin/settings/form-contents.php:288
5562
  msgid "your site's admin address"
5563
  msgstr ""
5564
 
5565
+ #: src/templates/wp-admin/settings/form-contents.php:290
5566
  msgid "For more reporting features, use the Reporting add-on."
5567
  msgstr ""
5568
 
5569
+ #: src/templates/wp-admin/settings/form-contents.php:316
5570
  msgid "Advanced / Debugging Settings"
5571
  msgstr ""
5572
 
5573
+ #: src/templates/wp-admin/settings/form-contents.php:320
5574
  msgid "Expert settings"
5575
  msgstr ""
5576
 
5577
+ #: src/templates/wp-admin/settings/form-contents.php:321
5578
  msgid "Show expert settings"
5579
  msgstr ""
5580
 
5581
+ #: src/templates/wp-admin/settings/form-contents.php:321
5582
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5583
  msgstr ""
5584
 
5585
+ #: src/templates/wp-admin/settings/form-contents.php:331
5586
  msgid "Debug mode"
5587
  msgstr ""
5588
 
5589
+ #: src/templates/wp-admin/settings/form-contents.php:332
5590
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
5591
  msgstr ""
5592
 
5593
+ #: src/templates/wp-admin/settings/form-contents.php:332
5594
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
5595
  msgstr ""
5596
 
5597
+ #: src/templates/wp-admin/settings/form-contents.php:336
5598
  msgid "Split archives every:"
5599
  msgstr ""
5600
 
5601
+ #: src/templates/wp-admin/settings/form-contents.php:337
5602
  msgid "UpdraftPlus will split up backup archives when they exceed this file size. The default value is %s megabytes. Be careful to leave some margin if your web-server has a hard size limit (e.g. the 2 GB / 2048 MB limit on some 32-bit servers/file systems)."
5603
  msgstr ""
5604
 
5605
+ #: src/templates/wp-admin/settings/form-contents.php:341
5606
  msgid "Delete local backup"
5607
  msgstr ""
5608
 
5609
+ #: src/templates/wp-admin/settings/form-contents.php:342
5610
  msgid "Check this to delete any superfluous backup files from your server after the backup run finishes (i.e. if you uncheck, then any files despatched remotely will also remain locally, and any files being kept locally will not be subject to the retention limits)."
5611
  msgstr ""
5612
 
5613
+ #: src/templates/wp-admin/settings/form-contents.php:346
5614
  msgid "Backup directory"
5615
  msgstr ""
5616
 
5617
+ #: src/templates/wp-admin/settings/form-contents.php:359
5618
  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)."
5619
  msgstr ""
5620
 
5621
+ #: src/templates/wp-admin/settings/form-contents.php:359
5622
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
5623
  msgstr ""
5624
 
5625
+ #: src/templates/wp-admin/settings/form-contents.php:365
5626
  msgid "Use the server's SSL certificates"
5627
  msgstr ""
5628
 
5629
+ #: src/templates/wp-admin/settings/form-contents.php:366
5630
  msgid "By default UpdraftPlus uses its own store of SSL certificates to verify the identity of remote sites (i.e. to make sure it is talking to the real Dropbox, Amazon S3, etc., and not an attacker). We keep these up to date. However, if you get an SSL error, then choosing this option (which causes UpdraftPlus to use your web server's collection instead) may help."
5631
  msgstr ""
5632
 
5633
+ #: src/templates/wp-admin/settings/form-contents.php:370
5634
  msgid "Do not verify SSL certificates"
5635
  msgstr ""
5636
 
5637
+ #: src/templates/wp-admin/settings/form-contents.php:371
5638
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from verifying the identity of encrypted sites that it connects to (e.g. Dropbox, Google Drive). It means that UpdraftPlus will be using SSL only for encryption of traffic, and not for authentication."
5639
  msgstr ""
5640
 
5641
+ #: src/templates/wp-admin/settings/form-contents.php:371
5642
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5643
  msgstr ""
5644
 
5645
+ #: src/templates/wp-admin/settings/form-contents.php:375
5646
  msgid "Disable SSL entirely where possible"
5647
  msgstr ""
5648
 
5649
+ #: src/templates/wp-admin/settings/form-contents.php:376
5650
  msgid "Choosing this option lowers your security by stopping UpdraftPlus from using SSL for authentication and encrypted transport at all, where possible. Note that some cloud storage providers do not allow this (e.g. Dropbox), so with those providers this setting will have no effect."
5651
  msgstr ""
5652
 
5653
+ #: src/templates/wp-admin/settings/form-contents.php:376
5654
  msgid "See this FAQ also."
5655
  msgstr ""
5656
 
5657
+ #: src/templates/wp-admin/settings/form-contents.php:399
5658
  msgid "Save Changes"
5659
  msgstr ""
5660
 
methods/backblaze.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if (!defined('UPDRAFTPLUS_DIR')) die('No direct access.');
4
+
5
+ if (version_compare(phpversion(), '5.3.3', '>=')) {
6
+
7
+ if (class_exists('UpdraftPlus_Addons_RemoteStorage_backblaze')) {
8
+ class UpdraftPlus_BackupModule_backblaze extends UpdraftPlus_Addons_RemoteStorage_backblaze {
9
+ public function __construct() {
10
+ parent::__construct('backblaze', 'Backblaze', true, true);
11
+ }
12
+ }
13
+
14
+ } else {
15
+
16
+ include_once(UPDRAFTPLUS_DIR.'/methods/addon-not-yet-present.php');
17
+ /**
18
+ * N.B. UpdraftPlus_BackupModule_AddonNotYetPresent extends UpdraftPlus_BackupModule
19
+ */
20
+ class UpdraftPlus_BackupModule_backblaze extends UpdraftPlus_BackupModule_AddonNotYetPresent {
21
+ public function __construct() {
22
+ parent::__construct('backblaze', 'Backblaze', '5.3.3', 'backblaze.png');
23
+ }
24
+ }
25
+
26
+ }
27
+
28
+ } else {
29
+
30
+ include_once(UPDRAFTPLUS_DIR.'/methods/insufficient.php');
31
+ /**
32
+ * N.B. UpdraftPlus_BackupModule_insufficientphp extends UpdraftPlus_BackupModule
33
+ */
34
+ class UpdraftPlus_BackupModule_backblaze extends UpdraftPlus_BackupModule_insufficientphp {
35
+ public function __construct() {
36
+ parent::__construct('backblaze', 'Backblaze', '5.3.3', 'backblaze.png');
37
+ }
38
+ }
39
+
40
+ }
methods/backup-module.php CHANGED
@@ -157,7 +157,11 @@ abstract class UpdraftPlus_BackupModule {
157
 
158
  if ($this->supports_feature('config_templates')) {
159
 
160
- $template = $this->get_configuration_template();
 
 
 
 
161
 
162
  $opts = $this->get_options();
163
 
@@ -184,6 +188,8 @@ abstract class UpdraftPlus_BackupModule {
184
 
185
  } else {
186
 
 
 
187
  // N.B. These are mutually exclusive: config_print() is not used if config_templates is supported. So, even during transition, the UpdraftPlus_BackupModule instance only needs to support one of the two, not both.
188
  $this->config_print();
189
  }
157
 
158
  if ($this->supports_feature('config_templates')) {
159
 
160
+ ob_start();
161
+ do_action('updraftplus_config_print_before_storage', $this->get_id(), $this);
162
+ $template = ob_get_clean();
163
+
164
+ $template .= $this->get_configuration_template();
165
 
166
  $opts = $this->get_options();
167
 
188
 
189
  } else {
190
 
191
+ do_action('updraftplus_config_print_before_storage', $this->get_id(), $this);
192
+
193
  // N.B. These are mutually exclusive: config_print() is not used if config_templates is supported. So, even during transition, the UpdraftPlus_BackupModule instance only needs to support one of the two, not both.
194
  $this->config_print();
195
  }
methods/googledrive.php CHANGED
@@ -529,7 +529,7 @@ class UpdraftPlus_BackupModule_googledrive extends UpdraftPlus_BackupModule {
529
  if (empty($opts['token']) || empty($opts['clientid']) || empty($opts['secret'])) {
530
  $updraftplus->log('Google Drive: this account is not authorised');
531
  $updraftplus->log('Google Drive: '.__('Account is not authorized.', 'updraftplus'), 'error', 'googledrivenotauthed');
532
- return new WP_Error('not_authorized', __('Account is not authorized.', 'updraftplus'));
533
  }
534
 
535
  if (empty($access_token)) {
529
  if (empty($opts['token']) || empty($opts['clientid']) || empty($opts['secret'])) {
530
  $updraftplus->log('Google Drive: this account is not authorised');
531
  $updraftplus->log('Google Drive: '.__('Account is not authorized.', 'updraftplus'), 'error', 'googledrivenotauthed');
532
+ return new WP_Error('not_authorized', __('Account is not authorized.', 'updraftplus').' (Google Drive)');
533
  }
534
 
535
  if (empty($access_token)) {
methods/openstack-base.php CHANGED
@@ -152,6 +152,13 @@ class UpdraftPlus_BackupModule_openstack_base extends UpdraftPlus_BackupModule {
152
  return $results;
153
  }
154
 
 
 
 
 
 
 
 
155
  public function chunked_upload_finish($file) {
156
 
157
  $chunk_path = 'chunk-do-not-delete-'.$file;
@@ -176,14 +183,15 @@ class UpdraftPlus_BackupModule_openstack_base extends UpdraftPlus_BackupModule {
176
  /**
177
  * N.B. Since we use varying-size chunks, we must be careful as to what we do with $chunk_index
178
  *
179
- * @param string $file Filename
180
- * @param string $fp Filepath to be used in chunked upload
181
- * @param string $chunk_index Index of chunked upload
182
- * @param string $upload_size Size of the upload, in bytes
183
- * @param string $upload_start Upload start file size
184
- * @param string $upload_end Upload end file size
185
- * @param string $total_file_size Total file size
186
- * @return boolean
 
187
  */
188
  public function chunked_upload($file, $fp, $chunk_index, $upload_size, $upload_start, $upload_end, $total_file_size) {
189
 
152
  return $results;
153
  }
154
 
155
+ /**
156
+ * Called when all chunks have been uploaded, to allow any required finishing actions to be carried out
157
+ *
158
+ * @param String $file - the basename of the file being uploaded
159
+ *
160
+ * @return Boolean - success or failure state of any finishing actions
161
+ */
162
  public function chunked_upload_finish($file) {
163
 
164
  $chunk_path = 'chunk-do-not-delete-'.$file;
183
  /**
184
  * N.B. Since we use varying-size chunks, we must be careful as to what we do with $chunk_index
185
  *
186
+ * @param String $file Full path for the file being uploaded
187
+ * @param Resource $fp File handle to read upload data from
188
+ * @param Integer $chunk_index Index of chunked upload
189
+ * @param Integer $upload_size Size of the upload, in bytes
190
+ * @param Integer $upload_start How many bytes into the file the upload process has got
191
+ * @param Integer $upload_end How many bytes into the file we will be after this chunk is uploaded
192
+ * @param Integer $total_file_size Total file size
193
+ *
194
+ * @return Boolean
195
  */
196
  public function chunked_upload($file, $fp, $chunk_index, $upload_size, $upload_start, $upload_end, $total_file_size) {
197
 
options.php CHANGED
@@ -131,6 +131,7 @@ class UpdraftPlus_Options {
131
  register_setting('updraft-options-group', 'updraft_googlecloud', array($updraftplus, 'googlecloud_checkchange'));
132
 
133
  register_setting('updraft-options-group', 'updraft_sftp');
 
134
  register_setting('updraft-options-group', 'updraft_webdav', array($updraftplus, 'construct_webdav_url'));
135
 
136
  register_setting('updraft-options-group', 'updraft_ssl_nossl', 'absint');
131
  register_setting('updraft-options-group', 'updraft_googlecloud', array($updraftplus, 'googlecloud_checkchange'));
132
 
133
  register_setting('updraft-options-group', 'updraft_sftp');
134
+ register_setting('updraft-options-group', 'updraft_backblaze', array($updraftplus, 'backblaze_sanitise'));
135
  register_setting('updraft-options-group', 'updraft_webdav', array($updraftplus, 'construct_webdav_url'));
136
 
137
  register_setting('updraft-options-group', 'updraft_ssl_nossl', 'absint');
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Backup with UpdraftPlus, DavidAnderson, DNutbourne, aporter, snigh
3
  Tags: backup, restore, database backup, wordpress backup, cloud backup, s3, dropbox, google drive, onedrive, ftp, backups
4
  Requires at least: 3.2
5
  Tested up to: 4.8
6
- Stable tag: 1.13.8
7
  Author URI: https://updraftplus.com
8
  Donate link: https://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
@@ -14,7 +14,7 @@ Backup and restoration made easy. Complete backups; manual or scheduled (backup
14
 
15
  <a href="https://updraftplus.com">UpdraftPlus</a> simplifies backups and restoration. It is the world's highest ranking and most popular scheduled backup plugin, with over a million currently-active installs. Backup your files and database backups into the cloud and restore with a single click!
16
 
17
- Backup into the cloud directly to Dropbox, Google Drive, Amazon S3 (or compatible), Rackspace Cloud, DreamObjects, FTP, Openstack Swift, Updraft Vault and email. The paid version also backs up to Microsoft OneDrive, Microsoft Azure, Google Cloud Storage, SFTP, SCP, and WebDAV.
18
 
19
  [vimeo https://vimeo.com/154870690]
20
 
@@ -101,7 +101,7 @@ The free version of UpdraftPlus works just fine, but if you need more features a
101
  Here are some of the key features of UpdraftPlus Premium:
102
 
103
  * Easily duplicates or migrates websites (using the built-in Migrator)
104
- * Backs up non WP files and databases to multiple remote destinations and to more cloud storage options (WebDAV, Microsoft OneDrive, Google Cloud, Microsoft Azure, SFTP/SCP, encrypted FTP)
105
  * Restores and migrates backup sets from other backup plugins: BackWPUp, BackupWordPress, Simple Backup, WordPress Backup to Dropbox
106
  * Encrypts sensitive databases; has lock access settings
107
  * Offers sophisticated reporting and scheduling
@@ -151,6 +151,14 @@ The <a href="https://updraftplus.com/news/">UpdraftPlus backup blog</a> is the b
151
 
152
  N.B. Paid versions of UpdraftPlus Backup / Restore have a version number which is 1 higher in the first digit, and has an extra component on the end, but the changelog below still applies. i.e. changes listed for 1.13.8 of the free version correspond to changes made in 2.13.8.x of the paid version.
153
 
 
 
 
 
 
 
 
 
154
  = 1.13.8 - 21/Sep/2017 =
155
 
156
  * 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)
@@ -574,4 +582,4 @@ We recognise and thank the following for code and/or libraries used and/or modif
574
 
575
 
576
  == Upgrade Notice ==
577
- * 1.13.8: Better handling of incompatible MySQL character sets. S3 generic protocol improvements. Various small tweaks and internal improvements. Recommended update for all.
3
  Tags: backup, restore, database backup, wordpress backup, cloud backup, s3, dropbox, google drive, onedrive, ftp, backups
4
  Requires at least: 3.2
5
  Tested up to: 4.8
6
+ Stable tag: 1.13.9
7
  Author URI: https://updraftplus.com
8
  Donate link: https://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
14
 
15
  <a href="https://updraftplus.com">UpdraftPlus</a> simplifies backups and restoration. It is the world's highest ranking and most popular scheduled backup plugin, with over a million currently-active installs. Backup your files and database backups into the cloud and restore with a single click!
16
 
17
+ Backup into the cloud directly to Dropbox, Google Drive, Amazon S3 (or compatible), Rackspace Cloud, DreamObjects, FTP, Openstack Swift, Updraft Vault and email. The paid version also backs up to Microsoft OneDrive, Microsoft Azure, Google Cloud Storage, Backblaze B2, SFTP, SCP, and WebDAV.
18
 
19
  [vimeo https://vimeo.com/154870690]
20
 
101
  Here are some of the key features of UpdraftPlus Premium:
102
 
103
  * Easily duplicates or migrates websites (using the built-in Migrator)
104
+ * Backs up non WP files and databases to multiple remote destinations and to more cloud storage options (WebDAV, Microsoft OneDrive, Google Cloud, Microsoft Azure, Backblaze B2, SFTP/SCP, encrypted FTP)
105
  * Restores and migrates backup sets from other backup plugins: BackWPUp, BackupWordPress, Simple Backup, WordPress Backup to Dropbox
106
  * Encrypts sensitive databases; has lock access settings
107
  * Offers sophisticated reporting and scheduling
151
 
152
  N.B. Paid versions of UpdraftPlus Backup / Restore have a version number which is 1 higher in the first digit, and has an extra component on the end, but the changelog below still applies. i.e. changes listed for 1.13.8 of the free version correspond to changes made in 2.13.8.x of the paid version.
153
 
154
+ = 1.13.9 - 25/Sep/2017 =
155
+
156
+ * FEATURE: Backblaze B2 (https://www.backblaze.com/b2/) support in UpdraftPlus Premium
157
+ * TWEAK: Port job data used by Azure, Google Cloud and OneDrive storage to being instance-local (now believed to all be ported)
158
+ * TWEAK: The automatic correcting of wrongly-input S3 and FTP settings had regressed in a recent version
159
+ * TWEAK: Various small fixes to the standards compliance of the HTML output in the remote storage settings area
160
+ * TWEAK: When deleting backups with multiple remote storage instances of the same type, order the attempts
161
+
162
  = 1.13.8 - 21/Sep/2017 =
163
 
164
  * 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)
582
 
583
 
584
  == Upgrade Notice ==
585
+ * 1.13.9: Backblaze B2 support, and other small tweaks
templates/wp-admin/settings/form-contents.php CHANGED
@@ -126,7 +126,6 @@ foreach ($default_options as $k => $v) {
126
  }
127
  ?>
128
 
129
-
130
  <?php
131
  if (false === apply_filters('updraftplus_storage_printoptions', false, $active_service)) {
132
  echo '</div>';
@@ -144,7 +143,7 @@ foreach ($default_options as $k => $v) {
144
 
145
  <?php
146
  $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids(array_keys($updraftplus->backup_methods));
147
-
148
  foreach ($storage_objects_and_ids as $method => $method_information) {
149
  $storage_object = $method_information['object'];
150
  if (!$storage_object->supports_feature('multi_options')) {
@@ -153,7 +152,6 @@ foreach ($default_options as $k => $v) {
153
  } else {
154
  foreach ($method_information['instance_settings'] as $instance_id => $storage_options) {
155
  $storage_object->set_options($storage_options, false, $instance_id);
156
- do_action('updraftplus_config_print_before_storage', $method, $storage_object);
157
  $storage_object->print_configuration();
158
  }
159
  }
126
  }
127
  ?>
128
 
 
129
  <?php
130
  if (false === apply_filters('updraftplus_storage_printoptions', false, $active_service)) {
131
  echo '</div>';
143
 
144
  <?php
145
  $storage_objects_and_ids = $updraftplus->get_storage_objects_and_ids(array_keys($updraftplus->backup_methods));
146
+
147
  foreach ($storage_objects_and_ids as $method => $method_information) {
148
  $storage_object = $method_information['object'];
149
  if (!$storage_object->supports_feature('multi_options')) {
152
  } else {
153
  foreach ($method_information['instance_settings'] as $instance_id => $storage_options) {
154
  $storage_object->set_options($storage_options, false, $instance_id);
 
155
  $storage_object->print_configuration();
156
  }
157
  }
updraftplus.php CHANGED
@@ -5,7 +5,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
5
  Plugin URI: https://updraftplus.com
6
  Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
7
  Author: UpdraftPlus.Com, DavidAnderson
8
- Version: 1.13.8
9
  Donate link: https://david.dw-perspective.org.uk/donate
10
  License: GPLv3 or later
11
  Text Domain: updraftplus
5
  Plugin URI: https://updraftplus.com
6
  Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
7
  Author: UpdraftPlus.Com, DavidAnderson
8
+ Version: 1.13.9
9
  Donate link: https://david.dw-perspective.org.uk/donate
10
  License: GPLv3 or later
11
  Text Domain: updraftplus
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit6007d313818ab5d1650ef4f812346745::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit4a7d1cdbe2c70d851d9124c8933c1ca7::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit6007d313818ab5d1650ef4f812346745
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit6007d313818ab5d1650ef4f812346745
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit6007d313818ab5d1650ef4f812346745', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit6007d313818ab5d1650ef4f812346745', 'loadClassLoader'));
25
 
26
  $includePaths = require __DIR__ . '/include_paths.php';
27
  array_push($includePaths, get_include_path());
@@ -31,7 +31,7 @@ class ComposerAutoloaderInit6007d313818ab5d1650ef4f812346745
31
  if ($useStaticLoader) {
32
  require_once __DIR__ . '/autoload_static.php';
33
 
34
- call_user_func(\Composer\Autoload\ComposerStaticInit6007d313818ab5d1650ef4f812346745::getInitializer($loader));
35
  } else {
36
  $map = require __DIR__ . '/autoload_namespaces.php';
37
  foreach ($map as $namespace => $path) {
@@ -52,19 +52,19 @@ class ComposerAutoloaderInit6007d313818ab5d1650ef4f812346745
52
  $loader->register(true);
53
 
54
  if ($useStaticLoader) {
55
- $includeFiles = Composer\Autoload\ComposerStaticInit6007d313818ab5d1650ef4f812346745::$files;
56
  } else {
57
  $includeFiles = require __DIR__ . '/autoload_files.php';
58
  }
59
  foreach ($includeFiles as $fileIdentifier => $file) {
60
- composerRequire6007d313818ab5d1650ef4f812346745($fileIdentifier, $file);
61
  }
62
 
63
  return $loader;
64
  }
65
  }
66
 
67
- function composerRequire6007d313818ab5d1650ef4f812346745($fileIdentifier, $file)
68
  {
69
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
70
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit4a7d1cdbe2c70d851d9124c8933c1ca7
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit4a7d1cdbe2c70d851d9124c8933c1ca7', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit4a7d1cdbe2c70d851d9124c8933c1ca7', 'loadClassLoader'));
25
 
26
  $includePaths = require __DIR__ . '/include_paths.php';
27
  array_push($includePaths, get_include_path());
31
  if ($useStaticLoader) {
32
  require_once __DIR__ . '/autoload_static.php';
33
 
34
+ call_user_func(\Composer\Autoload\ComposerStaticInit4a7d1cdbe2c70d851d9124c8933c1ca7::getInitializer($loader));
35
  } else {
36
  $map = require __DIR__ . '/autoload_namespaces.php';
37
  foreach ($map as $namespace => $path) {
52
  $loader->register(true);
53
 
54
  if ($useStaticLoader) {
55
+ $includeFiles = Composer\Autoload\ComposerStaticInit4a7d1cdbe2c70d851d9124c8933c1ca7::$files;
56
  } else {
57
  $includeFiles = require __DIR__ . '/autoload_files.php';
58
  }
59
  foreach ($includeFiles as $fileIdentifier => $file) {
60
+ composerRequire4a7d1cdbe2c70d851d9124c8933c1ca7($fileIdentifier, $file);
61
  }
62
 
63
  return $loader;
64
  }
65
  }
66
 
67
+ function composerRequire4a7d1cdbe2c70d851d9124c8933c1ca7($fileIdentifier, $file)
68
  {
69
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
70
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit6007d313818ab5d1650ef4f812346745
8
  {
9
  public static $files = array (
10
  'ce89ac35a6c330c55f4710717db9ff78' => __DIR__ . '/..' . '/kriswallsmith/assetic/src/functions.php',
@@ -152,10 +152,10 @@ class ComposerStaticInit6007d313818ab5d1650ef4f812346745
152
  public static function getInitializer(ClassLoader $loader)
153
  {
154
  return \Closure::bind(function () use ($loader) {
155
- $loader->prefixLengthsPsr4 = ComposerStaticInit6007d313818ab5d1650ef4f812346745::$prefixLengthsPsr4;
156
- $loader->prefixDirsPsr4 = ComposerStaticInit6007d313818ab5d1650ef4f812346745::$prefixDirsPsr4;
157
- $loader->prefixesPsr0 = ComposerStaticInit6007d313818ab5d1650ef4f812346745::$prefixesPsr0;
158
- $loader->classMap = ComposerStaticInit6007d313818ab5d1650ef4f812346745::$classMap;
159
 
160
  }, null, ClassLoader::class);
161
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit4a7d1cdbe2c70d851d9124c8933c1ca7
8
  {
9
  public static $files = array (
10
  'ce89ac35a6c330c55f4710717db9ff78' => __DIR__ . '/..' . '/kriswallsmith/assetic/src/functions.php',
152
  public static function getInitializer(ClassLoader $loader)
153
  {
154
  return \Closure::bind(function () use ($loader) {
155
+ $loader->prefixLengthsPsr4 = ComposerStaticInit4a7d1cdbe2c70d851d9124c8933c1ca7::$prefixLengthsPsr4;
156
+ $loader->prefixDirsPsr4 = ComposerStaticInit4a7d1cdbe2c70d851d9124c8933c1ca7::$prefixDirsPsr4;
157
+ $loader->prefixesPsr0 = ComposerStaticInit4a7d1cdbe2c70d851d9124c8933c1ca7::$prefixesPsr0;
158
+ $loader->classMap = ComposerStaticInit4a7d1cdbe2c70d851d9124c8933c1ca7::$classMap;
159
 
160
  }, null, ClassLoader::class);
161
  }