UpdraftPlus WordPress Backup Plugin - Version 1.12.12

Version Description

  • 25/May/2016 =

  • FIX: When restoring a plugins backup on multisite, old plugins were inactivated but not always removed

  • TWEAK: Use POST instead of GET for OneDrive token requests - some new accounts seem to have begun requiring this

  • TWEAK: When backing up user-configured directories, don't log confusing/misleading messages for unzippable directory symlinks

  • TRANSLATIONS: wordpress.org is now serving up translations for fr_FR, pt_PT and ro_RO, so these can/have been removed from the plugin zip (1.2Mb released)

Download this release

Release Info

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

Code changes from version 1.12.6 to 1.12.12

Files changed (119) hide show
  1. admin.php +3 -2
  2. backup.php +42 -10
  3. central/bootstrap.php +2 -2
  4. central/listener.php +2 -0
  5. central/updraftplus-commands.php +1 -1
  6. changelog.txt +1687 -0
  7. class-updraftplus.php +7 -16
  8. class-zip.php +150 -150
  9. composer.json +1 -1
  10. composer.lock +13 -17
  11. includes/Dropbox/OAuth/Consumer/WordPress.php +4 -4
  12. includes/S3compat.php +5 -1
  13. includes/class-udrpc.php +19 -7
  14. includes/phpseclib/Crypt/Base.php +8 -2
  15. includes/phpseclib/Crypt/RC2.php +11 -4
  16. includes/phpseclib/Crypt/RC4.php +1 -1
  17. includes/phpseclib/Crypt/RSA.php +3 -3
  18. includes/phpseclib/Crypt/Random.php +42 -7
  19. includes/phpseclib/Math/BigInteger.php +1 -1
  20. includes/phpseclib/Net/SFTP.php +71 -1
  21. includes/phpseclib/Net/SSH2.php +1 -1
  22. includes/phpseclib/System/SSH/Agent.php +3 -2
  23. includes/updraft-admin-ui.js +2 -2
  24. languages/updraftplus-ar.mo +0 -0
  25. languages/updraftplus-ar.po +2 -4
  26. languages/updraftplus-bn_BD.mo +0 -0
  27. languages/updraftplus-bn_BD.po +1 -1
  28. languages/updraftplus-ca.mo +0 -0
  29. languages/updraftplus-ca.po +2858 -1345
  30. languages/updraftplus-cs_CZ.mo +0 -0
  31. languages/updraftplus-cs_CZ.po +1 -1
  32. languages/updraftplus-da_DK.mo +0 -0
  33. languages/updraftplus-da_DK.po +62 -62
  34. languages/updraftplus-de_DE.mo +0 -0
  35. languages/updraftplus-de_DE.po +51 -51
  36. languages/updraftplus-el.mo +0 -0
  37. languages/updraftplus-el.po +37 -37
  38. languages/updraftplus-es_CO.mo +0 -0
  39. languages/updraftplus-es_CO.po +1 -1
  40. languages/updraftplus-es_ES.mo +0 -0
  41. languages/updraftplus-es_ES.po +1 -1
  42. languages/updraftplus-fa_IR.mo +0 -0
  43. languages/updraftplus-fa_IR.po +1 -1
  44. languages/updraftplus-fi.mo +0 -0
  45. languages/updraftplus-fi.po +1 -1
  46. languages/updraftplus-fr_FR.mo +0 -0
  47. languages/updraftplus-fr_FR.po +1 -1
  48. languages/updraftplus-he_IL.mo +0 -0
  49. languages/updraftplus-he_IL.po +1 -1
  50. languages/updraftplus-hu_HU.mo +0 -0
  51. languages/updraftplus-hu_HU.po +1 -1
  52. languages/updraftplus-it_IT.mo +0 -0
  53. languages/updraftplus-it_IT.po +1 -1
  54. languages/updraftplus-ja.mo +0 -0
  55. languages/updraftplus-ja.po +5 -7
  56. languages/updraftplus-lt_LT.mo +0 -0
  57. languages/updraftplus-lt_LT.po +1 -1
  58. languages/updraftplus-nb_NO.mo +0 -0
  59. languages/updraftplus-nb_NO.po +1 -1
  60. languages/updraftplus-nl_NL.mo +0 -0
  61. languages/updraftplus-nl_NL.po +1 -1
  62. languages/updraftplus-pl_PL.mo +0 -0
  63. languages/updraftplus-pl_PL.po +583 -583
  64. languages/updraftplus-pt_BR.mo +0 -0
  65. languages/updraftplus-pt_BR.po +1 -1
  66. languages/updraftplus-pt_PT.mo +0 -0
  67. languages/updraftplus-pt_PT.po +12 -12
  68. languages/updraftplus-ro_RO.mo +0 -0
  69. languages/updraftplus-ro_RO.po +881 -881
  70. languages/updraftplus-ru_RU.mo +0 -0
  71. languages/updraftplus-ru_RU.po +1 -1
  72. languages/updraftplus-sl_SI.mo +0 -0
  73. languages/updraftplus-sl_SI.po +1 -1
  74. languages/updraftplus-sv_SE.mo +0 -0
  75. languages/updraftplus-sv_SE.po +1 -1
  76. languages/updraftplus-tl.mo +0 -0
  77. languages/updraftplus-tl.po +1 -1
  78. languages/updraftplus-tr_TR.mo +0 -0
  79. languages/updraftplus-tr_TR.po +1 -1
  80. languages/updraftplus-uk.mo +0 -0
  81. languages/updraftplus-uk.po +1 -1
  82. languages/updraftplus-vi.mo +0 -0
  83. languages/updraftplus-vi.po +2 -2
  84. languages/updraftplus-zh_CN.mo +0 -0
  85. languages/updraftplus-zh_CN.po +1 -1
  86. languages/updraftplus-zh_TW.mo +0 -0
  87. languages/updraftplus-zh_TW.po +1 -1
  88. methods/dreamobjects.php +8 -6
  89. methods/dropbox.php +1 -11
  90. methods/googledrive.php +2 -2
  91. methods/s3.php +204 -133
  92. methods/s3generic.php +1 -1
  93. methods/updraftvault.php +30 -13
  94. readme.txt +49 -1690
  95. restorer.php +4 -4
  96. updraftplus.php +1 -1
  97. vendor/aws/aws-sdk-php/composer.json +1 -5
  98. vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php +2 -1
  99. vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php +1 -1
  100. vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php +99 -51
  101. vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php +2 -2
  102. vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php +1 -1
  103. vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php +1 -1
  104. vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php +3 -0
  105. vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php +19 -0
  106. vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CacheableCredentials.php +2 -1
  107. vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php +33 -18
  108. vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php +35 -3
  109. vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php +23 -12
  110. vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php +16 -7
  111. vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php +38 -0
  112. vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php +2 -0
  113. vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php +2 -0
  114. vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php +54 -0
  115. vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php +20 -5
  116. vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php +7 -2
  117. vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php +11 -4
  118. vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php +38 -4
  119. vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php +999 -110
admin.php CHANGED
@@ -1218,7 +1218,7 @@ class UpdraftPlus_Admin {
1218
  echo json_encode(array('e' => htmlspecialchars($response->get_error_message())));
1219
  die;
1220
  }
1221
- echo json_encode(array('r' => $response['response']['code'].': '.htmlspecialchars(substr($response['body'], 0, 2048))));
1222
  }
1223
  die;
1224
  } elseif (isset($_REQUEST['subaction']) && 'dismissautobackup' == $_REQUEST['subaction']) {
@@ -1357,7 +1357,8 @@ class UpdraftPlus_Admin {
1357
  unset($info['label']);
1358
 
1359
  if (!isset($info['created_by_version']) && !empty($backups[$timestamp]['created_by_version'])) $info['created_by_version'] = $backups[$timestamp]['created_by_version'];
1360
- if (empty($info['multisite']) && !empty($backups[$timestamp]['is_multisite'])) $info['multisite'] = $backups[$timestamp]['is_multisite'];
 
1361
 
1362
  do_action_ref_array('updraftplus_restore_all_downloaded_postscan', array($backups, $timestamp, $elements, &$info, &$mess, &$warn, &$err));
1363
 
1218
  echo json_encode(array('e' => htmlspecialchars($response->get_error_message())));
1219
  die;
1220
  }
1221
+ echo json_encode(array('r' => wp_remote_retrieve_response_code($response).': '.htmlspecialchars(substr(wp_remote_retrieve_body($response), 0, 2048))));
1222
  }
1223
  die;
1224
  } elseif (isset($_REQUEST['subaction']) && 'dismissautobackup' == $_REQUEST['subaction']) {
1357
  unset($info['label']);
1358
 
1359
  if (!isset($info['created_by_version']) && !empty($backups[$timestamp]['created_by_version'])) $info['created_by_version'] = $backups[$timestamp]['created_by_version'];
1360
+
1361
+ if (!isset($info['multisite']) && !empty($backups[$timestamp]['is_multisite'])) $info['multisite'] = $backups[$timestamp]['is_multisite'];
1362
 
1363
  do_action_ref_array('updraftplus_restore_all_downloaded_postscan', array($backups, $timestamp, $elements, &$info, &$mess, &$warn, &$err));
1364
 
backup.php CHANGED
@@ -124,7 +124,7 @@ class UpdraftPlus_Backup {
124
  }
125
 
126
  public function report_remotestorage_extrainfo($service, $info_html, $info_plain) {
127
- $this->remotestorage_extrainfo[$service] = $info_plain;
128
  }
129
 
130
  // Public, because called from the 'More Files' add-on
@@ -287,7 +287,6 @@ class UpdraftPlus_Backup {
287
 
288
  $objname = "UpdraftPlus_BackupModule_${service}";
289
  if (!class_exists($objname) && file_exists(UPDRAFTPLUS_DIR.'/methods/'.$service.'.php')) {
290
-
291
  require_once(UPDRAFTPLUS_DIR.'/methods/'.$service.'.php');
292
  }
293
  if (class_exists($objname)) {
@@ -724,6 +723,8 @@ class UpdraftPlus_Backup {
724
  $updraftplus->log("Retain: saving new backup history (sets now: ".count($backup_history).") and finishing retain operation");
725
  UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history, false);
726
 
 
 
727
  $updraftplus->jobdata_set('prune', 'finished');
728
 
729
  }
@@ -912,9 +913,12 @@ class UpdraftPlus_Backup {
912
  }
913
 
914
  foreach ($this->remotestorage_extrainfo as $service => $message) {
915
- if (!empty($updraftplus->backup_methods[$service])) $extra_msg .= $updraftplus->backup_methods[$service].': '.$message."\r\n";
916
  }
917
 
 
 
 
918
  $body = apply_filters('updraft_report_body',
919
  __('Backup of:', 'updraftplus').' '.site_url()."\r\n".
920
  "UpdraftPlus ".__('WordPress backup is complete','updraftplus').".\r\n".
@@ -1449,8 +1453,11 @@ class UpdraftPlus_Backup {
1449
  $updraftplus->log("Skipping table (filtered): $table");
1450
  } else {
1451
 
 
 
 
1452
  // Open file, store the handle
1453
- $opened = $this->backup_db_open($this->updraft_dir.'/'.$table_file_prefix.'.tmp.gz', true);
1454
  if (false === $opened) return false;
1455
 
1456
  // Create the SQL statements
@@ -1472,7 +1479,7 @@ class UpdraftPlus_Backup {
1472
  if ('wp' == $this->whichdb && (!empty($this->table_prefix) && strtolower($this->table_prefix.'sitemeta') == strtolower($table))) {
1473
  $where = 'meta_key NOT LIKE "updraft_jobdata_%"';
1474
  } elseif ('wp' == $this->whichdb && (!empty($this->table_prefix) && strtolower($this->table_prefix.'options') == strtolower($table))) {
1475
- $where = 'option_name NOT LIKE "updraft_jobdata_%"';
1476
  } else {
1477
  $where = '';
1478
  }
@@ -1491,7 +1498,7 @@ class UpdraftPlus_Backup {
1491
 
1492
  $updraftplus->log("Table $table: finishing file (${table_file_prefix}.gz - ".round(filesize($this->updraft_dir.'/'.$table_file_prefix.'.tmp.gz')/1024,1)." KB)");
1493
 
1494
- rename($this->updraft_dir.'/'.$table_file_prefix.'.tmp.gz', $this->updraft_dir.'/'.$table_file_prefix.'.gz');
1495
  $updraftplus->something_useful_happened();
1496
  $stitch_files[] = $table_file_prefix;
1497
  }
@@ -1932,6 +1939,12 @@ class UpdraftPlus_Backup {
1932
 
1933
  global $updraftplus;
1934
 
 
 
 
 
 
 
1935
  // De-reference. Important to do to both, because on Windows only doing it to one can make them non-equal, where they were previously equal - something which we later rely upon
1936
  $fullpath = realpath($fullpath);
1937
  $original_fullpath = realpath($original_fullpath);
@@ -1981,7 +1994,9 @@ class UpdraftPlus_Backup {
1981
  $updraftplus->log("Skip directory (.donotbackup file found): $use_path_when_storing");
1982
  return true;
1983
  }
 
1984
  if (!isset($this->existing_files[$use_path_when_storing])) $this->zipfiles_dirbatched[] = $use_path_when_storing;
 
1985
  if (!$dir_handle = @opendir($fullpath)) {
1986
  $updraftplus->log("Failed to open directory: $fullpath");
1987
  $updraftplus->log(sprintf(__("Failed to open directory (check the file permissions and ownership): %s",'updraftplus'), $fullpath), 'error');
@@ -1990,6 +2005,7 @@ class UpdraftPlus_Backup {
1990
 
1991
  while (false !== ($e = readdir($dir_handle))) {
1992
  if ('.' == $e || '..' == $e) continue;
 
1993
  if (is_link($fullpath.'/'.$e)) {
1994
  $deref = realpath($fullpath.'/'.$e);
1995
  if (is_file($deref)) {
@@ -2017,6 +2033,10 @@ class UpdraftPlus_Backup {
2017
  $updraftplus->log(sprintf(__("%s: unreadable file - could not be backed up"), $deref), 'warning');
2018
  }
2019
  } elseif (is_dir($deref)) {
 
 
 
 
2020
  $this->makezip_recursive_add($deref, $use_path_when_storing.'/'.$e, $original_fullpath, $startlevels, $exclude);
2021
  }
2022
  } elseif (is_file($fullpath.'/'.$e)) {
@@ -2266,8 +2286,12 @@ class UpdraftPlus_Backup {
2266
 
2267
  $this->makezip_if_altered_since = (is_array($this->altered_since)) ? (isset($this->altered_since[$whichone]) ? $this->altered_since[$whichone] : -1) : -1;
2268
 
 
 
 
2269
  // Uploads: can/should we get it back from the cache?
2270
- if ('uploads' == $whichone && function_exists('gzopen') && function_exists('gzread')) {
 
2271
  $use_cache_files = false;
2272
  $cache_file_base = $this->zip_basename.'-cachelist-'.$this->makezip_if_altered_since;
2273
  // Cache file suffixes: -zfd.gz.tmp, -zfb.gz.tmp, -info.tmp, (possible)-zfs.gz.tmp
@@ -2339,7 +2363,11 @@ class UpdraftPlus_Backup {
2339
  $add_them = true;
2340
  }
2341
  } else {
2342
- $add_them = $this->makezip_recursive_add($element, $this->basename($element), $element, 1, $exclude);
 
 
 
 
2343
  }
2344
  if (is_wp_error($add_them) || false === $add_them) $error_occurred = true;
2345
  }
@@ -2348,7 +2376,8 @@ class UpdraftPlus_Backup {
2348
 
2349
  // Cache the file scan, if it looks like it'll be useful
2350
  // We use gzip to reduce the size as on hosts which limit disk I/O, the cacheing may make things worse
2351
- if ('uploads' == $whichone && !$error_occurred && function_exists('gzopen') && function_exists('gzwrite')) {
 
2352
  $cache_file_base = $this->zip_basename.'-cachelist-'.$this->makezip_if_altered_since;
2353
 
2354
  // Just approximate - we're trying to avoid an otherwise-unpredictable PHP fatal error. Cacheing only happens if file enumeration took a long time - so presumably there are very many.
@@ -2599,7 +2628,10 @@ class UpdraftPlus_Backup {
2599
 
2600
  $fsize = filesize($file);
2601
 
2602
- if ($fsize > UPDRAFTPLUS_WARN_FILE_SIZE) {
 
 
 
2603
  $updraftplus->log(sprintf(__('A very large file was encountered: %s (size: %s Mb)', 'updraftplus'), $add_as, round($fsize/1048576, 1)), 'warning', 'vlargefile_'.md5($this->whichone.'#'.$add_as));
2604
  }
2605
 
124
  }
125
 
126
  public function report_remotestorage_extrainfo($service, $info_html, $info_plain) {
127
+ $this->remotestorage_extrainfo[$service] = array('pretty' => $info_html, 'plain' => $info_plain);
128
  }
129
 
130
  // Public, because called from the 'More Files' add-on
287
 
288
  $objname = "UpdraftPlus_BackupModule_${service}";
289
  if (!class_exists($objname) && file_exists(UPDRAFTPLUS_DIR.'/methods/'.$service.'.php')) {
 
290
  require_once(UPDRAFTPLUS_DIR.'/methods/'.$service.'.php');
291
  }
292
  if (class_exists($objname)) {
723
  $updraftplus->log("Retain: saving new backup history (sets now: ".count($backup_history).") and finishing retain operation");
724
  UpdraftPlus_Options::update_updraft_option('updraft_backup_history', $backup_history, false);
725
 
726
+ do_action('updraftplus_prune_retained_backups_finished');
727
+
728
  $updraftplus->jobdata_set('prune', 'finished');
729
 
730
  }
913
  }
914
 
915
  foreach ($this->remotestorage_extrainfo as $service => $message) {
916
+ if (!empty($updraftplus->backup_methods[$service])) $extra_msg .= $updraftplus->backup_methods[$service].': '.$message['plain']."\r\n";
917
  }
918
 
919
+ // Make it available to the filter
920
+ $jobdata['remotestorage_extrainfo'] = $this->remotestorage_extrainfo;
921
+
922
  $body = apply_filters('updraft_report_body',
923
  __('Backup of:', 'updraftplus').' '.site_url()."\r\n".
924
  "UpdraftPlus ".__('WordPress backup is complete','updraftplus').".\r\n".
1453
  $updraftplus->log("Skipping table (filtered): $table");
1454
  } else {
1455
 
1456
+ $db_temp_file = $this->updraft_dir.'/'.$table_file_prefix.'.tmp.gz';
1457
+ $updraftplus->check_recent_modification($db_temp_file);
1458
+
1459
  // Open file, store the handle
1460
+ $opened = $this->backup_db_open($db_temp_file, true);
1461
  if (false === $opened) return false;
1462
 
1463
  // Create the SQL statements
1479
  if ('wp' == $this->whichdb && (!empty($this->table_prefix) && strtolower($this->table_prefix.'sitemeta') == strtolower($table))) {
1480
  $where = 'meta_key NOT LIKE "updraft_jobdata_%"';
1481
  } elseif ('wp' == $this->whichdb && (!empty($this->table_prefix) && strtolower($this->table_prefix.'options') == strtolower($table))) {
1482
+ $where = 'option_name NOT LIKE "updraft_jobdata_%" AND option_name NOT LIKE "_site_transient_update_%"';
1483
  } else {
1484
  $where = '';
1485
  }
1498
 
1499
  $updraftplus->log("Table $table: finishing file (${table_file_prefix}.gz - ".round(filesize($this->updraft_dir.'/'.$table_file_prefix.'.tmp.gz')/1024,1)." KB)");
1500
 
1501
+ rename($db_temp_file, $this->updraft_dir.'/'.$table_file_prefix.'.gz');
1502
  $updraftplus->something_useful_happened();
1503
  $stitch_files[] = $table_file_prefix;
1504
  }
1939
 
1940
  global $updraftplus;
1941
 
1942
+ // Only BinZip supports symlinks. This means that as a consistent outcome, the only think that can be done with directory symlinks is either a) potentially duplicate the data or b) skip it. Whilst with internal WP entities (e.g. plugins) we definitely want the data, in the case of user-selected directories, we assume the user knew what they were doing when they chose the directory - i.e. we can skip symlink-accessed data that's outside.
1943
+ if (is_link($fullpath) && is_dir($fullpath) && 'more' == $this->whichone) {
1944
+ $updraftplus->log("Directory symlink encounted in more files backup: $use_path_when_storing -> ".readlink($fullpath).": skipping");
1945
+ return true;
1946
+ }
1947
+
1948
  // De-reference. Important to do to both, because on Windows only doing it to one can make them non-equal, where they were previously equal - something which we later rely upon
1949
  $fullpath = realpath($fullpath);
1950
  $original_fullpath = realpath($original_fullpath);
1994
  $updraftplus->log("Skip directory (.donotbackup file found): $use_path_when_storing");
1995
  return true;
1996
  }
1997
+
1998
  if (!isset($this->existing_files[$use_path_when_storing])) $this->zipfiles_dirbatched[] = $use_path_when_storing;
1999
+
2000
  if (!$dir_handle = @opendir($fullpath)) {
2001
  $updraftplus->log("Failed to open directory: $fullpath");
2002
  $updraftplus->log(sprintf(__("Failed to open directory (check the file permissions and ownership): %s",'updraftplus'), $fullpath), 'error');
2005
 
2006
  while (false !== ($e = readdir($dir_handle))) {
2007
  if ('.' == $e || '..' == $e) continue;
2008
+
2009
  if (is_link($fullpath.'/'.$e)) {
2010
  $deref = realpath($fullpath.'/'.$e);
2011
  if (is_file($deref)) {
2033
  $updraftplus->log(sprintf(__("%s: unreadable file - could not be backed up"), $deref), 'warning');
2034
  }
2035
  } elseif (is_dir($deref)) {
2036
+
2037
+ // $link_target = readlink($deref);
2038
+ // $updraftplus->log("Symbolic link $use_path_when_storing/$e -> $link_target");
2039
+
2040
  $this->makezip_recursive_add($deref, $use_path_when_storing.'/'.$e, $original_fullpath, $startlevels, $exclude);
2041
  }
2042
  } elseif (is_file($fullpath.'/'.$e)) {
2286
 
2287
  $this->makezip_if_altered_since = (is_array($this->altered_since)) ? (isset($this->altered_since[$whichone]) ? $this->altered_since[$whichone] : -1) : -1;
2288
 
2289
+ // Reset
2290
+ $got_uploads_from_cache = false;
2291
+
2292
  // Uploads: can/should we get it back from the cache?
2293
+ // || 'others' == $whichone
2294
+ if (('uploads' == $whichone ) && function_exists('gzopen') && function_exists('gzread')) {
2295
  $use_cache_files = false;
2296
  $cache_file_base = $this->zip_basename.'-cachelist-'.$this->makezip_if_altered_since;
2297
  // Cache file suffixes: -zfd.gz.tmp, -zfb.gz.tmp, -info.tmp, (possible)-zfs.gz.tmp
2363
  $add_them = true;
2364
  }
2365
  } else {
2366
+ if (empty($got_uploads_from_cache)) {
2367
+ $add_them = $this->makezip_recursive_add($element, $this->basename($element), $element, 1, $exclude);
2368
+ } else {
2369
+ $add_them = true;
2370
+ }
2371
  }
2372
  if (is_wp_error($add_them) || false === $add_them) $error_occurred = true;
2373
  }
2376
 
2377
  // Cache the file scan, if it looks like it'll be useful
2378
  // We use gzip to reduce the size as on hosts which limit disk I/O, the cacheing may make things worse
2379
+ // || 'others' == $whichone
2380
+ if (('uploads' == $whichone) && !$error_occurred && function_exists('gzopen') && function_exists('gzwrite')) {
2381
  $cache_file_base = $this->zip_basename.'-cachelist-'.$this->makezip_if_altered_since;
2382
 
2383
  // Just approximate - we're trying to avoid an otherwise-unpredictable PHP fatal error. Cacheing only happens if file enumeration took a long time - so presumably there are very many.
2628
 
2629
  $fsize = filesize($file);
2630
 
2631
+ if (@constant('UPDRAFTPLUS_SKIP_FILE_OVER_SIZE') && $fsize > UPDRAFTPLUS_SKIP_FILE_OVER_SIZE) {
2632
+ $updraftplus->log("File is larger than the user-configured (UPDRAFTPLUS_SKIP_FILE_OVER_SIZE) maximum (is: ".round($fsize/1024, 1)." KB); will skip: ".$add_as);
2633
+ continue;
2634
+ } elseif ($fsize > UPDRAFTPLUS_WARN_FILE_SIZE) {
2635
  $updraftplus->log(sprintf(__('A very large file was encountered: %s (size: %s Mb)', 'updraftplus'), $add_as, round($fsize/1048576, 1)), 'warning', 'vlargefile_'.md5($this->whichone.'#'.$add_as));
2636
  }
2637
 
central/bootstrap.php CHANGED
@@ -317,12 +317,12 @@ class UpdraftPlus_UpdraftCentral_Main {
317
  );
318
  }
319
 
320
- $response = json_decode($sent_key['body'], true);
321
 
322
  if (!is_array($response) || !isset($response['key_id']) || !isset($response['key_public'])) {
323
  return array(
324
  'r' => sprintf(__('A key was created, but the attempt to register it with %s was unsuccessful - please try again later.', 'updraftplus'), (string)$post_it_description),
325
- 'raw' => $sent_key['body']
326
  );
327
  }
328
 
317
  );
318
  }
319
 
320
+ $response = json_decode(wp_remote_retrieve_body($sent_key), true);
321
 
322
  if (!is_array($response) || !isset($response['key_id']) || !isset($response['key_public'])) {
323
  return array(
324
  'r' => sprintf(__('A key was created, but the attempt to register it with %s was unsuccessful - please try again later.', 'updraftplus'), (string)$post_it_description),
325
+ 'raw' => wp_remote_retrieve_body($sent_key)
326
  );
327
  }
328
 
central/listener.php CHANGED
@@ -17,6 +17,8 @@ class UpdraftPlus_UpdraftCentral_Listener {
17
  public function __construct($keys = array(), $command_classes = array()) {
18
  global $updraftplus;
19
  $this->ud = $updraftplus;
 
 
20
 
21
  foreach ($command_classes as $class_prefix => $command_class) {
22
  if (class_exists($command_class)) $this->commands[$class_prefix] = new $command_class($this);
17
  public function __construct($keys = array(), $command_classes = array()) {
18
  global $updraftplus;
19
  $this->ud = $updraftplus;
20
+ // It seems impossible for this condition to result in a return; but it seems Plesk can do something odd within the control panel that causes a problem - see HS#6276
21
+ if (!is_a($this->ud, 'UpdraftPlus')) return;
22
 
23
  foreach ($command_classes as $class_prefix => $command_class) {
24
  if (class_exists($command_class)) $this->commands[$class_prefix] = new $command_class($this);
central/updraftplus-commands.php CHANGED
@@ -238,7 +238,7 @@ class UpdraftPlus_RemoteControl_Commands extends UpdraftCentral_Commands {
238
 
239
  if (!UpdraftPlus_Options::user_can_manage()) return $this->_generic_error_response('updraftplus_permission_denied');
240
 
241
- $results = $this->_get_vault()->ajax_vault_disconnect(false);
242
 
243
  return $this->_response($results);
244
 
238
 
239
  if (!UpdraftPlus_Options::user_can_manage()) return $this->_generic_error_response('updraftplus_permission_denied');
240
 
241
+ $results = (array)$this->_get_vault()->ajax_vault_disconnect(false);
242
 
243
  return $this->_response($results);
244
 
changelog.txt ADDED
@@ -0,0 +1,1687 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This file contains changelog entries that are not contained in the main readme.txt file (that file contains the newest entries).
2
+
3
+ = 1.12.5 - 08/Apr/2016 =
4
+
5
+ * TWEAK: (Paid versions) - tweak the updater class so that it sends the information that updraftplus.com needs in order to correctly advise about language pack update availability. (If you are continuously seeing the same language pack update offered, then this may continue for a few more hours - please be patient!).
6
+ * TWEAK: Detect another case and deal with an HTTP 413 response when sending chunked data on a direct site-to-site migration
7
+
8
+ = 1.12.4 - 07/Apr/2016 =
9
+
10
+ * FEATURE: Faster uploads to Dropbox, via adapting to network conditions: https://updraftplus.com/faster-dropbox-uploads/
11
+ * FEATURE: (Paid versions) Plugin now no longer bundles all translations - instead, WP's mechanism for downloading single translations, as/when needed, is used (reduces on-disk size by 12MB=36%)).
12
+ * FIX: Deal with some database encryption phrases with special characters that were incorrectly processed
13
+ * FIX: Deal with an error in the advanced retention rules processing code, that could lead to keeping the wrong backup set
14
+ * FIX: Fix an unescaped string which could cause a JavaScript notice on the UD settings page in some non-English translations
15
+ * FIX: The minimum allowed value for the split size was not previously taking effect when saving settings
16
+ * TWEAK: When connection to an updraftplus.com UpdraftCentral dashboard, allow use of the alternative connection method
17
+ * TWEAK: Suppress some known deprecation warnings on PHP 7
18
+ * TWEAK: Show OpenSSL/Mcrypt info in the log + debug info
19
+ * TWEAK: Detect a completed upload to Dropbox masked by a race event from the WP scheduler
20
+ * TWEAK: The drop-down in the 'Migrate' dialog will now update on a rescan without needing a page reload
21
+ * TWEAK: (Paid versions) Update bundled plugin updater class (Yahnis Elsts) to version 3.0
22
+ * TWEAK: Add woocommerce_sessions to the list of tables of transient data
23
+ * TWEAK: When saving settings, if invalid input is adjusted, this will be reflected back to the UI without a page load (not on all elements)
24
+ * TWEAK: When saving settings, the schedule was written twice on non-multisite installs
25
+
26
+ = 1.12.2 - 30/Mar/2016 =
27
+
28
+ * TWEAK: When testing Amazon S3 bucket accessibility, slightly improve one of the corner-case checks
29
+ * TWEAK: When creating an encryption key for direct Migration, or UpdraftCentral, allow the user to choose their key size (this helps with PHP installs lacking both OpenSSL and GMP, in which case key creation can be really slow)
30
+ * TWEAK: Detect another case and deal with an HTTP 413 response when sending chunked data on a direct site-to-site migration
31
+
32
+ = 1.12.1 - 24/Mar/2016 =
33
+
34
+ * TWEAK: Update the bundled remote communications library - needed for some UpdraftCentral users
35
+
36
+ = 1.12.0 - 23/Mar/2016 =
37
+
38
+ * FEATURE: Compatible with the forthcoming (very soon!) UpdraftCentral remote control panel
39
+ * COMPATIBILITY: Tested + supported on the upcoming WordPress 4.5
40
+ * FIX: On some setups, if no remote storage was configured (not recommended), then old backups were not being pruned
41
+ * FIX: Make FTP active mode (very rarely seen) work correctly again
42
+ * TWEAK: Added a hint to FTP users who appear to be firewalled on only the data channel when attempting to use encrypted FTP
43
+ * TWEAK: Improve detection of the WordPress scheduler duplicating periodic events when the server is overloaded
44
+ * TWEAK: Simplify main tab layout upon first use
45
+ * TWEAK: Add some previously unbundled licence files
46
+ * TWEAK: Prevent a couple of PHP notices being logged when running a manual search/replace
47
+ * TWEAK: Add a filter to allow more over-riding of pruning
48
+
49
+ = 1.11.29 - 27/Feb/2016 =
50
+
51
+ * FIX: When saving settings on multisite, some connections to remote storage could drop and need to be re-made
52
+ * FIX: Fix an inoperative button in the Clone dialog box
53
+ * FIX: Fix an error upon automatic backups (Premium) in 2.11.28
54
+ * TWEAK: Updated readme to reflect > 700,000 active sites
55
+ * TWEAK: When cloning a site and mod_rewrite is not available, give a warning pre-restore
56
+ * TWEAK: Options saving on multisite is now much more efficient (in terms of database requests required)
57
+ * TWEAK: Improve the scheduling algorithm in the case of hosts that allow very long runs times, and a network outage on the cloud storage
58
+ * TWEAK: When connecting to updraftplus.com to claim a licence (paid versions), use the newer JSON-based protocol
59
+ * TWEAK: Many and various internal improvements to structure of the admin page HTML, CSS and JS
60
+ * TWEAK: The boxes for adding extra addresses for reporting, and extra DBs, now fade in
61
+
62
+ = 1.11.27 - 17/Feb/2016 =
63
+
64
+ * FEATURE: Automatic backups can take place before updates commissioned via WordPress.Com/JetPack remote site management (requires a not-yet-released version of JetPack - all current releases are insufficient, so please don't file reports about this yet)
65
+ * FIX: Fixed a further logic error in the advanced backup retention options, potentially relevant if you had more than one extra rule, affecting the oldest backups
66
+ * TWEAK: Resolve issue on some sites with in-dashboard downloads being interfered with by other site components
67
+ * TWEAK: Auto-backups now hook to a newly-added more suitable action, on WP 4.4+ (https://core.trac.wordpress.org/ticket/30441)
68
+ * TWEAK: Make WebDAV library not use a language construct that's not supported by HHVM
69
+ * TWEAK: Change options in the "Backup Now" dialog as main settings are changed
70
+ * TWEAK: Show the file options in the "Backup Now" dialog if/when alerting the user that they've chosen inconsistent options
71
+ * TWEAK: When pruning old backups, save the history to the database at least every 10 seconds, to help with sites with slow network communications and short PHP timeouts
72
+
73
+ = 1.11.26 - 13/Feb/2016 =
74
+
75
+ * TWEAK: Prevent HTTP 500 download errors on some very large file/hosting setups
76
+ * TWEAK: A tiny number of users had a badly laid-out settings screen until they refreshed their browser cache. This release prevents that.
77
+
78
+ = 1.11.24 - 10/Feb/2016 =
79
+
80
+ * FIX: Fixed further logic errors in the advanced backup retention options, potentially relevant if you had more than one extra rule
81
+ * TWEAK: Saving of settings is now done over AJAX (i.e. without a page reload)
82
+ * TWEAK: In-dashboard downloads now process the HTTP Range: header, allowing resumption of failed downloads via the browser
83
+ * TWEAK: Tweak 'Existing Backups' table CSS, to allow more entities per row
84
+ * TWEAK: Warn copy.com users of Barracuda ending the service - https://techlib.barracuda.com/CudaDrive/EOL
85
+ * TWEAK: Rename the 'hidden' CSS class, to prevent clashes with other plugins/themes which load their CSS code onto UD's page (which they shouldn't be doing)
86
+ * TWEAK: Fix newsletter sign-up link
87
+ * TWEAK: Log and triple-click summary now mentions the total size of the backup (i.e. total of the compressed backup set)
88
+ * TWEAK: Try to detect a very rare case of recoverable database read failure, and schedule a re-try
89
+ * TWEAK: Suppress unnecessary warning message when Dropbox account info checking fails
90
+ * TWEAK: Attempt to restart a large OneDrive upload in a particular case seen when OneDrive's end seems to get into confusion about state
91
+ * TWEAK: Various bits of internal re-factoring to support future improvements
92
+
93
+ = 1.11.23 - 26/Jan/2016 =
94
+
95
+ * FIX: When migrating a sub-folder based multisite into a non-root install with different relative path to the source multisite (I can't think of any good reasons to do this), the search/replace could leave sub-sites unreachable without manual correction
96
+ * FIX: Logic errors in the advanced backup retention options could lead to the oldest backups being deleted prematurely, and some backups not being deleted when they were overdue for deletion
97
+ * FIX: Amazon S3 bucket creation wizard (in the S3 enhanced add-on) was not honouring the chosen region for new buckets
98
+ * FIX: Upon restoration over an existing site, inactive plugins could remain post-restore (bug introduced in 1.11.20)
99
+ * TWEAK: Various internal re-organisations, to improve modularity/re-use of the code
100
+ * TWEAK: Internal CSS re-organisation to make future layout changes easier
101
+ * TWEAK: The "stop" link in the backup progress indicator now halts the backup asap, instead of at the next scheduled resumption
102
+ * TWEAK: Clarify the course of action needed if you attempt a Dropbox backup without Curl
103
+ * TWEAK: Add support for the new Asia Pacific (Seoul) region to Amazon S3
104
+ * TWEAK: Make the automatic backup option box appear on the updates page for users who can update plugins or themes (not just core - previously it was assumed that these would always go together in the real world, but some managed hosts are now removing the core update capability from the default admin user, whilst leaving the others)
105
+ * TWEAK: Change default zip split size to 400Mb on new installs
106
+ * TWEAK: Clean up use of composer, to conform to proper usage standards, and update to current version (to avoid causing a problem for plugins using PSR-4 autoloaders)
107
+ * TWEAK: Provide direct links to cart when choosing UpdraftPlus Vault storage
108
+ * TWEAK: Add debug.log to the default exclusions in wp-content (when people leave debug logging on and forget, it can get huge)
109
+ * TWEAK: On multisite, make sure that the site/blogs tables are placed early in the backup (assists with quickly scanning backup info)
110
+ * TWEAK: Update to phpseclib 1.0.1
111
+ * TWEAK: Prevent a PHP notice when using SCP
112
+ * TWEAK: Add new termmeta table to the default list of core tables (which is usually automatically detected)
113
+
114
+ = 1.11.21 - 28/Dec/2015 =
115
+
116
+ * TWEAK: If there's a problem connecting to UpdraftPlus Vault, in some situations the information on the cause was not easily readable
117
+ * TWEAK: Slightly more logging on failed OneDrive operations, to aid problem-solving
118
+ * TWEAK: Add wysija_email_user_stat to the list of potentially huge non-critical tables (which can get skipped in an emergency)
119
+ * FIX: Package Pear/Exception.php, so that servers without it already can use Microsoft Azure blob storage
120
+ * FIX: Prevent PHP fatal error on admin area in some restore scenarios
121
+
122
+ = 1.11.20 - 21/Dec/2015 =
123
+
124
+ * FEATURE: WordPress multisite backup administrators can now selectively restore data from a chosen site, instead of restoring the entire WordPress install - https://updraftplus.com/selectively-restoring-on-wordpress-multisite/ (requires WP 3.5+, UpdraftPlus Premium)
125
+ * FEATURE: Import a WordPress single-site backup into WordPress multisite, as a new site (requires WP 3.5+, UpdraftPlus Premium) - https://updraftplus.com/information-on-importing-a-single-site-wordpress-backup-into-a-wordpress-network-i-e-multisite/
126
+ * FIX: Properly encode folder paths with Copy.Com, allowing some previously prevented folder names to work
127
+ * FIX: In-dashboard decryption using some decryption keys with URL-encodable characters failed
128
+ * FIX: Prevent PHP fatal error on settings page on a buggy old PHP version (5.2.10) when Google Cloud storage add-on not present
129
+ * FIX: When using multiple remote storage providers, a race condition could lead to some old backups not being deleted on the storage not uploaded to last
130
+ * FIX: Views are now placed after tables in the database backup
131
+ * FIX: In-page uploader widget was not working on sub-domain based multisites in some dashboard access scenarios
132
+ * FIX: Package Net/URL2 (PEAR), so that servers without it already can use Microsoft Azure blob storage
133
+ * TWEAK: Upgrade Microsoft OneDrive API usage to latest version
134
+ * TWEAK: Automatic backups are now hooked into the themes page in the network admin on WP multisite installs
135
+ * TWEAK: Dashboard messages were not being clearly shown when trying to use UpdraftPlus Vault without PHP Curl available
136
+ * TWEAK: Protect against other plugins loading incompatible Google SDKs when Google Cloud is being used
137
+ * TWEAK: When trying to use S3, DreamObjects or UpdraftPlus Vault without PHP Curl available, make the cause of the problem more obvious
138
+ * TWEAK: When sending data to remote site, keep re-trying on receipt of an HTTP 413 (request entity too large) down to 64Kb (instead of previous 128Kb) - a webserver was seen in the wild configured at this level
139
+ * TWEAK: Detect the WordPress scheduler invoking a scheduled backup multiple times, in some cases where the existing semaphore lock wasn't helping (because the backup already finished, or the WP scheduler invoked multiple instances of the same event minutes apart - apparently possible when very heavily overloaded)
140
+ * TWEAK: Detect an inconsistent semaphore locking state, and fix it (apparently only possible upon unexpected server crash)
141
+ * TWEAK: Provide a button to cancel (not just continue) an interrupted restore
142
+ * TWEAK: Work around buggy Ubuntu PHP versions - https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1315888
143
+ * TWEAK: Make sure that backup options get passed on with continuation data, when resuming an interrupted restore
144
+ * TWEAK: Catch a few untranslated strings (in the decryptor widget for encrypted backups)
145
+ * TWEAK: Log more information if a connection to UpdraftPlus Vault fails
146
+ * TWEAK: The internal info shown when triple-clicking a backup set's date had messed-up formatting
147
+
148
+ = 1.11.18 - 25/Nov/2015 =
149
+
150
+ * FEATURE: On hosts with low timeouts that kill restore operations half-way though, provide an obvious button on the dashboard to immediately resume; see: https://updraftplus.com/resuming-interrupted-restores/
151
+ * FEATURE: Usability improvements and ability to select file components in the 'Backup Now' dialog - https://updraftplus.com/improvements-to-the-backup-now-dialog-box/
152
+ * FEATURE: Full support for Microsoft Azure blob storage (UpdraftPlus Premium)
153
+ * FEATURE: Allow all files beginning with a defined prefix to be excluded from the backup by inputting (for example) prefix:someprefix_,prefix:someotherprefix- in your exclusion settings - see: https://updraftplus.com/faqs/how-can-i-exclude-particular-filesdirectories-from-the-backup/
154
+ * FEATURE: UpdraftPlus Premium can now restore backups created by "Dropbox Backup" by WPAdm
155
+ * COMPATIBILITY: Tested/supported on the forthcoming WordPress 4.4
156
+ * TWEAK: Faster zip file creation on PHP 7 with ZipArchive - https://updraftplus.com/faster-zip-file-creation-with-the-php-7-zip-engine/
157
+ * TWEAK: Improve settings tab: remove headings, tweak a few wordings, move "remote storage" section further up
158
+ * TWEAK: Introduce UPDRAFTPLUS_SET_TIME_LIMIT internal constant
159
+ * TWEAK: Quote the table name passed to MySQL in DESCRIBE statement
160
+ * TWEAK: Prevent a PHP notice being logged during initial updates connection, and another when restoring third-party databases
161
+ * TWEAK: Style previously unstyled button in some auto-backup scenarios
162
+ * FIX: A few settings were not being deleted by the "Wipe Settings" button.
163
+ * FIX: Importer would not correctly handle third-party backups where the files and zip were both in zip format, separately, and where they were restored together
164
+ * FIX: With multi-archive backup sets, files in the top level of a backup of WP core or 'others' were not restored by an in-dashboard restore if they over-wrote an existing non-identical file if they were not in the first archive
165
+
166
+ = 1.11.17 - 13/Nov/2015 =
167
+
168
+ * FIX: Resolve a conflict with "Simple Calendar" (formerly "Google Calendar Events") since their re-written 3.0 release, when using Google Drive storage
169
+
170
+ = 1.11.15 - 28/Oct/2015 =
171
+
172
+ * FEATURE: Google Cloud Storage support (UpdraftPlus Premium)
173
+ * FIX: Automatic backups of WordPress core prior to WP core upgrade in recent versions were including non-WP core files
174
+ * FIX: OwnCloud 8.1's WebDAV server responds differently, breaking UD's communications: restore the ability to back up to OwnCloud WebDAV
175
+ * TWEAK: Allow use of the Meta key for selecting multiple backup sets (as well as Control)
176
+ * TWEAK: When sending backup data directly site-to-site (when migrating), handle the (very rare) case where a remote server complains of the chunk size after accepting previous chunks of the same size
177
+ * TWEAK: Add message to final log line when sending backup set directly to a remote site, reminding the user of what to do next.
178
+ * TWEAK: Tweak zip-splitting algorithm, to prevent delayed split on resumption when final file in the last-created zip is gigantic
179
+ * TWEAK: By default, exclude directories that appear to be the UpdraftPlus internal directory of a site stored in a sub-directory when backing up WordPress core
180
+ * TWEAK: In the debugging output, show more clearly when Curl is not installed
181
+ * TWEAK: Remove trailing slashes from what WP returns as the uploads/plugins directories, in case the user has specified a manual directory over-ride and erroneously added a trailing slash
182
+ * TWEAK: Replace all remaining http:// links to updraftplus.com with https://
183
+ * TWEAK: Raise some of the Google Drive network timeouts
184
+ * TWEAK: Suppress an internal PHP notice when pruning backups in some circumstances
185
+ * TRANSLATIONS: Various updated translations
186
+
187
+ = 1.11.12 - 29/Sep/2015 =
188
+
189
+ * FEATURE: More sophisticated rules for retention/deletion (UpdraftPlus Premium) - https://updraftplus.com/more-sophisticated-backup-retention/
190
+ * FEATURE: Delete multiple backups at once - https://updraftplus.com/deleting-multiple-backups/
191
+ * FEATURE: When choosing a monthly backup, you can now choose the starting date (e.g. choose 17th, not just choose the next week-day, e.g. next Monday)
192
+ * FEATURE: You can exclude files with any particular extension by using the constant UPDRAFTPLUS_EXCLUDE_EXTENSIONS (comma-separate different extensions), or by inputting (for example) ext:.zip,ext:.mp4 in your exclusion settings.
193
+ * FEATURE: Tested and supported on the forthcoming PHP 7.0
194
+ * FIX: SFTP uploads could hang after finishing, if more than one attempt was needed to upload the file
195
+ * FIX: Stop causing JavaScript errors on WordPress 3.2 on the plugins page
196
+ * TWEAK: UI improvement when choosing multiple storage options - https://updraftplus.com/a-prettier-way-to-choose-remote-storage-options/
197
+ * TWEAK: The storage selection drop-down (free version) now has icons to make it easier on the eye
198
+ * TWEAK: Use UpdraftPlus Vault logo
199
+ * TWEAK: Replace target="_new" with target="_blank" when opening new browser ports, to be more standards-compliant
200
+ * TWEAK: Tweak the auto-split algorithm again to catch another case where it would have been better to split in a low-resource situation
201
+ * TWEAK: When checking the backup integrity, allow for a multisite to not have a root options table; check sitemeta instead (unlikely, but theoretically possible)
202
+ * TWEAK: Raise default Google Drive network timeout from 15 seconds - it's too possible to hit this on a slow uplink (e.g. congested ADSL)
203
+ * TWEAK: Upgrade the bundled Google SDK to the most recent release (1.1.4)
204
+ * TWEAK: Add previously-untranslated string
205
+ * TWEAK: Suppress a PHP notice relating to a constant that needed quoting
206
+ * TWEAK: Turn off reporting of PHP deprecation conditions if using phpseclib on PHP 7 (can break communications - phpseclib uses PHP4-style constructors)
207
+ * TRANSLATIONS: Various updated translations
208
+
209
+ = 1.11.9 - 04/Sep/2015 =
210
+
211
+ * FIX: Dropbox introduced an un-documented, un-announced change to their server, which caused new site authentications in UpdraftPlus to no longer work. Now fixed with this release.
212
+ * FIX: If backing up multiple extra directories under "more files", if large directories required a resumption, then inclusion of the files multiple times in the backup was possible.
213
+ * TWEAK: Tweak the auto-split algorithm to not avoid firing in a particular case (that relies on a sequence of unlikely I/O events, seen on GoDaddy) if there's no resumption scheduled
214
+ * TWEAK: Add mysql.sql to the (changeable) default configuration for excludes from wp-content - on WP Engine this is an unreadable file that they create that thus produces a backup warning
215
+ * TWEAK: Add a dashboard warning (+ link to documentation) if UD appears to be incompletely installed
216
+ * TWEAK: Add UPDRAFTPLUS_WEBDAV_NEVER_CHUNK constant for WebDAV servers that return the wrong error code when chunking fails
217
+ * TWEAK: Introduce a UPDRAFTPLUS_REMOTESEND_DEFAULT_CHUNK_BYTES constant allowing the over-riding of the remote-send (Migrator) starting chunk size in wp-config.php (expert users)
218
+ * TWEAK: Add CSS classes to dashboard updates notices, so that people can hide them more easily if they wish
219
+ * TWEAK: If gzopen() is disabled, then test binzip without trying to use PclZip to verify the results
220
+ * TWEAK: Add work-around for PHP bug https://bugs.php.net/bug.php?id=62852
221
+
222
+ = 1.11.6 - 22/Aug/2015 =
223
+
224
+ * FIX: SFTP was not working in 1.11.4 for some servers (related to phpseclib library update and sources of random data)
225
+ * FIX: 1.11.5 release had wrong version number in header for paying users; corrected with fresh release
226
+
227
+ = 1.11.4 - 19/Aug/2015 =
228
+
229
+ * FIX: Perform previously missing tweak on the database after restoring a multisite backup to an install with a different table prefix, which inhibited the ability to create new users on the main site in a network.
230
+ * TWEAK: Remove an inefficiency when examining files to prune from Google Drive, reducing the amount of time needed.
231
+ * TWEAK: Show a warning if UpdraftPlus's directory in wp-content/plugins has been manually renamed to include a space, which WordPress does not support
232
+ * TWEAK: Skip search/replacing of the 'guid' column in the posts table when migrating (improves performance - and prevents possible re-appearances of blog articles in peoples' feed readers if double-migrating)
233
+ * TWEAK: Upgraded the bundled phpseclib Math, Net and File libraries to current versions (1.0 branch)
234
+ * TWEAK: Prevent PHP notice in log file when deleting FTP backup from dashboard
235
+ * TRANSLATIONS: Updated translations, including Greek
236
+
237
+ = 1.11.3 - 13/Aug/2015 =
238
+
239
+ * FIX: Fix access to S3 for PHP 5.2 users using buckets in the US-WEST-1 region
240
+ * FIX: Fix access to UpdraftPlus Vault for some PHP 5.2 users
241
+
242
+ = 1.11.2 - 11/Aug/2015 =
243
+
244
+ * TWEAK: Handle the results when someone with no UpdraftPlus Vault quota attempts to connect more gracefully
245
+
246
+ = 1.11.1 - 10/Aug/2015 =
247
+
248
+ * FEATURE: UpdraftPlus Vault storage - simple to set up storage from your trusted provider: https://updraftplus.com/landing/vault - with 1Gb of free storage for UpdraftPlus Premium customers ( https://updraftplus.com/shop/updraftplus-premium/ ) - and more storage available for anyone to purchase. All other storage options (Dropbox, Google Drive, etc.) remain available, of course!
249
+ * FEATURE: S3 enhanced wizard now allows the user to optionally deny the new Amazon Web Services IAM user download and/or delete permissions, for an even more secure setup (at the cost of some convenience - you will need to download/restore/delete S3 backups outside of UpdraftPlus).
250
+ * FEATURE: Amazon S3 in UpdraftPlus Premium now supports optional server-side encryption
251
+ * FEATURE: An "UpdraftPlus" menu now appears on the WP admin bar, allowing quick access.
252
+ * COMPATIBILITY: Tested and compatible with WordPress 4.3
253
+ * SPEED: For users' whose backups are created with a zip binary (the default engine, where available), CPU usage + zip creation times have been significantly reduced
254
+ * SPEED: For users cloning a website with a large number of users and a changed table prefix, a long and slow series of SQL operations has been replaced with a single fast one
255
+ * FIX: The chunk-uploading algorithm for Copy.Com could unnecessarily upload the same chunks multiple times. We have not had any reports, but we believe it's also theoretically possible that a Copy.Com upload could have been corrupted by the same issue, so recommend updating for all Copy.Com users.
256
+ * FIX: Fix issue with site cloning whereby on sites with very large numbers of entries in the postmeta table that needed search/replacing, some could be omitted (in the case seen, the table had >600,000 entries)
257
+ * FIX: Saving the settings immediately after authenticating with Copy.Com resulted in being redirected to WP's page for all settings.
258
+ * FIX: If PHP was killed by the webserver during the process of pruning old backups, then this would not be retried until the next backup, thus potentially leaving more backups than desired around in remote storage in the meanwhile.
259
+ * FIX: Log files sometimes failed to mention the MySQL version
260
+ * TRANSLATIONS: Various updated translations - thanks to our translators
261
+ * TWEAK: When choosing multiple remote storage options (Premium), these are now stacked via tabs, instead of vertically as before
262
+ * TWEAK: More help for enormous sites on badly resourced web hosting: part of the enumeration of uploads needing backing up is now cached, allowing more to be time when time limits are short
263
+ * TWEAK: Secret credentials (e.g. S3 secret key) in the admin area are now starred (as explained in our long-standing FAQ, this does nothing to protect against malicious WordPress co-admins on your site - https://updraftplus.com/faqs/in-the-administration-section-it-shows-my-amazon-ftp-etc-passwords-without-using-stars-is-this-safe/ - but at least we won't get asked about it so many times!).
264
+ * TWEAK: Provide more direct help to the user if they are hosting with Strato and get the 'File Size Limit Exceeded' zip message
265
+ * TWEAK: When migrating data directly to a remote site, if the remote site returns a 413 HTTP code ("Request Entity Too Large"), re-try using a smaller chunk size
266
+ * TWEAK: Log when about to begin encryption of a database file (allowing the progress to be monitored more easily if there's a problem)
267
+ * TWEAK: Detect a further case of an incompatible database (that is from a remote source and uses MySQL features not present on the destination server) and warn before attempting to import.
268
+ * TWEAK: Make the error message shown if trying to restore an incompatible database (that is from a remote source and uses MySQL features not present on the destination server) clearer.
269
+ * TWEAK: If the user uses "Backup Now" before saving their settings, warn them that the unsaved settings changes won't apply to this backup
270
+ * TWEAK: Only warn about very large files found once for each file (rather than once per resumption)
271
+ * TWEAK: Add the UPDRAFTPLUS_GOOGLEDRIVE_DISABLEGZIP constant - define it as true to work-around broken HTTP setups (possibly broken outgoing proxy?) when accessing Google Drive
272
+ * TWEAK: When claiming an add-on (paid versions), the user's updraftplus.com password will automatically be forgotten once it is no longer needed
273
+ * TWEAK: Handle the case of the user typing in an invalid number of backups to retain more elegantly
274
+ * TWEAK: No longer require the php-mcrypt module for Dropbox
275
+ * TWEAK: Also retry a smaller chunk size if it looks like mod_security unhelpfully replaced a 413 HTTP code with a 200 success message despite the operation actually failing for this reason, or if it looks like sending is just timing out before the PHP timeout (so that we don't get notified).
276
+ * TWEAK: Added new CA root certificates to store (http://curl.haxx.se/ca/cacert.pem)
277
+ * TWEAK: If the Migrator's direct-send component drops its chunk size, then store this information so that it doesn't have to go through the cycle of finding the best chunk size the next time.
278
+ * TWEAK: Added UPDRAFTPLUS_IPV4_ONLY constant to prevent use of IPv6 (currently implemented by Google Drive only)
279
+ * TWEAK: Deal with a case where the web host appears to be losing disk I/O near kill time, despite later database writes going through (so, the order of operations was insufficient to guarantee what had been completed). This issue was only cosmetic - backup sets were intact (hence "tweak", not "fix")
280
+ * TWEAK: Increase HTTP timeout for remote site-to-site operations
281
+ * TWEAK: Don't cause the 'debug' tab to abort rendering if the web host has disabled the gzopen() function (which is an odd/pointless thing to do)
282
+ * TWEAK: Resolve PHP 'strict standards' coding internal notice in Google Drive module
283
+
284
+ = 1.10.3 - 2015-06-09 =
285
+
286
+ * FEATURE: Migration component can now send backup data directly from one WP site to another - https://updraftplus.com/shop/updraftplus-premium/
287
+ * FEATURE: Support active mode FTP servers (extremely rare)
288
+ * FIX: The error message when choosing no components to restore was empty
289
+ * FIX: Restore ability to run on WordPress 3.5 (actually fixed in downloads of 1.10.1 after 2015-05-13)
290
+ * FIX: Some automatic pre-upgrade backups were not marked internally as such, leading UD to delete the oldest scheduled backup prematurely backups prematurely
291
+ * TWEAK: Reduce HTTP round-trips when checking presence + downloading backup archives in a restore/migrate operation
292
+ * TWEAK: Alert the user earlier if they're trying to use a database with a character set not supported by MySQL
293
+ * TWEAK: Use separate internal jobs for separate downloads, and thus avoid race conditions when updating job data (symptom: download widgets that don't show current information)
294
+ * TWEAK: Add constant UPDRAFTPLUS_SFTP_TIMEOUT allowing users to over-ride (via wp-config.php) the default SFTP timeout (default now: 15 seconds).
295
+ * TWEAK: Make Copy.Com filter out non-backups from remote file listings at an earlier stage
296
+ * TWEAK: Log more information when a curl error occurs when getting a OneDrive access token
297
+ * TWEAK: Code re-arrangement in OneDrive library to deal with sites using the obsolete PHP safe_mode
298
+ * TWEAK: Clearer message for users whose access to paid plugin updates has expired (paid versions)
299
+ * TWEAK: Improve detection of started pre-upgrade automatic backups in case of webserver misbehaviour
300
+ * TWEAK: Fix untranslated message when confirming the wiping of settings
301
+ * TWEAK: Replace more non-SSL links to updraftplus.com with SSL links
302
+ * TWEAK: Use a POST instead of a GET during one of the restore sub-stages (avoids a false positive on some mod_security setups)
303
+ * TWEAK: Improve backup-file-naming routine to reduce the times when no ASCII name can be found (ASCII is preferred as not all cloud storage methods will accept arbitrary characters in filenames)
304
+ * TWEAK: Don't keep a log file (unless debug mode is on) for scheduled tasks that result in the result that nothing needs backing up
305
+ * TWEAK: Remove cache files from Cherry Framework child themes upon migration (framework misbehaves if cache files are present after URL change)
306
+
307
+ = 1.10.1 - 2015-05-12 =
308
+
309
+ * FEATURE: Microsoft OneDrive support (Premium version) - full support (including chunked/resumable uploading and downloading)
310
+ * FEATURE: Allow prevention of backup of unwanted tables, via a filter; see: https://updraftplus.com/faqs/how-can-i-exclude-a-specific-table-from-the-backup/
311
+ * FIX: Restore window would not open if date contained a single quote character in it (which was possible only in some languages)
312
+ * FIX: Restore the ability of PHP installations (< 1%) without curl to use Google Drive (broke when Google introduced a new SSL certificate at their end which PHP couldn't handle properly without extra help).
313
+ * TWEAK: Add woocommerce_order_items and relevanssi_log to the list of potentially huge tables that won't need search/replacing
314
+ * TWEAK: Add link to admin email setting and fix broken link to reporting add-on in free version
315
+ * TWEAK: Provide more direct help for paid users getting blocked by the security shield when connecting for updates access
316
+ * TWEAK: Small tweak in zip-splitting algorithm if it looks likely that there are insufficient resources with no further resumptions yet scheduled
317
+ * TWEAK: "Migrate" dialogue, when the Migrator is installed, now contains a widget to use directly (instead of just directing to other route)
318
+ * TWEAK: Ask user to confirm if they navigate away from the settings page with unsaved changes
319
+ * TWEAK: Replace some non-SSL links to updraftplus.com with SSL links, and replace all non-SSL readme links
320
+ * TWEAK: Add UPDRAFTPLUS_DBSCAN_TIMEOUT constant to control how much time is allowed for scanning database, and make the default vary instead of constant (will help users with absolutely enormous databases).
321
+ * TWEAK: Provide clearer guidance to users with a wrong updraftplus.com password entered for updates
322
+ * TWEAK: When cloning a site with Jetpack, automatically clear Jetpack invalid connection status
323
+ * TWEAK: Prevent some old admin notices from being repeated when saving settings
324
+
325
+ = 1.9.64 - 2015-04-20 =
326
+
327
+ * FEATURE: (Premium) Added wizard to make it easier to create limited-access AWS users (requires PHP 5.3.3)
328
+ * SECURITY: Fix non-persistent back-end XSS vulnerability, reported by Sucuri - https://updraftplus.com/new-security-vulnerability-found-across-significant-numbers-of-wordpress-plugins-including-updraftplus/
329
+ * FIX: Fix failure to access some files (e.g. for downloading or deleting) in Google Drive folders that contained >100 UpdraftPlus backup archives (thanks to IanUK for his help)
330
+ * TWEAK: Amazon S3 reduced redundancy storage (a feature of UpdraftPlus Premium) now requires use of PHP 5.3.3 or later.
331
+ * TWEAK: Various fixes to bring automatic backups code up to date with WP 4.2 release candidate 1 (there were some changes since beta 3, which worked since UD 1.9.62)
332
+ * TWEAK: Update to version 2.0 of plugin updater class (https://github.com/YahnisElsts/plugin-update-checker) - necessary on WP 4.2 to prevent shiny updates after the first failing when 3rd party plugins exist, and to suppress a PHP notice on the plugins page.
333
+ * TWEAK: Add wp_rp_tags to the list of potentially huge tables that won't need search/replacing
334
+ * TRANSLATION: New Slovenian translation, courtesy of Clav Icula
335
+
336
+ = 1.9.63 - 2015-04-03 =
337
+
338
+ * TWEAK: Revert to previous global SSL CA bundle: it seems Amazon S3 still has servers with 1024-bit SSL certificates
339
+
340
+ = 1.9.62 - 2015-04-01 =
341
+
342
+ * FEATURE: Automatic backups now integrate with the forthcoming WP 4.2's "shiny plugin updates"
343
+ * COMPATIBILITY: Tested and marked compatible with the forthcoming WordPress 4.2 (tested up to beta 3)
344
+ * FIX: Fix regression in 1.9.60 for corner-case of S3 users with no permission to check their bucket's location (but permission to write to it).
345
+ * TWEAK: Make "settings saved" message disappear after a few seconds, to prevent UI clutter
346
+ * TWEAK: Decrease UI clutter in backup time selection
347
+ * TWEAK: Update to latest global SSL CA bundle, removing again 1024-bit root CAs (last attempted in 1.9.26, but S3 still had some legacy servers). Modern web browsers have not accepted these for 6 months now. (SSL verification can be turned off in the expert options).
348
+ * TWEAK: Defeat WP Download Manager Google Drive plugin's loading of its SDK on all pages (conflicting with UD when UD attempts to backup to Google Drive)
349
+ * TWEAK: Detect case of old MySQL on Windows with table prefix that varies by case (and hence WP actually only works by accident) - produce a consistent backup that can be restored on any MySQL server.
350
+ * TWEAK: Add dashboard notice with links to more resources, for free users who've been installed >4 weeks (with option to dismiss notice)
351
+ * TWEAK: Add itsec_log to the list of tables of non-essential/not-needing-search/replace + likely to be large tables for backup strategy
352
+ * TWEAK: Improvement to scheduling algorithm in case where WP's scheduler starts same resumption multiple times - prevent next attempt being delayed longer than necessary
353
+ * TWEAK: Add a header to report emails indicating the job ID - helps when debugging
354
+ * TWEAK: Detect + show a more helpful error message if blocked by CloudFlare when connecting for updates (paid versions)
355
+ * TWEAK: Make it easier to use custom Dropbox API keys, via UPDRAFTPLUS_CUSTOM_DROPBOX_APP constant (define to true in wp-config.php)
356
+ * TWEAK: Tweak debug output of webserver information to avoid triggering a (silly) mod_security rule in some setups
357
+ * TWEAK: Alert the user if using Amazon S3 if they do not have the PHP XML Writer module available
358
+ * TWEAK: Log the fact that local deletions are being skipped, if the user set that option.
359
+ * TWEAK: Give timestamp of WPB2D backups without relying upon location of SQL file
360
+ * TWEAK: Detect a situation on migration where the uploads path is changed (from a site that began pre-WP 3.5) that was previously undetected
361
+ * TRANSLATIONS: French translation updated from less than half to complete, thanks to Erwan François. Various other translations updated (many thanks to all translators).
362
+
363
+ = 1.9.60 - 2015-02-24 =
364
+
365
+ * FEATURE: When using "Backup Now", and keeping the UpdraftPlus settings page open, a broken WP scheduler will not prevent the backup's progress.
366
+ * FEATURE: Amazon's "EU Central 1" Frankfurt region now supported again (Amazon began requiring their new signature method at this location - probably a sign of things to come everywhere). PHP 5.3.3 required for this region.
367
+ * FEATURE: Database backup files can now be handled when uncompressed - i.e., you can remove the gzip compression, and use the resulting file (useful for large backups on slow/limited hosting: pre-decompressing the file will reduce the processing time needed)
368
+ * FEATURE: Introduced new in-page auto-backup widget that can resume, and thus cope with a backup of any size. This feature is in preparation of WP 4.2's major re-write of the updating user experience flow.
369
+ * TWEAK: Update PHP-Opencloud (Rackspace) and dependency libraries to current versions.
370
+ * TWEAK: Make sure that activity is recorded periodically when adding database tables to the final database backup (found a site with over 7,500 tables)
371
+ * TWEAK: Don't bother to attempt to detect double-gz compression on setups where it can't be handled (where gzseek() has been disabled in the PHP configuration)
372
+ * TWEAK: Added free/Premium comparison table to the free version
373
+ * TWEAK: Importer (part of UpdraftPlus Premium) can now import generic .sql, .sql.gz and .sql.bz2 files
374
+ * TWEAK: Don't show the "memory limit" warning in a case where the value could not be accurately detected
375
+ * TWEAK: If the user chooses the "email" remote storage method, then a warning will be added if the archive being sent is bigger than most mailservers can carry (and will be removed if it is successfully sent), thus giving the user a hint as to the failure cause (if they overlooked the existing warning in the email settings).
376
+ * TWEAK: The importer (part of UpdraftPlus Premium) can now import the latest BackupWordPress format databases
377
+ * TWEAK: Flush output buffer explicitly when closing the browser connection - prevents delayed feedback on some setups
378
+ * TWEAK: Automatic backups are now offered if you go to the 'Plugins' page, and update via the 'More information' iframe
379
+ * TWEAK: Trim spaces from Google Drive client_id/secret - some users didn't spot that they introduced whitespace when copy-pasting
380
+ * TWEAK: Add "Simple Visitor Stats" and "Simple Feed Stats" tables to the list of tables that may have large amounts of data, and which don't need search/replacing when migrating
381
+ * TWEAK: When restoring plugins and themes, log the list of entities being restored (helps with tracing problems)
382
+ * TWEAK: Deal with CloudFTP/StorageMadeEasy returning directory listings in a non-standard format, when rescanning remote backups
383
+ * TWEAK: Version numbering scheme for paid versions changed; see: https://updraftplus.com/change-in-updraftpluss-version-numbering-scheme-for-paid-versions/
384
+ * TRANSLATIONS: Updated translations in several languages (many thanks for our translators)
385
+ * FIX: For imported 3rd-party backups, the 'Existing Backups' tab (only) was showing "Unknown Source" instead of the detected source.
386
+
387
+ = 1.9.52 - 2015-02-07 =
388
+
389
+ * FIX: Fix issue when migrating (hence, in Premium versions only) backups with very large options tables output by mysqldump, which could cause the site URL to finish with an incorrect value
390
+
391
+ = 1.9.51 - 2015-02-03 =
392
+
393
+ * SECURITY: Prevent nonce leak that could allow logged-in users who aren't admins (if you have any) to access backups, UpdraftPlus settings and perform other harmful actions. No issue exists for users of UpdraftPlus Premium, or if you have the stand-alone "Automatic Backups" or "No Adverts" add-ons, or if your site has no untrusted users who can log in (or whilst have dismissed the "Automatic Backups" notice on the updates page). Credit to Sucuri (http://sucuri.net) for identifying this issue, and notifying us of it.
394
+
395
+ = 1.9.50 - 2015-01-29 =
396
+
397
+ * TWEAK: Importer now supports a previously-unseen format for WordPress Backup 2 Dropbox backups
398
+ * TWEAK: Fix cron calculation that could have prevented UpdraftPlus loading when using ALTERNATE_WP_CRON (see 1.9.45)
399
+ * TWEAK: If insufficient permissions exist when restoring, then exit maintenance mode when this is detected; and handle the case of having create but not drop permissions more elegantly
400
+ * TWEAK: Defeat some other plugins/themes which load their CSS code onto UpdraftPlus settings page and break things
401
+ * TWEAK: Prevent a "not tested on this version of WP" message showing for a short time after install of a new version, when it only applied to the previous version
402
+ * TWEAK: Reduce HTTP timeout when checking for available plugin updates (paid versions) from 10 to 5 seconds
403
+ * TWEAK: Tidy up the post-restore screen a little - one less info box.
404
+ * TWEAK: When a restore finishes, WP Super Cache's cache will be emptied (if present), to prevent confusion caused by cached pre-restore pages.
405
+ * TWEAK: Slight change to how the 'mothership' for updates is calculated, for more flexibility in our in-house testing
406
+ * TWEAK: Log more informative error if user chooses 'FTP' for their remote storage, but adds no FTP settings
407
+ * TWEAK: Change "any other directory" to "any other file/directory" in the "more files" add-on, to better reflect its capabilities
408
+ * TWEAK: Make sure that "more files" will skip UD's temporary directory, if asked to back up a parent directory of it
409
+ * TWEAK: Default to https for updates checking, with fallback to http (only relevant to versions from updraftplus.com)
410
+ * TWEAK: Prevent 'Strict Standards' PHP coding notice with WebDAV on PHP 5.5
411
+ * TWEAK: Provide clickable link through to the admin email address in the reporting settings
412
+ * TWEAK: If the gzopen or gzread functions are disabled in the PHP install, then the message saying so omitted to say which one (or both)
413
+ * FIX: WebDAV upload method could very occasionally fail to detect upload error conditions
414
+
415
+ = 1.9.46 - 2014-12-29 =
416
+
417
+ * FEATURE: Chunked/resumable uploads are now supported for SFTP
418
+ * FIX: Scan for existing backup sets added manually to local storage in recent versions could overlook some unless clicked twice, in non-GMT timezones
419
+ * TWEAK: Work-around issue in Manage WP worker plugin which caused a crash when authenticating with Dropbox
420
+ * TWEAK: Prevent PHP notice when listing files on SFTP server
421
+ * TWEAK: Reset an internal upload counter used to detect activity when a cloud storage switch is made due to no apparent activity - could prevent some large, long-running uploads on hosts with little available execution time
422
+
423
+ = 1.9.45 - 2014-12-20 =
424
+
425
+ * FIX: Fix case in which the database imported from a BackWPUp backup could be falsely identified as missing (introduced in 1.9.40)
426
+ * FIX: WordPress installs with ALTERNATE_WP_CRON set could skip some scheduled backups (since 1.9.19, so it appears that the conditions required to cause this bug are rare)
427
+
428
+ = 1.9.44 - 2014-12-13 =
429
+
430
+ * TRANSLATIONS: Add new incomplete translations (ready for the wordpress.org change to take translation availability into account when searching for plugins): Norwegian Bokmål, Norwegian Nynorsk, Finnish, Hebrew, Catalan, Vietnamese, Bengali
431
+ * FIX: Fix a failure to detect the progress properly for large backup sets, introduced in 1.9.40
432
+
433
+ = 1.9.43 - 2014-12-11 =
434
+ * FIX: Fix bug in 'lock admin' feature causing lock-outs even with the correct password
435
+ * TWEAK: Site is put in maintenance mode whilst database restore takes place
436
+
437
+ = 1.9.42 - 2014-12-08 =
438
+ * FIX: Fix bug in 1.9.40 that caused some cloud storage uploads to be terminated.
439
+ * FIX: Restore functionality for Premium users on older WP versions (3.1 - 3.5)
440
+
441
+ = 1.9.40 - 2014-12-04 =
442
+
443
+ * FEATURE: The auto-backup addon (UpdraftPlus Premium) can now run before
444
+ WordPress automatic updates
445
+ * FEATURE: Lock access to your UpdraftPlus settings (Premium) -
446
+ https://updraftplus.com/lock-updraftplus-settings/
447
+ * FEATURE: The full log file viewer is now real-time - it updates as the
448
+ backup progresses
449
+ * FEATURE: When downloading from remote storage via the settings page, stalled
450
+ downloads are now automatically restarted (relevant for large backups with low
451
+ web-server PHP time-outs)
452
+ * FIX: Manual search/replace expert tool was broken in early downloads of
453
+ 1.9.31
454
+ * FIX: Suppress bogus messages about missing files from 3rd party tar backups
455
+ when restoring
456
+ * FIX: If backing up multiple "more files" locations (Premium), then paths
457
+ that were identical in both locations could be omitted from the second
458
+ location
459
+ * FIX: With the reporting add-on, any mails sent by other plugins after
460
+ UpdraftPlus had finished (which has never been seen in the wild) would have
461
+ corrupted contents
462
+ * TWEAK: The tab for downloading/restoring backups has been simplified
463
+ * TWEAK: Item for UpdraftPlus now appears in the network admin menu, for
464
+ super-admins on network installs
465
+ * TWEAK: Labels (Premium) are now maintained and can be detected for
466
+ locally-imported database backups
467
+ * TWEAK: Automatic backups are now labelled
468
+ * TWEAK: The "retain" settings now do not apply for auto-backups (Premium),
469
+ unless at least the specified number of non-auto-backups has already been
470
+ retained.
471
+ * TWEAK: Time selector now accepts typed hours without the trailing zero
472
+ * TWEAK: Extended BackWPUp importer to handle older BackWPUp backups lacking
473
+ manifests
474
+ * TWEAK: Removed Bitcasa storage option, due to closing down of API (November
475
+ 15th 2014)
476
+ * TWEAK: When an invalid JSON response is received during restore stage 2,
477
+ display the data directly (not just in the error console, where not everyone
478
+ will think of looking).
479
+ * TWEAK: 3rd party backups which are missing expected entities are now handled
480
+ more gracefully
481
+ * TWEAK: The fancy report now tells the user what paths are in the zips for
482
+ any additional paths they configured to add to the backup
483
+ * TWEAK: Add a swifter resumption in one corner case (efficiency)
484
+ * TWEAK: If a zip error is encountered on cPanel, then the free disk space is
485
+ checked, to potentially give the user more information on probable causes
486
+ * TWEAK: You can now remove your updraftplus.com password from the settings
487
+ (paid version) without losing your access to updates
488
+ * TWEAK: Suppress top advert if the user is on their first go (free version -
489
+ danger of too many notices)
490
+ * TWEAK: Don't display the post-restoration message "if your backup set...",
491
+ since we can work this out ourselves
492
+ * TWEAK: Supply extra help to the user if the backup directory is not
493
+ writable.
494
+ * TWEAK: SCP remote storage now logs chunk progress
495
+ * TWEAK: Provide a database encryption phrase text entry in the restore
496
+ options (rather than needing to enter it in the settings)
497
+ * TWEAK: Set the PclZip temporary directory to the Updraft directory if unset,
498
+ to keep its temporary files out of the way more easily
499
+ * COMPATIBILITY: Tested with the forthcoming WordPress 4.1
500
+ * TRANSLATIONS: New Dansk / Danish translation by Lars Lund and Lasse Jensen
501
+
502
+ = 1.9.31 - 2014-10-24 =
503
+
504
+ * TWEAK: Bitcasa now gives a deprecation warning (Bitcasa are closing down
505
+ their API on November 15th 2014)
506
+ * TWEAK: Fix bug causing PHP notices in Migrator add-on search/replace
507
+ * TWEAK: Add support for Amazon S3's new Frankfurt region
508
+ * TWEAK: Add work-around for bug in the ancient PHP 5.2.6 (May 2008!) if
509
+ binary zip not available
510
+
511
+ = 1.9.30 - 2014-10-21 =
512
+
513
+ * FEATURE: Add the capability to handle BackupWordPress database zip backups
514
+ (https://updraftplus.com/shop/importer/)
515
+ * FEATURE: Add capability to apply labels to backups (Premium -
516
+ https://updraftplus.com/shop/updraftplus-premium/)
517
+ * TWEAK: Logs are now shown in a pop-out window with a separate download
518
+ button
519
+ * TWEAK: Detect select/poll lengthy timeouts when uploading to Dropbox, and
520
+ prevent overlapping activity
521
+ * TWEAK: Add constant UPDRAFTPLUS_NOAUTOBACKUPS to programatically disable the
522
+ automatic backups add-on
523
+ * TWEAK: Rename UpdraftPlus Dropbox class, to avoid clash with Ninja Forms
524
+ upload add-on
525
+ * TWEAK: Made the output of the HTTP (curl) debugging tool more informative
526
+ * TWEAK: Add web.config file to make updraft directory unviewable on IIS
527
+ * TWEAK: If the user tries to import a WordPress Network backup into a
528
+ single-site install, then detect and warn
529
+ * TWEAK: In the free version, avoid unexpectedly changing the daily backup
530
+ time when other settings are saved
531
+ * TWEAK: Improve the immediate retry strategy in case of zip failure (saves
532
+ time and/or notifying the user to manually check the log)
533
+ * TWEAK: Correctly detect language on WP 4.0 onwards, when suggesting helping
534
+ with translation
535
+ * TWEAK: When connecting for updates to updraftplus.com (Premium), indicate if
536
+ it was the username or password that was wrong
537
+ * TWEAK: Alert user if they are trying to use Google Drive with a direct-IP
538
+ address site URL forbidden by Google's policy
539
+ * TWEAK: Prevent a corner-case where excessive logging could occur upon
540
+ restoration
541
+ * TWEAK: Be less strict with case when looking for supported patterns in the
542
+ Importer add-on (https://updraftplus.com/shop/importer/)
543
+ * TWEAK: Search/replace the postmeta table faster
544
+ * DEPRECATED: Bitcasa support has been deprecated, and the links removed from
545
+ the free version. (Existing Premium users using Bitcasa will continue to be
546
+ able to do so). See:
547
+ https://updraftplus.com/bitcasas-current-direction-unclear/
548
+ * FIX: Fix corner-case in URL search/replace when migrating a site that had WP
549
+ in a different directory to the site home, and migration to a sub-directory of
550
+ the original site.
551
+ * FIX: Autobackup setting (https://updraftplus.com/shop/autobackup/) failed to
552
+ save properly if turned off on first usage
553
+ * TRANSLATION: New Farsi (Persian, fa_IR) translation, courtesy of
554
+ Jamshidpour, Ashkan Ghadimi, Mohammad (2online4.ir) and Nasiri Amirreza
555
+
556
+ = 1.9.26 - 2014/09/22 =
557
+
558
+ * TWEAK: There are still some Amazon S3 servers validated via a Verisign
559
+ 1024-bit certificate, causing backup to fail due to SSL validation failure.
560
+ Revert to previous collection of root SSL certificates in order to still allow
561
+ access to these servers (see:
562
+ https://blog.mozilla.org/security/2014/09/08/phasing-out-certificates-with-1024-bit-rsa-keys/)
563
+ * TWEAK: If Google Drive reports that the quota will be exceeded, then make
564
+ this feedback more obvious to the user without reading the log
565
+ * TWEAK: If the user enters an S3 path with an erroneous preceding slash, then
566
+ remove it
567
+ * FIX: Amazon S3 RRS settings (Premium) were not being applied on archives
568
+ smaller than 5Mb
569
+ * TRANSLATION: New Română (Romanian, ro_RO) translation, courtesy of
570
+ Augustin-Mihai Mufturel and Teodor Muraru
571
+
572
+ = 1.9.25 - 2014/09/17 =
573
+
574
+ * FEATURE: Copy (https://copy.com) cloud storage support (Premium -
575
+ https://updraftplus.com/shop/updraftplus-premium/)
576
+ * FEATURE: The search/replace expert tool can now work on selected tables only
577
+ * PERFORMANCE: Use PageVisibility API to be more intelligent about when we
578
+ need to poll for progress in the dashboard
579
+ * FIX: The Migrator add-on would fetch more database rows than it should,
580
+ increasing the (low) risk of hitting memory limits, and increasing the time
581
+ needed on enormous sites
582
+ * FIX: Some Google Drive backups could get uploaded twice, if you were using
583
+ multiple storage backends
584
+ * FIX: If user set the option to not verify SSL certificates, then this option
585
+ was not honoured for all methods
586
+ * FIX: If user had never saved their settings (and hence using no cloud
587
+ backup), then old backup sets were not pruned
588
+ * TWEAK: Inform the user of possible plugin compatibility issues if they are
589
+ about to restore a site onto a webserver running a PHP major version older
590
+ than the original backup.
591
+ * TWEAK: Detect database disconnection when search/replacing, and reconnect if
592
+ possible; and to try less rows in case it was a memory limit
593
+ * TWEAK: Allow wildcards at either end in exclusion items (e.g. *backups*)
594
+ * TWEAK: Add option to control how many rows are search/replaced at once
595
+ * TWEAK: Prevent PHP notice being generated on first Google Drive
596
+ authentication
597
+ * TWEAK: Update Bitcasa console link to new location
598
+ * TRANSLATIONS: New Portuguese (Portugal) translation (pt_PT) - thanks to
599
+ Pedro Mendonça
600
+ * TRANSLATIONS: Updated translations for Dutch, Italian, Swedish, Russian,
601
+ Czech, Greek, Portuguese (Brazilian)
602
+
603
+ = 1.9.19 - 2014/08/19 =
604
+
605
+ * FEATURE: Omit any directory from the backup (recursively) by creating a file
606
+ called .donotbackup within it
607
+ * PERFORMANCE: Lazy-load more code
608
+ * PERFORMANCE: Prevent no-op search/replacements when restoring
609
+ * FIX: Fix a corner-case where a backup might be able to continue but no
610
+ attempt was made after using PclZip
611
+ * FIX: Fix a corner-case (race condition) where UD might try to upload the
612
+ same archive twice
613
+ * FIX: Detection of pre-WP 3.5 hard-coded uploads paths upon site clone had
614
+ stopped working
615
+ * FIX: Fix bug in Importer add-on which could halt restorations of 3rd-party
616
+ backups from the BackupWordPress plugin
617
+ * FIX: Fix bug in the informational disk space consumption calculation in the
618
+ expert tools section
619
+ * TWEAK: Catch + log errors thrown by phpMailer
620
+ * TWEAK: Merge Google SDK tweak from
621
+ https://github.com/google/google-api-php-client/pull/189 to deal with buggy
622
+ curl/proxy combinations with Google Drive
623
+ * TWEAK: Prevent PHP log notice being generated on "Backup Now"
624
+ * TWEAK: Change default zip split size to 500Mb on new installs
625
+ * TWEAK: Scheduling algorithm tweak for more efficiency with very large
626
+ backups when PHP is allowed to run long
627
+ * TWEAK: Do not rely on PHP's disk_free_space() when it returns (int)0
628
+ * TWEAK: Check database connection after auto-backup
629
+ * TWEAK: More helpful message if uploading a backup when local storage is not
630
+ writable
631
+ * TWEAK: Extra logic to survive out-of-memory MySQL conditions in extreme
632
+ cases; plus introduce UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP constant
633
+ * TWEAK: Tweak Amazon S3 logic so that it can cope with a situation where
634
+ there is no permission to request its location (but there is permission for
635
+ all other operations)
636
+ * TWEAK: Workaround for PHP bug #62119 which could cause some files beginning
637
+ with a non-ASCII character to be dropped
638
+ * TWEAK: Warn the user if they are running on Apache without mod_rewrite and
639
+ restore a site with permalinks requiring mod_rewrite
640
+ * TWEAK: If Premium user was backing up non-WP tables, then optimize the
641
+ backup table order
642
+ * TWEAK: Deal with case when uploading very large backups to Google Drive on
643
+ overloaded servers with unreliable network where activity check might misfire
644
+ * TRANSLATIONS: Updated translations: Hungarian, Swedish, Russian, Brazilian
645
+ (Portuguese), Spanish, Czeck, Dutch, Turkish, German
646
+
647
+ = 1.9.17 - 2014/07/16 =
648
+
649
+ * FEATURE: Can now import/restore/migrate backups created by WordPress Backup
650
+ To Dropbox (Premium)
651
+ * FIX: Fix bug in Importer add-on that prevented some potential warnings about
652
+ the integrity of the 3rd party backup zip being displayed
653
+ * FIX: Some errors upon S3 downloads were not being passed back up to the
654
+ settings page for display
655
+ * FIX: Update "Rackspace Enhanced" add-on for compatibility with current
656
+ Rackspace API
657
+ * TWEAK: Prevent spurious messages about quota for users who have upgraded
658
+ their Bitcasa account to infinite storage
659
+ * TWEAK: Prevent some unnecessary duplication of work when resuming a database
660
+ backup (since 1.9.13)
661
+ * TWEAK: Dropbox now supports use of WP_PROXY_ settings (proxy needs to
662
+ support HTTP GET/POST/PUT)
663
+ * TWEAK: Add work-around for "Google Drive as CDN" plugin's inclusion of
664
+ incompatible Google SDK
665
+ * TWEAK: "More Files" add-on now lets you list single files for inclusion
666
+ * TRANSLATIONS: Many translations updated
667
+
668
+ = 1.9.15 - 2014/06/09 =
669
+
670
+ * FEATURE: New search/replace expert tool (Premium)
671
+ * TWEAK: UI has been simplified - see:
672
+ https://updraftplus.com/gentle-re-design/
673
+ * TWEAK: "Backup Now" now avoids the WordPress scheduler - thus meaning it can
674
+ work on sites where the WordPress scheduler is broken (e.g. Heart Internet)
675
+ * TWEAK: Make sure that server HTTP-level errors are shown directly to the
676
+ user at the 'Processing files...' stage of a restore
677
+ * TWEAK: Amend SQL which prevented options/sitemeta tables backing up at full
678
+ speed on large sites
679
+ * TWEAK: Dropbox will now display some error messages more prominently, where
680
+ relevant
681
+ * TWEAK: Dropbox account user's name is stored when you authorise
682
+ * TWEAK: Show link to FAQ if user's zip upload is corrupt
683
+ * TWEAK: Work around annoying Google Drive issue whereby Google's end
684
+ sometimes returns an incomplete list of folders
685
+ * TWEAK: Interpret time in imported backup sets as being in destination WP
686
+ install's timezone
687
+ * TWEAK: Auto-correct Dropbox folder configuration if the user erroneously
688
+ enters a full URL instead of a folder path
689
+ * TWEAK: Bitcasa back-end now checks account quota and logs a warning if it
690
+ looks like it will be exceeded
691
+ * TWEAK: Email reports created by UpdraftPlus (free) now include the latest
692
+ blog headlines from updraftplus.com
693
+ * TWEAK: Make sure all relevant restoration options in restore dialogue are
694
+ shown (works around Firefox issue upon page reload/navigation)
695
+ * FIX: Reporting add-on could mis-display number of warnings when saying "X
696
+ errors, Y warnings".
697
+ * TRANSLATION: New Tagalog translation (thanks to Kristen Macasero)
698
+
699
+ = 1.9.13 - 2014/05/19 =
700
+
701
+ * FEATURE: Google Drive now works without the PHP curl module being needed
702
+ * FEATURE: UpdraftPlus Premium can now back up non-WordPress tables and
703
+ external databases; database encryption is also now a Premium feature; see:
704
+ https://updraftplus.com/backing-external-databases/
705
+ * FIX: Work around conflicts with the Google Analyticator and Appointments+
706
+ plugins when using Google Drive since 1.9.4 (see:
707
+ http://wordpress.org/support/topic/dont-unconditionally-load-old-google-sdk)
708
+ * FIX: Work around conflict with some XCache setups that prevented activation
709
+ since 1.9.4
710
+ * FIX: Make all S3 SSL settings take effect
711
+ * FIX: Fix packet size calculation issue upon restore that could cause false
712
+ detection of over-large packets
713
+ * FIX: Prevent unnecessary abortion of restore if PHP's (deprecated) safe_mode
714
+ is on (PHP 5.3 and below)
715
+ * FIX: When migrating a multisite with a different table prefix, make sure the
716
+ user role list is maintained on each site
717
+ * FIX: Rescan of remote FTP storage was not using configured path
718
+ * TWEAK: Now tested on PHP 5.5
719
+ * TWEAK: Migrator can now cope with situations where the development site was
720
+ developed under multiple URLs without the developer cleaning up
721
+ * TWEAK: Remove several PHP strict coding standards messages, and a
722
+ deprecation warning on PHP 5.5+ when using Bitcasa
723
+ * TWEAK: Add Counterize tables to the custom lists of tables that do not need
724
+ search/replacing upon migration / are non-vital data
725
+ * TWEAK: Check for DB connection having been dropped before pruning old
726
+ backups (WP 3.9+)
727
+ * TWEAK: Make sure that if the user has not configured the Google Drive API in
728
+ their Google account, then they are alerted
729
+ * TRANSLATIONS: Updated Greek, Czech, German, Spanish, French, Dutch,
730
+ Portuguese (Brazilian), Russian, Swedish and Turkish translations
731
+
732
+ = 1.9.5 - 2014/04/25 =
733
+
734
+ * FIX: Backups were not uploaded successfully if you were using both an
735
+ encrypted database and Google Drive storage in 1.9.4
736
+
737
+ = 1.9.4 - 2014/04/23 =
738
+
739
+ * FEATURE: New remote storage back-end for OpenStack Swift
740
+ * FEATURE: New remote storage back-end for Bitcasa (Premium -
741
+ https://updraftplus.com/shop/updraftplus-premium/)
742
+ * FEATURE: New Google Drive back-end now uses new SDK; resulting new
743
+ capabilities include ability to rescan remote storage, and chunked downloading
744
+ for huge files; also requires a shorter list of permissions
745
+ * FEATURE: Restore backups that were created by the plugin BackWPup (Premium -
746
+ https://updraftplus.com/shop/updraftplus-premium/)
747
+ * FIX: WebDAV storage: remove requirement for PEAR to be pre-installed on
748
+ server
749
+ * FIX: Fix restoration on sites where WP did not have direct filesystem access
750
+ * FIX: Fix regex which prevented download progress of mu-plugins zip
751
+ displaying correctly
752
+ * FIX: Fix issue preventing some useful information about URL changes being
753
+ included in the migration log file
754
+ * FIX: Restore compatibility with WordPress 3.2 (if you're using that, you're
755
+ overdue an upgrade by some years!)
756
+ * TWEAK: Enable new locations for plupload Flash/Silverlight widgets (for
757
+ non-HTML5 browsers) in WP3.9+ (later reverted by core devs, but is harmless in
758
+ case they re-introduce)
759
+ * TWEAK: Take advantage of WP 3.9+'s new method (if available) for maintaining
760
+ DB connectivity on very long runs
761
+ * TWEAK: Add filter so that programmers can allow the options page to be shown
762
+ to non-admins
763
+ * TWEAK: Add filter allowing programmers to forbid a backup
764
+ * TWEAK: Detect and adapt to cases where the site is moved to a system with
765
+ different case-sensitivity and the database record of the theme is now wrong
766
+ * TWEAK: Prevent erroneous warning about a missing table in the database
767
+ backup on some WPMU installs that began life as a very old WP version
768
+ * TWEAK: Introduce constant allowing users of pre-release WP installs to
769
+ disable notices about using a version of WP that UpdraftPlus has not been
770
+ tested on.
771
+ * TWEAK: Make Dropbox uploads at least 25% faster (in our testing) by
772
+ increasing the chunk size
773
+ * TWEAK: Reduce number of rows fetched from MySQL if no activity took place on
774
+ the previous resumption
775
+ * TWEAK: AWS image in settings page will now use https if dashboard access is
776
+ https - prevents non-https warnings in recent browsers
777
+ * TWEAK: Hook into Better WP Security so that it doesn't tell the user that
778
+ they have no backup plugin
779
+ * TWEAK: New debugging tool to test remote HTTP connectivity
780
+ * TWEAK: Tweak the MySQL version detection in the 'debug' section of the admin
781
+ page to prevent a PHP message being thrown on PHP 5.5+/WP3.9+
782
+ * TRANSLATION: New Czech (cs_CZ) translation; thanks to Martin Křížek
783
+ * TRANSLATION: Updated Russian, Swedish, Dutch and Portuguese translations
784
+
785
+ = 1.9.0 - 2014/03/26 =
786
+
787
+ * COMPATIBILITY: Tested on and updated for forthcoming WordPress 3.9
788
+ * FIX: Prevent SQL errors on restore if SQL command was over-sized and split
789
+ awkwardly (very hard to trigger)
790
+ * FIX: Fix subtle race condition that prevented uploads of large archives on
791
+ Amazon S3 in some very limited situations
792
+ * FEATURE: Ability to restore and migrate from backups produced by other
793
+ backup plugins (Premium) (supported: BackUpWordPress and Simple Backups
794
+ (zip-based; though, if you have a tar-backup, you can re-pack it easily))
795
+ * FEATURE: Feature to re-scan remote storage (allows detection of existing
796
+ backups after a restore to an earlier site version, and allows quicker moving
797
+ of data from site to site when migrating)
798
+ * FEATURE: SFTP add-on (https://updraftplus.com/shop/sftp/) now supports
799
+ key-based logins (as well as password-based)
800
+ * TWEAK: Add a warning message and link to helpful page for people whose WP
801
+ schedulers don't seem to be working (at least 4 overdue jobs in the queue)
802
+ * TWEAK: Introduce a filter allowing users to add a bespoke scheduling option
803
+ (e.g. every 2 days)
804
+ * TWEAK: When backup is sent by email attachment, the email now indicates the
805
+ originating site more clearly
806
+ * TWEAK: Display a dashboard warning if you are using a version of UpdraftPlus
807
+ that has not been tested on your current WordPress version
808
+ * TWEAK: Add work-around for bad hard-coded data in Elegant Themes Theme
809
+ Builder when restoring
810
+ * TWEAK: Log a message when Dropbox authentication completes (prevent user
811
+ confusion if the most recent message is pre-success)
812
+ * TRANSLATIONS: New Arabic translation (thanks to Omar Amassine - me at
813
+ omar.ma, Ahmed Fahmy and Riyadh Altayib)
814
+ * TRANSLATIONS: Updated Spanish translation (thanks to Pablo Laguna -
815
+ laguna.sanchez at gmail.com)
816
+ * TRANSLATIONS: Updated Nederlands / Dutch translation (thanks to Dennis
817
+ Hunink - dennishunink at me.com)
818
+ * TRANSLATIONS: New Turkish translation (various translators - not yet
819
+ complete)
820
+
821
+ = 1.8.13 - 2014/03/07 =
822
+
823
+ * FIX: Fix bug that prevented changes to your schedule being saved on network
824
+ (WPMU) installs (Multisite add-on)
825
+
826
+ = 1.8.12 - 2014/02/27 =
827
+
828
+ * FIX: Prevent spurious warning message showing when authenticating new
829
+ Dropbox connections (introduced in 1.8.11)
830
+ * TWEAK: Add support for Amazon S3's China + government zones
831
+
832
+ = 1.8.11 - 2014/02/27 =
833
+
834
+ * FIX: Deal with some unlikely multisite migration combinations
835
+ * FEATURE: Allow the 'exclude' options (for omitting files/directories from
836
+ the backup) to go to any level (i.e. can now exclude entities which are deep
837
+ in the directory tree)
838
+ * FEATURE: "More Files" add-on (and hence Premium) now allows adding as many
839
+ non-WP directories as you like
840
+ * FEATURE: Allow use of Amazon S3's Reduced Redundancy Storage (via
841
+ add-on/Premium)
842
+ * FEATURE: Allow all messages to be centrally logged in syslog/Event Log (via
843
+ add-on/Premium)
844
+ * RELIABILITY: Allow skipping of data from tables whose data is explicitly
845
+ known to be inessential if at least 2 attempts to backup the data fail (e.g.
846
+ lack of resources on low-budget hosts with huge tables, e.g. StatPress data) -
847
+ as an alternative to total backup failure.
848
+ * TWEAK: Prevent spurious warning message if the site (uploads) is empty and
849
+ using /usr/bin/zip
850
+ * TWEAK: Work-around for quirky FTP server for which PHP loses the
851
+ communication if SIZE is called for a non-existent file
852
+ * TWEAK: Show table prefix in debugging information, and add quick links to
853
+ install useful debugging plugins
854
+ * TWEAK: Limit amount of to-database logging when backing up uploads if the
855
+ user is not using dated directories (speed-up)
856
+ * TWEAK: Split zip earlier if progress made in the past but not recently
857
+ (should help with some ultra-low-resource hosts, e.g. one.com)
858
+ * TWEAK: "Custom Content Type Manager" plugin has bad hard-coded cache data;
859
+ detect + fix this on restore
860
+ * TRANSLATIONS: Updated translations for Russian, Dutch, German and Portuguese
861
+ (Brazilian)
862
+
863
+ = 1.8.8 - 2014/01/27 =
864
+
865
+ * FIX: Correctly detect table prefix on some WPMU installs that had been
866
+ upgraded from an earlier version than 3.0 (i.e. very old)
867
+ * FIX: Files directly in wp-content/uploads (from a 1.8.5 backup and not in
868
+ any sub-directory) were being restored one directory too high
869
+ * UPDATED: Updated Swedish, Portuguese and Dutch translations
870
+ * UPDATED: Update root certificates to match latest CURL/Mozilla version
871
+ * TWEAK: Automatically change http(s):// to webdav(s):// in WebDAV URLs if the
872
+ user overlooks the instructions
873
+ * TWEAK: If SHOW TABLES returns no tables, then schedule a re-try later
874
+ (presume the DB connection had been dropped)
875
+ * TWEAK: Preceed warnings in the log file with [Warning]
876
+ * TWEAK: Prevent a very rare PHP segfault due to
877
+ https://bugs.php.net/bug.php?id=51425
878
+ * TWEAK: Show the filename being unpacked during restore (helps with
879
+ troubleshooting if there are very many zips)
880
+ * TWEAK: Premium plugin now shows information about pending/past
881
+ update/support expiries + links to renewal page
882
+ * TWEAK: Show all defined constants in the debug dialog
883
+ * TWEAK: Detect + deal with situations where the webserver double-gzipped the
884
+ database file
885
+ * TWEAK: Display a warning in the FTP configuration section if the hosting
886
+ company disabled FTP functions
887
+ * TWEAK: Make sure that WebDAV notices are included in UD's log file
888
+
889
+ = 1.8.5 - 2014/01/09 =
890
+
891
+ * FEATURE: Add option to exclude specified files from the 'uploads' backup.
892
+ The default option will omit backing up backups created by at least 2 other
893
+ backup plugins.
894
+ * FEATURE: New Brazilian Portuguese translation - thanks to Lucien Raven and
895
+ Tom Fonseca
896
+ * FEATURE: Migrator search/replace now handles JSON and object-encoded data
897
+ * UPDATED: Updated Swedish translation
898
+ * FIX: When advising the user that his remaining Dropbox quota is
899
+ insufficient, take into account parts of the file already uploaded
900
+ * FIX: Delete Old Directories button in 1.8.2 was using a PHP 5.3+ feature:
901
+ restore PHP 5.2 compatibility
902
+ * FIX: Reporting add-on was incorrectly inflating the number displayed for the
903
+ total error count if there were warnings
904
+ * FIX: Prevent a bogus warning appearing when the user has filtered the base
905
+ table prefix
906
+ * TWEAK: Give more feedback to user when FTP login fails. Also, improve
907
+ automatic switch to non-SSL FTP if SSL FTP fails to cover more situations.
908
+ * TWEAK: Add informational text about the implications of not choosing any
909
+ remote storage method
910
+ * TWEAK: Supply the "Delete Old Directories" button directly with the message
911
+ advising users to press it
912
+ * TWEAK: If using WP Slimstats, don't search/replace the slimstats table when
913
+ migrating (referer data should be left intact); and this table is often
914
+ gigantic, so this hugely speeds up restores/migrations
915
+ * TWEAK: Handle odd file permissions setups more skilfully when
916
+ restoring/migrating
917
+ * TWEAK: Automatically rescan for new backup sets if none were previously
918
+ known (saves a click when manually importing)
919
+ * TWEAK: Force a shorter pathname to be used when unpacking zip files (prevent
920
+ maximum pathname limits being hit)
921
+ * TWEAK: Tweak CSS to work-around other plugins that dump their CSS code on
922
+ all settings pages and break modals (in this case, Events Manager)
923
+ * TWEAK: Hide the instruction for users of Opera unless the user agent header
924
+ indicates Opera
925
+ * TWEAK: Speed migrations by skipping redundant search/replace scan on
926
+ term_relationships table (which can never have URLs in it)
927
+
928
+ = 1.8.2 - 2013/12/13 =
929
+
930
+ * FIX: Various small fixes to the initial release of 1.8.1
931
+ * TWEAK: Restorer now switches theme if database is restored to indicate a
932
+ non-existent theme, and Migrator temporarily disables cacheing plugins during
933
+ Migration
934
+ * TWEAK: Improve handling of MySQL's maximum packet size - attempt to raise
935
+ it, and leave some margin
936
+ * TWEAK: Move the Rackspace SDK around to prevent problems on systems with
937
+ limited maximum pathname lengths
938
+ * TWEAK: Provide a link to the log file at the top of the restoration page
939
+
940
+ = 1.8.1 - 2013/12/10 =
941
+
942
+ * FEATURE: New "Reporting" add-on - more sophisticated/flexible backup reports
943
+ (https://updraftplus.com/shop/reporting/)
944
+ * FEATURE: New enhanced add-on for Rackspace Cloud Files users, allowing them
945
+ to create a new sub-user with exclusive access to the backup container
946
+ (https://updraftplus.com/shop/cloudfiles-enhanced/) (PHP 5.3.3+ required for
947
+ this feature)
948
+ * FEATURE: Add region-selection (Dallas/Chicago/Northern Virginia/Sydney/Hong
949
+ Kong) to Rackspace Cloud Files (PHP 5.3.3+ required for this feature)
950
+ * FEATURE: Add option to 'Backup Now' dialog to not despatch this backup to
951
+ the cloud
952
+ * FIX: Fix bug in restore of wpcore (Premium) with certain options when backup
953
+ set was from a previously restored backup with the same certain options
954
+ * FIX: After restoring a site, only delete the backup set from local storage
955
+ if it was also stored in the cloud (prevents the user having to upload the
956
+ backup set twice if they want to re-run the restore)
957
+ * FIX: Improve detection of extremely long-running/slow jobs
958
+ * FIX: Fix issue with Rackspace Cloudfiles on WPMU installs
959
+ * TWEAK: Mark as tested up to WordPress 3.8
960
+ * TWEAK: Restore operations are now logged
961
+ * TWEAK: Detect the database connection dropping and recover (seen on a very
962
+ slow site where PHP ran continuously for 30 mins)
963
+ * TWEAK: Change how permalinks are flushed post-restore. This spares the user
964
+ from having to manually visit the permalinks page if they had plugins that
965
+ altered their permalink structure (e.g. WooCommerce).
966
+ * TWEAK: Require fewer file permissions when restoring/migrating
967
+ * TWEAK: Remove various spurious PHP notices caught by the post-1.7.41 extra
968
+ logging
969
+ * TWEAK: Compress the log file before emailing it, if it is over 6Mb
970
+ * TWEAK: Make sure some potential error messages from Dropbox are displayed
971
+ properly
972
+ * TWEAK: Work around sites with site/home URL settings in the WP DB that
973
+ erroneously have a trailing slash
974
+ * TWEAK: Log PHP notices for all job types
975
+
976
+ = 1.7.41 - 2013/11/16 =
977
+
978
+ * FIX: Work around bug in some old PHP versions on Windows when creating
979
+ database dump
980
+ * FIX: If binary mysqldump failed, then retry
981
+ * TWEAK: Log PHP notices in the log file
982
+ * TWEAK: Allow primitive exclusion based on filename suffixes
983
+
984
+ = 1.7.39 - 2013/11/11 =
985
+
986
+ * FIX: Correct calculation of which old backups to delete when automatic
987
+ pre-plugin/theme backups run
988
+ * FIX: Binzip could block if the zip binary produced a lot of unexpected
989
+ output
990
+ * FIX: Fix a corner-case where a setting needed manual updating post-migration
991
+ on WP 3.4+earlier sites with custom uploads path
992
+ * FIX: Prevent the settings page needing a refresh if the server temporarily
993
+ goes away
994
+ * TWEAK: For reasons unknown, Google's new cloud console removes parameters
995
+ after the first from the redirect_uri; this breaks new Google Drive
996
+ authentications. To work around this, we have adjusted our redirect_uri to use
997
+ only one parameter.
998
+ * TWEAK: Removed a couple of clicks from the install procedure for add-ons
999
+ * TWEAK: Handle migration URL rewrites where content directory location has
1000
+ been manually altered
1001
+ * TWEAK: Change default number of backups to retain on new installs from 1 to
1002
+ 2
1003
+ * TWEAK: Add extra file permissions check before restoring (prevent unexpected
1004
+ aborts)
1005
+ * TWEAK: Suppress a spurious 'insufficient visitors' warning for some sites
1006
+ with long-running backups
1007
+ * TWEAK: Prevent spurious message about unexpected SQL if restoring a backup
1008
+ with very large tables produced by mysqldump
1009
+ * TWEAK: Catch some more untranslated strings
1010
+ * TRANSLATIONS: New Russian translation; updated German and Polish
1011
+ translations
1012
+
1013
+ = 1.7.35 - 2013/10/26 =
1014
+
1015
+ * FIX: Fix potential problem whereby some tables could be missed from the
1016
+ backup on WPMU (WP multisite) installs. Strongly recommended that all WPMU
1017
+ users update and take a fresh backup.
1018
+ * FIX: Work around http://bugs.mysql.com/62077 (could cause permanently stuck
1019
+ lock on databases with wrong collocations - if you have this problem, then no
1020
+ backups happen)
1021
+ * TWEAK: Don't use binzip method on OpenVZ with low memory
1022
+ * TWEAK: Suppress a couple of spurious messages in the log
1023
+ * TWEAK: Add facility to quickly download log files in the 'expert settings'
1024
+ section
1025
+
1026
+ = 1.7.34 - 2013/10/21 =
1027
+
1028
+ * FEATURE: Options in the "Backup Now" dialog to exclude files or database
1029
+ from the backup (https://updraftplus.com/more-flexibility-in-backup-now/)
1030
+ * FEATURE: Use binary mysqldump, if available, for much faster dumps of large
1031
+ tables
1032
+ * FEATURE: New Ελληνική / Greek translation (el): Κώστας Θερμογιάννης (Kostas
1033
+ Thermoyiannis) - http://tovivlio.net
1034
+ * FIX: Fix a JavaScript error in Internet Explorer 8
1035
+ * FIX: Under very unusual circumstances, it was still possible for multiple
1036
+ backup jobs to occur
1037
+ * FIX: For non-English installs, the email indicating backup success sometimes
1038
+ failed to send
1039
+ * FIX: Fix obscure table name error if WP was using bespoke database setup
1040
+ without delete access
1041
+ * FIX: On multi-site installs, settings changes could be lost if they were
1042
+ made during an ongoing backup
1043
+ * TWEAK: Now marked as WordPress 3.7 compatible
1044
+ * TWEAK: Raw files list in expert section now makes log files directly
1045
+ downloadable
1046
+ * TWEAK: Detect available disk quota in CPanel account (if relevant), log, and
1047
+ warn if low
1048
+ * TWEAK: Amazon S3 backend now can use WP proxy settings (if any)
1049
+ * TWEAK: All multisite settings pages have now been moved to the network admin
1050
+ section
1051
+ * TWEAK: Restorer now handles hand-moved non-default WP site directories
1052
+ (where they differ from the website base directory)
1053
+ * TWEAK: Migrator can now migrate sub-domain-based WPMU installs with no
1054
+ manual steps required
1055
+ * TWEAK: Internationalised the add-ons management page (Premium)
1056
+ * TWEAK: Switch zip engines from ZipArchive earlier if it appears to be broken
1057
+ * TWEAK: Now cleans up some previously un-caught temporary files if the backup
1058
+ aborted unexpectedly
1059
+ * TWEAK: Remove bogus warning about W3TC object cache
1060
+ * TWEAK: Backup log file now includes SHA1 checksums
1061
+ * TWEAK: Add warning for user if their max_execution_time is very low
1062
+ * TWEAK: Make fewer HTTP requests when tracking download status
1063
+ * TWEAK: Under certain conditions, the report email could wrongly state that
1064
+ files were included in a db-only backup
1065
+ * TWEAK: Improve detection of recent activity on resumptions when zips split
1066
+ * TWEAK: Prevent some warning messages from being shown twice
1067
+ * TWEAK: Remove the "that's a lot of rows" warning once the table successfully
1068
+ finishes being dumped
1069
+ * TWEAK: Cache the results of looking for a zip executable for the duration of
1070
+ the job
1071
+ * TWEAK: Some badly-written plugins place their own code on UD's settings
1072
+ page, and break the layout; overcome this
1073
+ * TWEAK: Add a warning for people using encryption without mcrypt installed
1074
+ (slow)
1075
+ * TWEAK: Suppress useless warning when using BinZip and only empty directories
1076
+ exist in 'others' backup
1077
+
1078
+ = 1.7.20 - 2013/09/20 =
1079
+ * TWEAK: Add semaphore locking to prevent WP's cron system kicking off
1080
+ multiple jobs on overloaded systems
1081
+ * TWEAK: Catch and display some previously uncaught AJAX notices when
1082
+ restoring, and display information on the restore process earlier
1083
+
1084
+ = 1.7.18 - 2013/09/17 =
1085
+ * FEATURE: <a href="https://updraftplus.com/shop/morestorage/">New "more
1086
+ storage" add-on</a>, enabling backing up to multiple storage destinations
1087
+ * FEATURE: New progress meter on dashboard page when a backup is running
1088
+ * FEATURE: SCP support (in the <a
1089
+ href="https://updraftplus.com/shop/sftp/">SFTP/FTPS/SCP add-on</a>)
1090
+ * FEATURE: If (and only if) your settings page is open, then UpdraftPlus will
1091
+ automatically perform tricks to help backups run even if your WordPress
1092
+ install has its scheduler disabled (of course, enabling your scheduler would
1093
+ better).
1094
+ * FIX: Fix bug whereby clicking on 'rescan' lost track of backups sent to
1095
+ remote storage
1096
+ * FIX: Fix obscure bug that could cause WPMU installs to not back up all
1097
+ tables
1098
+ * FIX: Fix unwanted warning message if the uploads folder was empty
1099
+ * FIX: Show timestamps of available backup sets in local time zone
1100
+ * FIX: Email subjects and contents use local time zone
1101
+ * FIX: Fix mangled pathnames for PclZip one-shot attempts
1102
+ * FIX: Fix bug that caused files to be dropped if one was in a sub-directory
1103
+ of the entity and named (entire name) "0"
1104
+ * FIX: Show correct title on page when upgrading
1105
+ * FIX: Fix one-character typo that could cause Dropbox uploads to not continue
1106
+ if Dropbox threw a transient error from their end
1107
+ * FIX: Permanent solution to conflict with W3TC's object cache (and removal of
1108
+ advisory notice)
1109
+ * FIX: Correctly show estimated size of 'others' backup within the expert
1110
+ section
1111
+ * FIX: Fix small typo in inline decrypter that led to viewer reading an
1112
+ incomplete message
1113
+ * TWEAK: Warn the user if they seem to be a on a dev website that is not
1114
+ visited + so can't backup
1115
+ (https://updraftplus.com/faqs/why-am-i-getting-warnings-about-my-site-not-having-enough-visitors/)
1116
+ * TWEAK: More detection of possible overlaps (use temporary files as evidence)
1117
+ * TWEAK: Extra check that the directory is writable before unpacking zip in
1118
+ restore (so user gets friendly error message instead of trickier one)
1119
+ * TWEAK: Provide option to remember the "automatic backup" setting
1120
+ * TWEAK: <a href="https://updraftplus.com/shop/webdav/">The WebDAV add-on</a>
1121
+ now has support for WebDAV servers that don't support Content-Range (e.g.
1122
+ ownCloud)
1123
+
1124
+ = 1.7.3 - 2013/08/26 =
1125
+ * FIX: Some Dropbox connect errors were being lost
1126
+ * FIX: Fix detection of availability of binary zip method on PHP installs
1127
+ where popen() is available put proc_open() is disabled
1128
+ * FIX: (Premium): WP Core and More Files remaining locally/not being
1129
+ despatched to cloud storage
1130
+ * TWEAK: More logging of the success (or not) of backups sent via email
1131
+ * TWEAK: Remember hint from previous job if PHP is allowed to run for more
1132
+ than 300 seconds at a time
1133
+
1134
+ = 1.7.1 - 2013/08/20 =
1135
+ * FIX: Fix error preventing file backups in 1.7.0 for PHP installs without the
1136
+ ZipArchive class.
1137
+ * TWEAK: Only include phpseclib in the path when required
1138
+
1139
+ = 1.7.0 - 2013/08/20 =
1140
+ * FEATURE: Split large sites into multiple zips (see:
1141
+ https://updraftplus.com/splitting-large-sites-into-multiple-archives/)
1142
+ * FEATURE: Fix time add-on can now also choose the day of the week
1143
+ * FEATURE: New add-on/Premium feature - Automatic Backups (automatically take
1144
+ backups before plugin/theme updates) - https://updraftplus.com/shop/autobackup/
1145
+ * FEATURE: Svensk / Swedish translation (sv_SE) by Steve Sandström
1146
+ (http://www.brandicon.se)
1147
+ * FEATURE: Français / French translation (fr_FR) by ufo3D - http://ufo-3d.fr/
1148
+ and Thomas Jacobsen - http://123informatique.ch/ - with help from Françoise
1149
+ Lhermitte - http://www.ajwan.net
1150
+ * TWEAK: Save the result of looking for a binary zip (don't re-test)
1151
+ * TWEAK: Show 'Last log message' in dashboard using local time zone
1152
+ * TWEAK: Log file times are now recorded relative to the backup start, rather
1153
+ than the current resumption start
1154
+ * TWEAK: More code-tidying and optimisation
1155
+ * TWEAK: Warn the user if the WordPress scheduler is disabled
1156
+ * TWEAK: Many + various extra sanity-checks for possible problems
1157
+ * TWEAK: Warn user if trying to upload an above-limit (>10Gb) file to Google
1158
+ Drive
1159
+ * TWEAK: Reduce memory usage during restore
1160
+ * TWEAK: No longer require mbstring extension for Dropbox
1161
+ * TWEAK: Move JavaScript into separate file, and make strings translatable
1162
+ * INTERNALS: PclZip and BinZip methods now have feature parity with ZipArchive
1163
+ (can resume+split, more logging)
1164
+ * TWEAK/FIX: When restoring/migrating, split SQL commands to avoid exceeding
1165
+ MySQL's max_allowed_packet
1166
+ * FIX: Make sure output buffering is off when sending files from the browser
1167
+ (prevents memory exhaustion)
1168
+ * FIX: Prevent double-backup (very unusual combination of circumstances)
1169
+ * FIX: Some Windows webserver configurations could have corruption of
1170
+ filenames in WordPress core backups (recoverable)
1171
+ * FIX: Remove temporary files created by PclZip (where PclZip is used)
1172
+
1173
+ = 1.6.46 - 2013/07/11 =
1174
+ * FEATURE: New storage back-end for any S3-compatible provider (e.g. Google
1175
+ Cloud Storage, Eucalyptus, Cloudian, many more - tested with Dreamobjects and
1176
+ original S3)
1177
+ * FEATURE: Delete existing backup sets manually (deletes both local + cloud
1178
+ copies). Also show backup set debugging info in expert options; and counter
1179
+ now dynamically updates without refresh.
1180
+ * FEATURE: Restorations + migrations can now be attempted even if the user
1181
+ lacks CREATE TABLE or DROP TABLE permissions
1182
+ * FEATURE: Italiano/Italian translation by Francesco Carpana (f.carpana at
1183
+ gmail.com)
1184
+ * FEATURE: Chinese (zh_CN) translation by K L Wang (http://klwang.info)
1185
+ * FEATURE: Re-worked error handling internally, leading to users now being
1186
+ notified prominently of warning-level conditions (non-fatal conditions, but
1187
+ things the user should be advised of)
1188
+ * FEATURE: Allow some hiding of secrets in the admin area (see:
1189
+ https://updraftplus.com/faqs/in-the-administration-section-it-shows-my-amazon-ftp-etc-passwords-without-using-stars-is-this-safe/)
1190
+ * FEATURE: Restorer now obtains files at an earlier stage, allowing analysis +
1191
+ more intelligent presentation of options and applicable warnings pre-restore.
1192
+ Now warns if you are migrating without having chosen search/replace of DB.
1193
+ Also pre-decrypts the database, which lessens the risk of timeouts.
1194
+ * FEATURE: Allow entries in the list of files to exclude from backup to end in
1195
+ a wildcard (*). Change default exclusion for content dir to include backup* to
1196
+ catch other backup plugins' archives.
1197
+ * FIX: "Wipe settings" wipes S3 + DreamObjects settings (they were retained
1198
+ previously)
1199
+ * FIX: Suppress spurious "Table prefix has changed" message
1200
+ * FIX: Now copes on restores/migrations if you've moved around your
1201
+ WP_CONTENT_DIR/WP_PLUGIN_DIR/UPLOADS folder
1202
+ * FIX: Escape output of logging lines (prevents on-page JavaScript breakage if
1203
+ error from cloud service contained unescaped quotes)
1204
+ * FIX: Fix syntax error in rarely-triggered part of scheduling calculation
1205
+ algorithm that could cause a dramatic slow-down
1206
+ * FIX: Tweak the no-activity-for-a-while-when-writing-zip detector to not fire
1207
+ prematurely (found an extreme corner-case where this caused a problem)
1208
+ * FIX: The "Test (cloud method) settings" button would fail if credentials
1209
+ contained a backslash (\), due to WP's automatic doubling of backslashes
1210
+ * FIX: When restoring, don't make failure to remove a temporary directory an
1211
+ abortion condition
1212
+ * FIX: Database dump now retains NULL values for string fields (instead of
1213
+ making them empty strings)
1214
+ * FIX: Remove directories that cause an error during restoration when user
1215
+ restores from a backup made from a previously-restored site without removing
1216
+ old directories when requested.
1217
+ * TWEAK: Detect WP installs with broken plugins that add extra white-space
1218
+ (thus breaking AJAX output)
1219
+ * TWEAK: When running on (old) MySQL 4.1, replace TYPE= with ENGINE= for
1220
+ compatibility with later MySQL versions
1221
+ * TWEAK: Detect which MySQL engines are available on the restoring side, and
1222
+ switch if the requested engine is not available; remove PAGE_CHECKSUM and
1223
+ TRANSACTIONAL options if engine was (M)aria. Always remove (removed from
1224
+ upstream) PAGE_CHECKSUM from MyISAM.
1225
+ * TWEAK: Batch database rows by the 1000 instead of 100 - proved to be 3x
1226
+ faster on massive MyISAM tables
1227
+ * TWEAK: Abort a restoration if the first CREATE TABLE command produces an
1228
+ error (rather than continue and likely have many more)
1229
+ * TWEAK: Replace one use of method_exists() to prevent triggering segfault in
1230
+ some faulty PHP installs
1231
+ * TWEAK: Allow an extra attempt if in "over-time" - allows recovery from
1232
+ transient errors (e.g. cloud service temporary outage) in over-time.
1233
+ * TWEAK: Work-around WP installs with broken cacheing setups where cache
1234
+ deletion is not working
1235
+ * TWEAK: If ZipArchive::close() fails, then log the list of files we were
1236
+ trying to add at the time
1237
+ * TWEAK: Detect generous amounts of time allowed for running better, and
1238
+ schedule appropriately
1239
+ * TWEAK: Add detection of jQuery errors in the admin page, and direct users
1240
+ with such errors to a help page
1241
+ * TWEAK: More aggressively clean up temporary files (can lower temporary disk
1242
+ space requirements)
1243
+ * TWEAK: Provide the error message sent by Google upon initial Drive
1244
+ authentication errors.
1245
+ * TWEAK: Found a case where PHP's is_writable() erroneously returns true -
1246
+ actually test a write
1247
+ * TWEAK: Use pseudo-namespacing on the CloudFiles library to prevent clashes
1248
+ with other plugins (pre-emptive - no known conflicts exist)
1249
+ * TWEAK: Use higher priority on cron backup schedules call to prevent other
1250
+ plugins which call WP wrongly from over-writing new cron schedules (e.g.
1251
+ BackupBuddy)
1252
+
1253
+ = 1.6.17 - 2013/06/06 =
1254
+ * FEATURE: News blog - https://updraftplus.com/news/ - please subscribe if you
1255
+ want to stay up to date with news of new features, tips, and special offers.
1256
+ RSS link: http://feeds.feedburner.com/UpdraftPlus
1257
+ * FEATURE: Restoration/migration now copes with a change of table prefix, and
1258
+ asks WordPress to recreate your .htaccess/web.config file
1259
+ * FEATURE: Add support for DreamHost DreamObjects
1260
+ (http://dreamhost.com/cloud/dreamobjects/)
1261
+ * FEATURE: Polski / Polish (pl_PL) translation: thanks to Bartosz Kaczmarek
1262
+ (barth.kaczmarek at gmail.com)
1263
+ * FEATURE: Add expert options to count expected uncompressed backup size,
1264
+ show/delete active jobs, and PHP info
1265
+ * FEATURE: Send backup reports to multiple addresses (comma-separate the
1266
+ addresses you wish to use)
1267
+ * FIX: Inform users of Dropbox tokens which stop working
1268
+ * FIX: Don't flag an error if mu-plugins are selected, but none are found and
1269
+ WordPress agrees that none exist
1270
+ * COMPATIBILITY: WordPress multisite post-3.5 does not store blog uploads
1271
+ separately from main uploads directory
1272
+ * COMPATIBILITY: Now marked as compatible with WordPress 3.6
1273
+ * TWEAK: When errors occur, list them in the notification email and attach the
1274
+ log file
1275
+ * TWEAK: Use only one transient per job, and clean it up upon completion
1276
+ * TWEAK: Added a "Clone/Migrate" button to give a visual clue for people
1277
+ wanting to do this
1278
+ * TWEAK: More verbose error reporting from PclZip
1279
+ * TWEAK: After database restoration, permalinks are flushed (often helps
1280
+ regenerate .htaccess+web.config files)
1281
+ * TWEAK: Database backups now put the options table first, to allow earlier
1282
+ changing of site URL upon migration
1283
+ * TWEAK: Show PHP + web server versions in the debug information
1284
+ * TWEAK: More sophisticated attempts to get a writable backup directory, and
1285
+ more helpful messages if we can't
1286
+ * TWEAK: Some more logging, data-gathering and algorithm-tweaking to
1287
+ especially improve the chances for people with astonishingly slow web hosting,
1288
+ but also tweaks that improve efficiency everywhere, especially for larger
1289
+ backup sets.
1290
+ * TWEAK: Migrator plugin now does search+replace after each table (instead of
1291
+ after them all)
1292
+ * TWEAK: Clean up temporary files earlier where safe+possible (can lower disk
1293
+ space requirements)
1294
+ * TWEAK: Re-scan of known sets now removes those known to be gone from the
1295
+ list
1296
+ * TWEAK: Made a few things use AJAX instead of full page loads
1297
+ * TWEAK: Replace Rackspace logo with current version
1298
+ * TWEAK: Make missing PHP component warnings more prominent
1299
+ * TWEAK: Warn users if they have W3 Total Cache's object cache (which has a
1300
+ bug that affects scheduled tasks) active.
1301
+ * TWEAK: Add a notice for users who have turned on debugging (some forget to
1302
+ turn it off, then ask for support when they see lots of debugging notices)
1303
+
1304
+ = 1.6.2 - 05/11/2013 =
1305
+ * FIX: Prevent PHP fatal error on some database restores
1306
+
1307
+ = 1.6.1 - 05/06/2013 =
1308
+ * FEATURE: New "Migrator" add-on for moving sites from one WordPress install
1309
+ to another (https://updraftplus.com/shop/)
1310
+ * FEATURE: The "More files" add-on can now back up any files from anywhere on
1311
+ your filesystem (not just parts of WordPress)
1312
+ * FEATURE: The "More files" add-on can now exclude specified directories from
1313
+ the backup of WordPress core
1314
+ * FEATURE: Dropbox and Google Drive now check available quota before uploading
1315
+ * FEATURE: Nederlands / Dutch (nl_NL) translation: thanks to Hans van der
1316
+ Vlist - hansvandervlist at gmail.com
1317
+ * FEATURE: The SFTP/FTPS add-on now supports implicit encryption (so now both
1318
+ explicit + implicit are supported)
1319
+ * FIX: Google Drive now requires additional permissions to download your files
1320
+ - you will need to re-authenticate if you are downloading or restoring.
1321
+ * FIX: Fix serious corruption issue in larger Rackspace Cloud Files backups
1322
+ (fixed a bug in Rackspace's Cloud Files library)
1323
+ * FIX: Fix mcrypt call in Dropbox module to be compatible with PHP 5.2 on
1324
+ Windows, and with ancient FreeBSD versions which have no /dev/urandom
1325
+ * FIX: Allow top-level "Restore" button even if no backup sets currently known
1326
+ (to allow uploading some)
1327
+ * FIX: Fixed issues hindering restoration on web hosting setups with file
1328
+ permissions that invoked WP's remote filesystem methods
1329
+ * TWEAK: Database backup now includes more info about original WP install
1330
+ (e.g. WP/PHP versions)
1331
+ * TWEAK: The "More files" add-on now allows the user to choose whether to
1332
+ restore wp-config.php or not (and gives help)
1333
+ * TWEAK: Added an approximate expected row count when beginning to dump out a
1334
+ table
1335
+ * TWEAK: Remove the Google Drive URL prefix automatically for those who don't
1336
+ spot the instruction to do so
1337
+
1338
+ = 1.5.22 - 04/16/2013 =
1339
+ * FIX: 1.5.21 broke Dropbox authentication for some users. Upgrade if you had
1340
+ that issue.
1341
+
1342
+ = 1.5.21 - 04/15/2013 =
1343
+ * FEATURE: Now restores databases (we recommend the MySQL command-line for
1344
+ versions created with previous versions of UpdraftPlus)
1345
+ * FEATURE: Rackspace Cloud Files support
1346
+ (http://www.rackspace.com/cloud/files/)
1347
+ * FEATURE: Built-in multi-uploader, allowing easier restoration of old backup
1348
+ sets
1349
+ * FEATURE: Allow instant downloading of the most recently modified log file
1350
+ * FEATURE: Built in drag-and-drop database decrypter for manual decryption
1351
+ * FEATURE: Deutsch / German translation: thanks to Marcel Herrguth - mherrguth
1352
+ at mrgeneration.de
1353
+ * FEATURE: Magyar / Hungarian translation: thanks to Szépe Viktor -
1354
+ http://www.szepe.net
1355
+ * FEATURE: Spanish / Español translation: thanks to Fernando Villasmil -
1356
+ villasmil.fernando at gmail.com
1357
+ * FEATURE: Added encryption (used by default) to Amazon S3 communications
1358
+ * FEATURE: New "more files" add-on, allowing backup of WordPress core and
1359
+ non-WordPress files
1360
+ * RELIABILITY: Various algorithm tweaks to help larger sites on lower
1361
+ resources. Largest site a known user has: 1.5Gb
1362
+ * RELIABILITY/FEATURE: Ship up-to-date SSL certificates, and added expert
1363
+ options to prefer server SSL CA certificates, and to disable peer verification
1364
+ * SPEED: Batch INSERT commands in database backups, for much faster
1365
+ restoration (typically 95% faster)
1366
+ * SPEED/RELIABILITY: FTP and FTPS (not SFTP) are now chunked and resumable
1367
+ (both download and upload), subject to your FTP server responding correctly to
1368
+ SIZE
1369
+ * SPEED: Re-factoring of admin-area and some backup code into separate
1370
+ lazy-loaded files, to reduce memory consumption on sites generally
1371
+ * FIX: Clear PHP's file stat cache when checking for zip file activity - fixes
1372
+ potential halt on very enormous sites or sites with very low PHP timeouts.
1373
+ * FIX: Caught some untranslated strings
1374
+ * FIX: Respect WordPress's WP_MAX_MEMORY_LIMIT constant
1375
+ * FIX: Remove timezone display from local time - WordPress's get_date_from_gmt
1376
+ function does not completely do what the manual says it does
1377
+ * FIX: A small typo slipped into 1.5.5 which prevented some Google Drive users
1378
+ from setting up new installations
1379
+ * FIX: Fix strict coding warnings on PHP 5.4
1380
+ * TWEAK: In fix-time add-on, fade UI when relevant
1381
+ * TWEAK: Improved UI of downloader
1382
+ * TWEAK: Decrease FTP timeouts to improve our chances of getting back an error
1383
+ before PHP aborts
1384
+ * TWEAK: Tweaked al relevant methods to follow the general SSL CA certificate
1385
+ options
1386
+
1387
+ = 1.5.5 - 03/26/2013 =
1388
+ * Now translatable - .pot file included (translators welcome!)
1389
+ * When restoring, you can now select only some components to restore
1390
+ * History of previous backups can re-scan to find backups manually imported
1391
+ (e.g. via FTP) (trunk has drag-and-drop uploader)
1392
+ * Multisite add-on (https://updraftplus.com/shop/) now stores/restores blogs
1393
+ and mu-plugins separately
1394
+ * Display UpdraftPlus's disk space usage
1395
+ * Internationalisation hooks in main body of plugin
1396
+ * Correctly remove old 'other' directories from a restoration when requested
1397
+ * Various layout + niceness fixes upon restoration
1398
+ * Prevent deletion of local archives upon failed restoration when there was no
1399
+ cloud storage
1400
+ * Various usability tweaks for the admin UI, including showing multisite
1401
+ warning only on UD's pages
1402
+ * Fix incorrect restoration (since 1.4.0) of directory-less paths from
1403
+ 'others' zip
1404
+ * Fix prevention of Dropbox re-authentication when Dropbox returns 5xx first
1405
+ time (library error)
1406
+ * Clear Dropbox credentials if the user explicitly re-authenticates
1407
+ * Clean up temporary files left behind by zipArchive::addFile
1408
+ * Tweak Dropbox library to work from behind very weird proxies that
1409
+ double-surround the HTTP header
1410
+ * Improved help for people with broken schedulers
1411
+ * Fix FTP download error
1412
+
1413
+ = 1.4.48 - 03/11/2013 =
1414
+ * Improve batching on zip creation for sites with very large files
1415
+ * Unlimited early resumption if zip file creation takes too long
1416
+ * Suppress some warning notices that can break JavaScript on sites with
1417
+ notices sent to the browser
1418
+ * Earlier warning/failure if backup directory was not writable
1419
+ * Hooks for Dropbox folders add-on
1420
+ * More scheduler/overlap tweaks, to assist enormous uploads
1421
+ * When the temporary directory is within the site, store+display relatively
1422
+ (removes need to modify upon site move)
1423
+ * Sort existing backups display by date
1424
+ * Use WordPress time for creation of filenames
1425
+ * Fix bug in 1.4.47 which caused problems on new site installs
1426
+ * Prevent erroneous warning when backup zip (usually uploads) has no files
1427
+
1428
+ = 1.4.30 - 03/04/2013 =
1429
+ * Hooks for WebDAV support via add-on
1430
+
1431
+ = 1.4.29 - 02/23/2013 =
1432
+ * Now remembers what cloud service you used for historical backups, if you
1433
+ later switch
1434
+ * Now performs user downloads from the settings page asynchronously, meaning
1435
+ that enormous backups can be fetched this way
1436
+ * Fixed bug which forced GoogleDrive users to re-authenticate unnecessarily
1437
+ * Fixed apparent race condition that broke some backups
1438
+ * Include disk free space warning
1439
+ * More intelligent scheduling of resumptions, leading to faster completion on
1440
+ hosts with low max_execution_time values
1441
+ * Polls and updates in-page backup history status (no refresh required)
1442
+ * Hooks for SFTP + encrypted FTP add-on
1443
+
1444
+ = 1.4.14 - 02/19/2013 =
1445
+ * Display final status message in email
1446
+ * Clean-up any old temporary files detected
1447
+
1448
+ = 1.4.13 - 02/18/2013 =
1449
+ * Some extra hooks for "fix time" add-on
1450
+ (https://updraftplus.com/shop/fix-time/)
1451
+ * Some internal simplification
1452
+ * Small spelling + text fixes
1453
+
1454
+ = 1.4.11 - 02/13/2013 =
1455
+ * Various branding tweaks - <a href="https://updraftplus.com">launch of
1456
+ updraftplus.com</a>
1457
+ * Important fix for people with non-encrypted database backups
1458
+
1459
+ = 1.4.9 - 02/12/2013 =
1460
+ * Do more when testing Amazon S3 connectivity (catches users with bucket but
1461
+ not file access)
1462
+ * Tweak algorithm for detecting useful activity to further help gigantic sites
1463
+
1464
+ = 1.4.7 - 02/09/2013 =
1465
+ * Tweak for some Amazon EU West 1 bucket users
1466
+
1467
+ = 1.4.6 - 02/07/2013 =
1468
+ * Amazon S3 now works for users with non-US buckets
1469
+ * Further tweak to overlap detection
1470
+
1471
+ = 1.4.2 - 02/06/2013 =
1472
+ * More Amazon S3 logging which should help people with wrong details
1473
+ * More race/overlap detection, and more flexible rescheduling
1474
+
1475
+ = 1.4.0 - 02/04/2013 =
1476
+ * Zip file creation is now resumable; and thus the entire backup operation is;
1477
+ there is now no "too early to resume" point. So even the most enormous site
1478
+ backups should now be able to proceed.
1479
+ * Prefer PHP's native zip functions if available - 25% speed-up on zip
1480
+ creation
1481
+
1482
+ = 1.3.22 - 01/31/2013 =
1483
+ * More help for really large uploads; dynamically alter the maximum number of
1484
+ resumption attempts if something useful is still happening
1485
+
1486
+ = 1.3.20 - 01/30/2013 =
1487
+ * Add extra error checking in S3 method (can prevent logging loop)
1488
+
1489
+ = 1.3.19 - 01/29/2013 =
1490
+ * Since 1.3.3, the 'Last Backup' indicator in the control panel had not been
1491
+ updating
1492
+
1493
+ = 1.3.18 - 01/28/2013 =
1494
+ * Made 'expert mode' easier to operate, and tidier options for non-expert
1495
+ users.
1496
+ * Some (not total) compliance with PHP's strict coding standards mode
1497
+ * More detail provided when failing to authorise with Google
1498
+
1499
+ = 1.3.15 - 01/26/2013 =
1500
+ * Various changes to Google Drive authentication to help those who don't enter
1501
+ the correct details first time, or who later need to change accounts.
1502
+
1503
+ = 1.3.12 - 01/25/2013 =
1504
+ * 1.3.0 to 1.3.8 had a fatal flaw for people with large backups.
1505
+ * 1.3.0 to 1.3.9 gave erroneous information in the email reports on what the
1506
+ backup contained.
1507
+ * Fixed DropBox authentication for some users who were having problems
1508
+
1509
+ = 1.3.8 - 01/24/2013 =
1510
+ * Fixed faulty assumptions in 'resume' code, now leading to more reliable
1511
+ resuming
1512
+ * Removed some duplicate code; first attempt and resumptions now uses same
1513
+ code
1514
+ * Added further parameters that should be removed on a wipe operation
1515
+ * More logging of detected double runs
1516
+
1517
+ = 1.3.2 - 01/23/2013 =
1518
+ * Internal reorganisation, enabling UpdraftPlus Premium
1519
+
1520
+ = 1.2.46 - 01/22/2013 =
1521
+ * Easier Dropbox setup (we are now an official production app)
1522
+ * New button to delete all existing settings
1523
+ * Admin console now displays rolling status updates
1524
+ * Feature: choose how many files and databases to retain separately
1525
+ * Fixed bug with checking access token on Google Drive restore
1526
+ * Fixed bug producing copious warnings in PHP log
1527
+ * Fixed bug in automated restoration processes
1528
+ * Possibly fixed settings saving bug in RTL installations
1529
+ * Fix erroneous display of max_execution_time warning
1530
+ * Better logging when running a DB debug session
1531
+ * Better detection/handling of overlapping/concurrent runs
1532
+
1533
+ = 1.2.31 - 01/15/2013 =
1534
+ * Fixed bug with Dropbox deletions
1535
+ * Fixed cases where Dropbox failed to resume chunked uploading
1536
+ * Can now create uncreated zip files on a resumption attempt
1537
+ * FTP method now supports SSL (automatically detected)
1538
+ * New "Test FTP settings" button
1539
+ * Less noise when debugging is turned off
1540
+ * Fix bug (in 1.2.30) that prevented some database uploads completing
1541
+
1542
+ = 1.2.20 - 01/12/2013 =
1543
+ * Dropbox no longer limited to 150Mb uploads
1544
+ * Dropbox can upload in chunks and resume uploading chunks
1545
+ * Improved Dropbox help text
1546
+
1547
+ = 1.2.18 - 01/11/2013 =
1548
+ * Revert Dropbox to CURL-only - was not working properly with WordPress's
1549
+ built-in methods
1550
+ * Add note that only up to 150Mb is possible for a Dropbox upload, until we
1551
+ change our API usage
1552
+ * Fix unnecessary repetition of database dump upon resumption of a failed
1553
+ backup
1554
+
1555
+ = 1.2.14 - 01/08/2013 =
1556
+ * Dropbox support (no chunked uploading yet, but otherwise complete)
1557
+ * Make the creation of the database dump also resumable, for people with
1558
+ really slow servers
1559
+ * Database table backups are now timed
1560
+ * FTP logging slightly improved
1561
+ * Dropbox support uses WordPress's built-in HTTP functions
1562
+
1563
+ = 1.1.16 - 01/07/2013 =
1564
+ * Requested feature: more frequent scheduling options requested
1565
+ * Fixed bug which mangled default suggestion for backup working directory on
1566
+ Windows
1567
+ * Provide a 'Test S3 Settings' button for Amazon S3 users
1568
+
1569
+ = 1.1.11 - 01/04/2013 =
1570
+ * Bug fix: some backup runs were erroneously being identified as superfluous
1571
+ and cancelled
1572
+
1573
+ = 1.1.9 - 12/31/2012 =
1574
+ * Big code re-factoring; cloud access methods now modularised, paving way for
1575
+ easier adding of new methods. Note that Google Drive users may need to
1576
+ re-authenticate - please check that your backups are working.
1577
+ * Fix bug whereby some resumptions of failed backups were erroneously
1578
+ cancelled
1579
+ * Database encryption made part of what is resumable
1580
+
1581
+ = 1.0.16 - 12/24/2012 =
1582
+ * Improve race detection and clean up already-created files when detected
1583
+
1584
+ = 1.0.15 - 12/22/2012 =
1585
+ * Fixed bug that set 1Tb (instead of 1Mb) chunk sizes for Google Drive uploads
1586
+ * Added link to some screenshots to help with Google Drive setup
1587
+ * Allowed use of existing Amazon S3 buckets with restrictive policies
1588
+ (previously, we tested for the bucket's existence by running a create
1589
+ operation on it, which may not be permitted)
1590
+ * Use WordPress's native HTTP functions for greater reliability when
1591
+ performing Google Drive authorisation
1592
+ * Deal with WP-Cron racey double events (abort superceeded backups)
1593
+ * Allow user to download logs from admin interface
1594
+
1595
+ = 1.0.5 - 12/13/2012 =
1596
+ * Tweaked default Google Drive options
1597
+
1598
+ = 1.0.4 - 12/10/2012 =
1599
+ * Implemented resumption/chunked uploading on Google Drive - much bigger sites
1600
+ can now be backed up
1601
+ * Fixed bug whereby setting for deleting local backups was lost
1602
+ * Now marked as 1.0, since we are feature-complete with targeted features for
1603
+ this release
1604
+ * Made description fuller
1605
+
1606
+ = 0.9.20 - 12/06/2012 =
1607
+ * Updated to latest S3.php library with chunked uploading patch
1608
+ * Implemented chunked uploading on Amazon S3 - much bigger sites can now be
1609
+ backed up with S3
1610
+
1611
+ = 0.9.10 - 11/22/2012 =
1612
+ * Completed basic Google Drive support (thanks to Sorin Iclanzan, code taken
1613
+ from "Backup" plugin under GPLv3+); now supporting uploading, purging and
1614
+ restoring - i.e. full UpdraftPlus functionality
1615
+ * Licence change to GPLv3+ (from GPLv2+) to allow incorporating Sorin's code
1616
+ * Tidied/organised the settings screen further
1617
+
1618
+ = 0.9.2 - 11/21/2012 =
1619
+ * Failed uploads can now be re-tried, giving really big blogs a better
1620
+ opportunity to eventually succeed uploading
1621
+
1622
+ = 0.8.51 - 11/19/2012 =
1623
+ * Moved screenshot into assets, reducing plugin download size
1624
+
1625
+ = 0.8.50 - 10/13/2012 =
1626
+ * Important new feature: back up other directories found in the WP content
1627
+ (wp-content) directory (not just plugins/themes/uploads, as in original
1628
+ Updraft)
1629
+
1630
+ = 0.8.37 - 10/12/2012 =
1631
+ * Don't whinge about Google Drive authentication if that method is not current
1632
+
1633
+ = 0.8.36 - 10/03/2012 =
1634
+ * Support using sub-directories in Amazon S3
1635
+ * Some more debug logging for Amazon S3
1636
+
1637
+ = 0.8.33 - 09/19/2012 =
1638
+ * Work around some web hosts with invalid safe_mode configurations
1639
+
1640
+ = 0.8.32 - 09/17/2012 =
1641
+ * Fix a subtle bug that caused database tables from outside of this WordPress
1642
+ install to be backed up
1643
+
1644
+ = 0.8.31 - 09/08/2012 =
1645
+ * Fixed error deleting old S3 backups. If your expired S3 backups were not
1646
+ deleted, they should be in future - but you will need to delete manually those
1647
+ that expired before you installed this update.
1648
+ * Fixed minor bug closing log file
1649
+ * Marked as working with WordPress 3.4.2
1650
+
1651
+ = 0.8.29 - 06/29/2012 =
1652
+ * Marking as tested up to WordPress 3.4.1
1653
+
1654
+ = 0.8.28 - 06/06/2012 =
1655
+ * Now experimentally supports Google Drive (thanks to Sorin Iclanzan, code
1656
+ re-used from his Google Drive-only 'backup' plugin)
1657
+ * New feature: backup files and database on separate schedules
1658
+ * Tidied and improved retain behaviour
1659
+
1660
+ = 0.7.7 - 05/29/2012 =
1661
+ * Implementation of a logging mechanism to allow easier debugging and
1662
+ development
1663
+
1664
+ = 0.7.4 - 05/21/2012 =
1665
+ * Removed CloudFront method; I have no way of testing this
1666
+ * Backup all tables found in the database that have this site's table prefix
1667
+ * If encryption fails, then abort (don't revert to not encrypting)
1668
+ * Added ability to decrypt encrypted database backups
1669
+ * Added ability to opt out of backing up each file group
1670
+ * Now adds database character set, the lack of which before made database
1671
+ backups unusable without modifications
1672
+ * Version number bump to make clear that this is an improvement on the
1673
+ original Updraft, and is now tried and tested
1674
+
1675
+ = 0.1.3 - 01/16/2012 =
1676
+ * Force backup of all tables found in database (vanilla Updraft only backed up
1677
+ WP core tables)
1678
+ * Tweak notification email to include site name
1679
+
1680
+ = 0.1 - 08/10/2011 =
1681
+
1682
+ * A fork of Updraft Backup/Restore 0.6.1 by Paul Kehrer with the following
1683
+ improvements
1684
+ * Replaced deprecated function calls (in WordPress 3.2.1)
1685
+ * Removed all warnings from basic admin page with WP_DEBUG on
1686
+ * Implemented encrypted backup (but not yet automatic restoration) on database
1687
+ * Some de-uglification of admin interface
class-updraftplus.php CHANGED
@@ -549,7 +549,7 @@ class UpdraftPlus {
549
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
550
  $max_execution_time = (int)@ini_get("max_execution_time");
551
 
552
- $logline = "UpdraftPlus WordPress backup plugin (https://updraftplus.com): ".$this->version." WP: ".$wp_version." PHP: ".phpversion()." (".@php_uname().") MySQL: $mysql_version WPLANG: ".$this->get_wplang()." Server: ".$_SERVER["SERVER_SOFTWARE"]." safe_mode: $safe_mode max_execution_time: $max_execution_time memory_limit: $memory_limit (used: ${memory_usage}M | ${memory_usage2}M) multisite: ".(is_multisite() ? 'Y' : 'N')." openssl: ".(defined('OPENSSL_VERSION_TEXT') ? OPENSSL_VERSION_TEXT : 'N')." mcrypt: ".(function_exists('mcrypt_encrypt') ? 'Y' : 'N')." LANG: ".getenv('LANG')." ZipArchive::addFile: ";
553
 
554
  // method_exists causes some faulty PHP installations to segfault, leading to support requests
555
  if (version_compare(phpversion(), '5.2.0', '>=') && extension_loaded('zip')) {
@@ -1025,7 +1025,7 @@ class UpdraftPlus {
1025
  # Test it, see if it is compatible with Info-ZIP
1026
  # If you have another kind of zip, then feel free to tell me about it
1027
  @mkdir($updraft_dir.'/binziptest/subdir1/subdir2', 0777, true);
1028
- file_put_contents($updraft_dir.'/binziptest/subdir1/subdir2/test.html', '<html></body><a href="https://updraftplus.com">UpdraftPlus is a great backup and restoration plugin for WordPress.</body></html>');
1029
  @unlink($updraft_dir.'/binziptest/test.zip');
1030
  if (is_file($updraft_dir.'/binziptest/subdir1/subdir2/test.html')) {
1031
 
@@ -1052,7 +1052,7 @@ class UpdraftPlus {
1052
 
1053
  # Now test -@
1054
  if (true == $all_ok) {
1055
- file_put_contents($updraft_dir.'/binziptest/subdir1/subdir2/test2.html', '<html></body><a href="https://updraftplus.com">UpdraftPlus is a really great backup and restoration plugin for WordPress.</body></html>');
1056
 
1057
  $exec = $potzip;
1058
  if (defined('UPDRAFTPLUS_BINZIP_OPTS') && UPDRAFTPLUS_BINZIP_OPTS) $exec .= ' '.UPDRAFTPLUS_BINZIP_OPTS;
@@ -1112,8 +1112,8 @@ class UpdraftPlus {
1112
  $foundit = 0;
1113
  if (($list = $zip->listContent()) != 0) {
1114
  foreach ($list as $obj) {
1115
- if ($obj['filename'] && !empty($obj['stored_filename']) && 'binziptest/subdir1/subdir2/test.html' == $obj['stored_filename'] && $obj['size']==128) $found_first=true;
1116
- if ($obj['filename'] && !empty($obj['stored_filename']) && 'binziptest/subdir1/subdir2/test2.html' == $obj['stored_filename'] && $obj['size']==135) $found_second=true;
1117
  }
1118
  }
1119
  } else {
@@ -2510,6 +2510,7 @@ class UpdraftPlus {
2510
  }
2511
 
2512
  global $updraftplus_backup;
 
2513
  if ($force_abort) $jobdata_as_was['aborted'] = true;
2514
  if ($send_an_email) $updraftplus_backup->send_results_email($final_message, $jobdata_as_was);
2515
 
@@ -3456,16 +3457,6 @@ class UpdraftPlus {
3456
  return fetch_feed('http://feeds.feedburner.com/updraftplus/');
3457
  }
3458
 
3459
- public function get_wplang() {
3460
- # See: https://core.trac.wordpress.org/changeset/29630
3461
- global $wp_current_db_version;
3462
- if ( $wp_current_db_version < 29630 ) {
3463
- return (defined('WPLANG')) ? WPLANG : '';
3464
- } else {
3465
- return get_option('WPLANG', '');
3466
- }
3467
- }
3468
-
3469
  public function wordshell_random_advert($urls) {
3470
  if (defined('UPDRAFTPLUS_NOADS_B')) return "";
3471
  $rad = rand(0, 8);
@@ -3474,7 +3465,7 @@ class UpdraftPlus {
3474
  return $this->url_start($urls,'updraftplus.com').__("Want more features or paid, guaranteed support? Check out UpdraftPlus.Com", 'updraftplus').$this->url_end($urls,'updraftplus.com');
3475
  break;
3476
  case 1:
3477
- $wplang = $this->get_wplang();
3478
  if (strlen($wplang)>0 && !is_file(UPDRAFTPLUS_DIR.'/languages/updraftplus-'.$wplang.
3479
  '.mo')) return __('Can you translate? Want to improve UpdraftPlus for speakers of your language?','updraftplus').' '.$this->url_start($urls,'updraftplus.com/translate/')."Please go here for instructions - it is easy.".$this->url_end($urls,'updraftplus.com/translate/');
3480
 
549
  @set_time_limit(UPDRAFTPLUS_SET_TIME_LIMIT);
550
  $max_execution_time = (int)@ini_get("max_execution_time");
551
 
552
+ $logline = "UpdraftPlus WordPress backup plugin (https://updraftplus.com): ".$this->version." WP: ".$wp_version." PHP: ".phpversion()." (".@php_uname().") MySQL: $mysql_version WPLANG: ".get_locale()." Server: ".$_SERVER["SERVER_SOFTWARE"]." safe_mode: $safe_mode max_execution_time: $max_execution_time memory_limit: $memory_limit (used: ${memory_usage}M | ${memory_usage2}M) multisite: ".(is_multisite() ? 'Y' : 'N')." openssl: ".(defined('OPENSSL_VERSION_TEXT') ? OPENSSL_VERSION_TEXT : 'N')." mcrypt: ".(function_exists('mcrypt_encrypt') ? 'Y' : 'N')." LANG: ".getenv('LANG')." ZipArchive::addFile: ";
553
 
554
  // method_exists causes some faulty PHP installations to segfault, leading to support requests
555
  if (version_compare(phpversion(), '5.2.0', '>=') && extension_loaded('zip')) {
1025
  # Test it, see if it is compatible with Info-ZIP
1026
  # If you have another kind of zip, then feel free to tell me about it
1027
  @mkdir($updraft_dir.'/binziptest/subdir1/subdir2', 0777, true);
1028
+ file_put_contents($updraft_dir.'/binziptest/subdir1/subdir2/test.html', '<html><body><a href="https://updraftplus.com">UpdraftPlus is a great backup and restoration plugin for WordPress.</a></body></html>');
1029
  @unlink($updraft_dir.'/binziptest/test.zip');
1030
  if (is_file($updraft_dir.'/binziptest/subdir1/subdir2/test.html')) {
1031
 
1052
 
1053
  # Now test -@
1054
  if (true == $all_ok) {
1055
+ file_put_contents($updraft_dir.'/binziptest/subdir1/subdir2/test2.html', '<html><body><a href="https://updraftplus.com">UpdraftPlus is a really great backup and restoration plugin for WordPress.</a></body></html>');
1056
 
1057
  $exec = $potzip;
1058
  if (defined('UPDRAFTPLUS_BINZIP_OPTS') && UPDRAFTPLUS_BINZIP_OPTS) $exec .= ' '.UPDRAFTPLUS_BINZIP_OPTS;
1112
  $foundit = 0;
1113
  if (($list = $zip->listContent()) != 0) {
1114
  foreach ($list as $obj) {
1115
+ if ($obj['filename'] && !empty($obj['stored_filename']) && 'binziptest/subdir1/subdir2/test.html' == $obj['stored_filename'] && $obj['size']==131) $found_first=true;
1116
+ if ($obj['filename'] && !empty($obj['stored_filename']) && 'binziptest/subdir1/subdir2/test2.html' == $obj['stored_filename'] && $obj['size']==138) $found_second=true;
1117
  }
1118
  }
1119
  } else {
2510
  }
2511
 
2512
  global $updraftplus_backup;
2513
+
2514
  if ($force_abort) $jobdata_as_was['aborted'] = true;
2515
  if ($send_an_email) $updraftplus_backup->send_results_email($final_message, $jobdata_as_was);
2516
 
3457
  return fetch_feed('http://feeds.feedburner.com/updraftplus/');
3458
  }
3459
 
 
 
 
 
 
 
 
 
 
 
3460
  public function wordshell_random_advert($urls) {
3461
  if (defined('UPDRAFTPLUS_NOADS_B')) return "";
3462
  $rad = rand(0, 8);
3465
  return $this->url_start($urls,'updraftplus.com').__("Want more features or paid, guaranteed support? Check out UpdraftPlus.Com", 'updraftplus').$this->url_end($urls,'updraftplus.com');
3466
  break;
3467
  case 1:
3468
+ $wplang = get_locale();
3469
  if (strlen($wplang)>0 && !is_file(UPDRAFTPLUS_DIR.'/languages/updraftplus-'.$wplang.
3470
  '.mo')) return __('Can you translate? Want to improve UpdraftPlus for speakers of your language?','updraftplus').' '.$this->url_start($urls,'updraftplus.com/translate/')."Please go here for instructions - it is easy.".$this->url_end($urls,'updraftplus.com/translate/');
3471
 
class-zip.php CHANGED
@@ -9,6 +9,155 @@ class UpdraftPlus_ZipArchive extends ZipArchive {
9
  }
10
  endif;
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
13
 
14
  private $binzip;
@@ -31,7 +180,7 @@ class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
31
 
32
  if ($file == $base) {
33
  // Shouldn't happen; but see: https://bugs.php.net/bug.php?id=62119
34
- $updraftplus->log("File skipped due to unexpected name mismatch (locale: ".setlocale(LC_CTYPE, "0")."): $file", 'notice', false, true);
35
  } else {
36
  $rdirname = untrailingslashit($base);
37
  # Note: $file equals $rdirname/$add_as
@@ -174,152 +323,3 @@ class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
174
  }
175
 
176
  }
177
-
178
- # A ZipArchive compatibility layer, with behaviour sufficient for our usage of ZipArchive
179
- class UpdraftPlus_PclZip {
180
-
181
- protected $pclzip;
182
- protected $path;
183
- protected $addfiles;
184
- protected $adddirs;
185
- private $statindex;
186
- private $include_mtime = false;
187
- public $last_error;
188
-
189
- public function __construct() {
190
- $this->addfiles = array();
191
- $this->adddirs = array();
192
- // Put this in a non-backed-up, writeable location, to make sure that huge temporary files aren't created and then added to the backup - and that we have somewhere writable
193
- global $updraftplus;
194
- if (!defined('PCLZIP_TEMPORARY_DIR')) define('PCLZIP_TEMPORARY_DIR', trailingslashit($updraftplus->backups_dir_location()));
195
- }
196
-
197
- # Used to include mtime in statindex (by default, not done - to save memory; probably a bit paranoid)
198
- public function ud_include_mtime() {
199
- $this->include_mtime = true;
200
- }
201
-
202
- public function __get($name) {
203
- if ($name != 'numFiles') return null;
204
-
205
- if (empty($this->pclzip)) return false;
206
-
207
- $statindex = $this->pclzip->listContent();
208
-
209
- if (empty($statindex)) {
210
- $this->statindex=array();
211
- return 0;
212
- }
213
-
214
- $result = array();
215
- foreach ($statindex as $i => $file) {
216
- if (!isset($statindex[$i]['folder']) || 0 == $statindex[$i]['folder']) {
217
- $result[] = $file;
218
- }
219
- unset($statindex[$i]);
220
- }
221
-
222
- $this->statindex=$result;
223
-
224
- return count($this->statindex);
225
-
226
- }
227
-
228
- public function statIndex($i) {
229
- if (empty($this->statindex[$i])) return array('name' => null, 'size' => 0);
230
- $v = array('name' => $this->statindex[$i]['filename'], 'size' => $this->statindex[$i]['size']);
231
- if ($this->include_mtime) $v['mtime'] = $this->statindex[$i]['mtime'];
232
- return $v;
233
- }
234
-
235
- public function open($path, $flags = 0) {
236
- if(!class_exists('PclZip')) include_once(ABSPATH.'/wp-admin/includes/class-pclzip.php');
237
- if(!class_exists('PclZip')) {
238
- $this->last_error = "No PclZip class was found";
239
- return false;
240
- }
241
-
242
- # Route around PHP bug (exact version with the problem not known)
243
- $ziparchive_create_match = (version_compare(PHP_VERSION, '5.2.12', '>') && defined('ZIPARCHIVE::CREATE')) ? ZIPARCHIVE::CREATE : 1;
244
-
245
- if ($flags == $ziparchive_create_match && file_exists($path)) @unlink($path);
246
-
247
- $this->pclzip = new PclZip($path);
248
- if (empty($this->pclzip)) {
249
- $this->last_error = 'Could not get a PclZip object';
250
- return false;
251
- }
252
-
253
- # Make the empty directory we need to implement addEmptyDir()
254
- global $updraftplus;
255
- $updraft_dir = $updraftplus->backups_dir_location();
256
- if (!is_dir($updraft_dir.'/emptydir') && !mkdir($updraft_dir.'/emptydir')) {
257
- $this->last_error = "Could not create empty directory ($updraft_dir/emptydir)";
258
- return false;
259
- }
260
-
261
- $this->path = $path;
262
-
263
- return true;
264
-
265
- }
266
-
267
- # Do the actual write-out - it is assumed that close() is where this is done. Needs to return true/false
268
- public function close() {
269
- if (empty($this->pclzip)) {
270
- $this->last_error = 'Zip file was not opened';
271
- return false;
272
- }
273
-
274
- global $updraftplus;
275
- $updraft_dir = $updraftplus->backups_dir_location();
276
-
277
- $activity = false;
278
-
279
- # Add the empty directories
280
- foreach ($this->adddirs as $dir) {
281
- if (false == $this->pclzip->add($updraft_dir.'/emptydir', PCLZIP_OPT_REMOVE_PATH, $updraft_dir.'/emptydir', PCLZIP_OPT_ADD_PATH, $dir)) {
282
- $this->last_error = $this->pclzip->errorInfo(true);
283
- return false;
284
- }
285
- $activity = true;
286
- }
287
-
288
- foreach ($this->addfiles as $rdirname => $adirnames) {
289
- foreach ($adirnames as $adirname => $files) {
290
- if (false == $this->pclzip->add($files, PCLZIP_OPT_REMOVE_PATH, $rdirname, PCLZIP_OPT_ADD_PATH, $adirname)) {
291
- $this->last_error = $this->pclzip->errorInfo(true);
292
- return false;
293
- }
294
- $activity = true;
295
- }
296
- unset($this->addfiles[$rdirname]);
297
- }
298
-
299
- $this->pclzip = false;
300
- $this->addfiles = array();
301
- $this->adddirs = array();
302
-
303
- clearstatcache();
304
- if ($activity && filesize($this->path) < 50) {
305
- $this->last_error = "Write failed - unknown cause (check your file permissions)";
306
- return false;
307
- }
308
-
309
- return true;
310
- }
311
-
312
- # Note: basename($add_as) is irrelevant; that is, it is actually basename($file) that will be used. But these are always identical in our usage.
313
- public function addFile($file, $add_as) {
314
- # Add the files. PclZip appears to do the whole (copy zip to temporary file, add file, move file) cycle for each file - so batch them as much as possible. We have to batch by dirname(). On a test with 1000 files of 25KB each in the same directory, this reduced the time needed on that directory from 120s to 15s (or 5s with primed caches).
315
- $rdirname = dirname($file);
316
- $adirname = dirname($add_as);
317
- $this->addfiles[$rdirname][$adirname][] = $file;
318
- }
319
-
320
- # PclZip doesn't have a direct way to do this
321
- public function addEmptyDir($dir) {
322
- $this->adddirs[] = $dir;
323
- }
324
-
325
- }
9
  }
10
  endif;
11
 
12
+ # A ZipArchive compatibility layer, with behaviour sufficient for our usage of ZipArchive
13
+ class UpdraftPlus_PclZip {
14
+
15
+ protected $pclzip;
16
+ protected $path;
17
+ protected $addfiles;
18
+ protected $adddirs;
19
+ private $statindex;
20
+ private $include_mtime = false;
21
+ public $last_error;
22
+
23
+ public function __construct() {
24
+ $this->addfiles = array();
25
+ $this->adddirs = array();
26
+ // Put this in a non-backed-up, writeable location, to make sure that huge temporary files aren't created and then added to the backup - and that we have somewhere writable
27
+ global $updraftplus;
28
+ if (!defined('PCLZIP_TEMPORARY_DIR')) define('PCLZIP_TEMPORARY_DIR', trailingslashit($updraftplus->backups_dir_location()));
29
+ }
30
+
31
+ # Used to include mtime in statindex (by default, not done - to save memory; probably a bit paranoid)
32
+ public function ud_include_mtime() {
33
+ $this->include_mtime = true;
34
+ }
35
+
36
+ public function __get($name) {
37
+ if ($name != 'numFiles') return null;
38
+
39
+ if (empty($this->pclzip)) return false;
40
+
41
+ $statindex = $this->pclzip->listContent();
42
+
43
+ if (empty($statindex)) {
44
+ $this->statindex=array();
45
+ return 0;
46
+ }
47
+
48
+ $result = array();
49
+ foreach ($statindex as $i => $file) {
50
+ if (!isset($statindex[$i]['folder']) || 0 == $statindex[$i]['folder']) {
51
+ $result[] = $file;
52
+ }
53
+ unset($statindex[$i]);
54
+ }
55
+
56
+ $this->statindex=$result;
57
+
58
+ return count($this->statindex);
59
+
60
+ }
61
+
62
+ public function statIndex($i) {
63
+ if (empty($this->statindex[$i])) return array('name' => null, 'size' => 0);
64
+ $v = array('name' => $this->statindex[$i]['filename'], 'size' => $this->statindex[$i]['size']);
65
+ if ($this->include_mtime) $v['mtime'] = $this->statindex[$i]['mtime'];
66
+ return $v;
67
+ }
68
+
69
+ public function open($path, $flags = 0) {
70
+ if(!class_exists('PclZip')) include_once(ABSPATH.'/wp-admin/includes/class-pclzip.php');
71
+ if(!class_exists('PclZip')) {
72
+ $this->last_error = "No PclZip class was found";
73
+ return false;
74
+ }
75
+
76
+ # Route around PHP bug (exact version with the problem not known)
77
+ $ziparchive_create_match = (version_compare(PHP_VERSION, '5.2.12', '>') && defined('ZIPARCHIVE::CREATE')) ? ZIPARCHIVE::CREATE : 1;
78
+
79
+ if ($flags == $ziparchive_create_match && file_exists($path)) @unlink($path);
80
+
81
+ $this->pclzip = new PclZip($path);
82
+ if (empty($this->pclzip)) {
83
+ $this->last_error = 'Could not get a PclZip object';
84
+ return false;
85
+ }
86
+
87
+ # Make the empty directory we need to implement addEmptyDir()
88
+ global $updraftplus;
89
+ $updraft_dir = $updraftplus->backups_dir_location();
90
+ if (!is_dir($updraft_dir.'/emptydir') && !mkdir($updraft_dir.'/emptydir')) {
91
+ $this->last_error = "Could not create empty directory ($updraft_dir/emptydir)";
92
+ return false;
93
+ }
94
+
95
+ $this->path = $path;
96
+
97
+ return true;
98
+
99
+ }
100
+
101
+ # Do the actual write-out - it is assumed that close() is where this is done. Needs to return true/false
102
+ public function close() {
103
+ if (empty($this->pclzip)) {
104
+ $this->last_error = 'Zip file was not opened';
105
+ return false;
106
+ }
107
+
108
+ global $updraftplus;
109
+ $updraft_dir = $updraftplus->backups_dir_location();
110
+
111
+ $activity = false;
112
+
113
+ # Add the empty directories
114
+ foreach ($this->adddirs as $dir) {
115
+ if (false == $this->pclzip->add($updraft_dir.'/emptydir', PCLZIP_OPT_REMOVE_PATH, $updraft_dir.'/emptydir', PCLZIP_OPT_ADD_PATH, $dir)) {
116
+ $this->last_error = $this->pclzip->errorInfo(true);
117
+ return false;
118
+ }
119
+ $activity = true;
120
+ }
121
+
122
+ foreach ($this->addfiles as $rdirname => $adirnames) {
123
+ foreach ($adirnames as $adirname => $files) {
124
+ if (false == $this->pclzip->add($files, PCLZIP_OPT_REMOVE_PATH, $rdirname, PCLZIP_OPT_ADD_PATH, $adirname)) {
125
+ $this->last_error = $this->pclzip->errorInfo(true);
126
+ return false;
127
+ }
128
+ $activity = true;
129
+ }
130
+ unset($this->addfiles[$rdirname]);
131
+ }
132
+
133
+ $this->pclzip = false;
134
+ $this->addfiles = array();
135
+ $this->adddirs = array();
136
+
137
+ clearstatcache();
138
+ if ($activity && filesize($this->path) < 50) {
139
+ $this->last_error = "Write failed - unknown cause (check your file permissions)";
140
+ return false;
141
+ }
142
+
143
+ return true;
144
+ }
145
+
146
+ # Note: basename($add_as) is irrelevant; that is, it is actually basename($file) that will be used. But these are always identical in our usage.
147
+ public function addFile($file, $add_as) {
148
+ # Add the files. PclZip appears to do the whole (copy zip to temporary file, add file, move file) cycle for each file - so batch them as much as possible. We have to batch by dirname(). On a test with 1000 files of 25KB each in the same directory, this reduced the time needed on that directory from 120s to 15s (or 5s with primed caches).
149
+ $rdirname = dirname($file);
150
+ $adirname = dirname($add_as);
151
+ $this->addfiles[$rdirname][$adirname][] = $file;
152
+ }
153
+
154
+ # PclZip doesn't have a direct way to do this
155
+ public function addEmptyDir($dir) {
156
+ $this->adddirs[] = $dir;
157
+ }
158
+
159
+ }
160
+
161
  class UpdraftPlus_BinZip extends UpdraftPlus_PclZip {
162
 
163
  private $binzip;
180
 
181
  if ($file == $base) {
182
  // Shouldn't happen; but see: https://bugs.php.net/bug.php?id=62119
183
+ $updraftplus->log("File skipped due to unexpected name mismatch (locale: ".setlocale(LC_CTYPE, "0")."): file=$file add_as=$add_as", 'notice', false, true);
184
  } else {
185
  $rdirname = untrailingslashit($base);
186
  # Note: $file equals $rdirname/$add_as
323
  }
324
 
325
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
composer.json CHANGED
@@ -5,6 +5,6 @@
5
  "require": {
6
  "eher/oauth": "^1.0",
7
  "rackspace/php-opencloud": "1.12.2",
8
- "aws/aws-sdk-php": "2.7.17"
9
  }
10
  }
5
  "require": {
6
  "eher/oauth": "^1.0",
7
  "rackspace/php-opencloud": "1.12.2",
8
+ "aws/aws-sdk-php": "2.8.*"
9
  }
10
  }
composer.lock CHANGED
@@ -4,21 +4,21 @@
4
  "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
  "This file is @generated automatically"
6
  ],
7
- "hash": "93f978eea4f40210938d9cec8a64fb44",
8
- "content-hash": "aea6c4f12e0ccbc37eec403541b4f84d",
9
  "packages": [
10
  {
11
  "name": "aws/aws-sdk-php",
12
- "version": "2.7.17",
13
  "source": {
14
  "type": "git",
15
  "url": "https://github.com/aws/aws-sdk-php.git",
16
- "reference": "eddf89846ed0f15e8e2b8cbe6d08125eaa20ad80"
17
  },
18
  "dist": {
19
  "type": "zip",
20
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/eddf89846ed0f15e8e2b8cbe6d08125eaa20ad80",
21
- "reference": "eddf89846ed0f15e8e2b8cbe6d08125eaa20ad80",
22
  "shasum": ""
23
  },
24
  "require": {
@@ -30,6 +30,7 @@
30
  "ext-openssl": "*",
31
  "monolog/monolog": "~1.4",
32
  "phpunit/phpunit": "~4.0",
 
33
  "symfony/yaml": "~2.1"
34
  },
35
  "suggest": {
@@ -40,11 +41,6 @@
40
  "symfony/yaml": "Eases the ability to write manifests for creating jobs in AWS Import/Export"
41
  },
42
  "type": "library",
43
- "extra": {
44
- "branch-alias": {
45
- "dev-master": "2.7-dev"
46
- }
47
- },
48
  "autoload": {
49
  "psr-0": {
50
  "Aws": "src/"
@@ -72,7 +68,7 @@
72
  "s3",
73
  "sdk"
74
  ],
75
- "time": "2015-01-27 20:14:01"
76
  },
77
  {
78
  "name": "eher/oauth",
@@ -307,16 +303,16 @@
307
  },
308
  {
309
  "name": "symfony/event-dispatcher",
310
- "version": "v2.8.2",
311
  "source": {
312
  "type": "git",
313
  "url": "https://github.com/symfony/event-dispatcher.git",
314
- "reference": "ee278f7c851533e58ca307f66305ccb9188aceda"
315
  },
316
  "dist": {
317
  "type": "zip",
318
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ee278f7c851533e58ca307f66305ccb9188aceda",
319
- "reference": "ee278f7c851533e58ca307f66305ccb9188aceda",
320
  "shasum": ""
321
  },
322
  "require": {
@@ -363,7 +359,7 @@
363
  ],
364
  "description": "Symfony EventDispatcher Component",
365
  "homepage": "https://symfony.com",
366
- "time": "2016-01-13 10:28:07"
367
  }
368
  ],
369
  "packages-dev": [],
4
  "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
  "This file is @generated automatically"
6
  ],
7
+ "hash": "02bee7ad83137f80e5b61b7963d82d17",
8
+ "content-hash": "4737de1914ed64f5d71431d94c2f91cf",
9
  "packages": [
10
  {
11
  "name": "aws/aws-sdk-php",
12
+ "version": "2.8.30",
13
  "source": {
14
  "type": "git",
15
  "url": "https://github.com/aws/aws-sdk-php.git",
16
+ "reference": "2d7183cd22381237bce25f11d741a77bdeb2d0b8"
17
  },
18
  "dist": {
19
  "type": "zip",
20
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/2d7183cd22381237bce25f11d741a77bdeb2d0b8",
21
+ "reference": "2d7183cd22381237bce25f11d741a77bdeb2d0b8",
22
  "shasum": ""
23
  },
24
  "require": {
30
  "ext-openssl": "*",
31
  "monolog/monolog": "~1.4",
32
  "phpunit/phpunit": "~4.0",
33
+ "phpunit/phpunit-mock-objects": "2.3.1",
34
  "symfony/yaml": "~2.1"
35
  },
36
  "suggest": {
41
  "symfony/yaml": "Eases the ability to write manifests for creating jobs in AWS Import/Export"
42
  },
43
  "type": "library",
 
 
 
 
 
44
  "autoload": {
45
  "psr-0": {
46
  "Aws": "src/"
68
  "s3",
69
  "sdk"
70
  ],
71
+ "time": "2016-05-03 17:42:24"
72
  },
73
  {
74
  "name": "eher/oauth",
303
  },
304
  {
305
  "name": "symfony/event-dispatcher",
306
+ "version": "v2.8.5",
307
  "source": {
308
  "type": "git",
309
  "url": "https://github.com/symfony/event-dispatcher.git",
310
+ "reference": "81c4c51f7fd6d0d40961bd53dd60cade32db6ed6"
311
  },
312
  "dist": {
313
  "type": "zip",
314
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/81c4c51f7fd6d0d40961bd53dd60cade32db6ed6",
315
+ "reference": "81c4c51f7fd6d0d40961bd53dd60cade32db6ed6",
316
  "shasum": ""
317
  },
318
  "require": {
359
  ],
360
  "description": "Symfony EventDispatcher Component",
361
  "homepage": "https://symfony.com",
362
+ "time": "2016-04-05 16:36:54"
363
  }
364
  ],
365
  "packages-dev": [],
includes/Dropbox/OAuth/Consumer/WordPress.php CHANGED
@@ -58,13 +58,13 @@ class Dropbox_ConsumerWordPress extends Dropbox_ConsumerAbstract
58
  // If the response body is not a JSON encoded string
59
  // we'll return the entire response body
60
  // Important to do this first, as the next section relies on the decoding having taken place
61
- if (!$body = json_decode($response['body'])) {
62
- $body = $response['body'];
63
  }
64
 
65
  // Check if an error occurred and throw an Exception. This is part of the authentication process - don't modify.
66
  if (!empty($body->error)) {
67
- $message = $body->error . ' (Status Code: ' . $response['code'] . ')';
68
  throw new Dropbox_Exception($message);
69
  }
70
 
@@ -73,7 +73,7 @@ class Dropbox_ConsumerWordPress extends Dropbox_ConsumerAbstract
73
  throw new Dropbox_Exception($message);
74
  }
75
 
76
- $results = array ( 'body' => $body, 'code' => $response['response']['code'], 'headers' => $response['headers'] );
77
  return $results;
78
  }
79
 
58
  // If the response body is not a JSON encoded string
59
  // we'll return the entire response body
60
  // Important to do this first, as the next section relies on the decoding having taken place
61
+ if (!$body = json_decode(wp_remote_retrieve_body($response))) {
62
+ $body = wp_remote_retrieve_body($response);
63
  }
64
 
65
  // Check if an error occurred and throw an Exception. This is part of the authentication process - don't modify.
66
  if (!empty($body->error)) {
67
+ $message = $body->error . ' (Status Code: ' . wp_remote_retrieve_response_code($response) . ')';
68
  throw new Dropbox_Exception($message);
69
  }
70
 
73
  throw new Dropbox_Exception($message);
74
  }
75
 
76
+ $results = array ( 'body' => $body, 'code' => wp_remote_retrieve_response_code($response), 'headers' => $response['headers'] );
77
  return $results;
78
  }
79
 
includes/S3compat.php CHANGED
@@ -396,7 +396,11 @@ class UpdraftPlus_S3_Compat
396
  return $results;
397
 
398
  } catch (Exception $e) {
399
- return $this->trigger_from_exception($e);
 
 
 
 
400
  }
401
  }
402
 
396
  return $results;
397
 
398
  } catch (Exception $e) {
399
+ if ($this->useExceptions) {
400
+ throw $e;
401
+ } else {
402
+ return $this->trigger_from_exception($e);
403
+ }
404
  }
405
  }
406
 
includes/class-udrpc.php CHANGED
@@ -59,7 +59,7 @@ if (!class_exists('UpdraftPlus_Remote_Communications')):
59
  class UpdraftPlus_Remote_Communications {
60
 
61
  // Version numbers relate to versions of this PHP library only (i.e. it's not a protocol support number, and version numbers of other compatible libraries (e.g. JavaScript) are not comparable)
62
- public $version = '1.4.3';
63
 
64
  private $key_name_indicator;
65
 
@@ -619,17 +619,29 @@ class UpdraftPlus_Remote_Communications {
619
 
620
  if (is_wp_error($post)) return $post;
621
 
622
- if (empty($post['response']) || empty($post['response']['code'])) return new WP_Error('empty_http_code', 'Unexpected HTTP response code');
 
 
623
 
624
- if ($post['response']['code'] < 200 || $post['response']['code'] >= 300) return new WP_Error('unexpected_http_code', 'Unexpected HTTP response code ('.$post['response']['code'].')', $post);
 
 
625
 
626
- if (empty($post['body'])) return new WP_Error('empty_response', 'Empty response from remote site');
627
 
628
- $decoded = json_decode((string)$post['body'], true);
629
 
630
  if (empty($decoded)) {
631
- $this->log("response from remote site could not be understood: ".substr($post['body'], 0, 100).' ... ');
632
- return new WP_Error('response_not_understood', 'Response from remote site could not be understood', $post['body']);
 
 
 
 
 
 
 
 
633
  }
634
 
635
  if (!is_array($decoded) || empty($decoded['udrpc_message'])) return new WP_Error('response_not_understood', 'Response from remote site was not in the expected format ('.$post['body'].')', $decoded);
59
  class UpdraftPlus_Remote_Communications {
60
 
61
  // Version numbers relate to versions of this PHP library only (i.e. it's not a protocol support number, and version numbers of other compatible libraries (e.g. JavaScript) are not comparable)
62
+ public $version = '1.4.5';
63
 
64
  private $key_name_indicator;
65
 
619
 
620
  if (is_wp_error($post)) return $post;
621
 
622
+ $response_code = wp_remote_retrieve_response_code($post);
623
+
624
+ if (empty($response_code)) return new WP_Error('empty_http_code', 'Unexpected HTTP response code');
625
 
626
+ if ($response_code < 200 || $response_code >= 300) return new WP_Error('unexpected_http_code', 'Unexpected HTTP response code ('.$response_code.')', $post);
627
+
628
+ $response_body = wp_remote_retrieve_body($post);
629
 
630
+ if (empty($response_body)) return new WP_Error('empty_response', 'Empty response from remote site');
631
 
632
+ $decoded = json_decode($response_body, true);
633
 
634
  if (empty($decoded)) {
635
+
636
+ if (false != ($found_at = strpos($response_body, '{"format":'))) {
637
+ $new_body = substr($response_body, $found_at);
638
+ $decoded = json_decode($new_body, true);
639
+ }
640
+
641
+ if (empty($decoded)) {
642
+ $this->log("response from remote site could not be understood: ".substr($response_body, 0, 100).' ... ');
643
+ return new WP_Error('response_not_understood', 'Response from remote site could not be understood', $response_body);
644
+ }
645
  }
646
 
647
  if (!is_array($decoded) || empty($decoded['udrpc_message'])) return new WP_Error('response_not_understood', 'Response from remote site was not in the expected format ('.$post['body'].')', $decoded);
includes/phpseclib/Crypt/Base.php CHANGED
@@ -746,10 +746,13 @@ class Crypt_Base
746
  return !defined('OPENSSL_RAW_DATA') ? substr($result, 0, -$this->block_size) : $result;
747
  case CRYPT_MODE_CBC:
748
  $result = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->encryptIV);
 
 
 
749
  if ($this->continuousBuffer) {
750
  $this->encryptIV = substr($result, -$this->block_size);
751
  }
752
- return !defined('OPENSSL_RAW_DATA') ? substr($result, 0, -$this->block_size) : $result;
753
  case CRYPT_MODE_CTR:
754
  return $this->_openssl_ctr_process($plaintext, $this->encryptIV, $this->enbuffer);
755
  case CRYPT_MODE_CFB:
@@ -1052,10 +1055,13 @@ class Crypt_Base
1052
  if (!defined('OPENSSL_RAW_DATA')) {
1053
  $padding = str_repeat(chr($this->block_size), $this->block_size) ^ substr($ciphertext, -$this->block_size);
1054
  $ciphertext.= substr(openssl_encrypt($padding, $this->cipher_name_openssl_ecb, $this->key, true), 0, $this->block_size);
 
 
 
1055
  }
1056
  $plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->decryptIV);
1057
  if ($this->continuousBuffer) {
1058
- $this->decryptIV = substr($ciphertext, -$this->block_size);
1059
  }
1060
  break;
1061
  case CRYPT_MODE_CTR:
746
  return !defined('OPENSSL_RAW_DATA') ? substr($result, 0, -$this->block_size) : $result;
747
  case CRYPT_MODE_CBC:
748
  $result = openssl_encrypt($plaintext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->encryptIV);
749
+ if (!defined('OPENSSL_RAW_DATA')) {
750
+ $result = substr($result, 0, -$this->block_size);
751
+ }
752
  if ($this->continuousBuffer) {
753
  $this->encryptIV = substr($result, -$this->block_size);
754
  }
755
+ return $result;
756
  case CRYPT_MODE_CTR:
757
  return $this->_openssl_ctr_process($plaintext, $this->encryptIV, $this->enbuffer);
758
  case CRYPT_MODE_CFB:
1055
  if (!defined('OPENSSL_RAW_DATA')) {
1056
  $padding = str_repeat(chr($this->block_size), $this->block_size) ^ substr($ciphertext, -$this->block_size);
1057
  $ciphertext.= substr(openssl_encrypt($padding, $this->cipher_name_openssl_ecb, $this->key, true), 0, $this->block_size);
1058
+ $offset = 2 * $this->block_size;
1059
+ } else {
1060
+ $offset = $this->block_size;
1061
  }
1062
  $plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options, $this->decryptIV);
1063
  if ($this->continuousBuffer) {
1064
+ $this->decryptIV = substr($ciphertext, -$offset, $this->block_size);
1065
  }
1066
  break;
1067
  case CRYPT_MODE_CTR:
includes/phpseclib/Crypt/RC2.php CHANGED
@@ -387,7 +387,7 @@ class Crypt_RC2 extends Crypt_Base
387
  /**
388
  * Sets the key length.
389
  *
390
- * Valid key lengths are 1 to 1024.
391
  * Calling this function after setting the key has no effect until the next
392
  * Crypt_RC2::setKey() call.
393
  *
@@ -396,9 +396,16 @@ class Crypt_RC2 extends Crypt_Base
396
  */
397
  function setKeyLength($length)
398
  {
399
- if ($length >= 1 && $length <= 1024) {
 
 
 
 
400
  $this->default_key_length = $length;
401
  }
 
 
 
402
  }
403
 
404
  /**
@@ -415,7 +422,7 @@ class Crypt_RC2 extends Crypt_Base
415
  /**
416
  * Sets the key.
417
  *
418
- * Keys can be of any length. RC2, itself, uses 1 to 1024 bit keys (eg.
419
  * strlen($key) <= 128), however, we only use the first 128 bytes if $key
420
  * has more then 128 bytes in it, and set $key to a single null byte if
421
  * it is empty.
@@ -514,7 +521,7 @@ class Crypt_RC2 extends Crypt_Base
514
  return $result;
515
  }
516
 
517
- return parent::encrypt($ciphertext);
518
  }
519
 
520
  /**
387
  /**
388
  * Sets the key length.
389
  *
390
+ * Valid key lengths are 8 to 1024.
391
  * Calling this function after setting the key has no effect until the next
392
  * Crypt_RC2::setKey() call.
393
  *
396
  */
397
  function setKeyLength($length)
398
  {
399
+ if ($length < 8) {
400
+ $this->default_key_length = 8;
401
+ } elseif ($length > 1024) {
402
+ $this->default_key_length = 128;
403
+ } else {
404
  $this->default_key_length = $length;
405
  }
406
+ $this->current_key_length = $this->default_key_length;
407
+
408
+ parent::setKeyLength($length);
409
  }
410
 
411
  /**
422
  /**
423
  * Sets the key.
424
  *
425
+ * Keys can be of any length. RC2, itself, uses 8 to 1024 bit keys (eg.
426
  * strlen($key) <= 128), however, we only use the first 128 bytes if $key
427
  * has more then 128 bytes in it, and set $key to a single null byte if
428
  * it is empty.
521
  return $result;
522
  }
523
 
524
+ return parent::decrypt($ciphertext);
525
  }
526
 
527
  /**
includes/phpseclib/Crypt/RC4.php CHANGED
@@ -234,7 +234,7 @@ class Crypt_RC4 extends Crypt_Base
234
  if ($length < 8) {
235
  $this->key_length = 1;
236
  } elseif ($length > 2048) {
237
- $this->key_length = 248;
238
  } else {
239
  $this->key_length = $length >> 3;
240
  }
234
  if ($length < 8) {
235
  $this->key_length = 1;
236
  } elseif ($length > 2048) {
237
+ $this->key_length = 256;
238
  } else {
239
  $this->key_length = $length >> 3;
240
  }
includes/phpseclib/Crypt/RSA.php CHANGED
@@ -1786,7 +1786,7 @@ class Crypt_RSA
1786
  function setPrivateKey($key = false, $type = false)
1787
  {
1788
  if ($key === false && !empty($this->publicExponent)) {
1789
- unset($this->publicExponent);
1790
  return true;
1791
  }
1792
 
@@ -1794,7 +1794,7 @@ class Crypt_RSA
1794
  if (!$rsa->loadKey($key, $type)) {
1795
  return false;
1796
  }
1797
- unset($rsa->publicExponent);
1798
 
1799
  // don't overwrite the old key if the new key is invalid
1800
  $this->loadKey($rsa);
@@ -1838,7 +1838,7 @@ class Crypt_RSA
1838
  * for invalid values.
1839
  * @return mixed
1840
  */
1841
- public function getPublicKeyFingerprint($algorithm = 'md5')
1842
  {
1843
  if (empty($this->modulus) || empty($this->publicExponent)) {
1844
  return false;
1786
  function setPrivateKey($key = false, $type = false)
1787
  {
1788
  if ($key === false && !empty($this->publicExponent)) {
1789
+ $this->publicExponent = false;
1790
  return true;
1791
  }
1792
 
1794
  if (!$rsa->loadKey($key, $type)) {
1795
  return false;
1796
  }
1797
+ $rsa->publicExponent = false;
1798
 
1799
  // don't overwrite the old key if the new key is invalid
1800
  $this->loadKey($rsa);
1838
  * for invalid values.
1839
  * @return mixed
1840
  */
1841
+ function getPublicKeyFingerprint($algorithm = 'md5')
1842
  {
1843
  if (empty($this->modulus) || empty($this->publicExponent)) {
1844
  return false;
includes/phpseclib/Crypt/Random.php CHANGED
@@ -148,13 +148,13 @@ if (!function_exists('crypt_random_string')) {
148
  session_start();
149
 
150
  $v = $seed = $_SESSION['seed'] = pack('H*', sha1(
151
- serialize($_SERVER) .
152
- serialize($_POST) .
153
- serialize($_GET) .
154
- serialize($_COOKIE) .
155
- serialize($GLOBALS) .
156
- serialize($_SESSION) .
157
- serialize($_OLD_SESSION)
158
  ));
159
  if (!isset($_SESSION['count'])) {
160
  $_SESSION['count'] = 0;
@@ -260,6 +260,41 @@ if (!function_exists('crypt_random_string')) {
260
  }
261
  }
262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  if (!function_exists('phpseclib_resolve_include_path')) {
264
  /**
265
  * Resolve filename against the include path.
148
  session_start();
149
 
150
  $v = $seed = $_SESSION['seed'] = pack('H*', sha1(
151
+ (isset($_SERVER) ? phpseclib_safe_serialize($_SERVER) : '') .
152
+ (isset($_POST) ? phpseclib_safe_serialize($_POST) : '') .
153
+ (isset($_GET) ? phpseclib_safe_serialize($_GET) : '') .
154
+ (isset($_COOKIE) ? phpseclib_safe_serialize($_COOKIE) : '') .
155
+ phpseclib_safe_serialize($GLOBALS) .
156
+ phpseclib_safe_serialize($_SESSION) .
157
+ phpseclib_safe_serialize($_OLD_SESSION)
158
  ));
159
  if (!isset($_SESSION['count'])) {
160
  $_SESSION['count'] = 0;
260
  }
261
  }
262
 
263
+ if (!function_exists('phpseclib_safe_serialize')) {
264
+ /**
265
+ * Safely serialize variables
266
+ *
267
+ * If a class has a private __sleep() method it'll give a fatal error on PHP 5.2 and earlier.
268
+ * PHP 5.3 will emit a warning.
269
+ *
270
+ * @param mixed $arr
271
+ * @access public
272
+ */
273
+ function phpseclib_safe_serialize(&$arr)
274
+ {
275
+ if (is_object($arr)) {
276
+ return '';
277
+ }
278
+ if (!is_array($arr)) {
279
+ return serialize($arr);
280
+ }
281
+ // prevent circular array recursion
282
+ if (isset($arr['__phpseclib_marker'])) {
283
+ return '';
284
+ }
285
+ $safearr = array();
286
+ $arr['__phpseclib_marker'] = true;
287
+ foreach (array_keys($arr) as $key) {
288
+ // do not recurse on the '__phpseclib_marker' key itself, for smaller memory usage
289
+ if ($key !== '__phpseclib_marker') {
290
+ $safearr[$key] = phpseclib_safe_serialize($arr[$key]);
291
+ }
292
+ }
293
+ unset($arr['__phpseclib_marker']);
294
+ return serialize($safearr);
295
+ }
296
+ }
297
+
298
  if (!function_exists('phpseclib_resolve_include_path')) {
299
  /**
300
  * Resolve filename against the include path.
includes/phpseclib/Math/BigInteger.php CHANGED
@@ -1842,7 +1842,7 @@ class Math_BigInteger
1842
 
1843
  // calculate the appropriate window size.
1844
  // $window_size == 3 if $window_ranges is between 25 and 81, for example.
1845
- for ($i = 0, $window_size = 1; $e_length > $window_ranges[$i] && $i < count($window_ranges); ++$window_size, ++$i) {
1846
  }
1847
 
1848
  $n_value = $n->value;
1842
 
1843
  // calculate the appropriate window size.
1844
  // $window_size == 3 if $window_ranges is between 25 and 81, for example.
1845
+ for ($i = 0, $window_size = 1; $i < count($window_ranges) && $e_length > $window_ranges[$i]; ++$window_size, ++$i) {
1846
  }
1847
 
1848
  $n_value = $n->value;
includes/phpseclib/Net/SFTP.php CHANGED
@@ -789,7 +789,7 @@ class Net_SFTP extends Net_SSH2
789
  {
790
  $files = $this->_list($dir, false);
791
 
792
- if (!$recursive) {
793
  return $files;
794
  }
795
 
@@ -2350,6 +2350,76 @@ class Net_SFTP extends Net_SSH2
2350
  return $result === NET_SFTP_TYPE_SYMLINK;
2351
  }
2352
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2353
  /**
2354
  * Gets last access time of file
2355
  *
789
  {
790
  $files = $this->_list($dir, false);
791
 
792
+ if (!$recursive || $files === false) {
793
  return $files;
794
  }
795
 
2350
  return $result === NET_SFTP_TYPE_SYMLINK;
2351
  }
2352
 
2353
+ /**
2354
+ * Tells whether a file exists and is readable
2355
+ *
2356
+ * @param string $path
2357
+ * @return bool
2358
+ * @access public
2359
+ */
2360
+ function is_readable($path)
2361
+ {
2362
+ $path = $this->_realpath($path);
2363
+
2364
+ $packet = pack('Na*N2', strlen($path), $path, NET_SFTP_OPEN_READ, 0);
2365
+ if (!$this->_send_sftp_packet(NET_SFTP_OPEN, $packet)) {
2366
+ return false;
2367
+ }
2368
+
2369
+ $response = $this->_get_sftp_packet();
2370
+ switch ($this->packet_type) {
2371
+ case NET_SFTP_HANDLE:
2372
+ return true;
2373
+ case NET_SFTP_STATUS: // presumably SSH_FX_NO_SUCH_FILE or SSH_FX_PERMISSION_DENIED
2374
+ return false;
2375
+ default:
2376
+ user_error('Expected SSH_FXP_HANDLE or SSH_FXP_STATUS');
2377
+ return false;
2378
+ }
2379
+ }
2380
+
2381
+ /**
2382
+ * Tells whether the filename is writable
2383
+ *
2384
+ * @param string $path
2385
+ * @return bool
2386
+ * @access public
2387
+ */
2388
+ function is_writable($path)
2389
+ {
2390
+ $path = $this->_realpath($path);
2391
+
2392
+ $packet = pack('Na*N2', strlen($path), $path, NET_SFTP_OPEN_WRITE, 0);
2393
+ if (!$this->_send_sftp_packet(NET_SFTP_OPEN, $packet)) {
2394
+ return false;
2395
+ }
2396
+
2397
+ $response = $this->_get_sftp_packet();
2398
+ switch ($this->packet_type) {
2399
+ case NET_SFTP_HANDLE:
2400
+ return true;
2401
+ case NET_SFTP_STATUS: // presumably SSH_FX_NO_SUCH_FILE or SSH_FX_PERMISSION_DENIED
2402
+ return false;
2403
+ default:
2404
+ user_error('Expected SSH_FXP_HANDLE or SSH_FXP_STATUS');
2405
+ return false;
2406
+ }
2407
+ }
2408
+
2409
+ /**
2410
+ * Tells whether the filename is writeable
2411
+ *
2412
+ * Alias of is_writable
2413
+ *
2414
+ * @param string $path
2415
+ * @return bool
2416
+ * @access public
2417
+ */
2418
+ function is_writeable($path)
2419
+ {
2420
+ return $this->is_writable($path);
2421
+ }
2422
+
2423
  /**
2424
  * Gets last access time of file
2425
  *
includes/phpseclib/Net/SSH2.php CHANGED
@@ -3875,7 +3875,7 @@ class Net_SSH2
3875
  /**
3876
  * Returns all errors
3877
  *
3878
- * @return string
3879
  * @access public
3880
  */
3881
  function getErrors()
3875
  /**
3876
  * Returns all errors
3877
  *
3878
+ * @return string[]
3879
  * @access public
3880
  */
3881
  function getErrors()
includes/phpseclib/System/SSH/Agent.php CHANGED
@@ -320,9 +320,10 @@ class System_SSH_Agent
320
  for ($i = 0; $i < $keyCount; $i++) {
321
  $length = current(unpack('N', fread($this->fsock, 4)));
322
  $key_blob = fread($this->fsock, $length);
 
323
  $length = current(unpack('N', fread($this->fsock, 4)));
324
  if ($length) {
325
- $key_comment = fread($this->fsock, $length);
326
  }
327
  $length = current(unpack('N', substr($key_blob, 0, 4)));
328
  $key_type = substr($key_blob, 4, $length);
@@ -332,7 +333,7 @@ class System_SSH_Agent
332
  include_once 'Crypt/RSA.php';
333
  }
334
  $key = new Crypt_RSA();
335
- $key->loadKey('ssh-rsa ' . base64_encode($key_blob) . ' ' . $key_comment);
336
  break;
337
  case 'ssh-dss':
338
  // not currently supported
320
  for ($i = 0; $i < $keyCount; $i++) {
321
  $length = current(unpack('N', fread($this->fsock, 4)));
322
  $key_blob = fread($this->fsock, $length);
323
+ $key_str = 'ssh-rsa ' . base64_encode($key_blob);
324
  $length = current(unpack('N', fread($this->fsock, 4)));
325
  if ($length) {
326
+ $key_str.= ' ' . fread($this->fsock, $length);
327
  }
328
  $length = current(unpack('N', substr($key_blob, 0, 4)));
329
  $key_type = substr($key_blob, 4, $length);
333
  include_once 'Crypt/RSA.php';
334
  }
335
  $key = new Crypt_RSA();
336
+ $key->loadKey($key_str);
337
  break;
338
  case 'ssh-dss':
339
  // not currently supported
includes/updraft-admin-ui.js CHANGED
@@ -2232,8 +2232,8 @@ jQuery(document).ready(function($){
2232
  e.preventDefault();
2233
  $.blockUI({ message: '<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.saving+'</div>'});
2234
 
2235
- //Gather data
2236
- var form_data = $("#updraft-navtab-settings-content form input, #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select").serialize();
2237
 
2238
  //include unchecked checkboxes. user filter to only include unchecked boxes.
2239
  $.each($('#updraft-navtab-settings-content form input[type=checkbox]')
2232
  e.preventDefault();
2233
  $.blockUI({ message: '<div style="margin: 8px; font-size:150%;"><img src="'+updraftlion.ud_url+'/images/udlogo-rotating.gif" height="80" width="80" style="padding-bottom:10px;"><br>'+updraftlion.saving+'</div>'});
2234
 
2235
+ // Gather data. Excluding the unnecessary 'action' input avoids triggering a very mis-conceived mod_security rule seen on one user's site
2236
+ var form_data = $("#updraft-navtab-settings-content form input[name!='action'], #updraft-navtab-settings-content form textarea, #updraft-navtab-settings-content form select").serialize();
2237
 
2238
  //include unchecked checkboxes. user filter to only include unchecked boxes.
2239
  $.each($('#updraft-navtab-settings-content form input[type=checkbox]')
languages/updraftplus-ar.mo CHANGED
Binary file
languages/updraftplus-ar.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
@@ -1625,9 +1625,7 @@ msgstr ""
1625
 
1626
  #: admin.php:2609
1627
  msgid "Backup extra files and databases"
1628
- msgstr ""
1629
- "قم بعمل نسخ احطياتية من الملفات و قواعد البيانات.\n"
1630
- "\n"
1631
 
1632
  #: admin.php:2614
1633
  msgid "Migrate / clone (i.e. copy) websites"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
1625
 
1626
  #: admin.php:2609
1627
  msgid "Backup extra files and databases"
1628
+ msgstr "قم بعمل نسخ احطياتية من الملفات و قواعد البيانات."
 
 
1629
 
1630
  #: admin.php:2614
1631
  msgid "Migrate / clone (i.e. copy) websites"
languages/updraftplus-bn_BD.mo CHANGED
Binary file
languages/updraftplus-bn_BD.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-ca.mo CHANGED
Binary file
languages/updraftplus-ca.po CHANGED
@@ -7,14 +7,1798 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
- #: udaddons/options.php:46
14
- msgid "Add-ons"
15
  msgstr ""
16
 
17
- #: udaddons/options.php:265
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
19
  msgstr ""
20
 
@@ -22,10 +1806,6 @@ msgstr ""
22
  msgid "(learn more about this significant option)"
23
  msgstr ""
24
 
25
- #: addons/bitcasa.php:49
26
- msgid "Bitcasa have deprecated their developer API, and it will be turned off in November 2015. You must switch to a different cloud storage method in future!"
27
- msgstr ""
28
-
29
  #: addons/lockadmin.php:105
30
  msgid "The admin password has now been removed."
31
  msgstr ""
@@ -82,10 +1862,6 @@ msgstr ""
82
  msgid "Otherwise, the default link will be shown."
83
  msgstr ""
84
 
85
- #: addons/lockadmin.php:162
86
- msgid "Lock"
87
- msgstr ""
88
-
89
  #: addons/lockadmin.php:188 addons/lockadmin.php:194
90
  msgid "Unlock"
91
  msgstr ""
@@ -102,544 +1878,506 @@ msgstr ""
102
  msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
103
  msgstr ""
104
 
105
- #: addons/autobackup.php:42
106
  msgid "WordPress core (only)"
107
  msgstr ""
108
 
109
- #: addons/autobackup.php:77
 
110
  msgid "Automatic backup before update"
111
  msgstr ""
112
 
113
- #: addons/moredatabase.php:29
114
  msgid "Database decryption phrase"
115
  msgstr ""
116
 
117
- #: backup.php:2230
118
  msgid "A zip error occurred"
119
  msgstr ""
120
 
121
- #: backup.php:2232
122
  msgid "your web hosting account appears to be full; please see: %s"
123
  msgstr ""
124
 
125
- #: backup.php:2234
126
  msgid "check your log for more details."
127
  msgstr ""
128
 
129
- #: admin.php:1261
130
  msgid "Error: unexpected file read fail"
131
  msgstr ""
132
 
133
- #: admin.php:1483
134
  msgid "Backup label:"
135
  msgstr ""
136
 
137
- #: admin.php:2042
138
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
139
  msgstr ""
140
 
141
- #: admin.php:2230
142
- msgid "Following a link for Database/Plugins/Themes/Uploads/Others will make UpdraftPlus try to bring the backup file back from the remote storage (if any - e.g. Amazon S3, Dropbox, Google Drive, FTP) to your webserver. Then you will be allowed to download it to your computer. If the fetch from the remote storage stops progressing (wait 30 seconds to make sure), then press again to resume. Remember that you can also visit the cloud storage vendor's website directly."
143
- msgstr ""
144
-
145
- #: admin.php:2259
146
  msgid "Upload files into UpdraftPlus."
147
  msgstr ""
148
 
149
- #: admin.php:2445
150
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
151
  msgstr ""
152
 
153
- #: admin.php:2890
154
  msgid "incremental backup; base backup: %s"
155
  msgstr ""
156
 
157
- #: admin.php:2962 admin.php:2992
158
  msgid "and retain this many scheduled backups"
159
  msgstr ""
160
 
161
- #: admin.php:3481
162
  msgid "Backup date"
163
  msgstr ""
164
 
165
- #: admin.php:3482
166
  msgid "Backup data (click to download)"
167
  msgstr ""
168
 
169
- #: admin.php:3778
170
  msgid "View Log"
171
  msgstr ""
172
 
173
- #: addons/copycom.php:522
174
  msgid "API Key"
175
  msgstr ""
176
 
177
- #: addons/copycom.php:527
178
  msgid "API Secret"
179
  msgstr ""
180
 
181
- #: addons/copycom.php:537
182
  msgid "(case-sensitive)"
183
  msgstr ""
184
 
185
- #: addons/copycom.php:538
186
  msgid "N.B. Copy is case-sensitive."
187
  msgstr ""
188
 
189
- #: addons/reporting.php:55
190
  msgid "Your label for this backup (optional)"
191
  msgstr ""
192
 
193
- #: addons/bitcasa.php:370
194
- msgid "Bitcasa has removed its consumer API. You can no longer create new Bitcasa applications. Settings remain here only for the use of pre-existing users."
195
- msgstr ""
196
-
197
- #: methods/googledrive.php:851
198
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
199
  msgstr ""
200
 
201
- #: udaddons/updraftplus-addons.php:550
202
  msgid "You need to supply both an email address and a password"
203
  msgstr ""
204
 
205
- #: udaddons/updraftplus-addons.php:635
206
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
207
  msgstr ""
208
 
209
- #: udaddons/updraftplus-addons.php:635
210
- msgid "Go here to reset your password."
211
- msgstr ""
212
-
213
- #: udaddons/updraftplus-addons.php:637
214
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
215
  msgstr ""
216
 
217
- #: admin.php:2171
218
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
219
  msgstr ""
220
 
221
- #: admin.php:1500
222
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
223
  msgstr ""
224
 
225
- #: admin.php:1500
226
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
227
  msgstr ""
228
 
229
- #: addons/migrator.php:717
230
  msgid "already done"
231
  msgstr ""
232
 
233
- #: addons/migrator.php:688 addons/migrator.php:717 addons/migrator.php:864
234
  msgid "Search and replacing table:"
235
  msgstr ""
236
 
237
- #: addons/migrator.php:688
238
  msgid "skipped (not in list)"
239
  msgstr ""
240
 
241
- #: addons/migrator.php:128
242
  msgid "Rows per batch"
243
  msgstr ""
244
 
245
- #: addons/migrator.php:129
246
  msgid "These tables only"
247
  msgstr ""
248
 
249
- #: addons/migrator.php:129
250
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
251
  msgstr ""
252
 
253
- #: addons/bitcasa.php:371 addons/copycom.php:508
254
  msgid "To get your credentials, log in at the %s developer portal."
255
  msgstr ""
256
 
257
- #: udaddons/options.php:96
258
  msgid "You have not yet connected with your UpdraftPlus.Com account."
259
  msgstr ""
260
 
261
- #: udaddons/options.php:94 udaddons/options.php:96
262
  msgid "You need to connect to receive future updates to UpdraftPlus."
263
  msgstr ""
264
 
265
- #: admin.php:1475
266
  msgid "The site in this backup was running on a webserver with version %s of %s. "
267
  msgstr ""
268
 
269
- #: admin.php:1475
270
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
271
  msgstr ""
272
 
273
- #: admin.php:1475
274
  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."
275
  msgstr ""
276
 
277
- #: admin.php:1475
278
  msgid "Any support requests to do with %s should be raised with your web hosting company."
279
  msgstr ""
280
 
281
- #: class-updraftplus.php:2552 class-updraftplus.php:2581
282
  msgid "UpdraftPlus is on social media - check us out here:"
283
  msgstr ""
284
 
285
- #: class-updraftplus.php:2552 class-updraftplus.php:2581 admin.php:1857
286
  msgid "Twitter"
287
  msgstr ""
288
 
289
- #: class-updraftplus.php:2552 class-updraftplus.php:2581
290
  msgid "Facebook"
291
  msgstr ""
292
 
293
- #: class-updraftplus.php:2552 class-updraftplus.php:2581
294
  msgid "Google+"
295
  msgstr ""
296
 
297
- #: class-updraftplus.php:2552 class-updraftplus.php:2581
298
  msgid "LinkedIn"
299
  msgstr ""
300
 
301
- #: admin.php:3253
302
- 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)."
303
- msgstr "UpdraftPlus dividirà els arxius de còpia de seguretat quan superin aquesta mida. El valor per defecte és de %s megabytes. Deixa un marge si el teu servidor web té una limitació d'espai de disc (per exemple un límit de 2Gb / 2048Mb en alguns servidors amb sistemes de fitxers de 32 bits)."
304
-
305
- #: admin.php:4100
306
  msgid "Why am I seeing this?"
307
  msgstr "Per què estic veient això ?"
308
 
309
- #: admin.php:2241
310
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
311
  msgstr "Prem aquí per cercar nous conjunts de còpies de seguretat que s'han pujat al directori UpdraftPlus (dins l'espai del seu servidor web)."
312
 
313
- #: admin.php:2241
314
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
315
  msgstr "La ubicació d'aquest directori es troba en la configuració d'experts, a la pestanya Configuració."
316
 
317
- #: admin.php:1129
318
  msgid "Start backup"
319
  msgstr "Iniciar còpia de seguretat"
320
 
321
- #: restorer.php:895
322
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
323
  msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
324
 
325
- #: restorer.php:895
326
- msgid "You should enable %s to make your pretty permalinks (e.g. %s) work"
327
- msgstr "Habilitar %s perquè funcionin els teus bonics permalinks (per exemple, %s)"
328
-
329
- #: admin.php:2999
330
- msgid "If you would like to automatically schedule backups, choose schedules from the dropdowns above."
331
- msgstr "Si voles programar automàticament còpies de seguretat, tria els horaris dels menús desplegables de dalt."
332
-
333
- #: admin.php:2999
334
- msgid "If the two schedules are the same, then the two backups will take place together."
335
- msgstr "Si hi ha dues programacions idèntiques s'executaran totes dues."
336
-
337
- #: admin.php:2836
338
  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."
339
  msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
340
 
341
- #: admin.php:2393
342
  msgid "Unless you have a problem, you can completely ignore everything here."
343
  msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
344
 
345
- #: admin.php:1666
346
  msgid "You will find more information about this in the Settings section."
347
  msgstr "Més informació sobre això en la secció Configuració."
348
 
349
- #: admin.php:1701
350
  msgid "This file could not be uploaded"
351
  msgstr "No s'ha pogut carregar aquest fitxer"
352
 
353
- #: addons/importer.php:38
354
  msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
355
  msgstr ""
356
 
357
- #: addons/importer.php:38
358
  msgid "Supported backup plugins: %s"
359
  msgstr "Complements de còpia de seguretat suportats: %s."
360
 
361
- #: admin.php:2971
362
- msgid "Incremental file backup intervals"
363
- msgstr "Intervals de còpies de seguretat incrementals"
364
-
365
- #: admin.php:2974
366
  msgid "Tell me more about incremental backups"
367
  msgstr "Explica'm més coses sobre les còpies de seguretat incrementals."
368
 
369
- #: admin.php:2407
370
  msgid "Memory limit"
371
  msgstr "Límit de memòria"
372
 
373
- #: admin.php:1578
374
  msgid "restoration"
375
  msgstr "Restauració"
376
 
377
- #: restorer.php:1480
378
  msgid "Table to be implicitly dropped: %s"
379
  msgstr "Taula d'elements exclosos implicitament: %s."
380
 
381
- #: backup.php:522
382
  msgid "Full backup"
383
  msgstr "Còpia de seguretat completa"
384
 
385
- #: backup.php:522
386
  msgid "Incremental"
387
  msgstr "Incremental"
388
 
389
- #: addons/autobackup.php:409 addons/autobackup.php:411
390
  msgid "Backup succeeded"
391
  msgstr "Còpia de seguretat executada correctament"
392
 
393
- #: addons/autobackup.php:409 addons/autobackup.php:411
394
  msgid "(view log...)"
395
  msgstr "(veure registre ...)"
396
 
397
- #: addons/autobackup.php:409 addons/autobackup.php:411
398
  msgid "now proceeding with the updates..."
399
  msgstr "Actualitzant ..."
400
 
401
- #: updraftplus.php:66 updraftplus.php:67 admin.php:2930 admin.php:2931
402
- #: admin.php:2932
403
  msgid "Every %s hours"
404
  msgstr "Cada %s hores"
405
 
406
- #: addons/migrator.php:481 addons/migrator.php:483
407
  msgid "search and replace"
408
  msgstr "cercar i substituir"
409
 
410
- #: addons/migrator.php:99
411
  msgid "search term"
412
  msgstr "terme de cerca"
413
 
414
- #: addons/migrator.php:93 addons/migrator.php:118
415
  msgid "Search / replace database"
416
  msgstr "Cercar / substituir base de dades"
417
 
418
- #: addons/migrator.php:94 addons/migrator.php:126
419
  msgid "Search for"
420
  msgstr "Cercar"
421
 
422
- #: addons/migrator.php:95 addons/migrator.php:127
423
  msgid "Replace with"
424
  msgstr "Substituir per"
425
 
426
- #: addons/migrator.php:119
427
  msgid "This can easily destroy your site; so, use it with care!"
428
  msgstr "Això pot destruir el teu lloc web fàcilment; utilitza-ho amb compte!"
429
 
430
- #: addons/migrator.php:120
431
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
432
  msgstr "Una cerca/substitució no es pot desfer - Estàs segur que vols fer això?"
433
 
434
- #: addons/migrator.php:131
435
  msgid "Go"
436
  msgstr "Endavant"
437
 
438
- #: restorer.php:1531
439
  msgid "Too many database errors have occurred - aborting"
440
  msgstr "Hi han hagut masses errors amb la base de dades - abortant"
441
 
442
- #: backup.php:584
443
  msgid "read more at %s"
444
  msgstr "Llegir més a %s"
445
 
446
- #: backup.php:584
447
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
448
  msgstr ""
449
 
450
- #: methods/googledrive.php:857
451
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
452
  msgstr ""
453
 
454
- #: admin.php:3467
455
  msgid "You have not yet made any backups."
456
  msgstr ""
457
 
458
- #: admin.php:3043
459
  msgid "Database Options"
460
  msgstr ""
461
 
462
- #: admin.php:2463
463
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken."
464
  msgstr ""
465
 
466
- #: admin.php:2429
467
  msgid "%s (%s used)"
468
  msgstr ""
469
 
470
- #: admin.php:2432
471
  msgid "Plugins for debugging:"
472
  msgstr ""
473
 
474
- #: admin.php:2429
475
  msgid "Free disk space in account:"
476
  msgstr ""
477
 
478
- #: admin.php:2223
479
- msgid "Existing Backups: Downloading And Restoring"
480
- msgstr ""
481
-
482
- #: admin.php:2008
483
  msgid "Current Status"
484
  msgstr ""
485
 
486
- #: admin.php:1100 admin.php:1198 admin.php:2009
487
  msgid "Existing Backups"
488
  msgstr ""
489
 
490
- #: admin.php:2011
491
- msgid "Debugging / Expert Tools"
492
- msgstr ""
493
-
494
- #: admin.php:2047
495
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
496
  msgstr ""
497
 
498
- #: admin.php:472
499
  msgid "Welcome to UpdraftPlus!"
500
  msgstr ""
501
 
502
- #: admin.php:472
503
  msgid "To make a backup, just press the Backup Now button."
504
  msgstr ""
505
 
506
- #: admin.php:472
507
  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."
508
  msgstr ""
509
 
510
- #: addons/moredatabase.php:286
511
  msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
512
  msgstr ""
513
 
514
- #: addons/moredatabase.php:189
515
  msgid "Table prefix"
516
  msgstr ""
517
 
518
- #: addons/moredatabase.php:190
519
  msgid "Test connection..."
520
  msgstr ""
521
 
522
- #: addons/moredatabase.php:203
523
  msgid "Testing..."
524
  msgstr ""
525
 
526
- #: addons/moredatabase.php:130
527
  msgid "Backup non-WordPress tables contained in the same database as WordPress"
528
  msgstr ""
529
 
530
- #: addons/moredatabase.php:131
531
  msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
532
  msgstr ""
533
 
534
- #: addons/moredatabase.php:135
535
  msgid "Add an external database to backup..."
536
  msgstr ""
537
 
538
- #: addons/moredatabase.php:183
539
  msgid "Backup external database"
540
  msgstr ""
541
 
542
- #: addons/moredatabase.php:89
543
  msgid "%s table(s) found."
544
  msgstr ""
545
 
546
- #: addons/moredatabase.php:95
547
  msgid "%s total table(s) found; %s with the indicated prefix."
548
  msgstr ""
549
 
550
- #: addons/moredatabase.php:113
551
  msgid "Connection succeeded."
552
  msgstr ""
553
 
554
- #: addons/moredatabase.php:115
555
  msgid "Connection failed."
556
  msgstr ""
557
 
558
- #: addons/moredatabase.php:130
559
  msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
560
  msgstr ""
561
 
562
- #: addons/moredatabase.php:47
563
  msgid "user"
564
  msgstr ""
565
 
566
- #: addons/moredatabase.php:49
567
  msgid "host"
568
  msgstr ""
569
 
570
- #: addons/moredatabase.php:51
571
  msgid "database name"
572
  msgstr ""
573
 
574
- #: addons/moredatabase.php:62
575
  msgid "database connection attempt failed"
576
  msgstr ""
577
 
578
- #: addons/reporting.php:328
579
  msgid "External database (%s)"
580
  msgstr ""
581
 
582
- #: methods/googledrive.php:857
583
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
584
  msgstr ""
585
 
586
- #: methods/googledrive.php:374
587
  msgid "failed to access parent folder"
588
  msgstr ""
589
 
590
- #: methods/googledrive.php:331
 
591
  msgid "However, subsequent access attempts failed:"
592
  msgstr ""
593
 
594
- #: admin.php:3603
595
  msgid "External database"
596
  msgstr ""
597
 
598
- #: admin.php:3248
599
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
600
  msgstr ""
601
 
602
- #: admin.php:3101
603
  msgid "Back up more databases"
604
  msgstr ""
605
 
606
- #: admin.php:3052
607
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
608
  msgstr ""
609
 
610
- #: admin.php:3052
611
  msgid "It can also backup external databases."
612
  msgstr ""
613
 
614
- #: admin.php:3061
615
  msgid "You can manually decrypt an encrypted database here."
616
  msgstr ""
617
 
618
- #: admin.php:3079
619
  msgid "First, enter the decryption key"
620
  msgstr ""
621
 
622
- #: admin.php:3000
623
  msgid "use UpdraftPlus Premium"
624
  msgstr ""
625
 
626
- #: admin.php:1384
627
  msgid "Decryption failed. The database file is encrypted."
628
  msgstr ""
629
 
630
- #: admin.php:874
631
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
632
  msgstr ""
633
 
634
- #: restorer.php:1290 restorer.php:1499 restorer.php:1528
635
  msgid "An error occurred on the first %s command - aborting run"
636
  msgstr ""
637
 
638
- #: backup.php:1015
639
  msgid "database connection attempt failed."
640
  msgstr ""
641
 
642
- #: backup.php:1015 addons/moredatabase.php:70
643
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
644
  msgstr ""
645
 
@@ -647,38 +2385,36 @@ msgstr ""
647
  msgid "In %s, path names are case sensitive."
648
  msgstr ""
649
 
650
- #: addons/migrator.php:626
651
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
652
  msgstr ""
653
 
654
- #: addons/bitcasa.php:252 addons/bitcasa.php:346 addons/copycom.php:256
655
  msgid "You have not yet configured and saved your %s credentials"
656
  msgstr ""
657
 
658
- #: addons/bitcasa.php:372 addons/copycom.php:509
659
  msgid "After logging in, create a sandbox app. You can leave all of the questions for creating an app blank (except for the app's name)."
660
  msgstr ""
661
 
662
- #: addons/bitcasa.php:397 addons/google-enhanced.php:73 addons/copycom.php:538
663
  msgid "Enter the path of the %s folder you wish to use here."
664
  msgstr ""
665
 
666
- #: addons/bitcasa.php:397 addons/google-enhanced.php:73 addons/copycom.php:538
667
  msgid "If the folder does not already exist, then it will be created."
668
  msgstr ""
669
 
670
- #: addons/bitcasa.php:397 addons/google-enhanced.php:73 addons/copycom.php:538
 
671
  msgid "e.g. %s"
672
  msgstr ""
673
 
674
- #: addons/bitcasa.php:397 addons/google-enhanced.php:73 addons/copycom.php:538
 
675
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
676
  msgstr ""
677
 
678
- #: addons/bitcasa.php:402 addons/bitcasa.php:405
679
- msgid "Bitcasa"
680
- msgstr ""
681
-
682
  #: methods/openstack2.php:107
683
  msgid "Follow this link for more information"
684
  msgstr ""
@@ -691,23 +2427,19 @@ msgstr ""
691
  msgid "Leave this blank, and a default will be chosen."
692
  msgstr ""
693
 
694
- #: methods/openstack2.php:133
695
  msgid "Container"
696
  msgstr ""
697
 
698
- #: methods/openstack2.php:157
699
- msgid "tenant"
700
- msgstr ""
701
-
702
- #: methods/addon-base.php:101
703
  msgid "failed to list files"
704
  msgstr ""
705
 
706
- #: methods/addon-base.php:189
707
  msgid "Failed to download"
708
  msgstr ""
709
 
710
- #: methods/addon-base.php:175 methods/addon-base.php:195
711
  msgid "Failed to download %s"
712
  msgstr ""
713
 
@@ -715,36 +2447,32 @@ msgstr ""
715
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
716
  msgstr ""
717
 
718
- #: methods/openstack2.php:99 methods/openstack2.php:162
719
  msgid "authentication URI"
720
  msgstr ""
721
 
722
- #: methods/openstack2.php:102
723
- msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
724
- msgstr ""
725
-
726
  #: methods/addon-base.php:75 methods/addon-base.php:80
727
  msgid "Failed to upload %s"
728
  msgstr ""
729
 
730
- #: methods/dropbox.php:482 methods/dropbox.php:484 addons/bitcasa.php:301
731
- #: addons/bitcasa.php:303 addons/copycom.php:381 addons/copycom.php:383
732
  msgid "Success:"
733
  msgstr ""
734
 
735
- #: methods/dropbox.php:416 methods/dropbox.php:417
736
  msgid "Dropbox"
737
  msgstr ""
738
 
739
- #: methods/dropbox.php:417 addons/bitcasa.php:403 addons/copycom.php:544
740
  msgid "(You appear to be already authenticated)."
741
  msgstr ""
742
 
743
- #: methods/dropbox.php:417 addons/bitcasa.php:405 addons/copycom.php:546
744
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
745
  msgstr ""
746
 
747
- #: methods/dropbox.php:416 addons/bitcasa.php:402 addons/copycom.php:543
748
  msgid "Authenticate with %s"
749
  msgstr ""
750
 
@@ -752,57 +2480,57 @@ msgstr ""
752
  msgid "Error downloading remote file: Failed to download"
753
  msgstr ""
754
 
755
- #: methods/openstack-base.php:329 addons/bitcasa.php:120 addons/copycom.php:156
756
- #: addons/copycom.php:180
757
  msgid "The %s object was not found"
758
  msgstr ""
759
 
760
- #: methods/openstack-base.php:411
761
  msgid "%s error - we accessed the container, but failed to create a file within it"
762
  msgstr ""
763
 
764
- #: methods/openstack-base.php:412 methods/openstack-base.php:417
765
  msgid "Region: %s"
766
  msgstr ""
767
 
768
- #: methods/openstack-base.php:44 methods/openstack-base.php:226
769
- #: methods/openstack-base.php:321
770
  msgid "Could not access %s container"
771
  msgstr ""
772
 
773
- #: methods/googledrive.php:906 methods/dropbox.php:423 addons/bitcasa.php:404
774
- #: addons/copycom.php:545
775
  msgid "Account holder's name: %s."
776
  msgstr ""
777
 
778
  #: methods/openstack-base.php:36 methods/openstack-base.php:100
779
- #: methods/openstack-base.php:107 methods/openstack-base.php:218
780
- #: methods/openstack-base.php:309
781
  msgid "%s error - failed to access the container"
782
  msgstr ""
783
 
784
- #: methods/googledrive.php:886
785
  msgid "<strong>This is NOT a folder name</strong>."
786
  msgstr ""
787
 
788
- #: methods/googledrive.php:886
789
  msgid "It is an ID number internal to Google Drive"
790
  msgstr ""
791
 
792
- #: methods/googledrive.php:895
793
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
794
  msgstr ""
795
 
796
- #: methods/googledrive.php:882 methods/googledrive.php:892
797
- #: addons/bitcasa.php:396 addons/google-enhanced.php:72 addons/copycom.php:537
798
  msgid "Folder"
799
  msgstr ""
800
 
801
- #: methods/googledrive.php:351
802
  msgid "Name: %s."
803
  msgstr ""
804
 
805
- #: methods/googledrive.php:814
 
806
  msgid "%s download: failed: file not found"
807
  msgstr ""
808
 
@@ -818,55 +2546,55 @@ msgstr ""
818
  msgid "Your %s version: %s."
819
  msgstr ""
820
 
821
- #: methods/googledrive.php:150
822
  msgid "Google Drive list files: failed to access parent folder"
823
  msgstr ""
824
 
825
- #: admin.php:4376
826
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
827
  msgstr ""
828
 
829
- #: admin.php:2434
830
  msgid "Fetch"
831
  msgstr ""
832
 
833
- #: admin.php:2436
834
  msgid "Call"
835
  msgstr ""
836
 
837
- #: admin.php:2263 admin.php:3069
838
  msgid "This feature requires %s version %s or later"
839
  msgstr ""
840
 
841
- #: restorer.php:1639
842
  msgid "Elegant themes theme builder plugin data detected: resetting temporary folder"
843
  msgstr ""
844
 
845
- #: restorer.php:73
846
  msgid "Failed to unpack the archive"
847
  msgstr ""
848
 
849
- #: restorer.php:225
850
  msgid "%s files have been extracted"
851
  msgstr ""
852
 
853
- #: class-updraftplus.php:739
854
  msgid "Error - failed to download the file"
855
  msgstr ""
856
 
857
- #: admin.php:2241
858
  msgid "Rescan local folder for new backup sets"
859
  msgstr ""
860
 
861
- #: udaddons/updraftplus-addons.php:158
862
  msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
863
  msgstr ""
864
 
865
- #: udaddons/updraftplus-addons.php:158
866
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
867
  msgstr ""
868
 
869
- #: udaddons/updraftplus-addons.php:158
870
  msgid "It has been tested up to version %s."
871
  msgstr ""
872
 
@@ -874,436 +2602,406 @@ msgstr ""
874
  msgid "password/key"
875
  msgstr ""
876
 
877
- #: addons/sftp.php:48
878
  msgid "SCP/SFTP password/key"
879
  msgstr ""
880
 
881
- #: addons/sftp.php:276
882
  msgid "The key provided was not in a valid format, or was corrupt."
883
  msgstr ""
884
 
885
- #: addons/sftp.php:339
886
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
887
  msgstr ""
888
 
889
- #: addons/sftp.php:344
 
890
  msgid "Key"
891
  msgstr ""
892
 
893
- #: addons/sftp.php:347
894
- msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
895
- msgstr ""
896
-
897
- #: admin.php:3654 admin.php:3933 addons/importer.php:148
898
  msgid "Backup created by: %s."
899
  msgstr ""
900
 
901
- #: admin.php:3660
902
  msgid "Files and database WordPress backup (created by %s)"
903
  msgstr ""
904
 
905
- #: admin.php:3660
906
  msgid "Files backup (created by %s)"
907
  msgstr ""
908
 
909
- #: admin.php:3595 admin.php:3656
910
  msgid "unknown source"
911
  msgstr ""
912
 
913
- #: admin.php:3601
914
  msgid "Database (created by %s)"
915
  msgstr ""
916
 
917
- #: admin.php:2242
918
  msgid "Rescan remote storage"
919
  msgstr ""
920
 
921
- #: admin.php:2240
922
  msgid "Upload backup files"
923
  msgstr ""
924
 
925
- #: admin.php:1745
926
  msgid "This backup was created by %s, and can be imported."
927
  msgstr ""
928
 
929
- #: admin.php:501
930
  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."
931
  msgstr ""
932
 
933
- #: admin.php:501
934
  msgid "Read this page for a guide to possible causes and how to fix it."
935
  msgstr ""
936
 
937
- #: admin.php:156 admin.php:157 admin.php:3940
938
  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))."
939
  msgstr ""
940
 
941
- #: admin.php:156
942
  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."
943
  msgstr ""
944
 
945
- #: admin.php:157 admin.php:3940
946
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
947
  msgstr ""
948
 
949
- #: restorer.php:1075 admin.php:887 admin.php:3657
950
  msgid "Backup created by unknown source (%s) - cannot be restored."
951
  msgstr ""
952
 
953
- #: restorer.php:709 restorer.php:811
954
  msgid "The WordPress content folder (wp-content) was not found in this zip file."
955
  msgstr ""
956
 
957
- #: restorer.php:573
958
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
959
  msgstr ""
960
 
961
- #: methods/dropbox.php:249
962
  msgid "%s returned an unexpected HTTP response: %s"
963
  msgstr ""
964
 
965
- #: addons/sftp.php:879
966
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
967
  msgstr ""
968
 
969
- #: methods/openstack-base.php:95 methods/cloudfiles.php:234 methods/s3.php:41
970
- #: methods/dropbox.php:230
971
  msgid "No settings were found"
972
  msgstr ""
973
 
974
- #: admin.php:3753
975
- msgid "(backup set imported from remote storage)"
976
- msgstr ""
977
-
978
- #: admin.php:4055
979
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
980
  msgstr ""
981
 
982
- #: admin.php:2299
983
- msgid "Are you sure that you wish to remove this backup set from UpdraftPlus?"
984
- msgstr ""
985
-
986
- #: admin.php:2242
987
- msgid "Press here to look inside any remote storage methods for any existing backup sets."
988
- msgstr ""
989
-
990
- #: admin.php:863
991
- msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was found in remote storage."
992
- msgstr ""
993
-
994
- #: admin.php:863
995
- msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website that was using the same storage location)."
996
- msgstr ""
997
-
998
- #: admin.php:128
999
  msgid "Rescanning remote and local storage for backup sets..."
1000
  msgstr ""
1001
 
1002
- #: addons/s3-enhanced.php:26
 
1003
  msgid "(Read more)"
1004
  msgstr ""
1005
 
1006
- #: addons/s3-enhanced.php:27
1007
  msgid "Check this box to use Amazon's reduced redundancy storage and tariff"
1008
  msgstr ""
1009
 
1010
- #: addons/s3-enhanced.php:26
1011
  msgid "Reduced redundancy storage"
1012
  msgstr ""
1013
 
1014
- #: addons/migrator.php:454
1015
  msgid "Adjusting multisite paths"
1016
  msgstr ""
1017
 
1018
- #: addons/reporting.php:419
1019
  msgid "Log all messages to syslog (only server admins are likely to want this)"
1020
  msgstr ""
1021
 
1022
- #: addons/morefiles.php:214
1023
  msgid "Add another..."
1024
  msgstr ""
1025
 
1026
- #: addons/morefiles.php:315
1027
  msgid "No backup of directory: there was nothing found to back up"
1028
  msgstr ""
1029
 
1030
- #: addons/morefiles.php:209 addons/morefiles.php:220
1031
- #: addons/moredatabase.php:182
1032
  msgid "Remove"
1033
  msgstr ""
1034
 
1035
- #: methods/s3.php:537
1036
  msgid "Other %s FAQs."
1037
  msgstr ""
1038
 
1039
- #: admin.php:3248
1040
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
1041
  msgstr ""
1042
 
1043
- #: admin.php:3024 addons/morefiles.php:256
1044
  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."
1045
  msgstr ""
1046
 
1047
- #: restorer.php:1628
1048
  msgid "Custom content type manager plugin data detected: clearing option cache"
1049
  msgstr ""
1050
 
1051
- #: methods/ftp.php:296
1052
  msgid "encrypted FTP (explicit encryption)"
1053
  msgstr ""
1054
 
1055
- #: admin.php:1578 methods/ftp.php:299
1056
  msgid "Your web server's PHP installation has these functions disabled: %s."
1057
  msgstr ""
1058
 
1059
- #: admin.php:1578 methods/ftp.php:299
1060
  msgid "Your hosting company must enable these functions before %s can work."
1061
  msgstr ""
1062
 
1063
- #: admin.php:2176
1064
- msgid "Don't send this backup to remote storage"
1065
- msgstr ""
1066
-
1067
- #: methods/ftp.php:294
1068
  msgid "regular non-encrypted FTP"
1069
  msgstr ""
1070
 
1071
- #: methods/ftp.php:295
1072
  msgid "encrypted FTP (implicit encryption)"
1073
  msgstr ""
1074
 
1075
- #: restorer.php:1202
1076
  msgid "Backup created by:"
1077
  msgstr ""
1078
 
1079
- #: udaddons/options.php:460
1080
  msgid "Available to claim on this site"
1081
  msgstr ""
1082
 
1083
- #: udaddons/updraftplus-addons.php:179
1084
  msgid "To maintain your access to support, please renew."
1085
  msgstr ""
1086
 
1087
- #: udaddons/updraftplus-addons.php:167
1088
  msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
1089
  msgstr ""
1090
 
1091
- #: udaddons/updraftplus-addons.php:171
1092
  msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
1093
  msgstr ""
1094
 
1095
- #: udaddons/updraftplus-addons.php:171 udaddons/updraftplus-addons.php:173
1096
  msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
1097
  msgstr ""
1098
 
1099
- #: udaddons/updraftplus-addons.php:173
1100
  msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
1101
  msgstr ""
1102
 
1103
- #: udaddons/updraftplus-addons.php:177
1104
  msgid "Your paid access to UpdraftPlus support has expired."
1105
  msgstr ""
1106
 
1107
- #: udaddons/updraftplus-addons.php:177
1108
  msgid "To regain your access, please renew."
1109
  msgstr ""
1110
 
1111
- #: udaddons/updraftplus-addons.php:179
1112
  msgid "Your paid access to UpdraftPlus support will soon expire."
1113
  msgstr ""
1114
 
1115
- #: udaddons/updraftplus-addons.php:140
1116
  msgid "Dismiss from main dashboard (for %s weeks)"
1117
  msgstr ""
1118
 
1119
- #: udaddons/updraftplus-addons.php:165
1120
  msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
1121
  msgstr ""
1122
 
1123
- #: udaddons/updraftplus-addons.php:165 udaddons/updraftplus-addons.php:167
1124
  msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
1125
  msgstr ""
1126
 
1127
- #: admin.php:1595
1128
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
1129
  msgstr ""
1130
 
1131
- #: admin.php:1602 admin.php:1624
1132
  msgid "The attempt to undo the double-compression failed."
1133
  msgstr ""
1134
 
1135
- #: admin.php:1626
1136
  msgid "The attempt to undo the double-compression succeeded."
1137
  msgstr ""
1138
 
1139
- #: admin.php:1112
1140
  msgid "Constants"
1141
  msgstr ""
1142
 
1143
- #: backup.php:1201
1144
  msgid "Failed to open database file for reading:"
1145
  msgstr ""
1146
 
1147
- #: backup.php:1054
1148
  msgid "please wait for the rescheduled attempt"
1149
  msgstr ""
1150
 
1151
- #: backup.php:1056
1152
  msgid "No database tables found"
1153
  msgstr ""
1154
 
1155
- #: addons/reporting.php:167
1156
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
1157
  msgstr ""
1158
 
1159
- #: restorer.php:1541
1160
  msgid "Database queries processed: %d in %.2f seconds"
1161
  msgstr ""
1162
 
1163
- #: addons/migrator.php:911
1164
  msgid "Searching and replacing reached row: %d"
1165
  msgstr ""
1166
 
1167
- #: methods/dropbox.php:154 addons/bitcasa.php:78 addons/copycom.php:87
1168
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
1169
  msgstr ""
1170
 
1171
- #: addons/migrator.php:378
1172
  msgid "Skipping this table: data in this table (%s) should not be search/replaced"
1173
  msgstr ""
1174
 
1175
- #: udaddons/updraftplus-addons.php:310 udaddons/updraftplus-addons.php:313
1176
  msgid "Errors occurred:"
1177
  msgstr ""
1178
 
1179
- #: admin.php:4121
1180
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
1181
  msgstr ""
1182
 
1183
- #: admin.php:3295
1184
  msgid "See this FAQ also."
1185
  msgstr ""
1186
 
1187
- #: admin.php:3183
1188
  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."
1189
  msgstr ""
1190
 
1191
- #: admin.php:2319
1192
  msgid "Retrieving (if necessary) and preparing backup files..."
1193
  msgstr ""
1194
 
1195
- #: admin.php:859
1196
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
1197
  msgstr ""
1198
 
1199
- #: restorer.php:555
1200
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
1201
  msgstr ""
1202
 
1203
- #: class-updraftplus.php:2561
1204
- msgid "Need high-quality WordPress hosting from WordPress specialists? (Including automatic backups and 1-click installer). Get it from the creators of UpdraftPlus."
1205
- msgstr ""
1206
-
1207
- #: class-updraftplus.php:419 admin.php:476
1208
  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)"
1209
  msgstr ""
1210
 
1211
- #: addons/migrator.php:386
1212
  msgid "Replacing in blogs/site table: from: %s to: %s"
1213
  msgstr ""
1214
 
1215
- #: addons/migrator.php:74
1216
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
1217
  msgstr ""
1218
 
1219
- #: addons/migrator.php:87
1220
  msgid "%s: Skipping cache file (does not already exist)"
1221
  msgstr ""
1222
 
1223
- #: includes/ftp.class.php:41 includes/ftp.class.php:44 addons/sftp.php:634
1224
- #: addons/sftp.php:637
1225
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
1226
  msgstr ""
1227
 
1228
- #: admin.php:4386
1229
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
1230
  msgstr ""
1231
 
1232
- #: admin.php:1898
1233
  msgid "Restore failed..."
1234
  msgstr ""
1235
 
1236
- #: admin.php:1221 addons/moredatabase.php:102
1237
  msgid "Messages:"
1238
  msgstr ""
1239
 
1240
- #: restorer.php:1462
1241
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
1242
  msgstr ""
1243
 
1244
- #: restorer.php:338
1245
  msgid "The directory does not exist"
1246
  msgstr ""
1247
 
1248
- #: addons/cloudfiles-enhanced.php:245
1249
  msgid "New User's Username"
1250
  msgstr ""
1251
 
1252
- #: addons/cloudfiles-enhanced.php:246
1253
  msgid "New User's Email Address"
1254
  msgstr ""
1255
 
1256
- #: addons/cloudfiles-enhanced.php:223
1257
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
1258
  msgstr ""
1259
 
1260
- #: addons/cloudfiles-enhanced.php:229
1261
  msgid "US or UK Rackspace Account"
1262
  msgstr ""
1263
 
1264
- #: addons/cloudfiles-enhanced.php:243
1265
  msgid "Admin Username"
1266
  msgstr ""
1267
 
1268
- #: addons/cloudfiles-enhanced.php:244
1269
  msgid "Admin API Key"
1270
  msgstr ""
1271
 
1272
- #: addons/cloudfiles-enhanced.php:52
1273
  msgid "You need to enter a new username"
1274
  msgstr ""
1275
 
1276
- #: addons/cloudfiles-enhanced.php:56
1277
  msgid "You need to enter a container"
1278
  msgstr ""
1279
 
1280
- #: addons/cloudfiles-enhanced.php:61
1281
  msgid "You need to enter a valid new email address"
1282
  msgstr ""
1283
 
1284
- #: addons/cloudfiles-enhanced.php:150
1285
  msgid "Conflict: that user or email address already exists"
1286
  msgstr ""
1287
 
1288
- #: addons/cloudfiles-enhanced.php:152 addons/cloudfiles-enhanced.php:156
1289
- #: addons/cloudfiles-enhanced.php:161 addons/cloudfiles-enhanced.php:182
1290
- #: addons/cloudfiles-enhanced.php:190 addons/cloudfiles-enhanced.php:195
1291
  msgid "Cloud Files operation failed (%s)"
1292
  msgstr ""
1293
 
1294
- #: addons/cloudfiles-enhanced.php:207
1295
  msgid "Username: %s"
1296
  msgstr ""
1297
 
1298
- #: addons/cloudfiles-enhanced.php:207
1299
  msgid "Password: %s"
1300
  msgstr ""
1301
 
1302
- #: addons/cloudfiles-enhanced.php:207
1303
  msgid "API Key: %s"
1304
  msgstr ""
1305
 
1306
- #: addons/cloudfiles-enhanced.php:220
1307
  msgid "Create new API user and container"
1308
  msgstr ""
1309
 
@@ -1319,19 +3017,19 @@ msgstr ""
1319
  msgid "Create a new API user with access to only this container (rather than your whole account)"
1320
  msgstr ""
1321
 
1322
- #: addons/cloudfiles-enhanced.php:44
1323
  msgid "You need to enter an admin username"
1324
  msgstr ""
1325
 
1326
- #: addons/cloudfiles-enhanced.php:48
1327
  msgid "You need to enter an admin API key"
1328
  msgstr ""
1329
 
1330
- #: methods/cloudfiles-new.php:103 addons/cloudfiles-enhanced.php:255
1331
  msgid "Northern Virginia (IAD)"
1332
  msgstr ""
1333
 
1334
- #: methods/cloudfiles-new.php:104 addons/cloudfiles-enhanced.php:256
1335
  msgid "Hong Kong (HKG)"
1336
  msgstr ""
1337
 
@@ -1351,7 +3049,7 @@ msgstr ""
1351
  msgid "Cloud Files API Key"
1352
  msgstr ""
1353
 
1354
- #: methods/cloudfiles-new.php:132 addons/cloudfiles-enhanced.php:267
1355
  msgid "Cloud Files Container"
1356
  msgstr ""
1357
 
@@ -1363,612 +3061,573 @@ msgstr ""
1363
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
1364
  msgstr ""
1365
 
1366
- #: methods/cloudfiles-new.php:95 addons/cloudfiles-enhanced.php:248
1367
  msgid "Cloud Files Storage Region"
1368
  msgstr ""
1369
 
1370
- #: methods/cloudfiles-new.php:100 addons/cloudfiles-enhanced.php:252
1371
  msgid "Dallas (DFW) (default)"
1372
  msgstr ""
1373
 
1374
- #: methods/cloudfiles-new.php:101 addons/cloudfiles-enhanced.php:253
1375
  msgid "Sydney (SYD)"
1376
  msgstr ""
1377
 
1378
- #: methods/cloudfiles-new.php:102 addons/cloudfiles-enhanced.php:254
1379
  msgid "Chicago (ORD)"
1380
  msgstr ""
1381
 
1382
- #: methods/cloudfiles-new.php:39 methods/openstack-base.php:371
1383
- #: methods/openstack-base.php:373 methods/openstack-base.php:393
1384
- #: methods/openstack2.php:25 addons/cloudfiles-enhanced.php:147
 
1385
  msgid "Authorisation failed (check your credentials)"
1386
  msgstr ""
1387
 
1388
- #: methods/cloudfiles-new.php:85 addons/cloudfiles-enhanced.php:230
1389
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
1390
  msgstr ""
1391
 
1392
- #: udaddons/options.php:257
1393
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
1394
  msgstr ""
1395
 
1396
- #: admin.php:170
1397
  msgid "Create"
1398
  msgstr ""
1399
 
1400
- #: restorer.php:1524
1401
- msgid "An error (%s) occurred:"
1402
- msgstr ""
1403
-
1404
- #: admin.php:134
1405
  msgid "The new user's RackSpace console password is (this will not be shown again):"
1406
  msgstr ""
1407
 
1408
- #: admin.php:135
1409
  msgid "Trying..."
1410
  msgstr ""
1411
 
1412
- #: backup.php:1158
1413
- msgid "The database backup appears to have failed - the options table was not found"
1414
- msgstr ""
1415
-
1416
- #: addons/reporting.php:340
1417
  msgid "(when decrypted)"
1418
  msgstr ""
1419
 
1420
- #: admin.php:144 admin.php:4343
1421
  msgid "Error data:"
1422
  msgstr ""
1423
 
1424
- #: admin.php:4080
1425
  msgid "Backup does not exist in the backup history"
1426
  msgstr ""
1427
 
1428
- #: admin.php:2496
1429
  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."
1430
  msgstr ""
1431
 
1432
- #: restorer.php:1264
1433
  msgid "Split line to avoid exceeding maximum packet size"
1434
  msgstr ""
1435
 
1436
- #: restorer.php:1183
1437
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
1438
  msgstr ""
1439
 
1440
- #: restorer.php:1198
1441
  msgid "<strong>Backup of:</strong> %s"
1442
  msgstr ""
1443
 
1444
- #: restorer.php:1034
1445
  msgid "New table prefix: %s"
1446
  msgstr ""
1447
 
1448
- #: restorer.php:741 restorer.php:755
1449
  msgid "%s: This directory already exists, and will be replaced"
1450
  msgstr ""
1451
 
1452
- #: restorer.php:771
1453
  msgid "File permissions do not allow the old data to be moved and retained; instead, it will be deleted."
1454
  msgstr ""
1455
 
1456
- #: restorer.php:70
1457
  msgid "Could not move the files into place. Check your file permissions."
1458
  msgstr ""
1459
 
1460
- #: restorer.php:63
1461
  msgid "Moving old data out of the way..."
1462
  msgstr ""
1463
 
1464
- #: restorer.php:67
1465
  msgid "Could not move old files out of the way."
1466
  msgstr ""
1467
 
1468
- #: restorer.php:69
1469
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
1470
  msgstr ""
1471
 
1472
- #: addons/reporting.php:397
1473
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
1474
  msgstr ""
1475
 
1476
- #: addons/reporting.php:410
1477
  msgid "Add another address..."
1478
  msgstr ""
1479
 
1480
- #: addons/reporting.php:255
1481
  msgid " (with errors (%s))"
1482
  msgstr ""
1483
 
1484
- #: addons/reporting.php:257
1485
  msgid " (with warnings (%s))"
1486
  msgstr ""
1487
 
1488
- #: addons/reporting.php:287
1489
  msgid "Use the \"Reporting\" section to configure the email addresses to be used."
1490
  msgstr ""
1491
 
1492
- #: addons/reporting.php:313
1493
  msgid "files: %s"
1494
  msgstr ""
1495
 
1496
- #: addons/reporting.php:331
1497
- msgid "Size: %s Mb"
1498
- msgstr ""
1499
-
1500
- #: addons/reporting.php:336 addons/reporting.php:341
1501
  msgid "%s checksum: %s"
1502
  msgstr ""
1503
 
1504
- #: addons/reporting.php:370
1505
  msgid "Email reports"
1506
  msgstr ""
1507
 
1508
- #: addons/reporting.php:147
1509
  msgid "Errors"
1510
  msgstr ""
1511
 
1512
- #: addons/reporting.php:162
1513
  msgid "Warnings"
1514
  msgstr ""
1515
 
1516
- #: addons/reporting.php:171
1517
  msgid "Time taken:"
1518
  msgstr ""
1519
 
1520
- #: addons/reporting.php:172
1521
  msgid "Uploaded to:"
1522
  msgstr ""
1523
 
1524
- #: addons/reporting.php:203
1525
  msgid "Debugging information"
1526
  msgstr ""
1527
 
1528
- #: addons/reporting.php:105
1529
  msgid "%d errors, %d warnings"
1530
  msgstr ""
1531
 
1532
- #: addons/reporting.php:119
1533
  msgid "%d hours, %d minutes, %d seconds"
1534
  msgstr ""
1535
 
1536
- #: addons/reporting.php:124
1537
  msgid "Backup Report"
1538
  msgstr ""
1539
 
1540
- #: addons/reporting.php:132
1541
  msgid "Backup began:"
1542
  msgstr ""
1543
 
1544
- #: addons/morefiles.php:55 addons/morefiles.php:56 addons/reporting.php:133
1545
  msgid "Contains:"
1546
  msgstr ""
1547
 
1548
- #: addons/reporting.php:144
1549
  msgid "Errors / warnings:"
1550
  msgstr ""
1551
 
1552
- #: methods/dropbox.php:465 addons/bitcasa.php:265 addons/bitcasa.php:290
1553
- #: addons/copycom.php:371
1554
  msgid "%s authentication"
1555
  msgstr ""
1556
 
1557
- #: class-updraftplus.php:222 methods/dropbox.php:127 methods/dropbox.php:465
1558
- #: methods/dropbox.php:479 methods/dropbox.php:574 addons/bitcasa.php:265
1559
- #: addons/bitcasa.php:290 addons/copycom.php:371
1560
  msgid "%s error: %s"
1561
  msgstr ""
1562
 
1563
- #: methods/dropbox.php:387
1564
  msgid "%s logo"
1565
  msgstr ""
1566
 
1567
- #: methods/email.php:60
1568
  msgid "Your site's admin email address (%s) will be used."
1569
  msgstr ""
1570
 
1571
- #: methods/email.php:60
1572
  msgid "For more options, use the \"%s\" add-on."
1573
  msgstr ""
1574
 
1575
- #: methods/dropbox.php:72
1576
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
1577
  msgstr ""
1578
 
1579
- #: methods/dropbox.php:172
1580
  msgid "%s did not return the expected response - check your log file for more details"
1581
  msgstr ""
1582
 
1583
- #: udaddons/options.php:236
 
1584
  msgid "Connect"
1585
  msgstr ""
1586
 
1587
- #: admin.php:3133
1588
- msgid "Check this box to have a basic report sent to your site's admin address (%s)."
1589
- msgstr ""
1590
-
1591
- #: admin.php:3135
1592
  msgid "For more reporting features, use the Reporting add-on."
1593
  msgstr ""
1594
 
1595
- #: admin.php:1448
1596
  msgid "(version: %s)"
1597
  msgstr ""
1598
 
1599
- #: admin.php:126 methods/email.php:61 addons/reporting.php:443
1600
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
1601
  msgstr ""
1602
 
1603
- #: admin.php:125 addons/reporting.php:443
1604
  msgid "When the Email storage method is enabled, also send the entire backup"
1605
  msgstr ""
1606
 
1607
- #: backup.php:533
1608
  msgid "Unknown/unexpected error - please raise a support request"
1609
  msgstr ""
1610
 
1611
- #: backup.php:569 addons/reporting.php:200
1612
  msgid "The log file has been attached to this email."
1613
  msgstr ""
1614
 
1615
- #: backup.php:575
1616
  msgid "Backed up: %s"
1617
  msgstr ""
1618
 
1619
- #: backup.php:607
1620
  msgid "Backup contains:"
1621
  msgstr ""
1622
 
1623
- #: backup.php:608 addons/reporting.php:131
1624
  msgid "Latest status:"
1625
  msgstr ""
1626
 
1627
- #: backup.php:525
1628
  msgid "Files and database"
1629
  msgstr ""
1630
 
1631
- #: backup.php:527
1632
  msgid "Files (database backup has not completed)"
1633
  msgstr ""
1634
 
1635
- #: backup.php:527
1636
  msgid "Files only (database was not part of this particular schedule)"
1637
  msgstr ""
1638
 
1639
- #: backup.php:530
1640
  msgid "Database (files backup has not completed)"
1641
  msgstr ""
1642
 
1643
- #: backup.php:530
1644
  msgid "Database only (files were not part of this particular schedule)"
1645
  msgstr ""
1646
 
1647
- #: options.php:144
1648
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
1649
  msgstr ""
1650
 
1651
- #: options.php:144
1652
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
1653
  msgstr ""
1654
 
1655
- #: options.php:144
1656
  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>."
1657
  msgstr ""
1658
 
1659
- #: options.php:144
1660
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
1661
  msgstr ""
1662
 
1663
- #: options.php:144
1664
  msgid "UpdraftPlus warning:"
1665
  msgstr ""
1666
 
1667
- #: udaddons/options.php:466
1668
  msgid "(or connect using the form on this page if you have already purchased it)"
1669
  msgstr ""
1670
 
1671
- #: udaddons/options.php:435
1672
  msgid "You've got it"
1673
  msgstr ""
1674
 
1675
- #: udaddons/options.php:437
1676
  msgid "Your version: %s"
1677
  msgstr ""
1678
 
1679
- #: udaddons/options.php:439 udaddons/options.php:441
1680
  msgid "latest"
1681
  msgstr ""
1682
 
1683
- #: udaddons/options.php:449
1684
  msgid "please follow this link to update the plugin in order to get it"
1685
  msgstr ""
1686
 
1687
- #: udaddons/options.php:452
1688
  msgid "please follow this link to update the plugin in order to activate it"
1689
  msgstr ""
1690
 
1691
- #: udaddons/updraftplus-addons.php:206 udaddons/options.php:363
1692
  msgid "UpdraftPlus Addons"
1693
  msgstr ""
1694
 
1695
- #: udaddons/options.php:374
1696
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
1697
  msgstr ""
1698
 
1699
- #: udaddons/options.php:416
1700
  msgid "UpdraftPlus Support"
1701
  msgstr ""
1702
 
1703
- #: udaddons/updraftplus-addons.php:575
1704
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
1705
  msgstr ""
1706
 
1707
- #: udaddons/updraftplus-addons.php:608
1708
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
1709
  msgstr ""
1710
 
1711
- #: udaddons/updraftplus-addons.php:640
1712
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
1713
  msgstr ""
1714
 
1715
- #: udaddons/updraftplus-addons.php:643
 
1716
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
1717
  msgstr ""
1718
 
1719
- #: udaddons/options.php:88
1720
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
1721
  msgstr ""
1722
 
1723
- #: udaddons/updraftplus-addons.php:573
1724
  msgid "We failed to successfully connect to UpdraftPlus.Com"
1725
  msgstr ""
1726
 
1727
- #: admin.php:3116 methods/email.php:60
1728
  msgid "Reporting"
1729
  msgstr ""
1730
 
1731
- #: admin.php:1084
1732
  msgid "Options (raw)"
1733
  msgstr ""
1734
 
1735
- #: admin.php:124 addons/reporting.php:441
1736
  msgid "Send a report only when there are warnings/errors"
1737
  msgstr ""
1738
 
1739
- #: restorer.php:1213
1740
  msgid "Content URL:"
1741
  msgstr ""
1742
 
1743
- #: restorer.php:67
1744
  msgid "You should check the file permissions in your WordPress installation"
1745
  msgstr ""
1746
 
1747
- #: admin.php:3036
1748
  msgid "See also the \"More Files\" add-on from our shop."
1749
  msgstr ""
1750
 
1751
- #: class-updraftplus.php:439 backup.php:2224
1752
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
1753
  msgstr ""
1754
 
1755
- #: class-updraftplus.php:416
1756
  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)"
1757
  msgstr ""
1758
 
1759
- #: udaddons/options.php:462
1760
  msgid "You have an inactive purchase"
1761
  msgstr ""
1762
 
1763
- #: udaddons/options.php:460 udaddons/options.php:462
1764
  msgid "activate it on this site"
1765
  msgstr ""
1766
 
1767
- #: udaddons/options.php:466
1768
  msgid "Get it from the UpdraftPlus.Com Store"
1769
  msgstr ""
1770
 
1771
- #: udaddons/options.php:467
1772
  msgid "Buy It"
1773
  msgstr ""
1774
 
1775
- #: udaddons/options.php:521
1776
  msgid "Manage Addons"
1777
  msgstr ""
1778
 
1779
- #: udaddons/options.php:333
1780
  msgid "An unknown response was received. Response was:"
1781
  msgstr ""
1782
 
1783
- #: udaddons/options.php:400
1784
  msgid "An error occurred when trying to retrieve your add-ons."
1785
  msgstr ""
1786
 
1787
- #: udaddons/options.php:418
1788
  msgid "Need to get support?"
1789
  msgstr ""
1790
 
1791
- #: udaddons/options.php:418
1792
  msgid "Go here"
1793
  msgstr ""
1794
 
1795
- #: udaddons/options.php:443
1796
  msgid "(apparently a pre-release or withdrawn release)"
1797
  msgstr ""
1798
 
1799
- #: udaddons/options.php:449
1800
  msgid "Available for this site (via your all-addons purchase)"
1801
  msgstr ""
1802
 
1803
- #: udaddons/options.php:452
1804
  msgid "Assigned to this site"
1805
  msgstr ""
1806
 
1807
- #: udaddons/options.php:234
1808
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
1809
  msgstr ""
1810
 
1811
- #: udaddons/options.php:263
1812
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
1813
  msgstr ""
1814
 
1815
- #: udaddons/options.php:264
1816
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
1817
  msgstr ""
1818
 
1819
- #: udaddons/options.php:273
1820
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
1821
  msgstr ""
1822
 
1823
- #: udaddons/options.php:282
1824
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
1825
  msgstr ""
1826
 
1827
- #: udaddons/options.php:330
1828
  msgid "Please wait whilst we make the claim..."
1829
  msgstr ""
1830
 
1831
- #: udaddons/options.php:331
1832
- msgid "Claim not granted - perhaps you have already used this purchase somewhere else?"
1833
- msgstr ""
1834
-
1835
- #: udaddons/options.php:332
1836
  msgid "Claim not granted - your account login details were wrong"
1837
  msgstr ""
1838
 
1839
- #: udaddons/options.php:114
1840
  msgid "Your web server's version of PHP is too old ("
1841
  msgstr ""
1842
 
1843
- #: udaddons/options.php:135
1844
  msgid "Connect with your UpdraftPlus.Com account"
1845
  msgstr ""
1846
 
1847
- #: udaddons/options.php:166
1848
  msgid "Not yet got an account (it's free)? Go get one!"
1849
  msgstr ""
1850
 
1851
- #: udaddons/options.php:176
1852
  msgid "Forgotten your details?"
1853
  msgstr ""
1854
 
1855
- #: udaddons/options.php:94
1856
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
1857
  msgstr ""
1858
 
1859
- #: udaddons/options.php:94 udaddons/options.php:96
1860
  msgid "Go here to connect."
1861
  msgstr ""
1862
 
1863
- #: udaddons/options.php:103
1864
  msgid "UpdraftPlus is not yet activated."
1865
  msgstr ""
1866
 
1867
- #: udaddons/options.php:104
1868
  msgid "Go here to activate it."
1869
  msgstr ""
1870
 
1871
- #: udaddons/options.php:107
1872
  msgid "UpdraftPlus is not yet installed."
1873
  msgstr ""
1874
 
1875
- #: udaddons/options.php:107
1876
  msgid "Go here to begin installing it."
1877
  msgstr ""
1878
 
1879
- #: udaddons/options.php:108
1880
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
1881
  msgstr ""
1882
 
1883
- #: addons/moredatabase.php:281 addons/moredatabase.php:312
1884
  msgid "Your web-server does not have the %s module installed."
1885
  msgstr ""
1886
 
1887
- #: addons/moredatabase.php:281 addons/moredatabase.php:312
1888
  msgid "Without it, encryption will be a lot slower."
1889
  msgstr ""
1890
 
1891
- #: admin.php:2269
1892
  msgid "Drop backup files here"
1893
  msgstr ""
1894
 
1895
- #: methods/googledrive.php:902
1896
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
1897
  msgstr ""
1898
 
1899
- #: class-updraftplus.php:2545
1900
  msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
1901
  msgstr ""
1902
 
1903
- #: class-updraftplus.php:2555
1904
  msgid "Check out WordShell"
1905
  msgstr ""
1906
 
1907
- #: class-updraftplus.php:2555
1908
  msgid "manage WordPress from the command line - huge time-saver"
1909
  msgstr ""
1910
 
1911
- #: admin.php:2181
1912
- msgid "Does nothing happen when you attempt backups?"
1913
- msgstr ""
1914
-
1915
- #: admin.php:2174
1916
- msgid "Don't include the database in the backup"
1917
- msgstr ""
1918
-
1919
- #: admin.php:2175
1920
- msgid "Don't include any files in the backup"
1921
- msgstr ""
1922
-
1923
- #: admin.php:2232
1924
- msgid "Restoring:"
1925
- msgstr ""
1926
-
1927
- #: admin.php:2232
1928
- msgid "Press the Restore button next to the chosen backup set."
1929
- msgstr ""
1930
-
1931
- #: admin.php:131
1932
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
1933
  msgstr ""
1934
 
1935
- #: admin.php:133
1936
  msgid "The web server returned an error code (try again, or check your web server logs)"
1937
  msgstr ""
1938
 
1939
- #: admin.php:130
1940
  msgid "If you exclude both the database and the files, then you have excluded everything!"
1941
  msgstr ""
1942
 
1943
- #: restorer.php:1207
1944
  msgid "Site home:"
1945
  msgstr ""
1946
 
1947
- #: addons/morestorage.php:88
1948
  msgid "Remote Storage Options"
1949
  msgstr ""
1950
 
1951
- #: addons/autobackup.php:179 addons/autobackup.php:514
1952
  msgid "Remember this choice for next time (you will still have the chance to change it)"
1953
  msgstr ""
1954
 
1955
- #: addons/autobackup.php:214 addons/autobackup.php:300
1956
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
1957
  msgstr ""
1958
 
1959
- #: methods/stream-base.php:124
1960
  msgid "Upload failed"
1961
  msgstr ""
1962
 
1963
- #: admin.php:3174
1964
  msgid "You can send a backup to more than one destination with an add-on."
1965
  msgstr ""
1966
 
1967
- #: admin.php:2678
1968
  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."
1969
  msgstr ""
1970
 
1971
- #: admin.php:2581
1972
  msgid "(%s%%, file %s of %s)"
1973
  msgstr ""
1974
 
@@ -1980,211 +3639,203 @@ msgstr ""
1980
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
1981
  msgstr ""
1982
 
1983
- #: addons/lockadmin.php:132 addons/autobackup.php:179 addons/autobackup.php:518
1984
  msgid "Read more about how this works..."
1985
  msgstr ""
1986
 
1987
- #: addons/sftp.php:370
1988
  msgid "Use SCP instead of SFTP"
1989
  msgstr ""
1990
 
1991
- #: addons/sftp.php:46
1992
  msgid "SCP/SFTP host setting"
1993
  msgstr ""
1994
 
1995
- #: addons/sftp.php:47
1996
  msgid "SCP/SFTP user setting"
1997
  msgstr ""
1998
 
1999
- #: methods/email.php:39
2000
  msgid "Backup is of: %s."
2001
  msgstr ""
2002
 
2003
- #: methods/email.php:47
2004
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
2005
  msgstr ""
2006
 
2007
- #: methods/openstack-base.php:289 methods/cloudfiles.php:449
2008
- #: methods/stream-base.php:211 methods/s3.php:486 methods/addon-base.php:248
2009
- #: methods/ftp.php:265 addons/sftp.php:404 addons/sftp.php:406
2010
  msgid "%s settings test result:"
2011
  msgstr ""
2012
 
2013
- #: admin.php:3722
2014
  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."
2015
  msgstr ""
2016
 
2017
- #: admin.php:3722
2018
  msgid "(Not finished)"
2019
  msgstr ""
2020
 
2021
- #: admin.php:3280
2022
  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)."
2023
  msgstr ""
2024
 
2025
- #: admin.php:3280
2026
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
2027
  msgstr ""
2028
 
2029
- #: admin.php:2590
2030
  msgid "Waiting until scheduled time to retry because of errors"
2031
  msgstr ""
2032
 
2033
- #: admin.php:2595
2034
  msgid "Backup finished"
2035
  msgstr ""
2036
 
2037
- #: admin.php:2645
 
2038
  msgid "Unknown"
2039
  msgstr ""
2040
 
2041
- #: admin.php:2662
2042
  msgid "next resumption: %d (after %ss)"
2043
  msgstr ""
2044
 
2045
- #: admin.php:2663
2046
  msgid "last activity: %ss ago"
2047
  msgstr ""
2048
 
2049
- #: admin.php:2673
2050
  msgid "Job ID: %s"
2051
  msgstr ""
2052
 
2053
- #: admin.php:2622
2054
  msgid "table: %s"
2055
  msgstr ""
2056
 
2057
- #: admin.php:2609
2058
  msgid "Created database backup"
2059
  msgstr ""
2060
 
2061
- #: admin.php:2635
2062
  msgid "Encrypting database"
2063
  msgstr ""
2064
 
2065
- #: admin.php:2643
2066
  msgid "Encrypted database"
2067
  msgstr ""
2068
 
2069
- #: admin.php:2574
2070
  msgid "Uploading files to remote storage"
2071
  msgstr ""
2072
 
2073
- #: admin.php:2586
2074
  msgid "Pruning old backup sets"
2075
  msgstr ""
2076
 
2077
- #: admin.php:2555
2078
  msgid "Creating file backup zips"
2079
  msgstr ""
2080
 
2081
- #: admin.php:2568
2082
  msgid "Created file backup zips"
2083
  msgstr ""
2084
 
2085
- #: admin.php:2620
2086
  msgid "Creating database backup"
2087
  msgstr ""
2088
 
2089
- #: admin.php:2550
2090
  msgid "Backup begun"
2091
  msgstr ""
2092
 
2093
- #: admin.php:2115
2094
  msgid "Backups in progress:"
2095
  msgstr ""
2096
 
2097
- #: admin.php:480
2098
  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."
2099
  msgstr ""
2100
 
2101
- #: restorer.php:527 restorer.php:534
2102
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
2103
  msgstr ""
2104
 
2105
- #: restorer.php:527
2106
  msgid "folder"
2107
  msgstr ""
2108
 
2109
- #: restorer.php:534
2110
  msgid "file"
2111
  msgstr ""
2112
 
2113
- #: backup.php:1600
2114
- msgid "Failed to open directory (check the file permissions): %s"
2115
- msgstr ""
2116
-
2117
- #: backup.php:1590
2118
- msgid "%s: unreadable file - could not be backed up (check the file permissions)"
2119
- msgstr ""
2120
-
2121
- #: class-updraftplus.php:1755
2122
  msgid "The backup has not finished; a resumption is scheduled"
2123
  msgstr ""
2124
 
2125
- #: class-updraftplus.php:1197
2126
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
2127
  msgstr ""
2128
 
2129
- #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:89
2130
- #: methods/googledrive.php:232 addons/bitcasa.php:354 addons/copycom.php:486
 
2131
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
2132
  msgstr ""
2133
 
2134
- #: admin.php:1982
2135
  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)."
2136
  msgstr ""
2137
 
2138
- #: addons/autobackup.php:59 addons/autobackup.php:501
2139
  msgid "UpdraftPlus Automatic Backups"
2140
  msgstr ""
2141
 
2142
- #: addons/autobackup.php:522
2143
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
2144
  msgstr ""
2145
 
2146
- #: addons/autobackup.php:523
2147
  msgid "Proceed with update"
2148
  msgstr ""
2149
 
2150
- #: addons/autobackup.php:218 addons/autobackup.php:307
2151
  msgid "Starting automatic backup..."
2152
  msgstr ""
2153
 
2154
- #: addons/autobackup.php:264
2155
  msgid "plugins"
2156
  msgstr ""
2157
 
2158
- #: addons/autobackup.php:269
2159
  msgid "themes"
2160
  msgstr ""
2161
 
2162
- #: addons/autobackup.php:289
2163
  msgid "You do not have sufficient permissions to update this site."
2164
  msgstr ""
2165
 
2166
- #: addons/autobackup.php:300
2167
  msgid "Creating database backup with UpdraftPlus..."
2168
  msgstr ""
2169
 
2170
- #: addons/autobackup.php:309 addons/autobackup.php:438
2171
- #: addons/autobackup.php:478
2172
  msgid "Automatic Backup"
2173
  msgstr ""
2174
 
2175
- #: addons/autobackup.php:361
2176
  msgid "Creating backup with UpdraftPlus..."
2177
  msgstr ""
2178
 
2179
- #: addons/autobackup.php:390
2180
  msgid "Errors have occurred:"
2181
  msgstr ""
2182
 
2183
- #: addons/autobackup.php:179 addons/autobackup.php:510
2184
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
2185
  msgstr ""
2186
 
2187
- #: addons/autobackup.php:214
2188
  msgid "Creating %s and database backup with UpdraftPlus..."
2189
  msgstr ""
2190
 
@@ -2204,203 +3855,195 @@ msgstr ""
2204
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
2205
  msgstr ""
2206
 
2207
- #: admin.php:1858
2208
  msgid "Support"
2209
  msgstr ""
2210
 
2211
- #: admin.php:1858
2212
  msgid "More plugins"
2213
  msgstr ""
2214
 
2215
- #: admin.php:1468
2216
  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."
2217
  msgstr ""
2218
 
2219
- #: admin.php:1560
2220
  msgid "This database backup is missing core WordPress tables: %s"
2221
  msgstr ""
2222
 
2223
- #: admin.php:1565
2224
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
2225
  msgstr ""
2226
 
2227
- #: admin.php:1406
2228
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
2229
  msgstr ""
2230
 
2231
- #: admin.php:190 admin.php:461
2232
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
2233
  msgstr ""
2234
 
2235
- #: admin.php:190 admin.php:461
2236
  msgid "Be safe every time, without needing to remember - follow this link to learn more."
2237
  msgstr ""
2238
 
2239
- #: admin.php:446 addons/autobackup.php:424
2240
  msgid "Update Plugin"
2241
  msgstr ""
2242
 
2243
- #: admin.php:450 addons/autobackup.php:465
2244
  msgid "Update Theme"
2245
  msgstr ""
2246
 
2247
- #: admin.php:188 admin.php:459
2248
  msgid "Dismiss (for %s weeks)"
2249
  msgstr ""
2250
 
2251
- #: admin.php:189 admin.php:460 addons/autobackup.php:504
2252
  msgid "Be safe with an automatic backup"
2253
  msgstr ""
2254
 
2255
- #: restorer.php:1611
2256
  msgid "Uploads path (%s) does not exist - resetting (%s)"
2257
  msgstr ""
2258
 
2259
- #: admin.php:1968
2260
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
2261
  msgstr ""
2262
 
2263
- #: admin.php:162
2264
  msgid "Follow this link to attempt decryption and download the database file to your computer."
2265
  msgstr ""
2266
 
2267
- #: admin.php:163
2268
  msgid "This decryption key will be attempted:"
2269
  msgstr ""
2270
 
2271
- #: admin.php:164 addons/bitcasa.php:263
2272
  msgid "Unknown server response:"
2273
  msgstr ""
2274
 
2275
- #: admin.php:165
2276
  msgid "Unknown server response status:"
2277
  msgstr ""
2278
 
2279
- #: admin.php:166
2280
  msgid "The file was uploaded."
2281
  msgstr ""
2282
 
2283
- #: admin.php:158
2284
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
2285
  msgstr ""
2286
 
2287
- #: admin.php:159
2288
  msgid "Upload error:"
2289
  msgstr ""
2290
 
2291
- #: admin.php:160
2292
  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)."
2293
  msgstr ""
2294
 
2295
- #: admin.php:161
2296
  msgid "Upload error"
2297
  msgstr ""
2298
 
2299
- #: admin.php:148
2300
  msgid "Delete from your web server"
2301
  msgstr ""
2302
 
2303
- #: admin.php:149
2304
  msgid "Download to your computer"
2305
  msgstr ""
2306
 
2307
- #: admin.php:150
2308
  msgid "and then, if you wish,"
2309
  msgstr ""
2310
 
2311
- #: methods/s3.php:508
2312
  msgid "Examples of S3-compatible storage providers:"
2313
  msgstr ""
2314
 
2315
- #: methods/googledrive.php:410
2316
- msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s Gb (%d bytes)"
2317
- msgstr ""
2318
-
2319
- #: backup.php:1065
2320
- msgid "The backup directory is not writable - the database backup is expected to shortly fail."
2321
- msgstr ""
2322
-
2323
- #: admin.php:4312
2324
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
2325
  msgstr ""
2326
 
2327
- #: admin.php:3689
2328
  msgid "(%d archive(s) in set)."
2329
  msgstr ""
2330
 
2331
- #: admin.php:3692
2332
  msgid "You appear to be missing one or more archives from this multi-archive set."
2333
  msgstr ""
2334
 
2335
- #: admin.php:3252
2336
  msgid "Split archives every:"
2337
  msgstr ""
2338
 
2339
- #: admin.php:140
2340
  msgid "Error: the server sent an empty response."
2341
  msgstr ""
2342
 
2343
- #: admin.php:141
2344
  msgid "Warnings:"
2345
  msgstr ""
2346
 
2347
- #: admin.php:143 addons/moredatabase.php:222
2348
  msgid "Error: the server sent us a response (JSON) which we did not understand."
2349
  msgstr ""
2350
 
2351
- #: admin.php:1756
2352
  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?"
2353
  msgstr ""
2354
 
2355
- #: admin.php:935
2356
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
2357
  msgstr ""
2358
 
2359
- #: admin.php:937
2360
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
2361
  msgstr ""
2362
 
2363
- #: admin.php:939
2364
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
2365
  msgstr ""
2366
 
2367
- #: admin.php:698
2368
  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"
2369
  msgstr ""
2370
 
2371
- #: admin.php:840
2372
  msgid "No such backup set exists"
2373
  msgstr ""
2374
 
2375
- #: admin.php:908
2376
  msgid "File not found (you need to upload it): %s"
2377
  msgstr ""
2378
 
2379
- #: admin.php:910
2380
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
2381
  msgstr ""
2382
 
2383
- #: admin.php:915
2384
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
2385
  msgstr ""
2386
 
2387
- #: admin.php:930
2388
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
2389
  msgstr ""
2390
 
2391
- #: restorer.php:476
2392
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
2393
  msgstr ""
2394
 
2395
- #: restorer.php:467
2396
  msgid "Failed to move file (check your file permissions and disk quota): %s"
2397
  msgstr ""
2398
 
2399
- #: restorer.php:64
2400
  msgid "Moving unpacked backup into place..."
2401
  msgstr ""
2402
 
2403
- #: backup.php:1943 backup.php:2184
2404
  msgid "Failed to open the zip file (%s) - %s"
2405
  msgstr ""
2406
 
@@ -2408,15 +4051,15 @@ msgstr ""
2408
  msgid "WordPress root directory server path: %s"
2409
  msgstr ""
2410
 
2411
- #: methods/s3.php:516
2412
  msgid "... and many more!"
2413
  msgstr ""
2414
 
2415
- #: methods/s3.php:541
2416
  msgid "%s end-point"
2417
  msgstr ""
2418
 
2419
- #: admin.php:4237
2420
  msgid "File is not locally present - needs retrieving from remote storage"
2421
  msgstr ""
2422
 
@@ -2424,127 +4067,129 @@ msgstr ""
2424
  msgid "S3 (Compatible)"
2425
  msgstr ""
2426
 
2427
- #: admin.php:4193
2428
  msgid "Final checks"
2429
  msgstr ""
2430
 
2431
- #: admin.php:4231
2432
  msgid "Looking for %s archive: file name: %s"
2433
  msgstr ""
2434
 
2435
- #: admin.php:3258
2436
  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)."
2437
  msgstr ""
2438
 
2439
- #: admin.php:3076
2440
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
2441
  msgstr ""
2442
 
2443
- #: admin.php:3016
2444
  msgid "Your wp-content directory server path: %s"
2445
  msgstr ""
2446
 
2447
- #: admin.php:155
2448
  msgid "Raw backup history"
2449
  msgstr ""
2450
 
2451
- #: admin.php:2438
2452
  msgid "Show raw backup and file list"
2453
  msgstr ""
2454
 
2455
- #: admin.php:139
2456
  msgid "Processing files - please wait..."
2457
  msgstr ""
2458
 
2459
- #: admin.php:2225
2460
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
2461
  msgstr ""
2462
 
2463
- #: admin.php:2225 admin.php:4345
2464
  msgid "Please consult this FAQ for help on what to do about it."
2465
  msgstr ""
2466
 
2467
- #: admin.php:1414
2468
  msgid "Failed to open database file."
2469
  msgstr ""
2470
 
2471
- #: admin.php:1394
2472
  msgid "Failed to write out the decrypted database to the filesystem."
2473
  msgstr ""
2474
 
2475
- #: admin.php:1056
2476
  msgid "Known backups (raw)"
2477
  msgstr ""
2478
 
2479
- #: restorer.php:1010
2480
  msgid "Using directory from backup: %s"
2481
  msgstr ""
2482
 
2483
- #: restorer.php:863
2484
  msgid "Files found:"
2485
  msgstr ""
2486
 
2487
- #: restorer.php:869
2488
  msgid "Unable to enumerate files in that directory."
2489
  msgstr ""
2490
 
2491
- #: restorer.php:1387
2492
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
2493
  msgstr ""
2494
 
2495
- #: restorer.php:1398
2496
  msgid "Restoring table (%s)"
2497
  msgstr ""
2498
 
2499
- #: addons/migrator.php:139
2500
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
2501
  msgstr ""
2502
 
2503
- #: admin.php:4259
2504
  msgid "file is size:"
2505
  msgstr ""
2506
 
2507
- #: admin.php:480 admin.php:1968 admin.php:2463
 
 
2508
  msgid "Go here for more information."
2509
  msgstr ""
2510
 
2511
- #: admin.php:138
2512
  msgid "Some files are still downloading or being processed - please wait."
2513
  msgstr ""
2514
 
2515
- #: admin.php:1452 admin.php:1460
2516
  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."
2517
  msgstr ""
2518
 
2519
- #: methods/ftp.php:78 methods/ftp.php:127 methods/ftp.php:228
2520
  msgid "%s login failure"
2521
  msgstr ""
2522
 
2523
- #: methods/ftp.php:105
2524
  msgid "%s upload failed"
2525
  msgstr ""
2526
 
2527
- #: addons/fixtime.php:120 addons/fixtime.php:129
2528
  msgid "Enter in format HH:MM (e.g. 14:22)."
2529
  msgstr ""
2530
 
2531
- #: addons/fixtime.php:120 addons/fixtime.php:129
2532
  msgid "The time zone used is that from your WordPress settings, in Settings -> General."
2533
  msgstr ""
2534
 
2535
- #: methods/dropbox.php:91
2536
  msgid "Dropbox error: %s (see log file for more)"
2537
  msgstr ""
2538
 
2539
- #: methods/dropbox.php:291
2540
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
2541
  msgstr ""
2542
 
2543
- #: methods/dropbox.php:299
2544
  msgid "Failed to access %s when deleting (see log file for more)"
2545
  msgstr ""
2546
 
2547
- #: methods/dropbox.php:332 addons/copycom.php:258
2548
  msgid "You do not appear to be authenticated with %s"
2549
  msgstr ""
2550
 
@@ -2556,336 +4201,312 @@ msgstr ""
2556
  msgid "Error - failed to download the file from %s"
2557
  msgstr ""
2558
 
2559
- #: methods/openstack-base.php:70 methods/cloudfiles.php:219
2560
  msgid "%s error - failed to upload file"
2561
  msgstr ""
2562
 
2563
- #: methods/googledrive.php:774 methods/openstack-base.php:343
2564
- #: methods/cloudfiles.php:392 methods/cloudfiles.php:409
2565
- #: methods/stream-base.php:274 methods/stream-base.php:281
2566
- #: methods/stream-base.php:294 methods/addon-base.php:189
2567
  msgid "%s Error"
2568
  msgstr ""
2569
 
2570
- #: methods/openstack-base.php:32 methods/openstack-base.php:214
2571
- #: methods/openstack-base.php:305 methods/openstack-base.php:377
2572
- #: methods/openstack-base.php:380 methods/openstack-base.php:397
2573
- #: methods/openstack-base.php:402 methods/cloudfiles.php:95
2574
- #: methods/cloudfiles.php:99 methods/cloudfiles.php:240
2575
- #: methods/cloudfiles.php:285 methods/cloudfiles.php:336
2576
- #: methods/cloudfiles.php:340
2577
  msgid "%s authentication failed"
2578
  msgstr ""
2579
 
2580
- #: class-updraftplus.php:668 methods/cloudfiles.php:211
2581
  msgid "%s error - failed to re-assemble chunks"
2582
  msgstr ""
2583
 
2584
- #: class-updraftplus.php:529 class-updraftplus.php:535 restorer.php:857
2585
- #: admin.php:1382 admin.php:1384 admin.php:1491 admin.php:1496 admin.php:1701
2586
- #: admin.php:1748 admin.php:1756 methods/googledrive.php:292
 
 
2587
  msgid "Error: %s"
2588
  msgstr ""
2589
 
2590
- #: admin.php:3275
2591
  msgid "Backup directory specified exists, but is <b>not</b> writable."
2592
  msgstr ""
2593
 
2594
- #: admin.php:3273
2595
  msgid "Backup directory specified does <b>not</b> exist."
2596
  msgstr ""
2597
 
2598
- #: admin.php:1452 admin.php:1460 admin.php:2683 admin.php:2902
 
2599
  msgid "Warning: %s"
2600
  msgstr ""
2601
 
2602
- #: admin.php:2105
2603
  msgid "Last backup job run:"
2604
  msgstr ""
2605
 
2606
- #: backup.php:1626 backup.php:1648
2607
  msgid "%s: unreadable file - could not be backed up"
2608
  msgstr ""
2609
 
2610
- #: backup.php:1957
2611
  msgid "A very large file was encountered: %s (size: %s Mb)"
2612
  msgstr ""
2613
 
2614
- #: backup.php:1117
2615
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
2616
  msgstr ""
2617
 
2618
- #: backup.php:1218
2619
  msgid "An error occurred whilst closing the final database file"
2620
  msgstr ""
2621
 
2622
- #: backup.php:560
2623
  msgid "Warnings encountered:"
2624
  msgstr ""
2625
 
2626
- #: class-updraftplus.php:1744
2627
  msgid "The backup apparently succeeded (with warnings) and is now complete"
2628
  msgstr ""
2629
 
2630
- #: class-updraftplus.php:452
2631
  msgid "Your free disk space is very low - only %s Mb remain"
2632
  msgstr ""
2633
 
2634
- #: addons/migrator.php:200
2635
- msgid "Site Name:"
2636
- msgstr ""
2637
-
2638
- #: addons/migrator.php:202
2639
- msgid "Site Domain:"
2640
- msgstr ""
2641
-
2642
- #: addons/migrator.php:219
2643
  msgid "Migrated site (from UpdraftPlus)"
2644
  msgstr ""
2645
 
2646
- #: addons/migrator.php:248
2647
  msgid "<strong>ERROR</strong>: Site URL already taken."
2648
  msgstr ""
2649
 
2650
- #: addons/migrator.php:255
2651
  msgid "New site:"
2652
  msgstr ""
2653
 
2654
- #: addons/migrator.php:188
2655
  msgid "Information needed to continue:"
2656
  msgstr ""
2657
 
2658
- #: addons/migrator.php:189
2659
- msgid "Please supply the following information:"
2660
- msgstr ""
2661
-
2662
- #: addons/migrator.php:191
2663
  msgid "Enter details for where this new site is to live within your multisite install:"
2664
  msgstr ""
2665
 
2666
- #: addons/migrator.php:143
2667
  msgid "Processed plugin:"
2668
  msgstr ""
2669
 
2670
- #: addons/migrator.php:154
2671
  msgid "Network activating theme:"
2672
  msgstr ""
2673
 
2674
- #: addons/sftp.php:39
2675
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
2676
  msgstr ""
2677
 
2678
- #: addons/sftp.php:75
2679
  msgid "Check your file permissions: Could not successfully create and enter directory:"
2680
  msgstr ""
2681
 
2682
- #: methods/dropbox.php:399
2683
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
2684
  msgstr ""
2685
 
2686
- #: methods/s3.php:666
2687
  msgid "Please check your access credentials."
2688
  msgstr ""
2689
 
2690
- #: methods/s3.php:644
2691
  msgid "The error reported by %s was:"
2692
  msgstr ""
2693
 
2694
- #: restorer.php:1026
2695
  msgid "Please supply the requested information, and then continue."
2696
  msgstr ""
2697
 
2698
- #: restorer.php:1490
2699
  msgid "Cannot drop tables, so deleting instead (%s)"
2700
  msgstr ""
2701
 
2702
- #: restorer.php:1233 admin.php:1496
2703
- msgid "To import an ordinary WordPress site into a multisite installation requires both the multisite and migrator add-ons."
2704
- msgstr ""
2705
-
2706
- #: restorer.php:1239 admin.php:1506
2707
  msgid "Site information:"
2708
  msgstr ""
2709
 
2710
- #: restorer.php:1473
2711
  msgid "Cannot create new tables, so skipping this command (%s)"
2712
  msgstr ""
2713
 
2714
- #: restorer.php:1162 restorer.php:1182 restorer.php:1462 admin.php:1500
2715
- #: admin.php:1968 addons/migrator.php:139
2716
  msgid "Warning:"
2717
  msgstr ""
2718
 
2719
- #: restorer.php:1163
2720
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
2721
  msgstr ""
2722
 
2723
- #: restorer.php:72 admin.php:1491
2724
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
2725
  msgstr ""
2726
 
2727
- #: admin.php:4220
2728
  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."
2729
  msgstr ""
2730
 
2731
- #: admin.php:3349
2732
  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."
2733
  msgstr ""
2734
 
2735
- #: admin.php:3349
2736
- msgid "Your options are 1) Install/enable %s or 2) Change web hosting companies - %s is a standard PHP component, and required by all cloud backup plugins that we know of."
2737
- msgstr ""
2738
-
2739
- #: admin.php:171
2740
  msgid "Close"
2741
  msgstr ""
2742
 
2743
- #: admin.php:132 addons/autobackup.php:220 addons/autobackup.php:304
 
 
2744
  msgid "Unexpected response:"
2745
  msgstr ""
2746
 
2747
- #: admin.php:129 addons/reporting.php:439
2748
  msgid "To send to more than one address, separate each address with a comma."
2749
  msgstr ""
2750
 
2751
- #: admin.php:153
2752
  msgid "PHP information"
2753
  msgstr ""
2754
 
2755
- #: admin.php:2408
2756
  msgid "show PHP information (phpinfo)"
2757
  msgstr ""
2758
 
2759
- #: admin.php:2425
2760
  msgid "zip executable found:"
2761
  msgstr ""
2762
 
2763
- #: admin.php:2153
2764
  msgid "Migrate Site"
2765
  msgstr ""
2766
 
2767
- #: admin.php:2157
2768
- msgid "Migration of data from another site happens through the \"Restore\" button. A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site. UpdraftPlus modifies the restoration operation appropriately, to fit the backup data to the new site."
2769
- msgstr ""
2770
-
2771
- #: admin.php:2157
2772
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
2773
  msgstr ""
2774
 
2775
- #: admin.php:2159
2776
  msgid "Do you want to migrate or clone/duplicate a site?"
2777
  msgstr ""
2778
 
2779
- #: admin.php:2159
2780
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
2781
  msgstr ""
2782
 
2783
- #: admin.php:2159
2784
  msgid "Get it here."
2785
  msgstr ""
2786
 
2787
- #: admin.php:2308
2788
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
2789
  msgstr ""
2790
 
2791
- #: admin.php:2307
2792
  msgid "Also delete from remote storage"
2793
  msgstr ""
2794
 
2795
- #: admin.php:2137
2796
  msgid "Latest UpdraftPlus.com news:"
2797
  msgstr ""
2798
 
2799
- #: admin.php:2053
2800
  msgid "Clone/Migrate"
2801
  msgstr ""
2802
 
2803
- #: admin.php:1857
2804
  msgid "News"
2805
  msgstr ""
2806
 
2807
- #: admin.php:1857
2808
  msgid "Premium"
2809
  msgstr ""
2810
 
2811
- #: admin.php:1041
2812
  msgid "Local archives deleted: %d"
2813
  msgstr ""
2814
 
2815
- #: admin.php:1042
2816
  msgid "Remote archives deleted: %d"
2817
  msgstr ""
2818
 
2819
- #: backup.php:132
2820
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
2821
  msgstr ""
2822
 
2823
- #: admin.php:954
2824
  msgid "Backup set not found"
2825
  msgstr ""
2826
 
2827
- #: admin.php:1040
2828
- msgid "The backup set has been removed."
2829
- msgstr ""
2830
-
2831
- #: class-updraftplus.php:2572
2832
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
2833
  msgstr ""
2834
 
2835
- #: class-updraftplus.php:2572
2836
  msgid "Blog link"
2837
  msgstr ""
2838
 
2839
- #: class-updraftplus.php:2572
2840
  msgid "RSS link"
2841
  msgstr ""
2842
 
2843
- #: methods/stream-base.php:201 methods/s3.php:470 methods/addon-base.php:238
2844
- #: methods/ftp.php:249 addons/sftp.php:385
2845
  msgid "Testing %s Settings..."
2846
  msgstr ""
2847
 
2848
- #: admin.php:2259
2849
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
2850
  msgstr ""
2851
 
2852
- #: admin.php:496
2853
  msgid "Notice"
2854
  msgstr ""
2855
 
2856
- #: admin.php:496
2857
  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."
2858
  msgstr ""
2859
 
2860
- #: backup.php:542
2861
  msgid "Errors encountered:"
2862
  msgstr ""
2863
 
2864
- #: admin.php:127
2865
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
2866
  msgstr ""
2867
 
2868
- #: admin.php:137
2869
  msgid "Begun looking for this entity"
2870
  msgstr ""
2871
 
2872
- #: addons/migrator.php:769
2873
  msgid "SQL update commands run:"
2874
  msgstr ""
2875
 
2876
- #: admin.php:142 addons/migrator.php:770
2877
  msgid "Errors:"
2878
  msgstr ""
2879
 
2880
- #: addons/migrator.php:771
2881
  msgid "Time taken (seconds):"
2882
  msgstr ""
2883
 
2884
- #: addons/migrator.php:903
2885
  msgid "rows: %d"
2886
  msgstr ""
2887
 
2888
- #: addons/migrator.php:1016
2889
  msgid "\"%s\" has no primary key, manual change needed on row %s."
2890
  msgstr ""
2891
 
@@ -2893,60 +4514,57 @@ msgstr ""
2893
  msgid "Store at"
2894
  msgstr ""
2895
 
2896
- #: addons/migrator.php:610
2897
  msgid "Nothing to do: the site URL is already: %s"
2898
  msgstr ""
2899
 
2900
- #: addons/migrator.php:621
2901
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
2902
  msgstr ""
2903
 
2904
- #: addons/migrator.php:637
2905
  msgid "Database search and replace: replace %s in backup dump with %s"
2906
  msgstr ""
2907
 
2908
- #: addons/migrator.php:668
2909
  msgid "Could not get list of tables"
2910
  msgstr ""
2911
 
2912
- #: addons/migrator.php:766
2913
  msgid "Tables examined:"
2914
  msgstr ""
2915
 
2916
- #: addons/migrator.php:767
2917
  msgid "Rows examined:"
2918
  msgstr ""
2919
 
2920
- #: addons/migrator.php:768
2921
  msgid "Changes made:"
2922
  msgstr ""
2923
 
2924
- #: addons/sftp.php:250
2925
  msgid "%s Error: Failed to download"
2926
  msgstr ""
2927
 
2928
- #: addons/sftp.php:310
2929
- msgid "Resuming partial uploads is not supported, so you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
2930
- msgstr ""
2931
-
2932
- #: addons/sftp.php:315 addons/moredatabase.php:185
2933
  msgid "Host"
2934
  msgstr ""
2935
 
2936
- #: addons/sftp.php:322
2937
  msgid "Port"
2938
  msgstr ""
2939
 
2940
- #: udaddons/options.php:139 methods/openstack2.php:127 addons/sftp.php:336
2941
- #: addons/lockadmin.php:141 addons/moredatabase.php:187
 
2942
  msgid "Password"
2943
  msgstr ""
2944
 
2945
- #: addons/sftp.php:361
2946
  msgid "Directory path"
2947
  msgstr ""
2948
 
2949
- #: addons/sftp.php:363
2950
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
2951
  msgstr ""
2952
 
@@ -2954,11 +4572,11 @@ msgstr ""
2954
  msgid "host name"
2955
  msgstr ""
2956
 
2957
- #: methods/openstack2.php:147 addons/sftp.php:419
2958
  msgid "username"
2959
  msgstr ""
2960
 
2961
- #: methods/openstack2.php:152
2962
  msgid "password"
2963
  msgstr ""
2964
 
@@ -2966,60 +4584,60 @@ msgstr ""
2966
  msgid "Failure: Port must be an integer."
2967
  msgstr ""
2968
 
2969
- #: addons/fixtime.php:120 addons/fixtime.php:129
2970
  msgid "starting from next time it is"
2971
  msgstr ""
2972
 
2973
- #: addons/multisite.php:153
2974
  msgid "Multisite Install"
2975
  msgstr ""
2976
 
2977
- #: udaddons/options.php:217 addons/multisite.php:159
2978
  msgid "You do not have sufficient permissions to access this page."
2979
  msgstr ""
2980
 
2981
- #: addons/multisite.php:178
2982
  msgid "You do not have permission to access this page."
2983
  msgstr ""
2984
 
2985
- #: addons/multisite.php:272
2986
  msgid "Must-use plugins"
2987
  msgstr ""
2988
 
2989
- #: addons/multisite.php:279
2990
  msgid "Blog uploads"
2991
  msgstr ""
2992
 
2993
- #: addons/migrator.php:272
2994
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
2995
  msgstr ""
2996
 
2997
- #: addons/migrator.php:272
2998
  msgid "Search and replace site location in the database (migrate)"
2999
  msgstr ""
3000
 
3001
- #: addons/migrator.php:272
3002
  msgid "(learn more)"
3003
  msgstr ""
3004
 
3005
- #: addons/migrator.php:481 addons/migrator.php:748
3006
  msgid "Failed: the %s operation was not able to start."
3007
  msgstr ""
3008
 
3009
- #: addons/migrator.php:483 addons/migrator.php:750
3010
  msgid "Failed: we did not understand the result returned by the %s operation."
3011
  msgstr ""
3012
 
3013
- #: addons/migrator.php:547
3014
  msgid "Database: search and replace site URL"
3015
  msgstr ""
3016
 
3017
- #: addons/migrator.php:551
3018
  msgid "This option was not selected."
3019
  msgstr ""
3020
 
3021
- #: addons/migrator.php:583 addons/migrator.php:587 addons/migrator.php:591
3022
- #: addons/migrator.php:596 addons/migrator.php:600 addons/migrator.php:604
3023
  msgid "Error: unexpected empty parameter (%s, %s)"
3024
  msgstr ""
3025
 
@@ -3031,43 +4649,39 @@ msgstr ""
3031
  msgid "WordPress core (including any additions to your WordPress root directory)"
3032
  msgstr ""
3033
 
3034
- #: addons/morefiles.php:178
3035
- msgid "Any other directory on your server that you wish to back up"
3036
- msgstr ""
3037
-
3038
  #: addons/morefiles.php:179
3039
  msgid "More Files"
3040
  msgstr ""
3041
 
3042
- #: addons/morefiles.php:208 addons/morefiles.php:219
3043
  msgid "Enter the directory:"
3044
  msgstr ""
3045
 
3046
- #: addons/morefiles.php:197
3047
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
3048
  msgstr ""
3049
 
3050
- #: addons/morefiles.php:197
3051
  msgid "If using it, enter an absolute path (it is not relative to your WordPress install)."
3052
  msgstr ""
3053
 
3054
- #: addons/morefiles.php:199
3055
  msgid "Be careful what you enter - if you enter / then it really will try to create a zip containing your entire webserver."
3056
  msgstr ""
3057
 
3058
- #: addons/morefiles.php:439
3059
  msgid "No backup of %s directories: there was nothing found to back up"
3060
  msgstr ""
3061
 
3062
- #: addons/sftp.php:39
3063
  msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
3064
  msgstr ""
3065
 
3066
- #: addons/sftp.php:39
3067
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
3068
  msgstr ""
3069
 
3070
- #: addons/sftp.php:46 addons/sftp.php:47 addons/sftp.php:48
3071
  msgid "No %s found"
3072
  msgstr ""
3073
 
@@ -3075,64 +4689,44 @@ msgstr ""
3075
  msgid "Check your file permissions: Could not successfully create and enter:"
3076
  msgstr ""
3077
 
3078
- #: methods/ftp.php:322
3079
- msgid "FTP Server"
3080
- msgstr ""
3081
-
3082
- #: methods/ftp.php:326
3083
- msgid "FTP Login"
3084
- msgstr ""
3085
-
3086
- #: methods/ftp.php:330
3087
- msgid "FTP Password"
3088
- msgstr ""
3089
-
3090
- #: methods/ftp.php:334
3091
- msgid "Remote Path"
3092
- msgstr ""
3093
-
3094
- #: methods/ftp.php:335
3095
  msgid "Needs to already exist"
3096
  msgstr ""
3097
 
3098
- #: methods/ftp.php:360
3099
  msgid "Failure: No server details were given."
3100
  msgstr ""
3101
 
3102
- #: methods/ftp.php:377
3103
  msgid "Failure: we did not successfully log in with those credentials."
3104
  msgstr ""
3105
 
3106
- #: methods/ftp.php:385
3107
- msgid "Failure: an unexpected internal UpdraftPlus error occurred when testing the credentials - please contact the developer"
3108
- msgstr ""
3109
-
3110
- #: methods/ftp.php:389
3111
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
3112
  msgstr ""
3113
 
3114
- #: methods/ftp.php:392
3115
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
3116
  msgstr ""
3117
 
3118
- #: methods/googledrive.php:139 methods/stream-base.php:32
3119
- #: methods/stream-base.php:139 methods/stream-base.php:174
3120
- #: methods/stream-base.php:258 methods/addon-base.php:56
3121
- #: methods/addon-base.php:92 methods/addon-base.php:117
3122
- #: methods/addon-base.php:165 methods/addon-base.php:262 methods/ftp.php:28
3123
- #: addons/sftp.php:44
3124
  msgid "No %s settings were found"
3125
  msgstr ""
3126
 
3127
- #: methods/stream-base.php:108 methods/stream-base.php:112
3128
  msgid "Chunk %s: A %s error occurred"
3129
  msgstr ""
3130
 
3131
- #: methods/stream-base.php:281
3132
  msgid "Error opening remote file: Failed to download"
3133
  msgstr ""
3134
 
3135
- #: methods/stream-base.php:294
3136
  msgid "Local write failed: Failed to download"
3137
  msgstr ""
3138
 
@@ -3144,16 +4738,17 @@ msgstr ""
3144
  msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
3145
  msgstr ""
3146
 
3147
- #: admin.php:2736 admin.php:2771 admin.php:2780 methods/stream-base.php:310
3148
- #: methods/addon-base.php:281 addons/sftp.php:445
 
3149
  msgid "Failed"
3150
  msgstr ""
3151
 
3152
- #: methods/stream-base.php:324 methods/addon-base.php:291
3153
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
3154
  msgstr ""
3155
 
3156
- #: addons/morefiles.php:63 addons/morefiles.php:439
3157
  msgid "WordPress Core"
3158
  msgstr ""
3159
 
@@ -3161,248 +4756,254 @@ msgstr ""
3161
  msgid "Over-write wp-config.php"
3162
  msgstr ""
3163
 
3164
- #: methods/dropbox.php:482 methods/dropbox.php:484 addons/bitcasa.php:301
3165
- #: addons/bitcasa.php:303 addons/copycom.php:381 addons/copycom.php:383
3166
  msgid "you have authenticated your %s account"
3167
  msgstr ""
3168
 
3169
- #: methods/dropbox.php:487 addons/bitcasa.php:311 addons/copycom.php:392
3170
  msgid "though part of the returned information was not as expected - your mileage may vary"
3171
  msgstr ""
3172
 
3173
- #: methods/dropbox.php:491 addons/bitcasa.php:321 addons/copycom.php:400
3174
  msgid "Your %s account name: %s"
3175
  msgstr ""
3176
 
3177
- #: methods/ftp.php:318
3178
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
3179
  msgstr ""
3180
 
3181
- #: methods/ftp.php:318
3182
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
3183
  msgstr ""
3184
 
3185
- #: methods/s3.php:451
3186
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
3187
  msgstr ""
3188
 
3189
- #: methods/s3.php:310 methods/s3.php:376 methods/s3.php:456
3190
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
3191
  msgstr ""
3192
 
3193
- #: methods/s3.php:537
3194
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
3195
  msgstr ""
3196
 
3197
- #: methods/s3.php:537
3198
  msgid "If you see errors about SSL certificates, then please go here for help."
3199
  msgstr ""
3200
 
3201
- #: methods/s3.php:548
3202
  msgid "%s access key"
3203
  msgstr ""
3204
 
3205
- #: methods/s3.php:552
3206
  msgid "%s secret key"
3207
  msgstr ""
3208
 
3209
- #: methods/s3.php:556
3210
  msgid "%s location"
3211
  msgstr ""
3212
 
3213
- #: methods/s3.php:557
3214
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
3215
  msgstr ""
3216
 
3217
- #: methods/s3.php:579
3218
  msgid "API secret"
3219
  msgstr ""
3220
 
3221
- #: methods/s3.php:600
3222
  msgid "Failure: No bucket details were given."
3223
  msgstr ""
3224
 
3225
- #: methods/s3.php:613 methods/openstack2.php:113
3226
  msgid "Region"
3227
  msgstr ""
3228
 
3229
- #: methods/s3.php:643
3230
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
3231
  msgstr ""
3232
 
3233
- #: methods/s3.php:654 methods/s3.php:666
 
3234
  msgid "Failure"
3235
  msgstr ""
3236
 
3237
- #: methods/s3.php:654 methods/s3.php:666
 
3238
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
3239
  msgstr ""
3240
 
3241
- #: methods/s3.php:656
3242
  msgid "We accessed the bucket, and were able to create files within it."
3243
  msgstr ""
3244
 
3245
- #: methods/s3.php:659
3246
  msgid "The communication with %s was encrypted."
3247
  msgstr ""
3248
 
3249
- #: methods/s3.php:661
3250
  msgid "The communication with %s was not encrypted."
3251
  msgstr ""
3252
 
3253
- #: methods/dropbox.php:80 methods/dropbox.php:86
3254
  msgid "You do not appear to be authenticated with Dropbox"
3255
  msgstr ""
3256
 
3257
- #: methods/dropbox.php:170 methods/dropbox.php:187 methods/dropbox.php:199
3258
  msgid "error: failed to upload file to %s (see log file for more)"
3259
  msgstr ""
3260
 
3261
- #: methods/dropbox.php:411
3262
  msgid "Need to use sub-folders?"
3263
  msgstr ""
3264
 
3265
- #: methods/dropbox.php:411
3266
  msgid "Backups are saved in"
3267
  msgstr ""
3268
 
3269
- #: methods/dropbox.php:411
3270
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
3271
  msgstr ""
3272
 
3273
- #: methods/dropbox.php:411
3274
  msgid "there's an add-on for that."
3275
  msgstr ""
3276
 
3277
- #: methods/cloudfiles.php:487
3278
  msgid "US or UK Cloud"
3279
  msgstr ""
3280
 
3281
- #: methods/cloudfiles-new.php:88 methods/cloudfiles.php:490
3282
- #: addons/cloudfiles-enhanced.php:233
3283
  msgid "US (default)"
3284
  msgstr ""
3285
 
3286
- #: methods/cloudfiles-new.php:89 methods/cloudfiles.php:491
3287
- #: addons/cloudfiles-enhanced.php:234
3288
  msgid "UK"
3289
  msgstr ""
3290
 
3291
- #: methods/cloudfiles.php:507
3292
  msgid "Cloud Files username"
3293
  msgstr ""
3294
 
3295
- #: methods/cloudfiles.php:511
3296
  msgid "Cloud Files API key"
3297
  msgstr ""
3298
 
3299
- #: methods/cloudfiles.php:515
3300
  msgid "Cloud Files container"
3301
  msgstr ""
3302
 
3303
- #: methods/openstack-base.php:453 methods/cloudfiles.php:473 methods/s3.php:527
3304
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
3305
  msgstr ""
3306
 
3307
- #: methods/cloudfiles-new.php:147 methods/cloudfiles-new.php:152
3308
- #: methods/cloudfiles.php:529 methods/cloudfiles.php:534 methods/s3.php:575
3309
- #: methods/s3.php:579 methods/addon-base.php:274 methods/ftp.php:364
3310
- #: methods/ftp.php:368 methods/openstack2.php:147 methods/openstack2.php:152
3311
- #: methods/openstack2.php:157 methods/openstack2.php:162 addons/webdav.php:55
3312
- #: addons/sftp.php:415 addons/sftp.php:419 addons/sftp.php:423
3313
- #: addons/moredatabase.php:47 addons/moredatabase.php:49
3314
- #: addons/moredatabase.php:51 addons/migrator.php:99
 
3315
  msgid "Failure: No %s was given."
3316
  msgstr ""
3317
 
3318
- #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:529 methods/s3.php:575
3319
  msgid "API key"
3320
  msgstr ""
3321
 
3322
- #: methods/cloudfiles-new.php:152 methods/cloudfiles.php:534
3323
- #: methods/openstack2.php:121 addons/sftp.php:329 addons/moredatabase.php:186
 
3324
  msgid "Username"
3325
  msgstr ""
3326
 
3327
- #: methods/openstack-base.php:360 methods/cloudfiles.php:554
3328
  msgid "Failure: No container details were given."
3329
  msgstr ""
3330
 
3331
- #: methods/cloudfiles.php:581
3332
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
3333
  msgstr ""
3334
 
3335
- #: methods/openstack-base.php:416 methods/cloudfiles.php:585
3336
  msgid "We accessed the container, and were able to create files within it."
3337
  msgstr ""
3338
 
3339
- #: methods/email.php:37
3340
  msgid "WordPress Backup"
3341
  msgstr ""
3342
 
3343
- #: methods/email.php:58
3344
  msgid "Note:"
3345
  msgstr ""
3346
 
3347
- #: methods/s3.php:208
3348
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
3349
  msgstr ""
3350
 
3351
- #: methods/s3.php:231
3352
  msgid "%s error: file %s was shortened unexpectedly"
3353
  msgstr ""
3354
 
3355
- #: methods/s3.php:241
3356
  msgid "%s chunk %s: upload failed"
3357
  msgstr ""
3358
 
3359
- #: methods/s3.php:255
3360
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
3361
  msgstr ""
3362
 
3363
- #: methods/s3.php:259
3364
  msgid "%s re-assembly error (%s): (see log file for more)"
3365
  msgstr ""
3366
 
3367
- #: methods/s3.php:271
3368
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
3369
  msgstr ""
3370
 
3371
- #: methods/googledrive.php:855
3372
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
3373
  msgstr ""
3374
 
3375
- #: methods/googledrive.php:857
3376
  msgid "Select 'Web Application' as the application type."
3377
  msgstr ""
3378
 
3379
- #: methods/googledrive.php:857
3380
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
3381
  msgstr ""
3382
 
3383
- #: methods/googledrive.php:867 addons/bitcasa.php:377
 
3384
  msgid "Client ID"
3385
  msgstr ""
3386
 
3387
- #: methods/googledrive.php:868
3388
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
3389
  msgstr ""
3390
 
3391
- #: methods/googledrive.php:871 addons/bitcasa.php:383
 
3392
  msgid "Client Secret"
3393
  msgstr ""
3394
 
3395
- #: methods/googledrive.php:901
3396
  msgid "Authenticate with Google"
3397
  msgstr ""
3398
 
3399
- #: methods/googledrive.php:912
3400
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
3401
  msgstr ""
3402
 
3403
- #: methods/cloudfiles.php:564 methods/cloudfiles.php:567
3404
- #: methods/cloudfiles.php:570 addons/cloudfiles-enhanced.php:85
3405
- #: addons/cloudfiles-enhanced.php:122 addons/cloudfiles-enhanced.php:127
3406
  msgid "Cloud Files authentication failed"
3407
  msgstr ""
3408
 
@@ -3411,15 +5012,16 @@ msgstr ""
3411
  msgid "Cloud Files error - failed to create and access the container"
3412
  msgstr ""
3413
 
3414
- #: class-updraftplus.php:623 methods/googledrive.php:691
3415
- #: methods/googledrive.php:696 methods/cloudfiles.php:130
 
3416
  msgid "%s Error: Failed to open local file"
3417
  msgstr ""
3418
 
3419
- #: methods/openstack-base.php:65 methods/openstack-base.php:188
3420
- #: methods/cloudfiles.php:147 methods/cloudfiles.php:189 methods/s3.php:182
3421
- #: methods/s3.php:188 methods/s3.php:189 addons/sftp.php:117
3422
- #: addons/sftp.php:127
3423
  msgid "%s Error: Failed to upload"
3424
  msgstr ""
3425
 
@@ -3427,80 +5029,76 @@ msgstr ""
3427
  msgid "Cloud Files error - failed to upload file"
3428
  msgstr ""
3429
 
3430
- #: class-updraftplus.php:697 methods/cloudfiles.php:392
3431
- #: methods/stream-base.php:274
3432
  msgid "Error opening local file: Failed to download"
3433
  msgstr ""
3434
 
3435
- #: methods/openstack-base.php:343
3436
  msgid "Error downloading remote file: Failed to download ("
3437
  msgstr ""
3438
 
3439
- #: methods/openstack-base.php:272 methods/cloudfiles.php:433
3440
- msgid "Testing - Please Wait..."
3441
- msgstr ""
3442
-
3443
- #: methods/openstack-base.php:288 methods/openstack-base.php:464
3444
- #: methods/cloudfiles.php:448 methods/cloudfiles.php:521
3445
- #: methods/stream-base.php:210 methods/stream-base.php:232 methods/s3.php:485
3446
- #: methods/s3.php:562 methods/addon-base.php:224 methods/addon-base.php:247
3447
- #: methods/ftp.php:264 methods/ftp.php:339 addons/sftp.php:376
3448
- #: addons/sftp.php:402
3449
  msgid "Test %s Settings"
3450
  msgstr ""
3451
 
3452
- #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:483
3453
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
3454
  msgstr ""
3455
 
3456
- #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:483
3457
  #: methods/openstack2.php:94
3458
  msgid "Also, you should read this important FAQ."
3459
  msgstr ""
3460
 
3461
- #: methods/googledrive.php:403
3462
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
3463
  msgstr ""
3464
 
3465
- #: methods/googledrive.php:374 methods/googledrive.php:420
3466
- #: methods/googledrive.php:426 methods/googledrive.php:428
3467
- #: methods/stream-base.php:190
3468
  msgid "Failed to upload to %s"
3469
  msgstr ""
3470
 
3471
- #: includes/BitcasaClient.php:230 includes/BitcasaClient.php:314
3472
- #: methods/googledrive.php:448 methods/googledrive.php:449
 
3473
  msgid "Account is not authorized."
3474
  msgstr ""
3475
 
3476
- #: methods/googledrive.php:840 methods/openstack-base.php:443
3477
- #: methods/cloudfiles.php:463 methods/stream-base.php:225 methods/s3.php:505
3478
- #: methods/dropbox.php:388 methods/addon-base.php:211 methods/ftp.php:313
 
3479
  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."
3480
  msgstr ""
3481
 
3482
- #: restorer.php:1401
3483
  msgid "will restore as:"
3484
  msgstr ""
3485
 
3486
- #: restorer.php:1524 addons/migrator.php:802
3487
  msgid "the database query being run was:"
3488
  msgstr ""
3489
 
3490
- #: restorer.php:1444
3491
  msgid "Finished: lines processed: %d in %.2f seconds"
3492
  msgstr ""
3493
 
3494
- #: restorer.php:1594 restorer.php:1653
3495
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
3496
  msgstr ""
3497
 
3498
- #: restorer.php:1600 restorer.php:1681 admin.php:2739 admin.php:2773
3499
- #: admin.php:2777 admin.php:4243 admin.php:4257
3500
  msgid "OK"
3501
  msgstr ""
3502
 
3503
- #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:99
3504
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
3505
  msgstr ""
3506
 
@@ -3517,919 +5115,834 @@ msgstr ""
3517
  msgid "follow this link to get it"
3518
  msgstr ""
3519
 
3520
- #: methods/googledrive.php:290
3521
  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."
3522
  msgstr ""
3523
 
3524
- #: methods/googledrive.php:298
3525
  msgid "Authorization failed"
3526
  msgstr ""
3527
 
3528
- #: methods/googledrive.php:325 methods/dropbox.php:504 addons/bitcasa.php:328
3529
- #: addons/copycom.php:407
3530
  msgid "Your %s quota usage: %s %% used, %s available"
3531
  msgstr ""
3532
 
3533
- #: methods/googledrive.php:351 methods/openstack-base.php:416
3534
- #: methods/cloudfiles.php:585 methods/stream-base.php:321 methods/s3.php:656
3535
- #: methods/addon-base.php:288 addons/sftp.php:478
 
 
3536
  msgid "Success"
3537
  msgstr ""
3538
 
3539
- #: methods/googledrive.php:351
 
3540
  msgid "you have authenticated your %s account."
3541
  msgstr ""
3542
 
3543
- #: methods/googledrive.php:486
3544
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
3545
  msgstr ""
3546
 
3547
- #: restorer.php:380
3548
  msgid "wp-config.php from backup: restoring (as per user's request)"
3549
  msgstr ""
3550
 
3551
- #: restorer.php:1067
3552
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
3553
  msgstr ""
3554
 
3555
- #: restorer.php:1085
3556
  msgid "Failed to find database file"
3557
  msgstr ""
3558
 
3559
- #: restorer.php:1099
3560
  msgid "Failed to open database file"
3561
  msgstr ""
3562
 
3563
- #: restorer.php:1104 addons/migrator.php:324
3564
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
3565
  msgstr ""
3566
 
3567
- #: backup.php:605 admin.php:1448 addons/reporting.php:130
 
3568
  msgid "Backup of:"
3569
  msgstr ""
3570
 
3571
- #: restorer.php:1220 restorer.php:1311 restorer.php:1331
3572
  msgid "Old table prefix:"
3573
  msgstr ""
3574
 
3575
- #: admin.php:4254
3576
  msgid "Archive is expected to be size:"
3577
  msgstr ""
3578
 
3579
- #: admin.php:4262
3580
  msgid "The backup records do not contain information about the proper size of this file."
3581
  msgstr ""
3582
 
3583
- #: admin.php:4335
3584
  msgid "Error message"
3585
  msgstr ""
3586
 
3587
- #: admin.php:4265 admin.php:4266
3588
  msgid "Could not find one of the files for restoration"
3589
  msgstr ""
3590
 
3591
- #: restorer.php:57
3592
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
3593
  msgstr ""
3594
 
3595
- #: restorer.php:58
3596
  msgid "Backup file not available."
3597
  msgstr ""
3598
 
3599
- #: restorer.php:59
3600
  msgid "Copying this entity failed."
3601
  msgstr ""
3602
 
3603
- #: restorer.php:60
3604
  msgid "Unpacking backup..."
3605
  msgstr ""
3606
 
3607
- #: restorer.php:61
3608
  msgid "Decrypting database (can take a while)..."
3609
  msgstr ""
3610
 
3611
- #: restorer.php:62
3612
  msgid "Database successfully decrypted."
3613
  msgstr ""
3614
 
3615
- #: restorer.php:65
3616
  msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
3617
  msgstr ""
3618
 
3619
- #: restorer.php:66
3620
  msgid "Cleaning up rubbish..."
3621
  msgstr ""
3622
 
3623
- #: restorer.php:68
3624
  msgid "Could not delete old directory."
3625
  msgstr ""
3626
 
3627
- #: restorer.php:71
3628
  msgid "Failed to delete working directory after restoring."
3629
  msgstr ""
3630
 
3631
- #: restorer.php:267
3632
  msgid "Failed to create a temporary directory"
3633
  msgstr ""
3634
 
3635
- #: restorer.php:282
3636
  msgid "Failed to write out the decrypted database to the filesystem"
3637
  msgstr ""
3638
 
3639
- #: restorer.php:375
3640
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
3641
  msgstr ""
3642
 
3643
- #: admin.php:3295
3644
  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."
3645
  msgstr ""
3646
 
3647
- #: admin.php:3319
3648
  msgid "Save Changes"
3649
  msgstr ""
3650
 
3651
- #: methods/openstack-base.php:453 methods/cloudfiles.php:473 methods/s3.php:527
3652
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
3653
  msgstr ""
3654
 
3655
- #: admin.php:3356
3656
  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)."
3657
  msgstr ""
3658
 
3659
- #: admin.php:3358
3660
  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."
3661
  msgstr ""
3662
 
3663
- #: admin.php:3361
3664
  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."
3665
  msgstr ""
3666
 
3667
- #: admin.php:3769
3668
  msgid "Delete this backup set"
3669
  msgstr ""
3670
 
3671
- #: admin.php:3683
3672
  msgid "Press here to download"
3673
  msgstr ""
3674
 
3675
- #: admin.php:3756
3676
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
3677
  msgstr ""
3678
 
3679
- #: admin.php:4079
3680
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
3681
  msgstr ""
3682
 
3683
- #: admin.php:4119
3684
  msgid "UpdraftPlus Restoration: Progress"
3685
  msgstr ""
3686
 
3687
- #: admin.php:4165
3688
  msgid "ABORT: Could not find the information on which entities to restore."
3689
  msgstr ""
3690
 
3691
- #: admin.php:4166
3692
  msgid "If making a request for support, please include this information:"
3693
  msgstr ""
3694
 
3695
- #: admin.php:3289
3696
  msgid "Do not verify SSL certificates"
3697
  msgstr ""
3698
 
3699
- #: admin.php:3290
3700
  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."
3701
  msgstr ""
3702
 
3703
- #: admin.php:3290
3704
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
3705
  msgstr ""
3706
 
3707
- #: admin.php:3294
3708
  msgid "Disable SSL entirely where possible"
3709
  msgstr ""
3710
 
3711
- #: admin.php:3236
3712
  msgid "Expert settings"
3713
  msgstr ""
3714
 
3715
- #: admin.php:3237
3716
  msgid "Show expert settings"
3717
  msgstr ""
3718
 
3719
- #: admin.php:3237
3720
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
3721
  msgstr ""
3722
 
3723
- #: admin.php:3257
3724
  msgid "Delete local backup"
3725
  msgstr ""
3726
 
3727
- #: admin.php:3262
3728
  msgid "Backup directory"
3729
  msgstr ""
3730
 
3731
- #: admin.php:3269
3732
  msgid "Backup directory specified is writable, which is good."
3733
  msgstr ""
3734
 
3735
- #: admin.php:3277
3736
  msgid "Click here to attempt to create the directory and set the permissions"
3737
  msgstr ""
3738
 
3739
- #: admin.php:3277
3740
  msgid "or, to reset this option"
3741
  msgstr ""
3742
 
3743
- #: admin.php:3277
3744
  msgid "click here"
3745
  msgstr ""
3746
 
3747
- #: admin.php:3277
3748
  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."
3749
  msgstr ""
3750
 
3751
- #: admin.php:3284
3752
  msgid "Use the server's SSL certificates"
3753
  msgstr ""
3754
 
3755
- #: admin.php:3285
3756
  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."
3757
  msgstr ""
3758
 
3759
- #: admin.php:3037
3760
- msgid "Use WordShell for automatic backup, version control and patching"
3761
- msgstr ""
3762
-
3763
- #: admin.php:3128 udaddons/options.php:137
3764
  msgid "Email"
3765
  msgstr ""
3766
 
3767
- #: admin.php:3048
3768
  msgid "Database encryption phrase"
3769
  msgstr ""
3770
 
3771
- #: admin.php:3064
3772
  msgid "Manually decrypt a database backup file"
3773
  msgstr ""
3774
 
3775
- #: admin.php:3144
3776
- msgid "Copying Your Backup To Remote Storage"
3777
- msgstr ""
3778
-
3779
- #: admin.php:3154
3780
  msgid "Choose your remote storage"
3781
  msgstr ""
3782
 
3783
- #: admin.php:3163 addons/reporting.php:184
3784
  msgid "None"
3785
  msgstr ""
3786
 
3787
- #: admin.php:168
3788
  msgid "Cancel"
3789
  msgstr ""
3790
 
3791
- #: admin.php:152
3792
  msgid "Requesting start of backup..."
3793
  msgstr ""
3794
 
3795
- #: admin.php:3232
3796
  msgid "Advanced / Debugging Settings"
3797
  msgstr ""
3798
 
3799
- #: admin.php:3247
3800
  msgid "Debug mode"
3801
  msgstr ""
3802
 
3803
- #: admin.php:3036
3804
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
3805
  msgstr ""
3806
 
3807
- #: admin.php:2933
3808
  msgid "Daily"
3809
  msgstr ""
3810
 
3811
- #: admin.php:2934
3812
  msgid "Weekly"
3813
  msgstr ""
3814
 
3815
- #: admin.php:2935
3816
  msgid "Fortnightly"
3817
  msgstr ""
3818
 
3819
- #: admin.php:2936
3820
  msgid "Monthly"
3821
  msgstr ""
3822
 
3823
- #: admin.php:2981
3824
- msgid "Database backup intervals"
3825
- msgstr ""
3826
-
3827
- #: admin.php:3000
3828
  msgid "To fix the time at which a backup should take place,"
3829
  msgstr ""
3830
 
3831
- #: admin.php:3000
3832
  msgid "e.g. if your server is busy at day and you want to run overnight"
3833
  msgstr ""
3834
 
3835
- #: admin.php:3004
3836
  msgid "Include in files backup"
3837
  msgstr ""
3838
 
3839
- #: admin.php:3016
3840
  msgid "Any other directories found inside wp-content"
3841
  msgstr ""
3842
 
3843
- #: admin.php:3022 addons/morefiles.php:254
3844
  msgid "Exclude these:"
3845
  msgstr ""
3846
 
3847
- #: admin.php:2476
3848
  msgid "Debug Database Backup"
3849
  msgstr ""
3850
 
3851
- #: admin.php:2476
3852
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
3853
  msgstr ""
3854
 
3855
- #: admin.php:2482
3856
- msgid "Wipe Settings"
3857
- msgstr ""
3858
-
3859
- #: admin.php:2483
3860
- msgid "This button will delete all UpdraftPlus settings (but not any of your existing backups from your cloud storage). You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
3861
- msgstr ""
3862
-
3863
- #: admin.php:2486
3864
- msgid "Wipe All Settings"
3865
- msgstr ""
3866
-
3867
- #: admin.php:2486
3868
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
3869
  msgstr ""
3870
 
3871
- #: admin.php:2676
3872
  msgid "show log"
3873
  msgstr ""
3874
 
3875
- #: admin.php:2678
3876
- msgid "delete schedule"
3877
- msgstr ""
3878
-
3879
- #: admin.php:169 admin.php:2733 admin.php:2766 admin.php:3769
3880
  msgid "Delete"
3881
  msgstr ""
3882
 
3883
- #: admin.php:2817
3884
  msgid "The request to the filesystem to create the directory failed."
3885
  msgstr ""
3886
 
3887
- #: admin.php:2831
3888
  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"
3889
  msgstr ""
3890
 
3891
- #: admin.php:2836
3892
  msgid "The folder exists, but your webserver does not have permission to write to it."
3893
  msgstr ""
3894
 
3895
- #: admin.php:173 admin.php:2916
3896
  msgid "Download log file"
3897
  msgstr ""
3898
 
3899
- #: admin.php:2920
3900
- msgid "No backup has been completed."
3901
- msgstr ""
3902
-
3903
- #: admin.php:2949
3904
- msgid "File backup intervals"
3905
- msgstr ""
3906
-
3907
- #: admin.php:2929
3908
- msgid "Manual"
3909
- msgstr ""
3910
-
3911
- #: admin.php:2181
3912
- msgid "Go here for help."
3913
- msgstr ""
3914
-
3915
- #: admin.php:2187
3916
  msgid "Multisite"
3917
  msgstr ""
3918
 
3919
- #: admin.php:2191
3920
  msgid "Do you need WordPress Multisite support?"
3921
  msgstr ""
3922
 
3923
- #: admin.php:2191
3924
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
3925
  msgstr ""
3926
 
3927
- #: admin.php:2204
3928
- msgid "Configure Backup Contents And Schedule"
3929
- msgstr ""
3930
-
3931
- #: admin.php:2397
3932
  msgid "Web server:"
3933
  msgstr ""
3934
 
3935
- #: admin.php:2405
3936
  msgid "Peak memory usage"
3937
  msgstr ""
3938
 
3939
- #: admin.php:2406
3940
  msgid "Current memory usage"
3941
  msgstr ""
3942
 
3943
- #: admin.php:2408 admin.php:2409 admin.php:2416
3944
  msgid "%s version:"
3945
  msgstr ""
3946
 
3947
- #: admin.php:2418 admin.php:2421 admin.php:2425
3948
  msgid "Yes"
3949
  msgstr ""
3950
 
3951
- #: admin.php:2421 admin.php:2425
3952
  msgid "No"
3953
  msgstr ""
3954
 
3955
- #: admin.php:2448
3956
  msgid "Total (uncompressed) on-disk data:"
3957
  msgstr ""
3958
 
3959
- #: admin.php:2449
3960
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
3961
  msgstr ""
3962
 
3963
- #: admin.php:2457
3964
  msgid "count"
3965
  msgstr ""
3966
 
3967
- #: admin.php:2471
3968
  msgid "Debug Full Backup"
3969
  msgstr ""
3970
 
3971
- #: admin.php:2471
3972
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
3973
  msgstr ""
3974
 
3975
- #: admin.php:2258
3976
  msgid "UpdraftPlus - Upload backup files"
3977
  msgstr ""
3978
 
3979
- #: admin.php:2270 admin.php:3077
3980
- msgid "or"
3981
- msgstr ""
3982
-
3983
- #: admin.php:136 admin.php:2236
3984
  msgid "calculating..."
3985
  msgstr ""
3986
 
3987
- #: restorer.php:1029 admin.php:145 admin.php:4259 admin.php:4289
3988
- #: addons/cloudfiles-enhanced.php:88 addons/sftp.php:730
3989
- #: addons/migrator.php:233 addons/migrator.php:467 addons/migrator.php:668
3990
- #: addons/migrator.php:732 addons/migrator.php:802 addons/migrator.php:1016
 
 
 
 
 
3991
  msgid "Error:"
3992
  msgstr ""
3993
 
3994
- #: admin.php:147
3995
  msgid "You should:"
3996
  msgstr ""
3997
 
3998
- #: admin.php:151
3999
  msgid "Download error: the server sent us a response which we did not understand."
4000
  msgstr ""
4001
 
4002
- #: admin.php:2296
4003
  msgid "Delete backup set"
4004
  msgstr ""
4005
 
4006
- #: admin.php:2314
4007
  msgid "Restore backup"
4008
  msgstr ""
4009
 
4010
- #: admin.php:2315
4011
  msgid "Restore backup from"
4012
  msgstr ""
4013
 
4014
- #: admin.php:2327
4015
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
4016
  msgstr ""
4017
 
4018
- #: admin.php:2327
4019
  msgid "Choose the components to restore"
4020
  msgstr ""
4021
 
4022
- #: admin.php:2337
4023
  msgid "Your web server has PHP's so-called safe_mode active."
4024
  msgstr ""
4025
 
4026
- #: admin.php:2337
4027
- msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"http://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
4028
- msgstr ""
4029
-
4030
- #: admin.php:2350
4031
  msgid "The following entity cannot be restored automatically: \"%s\"."
4032
  msgstr ""
4033
 
4034
- #: admin.php:2350
4035
  msgid "You will need to restore it manually."
4036
  msgstr ""
4037
 
4038
- #: admin.php:2357 addons/morefiles.php:63
4039
  msgid "%s restoration options:"
4040
  msgstr ""
4041
 
4042
- #: admin.php:2365
4043
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
4044
  msgstr ""
4045
 
4046
- #: admin.php:2376
4047
  msgid "Do read this helpful article of useful things to know before restoring."
4048
  msgstr ""
4049
 
4050
- #: admin.php:2170
4051
  msgid "Perform a one-time backup"
4052
  msgstr ""
4053
 
4054
- #: admin.php:2100
4055
- msgid "Time now"
4056
- msgstr ""
4057
-
4058
- #: admin.php:167 admin.php:2047
4059
  msgid "Backup Now"
4060
  msgstr ""
4061
 
4062
- #: admin.php:172 admin.php:2050 admin.php:3758
4063
  msgid "Restore"
4064
  msgstr ""
4065
 
4066
- #: admin.php:2120 addons/autobackup.php:215 addons/autobackup.php:302
 
4067
  msgid "Last log message"
4068
  msgstr ""
4069
 
4070
- #: admin.php:2122
4071
  msgid "(Nothing yet logged)"
4072
  msgstr ""
4073
 
4074
- #: admin.php:2123
4075
  msgid "Download most recently modified log file"
4076
  msgstr ""
4077
 
4078
- #: admin.php:2128
4079
- msgid "Backups, logs & restoring"
4080
- msgstr ""
4081
-
4082
- #: admin.php:2129
4083
- msgid "Press to see available backups"
4084
- msgstr ""
4085
-
4086
- #: admin.php:2129
4087
- msgid "%d set(s) available"
4088
- msgstr ""
4089
-
4090
- #: admin.php:2230
4091
- msgid "Downloading"
4092
- msgstr ""
4093
-
4094
- #: admin.php:2239
4095
  msgid "More tasks:"
4096
  msgstr ""
4097
 
4098
- #: admin.php:2246
4099
  msgid "Opera web browser"
4100
  msgstr ""
4101
 
4102
- #: admin.php:2246
4103
  msgid "If you are using this, then turn Turbo/Road mode off."
4104
  msgstr ""
4105
 
4106
- #: admin.php:2251 methods/googledrive.php:139 methods/googledrive.php:351
4107
- #: methods/googledrive.php:374 methods/googledrive.php:403
4108
- #: methods/googledrive.php:410 methods/googledrive.php:420
4109
- #: methods/googledrive.php:426 methods/googledrive.php:428
4110
- #: methods/googledrive.php:839 methods/googledrive.php:851
4111
- #: methods/googledrive.php:867 methods/googledrive.php:871
4112
- #: methods/googledrive.php:882 methods/googledrive.php:892
4113
- #: addons/google-enhanced.php:72
4114
  msgid "Google Drive"
4115
  msgstr ""
4116
 
4117
- #: admin.php:2251
4118
- msgid "Google changed their permissions setup recently (April 2013). To download or restore from Google Drive, you <strong>must</strong> first re-authenticate (using the link in the Google Drive configuration section)."
4119
- msgstr ""
4120
-
4121
- #: admin.php:2236
4122
- msgid "This is a count of the contents of your Updraft directory"
4123
- msgstr ""
4124
-
4125
- #: admin.php:2236
4126
  msgid "Web-server disk space in use by UpdraftPlus"
4127
  msgstr ""
4128
 
4129
- #: admin.php:2236
4130
  msgid "refresh"
4131
  msgstr ""
4132
 
4133
- #: admin.php:1858
4134
  msgid "Lead developer's homepage"
4135
  msgstr ""
4136
 
4137
- #: admin.php:1858
4138
- msgid "Donate"
4139
- msgstr ""
4140
-
4141
- #: admin.php:1858
4142
  msgid "Version"
4143
  msgstr ""
4144
 
4145
- #: admin.php:1973
4146
  msgid "Your backup has been restored."
4147
  msgstr ""
4148
 
4149
- #: admin.php:1974
4150
- msgid "Your old (themes, uploads, plugins, whatever) directories have been retained with \"-old\" appended to their name. Remove them when you are satisfied that the backup worked properly."
4151
- msgstr ""
4152
-
4153
- #: admin.php:1982
4154
  msgid "Current limit is:"
4155
  msgstr ""
4156
 
4157
- #: admin.php:154 admin.php:2500
4158
  msgid "Delete Old Directories"
4159
  msgstr ""
4160
 
4161
- #: admin.php:2031
4162
  msgid "JavaScript warning"
4163
  msgstr ""
4164
 
4165
- #: admin.php:2032
4166
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
4167
  msgstr ""
4168
 
4169
- #: admin.php:2067 admin.php:2080
4170
  msgid "Nothing currently scheduled"
4171
  msgstr ""
4172
 
4173
- #: admin.php:2072
4174
  msgid "At the same time as the files backup"
4175
  msgstr ""
4176
 
4177
- #: admin.php:2092
4178
- msgid "All the times shown in this section are using WordPress's configured time zone, which you can set in Settings -> General"
4179
- msgstr ""
4180
-
4181
- #: admin.php:2092
4182
  msgid "Next scheduled backups"
4183
  msgstr ""
4184
 
4185
- #: admin.php:2096
4186
  msgid "Files"
4187
  msgstr ""
4188
 
4189
- #: admin.php:882 admin.php:2098 admin.php:2355 admin.php:2357 admin.php:3601
4190
- #: admin.php:4324 addons/reporting.php:196 addons/moredatabase.php:188
 
4191
  msgid "Database"
4192
  msgstr ""
4193
 
4194
- #: admin.php:492
4195
  msgid "Your website is hosted using the %s web server."
4196
  msgstr ""
4197
 
4198
- #: admin.php:492
4199
  msgid "Please consult this FAQ if you have problems backing up."
4200
  msgstr ""
4201
 
4202
- #: admin.php:507 admin.php:511 admin.php:515 admin.php:519
 
4203
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
4204
  msgstr ""
4205
 
4206
- #: admin.php:711 admin.php:748
4207
  msgid "Nothing yet logged"
4208
  msgstr ""
4209
 
4210
- #: admin.php:1129
4211
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
4212
  msgstr ""
4213
 
4214
- #: admin.php:1156
4215
  msgid "Job deleted"
4216
  msgstr ""
4217
 
4218
- #: admin.php:1163
4219
  msgid "Could not find that job - perhaps it has already finished?"
4220
  msgstr ""
4221
 
4222
- #: class-updraftplus.php:697 restorer.php:1596 restorer.php:1613
4223
- #: restorer.php:1678 admin.php:1176 admin.php:4241 methods/stream-base.php:190
4224
  #: methods/addon-base.php:75 methods/addon-base.php:80
4225
- #: methods/addon-base.php:175 methods/addon-base.php:195
 
 
4226
  msgid "Error"
4227
  msgstr ""
4228
 
4229
- #: admin.php:1314
4230
  msgid "Download failed"
4231
  msgstr ""
4232
 
4233
- #: admin.php:146 admin.php:1332
4234
  msgid "File ready."
4235
  msgstr ""
4236
 
4237
- #: admin.php:1342
4238
  msgid "Download in progress"
4239
  msgstr ""
4240
 
4241
- #: admin.php:1345
4242
  msgid "No local copy present."
4243
  msgstr ""
4244
 
4245
- #: admin.php:1748
4246
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
4247
  msgstr ""
4248
 
4249
- #: admin.php:1838
4250
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
4251
  msgstr ""
4252
 
4253
- #: admin.php:1885
4254
  msgid "Restore successful!"
4255
  msgstr ""
4256
 
4257
- #: admin.php:1894 admin.php:1903 admin.php:1940 admin.php:2037 admin.php:2707
4258
- #: admin.php:3483
4259
  msgid "Actions"
4260
  msgstr ""
4261
 
4262
- #: admin.php:1894 admin.php:1903 admin.php:1940 admin.php:2707
4263
- #: addons/migrator.php:100 addons/migrator.php:112
4264
  msgid "Return to UpdraftPlus Configuration"
4265
  msgstr ""
4266
 
4267
- #: admin.php:2700
4268
  msgid "Remove old directories"
4269
  msgstr ""
4270
 
4271
- #: admin.php:2703
4272
  msgid "Old directories successfully removed."
4273
  msgstr ""
4274
 
4275
- #: admin.php:2705
4276
  msgid "Old directory removal failed for some reason. You may want to do this manually."
4277
  msgstr ""
4278
 
4279
- #: admin.php:1931
4280
  msgid "Backup directory could not be created"
4281
  msgstr ""
4282
 
4283
- #: admin.php:1938
4284
  msgid "Backup directory successfully created."
4285
  msgstr ""
4286
 
4287
- #: admin.php:1961
4288
  msgid "Your settings have been wiped."
4289
  msgstr ""
4290
 
4291
- #: class-updraftplus.php:2558
4292
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
4293
  msgstr ""
4294
 
4295
- #: class-updraftplus.php:2565
4296
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
4297
  msgstr ""
4298
 
4299
- #: class-updraftplus.php:2575
4300
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
4301
  msgstr ""
4302
 
4303
- #: backup.php:1563
4304
  msgid "Infinite recursion: consult your log for more information"
4305
  msgstr ""
4306
 
4307
- #: backup.php:204
4308
  msgid "Could not create %s zip. Consult the log file for more information."
4309
  msgstr ""
4310
 
4311
- #: admin.php:220 admin.php:257
4312
  msgid "Allowed Files"
4313
  msgstr ""
4314
 
4315
- #: admin.php:425 admin.php:2010
4316
  msgid "Settings"
4317
  msgstr ""
4318
 
4319
- #: admin.php:429
4320
  msgid "Add-Ons / Pro Support"
4321
  msgstr ""
4322
 
4323
- #: admin.php:476 admin.php:480 admin.php:484 admin.php:488 admin.php:492
4324
- #: admin.php:501 admin.php:2225 admin.php:3349 admin.php:3356 admin.php:3358
4325
- #: udaddons/updraftplus-addons.php:158 methods/openstack-base.php:453
4326
- #: methods/cloudfiles.php:473 methods/s3.php:527 methods/dropbox.php:399
4327
- #: methods/ftp.php:299
4328
  msgid "Warning"
4329
  msgstr ""
4330
 
4331
- #: admin.php:484
4332
  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."
4333
  msgstr ""
4334
 
4335
- #: admin.php:488
4336
  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."
4337
  msgstr ""
4338
 
4339
- #: backup.php:606
4340
  msgid "WordPress backup is complete"
4341
  msgstr ""
4342
 
4343
- #: backup.php:782 restorer.php:135 admin.php:1666
4344
  msgid "Backup directory (%s) is not writable, or does not exist."
4345
  msgstr ""
4346
 
4347
- #: class-updraftplus.php:2149
4348
  msgid "Could not read the directory"
4349
  msgstr ""
4350
 
4351
- #: class-updraftplus.php:2168
4352
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
4353
  msgstr ""
4354
 
4355
- #: backup.php:1470
4356
  msgid "Could not open the backup file for writing"
4357
  msgstr ""
4358
 
4359
- #: class-updraftplus.php:2399 restorer.php:275 admin.php:1382
4360
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
4361
  msgstr ""
4362
 
4363
- #: class-updraftplus.php:2410 restorer.php:285 admin.php:1399
4364
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
4365
  msgstr ""
4366
 
4367
- #: class-updraftplus.php:2410
4368
  msgid "The decryption key used:"
4369
  msgstr ""
4370
 
4371
- #: class-updraftplus.php:2450 methods/googledrive.php:774
4372
  msgid "File not found"
4373
  msgstr ""
4374
 
4375
- #: class-updraftplus.php:2550
4376
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
4377
  msgstr ""
4378
 
4379
- #: class-updraftplus.php:2558
4380
  msgid "Like UpdraftPlus and can spare one minute?"
4381
  msgstr ""
4382
 
4383
- #: class-updraftplus.php:1018
4384
  msgid "Themes"
4385
  msgstr ""
4386
 
4387
- #: class-updraftplus.php:1019
4388
  msgid "Uploads"
4389
  msgstr ""
4390
 
4391
- #: class-updraftplus.php:1034
4392
  msgid "Others"
4393
  msgstr ""
4394
 
4395
- #: class-updraftplus.php:1567
4396
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
4397
  msgstr ""
4398
 
4399
- #: addons/moredatabase.php:270
4400
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
4401
  msgstr ""
4402
 
4403
- #: class-updraftplus.php:1738
4404
  msgid "The backup apparently succeeded and is now complete"
4405
  msgstr ""
4406
 
4407
- #: class-updraftplus.php:1752
4408
  msgid "The backup attempt has finished, apparently unsuccessfully"
4409
  msgstr ""
4410
 
4411
- #: options.php:34 addons/multisite.php:60 addons/multisite.php:307
4412
  msgid "UpdraftPlus Backups"
4413
  msgstr ""
4414
 
4415
- #: class-updraftplus.php:264 class-updraftplus.php:269
4416
- #: class-updraftplus.php:274 admin.php:507 admin.php:511 admin.php:515
4417
- #: admin.php:519
 
4418
  msgid "UpdraftPlus notice:"
4419
  msgstr ""
4420
 
4421
- #: class-updraftplus.php:264 admin.php:1268 admin.php:1272
4422
  msgid "The log file could not be read."
4423
  msgstr ""
4424
 
4425
- #: class-updraftplus.php:269
4426
  msgid "No log files were found."
4427
  msgstr ""
4428
 
4429
- #: class-updraftplus.php:274
4430
- msgid "The given file could not be read."
4431
- msgstr ""
4432
-
4433
- #: class-updraftplus.php:1017
4434
  msgid "Plugins"
4435
  msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
+ #: admin.php:2162
14
+ msgid "FAQs"
15
  msgstr ""
16
 
17
+ #: udaddons/plugin-updates/github-checker.php:120
18
+ msgid "There is no changelog available."
19
+ msgstr ""
20
+
21
+ #: udaddons/plugin-updates/plugin-update-checker.php:648
22
+ msgid "Check for updates"
23
+ msgstr ""
24
+
25
+ #: udaddons/plugin-updates/plugin-update-checker.php:692
26
+ msgid "This plugin is up to date."
27
+ msgstr ""
28
+
29
+ #: udaddons/plugin-updates/plugin-update-checker.php:694
30
+ msgid "A new version of this plugin is available."
31
+ msgstr ""
32
+
33
+ #: udaddons/plugin-updates/plugin-update-checker.php:696
34
+ msgid "Unknown update checker status \"%s\""
35
+ msgstr ""
36
+
37
+ #: backup.php:1973
38
+ msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
+ msgstr ""
40
+
41
+ #: backup.php:1987
42
+ msgid "Failed to open directory (check the file permissions and ownership): %s"
43
+ msgstr ""
44
+
45
+ #: central/bootstrap.php:419
46
+ msgid "Public key was sent to:"
47
+ msgstr ""
48
+
49
+ #: central/bootstrap.php:424
50
+ msgid "Key size: %d bits"
51
+ msgstr ""
52
+
53
+ #: central/bootstrap.php:439
54
+ msgid "Dashboard at"
55
+ msgstr ""
56
+
57
+ #: central/bootstrap.php:439
58
+ msgid "Use the alternative method for making a connection with the dashboard."
59
+ msgstr ""
60
+
61
+ #: central/bootstrap.php:439
62
+ msgid "More information..."
63
+ msgstr ""
64
+
65
+ #: central/bootstrap.php:439
66
+ msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
+ msgstr ""
68
+
69
+ #: addons/migrator.php:2158
70
+ msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
71
+ msgstr ""
72
+
73
+ #: addons/migrator.php:2159
74
+ msgid "Enter your chosen name"
75
+ msgstr ""
76
+
77
+ #: addons/migrator.php:2161 central/bootstrap.php:441
78
+ msgid "Encryption key size:"
79
+ msgstr ""
80
+
81
+ #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
+ #: central/bootstrap.php:442 central/bootstrap.php:443
83
+ #: central/bootstrap.php:445
84
+ msgid "%s bits"
85
+ msgstr ""
86
+
87
+ #: addons/migrator.php:2163 central/bootstrap.php:442
88
+ msgid "easy to break, fastest"
89
+ msgstr ""
90
+
91
+ #: addons/migrator.php:2164 central/bootstrap.php:443
92
+ msgid "faster (possibility for slow PHP installs)"
93
+ msgstr ""
94
+
95
+ #: addons/migrator.php:2165 central/bootstrap.php:444
96
+ msgid "%s bytes"
97
+ msgstr ""
98
+
99
+ #: addons/migrator.php:2165 central/bootstrap.php:444
100
+ msgid "recommended"
101
+ msgstr ""
102
+
103
+ #: addons/migrator.php:2166 central/bootstrap.php:445
104
+ msgid "slower, strongest"
105
+ msgstr ""
106
+
107
+ #: addons/migrator.php:2169
108
+ msgid "Create key"
109
+ msgstr ""
110
+
111
+ #: central/bootstrap.php:439
112
+ msgid "i.e. you have an account there"
113
+ msgstr ""
114
+
115
+ #: central/bootstrap.php:439
116
+ msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
+ msgstr ""
118
+
119
+ #: class-updraftplus.php:1240
120
+ msgid "Size: %s MB"
121
+ msgstr ""
122
+
123
+ #: methods/email.php:28
124
+ msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
+ msgstr ""
126
+
127
+ #: methods/email.php:77
128
+ msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
+ msgstr ""
130
+
131
+ #: methods/ftp.php:355
132
+ msgid "login"
133
+ msgstr ""
134
+
135
+ #: methods/ftp.php:383
136
+ msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
+ msgstr ""
138
+
139
+ #: methods/googledrive.php:417
140
+ msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
+ msgstr ""
142
+
143
+ #: admin.php:2453
144
+ msgid "Now"
145
+ msgstr ""
146
+
147
+ #: admin.php:2604
148
+ msgid "Free 1GB for UpdraftPlus Vault"
149
+ msgstr ""
150
+
151
+ #: admin.php:3959
152
+ 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)."
153
+ msgstr ""
154
+
155
+ #: class-updraftplus.php:3529 restorer.php:926
156
+ msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
157
+ msgstr ""
158
+
159
+ #: admin.php:3770
160
+ msgid "(tap on an icon to select or unselect)"
161
+ msgstr ""
162
+
163
+ #: backup.php:833 class-updraftplus.php:2411
164
+ msgid "The backup was aborted by the user"
165
+ msgstr ""
166
+
167
+ #: central/bootstrap.php:50
168
+ msgid "UpdraftCentral Connection"
169
+ msgstr ""
170
+
171
+ #: central/bootstrap.php:53
172
+ msgid "An UpdraftCentral connection has been made successfully."
173
+ msgstr ""
174
+
175
+ #: central/bootstrap.php:55
176
+ msgid "A new UpdraftCentral connection has not been made."
177
+ msgstr ""
178
+
179
+ #: central/bootstrap.php:58
180
+ msgid "The key referred to was unknown."
181
+ msgstr ""
182
+
183
+ #: central/bootstrap.php:64
184
+ msgid "You are not logged into this WordPress site in your web browser."
185
+ msgstr ""
186
+
187
+ #: central/bootstrap.php:64
188
+ msgid "You must visit this URL in the same browser and login session as you created the key in."
189
+ msgstr ""
190
+
191
+ #: central/bootstrap.php:71
192
+ msgid "You must visit this link in the same browser and login session as you created the key in."
193
+ msgstr ""
194
+
195
+ #: central/bootstrap.php:75
196
+ msgid "This connection appears to already have been made."
197
+ msgstr ""
198
+
199
+ #: central/bootstrap.php:83
200
+ msgid "Close..."
201
+ msgstr ""
202
+
203
+ #: central/bootstrap.php:196
204
+ msgid "An invalid URL was entered"
205
+ msgstr ""
206
+
207
+ #: central/bootstrap.php:313 central/bootstrap.php:324
208
+ msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
209
+ msgstr ""
210
+
211
+ #: central/bootstrap.php:381
212
+ msgid "Key description"
213
+ msgstr ""
214
+
215
+ #: central/bootstrap.php:381
216
+ msgid "Details"
217
+ msgstr ""
218
+
219
+ #: central/bootstrap.php:387
220
+ msgid "No keys have yet been created."
221
+ msgstr ""
222
+
223
+ #: central/bootstrap.php:419
224
+ msgid "Access this site as user:"
225
+ msgstr ""
226
+
227
+ #: central/bootstrap.php:422
228
+ msgid "Created:"
229
+ msgstr ""
230
+
231
+ #: central/bootstrap.php:429
232
+ msgid "Delete..."
233
+ msgstr ""
234
+
235
+ #: central/bootstrap.php:435
236
+ msgid "Create new key"
237
+ msgstr ""
238
+
239
+ #: central/bootstrap.php:437
240
+ msgid "Description"
241
+ msgstr ""
242
+
243
+ #: central/bootstrap.php:437
244
+ msgid "Enter any description"
245
+ msgstr ""
246
+
247
+ #: central/bootstrap.php:439
248
+ msgid "URL of mothership"
249
+ msgstr ""
250
+
251
+ #: central/bootstrap.php:452
252
+ msgid "View recent UpdraftCentral log events"
253
+ msgstr ""
254
+
255
+ #: central/bootstrap.php:452
256
+ msgid "fetch..."
257
+ msgstr ""
258
+
259
+ #: central/bootstrap.php:463
260
+ msgid "UpdraftCentral (Remote Control)"
261
+ msgstr ""
262
+
263
+ #: class-updraftplus.php:356 class-updraftplus.php:401
264
+ msgid "The given file was not found, or could not be read."
265
+ msgstr ""
266
+
267
+ #: methods/updraftvault.php:214
268
+ msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
269
+ msgstr ""
270
+
271
+ #: methods/updraftvault.php:269 methods/updraftvault.php:275
272
+ #: methods/updraftvault.php:281
273
+ msgid "or (annual discount)"
274
+ msgstr ""
275
+
276
+ #: methods/updraftvault.php:270 methods/updraftvault.php:276
277
+ #: methods/updraftvault.php:282
278
+ msgid "%s per year"
279
+ msgstr ""
280
+
281
+ #: addons/copycom.php:60 addons/copycom.php:526
282
+ msgid "Barracuda are closing down Copy.Com on May 1st, 2016. See:"
283
+ msgstr ""
284
+
285
+ #: addons/s3-enhanced.php:305
286
+ msgid "Asia Pacific (Seoul)"
287
+ msgstr ""
288
+
289
+ #: admin.php:477
290
+ msgid "Fetching..."
291
+ msgstr ""
292
+
293
+ #: admin.php:485
294
+ msgid "Error: the server sent us a response which we did not understand."
295
+ msgstr ""
296
+
297
+ #: admin.php:521
298
+ msgid "Saving..."
299
+ msgstr ""
300
+
301
+ #: admin.php:538
302
+ msgid "Please enter a valid URL"
303
+ msgstr ""
304
+
305
+ #: admin.php:539
306
+ msgid "We requested to delete the file, but could not understand the server's response"
307
+ msgstr ""
308
+
309
+ #: admin.php:545
310
+ msgid "You should save your changes to ensure that they are used for making your backup."
311
+ msgstr ""
312
+
313
+ #: admin.php:2599
314
+ msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
315
+ msgstr ""
316
+
317
+ #: admin.php:2863
318
+ msgid "calculate"
319
+ msgstr ""
320
+
321
+ #: admin.php:2934
322
+ msgid "this backup set"
323
+ msgstr ""
324
+
325
+ #: admin.php:2937
326
+ msgid "these backup sets"
327
+ msgstr ""
328
+
329
+ #: admin.php:3103
330
+ msgid "reset"
331
+ msgstr ""
332
+
333
+ #: admin.php:3149 admin.php:3153
334
+ msgid "Wipe settings"
335
+ msgstr ""
336
+
337
+ #: admin.php:3220
338
+ msgid "The backup has finished running"
339
+ msgstr ""
340
+
341
+ #: admin.php:3382
342
+ msgid "stop"
343
+ msgstr ""
344
+
345
+ #: admin.php:4294
346
+ msgid "Total backup size:"
347
+ msgstr ""
348
+
349
+ #: admin.php:5212
350
+ msgid "Your settings have been saved."
351
+ msgstr ""
352
+
353
+ #: addons/onedrive.php:50
354
+ msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
355
+ msgstr ""
356
+
357
+ #: backup.php:386
358
+ msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
359
+ msgstr ""
360
+
361
+ #: restorer.php:1533
362
+ msgid "Uploads URL:"
363
+ msgstr ""
364
+
365
+ #: addons/multisite.php:374 addons/multisite.php:384
366
+ msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
367
+ msgstr ""
368
+
369
+ #: addons/multisite.php:525
370
+ msgid "Which site to restore"
371
+ msgstr ""
372
+
373
+ #: addons/multisite.php:528
374
+ msgid "All sites"
375
+ msgstr ""
376
+
377
+ #: addons/multisite.php:533
378
+ msgid "may include some site-wide data"
379
+ msgstr ""
380
+
381
+ #: addons/multisite.php:542
382
+ msgid "N.B. this option only affects the restoration of the database and uploads - other file entities (such as plugins) in WordPress are shared by the whole network."
383
+ msgstr ""
384
+
385
+ #: addons/multisite.php:542
386
+ msgid "Read more..."
387
+ msgstr ""
388
+
389
+ #: admin.php:556
390
+ msgid "Please fill in the required information."
391
+ msgstr ""
392
+
393
+ #: admin.php:2727
394
+ msgid "Dismiss"
395
+ msgstr ""
396
+
397
+ #: class-updraftplus.php:3576
398
+ msgid "It will be imported as a new site."
399
+ msgstr ""
400
+
401
+ #: class-updraftplus.php:3576
402
+ msgid "Please read this link for important information on this process."
403
+ msgstr ""
404
+
405
+ #: class-updraftplus.php:3580 restorer.php:1553
406
+ msgid "To import an ordinary WordPress site into a multisite installation requires %s."
407
+ msgstr ""
408
+
409
+ #: restorer.php:1894
410
+ msgid "Skipping table %s: this table will not be restored"
411
+ msgstr ""
412
+
413
+ #: addons/migrator.php:352 addons/migrator.php:355 addons/migrator.php:358
414
+ msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
415
+ msgstr ""
416
+
417
+ #: addons/migrator.php:352
418
+ msgid "WordPress core"
419
+ msgstr ""
420
+
421
+ #: addons/migrator.php:355
422
+ msgid "other content from wp-content"
423
+ msgstr ""
424
+
425
+ #: addons/migrator.php:364 addons/migrator.php:366
426
+ msgid "Importing a single site into a multisite install"
427
+ msgstr ""
428
+
429
+ #: addons/migrator.php:366
430
+ msgid "This feature is not compatible with %s"
431
+ msgstr ""
432
+
433
+ #: addons/migrator.php:386 addons/migrator.php:388
434
+ msgid "You must use lower-case letters or numbers for the site path, only."
435
+ msgstr ""
436
+
437
+ #: addons/migrator.php:396
438
+ msgid "Attribute imported content to user"
439
+ msgstr ""
440
+
441
+ #: addons/migrator.php:434
442
+ msgid "Required information for restoring this backup was not given (%s)"
443
+ msgstr ""
444
+
445
+ #: addons/migrator.php:491 addons/migrator.php:492
446
+ msgid "Error when creating new site at your chosen address:"
447
+ msgstr ""
448
+
449
+ #: addons/migrator.php:517
450
+ msgid "<strong>ERROR</strong>: problem creating site entry."
451
+ msgstr ""
452
+
453
+ #: admin.php:3101
454
+ msgid "Call WordPress action:"
455
+ msgstr ""
456
+
457
+ #: admin.php:2751
458
+ msgid "Your saved settings also affect what is backed up - e.g. files excluded."
459
+ msgstr ""
460
+
461
+ #: admin.php:354 admin.php:2395
462
+ msgid "Advanced Tools"
463
+ msgstr ""
464
+
465
+ #: admin.php:362
466
+ msgid "Extensions"
467
+ msgstr ""
468
+
469
+ #: admin.php:471
470
+ msgid "You have chosen to backup files, but no file entities have been selected"
471
+ msgstr ""
472
+
473
+ #: admin.php:544
474
+ msgctxt "(verb)"
475
+ msgid "Download"
476
+ msgstr ""
477
+
478
+ #: admin.php:2192 admin.php:2201
479
+ msgid "Sufficient information about the in-progress restoration operation could not be found."
480
+ msgstr ""
481
+
482
+ #: admin.php:2396
483
+ msgid "Premium / Extensions"
484
+ msgstr ""
485
+
486
+ #: admin.php:2521
487
+ msgid "Backup Contents And Schedule"
488
+ msgstr ""
489
+
490
+ #: admin.php:2718
491
+ msgid "%s minutes, %s seconds"
492
+ msgstr ""
493
+
494
+ #: admin.php:2720
495
+ msgid "Unfinished restoration"
496
+ msgstr ""
497
+
498
+ #: admin.php:2721
499
+ msgid "You have an unfinished restoration operation, begun %s ago."
500
+ msgstr ""
501
+
502
+ #: admin.php:2726
503
+ msgid "Continue restoration"
504
+ msgstr ""
505
+
506
+ #: admin.php:2747
507
+ msgid "Include the database in the backup"
508
+ msgstr ""
509
+
510
+ #: admin.php:2749
511
+ msgid "Include any files in the backup"
512
+ msgstr ""
513
+
514
+ #: admin.php:5111
515
+ msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
516
+ msgstr ""
517
+
518
+ #: admin.php:5111
519
+ msgid "settings"
520
+ msgstr ""
521
+
522
+ #: admin.php:5111
523
+ msgid "Not got any remote storage?"
524
+ msgstr ""
525
+
526
+ #: admin.php:5111
527
+ msgid "Check out UpdraftPlus Vault."
528
+ msgstr ""
529
+
530
+ #: admin.php:5113
531
+ msgid "Send this backup to remote storage"
532
+ msgstr ""
533
+
534
+ #: admin.php:3150
535
+ msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
536
+ msgstr ""
537
+
538
+ #: admin.php:3150
539
+ msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
540
+ msgstr ""
541
+
542
+ #: admin.php:3682
543
+ msgid "Files backup schedule"
544
+ msgstr ""
545
+
546
+ #: admin.php:3715
547
+ msgid "Incremental file backup schedule"
548
+ msgstr ""
549
+
550
+ #: admin.php:3725
551
+ msgid "Database backup schedule"
552
+ msgstr ""
553
+
554
+ #: admin.php:3760
555
+ msgid "Sending Your Backup To Remote Storage"
556
+ msgstr ""
557
+
558
+ #: admin.php:3819
559
+ msgid "File Options"
560
+ msgstr ""
561
+
562
+ #: admin.php:4849
563
+ msgid "Skipping: this archive was already restored."
564
+ msgstr ""
565
+
566
+ #: addons/googlecloud.php:860
567
+ msgid "You must use a bucket name that is unique, for all %s users."
568
+ msgstr ""
569
+
570
+ #: addons/googlecloud.php:875 addons/googlecloud.php:890
571
+ msgid "This setting applies only when a new bucket is being created."
572
+ msgstr ""
573
+
574
+ #: addons/googlecloud.php:875
575
+ msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
576
+ msgstr ""
577
+
578
+ #: addons/googlecloud.php:880
579
+ msgid "Bucket location"
580
+ msgstr ""
581
+
582
+ #: addons/googlecloud.php:45
583
+ msgid " Eastern United States"
584
+ msgstr ""
585
+
586
+ #: addons/googlecloud.php:47 addons/googlecloud.php:48
587
+ msgid "Eastern United States"
588
+ msgstr ""
589
+
590
+ #: addons/googlecloud.php:49
591
+ msgid "Western United States"
592
+ msgstr ""
593
+
594
+ #: addons/googlecloud.php:50
595
+ msgid "Eastern Asia-Pacific"
596
+ msgstr ""
597
+
598
+ #: addons/googlecloud.php:51
599
+ msgid "Western Europe"
600
+ msgstr ""
601
+
602
+ #: addons/googlecloud.php:268
603
+ msgid "You do not have access to this bucket"
604
+ msgstr ""
605
+
606
+ #: addons/googlecloud.php:816
607
+ msgid "Do not confuse %s with %s - they are separate things."
608
+ msgstr ""
609
+
610
+ #: addons/azure.php:516
611
+ msgid "If the %s does not already exist, then it will be created."
612
+ msgstr ""
613
+
614
+ #: addons/azure.php:516
615
+ msgid "See Microsoft's guidelines on container naming by following this link."
616
+ msgstr ""
617
+
618
+ #: addons/azure.php:521
619
+ msgid "Prefix"
620
+ msgstr ""
621
+
622
+ #: addons/azure.php:521
623
+ msgid "optional"
624
+ msgstr ""
625
+
626
+ #: addons/azure.php:522
627
+ msgid "You can enter the path of any %s virtual folder you wish to use here."
628
+ msgstr ""
629
+
630
+ #: addons/azure.php:522
631
+ msgid "container"
632
+ msgstr ""
633
+
634
+ #: addons/googlecloud.php:35
635
+ msgid "Standard"
636
+ msgstr ""
637
+
638
+ #: addons/googlecloud.php:36
639
+ msgid "Durable reduced availability"
640
+ msgstr ""
641
+
642
+ #: addons/googlecloud.php:37
643
+ msgid "Nearline"
644
+ msgstr ""
645
+
646
+ #: addons/googlecloud.php:41
647
+ msgid "United States"
648
+ msgstr ""
649
+
650
+ #: addons/googlecloud.php:41 addons/googlecloud.php:42
651
+ #: addons/googlecloud.php:43
652
+ msgid "multi-region location"
653
+ msgstr ""
654
+
655
+ #: addons/googlecloud.php:42
656
+ msgid "Asia Pacific"
657
+ msgstr ""
658
+
659
+ #: addons/googlecloud.php:43
660
+ msgid "European Union"
661
+ msgstr ""
662
+
663
+ #: addons/googlecloud.php:44 addons/googlecloud.php:46
664
+ msgid "Central United States"
665
+ msgstr ""
666
+
667
+ #: addons/azure.php:342
668
+ msgid "Could not access container"
669
+ msgstr ""
670
+
671
+ #: addons/azure.php:448
672
+ msgid "Could not create the container"
673
+ msgstr ""
674
+
675
+ #: addons/azure.php:500
676
+ msgid "Create Azure credentials in your Azure developer console."
677
+ msgstr ""
678
+
679
+ #: addons/azure.php:504 addons/azure.php:508
680
+ msgid "Azure"
681
+ msgstr ""
682
+
683
+ #: addons/azure.php:504
684
+ msgid "Account Name"
685
+ msgstr ""
686
+
687
+ #: addons/azure.php:505
688
+ msgid "This is not your Azure login - see the instructions if needing more guidance."
689
+ msgstr ""
690
+
691
+ #: addons/azure.php:516
692
+ msgid "Enter the path of the %s you wish to use here."
693
+ msgstr ""
694
+
695
+ #: class-updraftplus.php:2428
696
+ msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
697
+ msgstr ""
698
+
699
+ #: addons/googlecloud.php:854
700
+ msgid "Project ID"
701
+ msgstr ""
702
+
703
+ #: addons/googlecloud.php:743
704
+ msgid "You must enter a project ID in order to be able to create a new bucket."
705
+ msgstr ""
706
+
707
+ #: addons/googlecloud.php:828
708
+ msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
709
+ msgstr ""
710
+
711
+ #: addons/googlecloud.php:855
712
+ msgid "Enter the ID of the %s project you wish to use here."
713
+ msgstr ""
714
+
715
+ #: addons/googlecloud.php:855
716
+ msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
717
+ msgstr ""
718
+
719
+ #: addons/googlecloud.php:855
720
+ msgid "Otherwise, you can leave it blank."
721
+ msgstr ""
722
+
723
+ #: addons/googlecloud.php:859
724
+ msgid "Bucket"
725
+ msgstr ""
726
+
727
+ #: addons/googlecloud.php:860
728
+ msgid "Enter the name of the %s bucket you wish to use here."
729
+ msgstr ""
730
+
731
+ #: addons/googlecloud.php:860
732
+ msgid "Bucket names have to be globally unique. If the bucket does not already exist, then it will be created."
733
+ msgstr ""
734
+
735
+ #: addons/googlecloud.php:860
736
+ msgid "See Google's guidelines on bucket naming by following this link."
737
+ msgstr ""
738
+
739
+ #: addons/googlecloud.php:865
740
+ msgid "Storage class"
741
+ msgstr ""
742
+
743
+ #: admin.php:3076
744
+ msgid "Not installed"
745
+ msgstr ""
746
+
747
+ #: admin.php:3076
748
+ msgid "required for some remote storage providers"
749
+ msgstr ""
750
+
751
+ #: backup.php:1408
752
+ msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
753
+ msgstr ""
754
+
755
+ #: backup.php:1509 backup.php:1511
756
+ msgid "The database backup appears to have failed"
757
+ msgstr ""
758
+
759
+ #: backup.php:1509
760
+ msgid "no options or sitemeta table was found"
761
+ msgstr ""
762
+
763
+ #: backup.php:1511
764
+ msgid "the options table was not found"
765
+ msgstr ""
766
+
767
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
768
+ #: addons/googlecloud.php:288 addons/googlecloud.php:735
769
+ #: addons/googlecloud.php:782
770
+ msgid "%s Service Exception."
771
+ msgstr ""
772
+
773
+ #: addons/googlecloud.php:215 addons/googlecloud.php:268
774
+ #: addons/googlecloud.php:278 addons/googlecloud.php:288
775
+ #: addons/googlecloud.php:579 addons/googlecloud.php:735
776
+ #: addons/googlecloud.php:782 addons/googlecloud.php:822
777
+ #: addons/googlecloud.php:839 addons/googlecloud.php:847
778
+ #: addons/googlecloud.php:860
779
+ msgid "Google Cloud"
780
+ msgstr ""
781
+
782
+ #: addons/googlecloud.php:215 addons/googlecloud.php:288
783
+ #: addons/googlecloud.php:735 addons/googlecloud.php:782
784
+ msgid "You do not have access to this bucket."
785
+ msgstr ""
786
+
787
+ #: addons/googlecloud.php:479
788
+ msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Cloud."
789
+ msgstr ""
790
+
791
+ #: addons/googlecloud.php:609
792
+ msgid "You must save and authenticate before you can test your settings."
793
+ msgstr ""
794
+
795
+ #: admin.php:548
796
+ msgid "day"
797
+ msgstr ""
798
+
799
+ #: admin.php:549
800
+ msgid "in the month"
801
+ msgstr ""
802
+
803
+ #: admin.php:550
804
+ msgid "day(s)"
805
+ msgstr ""
806
+
807
+ #: admin.php:551
808
+ msgid "hour(s)"
809
+ msgstr ""
810
+
811
+ #: admin.php:552
812
+ msgid "week(s)"
813
+ msgstr ""
814
+
815
+ #: admin.php:553
816
+ msgid "For backups older than"
817
+ msgstr ""
818
+
819
+ #: admin.php:555
820
+ msgid "Processing..."
821
+ msgstr ""
822
+
823
+ #: admin.php:1614
824
+ msgid "Backup sets removed: %d"
825
+ msgstr ""
826
+
827
+ #: admin.php:2869
828
+ msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
829
+ msgstr ""
830
+
831
+ #: admin.php:2920
832
+ msgid "Actions upon selected backups"
833
+ msgstr ""
834
+
835
+ #: admin.php:2922
836
+ msgid "Select all"
837
+ msgstr ""
838
+
839
+ #: admin.php:2923
840
+ msgid "Deselect"
841
+ msgstr ""
842
+
843
+ #: admin.php:2934 admin.php:2937
844
+ msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
845
+ msgstr ""
846
+
847
+ #: admin.php:3754
848
+ msgid "or to configure more complex schedules"
849
+ msgstr ""
850
+
851
+ #: restorer.php:707
852
+ msgid "Deferring..."
853
+ msgstr ""
854
+
855
+ #: updraftplus.php:147
856
+ msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
857
+ msgstr ""
858
+
859
+ #: addons/morestorage.php:26
860
+ msgid "(as many as you like)"
861
+ msgstr ""
862
+
863
+ #: addons/fixtime.php:281 addons/fixtime.php:286
864
+ msgid "Add an additional retention rule..."
865
+ msgstr ""
866
+
867
+ #: methods/updraftvault.php:563
868
+ msgid "You do not currently have any UpdraftPlus Vault quota"
869
+ msgstr ""
870
+
871
+ #: restorer.php:1978
872
+ msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
873
+ msgstr ""
874
+
875
+ #: restorer.php:1978
876
+ msgid "This database needs to be deployed on MySQL version %s or later."
877
+ msgstr ""
878
+
879
+ #: admin.php:2324
880
+ 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."
881
+ msgstr ""
882
+
883
+ #: admin.php:2649
884
+ msgid "No advertising links on UpdraftPlus settings page"
885
+ msgstr ""
886
+
887
+ #: class-updraftplus.php:3613
888
+ msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
889
+ msgstr ""
890
+
891
+ #: class-updraftplus.php:3613
892
+ msgid "You must upgrade MySQL to be able to use this database."
893
+ msgstr ""
894
+
895
+ #: methods/updraftvault.php:303
896
+ msgid "Don't know your email address, or forgotten your password?"
897
+ msgstr ""
898
+
899
+ #: methods/updraftvault.php:258 methods/updraftvault.php:288
900
+ msgid "Read the FAQs here."
901
+ msgstr ""
902
+
903
+ #: methods/updraftvault.php:296
904
+ msgid "Enter your UpdraftPlus.Com email / password here to connect:"
905
+ msgstr ""
906
+
907
+ #: addons/s3-enhanced.php:40
908
+ msgid "Server-side encryption"
909
+ msgstr ""
910
+
911
+ #: addons/s3-enhanced.php:41
912
+ msgid "Check this box to use Amazon's server-side encryption"
913
+ msgstr ""
914
+
915
+ #: methods/updraftvault.php:572
916
+ msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
917
+ msgstr ""
918
+
919
+ #: admin.php:804
920
+ msgid "%s has been chosen for remote storage, but you are not currently connected."
921
+ msgstr ""
922
+
923
+ #: admin.php:804
924
+ msgid "Go to the remote storage settings in order to connect."
925
+ msgstr ""
926
+
927
+ #: methods/updraftvault.php:285
928
+ msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
929
+ msgstr ""
930
+
931
+ #: admin.php:523
932
+ msgid "Connecting..."
933
+ msgstr ""
934
+
935
+ #: admin.php:525
936
+ msgid "Disconnecting..."
937
+ msgstr ""
938
+
939
+ #: admin.php:526
940
+ msgid "Counting..."
941
+ msgstr ""
942
+
943
+ #: admin.php:527
944
+ msgid "Update quota count"
945
+ msgstr ""
946
+
947
+ #: methods/updraftvault.php:48 methods/updraftvault.php:71
948
+ msgid "Updraft Vault"
949
+ msgstr ""
950
+
951
+ #: methods/updraftvault.php:205
952
+ msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
953
+ msgstr ""
954
+
955
+ #: methods/updraftvault.php:208
956
+ msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
957
+ msgstr ""
958
+
959
+ #: methods/updraftvault.php:211
960
+ msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
961
+ msgstr ""
962
+
963
+ #: methods/updraftvault.php:247 methods/updraftvault.php:264
964
+ msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
965
+ msgstr ""
966
+
967
+ #: methods/updraftvault.php:247 methods/updraftvault.php:264
968
+ msgid "Press a button to get started."
969
+ msgstr ""
970
+
971
+ #: methods/updraftvault.php:250
972
+ msgid "First time user?"
973
+ msgstr ""
974
+
975
+ #: methods/updraftvault.php:251
976
+ msgid "Show the options"
977
+ msgstr ""
978
+
979
+ #: methods/updraftvault.php:254
980
+ msgid "Already purchased space?"
981
+ msgstr ""
982
+
983
+ #: methods/updraftvault.php:258 methods/updraftvault.php:288
984
+ msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
985
+ msgstr ""
986
+
987
+ #: methods/updraftvault.php:258 methods/updraftvault.php:288
988
+ msgid "Read more about it here."
989
+ msgstr ""
990
+
991
+ #: methods/updraftvault.php:268 methods/updraftvault.php:274
992
+ #: methods/updraftvault.php:280
993
+ msgid "%s per quarter"
994
+ msgstr ""
995
+
996
+ #: methods/updraftvault.php:285
997
+ msgid "Subscriptions can be cancelled at any time."
998
+ msgstr ""
999
+
1000
+ #: methods/updraftvault.php:291 methods/updraftvault.php:306
1001
+ msgid "Back..."
1002
+ msgstr ""
1003
+
1004
+ #: methods/updraftvault.php:298
1005
+ msgid "E-mail"
1006
+ msgstr ""
1007
+
1008
+ #: methods/updraftvault.php:303
1009
+ msgid "Go here for help"
1010
+ msgstr ""
1011
+
1012
+ #: methods/updraftvault.php:327
1013
+ msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1014
+ msgstr ""
1015
+
1016
+ #: methods/updraftvault.php:331
1017
+ msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1018
+ msgstr ""
1019
+
1020
+ #: methods/updraftvault.php:331
1021
+ msgid "Well done - there's nothing more needed to set up."
1022
+ msgstr ""
1023
+
1024
+ #: methods/updraftvault.php:331
1025
+ msgid "Vault owner"
1026
+ msgstr ""
1027
+
1028
+ #: methods/updraftvault.php:333
1029
+ msgid "Quota:"
1030
+ msgstr ""
1031
+
1032
+ #: admin.php:524 methods/updraftvault.php:341
1033
+ msgid "Disconnect"
1034
+ msgstr ""
1035
+
1036
+ #: methods/updraftvault.php:349
1037
+ msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1038
+ msgstr ""
1039
+
1040
+ #: methods/updraftvault.php:349
1041
+ msgid "You can get more quota here"
1042
+ msgstr ""
1043
+
1044
+ #: methods/updraftvault.php:354 methods/updraftvault.php:397
1045
+ msgid "Current use:"
1046
+ msgstr ""
1047
+
1048
+ #: methods/updraftvault.php:357 methods/updraftvault.php:359
1049
+ #: methods/updraftvault.php:416
1050
+ msgid "Get more quota"
1051
+ msgstr ""
1052
+
1053
+ #: methods/updraftvault.php:361 methods/updraftvault.php:416
1054
+ msgid "Refresh current status"
1055
+ msgstr ""
1056
+
1057
+ #: addons/s3-enhanced.php:322
1058
+ msgid "Allow download"
1059
+ msgstr ""
1060
+
1061
+ #: addons/s3-enhanced.php:324
1062
+ msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
1063
+ msgstr ""
1064
+
1065
+ #: addons/s3-enhanced.php:326
1066
+ msgid "Allow deletion"
1067
+ msgstr ""
1068
+
1069
+ #: addons/s3-enhanced.php:328
1070
+ msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
1071
+ msgstr ""
1072
+
1073
+ #: backup.php:2884
1074
+ msgid "The zip engine returned the message: %s."
1075
+ msgstr ""
1076
+
1077
+ #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:904
1078
+ msgid "Delete failed:"
1079
+ msgstr ""
1080
+
1081
+ #: addons/migrator.php:1706 admin.php:533
1082
+ 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."
1083
+ msgstr ""
1084
+
1085
+ #: addons/migrator.php:1721
1086
+ 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."
1087
+ msgstr ""
1088
+
1089
+ #: admin.php:531
1090
+ msgid "Creating..."
1091
+ msgstr ""
1092
+
1093
+ #: admin.php:534
1094
+ msgid "Please give this key a name (e.g. indicate the site it is for):"
1095
+ msgstr ""
1096
+
1097
+ #: admin.php:536
1098
+ msgid "key name"
1099
+ msgstr ""
1100
+
1101
+ #: admin.php:537
1102
+ msgid "Deleting..."
1103
+ msgstr ""
1104
+
1105
+ #: addons/migrator.php:1734 admin.php:540
1106
+ msgid "Testing connection..."
1107
+ msgstr ""
1108
+
1109
+ #: admin.php:1257
1110
+ msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1111
+ msgstr ""
1112
+
1113
+ #: admin.php:1257
1114
+ msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1115
+ msgstr ""
1116
+
1117
+ #: admin.php:2977
1118
+ msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
1119
+ msgstr ""
1120
+
1121
+ #: admin.php:4381
1122
+ msgid "Backup sent to remote site - not available for download."
1123
+ msgstr ""
1124
+
1125
+ #: admin.php:4382
1126
+ msgid "Site"
1127
+ msgstr ""
1128
+
1129
+ #: admin.php:4609
1130
+ msgid "(backup set imported from remote location)"
1131
+ msgstr ""
1132
+
1133
+ #: methods/addon-base.php:177
1134
+ msgid "This storage method does not allow downloading"
1135
+ msgstr ""
1136
+
1137
+ #: addons/reporting.php:142
1138
+ msgid "Backup made by %s"
1139
+ msgstr ""
1140
+
1141
+ #: addons/migrator.php:187
1142
+ msgid "This site has no backups to restore from yet."
1143
+ msgstr ""
1144
+
1145
+ #: addons/migrator.php:194
1146
+ msgid "Restore an existing backup set onto this site"
1147
+ msgstr ""
1148
+
1149
+ #: addons/migrator.php:1663
1150
+ msgid "Backup data will be sent to:"
1151
+ msgstr ""
1152
+
1153
+ #: addons/migrator.php:1678
1154
+ msgid "site not found"
1155
+ msgstr ""
1156
+
1157
+ #: addons/migrator.php:1717
1158
+ msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
1159
+ msgstr ""
1160
+
1161
+ #: addons/migrator.php:1752
1162
+ msgid "Also send this backup to the active remote storage locations"
1163
+ msgstr ""
1164
+
1165
+ #: addons/migrator.php:1803
1166
+ msgid "A key with this name already exists; you must use a unique name."
1167
+ msgstr ""
1168
+
1169
+ #: addons/migrator.php:1818 central/bootstrap.php:367
1170
+ msgid "Key created successfully."
1171
+ msgstr ""
1172
+
1173
+ #: addons/migrator.php:1818 central/bootstrap.php:367
1174
+ msgid "You must copy and paste this key now - it cannot be shown again."
1175
+ msgstr ""
1176
+
1177
+ #: addons/migrator.php:2136
1178
+ msgid "Keys for this site are created in the section below the one you just pressed in."
1179
+ msgstr ""
1180
+
1181
+ #: addons/migrator.php:2136
1182
+ msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1183
+ msgstr ""
1184
+
1185
+ #: addons/migrator.php:2153
1186
+ msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1187
+ msgstr ""
1188
+
1189
+ #: addons/migrator.php:2174
1190
+ msgid "Your new key:"
1191
+ msgstr ""
1192
+
1193
+ #: addons/migrator.php:2192
1194
+ msgid "No keys to allow remote sites to connect have yet been created."
1195
+ msgstr ""
1196
+
1197
+ #: addons/migrator.php:2201
1198
+ msgid "Existing keys"
1199
+ msgstr ""
1200
+
1201
+ #: methods/ftp.php:307
1202
+ msgid "FTP server"
1203
+ msgstr ""
1204
+
1205
+ #: methods/ftp.php:311
1206
+ msgid "FTP login"
1207
+ msgstr ""
1208
+
1209
+ #: methods/ftp.php:315
1210
+ msgid "FTP password"
1211
+ msgstr ""
1212
+
1213
+ #: methods/ftp.php:319
1214
+ msgid "Remote path"
1215
+ msgstr ""
1216
+
1217
+ #: methods/ftp.php:323
1218
+ msgid "Passive mode"
1219
+ msgstr ""
1220
+
1221
+ #: methods/ftp.php:325
1222
+ msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1223
+ msgstr ""
1224
+
1225
+ #: addons/migrator.php:1834
1226
+ msgid "key"
1227
+ msgstr ""
1228
+
1229
+ #: addons/migrator.php:1844
1230
+ msgid "The entered key was the wrong length - please try again."
1231
+ msgstr ""
1232
+
1233
+ #: addons/migrator.php:1846 addons/migrator.php:1848 addons/migrator.php:1852
1234
+ msgid "The entered key was corrupt - please try again."
1235
+ msgstr ""
1236
+
1237
+ #: addons/migrator.php:1857
1238
+ msgid "The entered key does not belong to a remote site (it belongs to this one)."
1239
+ msgstr ""
1240
+
1241
+ #: addons/migrator.php:1873
1242
+ msgid "The key was successfully added."
1243
+ msgstr ""
1244
+
1245
+ #: addons/migrator.php:1873
1246
+ msgid "It is for sending backups to the following site: "
1247
+ msgstr ""
1248
+
1249
+ #: addons/migrator.php:1892
1250
+ msgid "No receiving sites have yet been added."
1251
+ msgstr ""
1252
+
1253
+ #: addons/migrator.php:1894 admin.php:532
1254
+ msgid "Send to site:"
1255
+ msgstr ""
1256
+
1257
+ #: addons/migrator.php:1900 admin.php:541
1258
+ msgid "Send"
1259
+ msgstr ""
1260
+
1261
+ #: addons/migrator.php:2133
1262
+ msgid "Or, send a backup to another site"
1263
+ msgstr ""
1264
+
1265
+ #: addons/migrator.php:2136
1266
+ msgid "To add a site as a destination for sending to, enter that site's key below."
1267
+ msgstr ""
1268
+
1269
+ #: addons/migrator.php:2136
1270
+ msgid "How do I get a site's key?"
1271
+ msgstr ""
1272
+
1273
+ #: addons/migrator.php:2141
1274
+ msgid "Paste key here"
1275
+ msgstr ""
1276
+
1277
+ #: addons/migrator.php:2152
1278
+ msgid "Or, receive a backup from a remote site"
1279
+ msgstr ""
1280
+
1281
+ #: admin.php:528
1282
+ msgid "Adding..."
1283
+ msgstr ""
1284
+
1285
+ #: addons/migrator.php:2141 admin.php:529
1286
+ msgid "Add site"
1287
+ msgstr ""
1288
+
1289
+ #: addons/migrator.php:167
1290
+ msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1291
+ msgstr ""
1292
+
1293
+ #: addons/migrator.php:167
1294
+ msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
1295
+ msgstr ""
1296
+
1297
+ #: restorer.php:1980
1298
+ msgid "To use this backup, your database server needs to support the %s character set."
1299
+ msgstr ""
1300
+
1301
+ #: udaddons/options.php:338
1302
+ msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1303
+ msgstr ""
1304
+
1305
+ #: udaddons/updraftplus-addons.php:741
1306
+ msgid "Go here to re-enter your password."
1307
+ msgstr ""
1308
+
1309
+ #: udaddons/updraftplus-addons.php:742
1310
+ msgid "If you have forgotten your password "
1311
+ msgstr ""
1312
+
1313
+ #: udaddons/updraftplus-addons.php:742
1314
+ msgid "go here to change your password on updraftplus.com."
1315
+ msgstr ""
1316
+
1317
+ #: addons/migrator.php:194
1318
+ msgid "To import a backup set, go to the \"Existing Backups\" tab"
1319
+ msgstr ""
1320
+
1321
+ #: addons/migrator.php:223
1322
+ msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
1323
+ msgstr ""
1324
+
1325
+ #: admin.php:520 admin.php:545
1326
+ msgid "You have made changes to your settings, and not saved."
1327
+ msgstr ""
1328
+
1329
+ #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1330
+ msgid "To remove the block, please go here."
1331
+ msgstr ""
1332
+
1333
+ #: methods/email.php:73
1334
+ msgid "configure it here"
1335
+ msgstr ""
1336
+
1337
+ #: addons/onedrive.php:439
1338
+ msgid "Please re-authorize the connection to your %s account."
1339
+ msgstr ""
1340
+
1341
+ #: addons/onedrive.php:554 addons/onedrive.php:698 addons/onedrive.php:702
1342
+ msgid "OneDrive"
1343
+ msgstr ""
1344
+
1345
+ #: addons/onedrive.php:664 addons/onedrive.php:666
1346
+ msgid "%s authorisation failed:"
1347
+ msgstr ""
1348
+
1349
+ #: addons/onedrive.php:682
1350
+ msgid "Microsoft OneDrive is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
1351
+ msgstr ""
1352
+
1353
+ #: addons/onedrive.php:684
1354
+ msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
1355
+ msgstr ""
1356
+
1357
+ #: addons/onedrive.php:690
1358
+ msgid "Create OneDrive credentials in your OneDrive developer console."
1359
+ msgstr ""
1360
+
1361
+ #: addons/azure.php:500 addons/migrator.php:1721 addons/onedrive.php:690
1362
+ msgid "For longer help, including screenshots, follow this link."
1363
+ msgstr ""
1364
+
1365
+ #: addons/onedrive.php:699
1366
+ msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
1367
+ msgstr ""
1368
+
1369
+ #: addons/onedrive.php:710
1370
+ msgid "N.B. %s is not case-sensitive."
1371
+ msgstr ""
1372
+
1373
+ #: addons/s3-enhanced.php:301
1374
+ msgid "US West (N. California)"
1375
+ msgstr ""
1376
+
1377
+ #: addons/s3-enhanced.php:302
1378
+ msgid "US Government West (restricted)"
1379
+ msgstr ""
1380
+
1381
+ #: addons/s3-enhanced.php:303
1382
+ msgid "EU (Ireland)"
1383
+ msgstr ""
1384
+
1385
+ #: addons/s3-enhanced.php:304
1386
+ msgid "EU (Frankfurt)"
1387
+ msgstr ""
1388
+
1389
+ #: addons/s3-enhanced.php:306
1390
+ msgid "Asia Pacific (Singapore)"
1391
+ msgstr ""
1392
+
1393
+ #: addons/s3-enhanced.php:307
1394
+ msgid "Asia Pacific (Sydney)"
1395
+ msgstr ""
1396
+
1397
+ #: addons/s3-enhanced.php:308
1398
+ msgid "Asia Pacific (Tokyo)"
1399
+ msgstr ""
1400
+
1401
+ #: addons/s3-enhanced.php:309
1402
+ msgid "South America (Sao Paulo)"
1403
+ msgstr ""
1404
+
1405
+ #: addons/s3-enhanced.php:310
1406
+ msgid "China (Beijing) (restricted)"
1407
+ msgstr ""
1408
+
1409
+ #: addons/s3-enhanced.php:320
1410
+ msgid "S3 bucket"
1411
+ msgstr ""
1412
+
1413
+ #: addons/s3-enhanced.php:416
1414
+ msgid "You are now using a IAM user account to access your bucket."
1415
+ msgstr ""
1416
+
1417
+ #: addons/s3-enhanced.php:416
1418
+ msgid "Do remember to save your settings."
1419
+ msgstr ""
1420
+
1421
+ #: restorer.php:2079
1422
+ msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
1423
+ msgstr ""
1424
+
1425
+ #: admin.php:396
1426
+ msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1427
+ msgstr ""
1428
+
1429
+ #: admin.php:398
1430
+ msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1431
+ msgstr ""
1432
+
1433
+ #: methods/s3.php:743
1434
+ msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1435
+ msgstr ""
1436
+
1437
+ #: addons/s3-enhanced.php:51
1438
+ msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
1439
+ msgstr ""
1440
+
1441
+ #: addons/s3-enhanced.php:63
1442
+ msgid "You need to enter an admin access key"
1443
+ msgstr ""
1444
+
1445
+ #: addons/s3-enhanced.php:66
1446
+ msgid "You need to enter an admin secret key"
1447
+ msgstr ""
1448
+
1449
+ #: addons/s3-enhanced.php:69
1450
+ msgid "You need to enter a new IAM username"
1451
+ msgstr ""
1452
+
1453
+ #: addons/s3-enhanced.php:72
1454
+ msgid "You need to enter a bucket"
1455
+ msgstr ""
1456
+
1457
+ #: addons/s3-enhanced.php:97
1458
+ msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
1459
+ msgstr ""
1460
+
1461
+ #: addons/s3-enhanced.php:104
1462
+ msgid "AWS authentication failed"
1463
+ msgstr ""
1464
+
1465
+ #: addons/s3-enhanced.php:151
1466
+ msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another AWS user may already have taken your name)."
1467
+ msgstr ""
1468
+
1469
+ #: addons/s3-enhanced.php:179
1470
+ msgid "Conflict: that user already exists"
1471
+ msgstr ""
1472
+
1473
+ #: addons/s3-enhanced.php:181 addons/s3-enhanced.php:184
1474
+ #: addons/s3-enhanced.php:188
1475
+ msgid "IAM operation failed (%s)"
1476
+ msgstr ""
1477
+
1478
+ #: addons/s3-enhanced.php:201
1479
+ msgid "Failed to create user Access Key"
1480
+ msgstr ""
1481
+
1482
+ #: addons/s3-enhanced.php:203 addons/s3-enhanced.php:207
1483
+ msgid "Operation to create user Access Key failed"
1484
+ msgstr ""
1485
+
1486
+ #: addons/s3-enhanced.php:262 addons/s3-enhanced.php:264
1487
+ msgid "Failed to apply User Policy"
1488
+ msgstr ""
1489
+
1490
+ #: addons/s3-enhanced.php:274
1491
+ msgid "Access Key: %s"
1492
+ msgstr ""
1493
+
1494
+ #: addons/s3-enhanced.php:274
1495
+ msgid "Secret Key: %s"
1496
+ msgstr ""
1497
+
1498
+ #: addons/s3-enhanced.php:357
1499
+ msgid "Create new IAM user and S3 bucket"
1500
+ msgstr ""
1501
+
1502
+ #: addons/s3-enhanced.php:284
1503
+ msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
1504
+ msgstr ""
1505
+
1506
+ #: addons/s3-enhanced.php:284
1507
+ msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
1508
+ msgstr ""
1509
+
1510
+ #: addons/s3-enhanced.php:284
1511
+ msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
1512
+ msgstr ""
1513
+
1514
+ #: addons/s3-enhanced.php:291
1515
+ msgid "Admin access key"
1516
+ msgstr ""
1517
+
1518
+ #: addons/s3-enhanced.php:292
1519
+ msgid "Admin secret key"
1520
+ msgstr ""
1521
+
1522
+ #: addons/s3-enhanced.php:293
1523
+ msgid "New IAM username"
1524
+ msgstr ""
1525
+
1526
+ #: addons/s3-enhanced.php:295
1527
+ msgid "S3 storage region"
1528
+ msgstr ""
1529
+
1530
+ #: addons/s3-enhanced.php:299
1531
+ msgid "US Standard (default)"
1532
+ msgstr ""
1533
+
1534
+ #: addons/s3-enhanced.php:300
1535
+ msgid "US West (Oregon)"
1536
+ msgstr ""
1537
+
1538
+ #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1539
+ msgid "UpdraftPlus.com has responded with 'Access Denied'."
1540
+ msgstr ""
1541
+
1542
+ #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1543
+ msgid "It appears that your web server's IP Address (%s) is blocked."
1544
+ msgstr ""
1545
+
1546
+ #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1547
+ msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1548
+ msgstr ""
1549
+
1550
+ #: addons/autobackup.php:662
1551
+ msgid "Update cancelled - reload page to try again."
1552
+ msgstr ""
1553
+
1554
+ #: admin.php:389 admin.php:403
1555
+ msgid "Dismiss (for %s months)"
1556
+ msgstr ""
1557
+
1558
+ #: admin.php:391
1559
+ msgid "Thank you for backing up with UpdraftPlus!"
1560
+ msgstr ""
1561
+
1562
+ #: admin.php:396
1563
+ msgid "Free Newsletter"
1564
+ msgstr ""
1565
+
1566
+ #: admin.php:396
1567
+ msgid "Follow this link to sign up."
1568
+ msgstr ""
1569
+
1570
+ #: admin.php:398
1571
+ msgid "UpdraftPlus Premium"
1572
+ msgstr ""
1573
+
1574
+ #: admin.php:398
1575
+ msgid "Compare with the free version"
1576
+ msgstr ""
1577
+
1578
+ #: admin.php:398
1579
+ msgid "Go to the shop."
1580
+ msgstr ""
1581
+
1582
+ #: admin.php:400
1583
+ msgid "More Quality Plugins"
1584
+ msgstr ""
1585
+
1586
+ #: admin.php:400
1587
+ msgid "Free two-factor security plugin"
1588
+ msgstr ""
1589
+
1590
+ #: admin.php:400
1591
+ msgid "Premium WooCommerce plugins"
1592
+ msgstr ""
1593
+
1594
+ #: class-updraftplus.php:3389
1595
+ msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1596
+ msgstr ""
1597
+
1598
+ #: admin.php:2160
1599
+ msgid "Newsletter sign-up"
1600
+ msgstr ""
1601
+
1602
+ #: admin.php:2544
1603
+ msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1604
+ msgstr ""
1605
+
1606
+ #: admin.php:2544
1607
+ msgid "The first step is to de-install the free version."
1608
+ msgstr ""
1609
+
1610
+ #: admin.php:3628
1611
+ msgid "No backup has been completed"
1612
+ msgstr ""
1613
+
1614
+ #: addons/fixtime.php:422
1615
+ msgid "(at same time as files backup)"
1616
+ msgstr ""
1617
+
1618
+ #: admin.php:2589
1619
+ msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1620
+ msgstr ""
1621
+
1622
+ #: admin.php:2594
1623
+ msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1624
+ msgstr ""
1625
+
1626
+ #: admin.php:2609
1627
+ msgid "Backup extra files and databases"
1628
+ msgstr ""
1629
+
1630
+ #: admin.php:2614
1631
+ msgid "Migrate / clone (i.e. copy) websites"
1632
+ msgstr ""
1633
+
1634
+ #: admin.php:2619
1635
+ msgid "Basic email reporting"
1636
+ msgstr ""
1637
+
1638
+ #: admin.php:2624
1639
+ msgid "Advanced reporting features"
1640
+ msgstr ""
1641
+
1642
+ #: admin.php:2629
1643
+ msgid "Automatic backup when updating WP/plugins/themes"
1644
+ msgstr ""
1645
+
1646
+ #: admin.php:2634
1647
+ msgid "Send backups to multiple remote destinations"
1648
+ msgstr ""
1649
+
1650
+ #: admin.php:2639
1651
+ msgid "Database encryption"
1652
+ msgstr ""
1653
+
1654
+ #: admin.php:2644
1655
+ msgid "Restore backups from other plugins"
1656
+ msgstr ""
1657
+
1658
+ #: admin.php:2654
1659
+ msgid "Scheduled backups"
1660
+ msgstr ""
1661
+
1662
+ #: admin.php:2659
1663
+ msgid "Fix backup time"
1664
+ msgstr ""
1665
+
1666
+ #: admin.php:2664
1667
+ msgid "Network/Multisite support"
1668
+ msgstr ""
1669
+
1670
+ #: admin.php:2669
1671
+ msgid "Lock settings access"
1672
+ msgstr ""
1673
+
1674
+ #: admin.php:2674
1675
+ msgid "Personal support"
1676
+ msgstr ""
1677
+
1678
+ #: admin.php:2544
1679
+ msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1680
+ msgstr ""
1681
+
1682
+ #: admin.php:2546
1683
+ msgid "Get UpdraftPlus Premium"
1684
+ msgstr ""
1685
+
1686
+ #: admin.php:2547
1687
+ msgid "Full feature list"
1688
+ msgstr ""
1689
+
1690
+ #: admin.php:2548
1691
+ msgid "Pre-sales FAQs"
1692
+ msgstr ""
1693
+
1694
+ #: admin.php:2549
1695
+ msgid "Ask a pre-sales question"
1696
+ msgstr ""
1697
+
1698
+ #: admin.php:2561
1699
+ msgid "Get it from"
1700
+ msgstr ""
1701
+
1702
+ #: admin.php:2565
1703
+ msgid "Buy It Now!"
1704
+ msgstr ""
1705
+
1706
+ #: admin.php:2569
1707
+ msgid "Backup WordPress files and database"
1708
+ msgstr ""
1709
+
1710
+ #: admin.php:2574
1711
+ msgid "Translated into over %s languages"
1712
+ msgstr ""
1713
+
1714
+ #: admin.php:2579
1715
+ msgid "Restore from backup"
1716
+ msgstr ""
1717
+
1718
+ #: admin.php:2584
1719
+ msgid "Backup to remote storage"
1720
+ msgstr ""
1721
+
1722
+ #: admin.php:514
1723
+ msgid "You did not select any components to restore. Please select at least one, and then try again."
1724
+ msgstr ""
1725
+
1726
+ #: admin.php:2891
1727
+ msgctxt "Uploader: Drop backup files here - or - Select Files"
1728
+ msgid "or"
1729
+ msgstr ""
1730
+
1731
+ #: admin.php:3868
1732
+ msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1733
+ msgid "or"
1734
+ msgstr ""
1735
+
1736
+ #: methods/s3.php:127 methods/s3.php:128 methods/s3.php:129
1737
+ msgid "%s Error: Failed to initialise"
1738
+ msgstr ""
1739
+
1740
+ #: addons/autobackup.php:920
1741
+ msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
1742
+ msgstr ""
1743
+
1744
+ #: restorer.php:1957
1745
+ msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1746
+ msgid "An error (%s) occurred:"
1747
+ msgstr ""
1748
+
1749
+ #: admin.php:3637
1750
+ msgctxt "i.e. Non-automatic"
1751
+ msgid "Manual"
1752
+ msgstr ""
1753
+
1754
+ #: admin.php:3920
1755
+ msgid "Check this box to have a basic report sent to"
1756
+ msgstr ""
1757
+
1758
+ #: admin.php:3920
1759
+ msgid "your site's admin address"
1760
+ msgstr ""
1761
+
1762
+ #: methods/openstack2.php:102
1763
+ msgctxt "Keystone and swauth are technical terms which cannot be translated"
1764
+ msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1765
+ msgstr ""
1766
+
1767
+ #: methods/openstack2.php:152
1768
+ msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1769
+ msgid "tenant"
1770
+ msgstr ""
1771
+
1772
+ #: addons/sftp.php:340
1773
+ msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1774
+ msgstr ""
1775
+
1776
+ #: addons/sftp.php:377
1777
+ msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
1778
+ msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
1779
+ msgstr ""
1780
+
1781
+ #: addons/morefiles.php:178
1782
+ msgid "Any other file/directory on your server that you wish to back up"
1783
+ msgstr ""
1784
+
1785
+ #: addons/lockadmin.php:162
1786
+ msgid "Change Lock Settings"
1787
+ msgstr ""
1788
+
1789
+ #: restorer.php:1163
1790
+ msgid "Clearing cached pages (%s)..."
1791
+ msgstr ""
1792
+
1793
+ #: restorer.php:1963
1794
+ msgid "Create table failed - probably because there is no permission to drop tables and the table already exists; will continue"
1795
+ msgstr ""
1796
+
1797
+ #: admin.php:2337
1798
+ msgid "For even more features and personal support, check out "
1799
+ msgstr ""
1800
+
1801
+ #: udaddons/options.php:273
1802
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
1803
  msgstr ""
1804
 
1806
  msgid "(learn more about this significant option)"
1807
  msgstr ""
1808
 
 
 
 
 
1809
  #: addons/lockadmin.php:105
1810
  msgid "The admin password has now been removed."
1811
  msgstr ""
1862
  msgid "Otherwise, the default link will be shown."
1863
  msgstr ""
1864
 
 
 
 
 
1865
  #: addons/lockadmin.php:188 addons/lockadmin.php:194
1866
  msgid "Unlock"
1867
  msgstr ""
1878
  msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
1879
  msgstr ""
1880
 
1881
+ #: addons/autobackup.php:85
1882
  msgid "WordPress core (only)"
1883
  msgstr ""
1884
 
1885
+ #: addons/autobackup.php:120 addons/autobackup.php:885
1886
+ #: addons/autobackup.php:893 admin.php:519
1887
  msgid "Automatic backup before update"
1888
  msgstr ""
1889
 
1890
+ #: addons/moredatabase.php:45
1891
  msgid "Database decryption phrase"
1892
  msgstr ""
1893
 
1894
+ #: backup.php:2886
1895
  msgid "A zip error occurred"
1896
  msgstr ""
1897
 
1898
+ #: backup.php:2888
1899
  msgid "your web hosting account appears to be full; please see: %s"
1900
  msgstr ""
1901
 
1902
+ #: backup.php:2890
1903
  msgid "check your log for more details."
1904
  msgstr ""
1905
 
1906
+ #: admin.php:1842
1907
  msgid "Error: unexpected file read fail"
1908
  msgstr ""
1909
 
1910
+ #: class-updraftplus.php:3565
1911
  msgid "Backup label:"
1912
  msgstr ""
1913
 
1914
+ #: admin.php:748 admin.php:2427 central/updraftplus-commands.php:304
1915
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1916
  msgstr ""
1917
 
1918
+ #: admin.php:2880
 
 
 
 
1919
  msgid "Upload files into UpdraftPlus."
1920
  msgstr ""
1921
 
1922
+ #: admin.php:3112
1923
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1924
  msgstr ""
1925
 
1926
+ #: admin.php:3598
1927
  msgid "incremental backup; base backup: %s"
1928
  msgstr ""
1929
 
1930
+ #: admin.php:3702 admin.php:3741
1931
  msgid "and retain this many scheduled backups"
1932
  msgstr ""
1933
 
1934
+ #: admin.php:4327
1935
  msgid "Backup date"
1936
  msgstr ""
1937
 
1938
+ #: admin.php:4328
1939
  msgid "Backup data (click to download)"
1940
  msgstr ""
1941
 
1942
+ #: admin.php:3220 admin.php:4632
1943
  msgid "View Log"
1944
  msgstr ""
1945
 
1946
+ #: addons/copycom.php:535
1947
  msgid "API Key"
1948
  msgstr ""
1949
 
1950
+ #: addons/copycom.php:540
1951
  msgid "API Secret"
1952
  msgstr ""
1953
 
1954
+ #: addons/copycom.php:550
1955
  msgid "(case-sensitive)"
1956
  msgstr ""
1957
 
1958
+ #: addons/copycom.php:551
1959
  msgid "N.B. Copy is case-sensitive."
1960
  msgstr ""
1961
 
1962
+ #: addons/reporting.php:60
1963
  msgid "Your label for this backup (optional)"
1964
  msgstr ""
1965
 
1966
+ #: addons/googlecloud.php:822 methods/googledrive.php:900
 
 
 
 
1967
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1968
  msgstr ""
1969
 
1970
+ #: methods/updraftvault.php:512 udaddons/updraftplus-addons.php:642
1971
  msgid "You need to supply both an email address and a password"
1972
  msgstr ""
1973
 
1974
+ #: methods/updraftvault.php:572 udaddons/updraftplus-addons.php:741
1975
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1976
  msgstr ""
1977
 
1978
+ #: methods/updraftvault.php:575 udaddons/updraftplus-addons.php:745
 
 
 
 
1979
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
1980
  msgstr ""
1981
 
1982
+ #: admin.php:2488
1983
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
1984
  msgstr ""
1985
 
1986
+ #: class-updraftplus.php:3584
1987
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
1988
  msgstr ""
1989
 
1990
+ #: class-updraftplus.php:3584
1991
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
1992
  msgstr ""
1993
 
1994
+ #: addons/migrator.php:1036
1995
  msgid "already done"
1996
  msgstr ""
1997
 
1998
+ #: addons/migrator.php:993 addons/migrator.php:1036 addons/migrator.php:1183
1999
  msgid "Search and replacing table:"
2000
  msgstr ""
2001
 
2002
+ #: addons/migrator.php:993
2003
  msgid "skipped (not in list)"
2004
  msgstr ""
2005
 
2006
+ #: addons/migrator.php:303
2007
  msgid "Rows per batch"
2008
  msgstr ""
2009
 
2010
+ #: addons/migrator.php:304
2011
  msgid "These tables only"
2012
  msgstr ""
2013
 
2014
+ #: addons/migrator.php:304
2015
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2016
  msgstr ""
2017
 
2018
+ #: addons/copycom.php:514
2019
  msgid "To get your credentials, log in at the %s developer portal."
2020
  msgstr ""
2021
 
2022
+ #: udaddons/options.php:102
2023
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2024
  msgstr ""
2025
 
2026
+ #: udaddons/options.php:100 udaddons/options.php:102
2027
  msgid "You need to connect to receive future updates to UpdraftPlus."
2028
  msgstr ""
2029
 
2030
+ #: class-updraftplus.php:3557
2031
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2032
  msgstr ""
2033
 
2034
+ #: class-updraftplus.php:3557
2035
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2036
  msgstr ""
2037
 
2038
+ #: class-updraftplus.php:3557
2039
  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."
2040
  msgstr ""
2041
 
2042
+ #: class-updraftplus.php:3557
2043
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2044
  msgstr ""
2045
 
2046
+ #: class-updraftplus.php:3380 class-updraftplus.php:3409
2047
  msgid "UpdraftPlus is on social media - check us out here:"
2048
  msgstr ""
2049
 
2050
+ #: admin.php:2158 class-updraftplus.php:3380 class-updraftplus.php:3409
2051
  msgid "Twitter"
2052
  msgstr ""
2053
 
2054
+ #: class-updraftplus.php:3380 class-updraftplus.php:3409
2055
  msgid "Facebook"
2056
  msgstr ""
2057
 
2058
+ #: class-updraftplus.php:3380 class-updraftplus.php:3409
2059
  msgid "Google+"
2060
  msgstr ""
2061
 
2062
+ #: class-updraftplus.php:3380 class-updraftplus.php:3409
2063
  msgid "LinkedIn"
2064
  msgstr ""
2065
 
2066
+ #: admin.php:4693
 
 
 
 
2067
  msgid "Why am I seeing this?"
2068
  msgstr "Per què estic veient això ?"
2069
 
2070
+ #: admin.php:2868
2071
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2072
  msgstr "Prem aquí per cercar nous conjunts de còpies de seguretat que s'han pujat al directori UpdraftPlus (dins l'espai del seu servidor web)."
2073
 
2074
+ #: admin.php:2868
2075
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2076
  msgstr "La ubicació d'aquest directori es troba en la configuració d'experts, a la pestanya Configuració."
2077
 
2078
+ #: admin.php:1790 admin.php:1802
2079
  msgid "Start backup"
2080
  msgstr "Iniciar còpia de seguretat"
2081
 
2082
+ #: class-updraftplus.php:3529 restorer.php:926
2083
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2084
  msgstr "S'està utilitzant el servidor web %s però no sembla tenir el mòdul %s carregat."
2085
 
2086
+ #: admin.php:3542
 
 
 
 
 
 
 
 
 
 
 
 
2087
  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."
2088
  msgstr "Consultar amb el proveïdor d'allotjament web com establir permisos d'escriptura dins del directori per un plugin de WordPress. "
2089
 
2090
+ #: admin.php:3033
2091
  msgid "Unless you have a problem, you can completely ignore everything here."
2092
  msgstr "Llevat que tinguis un problema, pots ignorar completament tot el que apareix aquí."
2093
 
2094
+ #: admin.php:1964
2095
  msgid "You will find more information about this in the Settings section."
2096
  msgstr "Més informació sobre això en la secció Configuració."
2097
 
2098
+ #: admin.php:1999
2099
  msgid "This file could not be uploaded"
2100
  msgstr "No s'ha pogut carregar aquest fitxer"
2101
 
2102
+ #: addons/importer.php:70
2103
  msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
2104
  msgstr ""
2105
 
2106
+ #: addons/importer.php:70
2107
  msgid "Supported backup plugins: %s"
2108
  msgstr "Complements de còpia de seguretat suportats: %s."
2109
 
2110
+ #: admin.php:3718
 
 
 
 
2111
  msgid "Tell me more about incremental backups"
2112
  msgstr "Explica'm més coses sobre les còpies de seguretat incrementals."
2113
 
2114
+ #: admin.php:3069
2115
  msgid "Memory limit"
2116
  msgstr "Límit de memòria"
2117
 
2118
+ #: class-updraftplus.php:3671 restorer.php:1368
2119
  msgid "restoration"
2120
  msgstr "Restauració"
2121
 
2122
+ #: restorer.php:1910
2123
  msgid "Table to be implicitly dropped: %s"
2124
  msgstr "Taula d'elements exclosos implicitament: %s."
2125
 
2126
+ #: backup.php:828
2127
  msgid "Full backup"
2128
  msgstr "Còpia de seguretat completa"
2129
 
2130
+ #: backup.php:828
2131
  msgid "Incremental"
2132
  msgstr "Incremental"
2133
 
2134
+ #: addons/autobackup.php:479 addons/autobackup.php:481
2135
  msgid "Backup succeeded"
2136
  msgstr "Còpia de seguretat executada correctament"
2137
 
2138
+ #: addons/autobackup.php:479 addons/autobackup.php:481
2139
  msgid "(view log...)"
2140
  msgstr "(veure registre ...)"
2141
 
2142
+ #: addons/autobackup.php:479 addons/autobackup.php:481
2143
  msgid "now proceeding with the updates..."
2144
  msgstr "Actualitzant ..."
2145
 
2146
+ #: admin.php:3638 admin.php:3639 admin.php:3640 updraftplus.php:92
2147
+ #: updraftplus.php:93
2148
  msgid "Every %s hours"
2149
  msgstr "Cada %s hores"
2150
 
2151
+ #: addons/migrator.php:763 addons/migrator.php:765
2152
  msgid "search and replace"
2153
  msgstr "cercar i substituir"
2154
 
2155
+ #: addons/migrator.php:274
2156
  msgid "search term"
2157
  msgstr "terme de cerca"
2158
 
2159
+ #: addons/migrator.php:268 addons/migrator.php:293
2160
  msgid "Search / replace database"
2161
  msgstr "Cercar / substituir base de dades"
2162
 
2163
+ #: addons/migrator.php:269 addons/migrator.php:301
2164
  msgid "Search for"
2165
  msgstr "Cercar"
2166
 
2167
+ #: addons/migrator.php:270 addons/migrator.php:302
2168
  msgid "Replace with"
2169
  msgstr "Substituir per"
2170
 
2171
+ #: addons/migrator.php:294
2172
  msgid "This can easily destroy your site; so, use it with care!"
2173
  msgstr "Això pot destruir el teu lloc web fàcilment; utilitza-ho amb compte!"
2174
 
2175
+ #: addons/migrator.php:295
2176
  msgid "A search/replace cannot be undone - are you sure you want to do this?"
2177
  msgstr "Una cerca/substitució no es pot desfer - Estàs segur que vols fer això?"
2178
 
2179
+ #: addons/migrator.php:306
2180
  msgid "Go"
2181
  msgstr "Endavant"
2182
 
2183
+ #: restorer.php:1985
2184
  msgid "Too many database errors have occurred - aborting"
2185
  msgstr "Hi han hagut masses errors amb la base de dades - abortant"
2186
 
2187
+ #: backup.php:894
2188
  msgid "read more at %s"
2189
  msgstr "Llegir més a %s"
2190
 
2191
+ #: backup.php:894
2192
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2193
  msgstr ""
2194
 
2195
+ #: methods/googledrive.php:906
2196
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2197
  msgstr ""
2198
 
2199
+ #: admin.php:4314
2200
  msgid "You have not yet made any backups."
2201
  msgstr ""
2202
 
2203
+ #: admin.php:3831
2204
  msgid "Database Options"
2205
  msgstr ""
2206
 
2207
+ #: admin.php:3130
2208
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken."
2209
  msgstr ""
2210
 
2211
+ #: admin.php:3094
2212
  msgid "%s (%s used)"
2213
  msgstr ""
2214
 
2215
+ #: admin.php:3097
2216
  msgid "Plugins for debugging:"
2217
  msgstr ""
2218
 
2219
+ #: admin.php:3094
2220
  msgid "Free disk space in account:"
2221
  msgstr ""
2222
 
2223
+ #: admin.php:330 admin.php:2392
 
 
 
 
2224
  msgid "Current Status"
2225
  msgstr ""
2226
 
2227
+ #: admin.php:338 admin.php:1417 admin.php:1656 admin.php:2393 admin.php:2851
2228
  msgid "Existing Backups"
2229
  msgstr ""
2230
 
2231
+ #: admin.php:2431 admin.php:5188
 
 
 
 
2232
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2233
  msgstr ""
2234
 
2235
+ #: admin.php:753
2236
  msgid "Welcome to UpdraftPlus!"
2237
  msgstr ""
2238
 
2239
+ #: admin.php:753
2240
  msgid "To make a backup, just press the Backup Now button."
2241
  msgstr ""
2242
 
2243
+ #: admin.php:753
2244
  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."
2245
  msgstr ""
2246
 
2247
+ #: addons/moredatabase.php:338
2248
  msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
2249
  msgstr ""
2250
 
2251
+ #: addons/moredatabase.php:236
2252
  msgid "Table prefix"
2253
  msgstr ""
2254
 
2255
+ #: addons/moredatabase.php:237
2256
  msgid "Test connection..."
2257
  msgstr ""
2258
 
2259
+ #: addons/moredatabase.php:250
2260
  msgid "Testing..."
2261
  msgstr ""
2262
 
2263
+ #: addons/moredatabase.php:153
2264
  msgid "Backup non-WordPress tables contained in the same database as WordPress"
2265
  msgstr ""
2266
 
2267
+ #: addons/moredatabase.php:154
2268
  msgid "If your database includes extra tables that are not part of this WordPress site (you will know if this is the case), then activate this option to also back them up."
2269
  msgstr ""
2270
 
2271
+ #: addons/moredatabase.php:158
2272
  msgid "Add an external database to backup..."
2273
  msgstr ""
2274
 
2275
+ #: addons/moredatabase.php:230
2276
  msgid "Backup external database"
2277
  msgstr ""
2278
 
2279
+ #: addons/moredatabase.php:112
2280
  msgid "%s table(s) found."
2281
  msgstr ""
2282
 
2283
+ #: addons/moredatabase.php:118
2284
  msgid "%s total table(s) found; %s with the indicated prefix."
2285
  msgstr ""
2286
 
2287
+ #: addons/moredatabase.php:136
2288
  msgid "Connection succeeded."
2289
  msgstr ""
2290
 
2291
+ #: addons/moredatabase.php:138
2292
  msgid "Connection failed."
2293
  msgstr ""
2294
 
2295
+ #: addons/moredatabase.php:153
2296
  msgid "This option will cause tables stored in the MySQL database which do not belong to WordPress (identified by their lacking the configured WordPress prefix, %s) to also be backed up."
2297
  msgstr ""
2298
 
2299
+ #: addons/moredatabase.php:70
2300
  msgid "user"
2301
  msgstr ""
2302
 
2303
+ #: addons/moredatabase.php:72
2304
  msgid "host"
2305
  msgstr ""
2306
 
2307
+ #: addons/moredatabase.php:74
2308
  msgid "database name"
2309
  msgstr ""
2310
 
2311
+ #: addons/moredatabase.php:85
2312
  msgid "database connection attempt failed"
2313
  msgstr ""
2314
 
2315
+ #: class-updraftplus.php:1237
2316
  msgid "External database (%s)"
2317
  msgstr ""
2318
 
2319
+ #: methods/googledrive.php:906
2320
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
2321
  msgstr ""
2322
 
2323
+ #: methods/googledrive.php:381
2324
  msgid "failed to access parent folder"
2325
  msgstr ""
2326
 
2327
+ #: addons/googlecloud.php:559 addons/onedrive.php:535
2328
+ #: methods/googledrive.php:338
2329
  msgid "However, subsequent access attempts failed:"
2330
  msgstr ""
2331
 
2332
+ #: admin.php:4458
2333
  msgid "External database"
2334
  msgstr ""
2335
 
2336
+ #: admin.php:3954
2337
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2338
  msgstr ""
2339
 
2340
+ #: admin.php:3894
2341
  msgid "Back up more databases"
2342
  msgstr ""
2343
 
2344
+ #: admin.php:3840
2345
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2346
  msgstr ""
2347
 
2348
+ #: admin.php:3840
2349
  msgid "It can also backup external databases."
2350
  msgstr ""
2351
 
2352
+ #: admin.php:3852
2353
  msgid "You can manually decrypt an encrypted database here."
2354
  msgstr ""
2355
 
2356
+ #: admin.php:3870
2357
  msgid "First, enter the decryption key"
2358
  msgstr ""
2359
 
2360
+ #: admin.php:3754
2361
  msgid "use UpdraftPlus Premium"
2362
  msgstr ""
2363
 
2364
+ #: class-updraftplus.php:3444
2365
  msgid "Decryption failed. The database file is encrypted."
2366
  msgstr ""
2367
 
2368
+ #: admin.php:1269
2369
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
2370
  msgstr ""
2371
 
2372
+ #: restorer.php:1613 restorer.php:1932 restorer.php:1967 restorer.php:1980
2373
  msgid "An error occurred on the first %s command - aborting run"
2374
  msgstr ""
2375
 
2376
+ #: backup.php:1349
2377
  msgid "database connection attempt failed."
2378
  msgstr ""
2379
 
2380
+ #: addons/moredatabase.php:93 backup.php:1349
2381
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2382
  msgstr ""
2383
 
2385
  msgid "In %s, path names are case sensitive."
2386
  msgstr ""
2387
 
2388
+ #: addons/migrator.php:919
2389
  msgid "Warning: the database's home URL (%s) is different to what we expected (%s)"
2390
  msgstr ""
2391
 
2392
+ #: addons/copycom.php:262
2393
  msgid "You have not yet configured and saved your %s credentials"
2394
  msgstr ""
2395
 
2396
+ #: addons/copycom.php:515
2397
  msgid "After logging in, create a sandbox app. You can leave all of the questions for creating an app blank (except for the app's name)."
2398
  msgstr ""
2399
 
2400
+ #: addons/copycom.php:551 addons/google-enhanced.php:73 addons/onedrive.php:710
2401
  msgid "Enter the path of the %s folder you wish to use here."
2402
  msgstr ""
2403
 
2404
+ #: addons/copycom.php:551 addons/google-enhanced.php:73 addons/onedrive.php:710
2405
  msgid "If the folder does not already exist, then it will be created."
2406
  msgstr ""
2407
 
2408
+ #: addons/copycom.php:551 addons/google-enhanced.php:73
2409
+ #: addons/googlecloud.php:860 addons/onedrive.php:710
2410
  msgid "e.g. %s"
2411
  msgstr ""
2412
 
2413
+ #: addons/azure.php:522 addons/copycom.php:551 addons/google-enhanced.php:73
2414
+ #: addons/onedrive.php:710
2415
  msgid "If you leave it blank, then the backup will be placed in the root of your %s"
2416
  msgstr ""
2417
 
 
 
 
 
2418
  #: methods/openstack2.php:107
2419
  msgid "Follow this link for more information"
2420
  msgstr ""
2427
  msgid "Leave this blank, and a default will be chosen."
2428
  msgstr ""
2429
 
2430
+ #: addons/azure.php:515 methods/openstack2.php:133
2431
  msgid "Container"
2432
  msgstr ""
2433
 
2434
+ #: methods/addon-base.php:106
 
 
 
 
2435
  msgid "failed to list files"
2436
  msgstr ""
2437
 
2438
+ #: methods/addon-base.php:208
2439
  msgid "Failed to download"
2440
  msgstr ""
2441
 
2442
+ #: methods/addon-base.php:194 methods/addon-base.php:214
2443
  msgid "Failed to download %s"
2444
  msgstr ""
2445
 
2447
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
2448
  msgstr ""
2449
 
2450
+ #: methods/openstack2.php:99 methods/openstack2.php:157
2451
  msgid "authentication URI"
2452
  msgstr ""
2453
 
 
 
 
 
2454
  #: methods/addon-base.php:75 methods/addon-base.php:80
2455
  msgid "Failed to upload %s"
2456
  msgstr ""
2457
 
2458
+ #: addons/copycom.php:387 addons/copycom.php:389 methods/dropbox.php:523
2459
+ #: methods/dropbox.php:525
2460
  msgid "Success:"
2461
  msgstr ""
2462
 
2463
+ #: methods/dropbox.php:453 methods/dropbox.php:454
2464
  msgid "Dropbox"
2465
  msgstr ""
2466
 
2467
+ #: addons/copycom.php:557 addons/onedrive.php:716 methods/dropbox.php:454
2468
  msgid "(You appear to be already authenticated)."
2469
  msgstr ""
2470
 
2471
+ #: addons/copycom.php:559 addons/onedrive.php:718 methods/dropbox.php:454
2472
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
2473
  msgstr ""
2474
 
2475
+ #: addons/copycom.php:556 addons/onedrive.php:715 methods/dropbox.php:453
2476
  msgid "Authenticate with %s"
2477
  msgstr ""
2478
 
2480
  msgid "Error downloading remote file: Failed to download"
2481
  msgstr ""
2482
 
2483
+ #: addons/copycom.php:158 addons/copycom.php:182 methods/openstack-base.php:305
 
2484
  msgid "The %s object was not found"
2485
  msgstr ""
2486
 
2487
+ #: methods/openstack-base.php:387
2488
  msgid "%s error - we accessed the container, but failed to create a file within it"
2489
  msgstr ""
2490
 
2491
+ #: methods/openstack-base.php:388 methods/openstack-base.php:393
2492
  msgid "Region: %s"
2493
  msgstr ""
2494
 
2495
+ #: methods/openstack-base.php:44 methods/openstack-base.php:228
2496
+ #: methods/openstack-base.php:297
2497
  msgid "Could not access %s container"
2498
  msgstr ""
2499
 
2500
+ #: addons/copycom.php:558 addons/googlecloud.php:902 addons/onedrive.php:717
2501
+ #: methods/dropbox.php:460 methods/googledrive.php:955
2502
  msgid "Account holder's name: %s."
2503
  msgstr ""
2504
 
2505
  #: methods/openstack-base.php:36 methods/openstack-base.php:100
2506
+ #: methods/openstack-base.php:107 methods/openstack-base.php:220
2507
+ #: methods/openstack-base.php:285
2508
  msgid "%s error - failed to access the container"
2509
  msgstr ""
2510
 
2511
+ #: methods/googledrive.php:935
2512
  msgid "<strong>This is NOT a folder name</strong>."
2513
  msgstr ""
2514
 
2515
+ #: methods/googledrive.php:935
2516
  msgid "It is an ID number internal to Google Drive"
2517
  msgstr ""
2518
 
2519
+ #: methods/googledrive.php:944
2520
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
2521
  msgstr ""
2522
 
2523
+ #: addons/copycom.php:550 addons/google-enhanced.php:72 addons/onedrive.php:709
2524
+ #: methods/googledrive.php:931 methods/googledrive.php:941
2525
  msgid "Folder"
2526
  msgstr ""
2527
 
2528
+ #: addons/googlecloud.php:579 methods/googledrive.php:358
2529
  msgid "Name: %s."
2530
  msgstr ""
2531
 
2532
+ #: addons/googlecloud.php:254 addons/onedrive.php:294
2533
+ #: methods/googledrive.php:863
2534
  msgid "%s download: failed: file not found"
2535
  msgstr ""
2536
 
2546
  msgid "Your %s version: %s."
2547
  msgstr ""
2548
 
2549
+ #: methods/googledrive.php:157
2550
  msgid "Google Drive list files: failed to access parent folder"
2551
  msgstr ""
2552
 
2553
+ #: admin.php:5040
2554
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
2555
  msgstr ""
2556
 
2557
+ #: admin.php:3099
2558
  msgid "Fetch"
2559
  msgstr ""
2560
 
2561
+ #: admin.php:3101
2562
  msgid "Call"
2563
  msgstr ""
2564
 
2565
+ #: addons/migrator.php:364 admin.php:2884 admin.php:3860
2566
  msgid "This feature requires %s version %s or later"
2567
  msgstr ""
2568
 
2569
+ #: restorer.php:2109
2570
  msgid "Elegant themes theme builder plugin data detected: resetting temporary folder"
2571
  msgstr ""
2572
 
2573
+ #: restorer.php:106
2574
  msgid "Failed to unpack the archive"
2575
  msgstr ""
2576
 
2577
+ #: restorer.php:259
2578
  msgid "%s files have been extracted"
2579
  msgstr ""
2580
 
2581
+ #: class-updraftplus.php:910
2582
  msgid "Error - failed to download the file"
2583
  msgstr ""
2584
 
2585
+ #: admin.php:2868
2586
  msgid "Rescan local folder for new backup sets"
2587
  msgstr ""
2588
 
2589
+ #: udaddons/updraftplus-addons.php:208
2590
  msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
2591
  msgstr ""
2592
 
2593
+ #: udaddons/updraftplus-addons.php:208
2594
  msgid "The installed version of UpdraftPlus Backup/Restore has not been tested on your version of WordPress (%s)."
2595
  msgstr ""
2596
 
2597
+ #: udaddons/updraftplus-addons.php:208
2598
  msgid "It has been tested up to version %s."
2599
  msgstr ""
2600
 
2602
  msgid "password/key"
2603
  msgstr ""
2604
 
2605
+ #: addons/sftp.php:47
2606
  msgid "SCP/SFTP password/key"
2607
  msgstr ""
2608
 
2609
+ #: addons/sftp.php:306
2610
  msgid "The key provided was not in a valid format, or was corrupt."
2611
  msgstr ""
2612
 
2613
+ #: addons/sftp.php:369
2614
  msgid "Your login may be either password or key-based - you only need to enter one, not both."
2615
  msgstr ""
2616
 
2617
+ #: addons/azure.php:508 addons/migrator.php:2159 addons/sftp.php:374
2618
+ #: admin.php:535
2619
  msgid "Key"
2620
  msgstr ""
2621
 
2622
+ #: addons/importer.php:256 admin.php:4499 class-updraftplus.php:2210
 
 
 
 
2623
  msgid "Backup created by: %s."
2624
  msgstr ""
2625
 
2626
+ #: admin.php:4505
2627
  msgid "Files and database WordPress backup (created by %s)"
2628
  msgstr ""
2629
 
2630
+ #: admin.php:4505
2631
  msgid "Files backup (created by %s)"
2632
  msgstr ""
2633
 
2634
+ #: admin.php:4450 admin.php:4501
2635
  msgid "unknown source"
2636
  msgstr ""
2637
 
2638
+ #: admin.php:4456
2639
  msgid "Database (created by %s)"
2640
  msgstr ""
2641
 
2642
+ #: admin.php:2869
2643
  msgid "Rescan remote storage"
2644
  msgstr ""
2645
 
2646
+ #: admin.php:2867
2647
  msgid "Upload backup files"
2648
  msgstr ""
2649
 
2650
+ #: admin.php:2043
2651
  msgid "This backup was created by %s, and can be imported."
2652
  msgstr ""
2653
 
2654
+ #: admin.php:782
2655
  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."
2656
  msgstr ""
2657
 
2658
+ #: admin.php:782
2659
  msgid "Read this page for a guide to possible causes and how to fix it."
2660
  msgstr ""
2661
 
2662
+ #: admin.php:499 admin.php:500 class-updraftplus.php:2217
2663
  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))."
2664
  msgstr ""
2665
 
2666
+ #: admin.php:499
2667
  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."
2668
  msgstr ""
2669
 
2670
+ #: admin.php:500 class-updraftplus.php:2217
2671
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2672
  msgstr ""
2673
 
2674
+ #: admin.php:1282 admin.php:4502 restorer.php:1337
2675
  msgid "Backup created by unknown source (%s) - cannot be restored."
2676
  msgstr ""
2677
 
2678
+ #: restorer.php:749 restorer.php:797
2679
  msgid "The WordPress content folder (wp-content) was not found in this zip file."
2680
  msgstr ""
2681
 
2682
+ #: restorer.php:614
2683
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
2684
  msgstr ""
2685
 
2686
+ #: methods/dropbox.php:288
2687
  msgid "%s returned an unexpected HTTP response: %s"
2688
  msgstr ""
2689
 
2690
+ #: addons/sftp.php:883
2691
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
2692
  msgstr ""
2693
 
2694
+ #: methods/cloudfiles.php:234 methods/dropbox.php:269
2695
+ #: methods/openstack-base.php:95 methods/s3.php:87
2696
  msgid "No settings were found"
2697
  msgstr ""
2698
 
2699
+ #: class-updraftplus.php:2338
 
 
 
 
2700
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
2701
  msgstr ""
2702
 
2703
+ #: admin.php:468
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2704
  msgid "Rescanning remote and local storage for backup sets..."
2705
  msgstr ""
2706
 
2707
+ #: addons/googlecloud.php:865 addons/googlecloud.php:880
2708
+ #: addons/s3-enhanced.php:36 addons/s3-enhanced.php:40
2709
  msgid "(Read more)"
2710
  msgstr ""
2711
 
2712
+ #: addons/s3-enhanced.php:37
2713
  msgid "Check this box to use Amazon's reduced redundancy storage and tariff"
2714
  msgstr ""
2715
 
2716
+ #: addons/s3-enhanced.php:36
2717
  msgid "Reduced redundancy storage"
2718
  msgstr ""
2719
 
2720
+ #: addons/migrator.php:736
2721
  msgid "Adjusting multisite paths"
2722
  msgstr ""
2723
 
2724
+ #: addons/reporting.php:392
2725
  msgid "Log all messages to syslog (only server admins are likely to want this)"
2726
  msgstr ""
2727
 
2728
+ #: addons/morefiles.php:217
2729
  msgid "Add another..."
2730
  msgstr ""
2731
 
2732
+ #: addons/morefiles.php:308
2733
  msgid "No backup of directory: there was nothing found to back up"
2734
  msgstr ""
2735
 
2736
+ #: addons/moredatabase.php:229 addons/morefiles.php:212
2737
+ #: addons/morefiles.php:223
2738
  msgid "Remove"
2739
  msgstr ""
2740
 
2741
+ #: methods/s3.php:729
2742
  msgid "Other %s FAQs."
2743
  msgstr ""
2744
 
2745
+ #: admin.php:3954
2746
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
2747
  msgstr ""
2748
 
2749
+ #: addons/morefiles.php:262 admin.php:4092
2750
  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."
2751
  msgstr ""
2752
 
2753
+ #: restorer.php:2098
2754
  msgid "Custom content type manager plugin data detected: clearing option cache"
2755
  msgstr ""
2756
 
2757
+ #: methods/ftp.php:281
2758
  msgid "encrypted FTP (explicit encryption)"
2759
  msgstr ""
2760
 
2761
+ #: class-updraftplus.php:3671 methods/ftp.php:284 restorer.php:1367
2762
  msgid "Your web server's PHP installation has these functions disabled: %s."
2763
  msgstr ""
2764
 
2765
+ #: class-updraftplus.php:3671 methods/ftp.php:284 restorer.php:1368
2766
  msgid "Your hosting company must enable these functions before %s can work."
2767
  msgstr ""
2768
 
2769
+ #: methods/ftp.php:279
 
 
 
 
2770
  msgid "regular non-encrypted FTP"
2771
  msgstr ""
2772
 
2773
+ #: methods/ftp.php:280
2774
  msgid "encrypted FTP (implicit encryption)"
2775
  msgstr ""
2776
 
2777
+ #: restorer.php:1517
2778
  msgid "Backup created by:"
2779
  msgstr ""
2780
 
2781
+ #: udaddons/options.php:482
2782
  msgid "Available to claim on this site"
2783
  msgstr ""
2784
 
2785
+ #: udaddons/updraftplus-addons.php:229
2786
  msgid "To maintain your access to support, please renew."
2787
  msgstr ""
2788
 
2789
+ #: udaddons/updraftplus-addons.php:217
2790
  msgid "Your paid access to UpdraftPlus updates for %s add-ons on this site has expired."
2791
  msgstr ""
2792
 
2793
+ #: udaddons/updraftplus-addons.php:221
2794
  msgid "Your paid access to UpdraftPlus updates for %s of the %s add-ons on this site will soon expire."
2795
  msgstr ""
2796
 
2797
+ #: udaddons/updraftplus-addons.php:221 udaddons/updraftplus-addons.php:223
2798
  msgid "To retain your access, and maintain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2799
  msgstr ""
2800
 
2801
+ #: udaddons/updraftplus-addons.php:223
2802
  msgid "Your paid access to UpdraftPlus updates for this site will soon expire."
2803
  msgstr ""
2804
 
2805
+ #: udaddons/updraftplus-addons.php:227
2806
  msgid "Your paid access to UpdraftPlus support has expired."
2807
  msgstr ""
2808
 
2809
+ #: udaddons/updraftplus-addons.php:227
2810
  msgid "To regain your access, please renew."
2811
  msgstr ""
2812
 
2813
+ #: udaddons/updraftplus-addons.php:229
2814
  msgid "Your paid access to UpdraftPlus support will soon expire."
2815
  msgstr ""
2816
 
2817
+ #: udaddons/updraftplus-addons.php:180
2818
  msgid "Dismiss from main dashboard (for %s weeks)"
2819
  msgstr ""
2820
 
2821
+ #: udaddons/updraftplus-addons.php:215
2822
  msgid "Your paid access to UpdraftPlus updates for this site has expired. You will no longer receive updates to UpdraftPlus."
2823
  msgstr ""
2824
 
2825
+ #: udaddons/updraftplus-addons.php:215 udaddons/updraftplus-addons.php:217
2826
  msgid "To regain access to updates (including future features and compatibility with future WordPress releases) and support, please renew."
2827
  msgstr ""
2828
 
2829
+ #: class-updraftplus.php:3691
2830
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
2831
  msgstr ""
2832
 
2833
+ #: class-updraftplus.php:3698 class-updraftplus.php:3719
2834
  msgid "The attempt to undo the double-compression failed."
2835
  msgstr ""
2836
 
2837
+ #: class-updraftplus.php:3721
2838
  msgid "The attempt to undo the double-compression succeeded."
2839
  msgstr ""
2840
 
2841
+ #: admin.php:1429
2842
  msgid "Constants"
2843
  msgstr ""
2844
 
2845
+ #: backup.php:1559
2846
  msgid "Failed to open database file for reading:"
2847
  msgstr ""
2848
 
2849
+ #: backup.php:1395
2850
  msgid "please wait for the rescheduled attempt"
2851
  msgstr ""
2852
 
2853
+ #: backup.php:1397
2854
  msgid "No database tables found"
2855
  msgstr ""
2856
 
2857
+ #: addons/reporting.php:184
2858
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
2859
  msgstr ""
2860
 
2861
+ #: restorer.php:1996
2862
  msgid "Database queries processed: %d in %.2f seconds"
2863
  msgstr ""
2864
 
2865
+ #: addons/migrator.php:1235
2866
  msgid "Searching and replacing reached row: %d"
2867
  msgstr ""
2868
 
2869
+ #: addons/copycom.php:88 addons/onedrive.php:91 methods/dropbox.php:183
2870
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
2871
  msgstr ""
2872
 
2873
+ #: addons/migrator.php:659
2874
  msgid "Skipping this table: data in this table (%s) should not be search/replaced"
2875
  msgstr ""
2876
 
2877
+ #: udaddons/updraftplus-addons.php:380 udaddons/updraftplus-addons.php:383
2878
  msgid "Errors occurred:"
2879
  msgstr ""
2880
 
2881
+ #: admin.php:4713
2882
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2883
  msgstr ""
2884
 
2885
+ #: admin.php:3998
2886
  msgid "See this FAQ also."
2887
  msgstr ""
2888
 
2889
+ #: admin.php:3800
2890
  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."
2891
  msgstr ""
2892
 
2893
+ #: admin.php:2957
2894
  msgid "Retrieving (if necessary) and preparing backup files..."
2895
  msgstr ""
2896
 
2897
+ #: admin.php:1253
2898
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
2899
  msgstr ""
2900
 
2901
+ #: restorer.php:605
2902
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
2903
  msgstr ""
2904
 
2905
+ #: admin.php:757 class-updraftplus.php:563
 
 
 
 
2906
  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)"
2907
  msgstr ""
2908
 
2909
+ #: addons/migrator.php:667
2910
  msgid "Replacing in blogs/site table: from: %s to: %s"
2911
  msgstr ""
2912
 
2913
+ #: addons/migrator.php:249
2914
  msgid "Disabled this plugin: %s: re-activate it manually when you are ready."
2915
  msgstr ""
2916
 
2917
+ #: addons/migrator.php:262
2918
  msgid "%s: Skipping cache file (does not already exist)"
2919
  msgstr ""
2920
 
2921
+ #: addons/sftp.php:638 addons/sftp.php:641 includes/ftp.class.php:44
2922
+ #: includes/ftp.class.php:47
2923
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
2924
  msgstr ""
2925
 
2926
+ #: admin.php:5048
2927
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
2928
  msgstr ""
2929
 
2930
+ #: admin.php:2235 admin.php:2245
2931
  msgid "Restore failed..."
2932
  msgstr ""
2933
 
2934
+ #: addons/moredatabase.php:125 admin.php:1502
2935
  msgid "Messages:"
2936
  msgstr ""
2937
 
2938
+ #: restorer.php:1879
2939
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
2940
  msgstr ""
2941
 
2942
+ #: restorer.php:385
2943
  msgid "The directory does not exist"
2944
  msgstr ""
2945
 
2946
+ #: addons/cloudfiles-enhanced.php:248
2947
  msgid "New User's Username"
2948
  msgstr ""
2949
 
2950
+ #: addons/cloudfiles-enhanced.php:249
2951
  msgid "New User's Email Address"
2952
  msgstr ""
2953
 
2954
+ #: addons/cloudfiles-enhanced.php:226
2955
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
2956
  msgstr ""
2957
 
2958
+ #: addons/cloudfiles-enhanced.php:232
2959
  msgid "US or UK Rackspace Account"
2960
  msgstr ""
2961
 
2962
+ #: addons/cloudfiles-enhanced.php:246
2963
  msgid "Admin Username"
2964
  msgstr ""
2965
 
2966
+ #: addons/cloudfiles-enhanced.php:247
2967
  msgid "Admin API Key"
2968
  msgstr ""
2969
 
2970
+ #: addons/cloudfiles-enhanced.php:55
2971
  msgid "You need to enter a new username"
2972
  msgstr ""
2973
 
2974
+ #: addons/cloudfiles-enhanced.php:59
2975
  msgid "You need to enter a container"
2976
  msgstr ""
2977
 
2978
+ #: addons/cloudfiles-enhanced.php:64
2979
  msgid "You need to enter a valid new email address"
2980
  msgstr ""
2981
 
2982
+ #: addons/cloudfiles-enhanced.php:153
2983
  msgid "Conflict: that user or email address already exists"
2984
  msgstr ""
2985
 
2986
+ #: addons/cloudfiles-enhanced.php:155 addons/cloudfiles-enhanced.php:159
2987
+ #: addons/cloudfiles-enhanced.php:164 addons/cloudfiles-enhanced.php:185
2988
+ #: addons/cloudfiles-enhanced.php:193 addons/cloudfiles-enhanced.php:198
2989
  msgid "Cloud Files operation failed (%s)"
2990
  msgstr ""
2991
 
2992
+ #: addons/cloudfiles-enhanced.php:210 addons/s3-enhanced.php:274
2993
  msgid "Username: %s"
2994
  msgstr ""
2995
 
2996
+ #: addons/cloudfiles-enhanced.php:210
2997
  msgid "Password: %s"
2998
  msgstr ""
2999
 
3000
+ #: addons/cloudfiles-enhanced.php:210
3001
  msgid "API Key: %s"
3002
  msgstr ""
3003
 
3004
+ #: addons/cloudfiles-enhanced.php:223
3005
  msgid "Create new API user and container"
3006
  msgstr ""
3007
 
3017
  msgid "Create a new API user with access to only this container (rather than your whole account)"
3018
  msgstr ""
3019
 
3020
+ #: addons/cloudfiles-enhanced.php:47
3021
  msgid "You need to enter an admin username"
3022
  msgstr ""
3023
 
3024
+ #: addons/cloudfiles-enhanced.php:51
3025
  msgid "You need to enter an admin API key"
3026
  msgstr ""
3027
 
3028
+ #: addons/cloudfiles-enhanced.php:258 methods/cloudfiles-new.php:103
3029
  msgid "Northern Virginia (IAD)"
3030
  msgstr ""
3031
 
3032
+ #: addons/cloudfiles-enhanced.php:259 methods/cloudfiles-new.php:104
3033
  msgid "Hong Kong (HKG)"
3034
  msgstr ""
3035
 
3049
  msgid "Cloud Files API Key"
3050
  msgstr ""
3051
 
3052
+ #: addons/cloudfiles-enhanced.php:270 methods/cloudfiles-new.php:132
3053
  msgid "Cloud Files Container"
3054
  msgstr ""
3055
 
3061
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3062
  msgstr ""
3063
 
3064
+ #: addons/cloudfiles-enhanced.php:251 methods/cloudfiles-new.php:95
3065
  msgid "Cloud Files Storage Region"
3066
  msgstr ""
3067
 
3068
+ #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:100
3069
  msgid "Dallas (DFW) (default)"
3070
  msgstr ""
3071
 
3072
+ #: addons/cloudfiles-enhanced.php:256 methods/cloudfiles-new.php:101
3073
  msgid "Sydney (SYD)"
3074
  msgstr ""
3075
 
3076
+ #: addons/cloudfiles-enhanced.php:257 methods/cloudfiles-new.php:102
3077
  msgid "Chicago (ORD)"
3078
  msgstr ""
3079
 
3080
+ #: addons/cloudfiles-enhanced.php:150 addons/s3-enhanced.php:177
3081
+ #: methods/cloudfiles-new.php:39 methods/openstack-base.php:347
3082
+ #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
+ #: methods/openstack2.php:25
3084
  msgid "Authorisation failed (check your credentials)"
3085
  msgstr ""
3086
 
3087
+ #: addons/cloudfiles-enhanced.php:233 methods/cloudfiles-new.php:85
3088
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
  msgstr ""
3090
 
3091
+ #: methods/updraftvault.php:492 udaddons/options.php:265
3092
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
  msgstr ""
3094
 
3095
+ #: admin.php:513 central/bootstrap.php:448
3096
  msgid "Create"
3097
  msgstr ""
3098
 
3099
+ #: admin.php:475
 
 
 
 
3100
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
  msgstr ""
3102
 
3103
+ #: admin.php:476
3104
  msgid "Trying..."
3105
  msgstr ""
3106
 
3107
+ #: class-updraftplus.php:1249
 
 
 
 
3108
  msgid "(when decrypted)"
3109
  msgstr ""
3110
 
3111
+ #: admin.php:486 admin.php:4990
3112
  msgid "Error data:"
3113
  msgstr ""
3114
 
3115
+ #: admin.php:4664
3116
  msgid "Backup does not exist in the backup history"
3117
  msgstr ""
3118
 
3119
+ #: admin.php:3164
3120
  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."
3121
  msgstr ""
3122
 
3123
+ #: restorer.php:1585
3124
  msgid "Split line to avoid exceeding maximum packet size"
3125
  msgstr ""
3126
 
3127
+ #: restorer.php:1466
3128
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
3129
  msgstr ""
3130
 
3131
+ #: restorer.php:1510
3132
  msgid "<strong>Backup of:</strong> %s"
3133
  msgstr ""
3134
 
3135
+ #: restorer.php:1297
3136
  msgid "New table prefix: %s"
3137
  msgstr ""
3138
 
3139
+ #: restorer.php:956 restorer.php:970
3140
  msgid "%s: This directory already exists, and will be replaced"
3141
  msgstr ""
3142
 
3143
+ #: restorer.php:986
3144
  msgid "File permissions do not allow the old data to be moved and retained; instead, it will be deleted."
3145
  msgstr ""
3146
 
3147
+ #: restorer.php:103
3148
  msgid "Could not move the files into place. Check your file permissions."
3149
  msgstr ""
3150
 
3151
+ #: restorer.php:96
3152
  msgid "Moving old data out of the way..."
3153
  msgstr ""
3154
 
3155
+ #: restorer.php:100
3156
  msgid "Could not move old files out of the way."
3157
  msgstr ""
3158
 
3159
+ #: restorer.php:102
3160
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
  msgstr ""
3162
 
3163
+ #: addons/reporting.php:369
3164
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
3165
  msgstr ""
3166
 
3167
+ #: addons/reporting.php:383
3168
  msgid "Add another address..."
3169
  msgstr ""
3170
 
3171
+ #: addons/reporting.php:276
3172
  msgid " (with errors (%s))"
3173
  msgstr ""
3174
 
3175
+ #: addons/reporting.php:278
3176
  msgid " (with warnings (%s))"
3177
  msgstr ""
3178
 
3179
+ #: addons/reporting.php:308
3180
  msgid "Use the \"Reporting\" section to configure the email addresses to be used."
3181
  msgstr ""
3182
 
3183
+ #: class-updraftplus.php:1218 class-updraftplus.php:1220
3184
  msgid "files: %s"
3185
  msgstr ""
3186
 
3187
+ #: class-updraftplus.php:1245 class-updraftplus.php:1250
 
 
 
 
3188
  msgid "%s checksum: %s"
3189
  msgstr ""
3190
 
3191
+ #: addons/reporting.php:344
3192
  msgid "Email reports"
3193
  msgstr ""
3194
 
3195
+ #: addons/reporting.php:164
3196
  msgid "Errors"
3197
  msgstr ""
3198
 
3199
+ #: addons/reporting.php:179
3200
  msgid "Warnings"
3201
  msgstr ""
3202
 
3203
+ #: addons/reporting.php:188
3204
  msgid "Time taken:"
3205
  msgstr ""
3206
 
3207
+ #: addons/reporting.php:189 admin.php:4277
3208
  msgid "Uploaded to:"
3209
  msgstr ""
3210
 
3211
+ #: addons/reporting.php:224
3212
  msgid "Debugging information"
3213
  msgstr ""
3214
 
3215
+ #: addons/reporting.php:122
3216
  msgid "%d errors, %d warnings"
3217
  msgstr ""
3218
 
3219
+ #: addons/reporting.php:136
3220
  msgid "%d hours, %d minutes, %d seconds"
3221
  msgstr ""
3222
 
3223
+ #: addons/reporting.php:141
3224
  msgid "Backup Report"
3225
  msgstr ""
3226
 
3227
+ #: addons/reporting.php:149
3228
  msgid "Backup began:"
3229
  msgstr ""
3230
 
3231
+ #: addons/morefiles.php:55 addons/morefiles.php:56 addons/reporting.php:150
3232
  msgid "Contains:"
3233
  msgstr ""
3234
 
3235
+ #: addons/reporting.php:161
3236
  msgid "Errors / warnings:"
3237
  msgstr ""
3238
 
3239
+ #: addons/copycom.php:377 addons/onedrive.php:492 methods/dropbox.php:506
 
3240
  msgid "%s authentication"
3241
  msgstr ""
3242
 
3243
+ #: addons/copycom.php:377 addons/onedrive.php:492 class-updraftplus.php:304
3244
+ #: methods/dropbox.php:506 methods/dropbox.php:520 methods/dropbox.php:615
 
3245
  msgid "%s error: %s"
3246
  msgstr ""
3247
 
3248
+ #: addons/googlecloud.php:815 methods/dropbox.php:426
3249
  msgid "%s logo"
3250
  msgstr ""
3251
 
3252
+ #: methods/email.php:73
3253
  msgid "Your site's admin email address (%s) will be used."
3254
  msgstr ""
3255
 
3256
+ #: methods/email.php:74
3257
  msgid "For more options, use the \"%s\" add-on."
3258
  msgstr ""
3259
 
3260
+ #: methods/s3.php:253
3261
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3262
  msgstr ""
3263
 
3264
+ #: methods/dropbox.php:202
3265
  msgid "%s did not return the expected response - check your log file for more details"
3266
  msgstr ""
3267
 
3268
+ #: admin.php:522 methods/updraftvault.php:255 methods/updraftvault.php:300
3269
+ #: udaddons/options.php:244
3270
  msgid "Connect"
3271
  msgstr ""
3272
 
3273
+ #: admin.php:3922
 
 
 
 
3274
  msgid "For more reporting features, use the Reporting add-on."
3275
  msgstr ""
3276
 
3277
+ #: class-updraftplus.php:3517
3278
  msgid "(version: %s)"
3279
  msgstr ""
3280
 
3281
+ #: addons/reporting.php:416 admin.php:466
3282
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
  msgstr ""
3284
 
3285
+ #: addons/reporting.php:416 admin.php:465
3286
  msgid "When the Email storage method is enabled, also send the entire backup"
3287
  msgstr ""
3288
 
3289
+ #: backup.php:843
3290
  msgid "Unknown/unexpected error - please raise a support request"
3291
  msgstr ""
3292
 
3293
+ #: addons/reporting.php:221 backup.php:879
3294
  msgid "The log file has been attached to this email."
3295
  msgstr ""
3296
 
3297
+ #: backup.php:885
3298
  msgid "Backed up: %s"
3299
  msgstr ""
3300
 
3301
+ #: backup.php:921
3302
  msgid "Backup contains:"
3303
  msgstr ""
3304
 
3305
+ #: addons/reporting.php:148 backup.php:922
3306
  msgid "Latest status:"
3307
  msgstr ""
3308
 
3309
+ #: admin.php:155 backup.php:835
3310
  msgid "Files and database"
3311
  msgstr ""
3312
 
3313
+ #: backup.php:837
3314
  msgid "Files (database backup has not completed)"
3315
  msgstr ""
3316
 
3317
+ #: backup.php:837
3318
  msgid "Files only (database was not part of this particular schedule)"
3319
  msgstr ""
3320
 
3321
+ #: backup.php:840
3322
  msgid "Database (files backup has not completed)"
3323
  msgstr ""
3324
 
3325
+ #: backup.php:840
3326
  msgid "Database only (files were not part of this particular schedule)"
3327
  msgstr ""
3328
 
3329
+ #: options.php:185
3330
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3331
  msgstr ""
3332
 
3333
+ #: options.php:185
3334
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3335
  msgstr ""
3336
 
3337
+ #: options.php:185
3338
  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>."
3339
  msgstr ""
3340
 
3341
+ #: options.php:185
3342
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
  msgstr ""
3344
 
3345
+ #: options.php:185
3346
  msgid "UpdraftPlus warning:"
3347
  msgstr ""
3348
 
3349
+ #: udaddons/options.php:488
3350
  msgid "(or connect using the form on this page if you have already purchased it)"
3351
  msgstr ""
3352
 
3353
+ #: udaddons/options.php:457
3354
  msgid "You've got it"
3355
  msgstr ""
3356
 
3357
+ #: udaddons/options.php:459
3358
  msgid "Your version: %s"
3359
  msgstr ""
3360
 
3361
+ #: udaddons/options.php:461 udaddons/options.php:463
3362
  msgid "latest"
3363
  msgstr ""
3364
 
3365
+ #: udaddons/options.php:471
3366
  msgid "please follow this link to update the plugin in order to get it"
3367
  msgstr ""
3368
 
3369
+ #: udaddons/options.php:474
3370
  msgid "please follow this link to update the plugin in order to activate it"
3371
  msgstr ""
3372
 
3373
+ #: udaddons/options.php:370 udaddons/updraftplus-addons.php:256
3374
  msgid "UpdraftPlus Addons"
3375
  msgstr ""
3376
 
3377
+ #: udaddons/options.php:381
3378
  msgid "An update containing your addons is available for UpdraftPlus - please follow this link to get it."
3379
  msgstr ""
3380
 
3381
+ #: udaddons/options.php:423
3382
  msgid "UpdraftPlus Support"
3383
  msgstr ""
3384
 
3385
+ #: udaddons/updraftplus-addons.php:669
3386
  msgid "UpdraftPlus.Com responded, but we did not understand the response"
3387
  msgstr ""
3388
 
3389
+ #: methods/updraftvault.php:538 udaddons/updraftplus-addons.php:709
3390
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3391
  msgstr ""
3392
 
3393
+ #: methods/updraftvault.php:579 udaddons/updraftplus-addons.php:748
3394
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3395
  msgstr ""
3396
 
3397
+ #: methods/updraftvault.php:565 methods/updraftvault.php:583
3398
+ #: udaddons/updraftplus-addons.php:751
3399
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3400
  msgstr ""
3401
 
3402
+ #: udaddons/options.php:94
3403
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
3404
  msgstr ""
3405
 
3406
+ #: udaddons/updraftplus-addons.php:667
3407
  msgid "We failed to successfully connect to UpdraftPlus.Com"
3408
  msgstr ""
3409
 
3410
+ #: admin.php:3903 methods/email.php:74
3411
  msgid "Reporting"
3412
  msgstr ""
3413
 
3414
+ #: admin.php:1400
3415
  msgid "Options (raw)"
3416
  msgstr ""
3417
 
3418
+ #: addons/reporting.php:414 admin.php:464
3419
  msgid "Send a report only when there are warnings/errors"
3420
  msgstr ""
3421
 
3422
+ #: restorer.php:1528
3423
  msgid "Content URL:"
3424
  msgstr ""
3425
 
3426
+ #: restorer.php:100
3427
  msgid "You should check the file permissions in your WordPress installation"
3428
  msgstr ""
3429
 
3430
+ #: admin.php:3826
3431
  msgid "See also the \"More Files\" add-on from our shop."
3432
  msgstr ""
3433
 
3434
+ #: backup.php:2877 class-updraftplus.php:583
3435
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
3436
  msgstr ""
3437
 
3438
+ #: class-updraftplus.php:560
3439
  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)"
3440
  msgstr ""
3441
 
3442
+ #: udaddons/options.php:484
3443
  msgid "You have an inactive purchase"
3444
  msgstr ""
3445
 
3446
+ #: udaddons/options.php:482 udaddons/options.php:484
3447
  msgid "activate it on this site"
3448
  msgstr ""
3449
 
3450
+ #: udaddons/options.php:488
3451
  msgid "Get it from the UpdraftPlus.Com Store"
3452
  msgstr ""
3453
 
3454
+ #: udaddons/options.php:489
3455
  msgid "Buy It"
3456
  msgstr ""
3457
 
3458
+ #: udaddons/options.php:547
3459
  msgid "Manage Addons"
3460
  msgstr ""
3461
 
3462
+ #: udaddons/options.php:340
3463
  msgid "An unknown response was received. Response was:"
3464
  msgstr ""
3465
 
3466
+ #: udaddons/options.php:407
3467
  msgid "An error occurred when trying to retrieve your add-ons."
3468
  msgstr ""
3469
 
3470
+ #: udaddons/options.php:425
3471
  msgid "Need to get support?"
3472
  msgstr ""
3473
 
3474
+ #: udaddons/options.php:425
3475
  msgid "Go here"
3476
  msgstr ""
3477
 
3478
+ #: udaddons/options.php:465
3479
  msgid "(apparently a pre-release or withdrawn release)"
3480
  msgstr ""
3481
 
3482
+ #: udaddons/options.php:471
3483
  msgid "Available for this site (via your all-addons purchase)"
3484
  msgstr ""
3485
 
3486
+ #: udaddons/options.php:474
3487
  msgid "Assigned to this site"
3488
  msgstr ""
3489
 
3490
+ #: udaddons/options.php:242
3491
  msgid "Interested in knowing about your UpdraftPlus.Com password security? Read about it here."
3492
  msgstr ""
3493
 
3494
+ #: udaddons/options.php:271
3495
  msgid "You are presently <strong>connected</strong> to an UpdraftPlus.Com account."
3496
  msgstr ""
3497
 
3498
+ #: udaddons/options.php:272
3499
  msgid "If you bought new add-ons, then follow this link to refresh your connection"
3500
  msgstr ""
3501
 
3502
+ #: udaddons/options.php:281
3503
  msgid "You are presently <strong>not connected</strong> to an UpdraftPlus.Com account."
3504
  msgstr ""
3505
 
3506
+ #: udaddons/options.php:290
3507
  msgid "Errors occurred when trying to connect to UpdraftPlus.Com:"
3508
  msgstr ""
3509
 
3510
+ #: udaddons/options.php:337
3511
  msgid "Please wait whilst we make the claim..."
3512
  msgstr ""
3513
 
3514
+ #: udaddons/options.php:339
 
 
 
 
3515
  msgid "Claim not granted - your account login details were wrong"
3516
  msgstr ""
3517
 
3518
+ #: udaddons/options.php:120
3519
  msgid "Your web server's version of PHP is too old ("
3520
  msgstr ""
3521
 
3522
+ #: udaddons/options.php:141
3523
  msgid "Connect with your UpdraftPlus.Com account"
3524
  msgstr ""
3525
 
3526
+ #: udaddons/options.php:172
3527
  msgid "Not yet got an account (it's free)? Go get one!"
3528
  msgstr ""
3529
 
3530
+ #: udaddons/options.php:183
3531
  msgid "Forgotten your details?"
3532
  msgstr ""
3533
 
3534
+ #: udaddons/options.php:100
3535
  msgid "You have not yet connected with your UpdraftPlus.Com account, to enable you to list your purchased add-ons."
3536
  msgstr ""
3537
 
3538
+ #: udaddons/options.php:100 udaddons/options.php:102
3539
  msgid "Go here to connect."
3540
  msgstr ""
3541
 
3542
+ #: udaddons/options.php:109
3543
  msgid "UpdraftPlus is not yet activated."
3544
  msgstr ""
3545
 
3546
+ #: udaddons/options.php:110
3547
  msgid "Go here to activate it."
3548
  msgstr ""
3549
 
3550
+ #: udaddons/options.php:113
3551
  msgid "UpdraftPlus is not yet installed."
3552
  msgstr ""
3553
 
3554
+ #: udaddons/options.php:113
3555
  msgid "Go here to begin installing it."
3556
  msgstr ""
3557
 
3558
+ #: udaddons/options.php:114
3559
  msgid "You do seem to have the obsolete Updraft plugin installed - perhaps you got them confused?"
3560
  msgstr ""
3561
 
3562
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3563
  msgid "Your web-server does not have the %s module installed."
3564
  msgstr ""
3565
 
3566
+ #: addons/moredatabase.php:333 addons/moredatabase.php:364
3567
  msgid "Without it, encryption will be a lot slower."
3568
  msgstr ""
3569
 
3570
+ #: admin.php:2890
3571
  msgid "Drop backup files here"
3572
  msgstr ""
3573
 
3574
+ #: addons/googlecloud.php:898 methods/googledrive.php:951
3575
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
3576
  msgstr ""
3577
 
3578
+ #: class-updraftplus.php:3373
3579
  msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
3580
  msgstr ""
3581
 
3582
+ #: class-updraftplus.php:3383
3583
  msgid "Check out WordShell"
3584
  msgstr ""
3585
 
3586
+ #: class-updraftplus.php:3383
3587
  msgid "manage WordPress from the command line - huge time-saver"
3588
  msgstr ""
3589
 
3590
+ #: admin.php:472
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3591
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
3592
  msgstr ""
3593
 
3594
+ #: admin.php:474
3595
  msgid "The web server returned an error code (try again, or check your web server logs)"
3596
  msgstr ""
3597
 
3598
+ #: admin.php:470
3599
  msgid "If you exclude both the database and the files, then you have excluded everything!"
3600
  msgstr ""
3601
 
3602
+ #: restorer.php:1522
3603
  msgid "Site home:"
3604
  msgstr ""
3605
 
3606
+ #: addons/morestorage.php:78
3607
  msgid "Remote Storage Options"
3608
  msgstr ""
3609
 
3610
+ #: addons/autobackup.php:238 addons/autobackup.php:924
3611
  msgid "Remember this choice for next time (you will still have the chance to change it)"
3612
  msgstr ""
3613
 
3614
+ #: addons/autobackup.php:277 addons/autobackup.php:370
3615
  msgid "(logs can be found in the UpdraftPlus settings page as normal)..."
3616
  msgstr ""
3617
 
3618
+ #: addons/azure.php:349 methods/stream-base.php:125 methods/stream-base.php:130
3619
  msgid "Upload failed"
3620
  msgstr ""
3621
 
3622
+ #: admin.php:3792
3623
  msgid "You can send a backup to more than one destination with an add-on."
3624
  msgstr ""
3625
 
3626
+ #: admin.php:3382
3627
  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."
3628
  msgstr ""
3629
 
3630
+ #: admin.php:3280
3631
  msgid "(%s%%, file %s of %s)"
3632
  msgstr ""
3633
 
3639
  msgid "Failed: We were able to log in, but failed to successfully create a file in that location."
3640
  msgstr ""
3641
 
3642
+ #: addons/autobackup.php:238 addons/autobackup.php:928 addons/lockadmin.php:132
3643
  msgid "Read more about how this works..."
3644
  msgstr ""
3645
 
3646
+ #: addons/sftp.php:400
3647
  msgid "Use SCP instead of SFTP"
3648
  msgstr ""
3649
 
3650
+ #: addons/sftp.php:45
3651
  msgid "SCP/SFTP host setting"
3652
  msgstr ""
3653
 
3654
+ #: addons/sftp.php:46
3655
  msgid "SCP/SFTP user setting"
3656
  msgstr ""
3657
 
3658
+ #: methods/email.php:45
3659
  msgid "Backup is of: %s."
3660
  msgstr ""
3661
 
3662
+ #: methods/email.php:58
3663
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
3664
  msgstr ""
3665
 
3666
+ #: admin.php:559
 
 
3667
  msgid "%s settings test result:"
3668
  msgstr ""
3669
 
3670
+ #: admin.php:4570
3671
  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."
3672
  msgstr ""
3673
 
3674
+ #: admin.php:4568 admin.php:4570
3675
  msgid "(Not finished)"
3676
  msgstr ""
3677
 
3678
+ #: admin.php:3981
3679
  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)."
3680
  msgstr ""
3681
 
3682
+ #: admin.php:3981
3683
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
3684
  msgstr ""
3685
 
3686
+ #: admin.php:3289
3687
  msgid "Waiting until scheduled time to retry because of errors"
3688
  msgstr ""
3689
 
3690
+ #: admin.php:3294
3691
  msgid "Backup finished"
3692
  msgstr ""
3693
 
3694
+ #: admin.php:3344 central/bootstrap.php:410 central/bootstrap.php:417
3695
+ #: methods/updraftvault.php:335 methods/updraftvault.php:403
3696
  msgid "Unknown"
3697
  msgstr ""
3698
 
3699
+ #: admin.php:3361
3700
  msgid "next resumption: %d (after %ss)"
3701
  msgstr ""
3702
 
3703
+ #: admin.php:3362
3704
  msgid "last activity: %ss ago"
3705
  msgstr ""
3706
 
3707
+ #: admin.php:3377
3708
  msgid "Job ID: %s"
3709
  msgstr ""
3710
 
3711
+ #: admin.php:3321
3712
  msgid "table: %s"
3713
  msgstr ""
3714
 
3715
+ #: admin.php:3308
3716
  msgid "Created database backup"
3717
  msgstr ""
3718
 
3719
+ #: admin.php:3334
3720
  msgid "Encrypting database"
3721
  msgstr ""
3722
 
3723
+ #: admin.php:3342
3724
  msgid "Encrypted database"
3725
  msgstr ""
3726
 
3727
+ #: admin.php:3273
3728
  msgid "Uploading files to remote storage"
3729
  msgstr ""
3730
 
3731
+ #: admin.php:3285
3732
  msgid "Pruning old backup sets"
3733
  msgstr ""
3734
 
3735
+ #: admin.php:3254
3736
  msgid "Creating file backup zips"
3737
  msgstr ""
3738
 
3739
+ #: admin.php:3267
3740
  msgid "Created file backup zips"
3741
  msgstr ""
3742
 
3743
+ #: admin.php:3319
3744
  msgid "Creating database backup"
3745
  msgstr ""
3746
 
3747
+ #: admin.php:3249
3748
  msgid "Backup begun"
3749
  msgstr ""
3750
 
3751
+ #: admin.php:2777
3752
  msgid "Backups in progress:"
3753
  msgstr ""
3754
 
3755
+ #: admin.php:761
3756
  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."
3757
  msgstr ""
3758
 
3759
+ #: restorer.php:580 restorer.php:587
3760
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
3761
  msgstr ""
3762
 
3763
+ #: restorer.php:580
3764
  msgid "folder"
3765
  msgstr ""
3766
 
3767
+ #: restorer.php:587
3768
  msgid "file"
3769
  msgstr ""
3770
 
3771
+ #: class-updraftplus.php:2435
 
 
 
 
 
 
 
 
3772
  msgid "The backup has not finished; a resumption is scheduled"
3773
  msgstr ""
3774
 
3775
+ #: class-updraftplus.php:1489
3776
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3777
  msgstr ""
3778
 
3779
+ #: addons/copycom.php:492 addons/googlecloud.php:337 addons/onedrive.php:630
3780
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:95
3781
+ #: methods/googledrive.php:239
3782
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
3783
  msgstr ""
3784
 
3785
+ #: admin.php:2358
3786
  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)."
3787
  msgstr ""
3788
 
3789
+ #: addons/autobackup.php:102 addons/autobackup.php:911
3790
  msgid "UpdraftPlus Automatic Backups"
3791
  msgstr ""
3792
 
3793
+ #: addons/autobackup.php:932
3794
  msgid "Do not abort after pressing Proceed below - wait for the backup to complete."
3795
  msgstr ""
3796
 
3797
+ #: addons/autobackup.php:933 admin.php:515
3798
  msgid "Proceed with update"
3799
  msgstr ""
3800
 
3801
+ #: addons/autobackup.php:281 addons/autobackup.php:377
3802
  msgid "Starting automatic backup..."
3803
  msgstr ""
3804
 
3805
+ #: addons/autobackup.php:331
3806
  msgid "plugins"
3807
  msgstr ""
3808
 
3809
+ #: addons/autobackup.php:338
3810
  msgid "themes"
3811
  msgstr ""
3812
 
3813
+ #: addons/autobackup.php:359
3814
  msgid "You do not have sufficient permissions to update this site."
3815
  msgstr ""
3816
 
3817
+ #: addons/autobackup.php:370
3818
  msgid "Creating database backup with UpdraftPlus..."
3819
  msgstr ""
3820
 
3821
+ #: addons/autobackup.php:379 addons/autobackup.php:507
3822
+ #: addons/autobackup.php:558
3823
  msgid "Automatic Backup"
3824
  msgstr ""
3825
 
3826
+ #: addons/autobackup.php:432
3827
  msgid "Creating backup with UpdraftPlus..."
3828
  msgstr ""
3829
 
3830
+ #: addons/autobackup.php:460
3831
  msgid "Errors have occurred:"
3832
  msgstr ""
3833
 
3834
+ #: addons/autobackup.php:238
3835
  msgid "Automatically backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
3836
  msgstr ""
3837
 
3838
+ #: addons/autobackup.php:277
3839
  msgid "Creating %s and database backup with UpdraftPlus..."
3840
  msgstr ""
3841
 
3855
  msgid "If you are not sure then you should stop; otherwise you may destroy this WordPress installation."
3856
  msgstr ""
3857
 
3858
+ #: admin.php:2159 admin.php:2549
3859
  msgid "Support"
3860
  msgstr ""
3861
 
3862
+ #: admin.php:2162
3863
  msgid "More plugins"
3864
  msgstr ""
3865
 
3866
+ #: class-updraftplus.php:3550
3867
  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."
3868
  msgstr ""
3869
 
3870
+ #: class-updraftplus.php:3653
3871
  msgid "This database backup is missing core WordPress tables: %s"
3872
  msgstr ""
3873
 
3874
+ #: class-updraftplus.php:3658
3875
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3876
  msgstr ""
3877
 
3878
+ #: class-updraftplus.php:3466
3879
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3880
  msgstr ""
3881
 
3882
+ #: admin.php:581 admin.php:736
3883
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
3884
  msgstr ""
3885
 
3886
+ #: admin.php:581 admin.php:736
3887
  msgid "Be safe every time, without needing to remember - follow this link to learn more."
3888
  msgstr ""
3889
 
3890
+ #: addons/autobackup.php:496 admin.php:721
3891
  msgid "Update Plugin"
3892
  msgstr ""
3893
 
3894
+ #: addons/autobackup.php:547 admin.php:725
3895
  msgid "Update Theme"
3896
  msgstr ""
3897
 
3898
+ #: admin.php:579 admin.php:734
3899
  msgid "Dismiss (for %s weeks)"
3900
  msgstr ""
3901
 
3902
+ #: addons/autobackup.php:914 admin.php:580 admin.php:735
3903
  msgid "Be safe with an automatic backup"
3904
  msgstr ""
3905
 
3906
+ #: restorer.php:2077
3907
  msgid "Uploads path (%s) does not exist - resetting (%s)"
3908
  msgstr ""
3909
 
3910
+ #: admin.php:2321
3911
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3912
  msgstr ""
3913
 
3914
+ #: admin.php:505
3915
  msgid "Follow this link to attempt decryption and download the database file to your computer."
3916
  msgstr ""
3917
 
3918
+ #: admin.php:506
3919
  msgid "This decryption key will be attempted:"
3920
  msgstr ""
3921
 
3922
+ #: admin.php:507
3923
  msgid "Unknown server response:"
3924
  msgstr ""
3925
 
3926
+ #: admin.php:508
3927
  msgid "Unknown server response status:"
3928
  msgstr ""
3929
 
3930
+ #: admin.php:509
3931
  msgid "The file was uploaded."
3932
  msgstr ""
3933
 
3934
+ #: admin.php:501
3935
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
3936
  msgstr ""
3937
 
3938
+ #: admin.php:502
3939
  msgid "Upload error:"
3940
  msgstr ""
3941
 
3942
+ #: admin.php:503
3943
  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)."
3944
  msgstr ""
3945
 
3946
+ #: admin.php:504
3947
  msgid "Upload error"
3948
  msgstr ""
3949
 
3950
+ #: admin.php:491
3951
  msgid "Delete from your web server"
3952
  msgstr ""
3953
 
3954
+ #: admin.php:492
3955
  msgid "Download to your computer"
3956
  msgstr ""
3957
 
3958
+ #: admin.php:493
3959
  msgid "and then, if you wish,"
3960
  msgstr ""
3961
 
3962
+ #: methods/s3.php:689
3963
  msgid "Examples of S3-compatible storage providers:"
3964
  msgstr ""
3965
 
3966
+ #: admin.php:4940
 
 
 
 
 
 
 
 
3967
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
3968
  msgstr ""
3969
 
3970
+ #: admin.php:4534
3971
  msgid "(%d archive(s) in set)."
3972
  msgstr ""
3973
 
3974
+ #: admin.php:4537
3975
  msgid "You appear to be missing one or more archives from this multi-archive set."
3976
  msgstr ""
3977
 
3978
+ #: admin.php:3958
3979
  msgid "Split archives every:"
3980
  msgstr ""
3981
 
3982
+ #: admin.php:482
3983
  msgid "Error: the server sent an empty response."
3984
  msgstr ""
3985
 
3986
+ #: admin.php:483
3987
  msgid "Warnings:"
3988
  msgstr ""
3989
 
3990
+ #: addons/moredatabase.php:269
3991
  msgid "Error: the server sent us a response (JSON) which we did not understand."
3992
  msgstr ""
3993
 
3994
+ #: admin.php:2054
3995
  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?"
3996
  msgstr ""
3997
 
3998
+ #: admin.php:1330
3999
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
4000
  msgstr ""
4001
 
4002
+ #: admin.php:1332
4003
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
4004
  msgstr ""
4005
 
4006
+ #: admin.php:1334
4007
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
4008
  msgstr ""
4009
 
4010
+ #: admin.php:1014
4011
  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"
4012
  msgstr ""
4013
 
4014
+ #: admin.php:1234
4015
  msgid "No such backup set exists"
4016
  msgstr ""
4017
 
4018
+ #: admin.php:1303
4019
  msgid "File not found (you need to upload it): %s"
4020
  msgstr ""
4021
 
4022
+ #: admin.php:1305
4023
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
4024
  msgstr ""
4025
 
4026
+ #: admin.php:1310
4027
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
4028
  msgstr ""
4029
 
4030
+ #: admin.php:1325
4031
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
4032
  msgstr ""
4033
 
4034
+ #: restorer.php:529
4035
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
4036
  msgstr ""
4037
 
4038
+ #: restorer.php:520
4039
  msgid "Failed to move file (check your file permissions and disk quota): %s"
4040
  msgstr ""
4041
 
4042
+ #: restorer.php:97
4043
  msgid "Moving unpacked backup into place..."
4044
  msgstr ""
4045
 
4046
+ #: backup.php:2584 backup.php:2837
4047
  msgid "Failed to open the zip file (%s) - %s"
4048
  msgstr ""
4049
 
4051
  msgid "WordPress root directory server path: %s"
4052
  msgstr ""
4053
 
4054
+ #: methods/s3.php:696
4055
  msgid "... and many more!"
4056
  msgstr ""
4057
 
4058
+ #: methods/s3.php:734
4059
  msgid "%s end-point"
4060
  msgstr ""
4061
 
4062
+ #: admin.php:4859
4063
  msgid "File is not locally present - needs retrieving from remote storage"
4064
  msgstr ""
4065
 
4067
  msgid "S3 (Compatible)"
4068
  msgstr ""
4069
 
4070
+ #: admin.php:4807
4071
  msgid "Final checks"
4072
  msgstr ""
4073
 
4074
+ #: admin.php:4846
4075
  msgid "Looking for %s archive: file name: %s"
4076
  msgstr ""
4077
 
4078
+ #: admin.php:3964
4079
  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)."
4080
  msgstr ""
4081
 
4082
+ #: admin.php:3867
4083
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4084
  msgstr ""
4085
 
4086
+ #: admin.php:4081
4087
  msgid "Your wp-content directory server path: %s"
4088
  msgstr ""
4089
 
4090
+ #: admin.php:498
4091
  msgid "Raw backup history"
4092
  msgstr ""
4093
 
4094
+ #: admin.php:3105
4095
  msgid "Show raw backup and file list"
4096
  msgstr ""
4097
 
4098
+ #: admin.php:481
4099
  msgid "Processing files - please wait..."
4100
  msgstr ""
4101
 
4102
+ #: admin.php:2858
4103
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4104
  msgstr ""
4105
 
4106
+ #: admin.php:2858 admin.php:4992
4107
  msgid "Please consult this FAQ for help on what to do about it."
4108
  msgstr ""
4109
 
4110
+ #: class-updraftplus.php:3474
4111
  msgid "Failed to open database file."
4112
  msgstr ""
4113
 
4114
+ #: class-updraftplus.php:3454
4115
  msgid "Failed to write out the decrypted database to the filesystem."
4116
  msgstr ""
4117
 
4118
+ #: admin.php:1372
4119
  msgid "Known backups (raw)"
4120
  msgstr ""
4121
 
4122
+ #: restorer.php:1270
4123
  msgid "Using directory from backup: %s"
4124
  msgstr ""
4125
 
4126
+ #: restorer.php:879
4127
  msgid "Files found:"
4128
  msgstr ""
4129
 
4130
+ #: restorer.php:885
4131
  msgid "Unable to enumerate files in that directory."
4132
  msgstr ""
4133
 
4134
+ #: restorer.php:1715
4135
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4136
  msgstr ""
4137
 
4138
+ #: restorer.php:1725
4139
  msgid "Restoring table (%s)"
4140
  msgstr ""
4141
 
4142
+ #: addons/migrator.php:314
4143
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4144
  msgstr ""
4145
 
4146
+ #: admin.php:4881
4147
  msgid "file is size:"
4148
  msgstr ""
4149
 
4150
+ #: addons/googlecloud.php:855 addons/migrator.php:352 addons/migrator.php:355
4151
+ #: addons/migrator.php:358 admin.php:761 admin.php:2326 admin.php:3130
4152
+ #: backup.php:2884 updraftplus.php:147
4153
  msgid "Go here for more information."
4154
  msgstr ""
4155
 
4156
+ #: admin.php:480
4157
  msgid "Some files are still downloading or being processed - please wait."
4158
  msgstr ""
4159
 
4160
+ #: class-updraftplus.php:3522 class-updraftplus.php:3540
4161
  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."
4162
  msgstr ""
4163
 
4164
+ #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4165
  msgid "%s login failure"
4166
  msgstr ""
4167
 
4168
+ #: methods/ftp.php:111
4169
  msgid "%s upload failed"
4170
  msgstr ""
4171
 
4172
+ #: addons/fixtime.php:545
4173
  msgid "Enter in format HH:MM (e.g. 14:22)."
4174
  msgstr ""
4175
 
4176
+ #: addons/fixtime.php:545
4177
  msgid "The time zone used is that from your WordPress settings, in Settings -> General."
4178
  msgstr ""
4179
 
4180
+ #: methods/dropbox.php:120
4181
  msgid "Dropbox error: %s (see log file for more)"
4182
  msgstr ""
4183
 
4184
+ #: methods/dropbox.php:330
4185
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4186
  msgstr ""
4187
 
4188
+ #: methods/dropbox.php:338
4189
  msgid "Failed to access %s when deleting (see log file for more)"
4190
  msgstr ""
4191
 
4192
+ #: addons/copycom.php:264 methods/dropbox.php:371
4193
  msgid "You do not appear to be authenticated with %s"
4194
  msgstr ""
4195
 
4201
  msgid "Error - failed to download the file from %s"
4202
  msgstr ""
4203
 
4204
+ #: methods/cloudfiles.php:219 methods/openstack-base.php:70
4205
  msgid "%s error - failed to upload file"
4206
  msgstr ""
4207
 
4208
+ #: addons/azure.php:215 methods/addon-base.php:208 methods/cloudfiles.php:392
4209
+ #: methods/cloudfiles.php:409 methods/googledrive.php:823
4210
+ #: methods/openstack-base.php:319 methods/stream-base.php:261
4211
+ #: methods/stream-base.php:268 methods/stream-base.php:281
4212
  msgid "%s Error"
4213
  msgstr ""
4214
 
4215
+ #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4216
+ #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4217
+ #: methods/cloudfiles.php:336 methods/cloudfiles.php:340
4218
+ #: methods/openstack-base.php:32 methods/openstack-base.php:216
4219
+ #: methods/openstack-base.php:281 methods/openstack-base.php:353
4220
+ #: methods/openstack-base.php:356 methods/openstack-base.php:373
4221
+ #: methods/openstack-base.php:378
4222
  msgid "%s authentication failed"
4223
  msgstr ""
4224
 
4225
+ #: class-updraftplus.php:838 methods/cloudfiles.php:211
4226
  msgid "%s error - failed to re-assemble chunks"
4227
  msgstr ""
4228
 
4229
+ #: addons/googlecloud.php:384 addons/migrator.php:448 admin.php:1999
4230
+ #: admin.php:2046 admin.php:2054 class-updraftplus.php:686
4231
+ #: class-updraftplus.php:692 class-updraftplus.php:3442
4232
+ #: class-updraftplus.php:3444 class-updraftplus.php:3580
4233
+ #: class-updraftplus.php:3613 methods/googledrive.php:299 restorer.php:873
4234
  msgid "Error: %s"
4235
  msgstr ""
4236
 
4237
+ #: admin.php:3656
4238
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4239
  msgstr ""
4240
 
4241
+ #: admin.php:3654
4242
  msgid "Backup directory specified does <b>not</b> exist."
4243
  msgstr ""
4244
 
4245
+ #: admin.php:3389 admin.php:3610 class-updraftplus.php:3522
4246
+ #: class-updraftplus.php:3540
4247
  msgid "Warning: %s"
4248
  msgstr ""
4249
 
4250
+ #: admin.php:2462
4251
  msgid "Last backup job run:"
4252
  msgstr ""
4253
 
4254
+ #: backup.php:2017 backup.php:2043
4255
  msgid "%s: unreadable file - could not be backed up"
4256
  msgstr ""
4257
 
4258
+ #: backup.php:2603
4259
  msgid "A very large file was encountered: %s (size: %s Mb)"
4260
  msgstr ""
4261
 
4262
+ #: backup.php:1467
4263
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
4264
  msgstr ""
4265
 
4266
+ #: backup.php:1578
4267
  msgid "An error occurred whilst closing the final database file"
4268
  msgstr ""
4269
 
4270
+ #: backup.php:870
4271
  msgid "Warnings encountered:"
4272
  msgstr ""
4273
 
4274
+ #: class-updraftplus.php:2423
4275
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4276
  msgstr ""
4277
 
4278
+ #: class-updraftplus.php:596
4279
  msgid "Your free disk space is very low - only %s Mb remain"
4280
  msgstr ""
4281
 
4282
+ #: addons/migrator.php:431
 
 
 
 
 
 
 
 
4283
  msgid "Migrated site (from UpdraftPlus)"
4284
  msgstr ""
4285
 
4286
+ #: addons/migrator.php:510
4287
  msgid "<strong>ERROR</strong>: Site URL already taken."
4288
  msgstr ""
4289
 
4290
+ #: addons/migrator.php:455
4291
  msgid "New site:"
4292
  msgstr ""
4293
 
4294
+ #: addons/migrator.php:372
4295
  msgid "Information needed to continue:"
4296
  msgstr ""
4297
 
4298
+ #: addons/migrator.php:373
 
 
 
 
4299
  msgid "Enter details for where this new site is to live within your multisite install:"
4300
  msgstr ""
4301
 
4302
+ #: addons/migrator.php:318
4303
  msgid "Processed plugin:"
4304
  msgstr ""
4305
 
4306
+ #: addons/migrator.php:329
4307
  msgid "Network activating theme:"
4308
  msgstr ""
4309
 
4310
+ #: addons/sftp.php:38
4311
  msgid "Some servers advertise encrypted FTP as available, but then time-out (after a long time) when you attempt to use it. If you find this happenning, then go into the \"Expert Options\" (below) and turn off SSL there."
4312
  msgstr ""
4313
 
4314
+ #: addons/sftp.php:74
4315
  msgid "Check your file permissions: Could not successfully create and enter directory:"
4316
  msgstr ""
4317
 
4318
+ #: methods/s3.php:710
4319
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
4320
  msgstr ""
4321
 
4322
+ #: methods/s3.php:897
4323
  msgid "Please check your access credentials."
4324
  msgstr ""
4325
 
4326
+ #: addons/s3-enhanced.php:152 methods/s3.php:875
4327
  msgid "The error reported by %s was:"
4328
  msgstr ""
4329
 
4330
+ #: restorer.php:1287
4331
  msgid "Please supply the requested information, and then continue."
4332
  msgstr ""
4333
 
4334
+ #: restorer.php:1920
4335
  msgid "Cannot drop tables, so deleting instead (%s)"
4336
  msgstr ""
4337
 
4338
+ #: class-updraftplus.php:3591 restorer.php:1559
 
 
 
 
4339
  msgid "Site information:"
4340
  msgstr ""
4341
 
4342
+ #: restorer.php:1903
4343
  msgid "Cannot create new tables, so skipping this command (%s)"
4344
  msgstr ""
4345
 
4346
+ #: addons/migrator.php:314 admin.php:2321 class-updraftplus.php:3584
4347
+ #: restorer.php:1439 restorer.php:1465 restorer.php:1879
4348
  msgid "Warning:"
4349
  msgstr ""
4350
 
4351
+ #: restorer.php:1440
4352
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
4353
  msgstr ""
4354
 
4355
+ #: class-updraftplus.php:3576 restorer.php:105
4356
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4357
  msgstr ""
4358
 
4359
+ #: admin.php:4834
4360
  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."
4361
  msgstr ""
4362
 
4363
+ #: admin.php:4137 methods/updraftvault.php:239
4364
  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."
4365
  msgstr ""
4366
 
4367
+ #: admin.php:516
 
 
 
 
4368
  msgid "Close"
4369
  msgstr ""
4370
 
4371
+ #: addons/autobackup.php:283 addons/autobackup.php:374 admin.php:473
4372
+ #: methods/remotesend.php:71 methods/remotesend.php:79
4373
+ #: methods/remotesend.php:219 methods/remotesend.php:227
4374
  msgid "Unexpected response:"
4375
  msgstr ""
4376
 
4377
+ #: addons/reporting.php:412 admin.php:469
4378
  msgid "To send to more than one address, separate each address with a comma."
4379
  msgstr ""
4380
 
4381
+ #: admin.php:496
4382
  msgid "PHP information"
4383
  msgstr ""
4384
 
4385
+ #: admin.php:3070
4386
  msgid "show PHP information (phpinfo)"
4387
  msgstr ""
4388
 
4389
+ #: admin.php:3090
4390
  msgid "zip executable found:"
4391
  msgstr ""
4392
 
4393
+ #: admin.php:2471
4394
  msgid "Migrate Site"
4395
  msgstr ""
4396
 
4397
+ #: addons/migrator.php:170
 
 
 
 
4398
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
4399
  msgstr ""
4400
 
4401
+ #: admin.php:2476
4402
  msgid "Do you want to migrate or clone/duplicate a site?"
4403
  msgstr ""
4404
 
4405
+ #: admin.php:2476
4406
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
4407
  msgstr ""
4408
 
4409
+ #: admin.php:2476
4410
  msgid "Get it here."
4411
  msgstr ""
4412
 
4413
+ #: admin.php:2946
4414
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
4415
  msgstr ""
4416
 
4417
+ #: admin.php:2945
4418
  msgid "Also delete from remote storage"
4419
  msgstr ""
4420
 
4421
+ #: admin.php:2804
4422
  msgid "Latest UpdraftPlus.com news:"
4423
  msgstr ""
4424
 
4425
+ #: admin.php:2437
4426
  msgid "Clone/Migrate"
4427
  msgstr ""
4428
 
4429
+ #: admin.php:2157
4430
  msgid "News"
4431
  msgstr ""
4432
 
4433
+ #: admin.php:2156
4434
  msgid "Premium"
4435
  msgstr ""
4436
 
4437
+ #: admin.php:1616
4438
  msgid "Local archives deleted: %d"
4439
  msgstr ""
4440
 
4441
+ #: admin.php:1617
4442
  msgid "Remote archives deleted: %d"
4443
  msgstr ""
4444
 
4445
+ #: backup.php:157
4446
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
4447
  msgstr ""
4448
 
4449
+ #: admin.php:1542
4450
  msgid "Backup set not found"
4451
  msgstr ""
4452
 
4453
+ #: class-updraftplus.php:3400
 
 
 
 
4454
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
4455
  msgstr ""
4456
 
4457
+ #: class-updraftplus.php:3400
4458
  msgid "Blog link"
4459
  msgstr ""
4460
 
4461
+ #: class-updraftplus.php:3400
4462
  msgid "RSS link"
4463
  msgstr ""
4464
 
4465
+ #: admin.php:558
 
4466
  msgid "Testing %s Settings..."
4467
  msgstr ""
4468
 
4469
+ #: admin.php:2880
4470
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
4471
  msgstr ""
4472
 
4473
+ #: admin.php:777
4474
  msgid "Notice"
4475
  msgstr ""
4476
 
4477
+ #: admin.php:777
4478
  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."
4479
  msgstr ""
4480
 
4481
+ #: backup.php:852
4482
  msgid "Errors encountered:"
4483
  msgstr ""
4484
 
4485
+ #: admin.php:467
4486
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
4487
  msgstr ""
4488
 
4489
+ #: admin.php:479
4490
  msgid "Begun looking for this entity"
4491
  msgstr ""
4492
 
4493
+ #: addons/migrator.php:1088
4494
  msgid "SQL update commands run:"
4495
  msgstr ""
4496
 
4497
+ #: addons/migrator.php:1089 admin.php:484
4498
  msgid "Errors:"
4499
  msgstr ""
4500
 
4501
+ #: addons/migrator.php:1090
4502
  msgid "Time taken (seconds):"
4503
  msgstr ""
4504
 
4505
+ #: addons/migrator.php:1226
4506
  msgid "rows: %d"
4507
  msgstr ""
4508
 
4509
+ #: addons/migrator.php:1341
4510
  msgid "\"%s\" has no primary key, manual change needed on row %s."
4511
  msgstr ""
4512
 
4514
  msgid "Store at"
4515
  msgstr ""
4516
 
4517
+ #: addons/migrator.php:903
4518
  msgid "Nothing to do: the site URL is already: %s"
4519
  msgstr ""
4520
 
4521
+ #: addons/migrator.php:914
4522
  msgid "Warning: the database's site URL (%s) is different to what we expected (%s)"
4523
  msgstr ""
4524
 
4525
+ #: addons/migrator.php:930
4526
  msgid "Database search and replace: replace %s in backup dump with %s"
4527
  msgstr ""
4528
 
4529
+ #: addons/migrator.php:970
4530
  msgid "Could not get list of tables"
4531
  msgstr ""
4532
 
4533
+ #: addons/migrator.php:1085
4534
  msgid "Tables examined:"
4535
  msgstr ""
4536
 
4537
+ #: addons/migrator.php:1086
4538
  msgid "Rows examined:"
4539
  msgstr ""
4540
 
4541
+ #: addons/migrator.php:1087
4542
  msgid "Changes made:"
4543
  msgstr ""
4544
 
4545
+ #: addons/sftp.php:278
4546
  msgid "%s Error: Failed to download"
4547
  msgstr ""
4548
 
4549
+ #: addons/moredatabase.php:232 addons/sftp.php:345
 
 
 
 
4550
  msgid "Host"
4551
  msgstr ""
4552
 
4553
+ #: addons/sftp.php:352
4554
  msgid "Port"
4555
  msgstr ""
4556
 
4557
+ #: addons/lockadmin.php:141 addons/moredatabase.php:234 addons/sftp.php:366
4558
+ #: methods/openstack2.php:127 methods/updraftvault.php:299
4559
+ #: udaddons/options.php:145
4560
  msgid "Password"
4561
  msgstr ""
4562
 
4563
+ #: addons/sftp.php:391
4564
  msgid "Directory path"
4565
  msgstr ""
4566
 
4567
+ #: addons/sftp.php:393
4568
  msgid "Where to change directory to after logging in - often this is relative to your home directory."
4569
  msgstr ""
4570
 
4572
  msgid "host name"
4573
  msgstr ""
4574
 
4575
+ #: addons/sftp.php:419 methods/openstack2.php:142
4576
  msgid "username"
4577
  msgstr ""
4578
 
4579
+ #: methods/ftp.php:359 methods/openstack2.php:147
4580
  msgid "password"
4581
  msgstr ""
4582
 
4584
  msgid "Failure: Port must be an integer."
4585
  msgstr ""
4586
 
4587
+ #: addons/fixtime.php:545
4588
  msgid "starting from next time it is"
4589
  msgstr ""
4590
 
4591
+ #: addons/multisite.php:174
4592
  msgid "Multisite Install"
4593
  msgstr ""
4594
 
4595
+ #: addons/multisite.php:180 udaddons/options.php:225
4596
  msgid "You do not have sufficient permissions to access this page."
4597
  msgstr ""
4598
 
4599
+ #: addons/multisite.php:194
4600
  msgid "You do not have permission to access this page."
4601
  msgstr ""
4602
 
4603
+ #: addons/migrator.php:358 addons/multisite.php:609
4604
  msgid "Must-use plugins"
4605
  msgstr ""
4606
 
4607
+ #: addons/multisite.php:616
4608
  msgid "Blog uploads"
4609
  msgstr ""
4610
 
4611
+ #: addons/migrator.php:528
4612
  msgid "All references to the site location in the database will be replaced with your current site URL, which is: %s"
4613
  msgstr ""
4614
 
4615
+ #: addons/migrator.php:528
4616
  msgid "Search and replace site location in the database (migrate)"
4617
  msgstr ""
4618
 
4619
+ #: addons/migrator.php:528
4620
  msgid "(learn more)"
4621
  msgstr ""
4622
 
4623
+ #: addons/migrator.php:763 addons/migrator.php:1067
4624
  msgid "Failed: the %s operation was not able to start."
4625
  msgstr ""
4626
 
4627
+ #: addons/migrator.php:765 addons/migrator.php:1069
4628
  msgid "Failed: we did not understand the result returned by the %s operation."
4629
  msgstr ""
4630
 
4631
+ #: addons/migrator.php:837
4632
  msgid "Database: search and replace site URL"
4633
  msgstr ""
4634
 
4635
+ #: addons/migrator.php:841
4636
  msgid "This option was not selected."
4637
  msgstr ""
4638
 
4639
+ #: addons/migrator.php:875 addons/migrator.php:879 addons/migrator.php:883
4640
+ #: addons/migrator.php:888 addons/migrator.php:892 addons/migrator.php:897
4641
  msgid "Error: unexpected empty parameter (%s, %s)"
4642
  msgstr ""
4643
 
4649
  msgid "WordPress core (including any additions to your WordPress root directory)"
4650
  msgstr ""
4651
 
 
 
 
 
4652
  #: addons/morefiles.php:179
4653
  msgid "More Files"
4654
  msgstr ""
4655
 
4656
+ #: addons/morefiles.php:211 addons/morefiles.php:222
4657
  msgid "Enter the directory:"
4658
  msgstr ""
4659
 
4660
+ #: addons/morefiles.php:200
4661
  msgid "If you are not sure what this option is for, then you will not want it, and should turn it off."
4662
  msgstr ""
4663
 
4664
+ #: addons/morefiles.php:200
4665
  msgid "If using it, enter an absolute path (it is not relative to your WordPress install)."
4666
  msgstr ""
4667
 
4668
+ #: addons/morefiles.php:202
4669
  msgid "Be careful what you enter - if you enter / then it really will try to create a zip containing your entire webserver."
4670
  msgstr ""
4671
 
4672
+ #: addons/morefiles.php:442
4673
  msgid "No backup of %s directories: there was nothing found to back up"
4674
  msgstr ""
4675
 
4676
+ #: addons/sftp.php:38
4677
  msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
4678
  msgstr ""
4679
 
4680
+ #: addons/sftp.php:38
4681
  msgid "Explicit encryption is used by default. To force implicit encryption (port 990), add :990 to your FTP server below."
4682
  msgstr ""
4683
 
4684
+ #: addons/sftp.php:45 addons/sftp.php:46 addons/sftp.php:47
4685
  msgid "No %s found"
4686
  msgstr ""
4687
 
4689
  msgid "Check your file permissions: Could not successfully create and enter:"
4690
  msgstr ""
4691
 
4692
+ #: methods/ftp.php:320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4693
  msgid "Needs to already exist"
4694
  msgstr ""
4695
 
4696
+ #: methods/ftp.php:351
4697
  msgid "Failure: No server details were given."
4698
  msgstr ""
4699
 
4700
+ #: methods/ftp.php:369
4701
  msgid "Failure: we did not successfully log in with those credentials."
4702
  msgstr ""
4703
 
4704
+ #: methods/ftp.php:378
 
 
 
 
4705
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
4706
  msgstr ""
4707
 
4708
+ #: methods/ftp.php:381
4709
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
4710
  msgstr ""
4711
 
4712
+ #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
4713
+ #: methods/addon-base.php:97 methods/addon-base.php:128
4714
+ #: methods/addon-base.php:184 methods/addon-base.php:264 methods/ftp.php:29
4715
+ #: methods/googledrive.php:146 methods/stream-base.php:31
4716
+ #: methods/stream-base.php:145 methods/stream-base.php:180
4717
+ #: methods/stream-base.php:245
4718
  msgid "No %s settings were found"
4719
  msgstr ""
4720
 
4721
+ #: methods/stream-base.php:107 methods/stream-base.php:111
4722
  msgid "Chunk %s: A %s error occurred"
4723
  msgstr ""
4724
 
4725
+ #: methods/stream-base.php:268
4726
  msgid "Error opening remote file: Failed to download"
4727
  msgstr ""
4728
 
4729
+ #: methods/stream-base.php:281
4730
  msgid "Local write failed: Failed to download"
4731
  msgstr ""
4732
 
4738
  msgid "Enter a complete URL, beginning with webdav:// or webdavs:// and including path, username, password and port as required - e.g.%s"
4739
  msgstr ""
4740
 
4741
+ #: addons/googlecloud.php:626 addons/googlecloud.php:660
4742
+ #: addons/googlecloud.php:666 addons/sftp.php:445 admin.php:3442 admin.php:3477
4743
+ #: admin.php:3486 methods/addon-base.php:284 methods/stream-base.php:297
4744
  msgid "Failed"
4745
  msgstr ""
4746
 
4747
+ #: methods/addon-base.php:294 methods/stream-base.php:311
4748
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
4749
  msgstr ""
4750
 
4751
+ #: addons/morefiles.php:63 addons/morefiles.php:442
4752
  msgid "WordPress Core"
4753
  msgstr ""
4754
 
4756
  msgid "Over-write wp-config.php"
4757
  msgstr ""
4758
 
4759
+ #: addons/copycom.php:387 addons/copycom.php:389 methods/dropbox.php:523
4760
+ #: methods/dropbox.php:525
4761
  msgid "you have authenticated your %s account"
4762
  msgstr ""
4763
 
4764
+ #: addons/copycom.php:398 methods/dropbox.php:528
4765
  msgid "though part of the returned information was not as expected - your mileage may vary"
4766
  msgstr ""
4767
 
4768
+ #: addons/copycom.php:406 addons/onedrive.php:527 methods/dropbox.php:532
4769
  msgid "Your %s account name: %s"
4770
  msgstr ""
4771
 
4772
+ #: methods/ftp.php:303
4773
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
4774
  msgstr ""
4775
 
4776
+ #: methods/ftp.php:303
4777
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
4778
  msgstr ""
4779
 
4780
+ #: methods/s3.php:661
4781
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
4782
  msgstr ""
4783
 
4784
+ #: methods/s3.php:507 methods/s3.php:580 methods/s3.php:666
4785
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4786
  msgstr ""
4787
 
4788
+ #: methods/s3.php:725
4789
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
4790
  msgstr ""
4791
 
4792
+ #: methods/s3.php:727
4793
  msgid "If you see errors about SSL certificates, then please go here for help."
4794
  msgstr ""
4795
 
4796
+ #: methods/s3.php:748
4797
  msgid "%s access key"
4798
  msgstr ""
4799
 
4800
+ #: methods/s3.php:752
4801
  msgid "%s secret key"
4802
  msgstr ""
4803
 
4804
+ #: methods/s3.php:756
4805
  msgid "%s location"
4806
  msgstr ""
4807
 
4808
+ #: methods/s3.php:757
4809
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4810
  msgstr ""
4811
 
4812
+ #: methods/s3.php:801
4813
  msgid "API secret"
4814
  msgstr ""
4815
 
4816
+ #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:823
4817
  msgid "Failure: No bucket details were given."
4818
  msgstr ""
4819
 
4820
+ #: addons/s3-enhanced.php:125 methods/openstack2.php:113 methods/s3.php:843
4821
  msgid "Region"
4822
  msgstr ""
4823
 
4824
+ #: methods/s3.php:874
4825
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
4826
  msgstr ""
4827
 
4828
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4829
+ #: methods/s3.php:897
4830
  msgid "Failure"
4831
  msgstr ""
4832
 
4833
+ #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4834
+ #: methods/s3.php:897
4835
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4836
  msgstr ""
4837
 
4838
+ #: addons/googlecloud.php:689 methods/s3.php:887
4839
  msgid "We accessed the bucket, and were able to create files within it."
4840
  msgstr ""
4841
 
4842
+ #: methods/s3.php:890
4843
  msgid "The communication with %s was encrypted."
4844
  msgstr ""
4845
 
4846
+ #: methods/s3.php:892
4847
  msgid "The communication with %s was not encrypted."
4848
  msgstr ""
4849
 
4850
+ #: methods/dropbox.php:107 methods/dropbox.php:115
4851
  msgid "You do not appear to be authenticated with Dropbox"
4852
  msgstr ""
4853
 
4854
+ #: methods/dropbox.php:200 methods/dropbox.php:221 methods/dropbox.php:237
4855
  msgid "error: failed to upload file to %s (see log file for more)"
4856
  msgstr ""
4857
 
4858
+ #: methods/dropbox.php:448
4859
  msgid "Need to use sub-folders?"
4860
  msgstr ""
4861
 
4862
+ #: methods/dropbox.php:448
4863
  msgid "Backups are saved in"
4864
  msgstr ""
4865
 
4866
+ #: methods/dropbox.php:448
4867
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
4868
  msgstr ""
4869
 
4870
+ #: methods/dropbox.php:448
4871
  msgid "there's an add-on for that."
4872
  msgstr ""
4873
 
4874
+ #: methods/cloudfiles.php:462
4875
  msgid "US or UK Cloud"
4876
  msgstr ""
4877
 
4878
+ #: addons/cloudfiles-enhanced.php:236 methods/cloudfiles-new.php:88
4879
+ #: methods/cloudfiles.php:465
4880
  msgid "US (default)"
4881
  msgstr ""
4882
 
4883
+ #: addons/cloudfiles-enhanced.php:237 methods/cloudfiles-new.php:89
4884
+ #: methods/cloudfiles.php:466
4885
  msgid "UK"
4886
  msgstr ""
4887
 
4888
+ #: methods/cloudfiles.php:482
4889
  msgid "Cloud Files username"
4890
  msgstr ""
4891
 
4892
+ #: methods/cloudfiles.php:486
4893
  msgid "Cloud Files API key"
4894
  msgstr ""
4895
 
4896
+ #: methods/cloudfiles.php:490
4897
  msgid "Cloud Files container"
4898
  msgstr ""
4899
 
4900
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:714
4901
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4902
  msgstr ""
4903
 
4904
+ #: addons/migrator.php:274 addons/migrator.php:1834 addons/moredatabase.php:70
4905
+ #: addons/moredatabase.php:72 addons/moredatabase.php:74 addons/sftp.php:415
4906
+ #: addons/sftp.php:419 addons/sftp.php:423 addons/webdav.php:56 admin.php:536
4907
+ #: methods/addon-base.php:277 methods/cloudfiles-new.php:142
4908
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:504
4909
+ #: methods/cloudfiles.php:509 methods/ftp.php:355 methods/ftp.php:359
4910
+ #: methods/openstack2.php:142 methods/openstack2.php:147
4911
+ #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:797
4912
+ #: methods/s3.php:801
4913
  msgid "Failure: No %s was given."
4914
  msgstr ""
4915
 
4916
+ #: methods/cloudfiles-new.php:142 methods/cloudfiles.php:504 methods/s3.php:797
4917
  msgid "API key"
4918
  msgstr ""
4919
 
4920
+ #: addons/moredatabase.php:233 addons/sftp.php:359
4921
+ #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:509
4922
+ #: methods/openstack2.php:121
4923
  msgid "Username"
4924
  msgstr ""
4925
 
4926
+ #: methods/cloudfiles.php:529 methods/openstack-base.php:336
4927
  msgid "Failure: No container details were given."
4928
  msgstr ""
4929
 
4930
+ #: methods/cloudfiles.php:556
4931
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4932
  msgstr ""
4933
 
4934
+ #: methods/cloudfiles.php:560 methods/openstack-base.php:392
4935
  msgid "We accessed the container, and were able to create files within it."
4936
  msgstr ""
4937
 
4938
+ #: methods/email.php:43
4939
  msgid "WordPress Backup"
4940
  msgstr ""
4941
 
4942
+ #: methods/email.php:69
4943
  msgid "Note:"
4944
  msgstr ""
4945
 
4946
+ #: methods/s3.php:346
4947
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
4948
  msgstr ""
4949
 
4950
+ #: methods/s3.php:369
4951
  msgid "%s error: file %s was shortened unexpectedly"
4952
  msgstr ""
4953
 
4954
+ #: methods/s3.php:379
4955
  msgid "%s chunk %s: upload failed"
4956
  msgstr ""
4957
 
4958
+ #: methods/s3.php:395
4959
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
4960
  msgstr ""
4961
 
4962
+ #: methods/s3.php:399
4963
  msgid "%s re-assembly error (%s): (see log file for more)"
4964
  msgstr ""
4965
 
4966
+ #: methods/s3.php:411
4967
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
4968
  msgstr ""
4969
 
4970
+ #: addons/googlecloud.php:826 methods/googledrive.php:904
4971
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
4972
  msgstr ""
4973
 
4974
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4975
  msgid "Select 'Web Application' as the application type."
4976
  msgstr ""
4977
 
4978
+ #: addons/googlecloud.php:828 methods/googledrive.php:906
4979
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
4980
  msgstr ""
4981
 
4982
+ #: addons/googlecloud.php:839 addons/onedrive.php:698
4983
+ #: methods/googledrive.php:916
4984
  msgid "Client ID"
4985
  msgstr ""
4986
 
4987
+ #: addons/googlecloud.php:842 methods/googledrive.php:917
4988
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
4989
  msgstr ""
4990
 
4991
+ #: addons/googlecloud.php:847 addons/onedrive.php:702
4992
+ #: methods/googledrive.php:920
4993
  msgid "Client Secret"
4994
  msgstr ""
4995
 
4996
+ #: addons/googlecloud.php:896 methods/googledrive.php:950
4997
  msgid "Authenticate with Google"
4998
  msgstr ""
4999
 
5000
+ #: addons/googlecloud.php:907 methods/googledrive.php:961
5001
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5002
  msgstr ""
5003
 
5004
+ #: addons/cloudfiles-enhanced.php:88 addons/cloudfiles-enhanced.php:125
5005
+ #: addons/cloudfiles-enhanced.php:130 methods/cloudfiles.php:539
5006
+ #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
5007
  msgid "Cloud Files authentication failed"
5008
  msgstr ""
5009
 
5012
  msgid "Cloud Files error - failed to create and access the container"
5013
  msgstr ""
5014
 
5015
+ #: addons/googlecloud.php:161 addons/googlecloud.php:166
5016
+ #: class-updraftplus.php:792 methods/cloudfiles.php:130
5017
+ #: methods/googledrive.php:741 methods/googledrive.php:746
5018
  msgid "%s Error: Failed to open local file"
5019
  msgstr ""
5020
 
5021
+ #: addons/sftp.php:135 addons/sftp.php:144 methods/cloudfiles.php:147
5022
+ #: methods/cloudfiles.php:189 methods/openstack-base.php:65
5023
+ #: methods/openstack-base.php:190 methods/s3.php:314 methods/s3.php:326
5024
+ #: methods/s3.php:327
5025
  msgid "%s Error: Failed to upload"
5026
  msgstr ""
5027
 
5029
  msgid "Cloud Files error - failed to upload file"
5030
  msgstr ""
5031
 
5032
+ #: class-updraftplus.php:867 methods/cloudfiles.php:392
5033
+ #: methods/stream-base.php:261
5034
  msgid "Error opening local file: Failed to download"
5035
  msgstr ""
5036
 
5037
+ #: methods/openstack-base.php:319
5038
  msgid "Error downloading remote file: Failed to download ("
5039
  msgstr ""
5040
 
5041
+ #: addons/sftp.php:406 admin.php:557 methods/addon-base.php:242
5042
+ #: methods/cloudfiles.php:496 methods/ftp.php:329
5043
+ #: methods/openstack-base.php:440 methods/s3.php:762
5044
+ #: methods/stream-base.php:219
 
 
 
 
 
 
5045
  msgid "Test %s Settings"
5046
  msgstr ""
5047
 
5048
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5049
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5050
  msgstr ""
5051
 
5052
+ #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5053
  #: methods/openstack2.php:94
5054
  msgid "Also, you should read this important FAQ."
5055
  msgstr ""
5056
 
5057
+ #: methods/googledrive.php:410
5058
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5059
  msgstr ""
5060
 
5061
+ #: methods/googledrive.php:381 methods/googledrive.php:427
5062
+ #: methods/googledrive.php:433 methods/googledrive.php:435
5063
+ #: methods/stream-base.php:196
5064
  msgid "Failed to upload to %s"
5065
  msgstr ""
5066
 
5067
+ #: addons/googlecloud.php:445 addons/googlecloud.php:446
5068
+ #: addons/googlecloud.php:709 addons/onedrive.php:439
5069
+ #: methods/googledrive.php:455 methods/googledrive.php:456
5070
  msgid "Account is not authorized."
5071
  msgstr ""
5072
 
5073
+ #: methods/addon-base.php:230 methods/cloudfiles.php:438
5074
+ #: methods/dropbox.php:427 methods/ftp.php:298 methods/googledrive.php:889
5075
+ #: methods/openstack-base.php:419 methods/s3.php:686
5076
+ #: methods/stream-base.php:212
5077
  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."
5078
  msgstr ""
5079
 
5080
+ #: restorer.php:1729
5081
  msgid "will restore as:"
5082
  msgstr ""
5083
 
5084
+ #: addons/migrator.php:1121 restorer.php:1957
5085
  msgid "the database query being run was:"
5086
  msgstr ""
5087
 
5088
+ #: restorer.php:1791
5089
  msgid "Finished: lines processed: %d in %.2f seconds"
5090
  msgstr ""
5091
 
5092
+ #: restorer.php:2055 restorer.php:2130
5093
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5094
  msgstr ""
5095
 
5096
+ #: addons/migrator.php:1734 admin.php:3445 admin.php:3479 admin.php:3483
5097
+ #: admin.php:4865 admin.php:4879 restorer.php:2061 restorer.php:2166
5098
  msgid "OK"
5099
  msgstr ""
5100
 
5101
+ #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:105
5102
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5103
  msgstr ""
5104
 
5115
  msgid "follow this link to get it"
5116
  msgstr ""
5117
 
5118
+ #: addons/googlecloud.php:382 methods/googledrive.php:297
5119
  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."
5120
  msgstr ""
5121
 
5122
+ #: addons/googlecloud.php:390 methods/googledrive.php:305
5123
  msgid "Authorization failed"
5124
  msgstr ""
5125
 
5126
+ #: addons/copycom.php:413 addons/onedrive.php:520 methods/dropbox.php:545
5127
+ #: methods/googledrive.php:332
5128
  msgid "Your %s quota usage: %s %% used, %s available"
5129
  msgstr ""
5130
 
5131
+ #: addons/googlecloud.php:579 addons/googlecloud.php:689
5132
+ #: addons/onedrive.php:554 addons/sftp.php:478 methods/addon-base.php:291
5133
+ #: methods/cloudfiles.php:560 methods/googledrive.php:358
5134
+ #: methods/openstack-base.php:392 methods/s3.php:887
5135
+ #: methods/stream-base.php:308
5136
  msgid "Success"
5137
  msgstr ""
5138
 
5139
+ #: addons/googlecloud.php:579 addons/onedrive.php:554
5140
+ #: methods/googledrive.php:358
5141
  msgid "you have authenticated your %s account."
5142
  msgstr ""
5143
 
5144
+ #: methods/googledrive.php:507
5145
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5146
  msgstr ""
5147
 
5148
+ #: restorer.php:429
5149
  msgid "wp-config.php from backup: restoring (as per user's request)"
5150
  msgstr ""
5151
 
5152
+ #: restorer.php:1330
5153
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
5154
  msgstr ""
5155
 
5156
+ #: restorer.php:1353
5157
  msgid "Failed to find database file"
5158
  msgstr ""
5159
 
5160
+ #: restorer.php:1374
5161
  msgid "Failed to open database file"
5162
  msgstr ""
5163
 
5164
+ #: addons/migrator.php:586 restorer.php:1379
5165
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
5166
  msgstr ""
5167
 
5168
+ #: addons/reporting.php:65 addons/reporting.php:147 backup.php:919
5169
+ #: class-updraftplus.php:3517
5170
  msgid "Backup of:"
5171
  msgstr ""
5172
 
5173
+ #: restorer.php:1540 restorer.php:1633 restorer.php:1659
5174
  msgid "Old table prefix:"
5175
  msgstr ""
5176
 
5177
+ #: admin.php:4876
5178
  msgid "Archive is expected to be size:"
5179
  msgstr ""
5180
 
5181
+ #: admin.php:4884
5182
  msgid "The backup records do not contain information about the proper size of this file."
5183
  msgstr ""
5184
 
5185
+ #: admin.php:4982
5186
  msgid "Error message"
5187
  msgstr ""
5188
 
5189
+ #: admin.php:4887 admin.php:4888
5190
  msgid "Could not find one of the files for restoration"
5191
  msgstr ""
5192
 
5193
+ #: restorer.php:90
5194
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5195
  msgstr ""
5196
 
5197
+ #: restorer.php:91
5198
  msgid "Backup file not available."
5199
  msgstr ""
5200
 
5201
+ #: restorer.php:92
5202
  msgid "Copying this entity failed."
5203
  msgstr ""
5204
 
5205
+ #: restorer.php:93
5206
  msgid "Unpacking backup..."
5207
  msgstr ""
5208
 
5209
+ #: restorer.php:94
5210
  msgid "Decrypting database (can take a while)..."
5211
  msgstr ""
5212
 
5213
+ #: restorer.php:95
5214
  msgid "Database successfully decrypted."
5215
  msgstr ""
5216
 
5217
+ #: restorer.php:98
5218
  msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
5219
  msgstr ""
5220
 
5221
+ #: restorer.php:99
5222
  msgid "Cleaning up rubbish..."
5223
  msgstr ""
5224
 
5225
+ #: restorer.php:101
5226
  msgid "Could not delete old directory."
5227
  msgstr ""
5228
 
5229
+ #: restorer.php:104
5230
  msgid "Failed to delete working directory after restoring."
5231
  msgstr ""
5232
 
5233
+ #: restorer.php:301
5234
  msgid "Failed to create a temporary directory"
5235
  msgstr ""
5236
 
5237
+ #: restorer.php:316
5238
  msgid "Failed to write out the decrypted database to the filesystem"
5239
  msgstr ""
5240
 
5241
+ #: restorer.php:424
5242
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
5243
  msgstr ""
5244
 
5245
+ #: admin.php:3998
5246
  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."
5247
  msgstr ""
5248
 
5249
+ #: admin.php:4021
5250
  msgid "Save Changes"
5251
  msgstr ""
5252
 
5253
+ #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:714
5254
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5255
  msgstr ""
5256
 
5257
+ #: admin.php:4144
5258
  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)."
5259
  msgstr ""
5260
 
5261
+ #: admin.php:4146
5262
  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."
5263
  msgstr ""
5264
 
5265
+ #: admin.php:4149
5266
  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."
5267
  msgstr ""
5268
 
5269
+ #: admin.php:4621
5270
  msgid "Delete this backup set"
5271
  msgstr ""
5272
 
5273
+ #: admin.php:4528
5274
  msgid "Press here to download"
5275
  msgstr ""
5276
 
5277
+ #: admin.php:4612
5278
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5279
  msgstr ""
5280
 
5281
+ #: admin.php:4663
5282
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5283
  msgstr ""
5284
 
5285
+ #: admin.php:4711
5286
  msgid "UpdraftPlus Restoration: Progress"
5287
  msgstr ""
5288
 
5289
+ #: admin.php:4757
5290
  msgid "ABORT: Could not find the information on which entities to restore."
5291
  msgstr ""
5292
 
5293
+ #: admin.php:4758
5294
  msgid "If making a request for support, please include this information:"
5295
  msgstr ""
5296
 
5297
+ #: admin.php:3992
5298
  msgid "Do not verify SSL certificates"
5299
  msgstr ""
5300
 
5301
+ #: admin.php:3993
5302
  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."
5303
  msgstr ""
5304
 
5305
+ #: admin.php:3993
5306
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5307
  msgstr ""
5308
 
5309
+ #: admin.php:3997
5310
  msgid "Disable SSL entirely where possible"
5311
  msgstr ""
5312
 
5313
+ #: admin.php:3942
5314
  msgid "Expert settings"
5315
  msgstr ""
5316
 
5317
+ #: admin.php:3943
5318
  msgid "Show expert settings"
5319
  msgstr ""
5320
 
5321
+ #: admin.php:3943
5322
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5323
  msgstr ""
5324
 
5325
+ #: admin.php:3963
5326
  msgid "Delete local backup"
5327
  msgstr ""
5328
 
5329
+ #: admin.php:3968
5330
  msgid "Backup directory"
5331
  msgstr ""
5332
 
5333
+ #: admin.php:3650
5334
  msgid "Backup directory specified is writable, which is good."
5335
  msgstr ""
5336
 
5337
+ #: admin.php:3658
5338
  msgid "Click here to attempt to create the directory and set the permissions"
5339
  msgstr ""
5340
 
5341
+ #: admin.php:3658
5342
  msgid "or, to reset this option"
5343
  msgstr ""
5344
 
5345
+ #: admin.php:3658
5346
  msgid "click here"
5347
  msgstr ""
5348
 
5349
+ #: admin.php:3658
5350
  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."
5351
  msgstr ""
5352
 
5353
+ #: admin.php:3987
5354
  msgid "Use the server's SSL certificates"
5355
  msgstr ""
5356
 
5357
+ #: admin.php:3988
5358
  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."
5359
  msgstr ""
5360
 
5361
+ #: admin.php:3915 udaddons/options.php:143
 
 
 
 
5362
  msgid "Email"
5363
  msgstr ""
5364
 
5365
+ #: admin.php:3836
5366
  msgid "Database encryption phrase"
5367
  msgstr ""
5368
 
5369
+ #: admin.php:3855
5370
  msgid "Manually decrypt a database backup file"
5371
  msgstr ""
5372
 
5373
+ #: admin.php:3770
 
 
 
 
5374
  msgid "Choose your remote storage"
5375
  msgstr ""
5376
 
5377
+ #: addons/reporting.php:201 admin.php:4289
5378
  msgid "None"
5379
  msgstr ""
5380
 
5381
+ #: admin.php:511
5382
  msgid "Cancel"
5383
  msgstr ""
5384
 
5385
+ #: admin.php:495
5386
  msgid "Requesting start of backup..."
5387
  msgstr ""
5388
 
5389
+ #: admin.php:3938
5390
  msgid "Advanced / Debugging Settings"
5391
  msgstr ""
5392
 
5393
+ #: admin.php:3953
5394
  msgid "Debug mode"
5395
  msgstr ""
5396
 
5397
+ #: admin.php:3826
5398
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5399
  msgstr ""
5400
 
5401
+ #: admin.php:3641
5402
  msgid "Daily"
5403
  msgstr ""
5404
 
5405
+ #: admin.php:3642
5406
  msgid "Weekly"
5407
  msgstr ""
5408
 
5409
+ #: admin.php:3643
5410
  msgid "Fortnightly"
5411
  msgstr ""
5412
 
5413
+ #: admin.php:3644
5414
  msgid "Monthly"
5415
  msgstr ""
5416
 
5417
+ #: admin.php:3754
 
 
 
 
5418
  msgid "To fix the time at which a backup should take place,"
5419
  msgstr ""
5420
 
5421
+ #: admin.php:3754
5422
  msgid "e.g. if your server is busy at day and you want to run overnight"
5423
  msgstr ""
5424
 
5425
+ #: admin.php:3823
5426
  msgid "Include in files backup"
5427
  msgstr ""
5428
 
5429
+ #: admin.php:4081
5430
  msgid "Any other directories found inside wp-content"
5431
  msgstr ""
5432
 
5433
+ #: addons/morefiles.php:260 admin.php:4090
5434
  msgid "Exclude these:"
5435
  msgstr ""
5436
 
5437
+ #: admin.php:3143
5438
  msgid "Debug Database Backup"
5439
  msgstr ""
5440
 
5441
+ #: admin.php:3143
5442
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
5443
  msgstr ""
5444
 
5445
+ #: admin.php:3153
 
 
 
 
 
 
 
 
 
 
 
 
5446
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
5447
  msgstr ""
5448
 
5449
+ #: admin.php:3380
5450
  msgid "show log"
5451
  msgstr ""
5452
 
5453
+ #: addons/migrator.php:2204 admin.php:512 admin.php:2921 admin.php:3439
5454
+ #: admin.php:3472 admin.php:4621
 
 
 
5455
  msgid "Delete"
5456
  msgstr ""
5457
 
5458
+ #: admin.php:3523
5459
  msgid "The request to the filesystem to create the directory failed."
5460
  msgstr ""
5461
 
5462
+ #: admin.php:3537
5463
  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"
5464
  msgstr ""
5465
 
5466
+ #: admin.php:3542
5467
  msgid "The folder exists, but your webserver does not have permission to write to it."
5468
  msgstr ""
5469
 
5470
+ #: admin.php:518 admin.php:3624
5471
  msgid "Download log file"
5472
  msgstr ""
5473
 
5474
+ #: admin.php:2497
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5475
  msgid "Multisite"
5476
  msgstr ""
5477
 
5478
+ #: admin.php:2501
5479
  msgid "Do you need WordPress Multisite support?"
5480
  msgstr ""
5481
 
5482
+ #: admin.php:2501
5483
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
5484
  msgstr ""
5485
 
5486
+ #: admin.php:3058
 
 
 
 
5487
  msgid "Web server:"
5488
  msgstr ""
5489
 
5490
+ #: admin.php:3067
5491
  msgid "Peak memory usage"
5492
  msgstr ""
5493
 
5494
+ #: admin.php:3068
5495
  msgid "Current memory usage"
5496
  msgstr ""
5497
 
5498
+ #: admin.php:3070 admin.php:3071 admin.php:3078 admin.php:3079
5499
  msgid "%s version:"
5500
  msgstr ""
5501
 
5502
+ #: admin.php:3080 admin.php:3083 admin.php:3086 admin.php:3090
5503
  msgid "Yes"
5504
  msgstr ""
5505
 
5506
+ #: admin.php:3080 admin.php:3086 admin.php:3090
5507
  msgid "No"
5508
  msgstr ""
5509
 
5510
+ #: admin.php:3115
5511
  msgid "Total (uncompressed) on-disk data:"
5512
  msgstr ""
5513
 
5514
+ #: admin.php:3116
5515
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
5516
  msgstr ""
5517
 
5518
+ #: admin.php:3124
5519
  msgid "count"
5520
  msgstr ""
5521
 
5522
+ #: admin.php:3138
5523
  msgid "Debug Full Backup"
5524
  msgstr ""
5525
 
5526
+ #: admin.php:3138
5527
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
5528
  msgstr ""
5529
 
5530
+ #: admin.php:2879
5531
  msgid "UpdraftPlus - Upload backup files"
5532
  msgstr ""
5533
 
5534
+ #: admin.php:478 admin.php:2863
 
 
 
 
5535
  msgid "calculating..."
5536
  msgstr ""
5537
 
5538
+ #: addons/cloudfiles-enhanced.php:91 addons/migrator.php:749
5539
+ #: addons/migrator.php:970 addons/migrator.php:1051 addons/migrator.php:1121
5540
+ #: addons/migrator.php:1341 addons/migrator.php:1678 addons/migrator.php:1700
5541
+ #: addons/migrator.php:1706 addons/migrator.php:1768 addons/migrator.php:1803
5542
+ #: addons/migrator.php:1842 addons/migrator.php:1852 addons/migrator.php:1857
5543
+ #: addons/s3-enhanced.php:100 addons/s3-enhanced.php:105
5544
+ #: addons/s3-enhanced.php:107 addons/sftp.php:734 admin.php:487 admin.php:4881
5545
+ #: admin.php:4911 methods/remotesend.php:76 methods/remotesend.php:224
5546
+ #: methods/updraftvault.php:401 restorer.php:1292
5547
  msgid "Error:"
5548
  msgstr ""
5549
 
5550
+ #: admin.php:490
5551
  msgid "You should:"
5552
  msgstr ""
5553
 
5554
+ #: admin.php:494
5555
  msgid "Download error: the server sent us a response which we did not understand."
5556
  msgstr ""
5557
 
5558
+ #: admin.php:2931
5559
  msgid "Delete backup set"
5560
  msgstr ""
5561
 
5562
+ #: admin.php:2952
5563
  msgid "Restore backup"
5564
  msgstr ""
5565
 
5566
+ #: admin.php:2953
5567
  msgid "Restore backup from"
5568
  msgstr ""
5569
 
5570
+ #: admin.php:2965
5571
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
5572
  msgstr ""
5573
 
5574
+ #: admin.php:2965
5575
  msgid "Choose the components to restore"
5576
  msgstr ""
5577
 
5578
+ #: admin.php:2977
5579
  msgid "Your web server has PHP's so-called safe_mode active."
5580
  msgstr ""
5581
 
5582
+ #: admin.php:2990
 
 
 
 
5583
  msgid "The following entity cannot be restored automatically: \"%s\"."
5584
  msgstr ""
5585
 
5586
+ #: admin.php:2990
5587
  msgid "You will need to restore it manually."
5588
  msgstr ""
5589
 
5590
+ #: addons/morefiles.php:63 admin.php:2997
5591
  msgid "%s restoration options:"
5592
  msgstr ""
5593
 
5594
+ #: admin.php:3005
5595
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
5596
  msgstr ""
5597
 
5598
+ #: admin.php:3016
5599
  msgid "Do read this helpful article of useful things to know before restoring."
5600
  msgstr ""
5601
 
5602
+ #: admin.php:2486
5603
  msgid "Perform a one-time backup"
5604
  msgstr ""
5605
 
5606
+ #: admin.php:330 admin.php:510 admin.php:2431
 
 
 
 
5607
  msgid "Backup Now"
5608
  msgstr ""
5609
 
5610
+ #: addons/migrator.php:223 admin.php:517 admin.php:2434 admin.php:4612
5611
  msgid "Restore"
5612
  msgstr ""
5613
 
5614
+ #: addons/autobackup.php:278 addons/autobackup.php:372 admin.php:2786
5615
+ #: admin.php:2791
5616
  msgid "Last log message"
5617
  msgstr ""
5618
 
5619
+ #: admin.php:2787 admin.php:2793 central/bootstrap.php:164
5620
  msgid "(Nothing yet logged)"
5621
  msgstr ""
5622
 
5623
+ #: admin.php:2828
5624
  msgid "Download most recently modified log file"
5625
  msgstr ""
5626
 
5627
+ #: admin.php:2866
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5628
  msgid "More tasks:"
5629
  msgstr ""
5630
 
5631
+ #: admin.php:2872
5632
  msgid "Opera web browser"
5633
  msgstr ""
5634
 
5635
+ #: admin.php:2872
5636
  msgid "If you are using this, then turn Turbo/Road mode off."
5637
  msgstr ""
5638
 
5639
+ #: addons/google-enhanced.php:72 methods/googledrive.php:146
5640
+ #: methods/googledrive.php:358 methods/googledrive.php:381
5641
+ #: methods/googledrive.php:410 methods/googledrive.php:417
5642
+ #: methods/googledrive.php:427 methods/googledrive.php:433
5643
+ #: methods/googledrive.php:435 methods/googledrive.php:888
5644
+ #: methods/googledrive.php:900 methods/googledrive.php:916
5645
+ #: methods/googledrive.php:920 methods/googledrive.php:931
5646
+ #: methods/googledrive.php:941
5647
  msgid "Google Drive"
5648
  msgstr ""
5649
 
5650
+ #: admin.php:2863
 
 
 
 
 
 
 
 
5651
  msgid "Web-server disk space in use by UpdraftPlus"
5652
  msgstr ""
5653
 
5654
+ #: admin.php:2863
5655
  msgid "refresh"
5656
  msgstr ""
5657
 
5658
+ #: admin.php:2161
5659
  msgid "Lead developer's homepage"
5660
  msgstr ""
5661
 
5662
+ #: admin.php:2162
 
 
 
 
5663
  msgid "Version"
5664
  msgstr ""
5665
 
5666
+ #: admin.php:2339
5667
  msgid "Your backup has been restored."
5668
  msgstr ""
5669
 
5670
+ #: admin.php:2358
 
 
 
 
5671
  msgid "Current limit is:"
5672
  msgstr ""
5673
 
5674
+ #: admin.php:497 admin.php:3170
5675
  msgid "Delete Old Directories"
5676
  msgstr ""
5677
 
5678
+ #: admin.php:2416
5679
  msgid "JavaScript warning"
5680
  msgstr ""
5681
 
5682
+ #: admin.php:2417
5683
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
5684
  msgstr ""
5685
 
5686
+ #: admin.php:125 admin.php:146 admin.php:153
5687
  msgid "Nothing currently scheduled"
5688
  msgstr ""
5689
 
5690
+ #: admin.php:135
5691
  msgid "At the same time as the files backup"
5692
  msgstr ""
5693
 
5694
+ #: admin.php:2452
 
 
 
 
5695
  msgid "Next scheduled backups"
5696
  msgstr ""
5697
 
5698
+ #: admin.php:155
5699
  msgid "Files"
5700
  msgstr ""
5701
 
5702
+ #: addons/migrator.php:1738 addons/moredatabase.php:235
5703
+ #: addons/reporting.php:216 admin.php:159 admin.php:1277 admin.php:2995
5704
+ #: admin.php:2997 admin.php:4264 admin.php:4456 admin.php:4965
5705
  msgid "Database"
5706
  msgstr ""
5707
 
5708
+ #: admin.php:773
5709
  msgid "Your website is hosted using the %s web server."
5710
  msgstr ""
5711
 
5712
+ #: admin.php:773
5713
  msgid "Please consult this FAQ if you have problems backing up."
5714
  msgstr ""
5715
 
5716
+ #: admin.php:788 admin.php:792 admin.php:796 admin.php:800 admin.php:808
5717
+ #: admin.php:812
5718
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
5719
  msgstr ""
5720
 
5721
+ #: admin.php:560
5722
  msgid "Nothing yet logged"
5723
  msgstr ""
5724
 
5725
+ #: admin.php:1790
5726
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
5727
  msgstr ""
5728
 
5729
+ #: admin.php:1706
5730
  msgid "Job deleted"
5731
  msgstr ""
5732
 
5733
+ #: admin.php:1714
5734
  msgid "Could not find that job - perhaps it has already finished?"
5735
  msgstr ""
5736
 
5737
+ #: admin.php:488 admin.php:1686 admin.php:4863 class-updraftplus.php:867
 
5738
  #: methods/addon-base.php:75 methods/addon-base.php:80
5739
+ #: methods/addon-base.php:194 methods/addon-base.php:214
5740
+ #: methods/stream-base.php:196 restorer.php:2057 restorer.php:2082
5741
+ #: restorer.php:2163 updraftplus.php:147
5742
  msgid "Error"
5743
  msgstr ""
5744
 
5745
+ #: admin.php:1895
5746
  msgid "Download failed"
5747
  msgstr ""
5748
 
5749
+ #: admin.php:489 admin.php:1914
5750
  msgid "File ready."
5751
  msgstr ""
5752
 
5753
+ #: admin.php:1924
5754
  msgid "Download in progress"
5755
  msgstr ""
5756
 
5757
+ #: admin.php:1927
5758
  msgid "No local copy present."
5759
  msgstr ""
5760
 
5761
+ #: admin.php:2046
5762
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
5763
  msgstr ""
5764
 
5765
+ #: admin.php:2136
5766
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
5767
  msgstr ""
5768
 
5769
+ #: admin.php:2221
5770
  msgid "Restore successful!"
5771
  msgstr ""
5772
 
5773
+ #: admin.php:2231 admin.php:2240 admin.php:2249 admin.php:2291 admin.php:3413
5774
+ #: admin.php:4329
5775
  msgid "Actions"
5776
  msgstr ""
5777
 
5778
+ #: addons/migrator.php:275 addons/migrator.php:287 admin.php:2231
5779
+ #: admin.php:2240 admin.php:2249 admin.php:2291 admin.php:3413
5780
  msgid "Return to UpdraftPlus Configuration"
5781
  msgstr ""
5782
 
5783
+ #: admin.php:3406
5784
  msgid "Remove old directories"
5785
  msgstr ""
5786
 
5787
+ #: admin.php:3409
5788
  msgid "Old directories successfully removed."
5789
  msgstr ""
5790
 
5791
+ #: admin.php:3411
5792
  msgid "Old directory removal failed for some reason. You may want to do this manually."
5793
  msgstr ""
5794
 
5795
+ #: admin.php:2282
5796
  msgid "Backup directory could not be created"
5797
  msgstr ""
5798
 
5799
+ #: admin.php:2289
5800
  msgid "Backup directory successfully created."
5801
  msgstr ""
5802
 
5803
+ #: admin.php:2312
5804
  msgid "Your settings have been wiped."
5805
  msgstr ""
5806
 
5807
+ #: class-updraftplus.php:3386
5808
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
5809
  msgstr ""
5810
 
5811
+ #: class-updraftplus.php:3393
5812
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
5813
  msgstr ""
5814
 
5815
+ #: class-updraftplus.php:3403
5816
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
5817
  msgstr ""
5818
 
5819
+ #: backup.php:1942
5820
  msgid "Infinite recursion: consult your log for more information"
5821
  msgstr ""
5822
 
5823
+ #: backup.php:229
5824
  msgid "Could not create %s zip. Consult the log file for more information."
5825
  msgstr ""
5826
 
5827
+ #: admin.php:655
5828
  msgid "Allowed Files"
5829
  msgstr ""
5830
 
5831
+ #: admin.php:346 admin.php:697 admin.php:2394
5832
  msgid "Settings"
5833
  msgstr ""
5834
 
5835
+ #: admin.php:701
5836
  msgid "Add-Ons / Pro Support"
5837
  msgstr ""
5838
 
5839
+ #: admin.php:757 admin.php:761 admin.php:765 admin.php:769 admin.php:773
5840
+ #: admin.php:782 admin.php:2858 admin.php:4137 admin.php:4144 admin.php:4146
5841
+ #: methods/cloudfiles.php:448 methods/ftp.php:284
5842
+ #: methods/openstack-base.php:429 methods/s3.php:710 methods/s3.php:714
5843
+ #: methods/updraftvault.php:239 udaddons/updraftplus-addons.php:208
5844
  msgid "Warning"
5845
  msgstr ""
5846
 
5847
+ #: admin.php:765
5848
  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."
5849
  msgstr ""
5850
 
5851
+ #: admin.php:769
5852
  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."
5853
  msgstr ""
5854
 
5855
+ #: backup.php:920
5856
  msgid "WordPress backup is complete"
5857
  msgstr ""
5858
 
5859
+ #: admin.php:1964 backup.php:1116 restorer.php:168
5860
  msgid "Backup directory (%s) is not writable, or does not exist."
5861
  msgstr ""
5862
 
5863
+ #: class-updraftplus.php:2858
5864
  msgid "Could not read the directory"
5865
  msgstr ""
5866
 
5867
+ #: class-updraftplus.php:2881
5868
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
5869
  msgstr ""
5870
 
5871
+ #: backup.php:1847
5872
  msgid "Could not open the backup file for writing"
5873
  msgstr ""
5874
 
5875
+ #: class-updraftplus.php:3185 class-updraftplus.php:3442 restorer.php:309
5876
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
5877
  msgstr ""
5878
 
5879
+ #: class-updraftplus.php:3196 class-updraftplus.php:3459 restorer.php:319
5880
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
5881
  msgstr ""
5882
 
5883
+ #: class-updraftplus.php:3196
5884
  msgid "The decryption key used:"
5885
  msgstr ""
5886
 
5887
+ #: addons/azure.php:215 class-updraftplus.php:3278 methods/googledrive.php:823
5888
  msgid "File not found"
5889
  msgstr ""
5890
 
5891
+ #: class-updraftplus.php:3378
5892
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
5893
  msgstr ""
5894
 
5895
+ #: class-updraftplus.php:3386
5896
  msgid "Like UpdraftPlus and can spare one minute?"
5897
  msgstr ""
5898
 
5899
+ #: class-updraftplus.php:1280
5900
  msgid "Themes"
5901
  msgstr ""
5902
 
5903
+ #: addons/multisite.php:452 class-updraftplus.php:1281
5904
  msgid "Uploads"
5905
  msgstr ""
5906
 
5907
+ #: class-updraftplus.php:1296
5908
  msgid "Others"
5909
  msgstr ""
5910
 
5911
+ #: class-updraftplus.php:1897
5912
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
5913
  msgstr ""
5914
 
5915
+ #: addons/moredatabase.php:322
5916
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
5917
  msgstr ""
5918
 
5919
+ #: class-updraftplus.php:2417
5920
  msgid "The backup apparently succeeded and is now complete"
5921
  msgstr ""
5922
 
5923
+ #: class-updraftplus.php:2432
5924
  msgid "The backup attempt has finished, apparently unsuccessfully"
5925
  msgstr ""
5926
 
5927
+ #: addons/multisite.php:66 addons/multisite.php:646 options.php:41
5928
  msgid "UpdraftPlus Backups"
5929
  msgstr ""
5930
 
5931
+ #: admin.php:788 admin.php:792 admin.php:796 admin.php:800 admin.php:804
5932
+ #: admin.php:808 admin.php:812 class-updraftplus.php:356
5933
+ #: class-updraftplus.php:391 class-updraftplus.php:396
5934
+ #: class-updraftplus.php:401
5935
  msgid "UpdraftPlus notice:"
5936
  msgstr ""
5937
 
5938
+ #: admin.php:1849 admin.php:1853 class-updraftplus.php:391
5939
  msgid "The log file could not be read."
5940
  msgstr ""
5941
 
5942
+ #: class-updraftplus.php:396
5943
  msgid "No log files were found."
5944
  msgstr ""
5945
 
5946
+ #: class-updraftplus.php:1279
 
 
 
 
5947
  msgid "Plugins"
5948
  msgstr ""
languages/updraftplus-cs_CZ.mo CHANGED
Binary file
languages/updraftplus-cs_CZ.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-da_DK.mo CHANGED
Binary file
languages/updraftplus-da_DK.po CHANGED
@@ -2,255 +2,255 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-11-22 21:52:29+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
14
  msgid "FAQs"
15
- msgstr ""
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
19
- msgstr ""
20
 
21
  #: udaddons/plugin-updates/plugin-update-checker.php:648
22
  msgid "Check for updates"
23
- msgstr ""
24
 
25
  #: udaddons/plugin-updates/plugin-update-checker.php:692
26
  msgid "This plugin is up to date."
27
- msgstr ""
28
 
29
  #: udaddons/plugin-updates/plugin-update-checker.php:694
30
  msgid "A new version of this plugin is available."
31
- msgstr ""
32
 
33
  #: udaddons/plugin-updates/plugin-update-checker.php:696
34
  msgid "Unknown update checker status \"%s\""
35
- msgstr ""
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
- msgstr ""
40
 
41
  #: backup.php:1987
42
  msgid "Failed to open directory (check the file permissions and ownership): %s"
43
- msgstr ""
44
 
45
  #: central/bootstrap.php:419
46
  msgid "Public key was sent to:"
47
- msgstr ""
48
 
49
  #: central/bootstrap.php:424
50
  msgid "Key size: %d bits"
51
- msgstr ""
52
 
53
  #: central/bootstrap.php:439
54
  msgid "Dashboard at"
55
- msgstr ""
56
 
57
  #: central/bootstrap.php:439
58
  msgid "Use the alternative method for making a connection with the dashboard."
59
- msgstr ""
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
- msgstr ""
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
- msgstr ""
68
 
69
  #: addons/migrator.php:2158
70
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
71
- msgstr ""
72
 
73
  #: addons/migrator.php:2159
74
  msgid "Enter your chosen name"
75
- msgstr ""
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
79
- msgstr ""
80
 
81
  #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
- msgstr ""
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
- msgstr ""
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
- msgstr ""
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
- msgstr ""
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
- msgstr ""
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
- msgstr ""
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
109
- msgstr ""
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
113
- msgstr ""
114
 
115
  #: central/bootstrap.php:439
116
  msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
- msgstr ""
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
- msgstr ""
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
- msgstr ""
126
 
127
  #: methods/email.php:77
128
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
- msgstr ""
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
- msgstr ""
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
- msgstr ""
138
 
139
  #: methods/googledrive.php:417
140
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
- msgstr ""
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
- msgstr ""
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
149
- msgstr ""
150
 
151
  #: admin.php:3959
152
  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)."
153
- msgstr ""
154
 
155
  #: class-updraftplus.php:3529 restorer.php:926
156
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
157
- msgstr ""
158
 
159
  #: admin.php:3770
160
  msgid "(tap on an icon to select or unselect)"
161
- msgstr ""
162
 
163
  #: backup.php:833 class-updraftplus.php:2411
164
  msgid "The backup was aborted by the user"
165
- msgstr ""
166
 
167
  #: central/bootstrap.php:50
168
  msgid "UpdraftCentral Connection"
169
- msgstr ""
170
 
171
  #: central/bootstrap.php:53
172
  msgid "An UpdraftCentral connection has been made successfully."
173
- msgstr ""
174
 
175
  #: central/bootstrap.php:55
176
  msgid "A new UpdraftCentral connection has not been made."
177
- msgstr ""
178
 
179
  #: central/bootstrap.php:58
180
  msgid "The key referred to was unknown."
181
- msgstr ""
182
 
183
  #: central/bootstrap.php:64
184
  msgid "You are not logged into this WordPress site in your web browser."
185
- msgstr ""
186
 
187
  #: central/bootstrap.php:64
188
  msgid "You must visit this URL in the same browser and login session as you created the key in."
189
- msgstr ""
190
 
191
  #: central/bootstrap.php:71
192
  msgid "You must visit this link in the same browser and login session as you created the key in."
193
- msgstr ""
194
 
195
  #: central/bootstrap.php:75
196
  msgid "This connection appears to already have been made."
197
- msgstr ""
198
 
199
  #: central/bootstrap.php:83
200
  msgid "Close..."
201
- msgstr ""
202
 
203
  #: central/bootstrap.php:196
204
  msgid "An invalid URL was entered"
205
- msgstr ""
206
 
207
  #: central/bootstrap.php:313 central/bootstrap.php:324
208
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
209
- msgstr ""
210
 
211
  #: central/bootstrap.php:381
212
  msgid "Key description"
213
- msgstr ""
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
- msgstr ""
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
221
- msgstr ""
222
 
223
  #: central/bootstrap.php:419
224
  msgid "Access this site as user:"
225
- msgstr ""
226
 
227
  #: central/bootstrap.php:422
228
  msgid "Created:"
229
- msgstr ""
230
 
231
  #: central/bootstrap.php:429
232
  msgid "Delete..."
233
- msgstr ""
234
 
235
  #: central/bootstrap.php:435
236
  msgid "Create new key"
237
- msgstr ""
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
- msgstr ""
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
245
- msgstr ""
246
 
247
  #: central/bootstrap.php:439
248
  msgid "URL of mothership"
249
- msgstr ""
250
 
251
  #: central/bootstrap.php:452
252
  msgid "View recent UpdraftCentral log events"
253
- msgstr ""
254
 
255
  #: central/bootstrap.php:452
256
  msgid "fetch..."
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-05-24 20:13:09+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
14
  msgid "FAQs"
15
+ msgstr "FAQs"
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
19
+ msgstr "Der er ingen ændrings-log til rådighed."
20
 
21
  #: udaddons/plugin-updates/plugin-update-checker.php:648
22
  msgid "Check for updates"
23
+ msgstr "Tjek efter opdateringer"
24
 
25
  #: udaddons/plugin-updates/plugin-update-checker.php:692
26
  msgid "This plugin is up to date."
27
+ msgstr "Dette plugin er opdateret."
28
 
29
  #: udaddons/plugin-updates/plugin-update-checker.php:694
30
  msgid "A new version of this plugin is available."
31
+ msgstr "Der er en ny version af dette plugin til rådighed."
32
 
33
  #: udaddons/plugin-updates/plugin-update-checker.php:696
34
  msgid "Unknown update checker status \"%s\""
35
+ msgstr "Ukendt opdatering - Tjekker status \"%s\""
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
+ msgstr "%s: Ulæselig fil - kunne ikke sikkerhedskopieres (check fil-tilladelser og -ejerskab)"
40
 
41
  #: backup.php:1987
42
  msgid "Failed to open directory (check the file permissions and ownership): %s"
43
+ msgstr "Kunne ikke åbne bibliotek (tjek fil-tilladelser og -ejerskab): %s"
44
 
45
  #: central/bootstrap.php:419
46
  msgid "Public key was sent to:"
47
+ msgstr "Offentlig nøgle blev sendt til:"
48
 
49
  #: central/bootstrap.php:424
50
  msgid "Key size: %d bits"
51
+ msgstr "Størrelse på nøgle: %d bits"
52
 
53
  #: central/bootstrap.php:439
54
  msgid "Dashboard at"
55
+ msgstr "Kontrolpanelet på"
56
 
57
  #: central/bootstrap.php:439
58
  msgid "Use the alternative method for making a connection with the dashboard."
59
+ msgstr "Benyt den alternative måde for at skabe forbindelse med kontrolpanelet."
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
+ msgstr "Mere information..."
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
+ msgstr "Dette er nyttigt, hvis kontrolpanelets webserver ikke kan kontaktes med indgående trafik af denne hjemmeside (dette er f.eks. tilfældet, hvis denne hjemmeside er hostet på det offentlige internet, men UpdraftCentral kontrolpanelet er på localhost eller på et intranet, eller hvis denne hjemmeside har en udgående firewall), eller hvis kontrolpanelets hjemmeside ikke har et SSL-certifikat."
68
 
69
  #: addons/migrator.php:2158
70
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
71
+ msgstr "Opret en nøgle: Giv denne nøgle et unikt navn (som f.eks antyder det site, den er til), og tryk derefter på \"Opret Nøgle\":"
72
 
73
  #: addons/migrator.php:2159
74
  msgid "Enter your chosen name"
75
+ msgstr "Indtast dit valgte navn"
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
79
+ msgstr "Krypterings-nøglens størrelse:"
80
 
81
  #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
+ msgstr "%s bits"
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
+ msgstr "let at bryde, hurtigst"
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
+ msgstr "hurtigere (mulighed for langsomme PHP installationer)"
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
+ msgstr "%s bytes"
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
+ msgstr "anbefalet"
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
+ msgstr "langsomere, stærkest"
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
109
+ msgstr "Opret nøgle"
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
113
+ msgstr "det vil sige, at du har en konto dér"
114
 
115
  #: central/bootstrap.php:439
116
  msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
+ msgstr "Andet (angiv det site, hvor du har installeret et updraft Central kontrolpanel)"
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
+ msgstr "Størrelse: %s MB"
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
+ msgstr "Størrelsen på dette backup-arkiv er %s MB - forsøge på at sende det via e-mail er tilbøjelige til at mislykkes (få email-servere tillader vedhæftede filer af denne størrelse). Hvis det er tilfældet, bør du skifte til at bruge en anden fjernlager metode."
126
 
127
  #: methods/email.php:77
128
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
+ msgstr "Vær opmærksom på at mailservere ofte har størrelsesbegrænsninger; typisk omkring %s MB; backups større end eventuelle grænser vil sandsynligvis ikke blive modtaget."
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
+ msgstr "login"
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
+ msgstr "Dette er undertiden forårsaget af en firewall - prøv at fravælge SSL i ekspert indstillingerne, og teste igen."
138
 
139
  #: methods/googledrive.php:417
140
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
+ msgstr "Upload forventes at svigte: %s grænsen for en enkelt fil er %s, mens denne fil er %s GB (%d bytes)"
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
+ msgstr "Nu"
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
149
+ msgstr "1 GB gratis UpdraftPlus Vault"
150
 
151
  #: admin.php:3959
152
  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)."
153
+ msgstr "UpdraftPlus vil opdele backup arkiver, når de overskrider denne filstørrelse. Standardværdien er %s megabyte. Vær omhyggelig med at friholde lidt plads, hvis din web-server har en lidt vanskelig maksimal begrænsning (fx 2 GB / 2048 MB grænse på nogle 32-bit servere / filsystemer)."
154
 
155
  #: class-updraftplus.php:3529 restorer.php:926
156
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
157
+ msgstr "Du bør frigøre %s for at pæne permalinks (f.eks. %s) kan virke"
158
 
159
  #: admin.php:3770
160
  msgid "(tap on an icon to select or unselect)"
161
+ msgstr "(klik på et ikon for at vælge eller fravælge)"
162
 
163
  #: backup.php:833 class-updraftplus.php:2411
164
  msgid "The backup was aborted by the user"
165
+ msgstr "Backup'en blev afbrudt af brugeren"
166
 
167
  #: central/bootstrap.php:50
168
  msgid "UpdraftCentral Connection"
169
+ msgstr "UpdraftCentral Connection"
170
 
171
  #: central/bootstrap.php:53
172
  msgid "An UpdraftCentral connection has been made successfully."
173
+ msgstr "En UpdraftCentral forbindelse blev oprettet med succes."
174
 
175
  #: central/bootstrap.php:55
176
  msgid "A new UpdraftCentral connection has not been made."
177
+ msgstr "Der er ikke blevet oprettet en UpdraftCentral forbindelse."
178
 
179
  #: central/bootstrap.php:58
180
  msgid "The key referred to was unknown."
181
+ msgstr "Nøglen der refereres til er ukendt."
182
 
183
  #: central/bootstrap.php:64
184
  msgid "You are not logged into this WordPress site in your web browser."
185
+ msgstr "Du er ikke logget på dette WordPress site i din browser."
186
 
187
  #: central/bootstrap.php:64
188
  msgid "You must visit this URL in the same browser and login session as you created the key in."
189
+ msgstr "Du skal besøge denne URL i samme browser og login-session, som du oprettede nøglen i."
190
 
191
  #: central/bootstrap.php:71
192
  msgid "You must visit this link in the same browser and login session as you created the key in."
193
+ msgstr "Du skal besøge dette link i samme browser og login-session, som du oprettede nøglen i."
194
 
195
  #: central/bootstrap.php:75
196
  msgid "This connection appears to already have been made."
197
+ msgstr "Denne tilslutning tilsyneladende allerede er foretaget."
198
 
199
  #: central/bootstrap.php:83
200
  msgid "Close..."
201
+ msgstr "Luk..."
202
 
203
  #: central/bootstrap.php:196
204
  msgid "An invalid URL was entered"
205
+ msgstr "Ugyldig URL blev indtastet"
206
 
207
  #: central/bootstrap.php:313 central/bootstrap.php:324
208
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
209
+ msgstr "En nøgle blev oprettet, men forsøget på at registrere den med %s mislykkedes - prøv igen senere."
210
 
211
  #: central/bootstrap.php:381
212
  msgid "Key description"
213
+ msgstr "Nøgle-beskrivelse"
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
+ msgstr "Detaljer"
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
221
+ msgstr "Der er endnu ikke oprettet en nøgle."
222
 
223
  #: central/bootstrap.php:419
224
  msgid "Access this site as user:"
225
+ msgstr "Adgang til dette site som bruger:"
226
 
227
  #: central/bootstrap.php:422
228
  msgid "Created:"
229
+ msgstr "Oprettet:"
230
 
231
  #: central/bootstrap.php:429
232
  msgid "Delete..."
233
+ msgstr "Slet..."
234
 
235
  #: central/bootstrap.php:435
236
  msgid "Create new key"
237
+ msgstr "Opret ny nøgle"
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
+ msgstr "Beskrivelse"
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
245
+ msgstr "Angiv enhver beskrivelse"
246
 
247
  #: central/bootstrap.php:439
248
  msgid "URL of mothership"
249
+ msgstr "Moderskibets URL"
250
 
251
  #: central/bootstrap.php:452
252
  msgid "View recent UpdraftCentral log events"
253
+ msgstr "Se de seneste updraftCentral log-hændelser"
254
 
255
  #: central/bootstrap.php:452
256
  msgid "fetch..."
languages/updraftplus-de_DE.mo CHANGED
Binary file
languages/updraftplus-de_DE.po CHANGED
@@ -2,37 +2,37 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-02-24 18:48:36+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
14
  msgid "FAQs"
15
- msgstr ""
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
19
- msgstr ""
20
 
21
  #: udaddons/plugin-updates/plugin-update-checker.php:648
22
  msgid "Check for updates"
23
- msgstr ""
24
 
25
  #: udaddons/plugin-updates/plugin-update-checker.php:692
26
  msgid "This plugin is up to date."
27
- msgstr ""
28
 
29
  #: udaddons/plugin-updates/plugin-update-checker.php:694
30
  msgid "A new version of this plugin is available."
31
- msgstr ""
32
 
33
  #: udaddons/plugin-updates/plugin-update-checker.php:696
34
  msgid "Unknown update checker status \"%s\""
35
- msgstr ""
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
@@ -60,7 +60,7 @@ msgstr ""
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
- msgstr ""
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
@@ -72,7 +72,7 @@ msgstr ""
72
 
73
  #: addons/migrator.php:2159
74
  msgid "Enter your chosen name"
75
- msgstr ""
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
@@ -82,31 +82,31 @@ msgstr ""
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
- msgstr ""
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
- msgstr ""
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
- msgstr ""
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
- msgstr ""
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
- msgstr ""
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
- msgstr ""
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
109
- msgstr ""
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
@@ -118,7 +118,7 @@ msgstr ""
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
- msgstr ""
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
@@ -130,7 +130,7 @@ msgstr ""
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
- msgstr ""
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
@@ -142,7 +142,7 @@ msgstr ""
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
- msgstr ""
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
@@ -162,7 +162,7 @@ msgstr ""
162
 
163
  #: backup.php:833 class-updraftplus.php:2411
164
  msgid "The backup was aborted by the user"
165
- msgstr ""
166
 
167
  #: central/bootstrap.php:50
168
  msgid "UpdraftCentral Connection"
@@ -198,11 +198,11 @@ msgstr ""
198
 
199
  #: central/bootstrap.php:83
200
  msgid "Close..."
201
- msgstr ""
202
 
203
  #: central/bootstrap.php:196
204
  msgid "An invalid URL was entered"
205
- msgstr ""
206
 
207
  #: central/bootstrap.php:313 central/bootstrap.php:324
208
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
@@ -210,39 +210,39 @@ msgstr ""
210
 
211
  #: central/bootstrap.php:381
212
  msgid "Key description"
213
- msgstr ""
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
- msgstr ""
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
221
- msgstr ""
222
 
223
  #: central/bootstrap.php:419
224
  msgid "Access this site as user:"
225
- msgstr ""
226
 
227
  #: central/bootstrap.php:422
228
  msgid "Created:"
229
- msgstr ""
230
 
231
  #: central/bootstrap.php:429
232
  msgid "Delete..."
233
- msgstr ""
234
 
235
  #: central/bootstrap.php:435
236
  msgid "Create new key"
237
- msgstr ""
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
- msgstr ""
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
245
- msgstr ""
246
 
247
  #: central/bootstrap.php:439
248
  msgid "URL of mothership"
@@ -254,7 +254,7 @@ msgstr ""
254
 
255
  #: central/bootstrap.php:452
256
  msgid "fetch..."
257
- msgstr ""
258
 
259
  #: central/bootstrap.php:463
260
  msgid "UpdraftCentral (Remote Control)"
@@ -276,7 +276,7 @@ msgstr ""
276
  #: methods/updraftvault.php:270 methods/updraftvault.php:276
277
  #: methods/updraftvault.php:282
278
  msgid "%s per year"
279
- msgstr ""
280
 
281
  #: addons/copycom.php:60 addons/copycom.php:526
282
  msgid "Barracuda are closing down Copy.Com on May 1st, 2016. See:"
@@ -288,67 +288,67 @@ msgstr ""
288
 
289
  #: admin.php:477
290
  msgid "Fetching..."
291
- msgstr ""
292
 
293
  #: admin.php:485
294
  msgid "Error: the server sent us a response which we did not understand."
295
- msgstr ""
296
 
297
  #: admin.php:521
298
  msgid "Saving..."
299
- msgstr ""
300
 
301
  #: admin.php:538
302
  msgid "Please enter a valid URL"
303
- msgstr ""
304
 
305
  #: admin.php:539
306
  msgid "We requested to delete the file, but could not understand the server's response"
307
- msgstr ""
308
 
309
  #: admin.php:545
310
  msgid "You should save your changes to ensure that they are used for making your backup."
311
- msgstr ""
312
 
313
  #: admin.php:2599
314
  msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
315
- msgstr ""
316
 
317
  #: admin.php:2863
318
  msgid "calculate"
319
- msgstr ""
320
 
321
  #: admin.php:2934
322
  msgid "this backup set"
323
- msgstr ""
324
 
325
  #: admin.php:2937
326
  msgid "these backup sets"
327
- msgstr ""
328
 
329
  #: admin.php:3103
330
  msgid "reset"
331
- msgstr ""
332
 
333
  #: admin.php:3149 admin.php:3153
334
  msgid "Wipe settings"
335
- msgstr ""
336
 
337
  #: admin.php:3220
338
  msgid "The backup has finished running"
339
- msgstr ""
340
 
341
  #: admin.php:3382
342
  msgid "stop"
343
- msgstr ""
344
 
345
  #: admin.php:4294
346
  msgid "Total backup size:"
347
- msgstr ""
348
 
349
  #: admin.php:5212
350
  msgid "Your settings have been saved."
351
- msgstr ""
352
 
353
  #: addons/onedrive.php:50
354
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
@@ -4614,7 +4614,7 @@ msgstr "Alle Verweise zur Seite in der Datenbank wird mit der aktuellen URL (%s)
4614
 
4615
  #: addons/migrator.php:528
4616
  msgid "Search and replace site location in the database (migrate)"
4617
- msgstr "Suche und Ersetze Seitenort in der Datenbank (Migrierung)"
4618
 
4619
  #: addons/migrator.php:528
4620
  msgid "(learn more)"
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-05-16 21:47:05+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
14
  msgid "FAQs"
15
+ msgstr "FAQ"
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
19
+ msgstr "Es ist keine Änderungsaufzeichnung verfügbar."
20
 
21
  #: udaddons/plugin-updates/plugin-update-checker.php:648
22
  msgid "Check for updates"
23
+ msgstr "Auf Aktualisierungen prüfen"
24
 
25
  #: udaddons/plugin-updates/plugin-update-checker.php:692
26
  msgid "This plugin is up to date."
27
+ msgstr "Das Plugin ist auf letztem Stand."
28
 
29
  #: udaddons/plugin-updates/plugin-update-checker.php:694
30
  msgid "A new version of this plugin is available."
31
+ msgstr "Es ist eine neue Version von diesem Plugin verfügbar."
32
 
33
  #: udaddons/plugin-updates/plugin-update-checker.php:696
34
  msgid "Unknown update checker status \"%s\""
35
+ msgstr "Unbekannter Status \"%S\" bei Updateprüfung."
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
+ msgstr "Mehr Informationen..."
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
72
 
73
  #: addons/migrator.php:2159
74
  msgid "Enter your chosen name"
75
+ msgstr "Gib einen Namen deiner Wahl ein"
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
+ msgstr "%s Bit"
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
+ msgstr "leicht zu knacken, am schnellsten"
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
+ msgstr "schneller (Option für langsame PHP-Installationen)"
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
+ msgstr "%s Byte"
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
+ msgstr "empfohlen"
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
+ msgstr "langsamer, am stärksten"
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
109
+ msgstr "Erzeuge einen Schlüssel / Passwort"
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
+ msgstr "Größe: %s MB"
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
+ msgstr "Anmeldung"
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
+ msgstr "Jetzt"
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
162
 
163
  #: backup.php:833 class-updraftplus.php:2411
164
  msgid "The backup was aborted by the user"
165
+ msgstr "Die Sicherung wurde durch den Benutzer abgebrochen"
166
 
167
  #: central/bootstrap.php:50
168
  msgid "UpdraftCentral Connection"
198
 
199
  #: central/bootstrap.php:83
200
  msgid "Close..."
201
+ msgstr "Schließen..."
202
 
203
  #: central/bootstrap.php:196
204
  msgid "An invalid URL was entered"
205
+ msgstr "Eine ungültige URL wurde eingegeben"
206
 
207
  #: central/bootstrap.php:313 central/bootstrap.php:324
208
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
210
 
211
  #: central/bootstrap.php:381
212
  msgid "Key description"
213
+ msgstr "Schlüssel-Beschreibung"
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
+ msgstr "Details"
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
221
+ msgstr "Es wurden noch keine Schlüssel erstellt."
222
 
223
  #: central/bootstrap.php:419
224
  msgid "Access this site as user:"
225
+ msgstr "Auf diese Seite zugreifen als Benutzer:"
226
 
227
  #: central/bootstrap.php:422
228
  msgid "Created:"
229
+ msgstr "Erzeugt:"
230
 
231
  #: central/bootstrap.php:429
232
  msgid "Delete..."
233
+ msgstr "Löschen..."
234
 
235
  #: central/bootstrap.php:435
236
  msgid "Create new key"
237
+ msgstr "Neuen Schlüssel erzeugen"
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
+ msgstr "Beschreibung"
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
245
+ msgstr "Gib irgendeine Beschreibung ein"
246
 
247
  #: central/bootstrap.php:439
248
  msgid "URL of mothership"
254
 
255
  #: central/bootstrap.php:452
256
  msgid "fetch..."
257
+ msgstr "Holen ..."
258
 
259
  #: central/bootstrap.php:463
260
  msgid "UpdraftCentral (Remote Control)"
276
  #: methods/updraftvault.php:270 methods/updraftvault.php:276
277
  #: methods/updraftvault.php:282
278
  msgid "%s per year"
279
+ msgstr "%s pro Jahr"
280
 
281
  #: addons/copycom.php:60 addons/copycom.php:526
282
  msgid "Barracuda are closing down Copy.Com on May 1st, 2016. See:"
288
 
289
  #: admin.php:477
290
  msgid "Fetching..."
291
+ msgstr "Hole ..."
292
 
293
  #: admin.php:485
294
  msgid "Error: the server sent us a response which we did not understand."
295
+ msgstr "Fehler: Der Server hat uns eine Anwort geschickt, die wir nicht verstehen."
296
 
297
  #: admin.php:521
298
  msgid "Saving..."
299
+ msgstr "Speichern..."
300
 
301
  #: admin.php:538
302
  msgid "Please enter a valid URL"
303
+ msgstr "Bitte geben Sie eine gültige URL ein"
304
 
305
  #: admin.php:539
306
  msgid "We requested to delete the file, but could not understand the server's response"
307
+ msgstr "Wir haben die Löschung der ausgewählten Datei angefragt, aber können die Antwort des Servers nicht verstehen."
308
 
309
  #: admin.php:545
310
  msgid "You should save your changes to ensure that they are used for making your backup."
311
+ msgstr "Sie sollten Ihre Änderungen speichern um sicher zu gehen, dass sie für ihre Sicherung genutzt werden."
312
 
313
  #: admin.php:2599
314
  msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
315
+ msgstr "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
316
 
317
  #: admin.php:2863
318
  msgid "calculate"
319
+ msgstr "Berechne"
320
 
321
  #: admin.php:2934
322
  msgid "this backup set"
323
+ msgstr "Dieser Sicherungs-Satz"
324
 
325
  #: admin.php:2937
326
  msgid "these backup sets"
327
+ msgstr "Diese Sicherungs-Sätze"
328
 
329
  #: admin.php:3103
330
  msgid "reset"
331
+ msgstr "Zurücksetzen"
332
 
333
  #: admin.php:3149 admin.php:3153
334
  msgid "Wipe settings"
335
+ msgstr "Setze Einstellungen zurück"
336
 
337
  #: admin.php:3220
338
  msgid "The backup has finished running"
339
+ msgstr "Die Sicherung wurde abgeschlossen"
340
 
341
  #: admin.php:3382
342
  msgid "stop"
343
+ msgstr "Stop"
344
 
345
  #: admin.php:4294
346
  msgid "Total backup size:"
347
+ msgstr "Gesamtgröße der Sicherung:"
348
 
349
  #: admin.php:5212
350
  msgid "Your settings have been saved."
351
+ msgstr "Ihre Einstellungen wurden gespeichert."
352
 
353
  #: addons/onedrive.php:50
354
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
4614
 
4615
  #: addons/migrator.php:528
4616
  msgid "Search and replace site location in the database (migrate)"
4617
+ msgstr "Suche und Ersetze Seiten-URL in der Datenbank (Migration)"
4618
 
4619
  #: addons/migrator.php:528
4620
  msgid "(learn more)"
languages/updraftplus-el.mo CHANGED
Binary file
languages/updraftplus-el.po CHANGED
@@ -2,12 +2,12 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-03-21 11:41:07+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
@@ -16,141 +16,141 @@ msgstr ""
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
19
- msgstr ""
20
 
21
  #: udaddons/plugin-updates/plugin-update-checker.php:648
22
  msgid "Check for updates"
23
- msgstr ""
24
 
25
  #: udaddons/plugin-updates/plugin-update-checker.php:692
26
  msgid "This plugin is up to date."
27
- msgstr ""
28
 
29
  #: udaddons/plugin-updates/plugin-update-checker.php:694
30
  msgid "A new version of this plugin is available."
31
- msgstr ""
32
 
33
  #: udaddons/plugin-updates/plugin-update-checker.php:696
34
  msgid "Unknown update checker status \"%s\""
35
- msgstr ""
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
- msgstr ""
40
 
41
  #: backup.php:1987
42
  msgid "Failed to open directory (check the file permissions and ownership): %s"
43
- msgstr ""
44
 
45
  #: central/bootstrap.php:419
46
  msgid "Public key was sent to:"
47
- msgstr ""
48
 
49
  #: central/bootstrap.php:424
50
  msgid "Key size: %d bits"
51
- msgstr ""
52
 
53
  #: central/bootstrap.php:439
54
  msgid "Dashboard at"
55
- msgstr ""
56
 
57
  #: central/bootstrap.php:439
58
  msgid "Use the alternative method for making a connection with the dashboard."
59
- msgstr ""
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
- msgstr ""
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
- msgstr ""
68
 
69
  #: addons/migrator.php:2158
70
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
71
- msgstr ""
72
 
73
  #: addons/migrator.php:2159
74
  msgid "Enter your chosen name"
75
- msgstr ""
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
79
- msgstr ""
80
 
81
  #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
- msgstr ""
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
- msgstr ""
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
- msgstr ""
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
- msgstr ""
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
- msgstr ""
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
- msgstr ""
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
109
- msgstr ""
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
113
- msgstr ""
114
 
115
  #: central/bootstrap.php:439
116
  msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
- msgstr ""
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
- msgstr ""
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
- msgstr ""
126
 
127
  #: methods/email.php:77
128
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
- msgstr ""
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
- msgstr ""
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
- msgstr ""
138
 
139
  #: methods/googledrive.php:417
140
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
- msgstr ""
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
- msgstr ""
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
149
- msgstr ""
150
 
151
  #: admin.php:3959
152
  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)."
153
- msgstr ""
154
 
155
  #: class-updraftplus.php:3529 restorer.php:926
156
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
@@ -4750,7 +4750,7 @@ msgstr "Αποτυχία: Δεν μπορέσαμε να τοποθετήσου
4750
 
4751
  #: addons/morefiles.php:63 addons/morefiles.php:442
4752
  msgid "WordPress Core"
4753
- msgstr "Πυρήνας του WordPress "
4754
 
4755
  #: addons/morefiles.php:67
4756
  msgid "Over-write wp-config.php"
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-05-07 13:08:17+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
19
+ msgstr "Δεν υπάρχει διαθέσιμη αρχείο καταγραφής."
20
 
21
  #: udaddons/plugin-updates/plugin-update-checker.php:648
22
  msgid "Check for updates"
23
+ msgstr "Έλεγχος για ενημερώσεις"
24
 
25
  #: udaddons/plugin-updates/plugin-update-checker.php:692
26
  msgid "This plugin is up to date."
27
+ msgstr "Το πρόσθετο είναι ενημερωμένο."
28
 
29
  #: udaddons/plugin-updates/plugin-update-checker.php:694
30
  msgid "A new version of this plugin is available."
31
+ msgstr "Μια νέα έκδοση από αυτό το πρόσθετο είναι διαθέσιμη."
32
 
33
  #: udaddons/plugin-updates/plugin-update-checker.php:696
34
  msgid "Unknown update checker status \"%s\""
35
+ msgstr "Άγνωστη ενημέρωση της κατάστασης \"%s\""
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
+ msgstr "%s: μη αναγνώσιμο αρχείο - δεν μπορεί να συμπεριληφθεί στο αντίγραφο ασφαλείας (ελέγξτε τα δικαιώματα αρχείων και την ιδιοκτησία)"
40
 
41
  #: backup.php:1987
42
  msgid "Failed to open directory (check the file permissions and ownership): %s"
43
+ msgstr "Απoτυχία ανοίγματος του καταλόγου (ελέγξτε τα δικαιώματα αρχείων και την ιδιοκτησία): %s"
44
 
45
  #: central/bootstrap.php:419
46
  msgid "Public key was sent to:"
47
+ msgstr "Το δημόσιο κλειδί εστάλη στο: "
48
 
49
  #: central/bootstrap.php:424
50
  msgid "Key size: %d bits"
51
+ msgstr "Μέγεθος κλειδιού: %d bits"
52
 
53
  #: central/bootstrap.php:439
54
  msgid "Dashboard at"
55
+ msgstr "Πίνακας ελέγχου στο"
56
 
57
  #: central/bootstrap.php:439
58
  msgid "Use the alternative method for making a connection with the dashboard."
59
+ msgstr "Χρησιμοποιήστε την εναλλακτική μέθοδο για την πραγματοποίηση μιας σύνδεσης με τον πίνακα ελέγχου."
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
+ msgstr "Περισσότερες πληροφορίες..."
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
+ msgstr "Αυτό είναι χρήσιμο εάν ο πίνακας ελέγχου του διακομιστή δεν μπορεί να έρθει σε επαφή με την εισερχόμενη κίνηση από την παρούσα ιστοσελίδα (όπως για παράδειγμα στην περίπτωση που αυτή η ιστοσελίδα φιλοξενείται στο δημόσιο Internet, αλλά ο πίνακας ελέγχου του UpdraftCentral είναι σε localhost, ή σε Intranet, ή εάν αυτή η ιστοσελίδα έχει firewall), ή εάν ο πίνακας ελέγχου της ιστοσελίδας δεν έχει πιστοποιητικό SSL."
68
 
69
  #: addons/migrator.php:2158
70
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
71
+ msgstr "Δημιουργήστε ένα κλειδί: δώστε σε αυτό το κλειδί ένα μοναδικό όνομα (π.χ. κάτι που να σχετίζεται πως είναι γι' αυτή την ιστοσελίδα) και στη συνέχεια πατήστε το κουμπί \"Δημιουργία κλειδιού\":"
72
 
73
  #: addons/migrator.php:2159
74
  msgid "Enter your chosen name"
75
+ msgstr "Εισάγετε το όνομα που έχετε επιλέξει"
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
79
+ msgstr "Μέγεθος κλειδιού κρυπτογράφησης:"
80
 
81
  #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
+ msgstr "%s bits"
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
+ msgstr "εύκολο να σπάσει, πολύ γρήγορο"
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
+ msgstr "γρηγορότερο (δυνατότητα λειτουργίας σε εγκαταστάσεις με αργό PHP)"
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
+ msgstr "%s bytes"
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
+ msgstr "προτεινόμενο"
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
+ msgstr "πιο αργό, δυνατότερο"
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
109
+ msgstr "Δημιουργία κλειδιού"
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
113
+ msgstr "δηλαδή αν έχετε ένα λογαριασμό εκεί"
114
 
115
  #: central/bootstrap.php:439
116
  msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
+ msgstr "Άλλο (παρακαλούμε διευκρινίστε - δηλαδή τη σελίδα όπου έχετε εγκαταστήσει έναν πίνακα ελέγχου του UpdraftCentral)"
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
+ msgstr "Μέγεθος: %s MB"
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
+ msgstr "Αυτό το αρχείο αντιγράφων ασφαλείας έχει μέγεθος %s MB - η προσπάθεια να το στείλετε αυτό μέσω ηλεκτρονικού ταχυδρομείου είναι πιθανό να αποτύχει (ελάχιστοι e-mail servers επιτρέπουν συνημμένα αρχεία αυτού του μεγέθους). Αν ναι, θα πρέπει να σκεφτείτε να κάνετε χρήση μιας διαφορετικής μεθόδου απομακρυσμένης αποθήκευσης."
126
 
127
  #: methods/email.php:77
128
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
+ msgstr "Θα πρέπει να γνωρίζετε ότι οι διακομιστές ταχυδρομείου τείνουν να έχουν τα όρια μεγέθους, συνήθως γύρω στα %s MB, αντίγραφα ασφαλείας με μέγεθος μεγαλύτερο από αυτά τα όρια πιθανότατα δεν θα φτάσει."
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
+ msgstr "σύνδεση"
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
+ msgstr "Αυτό μερικές φορές προκαλείται από ένα τείχος προστασίας - δοκιμάστε να απενεργοποιήσετε το SSL στις ρυθμίσεις για προχωρημένους, και προσπαθήστε ξανά."
138
 
139
  #: methods/googledrive.php:417
140
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
+ msgstr "Η μεταφόρτωση αναμένεται να αποτύχει: το όριο του %s για κάθε μεμονωμένο αρχείο είναι %s, ενώ αυτό το αρχείο είναι %s GB (%d bytes)"
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
+ msgstr "Τώρα"
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
149
+ msgstr "Δωρεάν 1GB στο UpdraftPlus Vault"
150
 
151
  #: admin.php:3959
152
  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)."
153
+ msgstr "Το UpdraftPlus θα χωρίσει τα αντίγραφα ασφαλείας των αρχείων όταν υπερβαίνουν αυτό το μέγεθος. Η προεπιλεγμένη τιμή είναι %s megabytes. Να είστε προσεκτικοί για να αφήσετε κάποιο περιθώριο, αν ο web-server σας έχει αποκλειστικό όριο μέγεθος (π.χ. τα 2 GB / 2048 MB όριο σε κάποιους εξυπηρετητές/συστήματα αρχείων 32-bit)."
154
 
155
  #: class-updraftplus.php:3529 restorer.php:926
156
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
4750
 
4751
  #: addons/morefiles.php:63 addons/morefiles.php:442
4752
  msgid "WordPress Core"
4753
+ msgstr "Πυρήνας WordPress "
4754
 
4755
  #: addons/morefiles.php:67
4756
  msgid "Over-write wp-config.php"
languages/updraftplus-es_CO.mo CHANGED
Binary file
languages/updraftplus-es_CO.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-es_ES.mo CHANGED
Binary file
languages/updraftplus-es_ES.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-fa_IR.mo CHANGED
Binary file
languages/updraftplus-fa_IR.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-fi.mo CHANGED
Binary file
languages/updraftplus-fi.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-fr_FR.mo CHANGED
Binary file
languages/updraftplus-fr_FR.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-he_IL.mo CHANGED
Binary file
languages/updraftplus-he_IL.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-hu_HU.mo CHANGED
Binary file
languages/updraftplus-hu_HU.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-it_IT.mo CHANGED
Binary file
languages/updraftplus-it_IT.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-ja.mo CHANGED
Binary file
languages/updraftplus-ja.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
@@ -826,9 +826,7 @@ msgstr "バックアップを %d 個 削除しました"
826
 
827
  #: admin.php:2869
828
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
829
- msgstr ""
830
- "\n"
831
- "ここを押して、既存のバックアップセットのためのあなたのリモートストレージ内検索します。(これらは同じフォルダに格納されている場合、任意のサイトから)"
832
 
833
  #: admin.php:2920
834
  msgid "Actions upon selected backups"
@@ -1074,7 +1072,7 @@ msgstr "許可しない場合、UpdraftPlus はバックアップを削除する
1074
 
1075
  #: backup.php:2884
1076
  msgid "The zip engine returned the message: %s."
1077
- msgstr "圧縮の際に以下のエラーが発生しました:%s 。\n"
1078
 
1079
  #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:904
1080
  msgid "Delete failed:"
@@ -4408,7 +4406,7 @@ msgstr "サイトの移行"
4408
 
4409
  #: addons/migrator.php:170
4410
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
4411
- msgstr "<a href=\"%s\">ステップバイステップどのように行うのかこの記事を読んで</a>\n"
4412
 
4413
  #: admin.php:2476
4414
  msgid "Do you want to migrate or clone/duplicate a site?"
@@ -4683,7 +4681,7 @@ msgstr "あなたが入力した内容に注意してください - あなたが
4683
 
4684
  #: addons/morefiles.php:442
4685
  msgid "No backup of %s directories: there was nothing found to back up"
4686
- msgstr "%sのディレクトリのバックアップなし:何もありませんでしたが、バックアップするものが見つけられません。\n"
4687
 
4688
  #: addons/sftp.php:38
4689
  msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
826
 
827
  #: admin.php:2869
828
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
829
+ msgstr "ここを押して、既存のバックアップセットのためのあなたのリモートストレージ内検索します。(これらは同じフォルダに格納されている場合、任意のサイトから)"
 
 
830
 
831
  #: admin.php:2920
832
  msgid "Actions upon selected backups"
1072
 
1073
  #: backup.php:2884
1074
  msgid "The zip engine returned the message: %s."
1075
+ msgstr "圧縮の際に以下のエラーが発生しました:%s "
1076
 
1077
  #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:904
1078
  msgid "Delete failed:"
4406
 
4407
  #: addons/migrator.php:170
4408
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
4409
+ msgstr "<a href=\"%s\">ステップバイステップどのように行うのかこの記事を読んで</a>"
4410
 
4411
  #: admin.php:2476
4412
  msgid "Do you want to migrate or clone/duplicate a site?"
4681
 
4682
  #: addons/morefiles.php:442
4683
  msgid "No backup of %s directories: there was nothing found to back up"
4684
+ msgstr "%sのディレクトリのバックアップなし:何もありませんでしたが、バックアップするものが見つけられません。"
4685
 
4686
  #: addons/sftp.php:38
4687
  msgid "Encrypted FTP is available, and will be automatically tried first (before falling back to non-encrypted if it is not successful), unless you disable it using the expert options. The 'Test FTP Login' button will tell you what type of connection is in use."
languages/updraftplus-lt_LT.mo CHANGED
Binary file
languages/updraftplus-lt_LT.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-nb_NO.mo CHANGED
Binary file
languages/updraftplus-nb_NO.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-nl_NL.mo CHANGED
Binary file
languages/updraftplus-nl_NL.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-pl_PL.mo CHANGED
Binary file
languages/updraftplus-pl_PL.po CHANGED
@@ -2,695 +2,695 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-12-14 15:18:53+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
14
  msgid "FAQs"
15
- msgstr ""
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
19
- msgstr ""
20
 
21
  #: udaddons/plugin-updates/plugin-update-checker.php:648
22
  msgid "Check for updates"
23
- msgstr ""
24
 
25
  #: udaddons/plugin-updates/plugin-update-checker.php:692
26
  msgid "This plugin is up to date."
27
- msgstr ""
28
 
29
  #: udaddons/plugin-updates/plugin-update-checker.php:694
30
  msgid "A new version of this plugin is available."
31
- msgstr ""
32
 
33
  #: udaddons/plugin-updates/plugin-update-checker.php:696
34
  msgid "Unknown update checker status \"%s\""
35
- msgstr ""
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
- msgstr ""
40
 
41
  #: backup.php:1987
42
  msgid "Failed to open directory (check the file permissions and ownership): %s"
43
- msgstr ""
44
 
45
  #: central/bootstrap.php:419
46
  msgid "Public key was sent to:"
47
- msgstr ""
48
 
49
  #: central/bootstrap.php:424
50
  msgid "Key size: %d bits"
51
- msgstr ""
52
 
53
  #: central/bootstrap.php:439
54
  msgid "Dashboard at"
55
- msgstr ""
56
 
57
  #: central/bootstrap.php:439
58
  msgid "Use the alternative method for making a connection with the dashboard."
59
- msgstr ""
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
- msgstr ""
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
- msgstr ""
68
 
69
  #: addons/migrator.php:2158
70
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
71
- msgstr ""
72
 
73
  #: addons/migrator.php:2159
74
  msgid "Enter your chosen name"
75
- msgstr ""
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
79
- msgstr ""
80
 
81
  #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
- msgstr ""
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
- msgstr ""
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
- msgstr ""
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
- msgstr ""
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
- msgstr ""
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
- msgstr ""
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
109
- msgstr ""
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
113
- msgstr ""
114
 
115
  #: central/bootstrap.php:439
116
  msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
- msgstr ""
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
- msgstr ""
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
- msgstr ""
126
 
127
  #: methods/email.php:77
128
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
- msgstr ""
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
- msgstr ""
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
- msgstr ""
138
 
139
  #: methods/googledrive.php:417
140
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
- msgstr ""
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
- msgstr ""
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
149
- msgstr ""
150
 
151
  #: admin.php:3959
152
  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)."
153
- msgstr ""
154
 
155
  #: class-updraftplus.php:3529 restorer.php:926
156
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
157
- msgstr ""
158
 
159
  #: admin.php:3770
160
  msgid "(tap on an icon to select or unselect)"
161
- msgstr ""
162
 
163
  #: backup.php:833 class-updraftplus.php:2411
164
  msgid "The backup was aborted by the user"
165
- msgstr ""
166
 
167
  #: central/bootstrap.php:50
168
  msgid "UpdraftCentral Connection"
169
- msgstr ""
170
 
171
  #: central/bootstrap.php:53
172
  msgid "An UpdraftCentral connection has been made successfully."
173
- msgstr ""
174
 
175
  #: central/bootstrap.php:55
176
  msgid "A new UpdraftCentral connection has not been made."
177
- msgstr ""
178
 
179
  #: central/bootstrap.php:58
180
  msgid "The key referred to was unknown."
181
- msgstr ""
182
 
183
  #: central/bootstrap.php:64
184
  msgid "You are not logged into this WordPress site in your web browser."
185
- msgstr ""
186
 
187
  #: central/bootstrap.php:64
188
  msgid "You must visit this URL in the same browser and login session as you created the key in."
189
- msgstr ""
190
 
191
  #: central/bootstrap.php:71
192
  msgid "You must visit this link in the same browser and login session as you created the key in."
193
- msgstr ""
194
 
195
  #: central/bootstrap.php:75
196
  msgid "This connection appears to already have been made."
197
- msgstr ""
198
 
199
  #: central/bootstrap.php:83
200
  msgid "Close..."
201
- msgstr ""
202
 
203
  #: central/bootstrap.php:196
204
  msgid "An invalid URL was entered"
205
- msgstr ""
206
 
207
  #: central/bootstrap.php:313 central/bootstrap.php:324
208
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
209
- msgstr ""
210
 
211
  #: central/bootstrap.php:381
212
  msgid "Key description"
213
- msgstr ""
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
- msgstr ""
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
221
- msgstr ""
222
 
223
  #: central/bootstrap.php:419
224
  msgid "Access this site as user:"
225
- msgstr ""
226
 
227
  #: central/bootstrap.php:422
228
  msgid "Created:"
229
- msgstr ""
230
 
231
  #: central/bootstrap.php:429
232
  msgid "Delete..."
233
- msgstr ""
234
 
235
  #: central/bootstrap.php:435
236
  msgid "Create new key"
237
- msgstr ""
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
- msgstr ""
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
245
- msgstr ""
246
 
247
  #: central/bootstrap.php:439
248
  msgid "URL of mothership"
249
- msgstr ""
250
 
251
  #: central/bootstrap.php:452
252
  msgid "View recent UpdraftCentral log events"
253
- msgstr ""
254
 
255
  #: central/bootstrap.php:452
256
  msgid "fetch..."
257
- msgstr ""
258
 
259
  #: central/bootstrap.php:463
260
  msgid "UpdraftCentral (Remote Control)"
261
- msgstr ""
262
 
263
  #: class-updraftplus.php:356 class-updraftplus.php:401
264
  msgid "The given file was not found, or could not be read."
265
- msgstr ""
266
 
267
  #: methods/updraftvault.php:214
268
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
269
- msgstr ""
270
 
271
  #: methods/updraftvault.php:269 methods/updraftvault.php:275
272
  #: methods/updraftvault.php:281
273
  msgid "or (annual discount)"
274
- msgstr ""
275
 
276
  #: methods/updraftvault.php:270 methods/updraftvault.php:276
277
  #: methods/updraftvault.php:282
278
  msgid "%s per year"
279
- msgstr ""
280
 
281
  #: addons/copycom.php:60 addons/copycom.php:526
282
  msgid "Barracuda are closing down Copy.Com on May 1st, 2016. See:"
283
- msgstr ""
284
 
285
  #: addons/s3-enhanced.php:305
286
  msgid "Asia Pacific (Seoul)"
287
- msgstr ""
288
 
289
  #: admin.php:477
290
  msgid "Fetching..."
291
- msgstr ""
292
 
293
  #: admin.php:485
294
  msgid "Error: the server sent us a response which we did not understand."
295
- msgstr ""
296
 
297
  #: admin.php:521
298
  msgid "Saving..."
299
- msgstr ""
300
 
301
  #: admin.php:538
302
  msgid "Please enter a valid URL"
303
- msgstr ""
304
 
305
  #: admin.php:539
306
  msgid "We requested to delete the file, but could not understand the server's response"
307
- msgstr ""
308
 
309
  #: admin.php:545
310
  msgid "You should save your changes to ensure that they are used for making your backup."
311
- msgstr ""
312
 
313
  #: admin.php:2599
314
  msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
315
- msgstr ""
316
 
317
  #: admin.php:2863
318
  msgid "calculate"
319
- msgstr ""
320
 
321
  #: admin.php:2934
322
  msgid "this backup set"
323
- msgstr ""
324
 
325
  #: admin.php:2937
326
  msgid "these backup sets"
327
- msgstr ""
328
 
329
  #: admin.php:3103
330
  msgid "reset"
331
- msgstr ""
332
 
333
  #: admin.php:3149 admin.php:3153
334
  msgid "Wipe settings"
335
- msgstr ""
336
 
337
  #: admin.php:3220
338
  msgid "The backup has finished running"
339
- msgstr ""
340
 
341
  #: admin.php:3382
342
  msgid "stop"
343
- msgstr ""
344
 
345
  #: admin.php:4294
346
  msgid "Total backup size:"
347
- msgstr ""
348
 
349
  #: admin.php:5212
350
  msgid "Your settings have been saved."
351
- msgstr ""
352
 
353
  #: addons/onedrive.php:50
354
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
355
- msgstr ""
356
 
357
  #: backup.php:386
358
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
359
- msgstr ""
360
 
361
  #: restorer.php:1533
362
  msgid "Uploads URL:"
363
- msgstr ""
364
 
365
  #: addons/multisite.php:374 addons/multisite.php:384
366
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
367
- msgstr ""
368
 
369
  #: addons/multisite.php:525
370
  msgid "Which site to restore"
371
- msgstr ""
372
 
373
  #: addons/multisite.php:528
374
  msgid "All sites"
375
- msgstr ""
376
 
377
  #: addons/multisite.php:533
378
  msgid "may include some site-wide data"
379
- msgstr ""
380
 
381
  #: addons/multisite.php:542
382
  msgid "N.B. this option only affects the restoration of the database and uploads - other file entities (such as plugins) in WordPress are shared by the whole network."
383
- msgstr ""
384
 
385
  #: addons/multisite.php:542
386
  msgid "Read more..."
387
- msgstr ""
388
 
389
  #: admin.php:556
390
  msgid "Please fill in the required information."
391
- msgstr ""
392
 
393
  #: admin.php:2727
394
  msgid "Dismiss"
395
- msgstr ""
396
 
397
  #: class-updraftplus.php:3576
398
  msgid "It will be imported as a new site."
399
- msgstr ""
400
 
401
  #: class-updraftplus.php:3576
402
  msgid "Please read this link for important information on this process."
403
- msgstr ""
404
 
405
  #: class-updraftplus.php:3580 restorer.php:1553
406
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
407
- msgstr ""
408
 
409
  #: restorer.php:1894
410
  msgid "Skipping table %s: this table will not be restored"
411
- msgstr ""
412
 
413
  #: addons/migrator.php:352 addons/migrator.php:355 addons/migrator.php:358
414
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
415
- msgstr ""
416
 
417
  #: addons/migrator.php:352
418
  msgid "WordPress core"
419
- msgstr ""
420
 
421
  #: addons/migrator.php:355
422
  msgid "other content from wp-content"
423
- msgstr ""
424
 
425
  #: addons/migrator.php:364 addons/migrator.php:366
426
  msgid "Importing a single site into a multisite install"
427
- msgstr ""
428
 
429
  #: addons/migrator.php:366
430
  msgid "This feature is not compatible with %s"
431
- msgstr ""
432
 
433
  #: addons/migrator.php:386 addons/migrator.php:388
434
  msgid "You must use lower-case letters or numbers for the site path, only."
435
- msgstr ""
436
 
437
  #: addons/migrator.php:396
438
  msgid "Attribute imported content to user"
439
- msgstr ""
440
 
441
  #: addons/migrator.php:434
442
  msgid "Required information for restoring this backup was not given (%s)"
443
- msgstr ""
444
 
445
  #: addons/migrator.php:491 addons/migrator.php:492
446
  msgid "Error when creating new site at your chosen address:"
447
- msgstr ""
448
 
449
  #: addons/migrator.php:517
450
  msgid "<strong>ERROR</strong>: problem creating site entry."
451
- msgstr ""
452
 
453
  #: admin.php:3101
454
  msgid "Call WordPress action:"
455
- msgstr ""
456
 
457
  #: admin.php:2751
458
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
459
- msgstr ""
460
 
461
  #: admin.php:354 admin.php:2395
462
  msgid "Advanced Tools"
463
- msgstr ""
464
 
465
  #: admin.php:362
466
  msgid "Extensions"
467
- msgstr ""
468
 
469
  #: admin.php:471
470
  msgid "You have chosen to backup files, but no file entities have been selected"
471
- msgstr ""
472
 
473
  #: admin.php:544
474
  msgctxt "(verb)"
475
  msgid "Download"
476
- msgstr ""
477
 
478
  #: admin.php:2192 admin.php:2201
479
  msgid "Sufficient information about the in-progress restoration operation could not be found."
480
- msgstr ""
481
 
482
  #: admin.php:2396
483
  msgid "Premium / Extensions"
484
- msgstr ""
485
 
486
  #: admin.php:2521
487
  msgid "Backup Contents And Schedule"
488
- msgstr ""
489
 
490
  #: admin.php:2718
491
  msgid "%s minutes, %s seconds"
492
- msgstr ""
493
 
494
  #: admin.php:2720
495
  msgid "Unfinished restoration"
496
- msgstr ""
497
 
498
  #: admin.php:2721
499
  msgid "You have an unfinished restoration operation, begun %s ago."
500
- msgstr ""
501
 
502
  #: admin.php:2726
503
  msgid "Continue restoration"
504
- msgstr ""
505
 
506
  #: admin.php:2747
507
  msgid "Include the database in the backup"
508
- msgstr ""
509
 
510
  #: admin.php:2749
511
  msgid "Include any files in the backup"
512
- msgstr ""
513
 
514
  #: admin.php:5111
515
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
516
- msgstr ""
517
 
518
  #: admin.php:5111
519
  msgid "settings"
520
- msgstr ""
521
 
522
  #: admin.php:5111
523
  msgid "Not got any remote storage?"
524
- msgstr ""
525
 
526
  #: admin.php:5111
527
  msgid "Check out UpdraftPlus Vault."
528
- msgstr ""
529
 
530
  #: admin.php:5113
531
  msgid "Send this backup to remote storage"
532
- msgstr ""
533
 
534
  #: admin.php:3150
535
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
536
- msgstr ""
537
 
538
  #: admin.php:3150
539
  msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
540
- msgstr ""
541
 
542
  #: admin.php:3682
543
  msgid "Files backup schedule"
544
- msgstr ""
545
 
546
  #: admin.php:3715
547
  msgid "Incremental file backup schedule"
548
- msgstr ""
549
 
550
  #: admin.php:3725
551
  msgid "Database backup schedule"
552
- msgstr ""
553
 
554
  #: admin.php:3760
555
  msgid "Sending Your Backup To Remote Storage"
556
- msgstr ""
557
 
558
  #: admin.php:3819
559
  msgid "File Options"
560
- msgstr ""
561
 
562
  #: admin.php:4849
563
  msgid "Skipping: this archive was already restored."
564
- msgstr ""
565
 
566
  #: addons/googlecloud.php:860
567
  msgid "You must use a bucket name that is unique, for all %s users."
568
- msgstr ""
569
 
570
  #: addons/googlecloud.php:875 addons/googlecloud.php:890
571
  msgid "This setting applies only when a new bucket is being created."
572
- msgstr ""
573
 
574
  #: addons/googlecloud.php:875
575
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
576
- msgstr ""
577
 
578
  #: addons/googlecloud.php:880
579
  msgid "Bucket location"
580
- msgstr ""
581
 
582
  #: addons/googlecloud.php:45
583
  msgid " Eastern United States"
584
- msgstr ""
585
 
586
  #: addons/googlecloud.php:47 addons/googlecloud.php:48
587
  msgid "Eastern United States"
588
- msgstr ""
589
 
590
  #: addons/googlecloud.php:49
591
  msgid "Western United States"
592
- msgstr ""
593
 
594
  #: addons/googlecloud.php:50
595
  msgid "Eastern Asia-Pacific"
596
- msgstr ""
597
 
598
  #: addons/googlecloud.php:51
599
  msgid "Western Europe"
600
- msgstr ""
601
 
602
  #: addons/googlecloud.php:268
603
  msgid "You do not have access to this bucket"
604
- msgstr ""
605
 
606
  #: addons/googlecloud.php:816
607
  msgid "Do not confuse %s with %s - they are separate things."
608
- msgstr ""
609
 
610
  #: addons/azure.php:516
611
  msgid "If the %s does not already exist, then it will be created."
612
- msgstr ""
613
 
614
  #: addons/azure.php:516
615
  msgid "See Microsoft's guidelines on container naming by following this link."
616
- msgstr ""
617
 
618
  #: addons/azure.php:521
619
  msgid "Prefix"
620
- msgstr ""
621
 
622
  #: addons/azure.php:521
623
  msgid "optional"
624
- msgstr ""
625
 
626
  #: addons/azure.php:522
627
  msgid "You can enter the path of any %s virtual folder you wish to use here."
628
- msgstr ""
629
 
630
  #: addons/azure.php:522
631
  msgid "container"
632
- msgstr ""
633
 
634
  #: addons/googlecloud.php:35
635
  msgid "Standard"
636
- msgstr ""
637
 
638
  #: addons/googlecloud.php:36
639
  msgid "Durable reduced availability"
640
- msgstr ""
641
 
642
  #: addons/googlecloud.php:37
643
  msgid "Nearline"
644
- msgstr ""
645
 
646
  #: addons/googlecloud.php:41
647
  msgid "United States"
648
- msgstr ""
649
 
650
  #: addons/googlecloud.php:41 addons/googlecloud.php:42
651
  #: addons/googlecloud.php:43
652
  msgid "multi-region location"
653
- msgstr ""
654
 
655
  #: addons/googlecloud.php:42
656
  msgid "Asia Pacific"
657
- msgstr ""
658
 
659
  #: addons/googlecloud.php:43
660
  msgid "European Union"
661
- msgstr ""
662
 
663
  #: addons/googlecloud.php:44 addons/googlecloud.php:46
664
  msgid "Central United States"
665
- msgstr ""
666
 
667
  #: addons/azure.php:342
668
  msgid "Could not access container"
669
- msgstr ""
670
 
671
  #: addons/azure.php:448
672
  msgid "Could not create the container"
673
- msgstr ""
674
 
675
  #: addons/azure.php:500
676
  msgid "Create Azure credentials in your Azure developer console."
677
- msgstr ""
678
 
679
  #: addons/azure.php:504 addons/azure.php:508
680
  msgid "Azure"
681
- msgstr ""
682
 
683
  #: addons/azure.php:504
684
  msgid "Account Name"
685
- msgstr ""
686
 
687
  #: addons/azure.php:505
688
  msgid "This is not your Azure login - see the instructions if needing more guidance."
689
- msgstr ""
690
 
691
  #: addons/azure.php:516
692
  msgid "Enter the path of the %s you wish to use here."
693
- msgstr ""
694
 
695
  #: class-updraftplus.php:2428
696
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
@@ -702,7 +702,7 @@ msgstr "ID projektu"
702
 
703
  #: addons/googlecloud.php:743
704
  msgid "You must enter a project ID in order to be able to create a new bucket."
705
- msgstr ""
706
 
707
  #: addons/googlecloud.php:828
708
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
@@ -714,7 +714,7 @@ msgstr "Wprowadź ID projektu %s, którego chcesz tu używać."
714
 
715
  #: addons/googlecloud.php:855
716
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
717
- msgstr ""
718
 
719
  #: addons/googlecloud.php:855
720
  msgid "Otherwise, you can leave it blank."
@@ -722,23 +722,23 @@ msgstr "W przeciwnym razie możesz pozostawić to pole puste."
722
 
723
  #: addons/googlecloud.php:859
724
  msgid "Bucket"
725
- msgstr ""
726
 
727
  #: addons/googlecloud.php:860
728
  msgid "Enter the name of the %s bucket you wish to use here."
729
- msgstr ""
730
 
731
  #: addons/googlecloud.php:860
732
  msgid "Bucket names have to be globally unique. If the bucket does not already exist, then it will be created."
733
- msgstr ""
734
 
735
  #: addons/googlecloud.php:860
736
  msgid "See Google's guidelines on bucket naming by following this link."
737
- msgstr ""
738
 
739
  #: addons/googlecloud.php:865
740
  msgid "Storage class"
741
- msgstr ""
742
 
743
  #: admin.php:3076
744
  msgid "Not installed"
@@ -806,11 +806,11 @@ msgstr "dzień(dni)"
806
 
807
  #: admin.php:551
808
  msgid "hour(s)"
809
- msgstr "godzin"
810
 
811
  #: admin.php:552
812
  msgid "week(s)"
813
- msgstr ""
814
 
815
  #: admin.php:553
816
  msgid "For backups older than"
@@ -826,1278 +826,1278 @@ msgstr "Usunięto zestawy kopii zapasowych: %d"
826
 
827
  #: admin.php:2869
828
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
829
- msgstr ""
830
 
831
  #: admin.php:2920
832
  msgid "Actions upon selected backups"
833
- msgstr ""
834
 
835
  #: admin.php:2922
836
  msgid "Select all"
837
- msgstr ""
838
 
839
  #: admin.php:2923
840
  msgid "Deselect"
841
- msgstr ""
842
 
843
  #: admin.php:2934 admin.php:2937
844
  msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
845
- msgstr ""
846
 
847
  #: admin.php:3754
848
  msgid "or to configure more complex schedules"
849
- msgstr ""
850
 
851
  #: restorer.php:707
852
  msgid "Deferring..."
853
- msgstr ""
854
 
855
  #: updraftplus.php:147
856
  msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
857
- msgstr ""
858
 
859
  #: addons/morestorage.php:26
860
  msgid "(as many as you like)"
861
- msgstr ""
862
 
863
  #: addons/fixtime.php:281 addons/fixtime.php:286
864
  msgid "Add an additional retention rule..."
865
- msgstr ""
866
 
867
  #: methods/updraftvault.php:563
868
  msgid "You do not currently have any UpdraftPlus Vault quota"
869
- msgstr ""
870
 
871
  #: restorer.php:1978
872
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
873
- msgstr ""
874
 
875
  #: restorer.php:1978
876
  msgid "This database needs to be deployed on MySQL version %s or later."
877
- msgstr ""
878
 
879
  #: admin.php:2324
880
  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."
881
- msgstr ""
882
 
883
  #: admin.php:2649
884
  msgid "No advertising links on UpdraftPlus settings page"
885
- msgstr ""
886
 
887
  #: class-updraftplus.php:3613
888
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
889
- msgstr ""
890
 
891
  #: class-updraftplus.php:3613
892
  msgid "You must upgrade MySQL to be able to use this database."
893
- msgstr ""
894
 
895
  #: methods/updraftvault.php:303
896
  msgid "Don't know your email address, or forgotten your password?"
897
- msgstr ""
898
 
899
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
900
  msgid "Read the FAQs here."
901
- msgstr ""
902
 
903
  #: methods/updraftvault.php:296
904
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
905
- msgstr ""
906
 
907
  #: addons/s3-enhanced.php:40
908
  msgid "Server-side encryption"
909
- msgstr ""
910
 
911
  #: addons/s3-enhanced.php:41
912
  msgid "Check this box to use Amazon's server-side encryption"
913
- msgstr ""
914
 
915
  #: methods/updraftvault.php:572
916
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
917
- msgstr ""
918
 
919
  #: admin.php:804
920
  msgid "%s has been chosen for remote storage, but you are not currently connected."
921
- msgstr ""
922
 
923
  #: admin.php:804
924
  msgid "Go to the remote storage settings in order to connect."
925
- msgstr ""
926
 
927
  #: methods/updraftvault.php:285
928
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
929
- msgstr ""
930
 
931
  #: admin.php:523
932
  msgid "Connecting..."
933
- msgstr ""
934
 
935
  #: admin.php:525
936
  msgid "Disconnecting..."
937
- msgstr ""
938
 
939
  #: admin.php:526
940
  msgid "Counting..."
941
- msgstr ""
942
 
943
  #: admin.php:527
944
  msgid "Update quota count"
945
- msgstr ""
946
 
947
  #: methods/updraftvault.php:48 methods/updraftvault.php:71
948
  msgid "Updraft Vault"
949
- msgstr ""
950
 
951
  #: methods/updraftvault.php:205
952
  msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
953
- msgstr ""
954
 
955
  #: methods/updraftvault.php:208
956
  msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
957
- msgstr ""
958
 
959
  #: methods/updraftvault.php:211
960
  msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
961
- msgstr ""
962
 
963
  #: methods/updraftvault.php:247 methods/updraftvault.php:264
964
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
965
- msgstr ""
966
 
967
  #: methods/updraftvault.php:247 methods/updraftvault.php:264
968
  msgid "Press a button to get started."
969
- msgstr ""
970
 
971
  #: methods/updraftvault.php:250
972
  msgid "First time user?"
973
- msgstr ""
974
 
975
  #: methods/updraftvault.php:251
976
  msgid "Show the options"
977
- msgstr ""
978
 
979
  #: methods/updraftvault.php:254
980
  msgid "Already purchased space?"
981
- msgstr ""
982
 
983
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
984
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
985
- msgstr ""
986
 
987
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
988
  msgid "Read more about it here."
989
- msgstr ""
990
 
991
  #: methods/updraftvault.php:268 methods/updraftvault.php:274
992
  #: methods/updraftvault.php:280
993
  msgid "%s per quarter"
994
- msgstr ""
995
 
996
  #: methods/updraftvault.php:285
997
  msgid "Subscriptions can be cancelled at any time."
998
- msgstr ""
999
 
1000
  #: methods/updraftvault.php:291 methods/updraftvault.php:306
1001
  msgid "Back..."
1002
- msgstr ""
1003
 
1004
  #: methods/updraftvault.php:298
1005
  msgid "E-mail"
1006
- msgstr ""
1007
 
1008
  #: methods/updraftvault.php:303
1009
  msgid "Go here for help"
1010
- msgstr ""
1011
 
1012
  #: methods/updraftvault.php:327
1013
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1014
- msgstr ""
1015
 
1016
  #: methods/updraftvault.php:331
1017
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1018
- msgstr ""
1019
 
1020
  #: methods/updraftvault.php:331
1021
  msgid "Well done - there's nothing more needed to set up."
1022
- msgstr ""
1023
 
1024
  #: methods/updraftvault.php:331
1025
  msgid "Vault owner"
1026
- msgstr ""
1027
 
1028
  #: methods/updraftvault.php:333
1029
  msgid "Quota:"
1030
- msgstr ""
1031
 
1032
  #: admin.php:524 methods/updraftvault.php:341
1033
  msgid "Disconnect"
1034
- msgstr ""
1035
 
1036
  #: methods/updraftvault.php:349
1037
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1038
- msgstr ""
1039
 
1040
  #: methods/updraftvault.php:349
1041
  msgid "You can get more quota here"
1042
- msgstr ""
1043
 
1044
  #: methods/updraftvault.php:354 methods/updraftvault.php:397
1045
  msgid "Current use:"
1046
- msgstr ""
1047
 
1048
  #: methods/updraftvault.php:357 methods/updraftvault.php:359
1049
  #: methods/updraftvault.php:416
1050
  msgid "Get more quota"
1051
- msgstr ""
1052
 
1053
  #: methods/updraftvault.php:361 methods/updraftvault.php:416
1054
  msgid "Refresh current status"
1055
- msgstr ""
1056
 
1057
  #: addons/s3-enhanced.php:322
1058
  msgid "Allow download"
1059
- msgstr ""
1060
 
1061
  #: addons/s3-enhanced.php:324
1062
  msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
1063
- msgstr ""
1064
 
1065
  #: addons/s3-enhanced.php:326
1066
  msgid "Allow deletion"
1067
- msgstr ""
1068
 
1069
  #: addons/s3-enhanced.php:328
1070
  msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
1071
- msgstr ""
1072
 
1073
  #: backup.php:2884
1074
  msgid "The zip engine returned the message: %s."
1075
- msgstr ""
1076
 
1077
  #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:904
1078
  msgid "Delete failed:"
1079
- msgstr ""
1080
 
1081
  #: addons/migrator.php:1706 admin.php:533
1082
  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."
1083
- msgstr ""
1084
 
1085
  #: addons/migrator.php:1721
1086
  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."
1087
- msgstr ""
1088
 
1089
  #: admin.php:531
1090
  msgid "Creating..."
1091
- msgstr ""
1092
 
1093
  #: admin.php:534
1094
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1095
- msgstr ""
1096
 
1097
  #: admin.php:536
1098
  msgid "key name"
1099
- msgstr ""
1100
 
1101
  #: admin.php:537
1102
  msgid "Deleting..."
1103
- msgstr ""
1104
 
1105
  #: addons/migrator.php:1734 admin.php:540
1106
  msgid "Testing connection..."
1107
- msgstr ""
1108
 
1109
  #: admin.php:1257
1110
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1111
- msgstr ""
1112
 
1113
  #: admin.php:1257
1114
  msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1115
- msgstr ""
1116
 
1117
  #: admin.php:2977
1118
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
1119
- msgstr ""
1120
 
1121
  #: admin.php:4381
1122
  msgid "Backup sent to remote site - not available for download."
1123
- msgstr ""
1124
 
1125
  #: admin.php:4382
1126
  msgid "Site"
1127
- msgstr ""
1128
 
1129
  #: admin.php:4609
1130
  msgid "(backup set imported from remote location)"
1131
- msgstr ""
1132
 
1133
  #: methods/addon-base.php:177
1134
  msgid "This storage method does not allow downloading"
1135
- msgstr ""
1136
 
1137
  #: addons/reporting.php:142
1138
  msgid "Backup made by %s"
1139
- msgstr ""
1140
 
1141
  #: addons/migrator.php:187
1142
  msgid "This site has no backups to restore from yet."
1143
- msgstr ""
1144
 
1145
  #: addons/migrator.php:194
1146
  msgid "Restore an existing backup set onto this site"
1147
- msgstr ""
1148
 
1149
  #: addons/migrator.php:1663
1150
  msgid "Backup data will be sent to:"
1151
- msgstr ""
1152
 
1153
  #: addons/migrator.php:1678
1154
  msgid "site not found"
1155
- msgstr ""
1156
 
1157
  #: addons/migrator.php:1717
1158
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
1159
- msgstr ""
1160
 
1161
  #: addons/migrator.php:1752
1162
  msgid "Also send this backup to the active remote storage locations"
1163
- msgstr ""
1164
 
1165
  #: addons/migrator.php:1803
1166
  msgid "A key with this name already exists; you must use a unique name."
1167
- msgstr ""
1168
 
1169
  #: addons/migrator.php:1818 central/bootstrap.php:367
1170
  msgid "Key created successfully."
1171
- msgstr ""
1172
 
1173
  #: addons/migrator.php:1818 central/bootstrap.php:367
1174
  msgid "You must copy and paste this key now - it cannot be shown again."
1175
- msgstr ""
1176
 
1177
  #: addons/migrator.php:2136
1178
  msgid "Keys for this site are created in the section below the one you just pressed in."
1179
- msgstr ""
1180
 
1181
  #: addons/migrator.php:2136
1182
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1183
- msgstr ""
1184
 
1185
  #: addons/migrator.php:2153
1186
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1187
- msgstr ""
1188
 
1189
  #: addons/migrator.php:2174
1190
  msgid "Your new key:"
1191
- msgstr ""
1192
 
1193
  #: addons/migrator.php:2192
1194
  msgid "No keys to allow remote sites to connect have yet been created."
1195
- msgstr ""
1196
 
1197
  #: addons/migrator.php:2201
1198
  msgid "Existing keys"
1199
- msgstr ""
1200
 
1201
  #: methods/ftp.php:307
1202
  msgid "FTP server"
1203
- msgstr ""
1204
 
1205
  #: methods/ftp.php:311
1206
  msgid "FTP login"
1207
- msgstr ""
1208
 
1209
  #: methods/ftp.php:315
1210
  msgid "FTP password"
1211
- msgstr ""
1212
 
1213
  #: methods/ftp.php:319
1214
  msgid "Remote path"
1215
- msgstr ""
1216
 
1217
  #: methods/ftp.php:323
1218
  msgid "Passive mode"
1219
- msgstr ""
1220
 
1221
  #: methods/ftp.php:325
1222
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1223
- msgstr ""
1224
 
1225
  #: addons/migrator.php:1834
1226
  msgid "key"
1227
- msgstr ""
1228
 
1229
  #: addons/migrator.php:1844
1230
  msgid "The entered key was the wrong length - please try again."
1231
- msgstr ""
1232
 
1233
  #: addons/migrator.php:1846 addons/migrator.php:1848 addons/migrator.php:1852
1234
  msgid "The entered key was corrupt - please try again."
1235
- msgstr ""
1236
 
1237
  #: addons/migrator.php:1857
1238
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
1239
- msgstr ""
1240
 
1241
  #: addons/migrator.php:1873
1242
  msgid "The key was successfully added."
1243
- msgstr ""
1244
 
1245
  #: addons/migrator.php:1873
1246
  msgid "It is for sending backups to the following site: "
1247
- msgstr ""
1248
 
1249
  #: addons/migrator.php:1892
1250
  msgid "No receiving sites have yet been added."
1251
- msgstr ""
1252
 
1253
  #: addons/migrator.php:1894 admin.php:532
1254
  msgid "Send to site:"
1255
- msgstr ""
1256
 
1257
  #: addons/migrator.php:1900 admin.php:541
1258
  msgid "Send"
1259
- msgstr ""
1260
 
1261
  #: addons/migrator.php:2133
1262
  msgid "Or, send a backup to another site"
1263
- msgstr ""
1264
 
1265
  #: addons/migrator.php:2136
1266
  msgid "To add a site as a destination for sending to, enter that site's key below."
1267
- msgstr ""
1268
 
1269
  #: addons/migrator.php:2136
1270
  msgid "How do I get a site's key?"
1271
- msgstr ""
1272
 
1273
  #: addons/migrator.php:2141
1274
  msgid "Paste key here"
1275
- msgstr ""
1276
 
1277
  #: addons/migrator.php:2152
1278
  msgid "Or, receive a backup from a remote site"
1279
- msgstr ""
1280
 
1281
  #: admin.php:528
1282
  msgid "Adding..."
1283
- msgstr ""
1284
 
1285
  #: addons/migrator.php:2141 admin.php:529
1286
  msgid "Add site"
1287
- msgstr ""
1288
 
1289
  #: addons/migrator.php:167
1290
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1291
- msgstr ""
1292
 
1293
  #: addons/migrator.php:167
1294
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
1295
- msgstr ""
1296
 
1297
  #: restorer.php:1980
1298
  msgid "To use this backup, your database server needs to support the %s character set."
1299
- msgstr ""
1300
 
1301
  #: udaddons/options.php:338
1302
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1303
- msgstr ""
1304
 
1305
  #: udaddons/updraftplus-addons.php:741
1306
  msgid "Go here to re-enter your password."
1307
- msgstr ""
1308
 
1309
  #: udaddons/updraftplus-addons.php:742
1310
  msgid "If you have forgotten your password "
1311
- msgstr ""
1312
 
1313
  #: udaddons/updraftplus-addons.php:742
1314
  msgid "go here to change your password on updraftplus.com."
1315
- msgstr ""
1316
 
1317
  #: addons/migrator.php:194
1318
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
1319
- msgstr ""
1320
 
1321
  #: addons/migrator.php:223
1322
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
1323
- msgstr ""
1324
 
1325
  #: admin.php:520 admin.php:545
1326
  msgid "You have made changes to your settings, and not saved."
1327
- msgstr ""
1328
 
1329
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1330
  msgid "To remove the block, please go here."
1331
- msgstr ""
1332
 
1333
  #: methods/email.php:73
1334
  msgid "configure it here"
1335
- msgstr ""
1336
 
1337
  #: addons/onedrive.php:439
1338
  msgid "Please re-authorize the connection to your %s account."
1339
- msgstr ""
1340
 
1341
  #: addons/onedrive.php:554 addons/onedrive.php:698 addons/onedrive.php:702
1342
  msgid "OneDrive"
1343
- msgstr ""
1344
 
1345
  #: addons/onedrive.php:664 addons/onedrive.php:666
1346
  msgid "%s authorisation failed:"
1347
- msgstr ""
1348
 
1349
  #: addons/onedrive.php:682
1350
  msgid "Microsoft OneDrive is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
1351
- msgstr ""
1352
 
1353
  #: addons/onedrive.php:684
1354
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
1355
- msgstr ""
1356
 
1357
  #: addons/onedrive.php:690
1358
  msgid "Create OneDrive credentials in your OneDrive developer console."
1359
- msgstr ""
1360
 
1361
  #: addons/azure.php:500 addons/migrator.php:1721 addons/onedrive.php:690
1362
  msgid "For longer help, including screenshots, follow this link."
1363
- msgstr ""
1364
 
1365
  #: addons/onedrive.php:699
1366
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
1367
- msgstr ""
1368
 
1369
  #: addons/onedrive.php:710
1370
  msgid "N.B. %s is not case-sensitive."
1371
- msgstr ""
1372
 
1373
  #: addons/s3-enhanced.php:301
1374
  msgid "US West (N. California)"
1375
- msgstr ""
1376
 
1377
  #: addons/s3-enhanced.php:302
1378
  msgid "US Government West (restricted)"
1379
- msgstr ""
1380
 
1381
  #: addons/s3-enhanced.php:303
1382
  msgid "EU (Ireland)"
1383
- msgstr ""
1384
 
1385
  #: addons/s3-enhanced.php:304
1386
  msgid "EU (Frankfurt)"
1387
- msgstr ""
1388
 
1389
  #: addons/s3-enhanced.php:306
1390
  msgid "Asia Pacific (Singapore)"
1391
- msgstr ""
1392
 
1393
  #: addons/s3-enhanced.php:307
1394
  msgid "Asia Pacific (Sydney)"
1395
- msgstr ""
1396
 
1397
  #: addons/s3-enhanced.php:308
1398
  msgid "Asia Pacific (Tokyo)"
1399
- msgstr ""
1400
 
1401
  #: addons/s3-enhanced.php:309
1402
  msgid "South America (Sao Paulo)"
1403
- msgstr ""
1404
 
1405
  #: addons/s3-enhanced.php:310
1406
  msgid "China (Beijing) (restricted)"
1407
- msgstr ""
1408
 
1409
  #: addons/s3-enhanced.php:320
1410
  msgid "S3 bucket"
1411
- msgstr ""
1412
 
1413
  #: addons/s3-enhanced.php:416
1414
  msgid "You are now using a IAM user account to access your bucket."
1415
- msgstr ""
1416
 
1417
  #: addons/s3-enhanced.php:416
1418
  msgid "Do remember to save your settings."
1419
- msgstr ""
1420
 
1421
  #: restorer.php:2079
1422
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
1423
- msgstr ""
1424
 
1425
  #: admin.php:396
1426
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1427
- msgstr ""
1428
 
1429
  #: admin.php:398
1430
  msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1431
- msgstr ""
1432
 
1433
  #: methods/s3.php:743
1434
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1435
- msgstr ""
1436
 
1437
  #: addons/s3-enhanced.php:51
1438
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
1439
- msgstr ""
1440
 
1441
  #: addons/s3-enhanced.php:63
1442
  msgid "You need to enter an admin access key"
1443
- msgstr ""
1444
 
1445
  #: addons/s3-enhanced.php:66
1446
  msgid "You need to enter an admin secret key"
1447
- msgstr ""
1448
 
1449
  #: addons/s3-enhanced.php:69
1450
  msgid "You need to enter a new IAM username"
1451
- msgstr ""
1452
 
1453
  #: addons/s3-enhanced.php:72
1454
  msgid "You need to enter a bucket"
1455
- msgstr ""
1456
 
1457
  #: addons/s3-enhanced.php:97
1458
  msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
1459
- msgstr ""
1460
 
1461
  #: addons/s3-enhanced.php:104
1462
  msgid "AWS authentication failed"
1463
- msgstr ""
1464
 
1465
  #: addons/s3-enhanced.php:151
1466
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another AWS user may already have taken your name)."
1467
- msgstr ""
1468
 
1469
  #: addons/s3-enhanced.php:179
1470
  msgid "Conflict: that user already exists"
1471
- msgstr ""
1472
 
1473
  #: addons/s3-enhanced.php:181 addons/s3-enhanced.php:184
1474
  #: addons/s3-enhanced.php:188
1475
  msgid "IAM operation failed (%s)"
1476
- msgstr ""
1477
 
1478
  #: addons/s3-enhanced.php:201
1479
  msgid "Failed to create user Access Key"
1480
- msgstr ""
1481
 
1482
  #: addons/s3-enhanced.php:203 addons/s3-enhanced.php:207
1483
  msgid "Operation to create user Access Key failed"
1484
- msgstr ""
1485
 
1486
  #: addons/s3-enhanced.php:262 addons/s3-enhanced.php:264
1487
  msgid "Failed to apply User Policy"
1488
- msgstr ""
1489
 
1490
  #: addons/s3-enhanced.php:274
1491
  msgid "Access Key: %s"
1492
- msgstr ""
1493
 
1494
  #: addons/s3-enhanced.php:274
1495
  msgid "Secret Key: %s"
1496
- msgstr ""
1497
 
1498
  #: addons/s3-enhanced.php:357
1499
  msgid "Create new IAM user and S3 bucket"
1500
- msgstr ""
1501
 
1502
  #: addons/s3-enhanced.php:284
1503
  msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
1504
- msgstr ""
1505
 
1506
  #: addons/s3-enhanced.php:284
1507
  msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
1508
- msgstr ""
1509
 
1510
  #: addons/s3-enhanced.php:284
1511
  msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
1512
- msgstr ""
1513
 
1514
  #: addons/s3-enhanced.php:291
1515
  msgid "Admin access key"
1516
- msgstr ""
1517
 
1518
  #: addons/s3-enhanced.php:292
1519
  msgid "Admin secret key"
1520
- msgstr ""
1521
 
1522
  #: addons/s3-enhanced.php:293
1523
  msgid "New IAM username"
1524
- msgstr ""
1525
 
1526
  #: addons/s3-enhanced.php:295
1527
  msgid "S3 storage region"
1528
- msgstr ""
1529
 
1530
  #: addons/s3-enhanced.php:299
1531
  msgid "US Standard (default)"
1532
- msgstr ""
1533
 
1534
  #: addons/s3-enhanced.php:300
1535
  msgid "US West (Oregon)"
1536
- msgstr ""
1537
 
1538
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1539
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
1540
- msgstr ""
1541
 
1542
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1543
  msgid "It appears that your web server's IP Address (%s) is blocked."
1544
- msgstr ""
1545
 
1546
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1547
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1548
- msgstr ""
1549
 
1550
  #: addons/autobackup.php:662
1551
  msgid "Update cancelled - reload page to try again."
1552
- msgstr ""
1553
 
1554
  #: admin.php:389 admin.php:403
1555
  msgid "Dismiss (for %s months)"
1556
- msgstr ""
1557
 
1558
  #: admin.php:391
1559
  msgid "Thank you for backing up with UpdraftPlus!"
1560
- msgstr ""
1561
 
1562
  #: admin.php:396
1563
  msgid "Free Newsletter"
1564
- msgstr ""
1565
 
1566
  #: admin.php:396
1567
  msgid "Follow this link to sign up."
1568
- msgstr ""
1569
 
1570
  #: admin.php:398
1571
  msgid "UpdraftPlus Premium"
1572
- msgstr ""
1573
 
1574
  #: admin.php:398
1575
  msgid "Compare with the free version"
1576
- msgstr ""
1577
 
1578
  #: admin.php:398
1579
  msgid "Go to the shop."
1580
- msgstr ""
1581
 
1582
  #: admin.php:400
1583
  msgid "More Quality Plugins"
1584
- msgstr ""
1585
 
1586
  #: admin.php:400
1587
  msgid "Free two-factor security plugin"
1588
- msgstr ""
1589
 
1590
  #: admin.php:400
1591
  msgid "Premium WooCommerce plugins"
1592
- msgstr ""
1593
 
1594
  #: class-updraftplus.php:3389
1595
  msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1596
- msgstr ""
1597
 
1598
  #: admin.php:2160
1599
  msgid "Newsletter sign-up"
1600
- msgstr ""
1601
 
1602
  #: admin.php:2544
1603
  msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1604
- msgstr ""
1605
 
1606
  #: admin.php:2544
1607
  msgid "The first step is to de-install the free version."
1608
- msgstr ""
1609
 
1610
  #: admin.php:3628
1611
  msgid "No backup has been completed"
1612
- msgstr ""
1613
 
1614
  #: addons/fixtime.php:422
1615
  msgid "(at same time as files backup)"
1616
- msgstr ""
1617
 
1618
  #: admin.php:2589
1619
  msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1620
- msgstr ""
1621
 
1622
  #: admin.php:2594
1623
  msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1624
- msgstr ""
1625
 
1626
  #: admin.php:2609
1627
  msgid "Backup extra files and databases"
1628
- msgstr ""
1629
 
1630
  #: admin.php:2614
1631
  msgid "Migrate / clone (i.e. copy) websites"
1632
- msgstr ""
1633
 
1634
  #: admin.php:2619
1635
  msgid "Basic email reporting"
1636
- msgstr ""
1637
 
1638
  #: admin.php:2624
1639
  msgid "Advanced reporting features"
1640
- msgstr ""
1641
 
1642
  #: admin.php:2629
1643
  msgid "Automatic backup when updating WP/plugins/themes"
1644
- msgstr ""
1645
 
1646
  #: admin.php:2634
1647
  msgid "Send backups to multiple remote destinations"
1648
- msgstr ""
1649
 
1650
  #: admin.php:2639
1651
  msgid "Database encryption"
1652
- msgstr ""
1653
 
1654
  #: admin.php:2644
1655
  msgid "Restore backups from other plugins"
1656
- msgstr ""
1657
 
1658
  #: admin.php:2654
1659
  msgid "Scheduled backups"
1660
- msgstr ""
1661
 
1662
  #: admin.php:2659
1663
  msgid "Fix backup time"
1664
- msgstr ""
1665
 
1666
  #: admin.php:2664
1667
  msgid "Network/Multisite support"
1668
- msgstr ""
1669
 
1670
  #: admin.php:2669
1671
  msgid "Lock settings access"
1672
- msgstr ""
1673
 
1674
  #: admin.php:2674
1675
  msgid "Personal support"
1676
- msgstr ""
1677
 
1678
  #: admin.php:2544
1679
  msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1680
- msgstr ""
1681
 
1682
  #: admin.php:2546
1683
  msgid "Get UpdraftPlus Premium"
1684
- msgstr ""
1685
 
1686
  #: admin.php:2547
1687
  msgid "Full feature list"
1688
- msgstr ""
1689
 
1690
  #: admin.php:2548
1691
  msgid "Pre-sales FAQs"
1692
- msgstr ""
1693
 
1694
  #: admin.php:2549
1695
  msgid "Ask a pre-sales question"
1696
- msgstr ""
1697
 
1698
  #: admin.php:2561
1699
  msgid "Get it from"
1700
- msgstr ""
1701
 
1702
  #: admin.php:2565
1703
  msgid "Buy It Now!"
1704
- msgstr ""
1705
 
1706
  #: admin.php:2569
1707
  msgid "Backup WordPress files and database"
1708
- msgstr ""
1709
 
1710
  #: admin.php:2574
1711
  msgid "Translated into over %s languages"
1712
- msgstr ""
1713
 
1714
  #: admin.php:2579
1715
  msgid "Restore from backup"
1716
- msgstr ""
1717
 
1718
  #: admin.php:2584
1719
  msgid "Backup to remote storage"
1720
- msgstr ""
1721
 
1722
  #: admin.php:514
1723
  msgid "You did not select any components to restore. Please select at least one, and then try again."
1724
- msgstr ""
1725
 
1726
  #: admin.php:2891
1727
  msgctxt "Uploader: Drop backup files here - or - Select Files"
1728
  msgid "or"
1729
- msgstr ""
1730
 
1731
  #: admin.php:3868
1732
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1733
  msgid "or"
1734
- msgstr ""
1735
 
1736
  #: methods/s3.php:127 methods/s3.php:128 methods/s3.php:129
1737
  msgid "%s Error: Failed to initialise"
1738
- msgstr ""
1739
 
1740
  #: addons/autobackup.php:920
1741
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
1742
- msgstr ""
1743
 
1744
  #: restorer.php:1957
1745
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1746
  msgid "An error (%s) occurred:"
1747
- msgstr ""
1748
 
1749
  #: admin.php:3637
1750
  msgctxt "i.e. Non-automatic"
1751
  msgid "Manual"
1752
- msgstr ""
1753
 
1754
  #: admin.php:3920
1755
  msgid "Check this box to have a basic report sent to"
1756
- msgstr ""
1757
 
1758
  #: admin.php:3920
1759
  msgid "your site's admin address"
1760
- msgstr ""
1761
 
1762
  #: methods/openstack2.php:102
1763
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
1764
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1765
- msgstr ""
1766
 
1767
  #: methods/openstack2.php:152
1768
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1769
  msgid "tenant"
1770
- msgstr ""
1771
 
1772
  #: addons/sftp.php:340
1773
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1774
- msgstr ""
1775
 
1776
  #: addons/sftp.php:377
1777
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
1778
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
1779
- msgstr ""
1780
 
1781
  #: addons/morefiles.php:178
1782
  msgid "Any other file/directory on your server that you wish to back up"
1783
- msgstr ""
1784
 
1785
  #: addons/lockadmin.php:162
1786
  msgid "Change Lock Settings"
1787
- msgstr ""
1788
 
1789
  #: restorer.php:1163
1790
  msgid "Clearing cached pages (%s)..."
1791
- msgstr ""
1792
 
1793
  #: restorer.php:1963
1794
  msgid "Create table failed - probably because there is no permission to drop tables and the table already exists; will continue"
1795
- msgstr ""
1796
 
1797
  #: admin.php:2337
1798
  msgid "For even more features and personal support, check out "
1799
- msgstr ""
1800
 
1801
  #: udaddons/options.php:273
1802
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
1803
- msgstr ""
1804
 
1805
  #: addons/morefiles.php:67
1806
  msgid "(learn more about this significant option)"
1807
- msgstr ""
1808
 
1809
  #: addons/lockadmin.php:105
1810
  msgid "The admin password has now been removed."
1811
- msgstr ""
1812
 
1813
  #: addons/lockadmin.php:107
1814
  msgid "An admin password has been set."
1815
- msgstr ""
1816
 
1817
  #: addons/lockadmin.php:109
1818
  msgid "The admin password has been changed."
1819
- msgstr ""
1820
 
1821
  #: addons/lockadmin.php:111
1822
  msgid "Settings saved."
1823
- msgstr ""
1824
 
1825
  #: addons/lockadmin.php:131
1826
  msgid "Lock access to the UpdraftPlus settings page"
1827
- msgstr ""
1828
 
1829
  #: addons/lockadmin.php:133
1830
  msgid "Please make sure that you have made a note of the password!"
1831
- msgstr ""
1832
 
1833
  #: addons/lockadmin.php:144
1834
  msgid "1 hour"
1835
- msgstr ""
1836
 
1837
  #: addons/lockadmin.php:145 addons/lockadmin.php:146
1838
  msgid "%s hours"
1839
- msgstr ""
1840
 
1841
  #: addons/lockadmin.php:147
1842
  msgid "1 week"
1843
- msgstr ""
1844
 
1845
  #: addons/lockadmin.php:148 addons/lockadmin.php:149
1846
  msgid "%s weeks"
1847
- msgstr ""
1848
 
1849
  #: addons/lockadmin.php:157
1850
  msgid "Require password again after"
1851
- msgstr ""
1852
 
1853
  #: addons/lockadmin.php:159
1854
  msgid "Support URL"
1855
- msgstr ""
1856
 
1857
  #: addons/lockadmin.php:159
1858
  msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
1859
- msgstr ""
1860
 
1861
  #: addons/lockadmin.php:159
1862
  msgid "Otherwise, the default link will be shown."
1863
- msgstr ""
1864
 
1865
  #: addons/lockadmin.php:188 addons/lockadmin.php:194
1866
  msgid "Unlock"
1867
- msgstr ""
1868
 
1869
  #: addons/lockadmin.php:200
1870
  msgid "Password incorrect"
1871
- msgstr ""
1872
 
1873
  #: addons/lockadmin.php:203
1874
  msgid "To access the UpdraftPlus settings, please enter your unlock password"
1875
- msgstr ""
1876
 
1877
  #: addons/lockadmin.php:210
1878
  msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
1879
- msgstr ""
1880
 
1881
  #: addons/autobackup.php:85
1882
  msgid "WordPress core (only)"
1883
- msgstr ""
1884
 
1885
  #: addons/autobackup.php:120 addons/autobackup.php:885
1886
  #: addons/autobackup.php:893 admin.php:519
1887
  msgid "Automatic backup before update"
1888
- msgstr ""
1889
 
1890
  #: addons/moredatabase.php:45
1891
  msgid "Database decryption phrase"
1892
- msgstr ""
1893
 
1894
  #: backup.php:2886
1895
  msgid "A zip error occurred"
1896
- msgstr ""
1897
 
1898
  #: backup.php:2888
1899
  msgid "your web hosting account appears to be full; please see: %s"
1900
- msgstr ""
1901
 
1902
  #: backup.php:2890
1903
  msgid "check your log for more details."
1904
- msgstr ""
1905
 
1906
  #: admin.php:1842
1907
  msgid "Error: unexpected file read fail"
1908
- msgstr ""
1909
 
1910
  #: class-updraftplus.php:3565
1911
  msgid "Backup label:"
1912
- msgstr ""
1913
 
1914
  #: admin.php:748 admin.php:2427 central/updraftplus-commands.php:304
1915
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1916
- msgstr ""
1917
 
1918
  #: admin.php:2880
1919
  msgid "Upload files into UpdraftPlus."
1920
- msgstr ""
1921
 
1922
  #: admin.php:3112
1923
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1924
- msgstr ""
1925
 
1926
  #: admin.php:3598
1927
  msgid "incremental backup; base backup: %s"
1928
- msgstr ""
1929
 
1930
  #: admin.php:3702 admin.php:3741
1931
  msgid "and retain this many scheduled backups"
1932
- msgstr ""
1933
 
1934
  #: admin.php:4327
1935
  msgid "Backup date"
1936
- msgstr ""
1937
 
1938
  #: admin.php:4328
1939
  msgid "Backup data (click to download)"
1940
- msgstr ""
1941
 
1942
  #: admin.php:3220 admin.php:4632
1943
  msgid "View Log"
1944
- msgstr ""
1945
 
1946
  #: addons/copycom.php:535
1947
  msgid "API Key"
1948
- msgstr ""
1949
 
1950
  #: addons/copycom.php:540
1951
  msgid "API Secret"
1952
- msgstr ""
1953
 
1954
  #: addons/copycom.php:550
1955
  msgid "(case-sensitive)"
1956
- msgstr ""
1957
 
1958
  #: addons/copycom.php:551
1959
  msgid "N.B. Copy is case-sensitive."
1960
- msgstr ""
1961
 
1962
  #: addons/reporting.php:60
1963
  msgid "Your label for this backup (optional)"
1964
- msgstr ""
1965
 
1966
  #: addons/googlecloud.php:822 methods/googledrive.php:900
1967
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1968
- msgstr ""
1969
 
1970
  #: methods/updraftvault.php:512 udaddons/updraftplus-addons.php:642
1971
  msgid "You need to supply both an email address and a password"
1972
- msgstr ""
1973
 
1974
  #: methods/updraftvault.php:572 udaddons/updraftplus-addons.php:741
1975
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1976
- msgstr ""
1977
 
1978
  #: methods/updraftvault.php:575 udaddons/updraftplus-addons.php:745
1979
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
1980
- msgstr ""
1981
 
1982
  #: admin.php:2488
1983
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
1984
- msgstr ""
1985
 
1986
  #: class-updraftplus.php:3584
1987
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
1988
- msgstr ""
1989
 
1990
  #: class-updraftplus.php:3584
1991
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
1992
- msgstr ""
1993
 
1994
  #: addons/migrator.php:1036
1995
  msgid "already done"
1996
- msgstr ""
1997
 
1998
  #: addons/migrator.php:993 addons/migrator.php:1036 addons/migrator.php:1183
1999
  msgid "Search and replacing table:"
2000
- msgstr ""
2001
 
2002
  #: addons/migrator.php:993
2003
  msgid "skipped (not in list)"
2004
- msgstr ""
2005
 
2006
  #: addons/migrator.php:303
2007
  msgid "Rows per batch"
2008
- msgstr ""
2009
 
2010
  #: addons/migrator.php:304
2011
  msgid "These tables only"
2012
- msgstr ""
2013
 
2014
  #: addons/migrator.php:304
2015
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2016
- msgstr ""
2017
 
2018
  #: addons/copycom.php:514
2019
  msgid "To get your credentials, log in at the %s developer portal."
2020
- msgstr ""
2021
 
2022
  #: udaddons/options.php:102
2023
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2024
- msgstr ""
2025
 
2026
  #: udaddons/options.php:100 udaddons/options.php:102
2027
  msgid "You need to connect to receive future updates to UpdraftPlus."
2028
- msgstr ""
2029
 
2030
  #: class-updraftplus.php:3557
2031
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2032
- msgstr ""
2033
 
2034
  #: class-updraftplus.php:3557
2035
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2036
- msgstr ""
2037
 
2038
  #: class-updraftplus.php:3557
2039
  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."
2040
- msgstr ""
2041
 
2042
  #: class-updraftplus.php:3557
2043
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2044
- msgstr ""
2045
 
2046
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2047
  msgid "UpdraftPlus is on social media - check us out here:"
2048
- msgstr ""
2049
 
2050
  #: admin.php:2158 class-updraftplus.php:3380 class-updraftplus.php:3409
2051
  msgid "Twitter"
2052
- msgstr ""
2053
 
2054
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2055
  msgid "Facebook"
2056
- msgstr ""
2057
 
2058
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2059
  msgid "Google+"
2060
- msgstr ""
2061
 
2062
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2063
  msgid "LinkedIn"
2064
- msgstr ""
2065
 
2066
  #: admin.php:4693
2067
  msgid "Why am I seeing this?"
2068
- msgstr ""
2069
 
2070
  #: admin.php:2868
2071
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2072
- msgstr ""
2073
 
2074
  #: admin.php:2868
2075
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2076
- msgstr ""
2077
 
2078
  #: admin.php:1790 admin.php:1802
2079
  msgid "Start backup"
2080
- msgstr ""
2081
 
2082
  #: class-updraftplus.php:3529 restorer.php:926
2083
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2084
- msgstr ""
2085
 
2086
  #: admin.php:3542
2087
  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."
2088
- msgstr ""
2089
 
2090
  #: admin.php:3033
2091
  msgid "Unless you have a problem, you can completely ignore everything here."
2092
- msgstr ""
2093
 
2094
  #: admin.php:1964
2095
  msgid "You will find more information about this in the Settings section."
2096
- msgstr ""
2097
 
2098
  #: admin.php:1999
2099
  msgid "This file could not be uploaded"
2100
- msgstr ""
2101
 
2102
  #: addons/importer.php:70
2103
  msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
@@ -2190,7 +2190,7 @@ msgstr "czytaj więcej na %s"
2190
 
2191
  #: backup.php:894
2192
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2193
- msgstr ""
2194
 
2195
  #: methods/googledrive.php:906
2196
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
@@ -2711,7 +2711,7 @@ msgstr "(Czytaj dalej)"
2711
 
2712
  #: addons/s3-enhanced.php:37
2713
  msgid "Check this box to use Amazon's reduced redundancy storage and tariff"
2714
- msgstr ""
2715
 
2716
  #: addons/s3-enhanced.php:36
2717
  msgid "Reduced redundancy storage"
@@ -2780,7 +2780,7 @@ msgstr "Kopia zapasowa stworzona przez:"
2780
 
2781
  #: udaddons/options.php:482
2782
  msgid "Available to claim on this site"
2783
- msgstr ""
2784
 
2785
  #: udaddons/updraftplus-addons.php:229
2786
  msgid "To maintain your access to support, please renew."
@@ -2848,7 +2848,7 @@ msgstr "Nie udało się otworzyć pliku bazy danych do odczytu:"
2848
 
2849
  #: backup.php:1395
2850
  msgid "please wait for the rescheduled attempt"
2851
- msgstr ""
2852
 
2853
  #: backup.php:1397
2854
  msgid "No database tables found"
@@ -2892,7 +2892,7 @@ msgstr "Jeżeli nie wybierzesz przechowywania zdalnego, kopie zapasowe pozostan
2892
 
2893
  #: admin.php:2957
2894
  msgid "Retrieving (if necessary) and preparing backup files..."
2895
- msgstr ""
2896
 
2897
  #: admin.php:1253
2898
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
@@ -2904,7 +2904,7 @@ msgstr "Istnieją nieusunięte foldery z poprzedniego odtwarzania (proszę uży
2904
 
2905
  #: admin.php:757 class-updraftplus.php:563
2906
  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)"
2907
- msgstr ""
2908
 
2909
  #: addons/migrator.php:667
2910
  msgid "Replacing in blogs/site table: from: %s to: %s"
@@ -2916,7 +2916,7 @@ msgstr "Ta wtyczka została wyłączona: %s: włącz ją ręcznie jak będziesz
2916
 
2917
  #: addons/migrator.php:262
2918
  msgid "%s: Skipping cache file (does not already exist)"
2919
- msgstr ""
2920
 
2921
  #: addons/sftp.php:638 addons/sftp.php:641 includes/ftp.class.php:44
2922
  #: includes/ftp.class.php:47
@@ -2925,15 +2925,15 @@ msgstr "Upłynął limit czasu połączenia %s. Jeżeli dane serwera wprowadzono
2925
 
2926
  #: admin.php:5048
2927
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
2928
- msgstr ""
2929
 
2930
  #: admin.php:2235 admin.php:2245
2931
  msgid "Restore failed..."
2932
- msgstr ""
2933
 
2934
  #: addons/moredatabase.php:125 admin.php:1502
2935
  msgid "Messages:"
2936
- msgstr ""
2937
 
2938
  #: restorer.php:1879
2939
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
@@ -2945,23 +2945,23 @@ msgstr "Katalog nie istnieje"
2945
 
2946
  #: addons/cloudfiles-enhanced.php:248
2947
  msgid "New User's Username"
2948
- msgstr ""
2949
 
2950
  #: addons/cloudfiles-enhanced.php:249
2951
  msgid "New User's Email Address"
2952
- msgstr ""
2953
 
2954
  #: addons/cloudfiles-enhanced.php:226
2955
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
2956
- msgstr ""
2957
 
2958
  #: addons/cloudfiles-enhanced.php:232
2959
  msgid "US or UK Rackspace Account"
2960
- msgstr ""
2961
 
2962
  #: addons/cloudfiles-enhanced.php:246
2963
  msgid "Admin Username"
2964
- msgstr ""
2965
 
2966
  #: addons/cloudfiles-enhanced.php:247
2967
  msgid "Admin API Key"
@@ -2973,7 +2973,7 @@ msgstr "Powinieneś podać nową nazwę użytkownika"
2973
 
2974
  #: addons/cloudfiles-enhanced.php:59
2975
  msgid "You need to enter a container"
2976
- msgstr ""
2977
 
2978
  #: addons/cloudfiles-enhanced.php:64
2979
  msgid "You need to enter a valid new email address"
@@ -2981,81 +2981,81 @@ msgstr "Powinieneś podać poprawny nowy adres email"
2981
 
2982
  #: addons/cloudfiles-enhanced.php:153
2983
  msgid "Conflict: that user or email address already exists"
2984
- msgstr ""
2985
 
2986
  #: addons/cloudfiles-enhanced.php:155 addons/cloudfiles-enhanced.php:159
2987
  #: addons/cloudfiles-enhanced.php:164 addons/cloudfiles-enhanced.php:185
2988
  #: addons/cloudfiles-enhanced.php:193 addons/cloudfiles-enhanced.php:198
2989
  msgid "Cloud Files operation failed (%s)"
2990
- msgstr ""
2991
 
2992
  #: addons/cloudfiles-enhanced.php:210 addons/s3-enhanced.php:274
2993
  msgid "Username: %s"
2994
- msgstr ""
2995
 
2996
  #: addons/cloudfiles-enhanced.php:210
2997
  msgid "Password: %s"
2998
- msgstr ""
2999
 
3000
  #: addons/cloudfiles-enhanced.php:210
3001
  msgid "API Key: %s"
3002
- msgstr ""
3003
 
3004
  #: addons/cloudfiles-enhanced.php:223
3005
  msgid "Create new API user and container"
3006
- msgstr ""
3007
 
3008
  #: addons/cloudfiles-enhanced.php:26
3009
  msgid "Rackspace Cloud Files, enhanced"
3010
- msgstr ""
3011
 
3012
  #: addons/cloudfiles-enhanced.php:27
3013
  msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
3014
- msgstr ""
3015
 
3016
  #: addons/cloudfiles-enhanced.php:38
3017
  msgid "Create a new API user with access to only this container (rather than your whole account)"
3018
- msgstr ""
3019
 
3020
  #: addons/cloudfiles-enhanced.php:47
3021
  msgid "You need to enter an admin username"
3022
- msgstr ""
3023
 
3024
  #: addons/cloudfiles-enhanced.php:51
3025
  msgid "You need to enter an admin API key"
3026
- msgstr ""
3027
 
3028
  #: addons/cloudfiles-enhanced.php:258 methods/cloudfiles-new.php:103
3029
  msgid "Northern Virginia (IAD)"
3030
- msgstr ""
3031
 
3032
  #: addons/cloudfiles-enhanced.php:259 methods/cloudfiles-new.php:104
3033
  msgid "Hong Kong (HKG)"
3034
- msgstr ""
3035
 
3036
  #: methods/cloudfiles-new.php:105
3037
  msgid "London (LON)"
3038
- msgstr ""
3039
 
3040
  #: methods/cloudfiles-new.php:119
3041
  msgid "Cloud Files Username"
3042
- msgstr ""
3043
 
3044
  #: methods/cloudfiles-new.php:122
3045
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3046
- msgstr ""
3047
 
3048
  #: methods/cloudfiles-new.php:127
3049
  msgid "Cloud Files API Key"
3050
- msgstr ""
3051
 
3052
  #: addons/cloudfiles-enhanced.php:270 methods/cloudfiles-new.php:132
3053
  msgid "Cloud Files Container"
3054
- msgstr ""
3055
 
3056
  #: methods/cloudfiles-new.php:85
3057
  msgid "US or UK-based Rackspace Account"
3058
- msgstr ""
3059
 
3060
  #: methods/cloudfiles-new.php:87
3061
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
@@ -3063,46 +3063,46 @@ msgstr "Konta utworzone na rackspacecloud.com są amerykańskie, konta utworzone
3063
 
3064
  #: addons/cloudfiles-enhanced.php:251 methods/cloudfiles-new.php:95
3065
  msgid "Cloud Files Storage Region"
3066
- msgstr ""
3067
 
3068
  #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:100
3069
  msgid "Dallas (DFW) (default)"
3070
- msgstr ""
3071
 
3072
  #: addons/cloudfiles-enhanced.php:256 methods/cloudfiles-new.php:101
3073
  msgid "Sydney (SYD)"
3074
- msgstr ""
3075
 
3076
  #: addons/cloudfiles-enhanced.php:257 methods/cloudfiles-new.php:102
3077
  msgid "Chicago (ORD)"
3078
- msgstr ""
3079
 
3080
  #: addons/cloudfiles-enhanced.php:150 addons/s3-enhanced.php:177
3081
  #: methods/cloudfiles-new.php:39 methods/openstack-base.php:347
3082
  #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
  #: methods/openstack2.php:25
3084
  msgid "Authorisation failed (check your credentials)"
3085
- msgstr ""
3086
 
3087
  #: addons/cloudfiles-enhanced.php:233 methods/cloudfiles-new.php:85
3088
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
- msgstr ""
3090
 
3091
  #: methods/updraftvault.php:492 udaddons/options.php:265
3092
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
- msgstr ""
3094
 
3095
  #: admin.php:513 central/bootstrap.php:448
3096
  msgid "Create"
3097
- msgstr ""
3098
 
3099
  #: admin.php:475
3100
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
- msgstr ""
3102
 
3103
  #: admin.php:476
3104
  msgid "Trying..."
3105
- msgstr ""
3106
 
3107
  #: class-updraftplus.php:1249
3108
  msgid "(when decrypted)"
@@ -3110,27 +3110,27 @@ msgstr "(gdy odszyfrowane)"
3110
 
3111
  #: admin.php:486 admin.php:4990
3112
  msgid "Error data:"
3113
- msgstr ""
3114
 
3115
  #: admin.php:4664
3116
  msgid "Backup does not exist in the backup history"
3117
- msgstr ""
3118
 
3119
  #: admin.php:3164
3120
  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."
3121
- msgstr ""
3122
 
3123
  #: restorer.php:1585
3124
  msgid "Split line to avoid exceeding maximum packet size"
3125
- msgstr ""
3126
 
3127
  #: restorer.php:1466
3128
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
3129
- msgstr ""
3130
 
3131
  #: restorer.php:1510
3132
  msgid "<strong>Backup of:</strong> %s"
3133
- msgstr ""
3134
 
3135
  #: restorer.php:1297
3136
  msgid "New table prefix: %s"
@@ -3138,7 +3138,7 @@ msgstr "Nowy prefiks tabeli: %s"
3138
 
3139
  #: restorer.php:956 restorer.php:970
3140
  msgid "%s: This directory already exists, and will be replaced"
3141
- msgstr ""
3142
 
3143
  #: restorer.php:986
3144
  msgid "File permissions do not allow the old data to be moved and retained; instead, it will be deleted."
@@ -3146,7 +3146,7 @@ msgstr "Uprawnienia plików nie pozwalają na przesuwanie i zachowanie danych; z
3146
 
3147
  #: restorer.php:103
3148
  msgid "Could not move the files into place. Check your file permissions."
3149
- msgstr ""
3150
 
3151
  #: restorer.php:96
3152
  msgid "Moving old data out of the way..."
@@ -3154,11 +3154,11 @@ msgstr "Usuwanie starych danych..."
3154
 
3155
  #: restorer.php:100
3156
  msgid "Could not move old files out of the way."
3157
- msgstr ""
3158
 
3159
  #: restorer.php:102
3160
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
- msgstr ""
3162
 
3163
  #: addons/reporting.php:369
3164
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
@@ -3166,15 +3166,15 @@ msgstr "Wprowadź tutaj adresy, na które ma zostać wysłany raport po zakończ
3166
 
3167
  #: addons/reporting.php:383
3168
  msgid "Add another address..."
3169
- msgstr ""
3170
 
3171
  #: addons/reporting.php:276
3172
  msgid " (with errors (%s))"
3173
- msgstr ""
3174
 
3175
  #: addons/reporting.php:278
3176
  msgid " (with warnings (%s))"
3177
- msgstr ""
3178
 
3179
  #: addons/reporting.php:308
3180
  msgid "Use the \"Reporting\" section to configure the email addresses to be used."
@@ -3182,7 +3182,7 @@ msgstr "Skorzystaj z sekcji \"Raportowanie\" aby skonfigurować adres e-mail."
3182
 
3183
  #: class-updraftplus.php:1218 class-updraftplus.php:1220
3184
  msgid "files: %s"
3185
- msgstr ""
3186
 
3187
  #: class-updraftplus.php:1245 class-updraftplus.php:1250
3188
  msgid "%s checksum: %s"
@@ -3194,7 +3194,7 @@ msgstr "Raporty email"
3194
 
3195
  #: addons/reporting.php:164
3196
  msgid "Errors"
3197
- msgstr ""
3198
 
3199
  #: addons/reporting.php:179
3200
  msgid "Warnings"
@@ -3202,7 +3202,7 @@ msgstr "Ostrzeżenia"
3202
 
3203
  #: addons/reporting.php:188
3204
  msgid "Time taken:"
3205
- msgstr ""
3206
 
3207
  #: addons/reporting.php:189 admin.php:4277
3208
  msgid "Uploaded to:"
@@ -3210,7 +3210,7 @@ msgstr "Wysłane do:"
3210
 
3211
  #: addons/reporting.php:224
3212
  msgid "Debugging information"
3213
- msgstr ""
3214
 
3215
  #: addons/reporting.php:122
3216
  msgid "%d errors, %d warnings"
@@ -3230,7 +3230,7 @@ msgstr "Wykonywanie kopii zapasowej rozpoczęło się:"
3230
 
3231
  #: addons/morefiles.php:55 addons/morefiles.php:56 addons/reporting.php:150
3232
  msgid "Contains:"
3233
- msgstr ""
3234
 
3235
  #: addons/reporting.php:161
3236
  msgid "Errors / warnings:"
@@ -3238,16 +3238,16 @@ msgstr "Błędy / ostrzeżenia:"
3238
 
3239
  #: addons/copycom.php:377 addons/onedrive.php:492 methods/dropbox.php:506
3240
  msgid "%s authentication"
3241
- msgstr ""
3242
 
3243
  #: addons/copycom.php:377 addons/onedrive.php:492 class-updraftplus.php:304
3244
  #: methods/dropbox.php:506 methods/dropbox.php:520 methods/dropbox.php:615
3245
  msgid "%s error: %s"
3246
- msgstr ""
3247
 
3248
  #: addons/googlecloud.php:815 methods/dropbox.php:426
3249
  msgid "%s logo"
3250
- msgstr ""
3251
 
3252
  #: methods/email.php:73
3253
  msgid "Your site's admin email address (%s) will be used."
@@ -3268,7 +3268,7 @@ msgstr "Oczekiwana odpowiedź nie została zwrócona przz %s - sprawdź plik dzi
3268
  #: admin.php:522 methods/updraftvault.php:255 methods/updraftvault.php:300
3269
  #: udaddons/options.php:244
3270
  msgid "Connect"
3271
- msgstr ""
3272
 
3273
  #: admin.php:3922
3274
  msgid "For more reporting features, use the Reporting add-on."
@@ -3276,27 +3276,27 @@ msgstr "Więcej opcji do raportowania dostępnych jest w dodatku \"Raportowanie\
3276
 
3277
  #: class-updraftplus.php:3517
3278
  msgid "(version: %s)"
3279
- msgstr ""
3280
 
3281
  #: addons/reporting.php:416 admin.php:466
3282
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
- msgstr ""
3284
 
3285
  #: addons/reporting.php:416 admin.php:465
3286
  msgid "When the Email storage method is enabled, also send the entire backup"
3287
- msgstr ""
3288
 
3289
  #: backup.php:843
3290
  msgid "Unknown/unexpected error - please raise a support request"
3291
- msgstr ""
3292
 
3293
  #: addons/reporting.php:221 backup.php:879
3294
  msgid "The log file has been attached to this email."
3295
- msgstr ""
3296
 
3297
  #: backup.php:885
3298
  msgid "Backed up: %s"
3299
- msgstr ""
3300
 
3301
  #: backup.php:921
3302
  msgid "Backup contains:"
@@ -3304,7 +3304,7 @@ msgstr "Kopia zapasowa zawiera:"
3304
 
3305
  #: addons/reporting.php:148 backup.php:922
3306
  msgid "Latest status:"
3307
- msgstr ""
3308
 
3309
  #: admin.php:155 backup.php:835
3310
  msgid "Files and database"
@@ -3320,7 +3320,7 @@ msgstr "Tylko pliki (baza danych nie została włączona do tego harmonogramu)"
3320
 
3321
  #: backup.php:840
3322
  msgid "Database (files backup has not completed)"
3323
- msgstr ""
3324
 
3325
  #: backup.php:840
3326
  msgid "Database only (files were not part of this particular schedule)"
@@ -3336,15 +3336,15 @@ msgstr "Instalacje WordPress typu \"multisite\" są wspierane przez UpdrafPlus P
3336
 
3337
  #: options.php:185
3338
  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>."
3339
- msgstr ""
3340
 
3341
  #: options.php:185
3342
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
- msgstr ""
3344
 
3345
  #: options.php:185
3346
  msgid "UpdraftPlus warning:"
3347
- msgstr ""
3348
 
3349
  #: udaddons/options.php:488
3350
  msgid "(or connect using the form on this page if you have already purchased it)"
@@ -3698,7 +3698,7 @@ msgstr "Nieznany"
3698
 
3699
  #: admin.php:3361
3700
  msgid "next resumption: %d (after %ss)"
3701
- msgstr "następne uruchomienie: %d (po %s)"
3702
 
3703
  #: admin.php:3362
3704
  msgid "last activity: %ss ago"
@@ -4783,11 +4783,11 @@ msgstr "%s Błąd: nie udało się pobrać %s. Sprawdź swoje uprawnienia i poś
4783
 
4784
  #: methods/s3.php:507 methods/s3.php:580 methods/s3.php:666
4785
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4786
- msgstr "%s Błąd: brak dostępu do pojemnika %s. Sprawdź swoje uprawnienia i poświadczenia. "
4787
 
4788
  #: methods/s3.php:725
4789
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
4790
- msgstr "Zdobądź klucz dostępu i tajny klucz <a href=\"%s\">z Twojej %s konsoli</a>, następnie (wyjątkowy - wszyscy %s użytkownicy) nazwę pojemnika (litery i cyfry) (i opcjonalnie ścieżkę) aby używać do przechowywania. Ten pojemnik zostanie utworzony dla Ciebie, jeśli już nie istnieje. "
4791
 
4792
  #: methods/s3.php:727
4793
  msgid "If you see errors about SSL certificates, then please go here for help."
@@ -4807,7 +4807,7 @@ msgstr "%s lokalizacja"
4807
 
4808
  #: methods/s3.php:757
4809
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4810
- msgstr "Wprowadź tylko nazwę pojemnika lub pojemnika i ścieżki. Przykłady: mójpojemnik, mójpojemnik/mojaścieżka. "
4811
 
4812
  #: methods/s3.php:801
4813
  msgid "API secret"
@@ -4815,7 +4815,7 @@ msgstr "API poufne"
4815
 
4816
  #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:823
4817
  msgid "Failure: No bucket details were given."
4818
- msgstr "Awaria: brak podanych danych pojemnika."
4819
 
4820
  #: addons/s3-enhanced.php:125 methods/openstack2.php:113 methods/s3.php:843
4821
  msgid "Region"
@@ -4823,7 +4823,7 @@ msgstr "Region"
4823
 
4824
  #: methods/s3.php:874
4825
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
4826
- msgstr "Niepowodzenie: nie mogliśmy uzyskać dostępu lub stworzyć takiego pojemnika. Prosimy o sprawdzenie poświadczeń dostępu, a jeśli te są poprawne, to spróbuj innej nazwy pojemnika (jako inny %s użytkownik może już podjąć swoje imię). "
4827
 
4828
  #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4829
  #: methods/s3.php:897
@@ -4833,11 +4833,11 @@ msgstr "Niepowodzenie"
4833
  #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4834
  #: methods/s3.php:897
4835
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4836
- msgstr "Z powodzeniem obejrzano pojemnik, ale próba utworzenia w nich pliku zakończyła się niepowodzeniem."
4837
 
4838
  #: addons/googlecloud.php:689 methods/s3.php:887
4839
  msgid "We accessed the bucket, and were able to create files within it."
4840
- msgstr "Mamy dostęp do pojemnika i byliśmy w stanie tworzyć w nim pliki."
4841
 
4842
  #: methods/s3.php:890
4843
  msgid "The communication with %s was encrypted."
@@ -4965,7 +4965,7 @@ msgstr "%s ponowny błąd (%s): (zobacz plik dziennika, by uzyskać więcej info
4965
 
4966
  #: methods/s3.php:411
4967
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
4968
- msgstr "%s Błąd: nie udało się utworzyć pojemnika %s. Sprawdź swoje uprawnienia i poświadczenia. "
4969
 
4970
  #: addons/googlecloud.php:826 methods/googledrive.php:904
4971
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-05-01 08:06:19+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
14
  msgid "FAQs"
15
+ msgstr "FAQ"
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
19
+ msgstr "Nie ma dostępnych dzienników zmian."
20
 
21
  #: udaddons/plugin-updates/plugin-update-checker.php:648
22
  msgid "Check for updates"
23
+ msgstr "Sprawdź uaktualnienia"
24
 
25
  #: udaddons/plugin-updates/plugin-update-checker.php:692
26
  msgid "This plugin is up to date."
27
+ msgstr "Wtyczka jest aktualna."
28
 
29
  #: udaddons/plugin-updates/plugin-update-checker.php:694
30
  msgid "A new version of this plugin is available."
31
+ msgstr "Dostępna jest nowa wersja wtyczki."
32
 
33
  #: udaddons/plugin-updates/plugin-update-checker.php:696
34
  msgid "Unknown update checker status \"%s\""
35
+ msgstr "Nieznany status sprawdzania \"%s\""
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
+ msgstr "%s: nieczytelny plik - nie można wykonać jego kopii zapasowej (sprawdź prawa zapisu do pliku oraz właściciela pliku)"
40
 
41
  #: backup.php:1987
42
  msgid "Failed to open directory (check the file permissions and ownership): %s"
43
+ msgstr "Nie można otworzyć katalogu (sprawdź prawa zapisu do pliku oraz właściciela pliku): %s"
44
 
45
  #: central/bootstrap.php:419
46
  msgid "Public key was sent to:"
47
+ msgstr "Klucz publiczny został wysłany do:"
48
 
49
  #: central/bootstrap.php:424
50
  msgid "Key size: %d bits"
51
+ msgstr "Rozmiar klucza: %d bity(ów)"
52
 
53
  #: central/bootstrap.php:439
54
  msgid "Dashboard at"
55
+ msgstr "Zaplecze na"
56
 
57
  #: central/bootstrap.php:439
58
  msgid "Use the alternative method for making a connection with the dashboard."
59
+ msgstr "Użyj alternatywnej metody nawiązywania połączenia z zapleczem."
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
+ msgstr "Więcej informacji..."
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
+ msgstr "Jest to przydatne, jeśli zaplecze serwera WWW nie można kontaktować ruchu przychodzącego od tej strony (na przykład, gdy strona jest umieszczona w ogólne dostępnym internecie, jednakże zaplecze UpdraftCentral umieszczone jest na maszynie lokalnej [localhost], lub w intranecie, lub jeśli strona posiada zaporę ruchu wychodzącego) lub jeśli zaplecze strony deski nie posiada certyfikatu SSL."
68
 
69
  #: addons/migrator.php:2158
70
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
71
+ msgstr "Utwórz klucz: nadaj unikatową nazwę (np.: nazwa dla jakiej jest strony), następnie naciśnij \"Utwórz klucz\":"
72
 
73
  #: addons/migrator.php:2159
74
  msgid "Enter your chosen name"
75
+ msgstr "Wybierz wybraną przez ciebie nazwę"
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
79
+ msgstr "Rozmiar klucza szyfrującego:"
80
 
81
  #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
+ msgstr "%s bity"
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
+ msgstr "łatwe do złamania, szybsze"
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
+ msgstr "szybsze (prawdopodobieństwo do spowolnienia instancji PHP)"
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
+ msgstr "%s bajtów"
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
+ msgstr "zalecane"
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
+ msgstr "wolniejsze, mocniejsze"
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
109
+ msgstr "Utwórz klucz"
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
113
+ msgstr "np: masz już tam konto"
114
 
115
  #: central/bootstrap.php:439
116
  msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
+ msgstr "Inne (proszę określić np.: strona na której zainstalowałeś zaplecze UpdraftCentral)"
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
+ msgstr "Rozmiar: %s MB"
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
+ msgstr "To archiwum kopii zapasowej jest wielkości %s MB - próba wysłania go poprzez e-mail prawdopodobnie się nie uda (tylko kilka serwerów poczty elektronicznej pozwala na załączniki tej wielkości). Jeśli tak, należy przełączyć się na inną metodę zdalnego przechowywania."
126
 
127
  #: methods/email.php:77
128
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
+ msgstr "Należy pamiętać, że serwery pocztowe mają tendencję ograniczenia rozmiaru plików; zazwyczaj wokół %s MB; Kopie zapasowe większe niż jakiekolwiek limity nie zostaną dostarczone."
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
+ msgstr "login"
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
+ msgstr "Czasami jest to spowodowane przez zaporę sieciową - spróbuj wyłączyć SSL w ustawieniach dla eskpertów i spróbuj ponownie."
138
 
139
  #: methods/googledrive.php:417
140
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
+ msgstr "Oczekiwane niepowidzenie wysyłania: %s limit dla pojedynczego pliku jest %s, podcas gdy plik jest %s GB (%d bajty)"
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
+ msgstr "Teraz"
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
149
+ msgstr "Darmowe 1GB dla UpdraftPlus Vault"
150
 
151
  #: admin.php:3959
152
  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)."
153
+ msgstr "UpdraftPlus podzieli archiwa kopii zapasowej, gdy przekroczy tę wielkość pliku. Domyślna wartość to %s megabajtów. Należy uważać, aby pozostawić pewien margines, jeśli serwer internetowy ma stały limit (na przykład 2 GB / 2048 MB limitu na niektórych serwerach 32-bit / systemach plików)."
154
 
155
  #: class-updraftplus.php:3529 restorer.php:926
156
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
157
+ msgstr "Powinieneś włączyć %s aby umożliwić tworzenie ładnych odnośników (np.: %s)."
158
 
159
  #: admin.php:3770
160
  msgid "(tap on an icon to select or unselect)"
161
+ msgstr "(kliknij na ikonę w celu wybrania lub odznaczenia)"
162
 
163
  #: backup.php:833 class-updraftplus.php:2411
164
  msgid "The backup was aborted by the user"
165
+ msgstr "Kopia zapasowa została anulowana przez użytkownika"
166
 
167
  #: central/bootstrap.php:50
168
  msgid "UpdraftCentral Connection"
169
+ msgstr "Połączenie UpdraftCentral"
170
 
171
  #: central/bootstrap.php:53
172
  msgid "An UpdraftCentral connection has been made successfully."
173
+ msgstr "Połączenie z UpdraftCentral zostało nawiązane z powodzeniem."
174
 
175
  #: central/bootstrap.php:55
176
  msgid "A new UpdraftCentral connection has not been made."
177
+ msgstr "Nowe połączenie z UpdraftCentral nie zostało wykonane."
178
 
179
  #: central/bootstrap.php:58
180
  msgid "The key referred to was unknown."
181
+ msgstr "Nieznany klucz o którym mowa."
182
 
183
  #: central/bootstrap.php:64
184
  msgid "You are not logged into this WordPress site in your web browser."
185
+ msgstr "Nie jesteś zalogowany na twojej stronie WordPress w twojej przeglądarce."
186
 
187
  #: central/bootstrap.php:64
188
  msgid "You must visit this URL in the same browser and login session as you created the key in."
189
+ msgstr "Musisz odwiedzić ten adres URL w tej samej przeglądarce i zalogowanej sesji jak utworzony klucz."
190
 
191
  #: central/bootstrap.php:71
192
  msgid "You must visit this link in the same browser and login session as you created the key in."
193
+ msgstr "Musisz odwiedzić ten odnośnik w tej samej przeglądarce i zalogowanej sesji jak utworzony klucz."
194
 
195
  #: central/bootstrap.php:75
196
  msgid "This connection appears to already have been made."
197
+ msgstr "To połączenie wygląda na już ustanowione."
198
 
199
  #: central/bootstrap.php:83
200
  msgid "Close..."
201
+ msgstr "Zamknij..."
202
 
203
  #: central/bootstrap.php:196
204
  msgid "An invalid URL was entered"
205
+ msgstr "Wpisano nieprawidłowy adres URL"
206
 
207
  #: central/bootstrap.php:313 central/bootstrap.php:324
208
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
209
+ msgstr "Klucz został utworzony, jednakże próba zarejestrowania go z %s zakończyła się niepowodzeniem - spróbuj ponownie później."
210
 
211
  #: central/bootstrap.php:381
212
  msgid "Key description"
213
+ msgstr "Opis klucza"
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
+ msgstr "Szczegóły"
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
221
+ msgstr "Żadne klucze nie zostały utworzone."
222
 
223
  #: central/bootstrap.php:419
224
  msgid "Access this site as user:"
225
+ msgstr "Dostęp do tej witryny jako użytkownik"
226
 
227
  #: central/bootstrap.php:422
228
  msgid "Created:"
229
+ msgstr "Utworzone: "
230
 
231
  #: central/bootstrap.php:429
232
  msgid "Delete..."
233
+ msgstr "Usuń..."
234
 
235
  #: central/bootstrap.php:435
236
  msgid "Create new key"
237
+ msgstr "Utwórz nowy klucz"
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
+ msgstr "Opis"
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
245
+ msgstr "Wprowadź dowolny opis"
246
 
247
  #: central/bootstrap.php:439
248
  msgid "URL of mothership"
249
+ msgstr "Nadrzędny adres URL"
250
 
251
  #: central/bootstrap.php:452
252
  msgid "View recent UpdraftCentral log events"
253
+ msgstr "Wyświetl ostatnie zdarzenia dziennika UpdraftCentral"
254
 
255
  #: central/bootstrap.php:452
256
  msgid "fetch..."
257
+ msgstr "pobierz..."
258
 
259
  #: central/bootstrap.php:463
260
  msgid "UpdraftCentral (Remote Control)"
261
+ msgstr "UpdraftCentral (Dostęp zdalny)"
262
 
263
  #: class-updraftplus.php:356 class-updraftplus.php:401
264
  msgid "The given file was not found, or could not be read."
265
+ msgstr "Podany plik nie został znaleziony lub nie można go odczytać."
266
 
267
  #: methods/updraftvault.php:214
268
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
269
+ msgstr "Nie zostało znalezione połączenie połączenia Vault dla tej strony (zostało przeniesione?); należy odłączyć i ponownie podłączyć."
270
 
271
  #: methods/updraftvault.php:269 methods/updraftvault.php:275
272
  #: methods/updraftvault.php:281
273
  msgid "or (annual discount)"
274
+ msgstr "lub (roczna zniżka)"
275
 
276
  #: methods/updraftvault.php:270 methods/updraftvault.php:276
277
  #: methods/updraftvault.php:282
278
  msgid "%s per year"
279
+ msgstr "%s za rok"
280
 
281
  #: addons/copycom.php:60 addons/copycom.php:526
282
  msgid "Barracuda are closing down Copy.Com on May 1st, 2016. See:"
283
+ msgstr "Barracuda zamyka usługę Copy.Com 1-ego Maja 2016. Zobacz:"
284
 
285
  #: addons/s3-enhanced.php:305
286
  msgid "Asia Pacific (Seoul)"
287
+ msgstr "Azja Pacyfik (Seul)"
288
 
289
  #: admin.php:477
290
  msgid "Fetching..."
291
+ msgstr "Pobieranie..."
292
 
293
  #: admin.php:485
294
  msgid "Error: the server sent us a response which we did not understand."
295
+ msgstr "Błąd: serwer wysłał nam odpowiedź, która nie rozumiemy."
296
 
297
  #: admin.php:521
298
  msgid "Saving..."
299
+ msgstr "Zapisuję..."
300
 
301
  #: admin.php:538
302
  msgid "Please enter a valid URL"
303
+ msgstr "Proszę wprowadzić prawidłowy adres URL"
304
 
305
  #: admin.php:539
306
  msgid "We requested to delete the file, but could not understand the server's response"
307
+ msgstr "Poprosiliśmy, aby usunąć plik, ale nie mogliśmy zrozumieć odpowiedź z serwera"
308
 
309
  #: admin.php:545
310
  msgid "You should save your changes to ensure that they are used for making your backup."
311
+ msgstr "Należy zapisać zmiany, aby upewnić się, że są one wykorzystane przy tworzeniu kopii zapasowej"
312
 
313
  #: admin.php:2599
314
  msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
315
+ msgstr "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
316
 
317
  #: admin.php:2863
318
  msgid "calculate"
319
+ msgstr "oblicz"
320
 
321
  #: admin.php:2934
322
  msgid "this backup set"
323
+ msgstr "ustawienia tej kopii"
324
 
325
  #: admin.php:2937
326
  msgid "these backup sets"
327
+ msgstr "ustawienia tych kopii"
328
 
329
  #: admin.php:3103
330
  msgid "reset"
331
+ msgstr "reset"
332
 
333
  #: admin.php:3149 admin.php:3153
334
  msgid "Wipe settings"
335
+ msgstr "Usuń ustawienia"
336
 
337
  #: admin.php:3220
338
  msgid "The backup has finished running"
339
+ msgstr "Kopia zapasowa zakończyła działanie"
340
 
341
  #: admin.php:3382
342
  msgid "stop"
343
+ msgstr "stop"
344
 
345
  #: admin.php:4294
346
  msgid "Total backup size:"
347
+ msgstr "Łączny rozmiar kopii zapasowej"
348
 
349
  #: admin.php:5212
350
  msgid "Your settings have been saved."
351
+ msgstr "Twoje ustawienia zostały zapisane."
352
 
353
  #: addons/onedrive.php:50
354
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
355
+ msgstr "Wymagany moduł PHP %s nie jest zainstalowany - poroś swoją firmę hostingową o jego włączenie."
356
 
357
  #: backup.php:386
358
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
359
+ msgstr "Nieoczekiwany błąd: klasa '%s' nie została znaleziona (twoja instalacja UpdraftPlus wydaje się uszkodzona - spróbuj przeinstalować"
360
 
361
  #: restorer.php:1533
362
  msgid "Uploads URL:"
363
+ msgstr "Adres URL wysyłania: "
364
 
365
  #: addons/multisite.php:374 addons/multisite.php:384
366
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
367
+ msgstr "Przywróć stronę z identyfikatorem id=%s: usówanie innych danych (jeżeli istnieją) z nieskompresowanej kopii zapasowej"
368
 
369
  #: addons/multisite.php:525
370
  msgid "Which site to restore"
371
+ msgstr "Którą stronę przywrócić"
372
 
373
  #: addons/multisite.php:528
374
  msgid "All sites"
375
+ msgstr "Wszystkie strony"
376
 
377
  #: addons/multisite.php:533
378
  msgid "may include some site-wide data"
379
+ msgstr "może zawierać dane dla całego serwisu"
380
 
381
  #: addons/multisite.php:542
382
  msgid "N.B. this option only affects the restoration of the database and uploads - other file entities (such as plugins) in WordPress are shared by the whole network."
383
+ msgstr "Np.: ta opcja tylko wpływa na przywracanie bazy danych oraz folderu wysyłania (uploads) - inne wpisy plików (takie jak wtyczki) są dzielone w obrębie całej sieci."
384
 
385
  #: addons/multisite.php:542
386
  msgid "Read more..."
387
+ msgstr "Czytaj więcej..."
388
 
389
  #: admin.php:556
390
  msgid "Please fill in the required information."
391
+ msgstr "Proszę wypełnić wymagane informacje."
392
 
393
  #: admin.php:2727
394
  msgid "Dismiss"
395
+ msgstr "Odwołaj"
396
 
397
  #: class-updraftplus.php:3576
398
  msgid "It will be imported as a new site."
399
+ msgstr "Będzie zimportowane jako nowa strona."
400
 
401
  #: class-updraftplus.php:3576
402
  msgid "Please read this link for important information on this process."
403
+ msgstr "Proszę przeczytać ten odnośnik do ważnych informacji na temat tego procesu."
404
 
405
  #: class-updraftplus.php:3580 restorer.php:1553
406
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
407
+ msgstr "Aby zaimportować zwykłą stronę WordPress w wielu miejscach wymagana instalacji %s."
408
 
409
  #: restorer.php:1894
410
  msgid "Skipping table %s: this table will not be restored"
411
+ msgstr "Pomijanie tabeli %s: tabela nie zostanie przywrócona"
412
 
413
  #: addons/migrator.php:352 addons/migrator.php:355 addons/migrator.php:358
414
  msgid "You selected %s to be included in the restoration - this cannot / should not be done when importing a single site into a network."
415
+ msgstr "Wybrałeś %s aby był uwzględniony w trakcie przywracania - ta metoda nie może / nie powinna być wykonywana importu pojedynczej strony do sieci witryn."
416
 
417
  #: addons/migrator.php:352
418
  msgid "WordPress core"
419
+ msgstr "Baza Wordpress"
420
 
421
  #: addons/migrator.php:355
422
  msgid "other content from wp-content"
423
+ msgstr "inna zawartość z wp-content"
424
 
425
  #: addons/migrator.php:364 addons/migrator.php:366
426
  msgid "Importing a single site into a multisite install"
427
+ msgstr "Importowanie pojedyńczej strony do sieci witryn"
428
 
429
  #: addons/migrator.php:366
430
  msgid "This feature is not compatible with %s"
431
+ msgstr "Ta opcja nie jest kompatybilna z %s"
432
 
433
  #: addons/migrator.php:386 addons/migrator.php:388
434
  msgid "You must use lower-case letters or numbers for the site path, only."
435
+ msgstr "Musisz użyć tylko małych liter lub cyfr do ścieżki strony."
436
 
437
  #: addons/migrator.php:396
438
  msgid "Attribute imported content to user"
439
+ msgstr "Przypisz zimportowaną zawartość do użytkownika"
440
 
441
  #: addons/migrator.php:434
442
  msgid "Required information for restoring this backup was not given (%s)"
443
+ msgstr "Wymagana informacja do przywrócenia tej kopii zapasowej nie została przekazana (%s)"
444
 
445
  #: addons/migrator.php:491 addons/migrator.php:492
446
  msgid "Error when creating new site at your chosen address:"
447
+ msgstr "Błąd podczas tworzenia nowej strony pod wybranym adresem:"
448
 
449
  #: addons/migrator.php:517
450
  msgid "<strong>ERROR</strong>: problem creating site entry."
451
+ msgstr "<strong>BŁĄD</strong>: problem z utworzeniem wpisu strony."
452
 
453
  #: admin.php:3101
454
  msgid "Call WordPress action:"
455
+ msgstr "Wykonaj czynność WordPress:"
456
 
457
  #: admin.php:2751
458
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
459
+ msgstr "Zapisane ustawienia wpływają na to, co jest kopiowane do kopii zapasowej - np.: wykluczenie plików."
460
 
461
  #: admin.php:354 admin.php:2395
462
  msgid "Advanced Tools"
463
+ msgstr "Narzędzia zaawansowane"
464
 
465
  #: admin.php:362
466
  msgid "Extensions"
467
+ msgstr "Rozszerzenia"
468
 
469
  #: admin.php:471
470
  msgid "You have chosen to backup files, but no file entities have been selected"
471
+ msgstr "Wybrałeś tworzenie kopii zapasowych plików, ale żadne podmioty nie zostały wybrane"
472
 
473
  #: admin.php:544
474
  msgctxt "(verb)"
475
  msgid "Download"
476
+ msgstr "Pobierz"
477
 
478
  #: admin.php:2192 admin.php:2201
479
  msgid "Sufficient information about the in-progress restoration operation could not be found."
480
+ msgstr "Nie można było znaleźć wystarczających informacji o operacji przywracania w toku."
481
 
482
  #: admin.php:2396
483
  msgid "Premium / Extensions"
484
+ msgstr "Premium / Rozszerzenia"
485
 
486
  #: admin.php:2521
487
  msgid "Backup Contents And Schedule"
488
+ msgstr "Zawartość kopii zapasowej i harmonogram"
489
 
490
  #: admin.php:2718
491
  msgid "%s minutes, %s seconds"
492
+ msgstr "%s minut, %s sekund"
493
 
494
  #: admin.php:2720
495
  msgid "Unfinished restoration"
496
+ msgstr "Nieskończone przywracanie"
497
 
498
  #: admin.php:2721
499
  msgid "You have an unfinished restoration operation, begun %s ago."
500
+ msgstr "Posiadasz nieskończoną operację przywracania, zaczętą %s temu."
501
 
502
  #: admin.php:2726
503
  msgid "Continue restoration"
504
+ msgstr "Kontynuuj przywracanie"
505
 
506
  #: admin.php:2747
507
  msgid "Include the database in the backup"
508
+ msgstr "Uwzględniaj bazę danych w kopii zapasowej"
509
 
510
  #: admin.php:2749
511
  msgid "Include any files in the backup"
512
+ msgstr "Uwzględniaj dowolne pliki w kopii zapasowej"
513
 
514
  #: admin.php:5111
515
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
516
+ msgstr "Kopia zapasowanie nie zostanie wysłana do żadnego magazynu zdalnego - żaden nie został zapisany w %s"
517
 
518
  #: admin.php:5111
519
  msgid "settings"
520
+ msgstr "ustawienia"
521
 
522
  #: admin.php:5111
523
  msgid "Not got any remote storage?"
524
+ msgstr "Nie posiadasz żadnego magazynu zdalnego?"
525
 
526
  #: admin.php:5111
527
  msgid "Check out UpdraftPlus Vault."
528
+ msgstr "Sprawdź UpdraftPlus Vault."
529
 
530
  #: admin.php:5113
531
  msgid "Send this backup to remote storage"
532
+ msgstr "Wyślij tą kopię zapasową do magazynu zdalnego"
533
 
534
  #: admin.php:3150
535
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
536
+ msgstr "Ten przycisk usunie wszystkie ustawienia UpdraftPlus oraz wszelkie informacje o trwających kopiach (jednakże żadne kopie zapasowe znajdujące się na magazynach zdalnych)"
537
 
538
  #: admin.php:3150
539
  msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
540
+ msgstr "Będziesz musiał wprowadzić twoje ustawienia ponownie. Możesz to zrobić również przed wyłączeniem/odinstalowaniem UpdraftPlus jeżeli chcesz."
541
 
542
  #: admin.php:3682
543
  msgid "Files backup schedule"
544
+ msgstr "Harmonogram kopii zapasowej plików"
545
 
546
  #: admin.php:3715
547
  msgid "Incremental file backup schedule"
548
+ msgstr "Przyrostowy harmonogram kopii zapasowej plików"
549
 
550
  #: admin.php:3725
551
  msgid "Database backup schedule"
552
+ msgstr "Harmonogram kopii zapasowej bazy danych"
553
 
554
  #: admin.php:3760
555
  msgid "Sending Your Backup To Remote Storage"
556
+ msgstr "Wysyłanie kopii zapasowej do magazynu zdalnego"
557
 
558
  #: admin.php:3819
559
  msgid "File Options"
560
+ msgstr "Opcje plików"
561
 
562
  #: admin.php:4849
563
  msgid "Skipping: this archive was already restored."
564
+ msgstr "Pomijanie: To archiwum zostało już przywrócone."
565
 
566
  #: addons/googlecloud.php:860
567
  msgid "You must use a bucket name that is unique, for all %s users."
568
+ msgstr "Musisz użyć unikalnej nazwy zasobu, dla wszystkich %s użytkowników."
569
 
570
  #: addons/googlecloud.php:875 addons/googlecloud.php:890
571
  msgid "This setting applies only when a new bucket is being created."
572
+ msgstr "Te ustawienia znajdują zastosowanie tylko gdy nowy zasób jest utworzony."
573
 
574
  #: addons/googlecloud.php:875
575
  msgid "Note that Google do not support every storage class in every location - you should read their documentation to learn about current availability."
576
+ msgstr "Należy pamiętać, że Google nie obsługuje przestrzeni do przechowywania a każdej z dostępnych lokalizacji - należy przeczytać dokumentację, aby dowiedzieć się o aktualnej dostępności."
577
 
578
  #: addons/googlecloud.php:880
579
  msgid "Bucket location"
580
+ msgstr "Lokalizacja zasobu"
581
 
582
  #: addons/googlecloud.php:45
583
  msgid " Eastern United States"
584
+ msgstr "Wschodnie Stany Zjednoczone"
585
 
586
  #: addons/googlecloud.php:47 addons/googlecloud.php:48
587
  msgid "Eastern United States"
588
+ msgstr "Wschodnie Stany Zjednoczone"
589
 
590
  #: addons/googlecloud.php:49
591
  msgid "Western United States"
592
+ msgstr "Zachodnie Stany Zjednoczone"
593
 
594
  #: addons/googlecloud.php:50
595
  msgid "Eastern Asia-Pacific"
596
+ msgstr "Wschodnia Azja-Pacyfik"
597
 
598
  #: addons/googlecloud.php:51
599
  msgid "Western Europe"
600
+ msgstr "Zachodnia Europa"
601
 
602
  #: addons/googlecloud.php:268
603
  msgid "You do not have access to this bucket"
604
+ msgstr "Nie masz dostępu do tego zasobu"
605
 
606
  #: addons/googlecloud.php:816
607
  msgid "Do not confuse %s with %s - they are separate things."
608
+ msgstr "Nie pomyl %s z %s - to są różne rzeczy."
609
 
610
  #: addons/azure.php:516
611
  msgid "If the %s does not already exist, then it will be created."
612
+ msgstr "Jeżeli %s jeszcze nie istnieje, zostanie utworzone."
613
 
614
  #: addons/azure.php:516
615
  msgid "See Microsoft's guidelines on container naming by following this link."
616
+ msgstr "Zobacz wytyczne Microsoft odnośnie nazewnictwa kontenerów za pomocą tego linku."
617
 
618
  #: addons/azure.php:521
619
  msgid "Prefix"
620
+ msgstr "Przedrostek"
621
 
622
  #: addons/azure.php:521
623
  msgid "optional"
624
+ msgstr "opcjonalne"
625
 
626
  #: addons/azure.php:522
627
  msgid "You can enter the path of any %s virtual folder you wish to use here."
628
+ msgstr "Możesz wprowadzić ścieżkę dostępu do %s wirtualnego folderu do użytku tutaj."
629
 
630
  #: addons/azure.php:522
631
  msgid "container"
632
+ msgstr "kontener"
633
 
634
  #: addons/googlecloud.php:35
635
  msgid "Standard"
636
+ msgstr "Standard"
637
 
638
  #: addons/googlecloud.php:36
639
  msgid "Durable reduced availability"
640
+ msgstr "Trwałe zmniejszenie dostępności"
641
 
642
  #: addons/googlecloud.php:37
643
  msgid "Nearline"
644
+ msgstr "Nearline"
645
 
646
  #: addons/googlecloud.php:41
647
  msgid "United States"
648
+ msgstr "Stany Zjednoczone"
649
 
650
  #: addons/googlecloud.php:41 addons/googlecloud.php:42
651
  #: addons/googlecloud.php:43
652
  msgid "multi-region location"
653
+ msgstr "Lokalizacja multi-regionalna"
654
 
655
  #: addons/googlecloud.php:42
656
  msgid "Asia Pacific"
657
+ msgstr "Azja Pacyfik"
658
 
659
  #: addons/googlecloud.php:43
660
  msgid "European Union"
661
+ msgstr "Unia Europejska"
662
 
663
  #: addons/googlecloud.php:44 addons/googlecloud.php:46
664
  msgid "Central United States"
665
+ msgstr "Centralne Stany Zjednoczone"
666
 
667
  #: addons/azure.php:342
668
  msgid "Could not access container"
669
+ msgstr "Nie można uzuskać dostępu do kontenera"
670
 
671
  #: addons/azure.php:448
672
  msgid "Could not create the container"
673
+ msgstr "Nie można utworzyć kontenera"
674
 
675
  #: addons/azure.php:500
676
  msgid "Create Azure credentials in your Azure developer console."
677
+ msgstr "Utwórz poświadczenia Azure poświadczeń w konsoli programisty Azure."
678
 
679
  #: addons/azure.php:504 addons/azure.php:508
680
  msgid "Azure"
681
+ msgstr "Azure"
682
 
683
  #: addons/azure.php:504
684
  msgid "Account Name"
685
+ msgstr "Nazwa konta"
686
 
687
  #: addons/azure.php:505
688
  msgid "This is not your Azure login - see the instructions if needing more guidance."
689
+ msgstr "To nie jest twój login Azure - przeczytaj instrukcje jeżeli potrzebujesz więcej wskazówek."
690
 
691
  #: addons/azure.php:516
692
  msgid "Enter the path of the %s you wish to use here."
693
+ msgstr "Wprowadź ścieżkę do %s którą chcesz użyć tutaj."
694
 
695
  #: class-updraftplus.php:2428
696
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
702
 
703
  #: addons/googlecloud.php:743
704
  msgid "You must enter a project ID in order to be able to create a new bucket."
705
+ msgstr "Musisz wprowadzić ID projektu w celu utworzenia nowego zasobu."
706
 
707
  #: addons/googlecloud.php:828
708
  msgid "Follow this link to your Google API Console, and there activate the Storage API and create a Client ID in the API Access section."
714
 
715
  #: addons/googlecloud.php:855
716
  msgid "N.B. This is only needed if you have not already created the bucket, and you wish UpdraftPlus to create it for you."
717
+ msgstr "Np.: To jest potrzebne tylko wtedy gdy nie utworzyłeś jeszcze zasobu a chcesz aby UpdraftPlus utworzył go za ciebie."
718
 
719
  #: addons/googlecloud.php:855
720
  msgid "Otherwise, you can leave it blank."
722
 
723
  #: addons/googlecloud.php:859
724
  msgid "Bucket"
725
+ msgstr "Zasób"
726
 
727
  #: addons/googlecloud.php:860
728
  msgid "Enter the name of the %s bucket you wish to use here."
729
+ msgstr "Wprowadź nazwę %s zasobu, którą chcesz użyć"
730
 
731
  #: addons/googlecloud.php:860
732
  msgid "Bucket names have to be globally unique. If the bucket does not already exist, then it will be created."
733
+ msgstr "Nazwa zasobu musi być unikalna globalnie. Jeżeli zasób jeszcze nie istnieje, wówczas zostanie stworzony."
734
 
735
  #: addons/googlecloud.php:860
736
  msgid "See Google's guidelines on bucket naming by following this link."
737
+ msgstr "Zobacz wytyczne Google odnośnie nazewnictwa zasobów za pomocą tego linku."
738
 
739
  #: addons/googlecloud.php:865
740
  msgid "Storage class"
741
+ msgstr "Klasa składowania"
742
 
743
  #: admin.php:3076
744
  msgid "Not installed"
806
 
807
  #: admin.php:551
808
  msgid "hour(s)"
809
+ msgstr "godzin(a/y)"
810
 
811
  #: admin.php:552
812
  msgid "week(s)"
813
+ msgstr "Tydzień(tygodni)"
814
 
815
  #: admin.php:553
816
  msgid "For backups older than"
826
 
827
  #: admin.php:2869
828
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
829
+ msgstr "Naciśnij tutaj aby zobaczyć wewnątrz twojej zdalnej metody składowania w celu znalezienia obecnych zestawów kopii (fla dowolnej strony, jeżeli są one przechowywane w tym samym folderze)"
830
 
831
  #: admin.php:2920
832
  msgid "Actions upon selected backups"
833
+ msgstr "Działania \"przed\" wybranymi kopiami"
834
 
835
  #: admin.php:2922
836
  msgid "Select all"
837
+ msgstr "Zaznacz wszystko"
838
 
839
  #: admin.php:2923
840
  msgid "Deselect"
841
+ msgstr "Odznacz"
842
 
843
  #: admin.php:2934 admin.php:2937
844
  msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
845
+ msgstr "Czy jesteś pewien że chcesz usunąć %s z UpdraftPlus?"
846
 
847
  #: admin.php:3754
848
  msgid "or to configure more complex schedules"
849
+ msgstr "lub aby skonfigurować bardziej zaawansowane harmonogramy"
850
 
851
  #: restorer.php:707
852
  msgid "Deferring..."
853
+ msgstr "Odraczanie..."
854
 
855
  #: updraftplus.php:147
856
  msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
857
+ msgstr "Nie masz całkowicie zainstalowanego UpdraftPlus - proszę odinstalować i zainstalować go ponownie. Najprawdopodobniej nastąpiło uszkodzenie w WordPress podczas kopiowania plików wtyczek."
858
 
859
  #: addons/morestorage.php:26
860
  msgid "(as many as you like)"
861
+ msgstr "(tak dużo jak chcesz)"
862
 
863
  #: addons/fixtime.php:281 addons/fixtime.php:286
864
  msgid "Add an additional retention rule..."
865
+ msgstr "Dodaj dodatkową regułę retencji..."
866
 
867
  #: methods/updraftvault.php:563
868
  msgid "You do not currently have any UpdraftPlus Vault quota"
869
+ msgstr "Aktualnie nie masz żadnego udziału UpdraftPlud Vault"
870
 
871
  #: restorer.php:1978
872
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
873
+ msgstr "Ten problem jest spowodowany przez próbę odtworzenia bazy danych w bardzo starej wersji MySQL, która jest niezgodna z bazą źródłową."
874
 
875
  #: restorer.php:1978
876
  msgid "This database needs to be deployed on MySQL version %s or later."
877
+ msgstr "Ta baza danych musi być wdrożona w wersji MySQL %s lub późniejszej."
878
 
879
  #: admin.php:2324
880
  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."
881
+ msgstr "Katalog UpdraftPlus w wp-content/plugins ma \"white-space\" w nim; WordPress tego nie lubi. Należy zmienić nazwę katalogu do wp-content/plugins/updraftplus, aby rozwiązać ten problem."
882
 
883
  #: admin.php:2649
884
  msgid "No advertising links on UpdraftPlus settings page"
885
+ msgstr "Brak linków reklamowych na stronie ustawień UpdraftPlus"
886
 
887
  #: class-updraftplus.php:3613
888
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
889
+ msgstr "Kopia zapasowa bazy danych używa funkcji MySQL niedostępnj w starej wersji MySQL (%s), którą ta strona jest zasilany."
890
 
891
  #: class-updraftplus.php:3613
892
  msgid "You must upgrade MySQL to be able to use this database."
893
+ msgstr "Musisz zaktualizować MySQL w celu używania niniejszej bazy danych."
894
 
895
  #: methods/updraftvault.php:303
896
  msgid "Don't know your email address, or forgotten your password?"
897
+ msgstr "Nie pamiętasz swojego adresu e-mail lub zapomniałeś hasła?"
898
 
899
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
900
  msgid "Read the FAQs here."
901
+ msgstr "Przeczytaj FAQ tutaj."
902
 
903
  #: methods/updraftvault.php:296
904
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
905
+ msgstr "Wprowadź adres email / hasło UpdraftPlus.com tutaj aby połączyć się:"
906
 
907
  #: addons/s3-enhanced.php:40
908
  msgid "Server-side encryption"
909
+ msgstr "Szyfrowanie po stronie serwera"
910
 
911
  #: addons/s3-enhanced.php:41
912
  msgid "Check this box to use Amazon's server-side encryption"
913
+ msgstr "Zaznacz to pole wyboru, aby użyć szyfrowania Amazon po stronie serwera"
914
 
915
  #: methods/updraftvault.php:572
916
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
917
+ msgstr "Jeśli nie pamiętasz hasła, przejdź tutaj, aby zmienić hasło na updraftplus.com."
918
 
919
  #: admin.php:804
920
  msgid "%s has been chosen for remote storage, but you are not currently connected."
921
+ msgstr "%s został wybrany jako zdalny magazyn, jednakże nie jesteś aktualnie połączony."
922
 
923
  #: admin.php:804
924
  msgid "Go to the remote storage settings in order to connect."
925
+ msgstr "Przejdź do ustawień zdalnego przechowywania w celu połączenia."
926
 
927
  #: methods/updraftvault.php:285
928
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
929
+ msgstr "Płatności mogą być dokonywane w dolarach amerykańskich, euro lub funtach GB poprzez karty lub PayPal."
930
 
931
  #: admin.php:523
932
  msgid "Connecting..."
933
+ msgstr "Łączenie..."
934
 
935
  #: admin.php:525
936
  msgid "Disconnecting..."
937
+ msgstr "Rozłączanie..."
938
 
939
  #: admin.php:526
940
  msgid "Counting..."
941
+ msgstr "Zliczanie..."
942
 
943
  #: admin.php:527
944
  msgid "Update quota count"
945
+ msgstr "Zajmowana przestrzeń"
946
 
947
  #: methods/updraftvault.php:48 methods/updraftvault.php:71
948
  msgid "Updraft Vault"
949
+ msgstr "Updraft Vault"
950
 
951
  #: methods/updraftvault.php:205
952
  msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
953
+ msgstr "Twój zakup UpdraftPlus Premium dokonany był ponad rok temu. Musisz go odnowić natychmiast, aby uniknąć utraty 12 miesięcy bezpłatnego limitu pamięci, który otrzymujesz jako obecny klient UpdraftPlus Premium."
954
 
955
  #: methods/updraftvault.php:208
956
  msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
957
+ msgstr "Masz abonament UpdraftPlus Vault z przeterminowanym terminem płatności. Jesteś w okresie kilku dni karencji, zanim zostanie on zawieszone i stracisz dostęp do danych przechowywanych w nim. Proszę odnawiać jak najszybciej!"
958
 
959
  #: methods/updraftvault.php:211
960
  msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
961
+ msgstr "Posiadasz wygasły abonament UpdraftPlus Vault, który nie został odnowiony. W ciągu kilku dni, twoje przechowywane dane zostaną trwale usunięte. Jeśli nie chcesz aby tak się stało, odnów abonament tak szybko jak to możliwe."
962
 
963
  #: methods/updraftvault.php:247 methods/updraftvault.php:264
964
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
965
+ msgstr "UpdraftPlus Vault oferuje przestrzeń, która jest <strong>niezawodna, prosta w obsłudze oraz przystępna cenowo</strong>."
966
 
967
  #: methods/updraftvault.php:247 methods/updraftvault.php:264
968
  msgid "Press a button to get started."
969
+ msgstr "Naciśnij przycisk aby rozpocząć"
970
 
971
  #: methods/updraftvault.php:250
972
  msgid "First time user?"
973
+ msgstr "Początkujący użytkownik?"
974
 
975
  #: methods/updraftvault.php:251
976
  msgid "Show the options"
977
+ msgstr "Pokaż opcje"
978
 
979
  #: methods/updraftvault.php:254
980
  msgid "Already purchased space?"
981
+ msgstr "Już zakupione miejsce?"
982
 
983
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
984
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
985
+ msgstr "UpdraftPlus Vault bacuje na najlepszych światowych centrach danych Amazona, z niezawodnością na poziomie 99.999999999%."
986
 
987
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
988
  msgid "Read more about it here."
989
+ msgstr "Przeczytaj więcej na ten temat tutaj."
990
 
991
  #: methods/updraftvault.php:268 methods/updraftvault.php:274
992
  #: methods/updraftvault.php:280
993
  msgid "%s per quarter"
994
+ msgstr "%s na kwartał"
995
 
996
  #: methods/updraftvault.php:285
997
  msgid "Subscriptions can be cancelled at any time."
998
+ msgstr "Abonament może być anulowany w dowolnym momencie."
999
 
1000
  #: methods/updraftvault.php:291 methods/updraftvault.php:306
1001
  msgid "Back..."
1002
+ msgstr "Wstecz..."
1003
 
1004
  #: methods/updraftvault.php:298
1005
  msgid "E-mail"
1006
+ msgstr "E-mail"
1007
 
1008
  #: methods/updraftvault.php:303
1009
  msgid "Go here for help"
1010
+ msgstr "Uzyskaj pomoc tutaj"
1011
 
1012
  #: methods/updraftvault.php:327
1013
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1014
+ msgstr "<strong>Nie jesteś połączony</strong> do UpdraftPlus Vault."
1015
 
1016
  #: methods/updraftvault.php:331
1017
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1018
+ msgstr "Ta strona jest <strong>połączona</strong> do UpdraftPlus Vault."
1019
 
1020
  #: methods/updraftvault.php:331
1021
  msgid "Well done - there's nothing more needed to set up."
1022
+ msgstr "Dobra robota - nie ma nic więcej do ustawienia."
1023
 
1024
  #: methods/updraftvault.php:331
1025
  msgid "Vault owner"
1026
+ msgstr "Właściciel skarpca (Vault)"
1027
 
1028
  #: methods/updraftvault.php:333
1029
  msgid "Quota:"
1030
+ msgstr "Dostępna przestrzeń:"
1031
 
1032
  #: admin.php:524 methods/updraftvault.php:341
1033
  msgid "Disconnect"
1034
+ msgstr "Rozłącz"
1035
 
1036
  #: methods/updraftvault.php:349
1037
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1038
+ msgstr "%s Błąd: masz niewystarczającą dostępną przestrzeń na dysku (%s) aby wysłać archiwum (%s)."
1039
 
1040
  #: methods/updraftvault.php:349
1041
  msgid "You can get more quota here"
1042
+ msgstr "Możesz uzyskać więcej miejsca tutaj"
1043
 
1044
  #: methods/updraftvault.php:354 methods/updraftvault.php:397
1045
  msgid "Current use:"
1046
+ msgstr "Aktualne użycie:"
1047
 
1048
  #: methods/updraftvault.php:357 methods/updraftvault.php:359
1049
  #: methods/updraftvault.php:416
1050
  msgid "Get more quota"
1051
+ msgstr "Uzyskaj więcej miejsca"
1052
 
1053
  #: methods/updraftvault.php:361 methods/updraftvault.php:416
1054
  msgid "Refresh current status"
1055
+ msgstr "Odśwież aktualny stan"
1056
 
1057
  #: addons/s3-enhanced.php:322
1058
  msgid "Allow download"
1059
+ msgstr "Zezwalaj na pobieranie"
1060
 
1061
  #: addons/s3-enhanced.php:324
1062
  msgid "Without this permission, you cannot directly download or restore using UpdraftPlus, and will instead need to visit the AWS website."
1063
+ msgstr "Bez tego pozwolenia, nie możesz bezpośrednio pobrać lub przywróciż używając UpdraftPlus i zamiast tego będziesz musiał odwiedzić stronę AWS."
1064
 
1065
  #: addons/s3-enhanced.php:326
1066
  msgid "Allow deletion"
1067
+ msgstr "Zezwalaj na usuwania"
1068
 
1069
  #: addons/s3-enhanced.php:328
1070
  msgid "Without this permission, UpdraftPlus cannot delete backups - you should also set your 'retain' settings very high to prevent seeing deletion errors."
1071
+ msgstr "Bez tej zgody, UpdraftPlus nie może usuwać kopii zapasowych - należy również skonfigurować ustawienie \"utrzymać\" jako bardzo wysokie, aby zapobiec wyświetlaniu błędów usunięcia."
1072
 
1073
  #: backup.php:2884
1074
  msgid "The zip engine returned the message: %s."
1075
+ msgstr "Silnik ZIP zwrócił wiadomość: %s."
1076
 
1077
  #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:904
1078
  msgid "Delete failed:"
1079
+ msgstr "Usunięcie zakończone niepowodzeniem:"
1080
 
1081
  #: addons/migrator.php:1706 admin.php:533
1082
  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."
1083
+ msgstr "Należy sprawdzić, czy zdalna strona jest dostępna online, nie blokowana, nie posiada modułów bezpieczeństwa, które mogą blokować dostęp, posiada UpdraftPlus w wersji %s lub późniejszej i że klucze zostały wpisane poprawnie."
1084
 
1085
  #: addons/migrator.php:1721
1086
  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."
1087
+ msgstr "Jeśli wysyłane bezpośrednie ze strony do strony nie działa dla Ciebie, to istnieją trzy inne metody - spróbuj jedną z nich."
1088
 
1089
  #: admin.php:531
1090
  msgid "Creating..."
1091
+ msgstr "Tworzenie..."
1092
 
1093
  #: admin.php:534
1094
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1095
+ msgstr "Proszę podać nazwę temu kluczowi (np: wskazuje do jakiej strony):"
1096
 
1097
  #: admin.php:536
1098
  msgid "key name"
1099
+ msgstr "nazwa klucza"
1100
 
1101
  #: admin.php:537
1102
  msgid "Deleting..."
1103
+ msgstr "Usuwanie..."
1104
 
1105
  #: addons/migrator.php:1734 admin.php:540
1106
  msgid "Testing connection..."
1107
+ msgstr "Testowanie połączenia..."
1108
 
1109
  #: admin.php:1257
1110
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1111
+ msgstr "Ustawiony zestaw kopii zapasowej nie został rozpoznany przez UpdraftPlus aby utworzyć go dla aktualnej instalacji WordpPress, jednakże został znaleziony na na zdalnym makazynie przechowywania, lub został wysłany do zdalnej strony."
1112
 
1113
  #: admin.php:1257
1114
  msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1115
+ msgstr "Musisz się upewnić że następujący zestaw kopii jest przeznaczony dla tej strony, przez przywróceniem (przed próbą przywrócenia niekompatybilnej z tą stroną kopii)"
1116
 
1117
  #: admin.php:2977
1118
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
1119
+ msgstr "Jest bardzo prawdopodobne, że sprawi to upłynięcie limitu czasu. Zalecane jest aby włączyć safe_mode off, lub przywrócić tylko jeden wpis jednorazowo, <a href=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">lub spróbować ręcznego przywracania</a>."
1120
 
1121
  #: admin.php:4381
1122
  msgid "Backup sent to remote site - not available for download."
1123
+ msgstr "Kopia zapasowa wysłana do zdalnej strony - nie dostępna do pobrania"
1124
 
1125
  #: admin.php:4382
1126
  msgid "Site"
1127
+ msgstr "Strona"
1128
 
1129
  #: admin.php:4609
1130
  msgid "(backup set imported from remote location)"
1131
+ msgstr "(zestaw kopii zapasowej zimportowany ze zdalnej lokalizacji)"
1132
 
1133
  #: methods/addon-base.php:177
1134
  msgid "This storage method does not allow downloading"
1135
+ msgstr "Ten sposób przechowywania nie pozwala na pobieranie"
1136
 
1137
  #: addons/reporting.php:142
1138
  msgid "Backup made by %s"
1139
+ msgstr "Kopia zapasowa utworzona przez %s"
1140
 
1141
  #: addons/migrator.php:187
1142
  msgid "This site has no backups to restore from yet."
1143
+ msgstr "Ta strona nie ma jeszcze żadnych kopii zapasowych, aby przywrócić."
1144
 
1145
  #: addons/migrator.php:194
1146
  msgid "Restore an existing backup set onto this site"
1147
+ msgstr "Przywróć istniejący zestaw kopii na tą stronę"
1148
 
1149
  #: addons/migrator.php:1663
1150
  msgid "Backup data will be sent to:"
1151
+ msgstr "Kopia zapasowa danych zostanie wysłany do:"
1152
 
1153
  #: addons/migrator.php:1678
1154
  msgid "site not found"
1155
+ msgstr "strona nie znaleziona"
1156
 
1157
  #: addons/migrator.php:1717
1158
  msgid "The site URL you are sending to (%s) looks like a local development website. If you are sending from an external network, it is likely that a firewall will be blocking this."
1159
+ msgstr "Adres witryny URL który wysyłasz do (%s) wygląda jak lokanla strona w trybie rozwoju. Jeśli wysyłasz z sieci zewnętrznej, jest prawdopodobne, że zapora sieciowa (firewall) będzie blokowanie tego typu zachowanie"
1160
 
1161
  #: addons/migrator.php:1752
1162
  msgid "Also send this backup to the active remote storage locations"
1163
+ msgstr "Również wysłaj kopię zapasową do aktywnych zdalnych miejsc składowania"
1164
 
1165
  #: addons/migrator.php:1803
1166
  msgid "A key with this name already exists; you must use a unique name."
1167
+ msgstr "Klucz z tą nazwą już istnieje, musisz użyć unikalnej nazwy."
1168
 
1169
  #: addons/migrator.php:1818 central/bootstrap.php:367
1170
  msgid "Key created successfully."
1171
+ msgstr "Klucz utworzony z powodzeniem."
1172
 
1173
  #: addons/migrator.php:1818 central/bootstrap.php:367
1174
  msgid "You must copy and paste this key now - it cannot be shown again."
1175
+ msgstr "Musisz skopiować i wkleić ten klucz teraz - nie może być to pokazane ponownie."
1176
 
1177
  #: addons/migrator.php:2136
1178
  msgid "Keys for this site are created in the section below the one you just pressed in."
1179
+ msgstr "Klucze do tej strony są tworzone w sekcji poniżej tego który właśnie wcisnąłeś."
1180
 
1181
  #: addons/migrator.php:2136
1182
  msgid "So, to get the key for the remote site, open the 'Migrate' window on that site, scroll down, and you can create one there."
1183
+ msgstr "Tak więc, aby dostać klucz do zdalnej lokalizacji, otwórz okno \"przenoszenia\" w tym miejscu, przewiń w dół i można stworzyć tam jeden."
1184
 
1185
  #: addons/migrator.php:2153
1186
  msgid "To allow another site to send a backup to this site, create a key, and then press the 'Migrate' button on the sending site, and copy-and-paste the key there."
1187
+ msgstr "Aby umożliwić innym stronom, aby wysłać kopie zapasowe do tej strony, należy utworzyć klucz, a następnie naciśnij przycisk \"przenoszenia\" na stronie wysyłającego, a następnie skopiować i wkleić tam klucz."
1188
 
1189
  #: addons/migrator.php:2174
1190
  msgid "Your new key:"
1191
+ msgstr "Twój nowy klucz:"
1192
 
1193
  #: addons/migrator.php:2192
1194
  msgid "No keys to allow remote sites to connect have yet been created."
1195
+ msgstr "Żadne klucze umożliwiające zdalny dostęp do stron nie zostały utwożone."
1196
 
1197
  #: addons/migrator.php:2201
1198
  msgid "Existing keys"
1199
+ msgstr "Istniejące klucze"
1200
 
1201
  #: methods/ftp.php:307
1202
  msgid "FTP server"
1203
+ msgstr "Serwer FTP"
1204
 
1205
  #: methods/ftp.php:311
1206
  msgid "FTP login"
1207
+ msgstr "Login FTP"
1208
 
1209
  #: methods/ftp.php:315
1210
  msgid "FTP password"
1211
+ msgstr "Hasło FTP"
1212
 
1213
  #: methods/ftp.php:319
1214
  msgid "Remote path"
1215
+ msgstr "Zdalna lokalizacja"
1216
 
1217
  #: methods/ftp.php:323
1218
  msgid "Passive mode"
1219
+ msgstr "Tryb pasywny"
1220
 
1221
  #: methods/ftp.php:325
1222
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1223
+ msgstr "Prawie wszystkie serwery FTP będą wolały tryb pasywny; ale jeśli trzeba tryb aktywny, usuń zaznaczenie."
1224
 
1225
  #: addons/migrator.php:1834
1226
  msgid "key"
1227
+ msgstr "klucz"
1228
 
1229
  #: addons/migrator.php:1844
1230
  msgid "The entered key was the wrong length - please try again."
1231
+ msgstr "Wprowadzony klucz był nieprawidłowej długości - spróbuj ponownie."
1232
 
1233
  #: addons/migrator.php:1846 addons/migrator.php:1848 addons/migrator.php:1852
1234
  msgid "The entered key was corrupt - please try again."
1235
+ msgstr "Wprowadzony klucz został uszkodzony - spróbuj ponownie."
1236
 
1237
  #: addons/migrator.php:1857
1238
  msgid "The entered key does not belong to a remote site (it belongs to this one)."
1239
+ msgstr "Wprowadzony klucz nie należy do zdalnej strony (należy on do aktualnej)"
1240
 
1241
  #: addons/migrator.php:1873
1242
  msgid "The key was successfully added."
1243
+ msgstr "Klucz został pomyślnie dodany."
1244
 
1245
  #: addons/migrator.php:1873
1246
  msgid "It is for sending backups to the following site: "
1247
+ msgstr "Wykorzystywane jest do wysyłania kopii zapasowych do następujących stron:"
1248
 
1249
  #: addons/migrator.php:1892
1250
  msgid "No receiving sites have yet been added."
1251
+ msgstr "Żadna otrzymująca strona nie została dodana."
1252
 
1253
  #: addons/migrator.php:1894 admin.php:532
1254
  msgid "Send to site:"
1255
+ msgstr "Wyślij do strony:"
1256
 
1257
  #: addons/migrator.php:1900 admin.php:541
1258
  msgid "Send"
1259
+ msgstr "Wyślij"
1260
 
1261
  #: addons/migrator.php:2133
1262
  msgid "Or, send a backup to another site"
1263
+ msgstr "lub wyślij kopię zapasową do innej strony"
1264
 
1265
  #: addons/migrator.php:2136
1266
  msgid "To add a site as a destination for sending to, enter that site's key below."
1267
+ msgstr "Aby dodać stronę jako cel do wysyłania, wprowadź klucz strony poniżej."
1268
 
1269
  #: addons/migrator.php:2136
1270
  msgid "How do I get a site's key?"
1271
+ msgstr "Jak uzyskać klucz strony?"
1272
 
1273
  #: addons/migrator.php:2141
1274
  msgid "Paste key here"
1275
+ msgstr "Wklej klucz tutaj"
1276
 
1277
  #: addons/migrator.php:2152
1278
  msgid "Or, receive a backup from a remote site"
1279
+ msgstr "Lub uzyskaj kopię zapasową ze zdalnej strony"
1280
 
1281
  #: admin.php:528
1282
  msgid "Adding..."
1283
+ msgstr "Dodawanie..."
1284
 
1285
  #: addons/migrator.php:2141 admin.php:529
1286
  msgid "Add site"
1287
+ msgstr "Dodaj stronę"
1288
 
1289
  #: addons/migrator.php:167
1290
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1291
+ msgstr "\"Migracaj\" jest w rzeczy samej tym samym co przywracanie - jednakże z użyciem archiwów które importowane są z innej strony."
1292
 
1293
  #: addons/migrator.php:167
1294
  msgid "The UpdraftPlus Migrator modifies the restoration operation appropriately, to fit the backup data to the new site."
1295
+ msgstr "UpdraftPlus Migrator modyfikuje operację przywracania w odpowiedni sposób, aby pasowały do danych z kopii zapasowej na nowym miejscu."
1296
 
1297
  #: restorer.php:1980
1298
  msgid "To use this backup, your database server needs to support the %s character set."
1299
+ msgstr "Aby korzystać z tej kopii zapasowej, serwer bazy danych musi obsługiwać %s zestaw znaków."
1300
 
1301
  #: udaddons/options.php:338
1302
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1303
+ msgstr "Roszczenie nie przyznano - może już użyłeś niniejszy zakup gdzie indziej, lub płatny okres pobierania z updraftplus.com wygasł?"
1304
 
1305
  #: udaddons/updraftplus-addons.php:741
1306
  msgid "Go here to re-enter your password."
1307
+ msgstr "Kliknij tutaj, aby ponownie wprowadzić hasło."
1308
 
1309
  #: udaddons/updraftplus-addons.php:742
1310
  msgid "If you have forgotten your password "
1311
+ msgstr "Jeśli zapomniałeś swojego hasła"
1312
 
1313
  #: udaddons/updraftplus-addons.php:742
1314
  msgid "go here to change your password on updraftplus.com."
1315
+ msgstr "przejdź tutaj aby zmienić twoje hasło na updraftplus.com."
1316
 
1317
  #: addons/migrator.php:194
1318
  msgid "To import a backup set, go to the \"Existing Backups\" tab"
1319
+ msgstr "Aby zaimportować zestaw kopii zapasowych, przejdź do zakładki \"istniejące kopie\""
1320
 
1321
  #: addons/migrator.php:223
1322
  msgid "After pressing this button, you will be given the option to choose which components you wish to migrate"
1323
+ msgstr "Po przycisnięciu tego przycisku, otrzymasz opcję do wyboru który element chcesz zmigrować"
1324
 
1325
  #: admin.php:520 admin.php:545
1326
  msgid "You have made changes to your settings, and not saved."
1327
+ msgstr "Dokonaniu zmian w ustawieniach, ale nie został one zapisane."
1328
 
1329
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1330
  msgid "To remove the block, please go here."
1331
+ msgstr "Aby usunąć blok, przejdź tutaj."
1332
 
1333
  #: methods/email.php:73
1334
  msgid "configure it here"
1335
+ msgstr "skonfiguruj tutaj"
1336
 
1337
  #: addons/onedrive.php:439
1338
  msgid "Please re-authorize the connection to your %s account."
1339
+ msgstr "Proszę ponownie uwierzytelnić połączenie dla twojego %s konta."
1340
 
1341
  #: addons/onedrive.php:554 addons/onedrive.php:698 addons/onedrive.php:702
1342
  msgid "OneDrive"
1343
+ msgstr "OneDrive"
1344
 
1345
  #: addons/onedrive.php:664 addons/onedrive.php:666
1346
  msgid "%s authorisation failed:"
1347
+ msgstr "%s autoryzacja zakończona niepowodzeniem:"
1348
 
1349
  #: addons/onedrive.php:682
1350
  msgid "Microsoft OneDrive is not compatible with sites hosted on a localhost or 127.0.0.1 URL - their developer console forbids these (current URL is: %s)."
1351
+ msgstr "Microsoft OneDrive nie jest kompatybilny ze stronami utrzymywanymi na maszynie lokalnej (localhost) lub z adresem 127.0.0.1 - konsola dewelopera zapobiega tego typu działaniu (aktualny adres URL: %s)."
1352
 
1353
  #: addons/onedrive.php:684
1354
  msgid "You must add the following as the authorised redirect URI in your OneDrive console (under \"API Settings\") when asked"
1355
+ msgstr "Należy dodać następujące jako upoważnione przekierowania URI w swojej konsoli OneDrive (w \"Ustawieniach API\") w momencie zapytania"
1356
 
1357
  #: addons/onedrive.php:690
1358
  msgid "Create OneDrive credentials in your OneDrive developer console."
1359
+ msgstr "Utwórz poświadczenia OneDrive na twojej konsoli dewelopera OneDrive."
1360
 
1361
  #: addons/azure.php:500 addons/migrator.php:1721 addons/onedrive.php:690
1362
  msgid "For longer help, including screenshots, follow this link."
1363
+ msgstr "Na długotrwałą pomoc, włączając w to zrzuty ekranu, przejdz korzystając z tego odnośnika."
1364
 
1365
  #: addons/onedrive.php:699
1366
  msgid "If OneDrive later shows you the message \"unauthorized_client\", then you did not enter a valid client ID here."
1367
+ msgstr "Jeśli OneDrive później pokazuje komunikat \"unauthorized_client\", w takim razie podałeś nieprawidłowy identyfikator klienta (ID) tutaj."
1368
 
1369
  #: addons/onedrive.php:710
1370
  msgid "N.B. %s is not case-sensitive."
1371
+ msgstr "Np.: %s jest wrażliwy na wielkość znaków"
1372
 
1373
  #: addons/s3-enhanced.php:301
1374
  msgid "US West (N. California)"
1375
+ msgstr "Zachodnie Stany Zjednoczone (W. Kalifornia)"
1376
 
1377
  #: addons/s3-enhanced.php:302
1378
  msgid "US Government West (restricted)"
1379
+ msgstr "Zachodni Rząd US (ograniczony)"
1380
 
1381
  #: addons/s3-enhanced.php:303
1382
  msgid "EU (Ireland)"
1383
+ msgstr "EU (Irlandia)"
1384
 
1385
  #: addons/s3-enhanced.php:304
1386
  msgid "EU (Frankfurt)"
1387
+ msgstr "EU (Frankfurt)"
1388
 
1389
  #: addons/s3-enhanced.php:306
1390
  msgid "Asia Pacific (Singapore)"
1391
+ msgstr "Azja Pacyfik (Singapur)"
1392
 
1393
  #: addons/s3-enhanced.php:307
1394
  msgid "Asia Pacific (Sydney)"
1395
+ msgstr "Azja Pacyfic (Sydney)"
1396
 
1397
  #: addons/s3-enhanced.php:308
1398
  msgid "Asia Pacific (Tokyo)"
1399
+ msgstr "Azja Pacyfic (Tokyo)"
1400
 
1401
  #: addons/s3-enhanced.php:309
1402
  msgid "South America (Sao Paulo)"
1403
+ msgstr "Ameryka Południowa (Sao Paulo)"
1404
 
1405
  #: addons/s3-enhanced.php:310
1406
  msgid "China (Beijing) (restricted)"
1407
+ msgstr "Chiny (Pekin) (ograniczona)"
1408
 
1409
  #: addons/s3-enhanced.php:320
1410
  msgid "S3 bucket"
1411
+ msgstr "Zasób S3"
1412
 
1413
  #: addons/s3-enhanced.php:416
1414
  msgid "You are now using a IAM user account to access your bucket."
1415
+ msgstr "Używaszkonta użytkownika IAM aby uzyskać dostęp do twojego zasobu."
1416
 
1417
  #: addons/s3-enhanced.php:416
1418
  msgid "Do remember to save your settings."
1419
+ msgstr "Pamiętaj aby zachować twoje ustawienia"
1420
 
1421
  #: restorer.php:2079
1422
  msgid "Uploads path (%s) has changed during a migration - resetting (to: %s)"
1423
+ msgstr "Ścieżka wysyłania (%s) została zmieniona w momencie migracji - przestawienie (na: %s)"
1424
 
1425
  #: admin.php:396
1426
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1427
+ msgstr "Wiadomości UpdraftPlus, wysokiej jakości materiały szkoleniowe dla deweloperów oraz właścicielu stron WordPress, oraz wiadomości ogólne WordPress. Możesz się wypisać w dowolnym momencie."
1428
 
1429
  #: admin.php:398
1430
  msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1431
+ msgstr "Dla wsparcia osobistego, możliwość kopiowania stron, więcej miejsc składowania, zaszyfrowane kopie zapasowe, wielu lokalizacji kopii zapasowych, lepsze raportowanie, brak reklan oraz wiele więcej, zainteresuj się UpdraftPlus w wersji Premium - najpopularniejsza na świecie wtyczki do wykonywania kopii zapasowych."
1432
 
1433
  #: methods/s3.php:743
1434
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1435
+ msgstr "Aby utworzyć nowego pod-użytkownika IAM oraz klucz dostępu który ma dostęp tylko do tego zasobu, użyj tego dodatku."
1436
 
1437
  #: addons/s3-enhanced.php:51
1438
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
1439
+ msgstr "Jeśli masz użytkownika administratora AWS, możesz użyć tego kreatora aby szybko utworzyć nowego użytkowniak AWS (IAM) z dostępem tylko do tego zasobu (zamiast całego konta)"
1440
 
1441
  #: addons/s3-enhanced.php:63
1442
  msgid "You need to enter an admin access key"
1443
+ msgstr "Musisz wpisać klucz dostępu administratora"
1444
 
1445
  #: addons/s3-enhanced.php:66
1446
  msgid "You need to enter an admin secret key"
1447
+ msgstr "Musisz wprowadzić sekretny klucz administratora"
1448
 
1449
  #: addons/s3-enhanced.php:69
1450
  msgid "You need to enter a new IAM username"
1451
+ msgstr "Musisz wprowadzić nazwę użytkownika IAM"
1452
 
1453
  #: addons/s3-enhanced.php:72
1454
  msgid "You need to enter a bucket"
1455
+ msgstr "Musisz wprowadzić zasób"
1456
 
1457
  #: addons/s3-enhanced.php:97
1458
  msgid "Cannot create new AWS user, since the old AWS toolkit is being used."
1459
+ msgstr "Nie można utworzyć nowego użytkownika AWS, odkąc starego typu narzędzie AWS zostało użyte."
1460
 
1461
  #: addons/s3-enhanced.php:104
1462
  msgid "AWS authentication failed"
1463
+ msgstr "Uwierzytelnienie AWS zakończone niepowodzeniem"
1464
 
1465
  #: addons/s3-enhanced.php:151
1466
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another AWS user may already have taken your name)."
1467
+ msgstr "Niepowodzenie: Nie mogliśmy z powodzeniem uzuskać dostępu lub stworzyć zasób. Prosimy o sprawdzenie poświadczeń dostępu, a jeśli te są poprawne, spróbuj inną nazwę \"rzeczy\" (jako inny użytkownik AWS może już podjął tą nazwę)."
1468
 
1469
  #: addons/s3-enhanced.php:179
1470
  msgid "Conflict: that user already exists"
1471
+ msgstr "Konflikt: taki użytownik już istnieje"
1472
 
1473
  #: addons/s3-enhanced.php:181 addons/s3-enhanced.php:184
1474
  #: addons/s3-enhanced.php:188
1475
  msgid "IAM operation failed (%s)"
1476
+ msgstr "Operacja IAM zakończona niepowodzeniem (%s)"
1477
 
1478
  #: addons/s3-enhanced.php:201
1479
  msgid "Failed to create user Access Key"
1480
+ msgstr "Niepowodzenie przy tworzeniu klucza dostępu użytkownika"
1481
 
1482
  #: addons/s3-enhanced.php:203 addons/s3-enhanced.php:207
1483
  msgid "Operation to create user Access Key failed"
1484
+ msgstr "Operacja tworzenia klucza dostępu użytkownika nie powiodło się"
1485
 
1486
  #: addons/s3-enhanced.php:262 addons/s3-enhanced.php:264
1487
  msgid "Failed to apply User Policy"
1488
+ msgstr "Nie udało się zastosować zasad użytkownika"
1489
 
1490
  #: addons/s3-enhanced.php:274
1491
  msgid "Access Key: %s"
1492
+ msgstr "Klucz dostępu: %s"
1493
 
1494
  #: addons/s3-enhanced.php:274
1495
  msgid "Secret Key: %s"
1496
+ msgstr "Tajny klucz: %s"
1497
 
1498
  #: addons/s3-enhanced.php:357
1499
  msgid "Create new IAM user and S3 bucket"
1500
+ msgstr "Uwtórz nowego użytkowniak IAM oraz Zasób S3"
1501
 
1502
  #: addons/s3-enhanced.php:284
1503
  msgid "Enter your administrative Amazon S3 access/secret keys (this needs to be a key pair with enough rights to create new users and buckets), and a new (unique) username for the new user and a bucket name."
1504
+ msgstr "Wpisz swój klucz/sekretny klucz administracyjnego dostępu do Amazon S3 (musi to być para kluczy z wystarczających uprawnień do tworzenia nowych użytkowników i zasobów) oraz nową nazwę użytkownika (unikalną) dla nowego użytkownika i nazwą zasobu."
1505
 
1506
  #: addons/s3-enhanced.php:284
1507
  msgid "These will be used to create a new user and key pair with an IAM policy attached which will only allow it to access the indicated bucket."
1508
+ msgstr "Zostaną one wykorzystane do stworzenia nowego użytkownika i pary kluczy z załączoną polityką IAM która pozwoli mu uzyskać dostęp do tylko wskazanego zasobu."
1509
 
1510
  #: addons/s3-enhanced.php:284
1511
  msgid "Then, these lower-powered access credentials can be used, instead of storing your administrative keys."
1512
+ msgstr "Następnie, poświadczenia niższego rzędu mogą być użyte, zamiast przechowywania kluczy administracyjnych."
1513
 
1514
  #: addons/s3-enhanced.php:291
1515
  msgid "Admin access key"
1516
+ msgstr "Klucz dostępu administratora"
1517
 
1518
  #: addons/s3-enhanced.php:292
1519
  msgid "Admin secret key"
1520
+ msgstr "Sekretny klucz administratora"
1521
 
1522
  #: addons/s3-enhanced.php:293
1523
  msgid "New IAM username"
1524
+ msgstr "Nowa nazwa użytkownika IAM"
1525
 
1526
  #: addons/s3-enhanced.php:295
1527
  msgid "S3 storage region"
1528
+ msgstr "Region składowania S3"
1529
 
1530
  #: addons/s3-enhanced.php:299
1531
  msgid "US Standard (default)"
1532
+ msgstr "US Standard (domyślnie)"
1533
 
1534
  #: addons/s3-enhanced.php:300
1535
  msgid "US West (Oregon)"
1536
+ msgstr "Zachodnie Stany Zjednoczone (Oregon)"
1537
 
1538
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1539
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
1540
+ msgstr "UdraftPlus.com odpowiedział z informacją \"Dostęp Zabroniony\"."
1541
 
1542
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1543
  msgid "It appears that your web server's IP Address (%s) is blocked."
1544
+ msgstr "Wygląda na to, że adres IP serwera WWW (%s) jest zablokowany.."
1545
 
1546
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1547
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1548
+ msgstr "To najprawdopodobniej oznacza, że dzielisz serwer WWW z zaatakowaną strony internetowej, która została wykorzystana w poprzednich ataków."
1549
 
1550
  #: addons/autobackup.php:662
1551
  msgid "Update cancelled - reload page to try again."
1552
+ msgstr "Aktualizacja anulowana - załaduj ponownie stronę aby spróbować ponownie."
1553
 
1554
  #: admin.php:389 admin.php:403
1555
  msgid "Dismiss (for %s months)"
1556
+ msgstr "Odwołaj (na %s miesięcy)"
1557
 
1558
  #: admin.php:391
1559
  msgid "Thank you for backing up with UpdraftPlus!"
1560
+ msgstr "Dziękuję za tworzenie kopi zapasowej z UpdraftPlus!"
1561
 
1562
  #: admin.php:396
1563
  msgid "Free Newsletter"
1564
+ msgstr "Darmowy biuletyn"
1565
 
1566
  #: admin.php:396
1567
  msgid "Follow this link to sign up."
1568
+ msgstr "Przejdź na ten link, aby się zarejestrować."
1569
 
1570
  #: admin.php:398
1571
  msgid "UpdraftPlus Premium"
1572
+ msgstr "UpdraftPlus Premium"
1573
 
1574
  #: admin.php:398
1575
  msgid "Compare with the free version"
1576
+ msgstr "Porównaj z wersją darmową"
1577
 
1578
  #: admin.php:398
1579
  msgid "Go to the shop."
1580
+ msgstr "Przejdź do sklepu."
1581
 
1582
  #: admin.php:400
1583
  msgid "More Quality Plugins"
1584
+ msgstr "Więcej jakościowych wtyczek"
1585
 
1586
  #: admin.php:400
1587
  msgid "Free two-factor security plugin"
1588
+ msgstr "Darmowa wtyczka weryfikacji dwuetapowej"
1589
 
1590
  #: admin.php:400
1591
  msgid "Premium WooCommerce plugins"
1592
+ msgstr "Wtyczki Premium WooCommerce"
1593
 
1594
  #: class-updraftplus.php:3389
1595
  msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1596
+ msgstr "Przejdz na ten odnośnik aby zapisać się do biuletynu UpdraftPlus"
1597
 
1598
  #: admin.php:2160
1599
  msgid "Newsletter sign-up"
1600
+ msgstr "Zapisz się na biuletyn"
1601
 
1602
  #: admin.php:2544
1603
  msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1604
+ msgstr "Jeżeli dokonałeś zakupu z UpdraftPlus.com, przejdź korzystając z następujacego odnośnika w celu uzyskania informacji jak zainstalować twój zakup."
1605
 
1606
  #: admin.php:2544
1607
  msgid "The first step is to de-install the free version."
1608
+ msgstr "Pierwszym krokiem jest odinstalowanie darmowej wersji."
1609
 
1610
  #: admin.php:3628
1611
  msgid "No backup has been completed"
1612
+ msgstr "Żadna kopia zapasowa została wykonana."
1613
 
1614
  #: addons/fixtime.php:422
1615
  msgid "(at same time as files backup)"
1616
+ msgstr "(w tym samym czasie do kopia plików)"
1617
 
1618
  #: admin.php:2589
1619
  msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1620
+ msgstr "Dropbox, Dysk Google, FTP, S3, Rackspace, Email"
1621
 
1622
  #: admin.php:2594
1623
  msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1624
+ msgstr "WebDAV, Copy.Com, SFTP/SCP, szyfrowany FTP"
1625
 
1626
  #: admin.php:2609
1627
  msgid "Backup extra files and databases"
1628
+ msgstr "Tworzenie kopii zapasowych dodatkowych plików i baz danych"
1629
 
1630
  #: admin.php:2614
1631
  msgid "Migrate / clone (i.e. copy) websites"
1632
+ msgstr "Migrują / klon (np.: kopia) strony internetowe"
1633
 
1634
  #: admin.php:2619
1635
  msgid "Basic email reporting"
1636
+ msgstr "Podstawowy email do raportowania"
1637
 
1638
  #: admin.php:2624
1639
  msgid "Advanced reporting features"
1640
+ msgstr "Zaawansowane opcje raportowania"
1641
 
1642
  #: admin.php:2629
1643
  msgid "Automatic backup when updating WP/plugins/themes"
1644
+ msgstr "Automatyczne tworzenie kopii zapasowych podczas aktualizacji WP / wtyczki / motywy"
1645
 
1646
  #: admin.php:2634
1647
  msgid "Send backups to multiple remote destinations"
1648
+ msgstr "Wyślij kopie zapasowe do wielu zdalnych lokalizacji"
1649
 
1650
  #: admin.php:2639
1651
  msgid "Database encryption"
1652
+ msgstr "Szyfrowanie bazy danych"
1653
 
1654
  #: admin.php:2644
1655
  msgid "Restore backups from other plugins"
1656
+ msgstr "Przywróć kopię zapasową z innej wtyczki:"
1657
 
1658
  #: admin.php:2654
1659
  msgid "Scheduled backups"
1660
+ msgstr "Zaplanowane kopie zapasowe"
1661
 
1662
  #: admin.php:2659
1663
  msgid "Fix backup time"
1664
+ msgstr "Ściśle określony czas kopii zapasowej"
1665
 
1666
  #: admin.php:2664
1667
  msgid "Network/Multisite support"
1668
+ msgstr "Wsprawdzie dla Sieci/Sieci witryn"
1669
 
1670
  #: admin.php:2669
1671
  msgid "Lock settings access"
1672
+ msgstr "Blokada dostępu do ustawień"
1673
 
1674
  #: admin.php:2674
1675
  msgid "Personal support"
1676
+ msgstr "Wsparcie osobiste"
1677
 
1678
  #: admin.php:2544
1679
  msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1680
+ msgstr "Aktualnie używasz darmowej wersji UpdraftPlus z wordpress.org."
1681
 
1682
  #: admin.php:2546
1683
  msgid "Get UpdraftPlus Premium"
1684
+ msgstr "Uzyskaj UpdraftPlus Premium"
1685
 
1686
  #: admin.php:2547
1687
  msgid "Full feature list"
1688
+ msgstr "Pełna lista funkcji"
1689
 
1690
  #: admin.php:2548
1691
  msgid "Pre-sales FAQs"
1692
+ msgstr "FAQ Przed-zakupowe"
1693
 
1694
  #: admin.php:2549
1695
  msgid "Ask a pre-sales question"
1696
+ msgstr "Zadaj pytanie przed-sprzedażowe"
1697
 
1698
  #: admin.php:2561
1699
  msgid "Get it from"
1700
+ msgstr "Uzyskaj z"
1701
 
1702
  #: admin.php:2565
1703
  msgid "Buy It Now!"
1704
+ msgstr "Kup Teraz!"
1705
 
1706
  #: admin.php:2569
1707
  msgid "Backup WordPress files and database"
1708
+ msgstr "Koia zapasowa plików WordPress i bazy danych"
1709
 
1710
  #: admin.php:2574
1711
  msgid "Translated into over %s languages"
1712
+ msgstr "Przetłumaczony na ponad %s języków"
1713
 
1714
  #: admin.php:2579
1715
  msgid "Restore from backup"
1716
+ msgstr "Przywróć z kopii zapasowej"
1717
 
1718
  #: admin.php:2584
1719
  msgid "Backup to remote storage"
1720
+ msgstr "Kopia zapasowa do magazyny zdalnego"
1721
 
1722
  #: admin.php:514
1723
  msgid "You did not select any components to restore. Please select at least one, and then try again."
1724
+ msgstr "Nie wybrałeś żadnych komponentów do przywrócenia. Proszę wybrać conajmniej jeden i spróbuj ponownie."
1725
 
1726
  #: admin.php:2891
1727
  msgctxt "Uploader: Drop backup files here - or - Select Files"
1728
  msgid "or"
1729
+ msgstr "lub"
1730
 
1731
  #: admin.php:3868
1732
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1733
  msgid "or"
1734
+ msgstr "lub"
1735
 
1736
  #: methods/s3.php:127 methods/s3.php:128 methods/s3.php:129
1737
  msgid "%s Error: Failed to initialise"
1738
+ msgstr "%s Błąd: Inicjalizacja nieudana"
1739
 
1740
  #: addons/autobackup.php:920
1741
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
1742
+ msgstr "Zrób kopię zapasową (gdzie stosowne) wtyczek, motywów i bazy danych WordPress z UpdraftPlus przed aktualizacją"
1743
 
1744
  #: restorer.php:1957
1745
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1746
  msgid "An error (%s) occurred:"
1747
+ msgstr "Wystąpił błąd (%s):"
1748
 
1749
  #: admin.php:3637
1750
  msgctxt "i.e. Non-automatic"
1751
  msgid "Manual"
1752
+ msgstr "Ręcznie"
1753
 
1754
  #: admin.php:3920
1755
  msgid "Check this box to have a basic report sent to"
1756
+ msgstr "Zaznacz to pole aby wysłać podstawowy raport do"
1757
 
1758
  #: admin.php:3920
1759
  msgid "your site's admin address"
1760
+ msgstr "adres administratora twojich stron"
1761
 
1762
  #: methods/openstack2.php:102
1763
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
1764
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1765
+ msgstr "Adres URL autoryzacji musi być w trybie v2 (Keystone); v1 (Swauth) nie jest wspierana."
1766
 
1767
  #: methods/openstack2.php:152
1768
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1769
  msgid "tenant"
1770
+ msgstr "dzierżawca"
1771
 
1772
  #: addons/sftp.php:340
1773
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1774
+ msgstr "Wznawianie częściowe przesłania jest obsługiwane przez SFTP, ale nie dla SCP. Tak więc, w przypadku korzystania z SCP należy się upewnić, że serwer WWW pozwala na uruchomionie procesów PHP wystarczająco długo, aby przesłać największy plik kopii zapasowej."
1775
 
1776
  #: addons/sftp.php:377
1777
  msgctxt "Do not translate BEGIN RSA PRIVATE KEY. PCKS1, XML, PEM and PuTTY are also technical acronyms which should not be translated."
1778
  msgid "PKCS1 (PEM header: BEGIN RSA PRIVATE KEY), XML and PuTTY format keys are accepted."
1779
+ msgstr "PKCS1 (PEM nagłówek: BEGIN RSA PRIVATE KEY), XML i PuTTY typy kluczy są akceptowalne."
1780
 
1781
  #: addons/morefiles.php:178
1782
  msgid "Any other file/directory on your server that you wish to back up"
1783
+ msgstr "Każdy inny plik/folder na twoim serwerze który chcesz uwzględnić w kopię zapasową"
1784
 
1785
  #: addons/lockadmin.php:162
1786
  msgid "Change Lock Settings"
1787
+ msgstr "Zmień ustawienia blokady"
1788
 
1789
  #: restorer.php:1163
1790
  msgid "Clearing cached pages (%s)..."
1791
+ msgstr "Czyszczenie stron z pamięci tymczasowej (%s)..."
1792
 
1793
  #: restorer.php:1963
1794
  msgid "Create table failed - probably because there is no permission to drop tables and the table already exists; will continue"
1795
+ msgstr "Tworzenie tabeli zakończone niepowodzeniem - prawdopodobnie nie masz uprawnień do usunięcia tabeli a tabela już istnieje; będę kontynuował"
1796
 
1797
  #: admin.php:2337
1798
  msgid "For even more features and personal support, check out "
1799
+ msgstr "Aby uzyskać jeszcze więcej funkcji i wsparcia, sprawdź"
1800
 
1801
  #: udaddons/options.php:273
1802
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
1803
+ msgstr "Pamiętaj, że po zarządaniu dodatków, możesz usunąć swoje hasło (ale nie adres email) z powyższych ustawień, bez wpływu na możliwość otrzymywania uaktualnień dla tej strony."
1804
 
1805
  #: addons/morefiles.php:67
1806
  msgid "(learn more about this significant option)"
1807
+ msgstr "(Więcej informacji o tej ważnej opcji)"
1808
 
1809
  #: addons/lockadmin.php:105
1810
  msgid "The admin password has now been removed."
1811
+ msgstr "Hasło administratora zostało usunięte."
1812
 
1813
  #: addons/lockadmin.php:107
1814
  msgid "An admin password has been set."
1815
+ msgstr "Hasło administratora zostało ustawione."
1816
 
1817
  #: addons/lockadmin.php:109
1818
  msgid "The admin password has been changed."
1819
+ msgstr "Hasło administratora zostało zmienione."
1820
 
1821
  #: addons/lockadmin.php:111
1822
  msgid "Settings saved."
1823
+ msgstr "Ustawienia zapisane."
1824
 
1825
  #: addons/lockadmin.php:131
1826
  msgid "Lock access to the UpdraftPlus settings page"
1827
+ msgstr "Blokada dostępu do strony ustawień UpdraftPlus"
1828
 
1829
  #: addons/lockadmin.php:133
1830
  msgid "Please make sure that you have made a note of the password!"
1831
+ msgstr "Upewnij się, że zanotowałeś hasło!"
1832
 
1833
  #: addons/lockadmin.php:144
1834
  msgid "1 hour"
1835
+ msgstr "1 godzina"
1836
 
1837
  #: addons/lockadmin.php:145 addons/lockadmin.php:146
1838
  msgid "%s hours"
1839
+ msgstr "%s godzin(y)"
1840
 
1841
  #: addons/lockadmin.php:147
1842
  msgid "1 week"
1843
+ msgstr "1 tydzień"
1844
 
1845
  #: addons/lockadmin.php:148 addons/lockadmin.php:149
1846
  msgid "%s weeks"
1847
+ msgstr "%s tygodne(i)"
1848
 
1849
  #: addons/lockadmin.php:157
1850
  msgid "Require password again after"
1851
+ msgstr "Wymagaj ponownie hasło po"
1852
 
1853
  #: addons/lockadmin.php:159
1854
  msgid "Support URL"
1855
+ msgstr "Adres URL wsparcia"
1856
 
1857
  #: addons/lockadmin.php:159
1858
  msgid "Anyone seeing the lock screen will be shown this URL for support - enter a website address or an email address."
1859
+ msgstr "Każdy widząc ekran blokady zobaczt ten URL wsparcia - Wprowadź adres internetowy lub adres e-mail."
1860
 
1861
  #: addons/lockadmin.php:159
1862
  msgid "Otherwise, the default link will be shown."
1863
+ msgstr "W przeciwnym razie zostanie wyświetlony domyślny odnośnik."
1864
 
1865
  #: addons/lockadmin.php:188 addons/lockadmin.php:194
1866
  msgid "Unlock"
1867
+ msgstr "Odblokuj"
1868
 
1869
  #: addons/lockadmin.php:200
1870
  msgid "Password incorrect"
1871
+ msgstr "Hasło nieprawidłowe"
1872
 
1873
  #: addons/lockadmin.php:203
1874
  msgid "To access the UpdraftPlus settings, please enter your unlock password"
1875
+ msgstr "Aby uzyskać dostęp do ustawień UpdraftPlus, proszę wprowadzić swoje hasło odblokowania"
1876
 
1877
  #: addons/lockadmin.php:210
1878
  msgid "For unlocking support, please contact whoever manages UpdraftPlus for you."
1879
+ msgstr "W celu odblokowania wsparcia, proszę skonaktować się z osobą, która zarządza twoim UpdraftPlus."
1880
 
1881
  #: addons/autobackup.php:85
1882
  msgid "WordPress core (only)"
1883
+ msgstr "Baza WordPress (tylko)"
1884
 
1885
  #: addons/autobackup.php:120 addons/autobackup.php:885
1886
  #: addons/autobackup.php:893 admin.php:519
1887
  msgid "Automatic backup before update"
1888
+ msgstr "Automatyczna kopia zapasowa przed aktualizacją"
1889
 
1890
  #: addons/moredatabase.php:45
1891
  msgid "Database decryption phrase"
1892
+ msgstr "Zwrot szyfrowanie bazy danych"
1893
 
1894
  #: backup.php:2886
1895
  msgid "A zip error occurred"
1896
+ msgstr "Wystąpił problem zip"
1897
 
1898
  #: backup.php:2888
1899
  msgid "your web hosting account appears to be full; please see: %s"
1900
+ msgstr "twoje konto hostingowe wygląda na pełne, zobacz: %s"
1901
 
1902
  #: backup.php:2890
1903
  msgid "check your log for more details."
1904
+ msgstr "sprawdź dziennik aby zobaczy szczegóły"
1905
 
1906
  #: admin.php:1842
1907
  msgid "Error: unexpected file read fail"
1908
+ msgstr "Błąd: nieoczekiwany problem odczytu pliku"
1909
 
1910
  #: class-updraftplus.php:3565
1911
  msgid "Backup label:"
1912
+ msgstr "Etykieta kopii zapasowej:"
1913
 
1914
  #: admin.php:748 admin.php:2427 central/updraftplus-commands.php:304
1915
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1916
+ msgstr "Przycisk \"Utwórz kopię teraz\" jest wyłączony jako że katalog kopii zapasowych nie ma prawa do zapisu (przejdź do zakładki \"Ustawienia\" aby znaleźć odpowiednią opcję)"
1917
 
1918
  #: admin.php:2880
1919
  msgid "Upload files into UpdraftPlus."
1920
+ msgstr "Wyślij pliki do UpdraftPlus"
1921
 
1922
  #: admin.php:3112
1923
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1924
+ msgstr "Za możliwość zablokowania dostępu do ustawień UpdraftPlus hasłem, uaktualnienie do UpdraftPlus Premium."
1925
 
1926
  #: admin.php:3598
1927
  msgid "incremental backup; base backup: %s"
1928
+ msgstr "kopia przyrostowa; podstawowa kopia: %s"
1929
 
1930
  #: admin.php:3702 admin.php:3741
1931
  msgid "and retain this many scheduled backups"
1932
+ msgstr "i zachowuje tak wiele zaplanowanych kopii zapasowych"
1933
 
1934
  #: admin.php:4327
1935
  msgid "Backup date"
1936
+ msgstr "Data kopii zapasowej"
1937
 
1938
  #: admin.php:4328
1939
  msgid "Backup data (click to download)"
1940
+ msgstr "Kopia zapasowa (kliknij aby pobrać)"
1941
 
1942
  #: admin.php:3220 admin.php:4632
1943
  msgid "View Log"
1944
+ msgstr "Zobacz dziennik"
1945
 
1946
  #: addons/copycom.php:535
1947
  msgid "API Key"
1948
+ msgstr "Klucz API"
1949
 
1950
  #: addons/copycom.php:540
1951
  msgid "API Secret"
1952
+ msgstr "Bezpieczny klucz API"
1953
 
1954
  #: addons/copycom.php:550
1955
  msgid "(case-sensitive)"
1956
+ msgstr "(wrażliwa na wielkość liter)"
1957
 
1958
  #: addons/copycom.php:551
1959
  msgid "N.B. Copy is case-sensitive."
1960
+ msgstr "Np.: Kopia jest wrażliwa na wielkość liter."
1961
 
1962
  #: addons/reporting.php:60
1963
  msgid "Your label for this backup (optional)"
1964
+ msgstr "Etykieta dla tej kopii zapasowej (opcjonalnie)"
1965
 
1966
  #: addons/googlecloud.php:822 methods/googledrive.php:900
1967
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1968
+ msgstr "%s nie zezwala na uwierzytelnienie stron utrzymywanych na bezpośrednim adresie IP. Musisz zmienić adres twojej strony (%s) zanim będziesz mugł użyć %s jako magazynu danych."
1969
 
1970
  #: methods/updraftvault.php:512 udaddons/updraftplus-addons.php:642
1971
  msgid "You need to supply both an email address and a password"
1972
+ msgstr "Musisz podać zarówno adres e-mail jak i hasło"
1973
 
1974
  #: methods/updraftvault.php:572 udaddons/updraftplus-addons.php:741
1975
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1976
+ msgstr "Twój adres e-mail był prawidłowy, ale hasło nie zostało uznane przez UpdraftPlus.com"
1977
 
1978
  #: methods/updraftvault.php:575 udaddons/updraftplus-addons.php:745
1979
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
1980
+ msgstr "Wprowadzony adres nie został rozpoznany przez UpdraftPlus.com"
1981
 
1982
  #: admin.php:2488
1983
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
1984
+ msgstr "Aby kontynuować, naciśnij przycisk \"Utworz kopię teraz\". Następnie obserwuj \"ostatnie wiadomość w logach\" w celu śledzenia aktywności."
1985
 
1986
  #: class-updraftplus.php:3584
1987
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
1988
+ msgstr "Twoja kopia zapasowa jest instalacją typu multi-site (sieć witryn), jednakże ta strona nie jest. Tylko pierwsza strona tej sieci będzie możliwa do dostępu."
1989
 
1990
  #: class-updraftplus.php:3584
1991
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
1992
+ msgstr "Jeśli chcesz przywrócić kopię zapasowej sieci witryn, należy najpierw skonfigurować instalację WordPress jako sieć witryn."
1993
 
1994
  #: addons/migrator.php:1036
1995
  msgid "already done"
1996
+ msgstr "już zrobione"
1997
 
1998
  #: addons/migrator.php:993 addons/migrator.php:1036 addons/migrator.php:1183
1999
  msgid "Search and replacing table:"
2000
+ msgstr "Wyszukiwanie i zastępowanie tabeli:"
2001
 
2002
  #: addons/migrator.php:993
2003
  msgid "skipped (not in list)"
2004
+ msgstr "pominięto (nie uwzględniony na liście)"
2005
 
2006
  #: addons/migrator.php:303
2007
  msgid "Rows per batch"
2008
+ msgstr "Wiersze na partię"
2009
 
2010
  #: addons/migrator.php:304
2011
  msgid "These tables only"
2012
+ msgstr "Tylko te tabele"
2013
 
2014
  #: addons/migrator.php:304
2015
  msgid "Enter a comma-separated list; otherwise, leave blank for all tables."
2016
+ msgstr "Wprowadź listę oddzieloną przecinkami; w przeciwnym razie, pozostaw puste dla wszystkich tabel."
2017
 
2018
  #: addons/copycom.php:514
2019
  msgid "To get your credentials, log in at the %s developer portal."
2020
+ msgstr "Aby uzyskać poświadczenia, należy zalogować się w portalu %s dewelopera."
2021
 
2022
  #: udaddons/options.php:102
2023
  msgid "You have not yet connected with your UpdraftPlus.Com account."
2024
+ msgstr "Nie połączyłeś jeszcze swojego konta UpdraftPlus.com"
2025
 
2026
  #: udaddons/options.php:100 udaddons/options.php:102
2027
  msgid "You need to connect to receive future updates to UpdraftPlus."
2028
+ msgstr "Musisz połączyć w celu przyszłego otrzymywania aktualizacji UpdraftPlus."
2029
 
2030
  #: class-updraftplus.php:3557
2031
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2032
+ msgstr "Witryna w tej kopii zapasowej został uruchomiony na serwerze WWW z wersji %s z %s."
2033
 
2034
  #: class-updraftplus.php:3557
2035
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2036
+ msgstr "Ten serwer jest stanowczo nowszy niż serwer który aktualnie przywracasz do (wersja %s)."
2037
 
2038
  #: class-updraftplus.php:3557
2039
  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."
2040
+ msgstr "Należy kontynuować tylko wtedy, gdy nie można zaktualizować bieżącego serwera jesteś pewien (lub skłonny do ryzyka), że wtyczki / motywy / itp. są kompatybilne ze starszą %s wersją."
2041
 
2042
  #: class-updraftplus.php:3557
2043
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2044
+ msgstr "Jakakolwiek prośba o wsparcie związana z %s powinna być skierowana do twojej firmy hostingowej."
2045
 
2046
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2047
  msgid "UpdraftPlus is on social media - check us out here:"
2048
+ msgstr "UpdraftPlus jest w mediach społecznościowych - spradź:"
2049
 
2050
  #: admin.php:2158 class-updraftplus.php:3380 class-updraftplus.php:3409
2051
  msgid "Twitter"
2052
+ msgstr "Twitter"
2053
 
2054
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2055
  msgid "Facebook"
2056
+ msgstr "Facebook"
2057
 
2058
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2059
  msgid "Google+"
2060
+ msgstr "Google+"
2061
 
2062
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2063
  msgid "LinkedIn"
2064
+ msgstr "LinkedIn"
2065
 
2066
  #: admin.php:4693
2067
  msgid "Why am I seeing this?"
2068
+ msgstr "Dlaczego to widzę?"
2069
 
2070
  #: admin.php:2868
2071
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2072
+ msgstr "Naciśnij tutaj, aby zajrzeć do katalogu UpdraftPlus (w przestrzeni hosting) dla wszystkich nowych zestawów kopii zapasowych, które zostały przesłane."
2073
 
2074
  #: admin.php:2868
2075
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2076
+ msgstr "Lokalizacja tego katalogu jest ustawiony w ustawieniach dla ekspertów, w zakładce Ustawienia."
2077
 
2078
  #: admin.php:1790 admin.php:1802
2079
  msgid "Start backup"
2080
+ msgstr "Rozpocznij kopię zapasową"
2081
 
2082
  #: class-updraftplus.php:3529 restorer.php:926
2083
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2084
+ msgstr "Używasz serwera %s, jednakże wygląda na to że moduł %s nie jest załadowany."
2085
 
2086
  #: admin.php:3542
2087
  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."
2088
+ msgstr "Będziesz musiał skonsultować się z dostawcą usług hostingowych, aby dowiedzieć się, jak ustawić uprawnienia dla zapisu do katalogu WordPress."
2089
 
2090
  #: admin.php:3033
2091
  msgid "Unless you have a problem, you can completely ignore everything here."
2092
+ msgstr "Chyba że masz problem, możesz zignorować wszytko tutaj."
2093
 
2094
  #: admin.php:1964
2095
  msgid "You will find more information about this in the Settings section."
2096
+ msgstr "Znajdziesz więcej informacji na ten temat w sekcji Ustawienia."
2097
 
2098
  #: admin.php:1999
2099
  msgid "This file could not be uploaded"
2100
+ msgstr "Ten plik nie może zostać wysłany"
2101
 
2102
  #: addons/importer.php:70
2103
  msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
2190
 
2191
  #: backup.php:894
2192
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2193
+ msgstr "Wyślij utworzony raport przez UpdraftPlus (edycja darmowa) wraz z najnowszymi informacjami z UpdraftPlus.com"
2194
 
2195
  #: methods/googledrive.php:906
2196
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2711
 
2712
  #: addons/s3-enhanced.php:37
2713
  msgid "Check this box to use Amazon's reduced redundancy storage and tariff"
2714
+ msgstr "Zaznacz to pole w celu używania ograniczonych przestrzeni i taryw Amazona"
2715
 
2716
  #: addons/s3-enhanced.php:36
2717
  msgid "Reduced redundancy storage"
2780
 
2781
  #: udaddons/options.php:482
2782
  msgid "Available to claim on this site"
2783
+ msgstr "Dostępne do rządania na tej stronie"
2784
 
2785
  #: udaddons/updraftplus-addons.php:229
2786
  msgid "To maintain your access to support, please renew."
2848
 
2849
  #: backup.php:1395
2850
  msgid "please wait for the rescheduled attempt"
2851
+ msgstr "proszę czekać na ponowienie próby z harmonogramu"
2852
 
2853
  #: backup.php:1397
2854
  msgid "No database tables found"
2892
 
2893
  #: admin.php:2957
2894
  msgid "Retrieving (if necessary) and preparing backup files..."
2895
+ msgstr "Odzyskiwanie (jeśli to konieczne) i przygotowanie plików kopii zapasowej..."
2896
 
2897
  #: admin.php:1253
2898
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
2904
 
2905
  #: admin.php:757 class-updraftplus.php:563
2906
  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)"
2907
+ msgstr "Czas wymagany dla wtyczek WordPress do uruchomienia jest bardzo niske (%s sekund) - należy to zwiększyć, aby uniknąć uszkodzeń kopii zapasowych ze względu na czas przerw (skontaktuj się z firmą hostingową, aby uzyskać pomoc - na temat max_execution_time PHP, zalecana wartość to %s sekund lub więcej)"
2908
 
2909
  #: addons/migrator.php:667
2910
  msgid "Replacing in blogs/site table: from: %s to: %s"
2916
 
2917
  #: addons/migrator.php:262
2918
  msgid "%s: Skipping cache file (does not already exist)"
2919
+ msgstr "%s: Pomijanie pliku cache (już nie istnieje)"
2920
 
2921
  #: addons/sftp.php:638 addons/sftp.php:641 includes/ftp.class.php:44
2922
  #: includes/ftp.class.php:47
2925
 
2926
  #: admin.php:5048
2927
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
2928
+ msgstr "Obecny motyw nie został znaleziony; aby zapobiec problemu z załadowaniem strony, twój motyw został przywrócony do domyślnego motywu"
2929
 
2930
  #: admin.php:2235 admin.php:2245
2931
  msgid "Restore failed..."
2932
+ msgstr "Przywracanie zakończone niepowodzeniem..."
2933
 
2934
  #: addons/moredatabase.php:125 admin.php:1502
2935
  msgid "Messages:"
2936
+ msgstr "Wiadomości:"
2937
 
2938
  #: restorer.php:1879
2939
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
2945
 
2946
  #: addons/cloudfiles-enhanced.php:248
2947
  msgid "New User's Username"
2948
+ msgstr "Nazwa nowych użytkowników"
2949
 
2950
  #: addons/cloudfiles-enhanced.php:249
2951
  msgid "New User's Email Address"
2952
+ msgstr "Adres email nowego użytkownika"
2953
 
2954
  #: addons/cloudfiles-enhanced.php:226
2955
  msgid "Enter your Rackspace admin username/API key (so that Rackspace can authenticate your permission to create new users), and enter a new (unique) username and email address for the new user and a container name."
2956
+ msgstr "Wprowadź swoją nazwę użytkownika administratora / klucz API Rackspace (tak, aby Rackspace mógł uwierzytelnić swoje uprawnienie do tworzenia nowych użytkowników), a następnie wpisz nową nazwę użytkownika (unikalną) oraz adres e-mail dla nowego użytkownika i nazwę kontenera."
2957
 
2958
  #: addons/cloudfiles-enhanced.php:232
2959
  msgid "US or UK Rackspace Account"
2960
+ msgstr "Konto Rackspace (UK lub US)"
2961
 
2962
  #: addons/cloudfiles-enhanced.php:246
2963
  msgid "Admin Username"
2964
+ msgstr "Nazwa użytkownika Administratora"
2965
 
2966
  #: addons/cloudfiles-enhanced.php:247
2967
  msgid "Admin API Key"
2973
 
2974
  #: addons/cloudfiles-enhanced.php:59
2975
  msgid "You need to enter a container"
2976
+ msgstr "Musisz wprowadzić kontener"
2977
 
2978
  #: addons/cloudfiles-enhanced.php:64
2979
  msgid "You need to enter a valid new email address"
2981
 
2982
  #: addons/cloudfiles-enhanced.php:153
2983
  msgid "Conflict: that user or email address already exists"
2984
+ msgstr "Konflikt: adres email lub użytkownik już istnieje"
2985
 
2986
  #: addons/cloudfiles-enhanced.php:155 addons/cloudfiles-enhanced.php:159
2987
  #: addons/cloudfiles-enhanced.php:164 addons/cloudfiles-enhanced.php:185
2988
  #: addons/cloudfiles-enhanced.php:193 addons/cloudfiles-enhanced.php:198
2989
  msgid "Cloud Files operation failed (%s)"
2990
+ msgstr "Operacja Cloud Files zakończona niepowodzeniem (%s)"
2991
 
2992
  #: addons/cloudfiles-enhanced.php:210 addons/s3-enhanced.php:274
2993
  msgid "Username: %s"
2994
+ msgstr "Nazwa użytkownika: %s"
2995
 
2996
  #: addons/cloudfiles-enhanced.php:210
2997
  msgid "Password: %s"
2998
+ msgstr "Hasło: %s"
2999
 
3000
  #: addons/cloudfiles-enhanced.php:210
3001
  msgid "API Key: %s"
3002
+ msgstr "Klucz API: %s"
3003
 
3004
  #: addons/cloudfiles-enhanced.php:223
3005
  msgid "Create new API user and container"
3006
+ msgstr "Utwórz nowy kontener i użytkownika API"
3007
 
3008
  #: addons/cloudfiles-enhanced.php:26
3009
  msgid "Rackspace Cloud Files, enhanced"
3010
+ msgstr "Rackspace Cloud Files, rozszerzone"
3011
 
3012
  #: addons/cloudfiles-enhanced.php:27
3013
  msgid "Adds enhanced capabilities for Rackspace Cloud Files users"
3014
+ msgstr "Dodaje rozszerzone możliwości dla użytkowników Rackspace Cloud Files"
3015
 
3016
  #: addons/cloudfiles-enhanced.php:38
3017
  msgid "Create a new API user with access to only this container (rather than your whole account)"
3018
+ msgstr "Utwórz nowego użytkownika API z dostępem tylko do tego kontenera (zamiast do całego konta)"
3019
 
3020
  #: addons/cloudfiles-enhanced.php:47
3021
  msgid "You need to enter an admin username"
3022
+ msgstr "Musisz podać nazwę użytkownika administratora"
3023
 
3024
  #: addons/cloudfiles-enhanced.php:51
3025
  msgid "You need to enter an admin API key"
3026
+ msgstr "Musisz wprowadzić klucz API Administratora"
3027
 
3028
  #: addons/cloudfiles-enhanced.php:258 methods/cloudfiles-new.php:103
3029
  msgid "Northern Virginia (IAD)"
3030
+ msgstr "Północna Wirginia (IAD)"
3031
 
3032
  #: addons/cloudfiles-enhanced.php:259 methods/cloudfiles-new.php:104
3033
  msgid "Hong Kong (HKG)"
3034
+ msgstr "Hong Kong (HKG)"
3035
 
3036
  #: methods/cloudfiles-new.php:105
3037
  msgid "London (LON)"
3038
+ msgstr "Londyn (LON)"
3039
 
3040
  #: methods/cloudfiles-new.php:119
3041
  msgid "Cloud Files Username"
3042
+ msgstr "Nazwa użytkownika Cloud Files"
3043
 
3044
  #: methods/cloudfiles-new.php:122
3045
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3046
+ msgstr "Aby utworzyć nowego pod-użytkownika API Rackspace oraz klucz API który ma dostęp tylko to tego kontenera, użyj następującego dodatku."
3047
 
3048
  #: methods/cloudfiles-new.php:127
3049
  msgid "Cloud Files API Key"
3050
+ msgstr "Klucz API Cloud Files"
3051
 
3052
  #: addons/cloudfiles-enhanced.php:270 methods/cloudfiles-new.php:132
3053
  msgid "Cloud Files Container"
3054
+ msgstr "Kontener Cloud Files"
3055
 
3056
  #: methods/cloudfiles-new.php:85
3057
  msgid "US or UK-based Rackspace Account"
3058
+ msgstr "Konto Rackspace (zlokalizowane-UK lub US)"
3059
 
3060
  #: methods/cloudfiles-new.php:87
3061
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3063
 
3064
  #: addons/cloudfiles-enhanced.php:251 methods/cloudfiles-new.php:95
3065
  msgid "Cloud Files Storage Region"
3066
+ msgstr "Region składowania Cloud Files"
3067
 
3068
  #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:100
3069
  msgid "Dallas (DFW) (default)"
3070
+ msgstr "Dallas (DFW) (domyślne)"
3071
 
3072
  #: addons/cloudfiles-enhanced.php:256 methods/cloudfiles-new.php:101
3073
  msgid "Sydney (SYD)"
3074
+ msgstr "Sydney (SYD)"
3075
 
3076
  #: addons/cloudfiles-enhanced.php:257 methods/cloudfiles-new.php:102
3077
  msgid "Chicago (ORD)"
3078
+ msgstr "Chicago (ORD)"
3079
 
3080
  #: addons/cloudfiles-enhanced.php:150 addons/s3-enhanced.php:177
3081
  #: methods/cloudfiles-new.php:39 methods/openstack-base.php:347
3082
  #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
  #: methods/openstack2.php:25
3084
  msgid "Authorisation failed (check your credentials)"
3085
+ msgstr "Autoryzacja nie powiodła się (sprawdzić poświadczenia)"
3086
 
3087
  #: addons/cloudfiles-enhanced.php:233 methods/cloudfiles-new.php:85
3088
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
+ msgstr "Konta utworzone na rackspacecloud.com są kontami w Stanach Zjednoczonych (US); konta utworzone na rackspace.co.uk są kontam w Wielkiej Brytanii (UK)"
3090
 
3091
  #: methods/updraftvault.php:492 udaddons/options.php:265
3092
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
+ msgstr "Wystąpił nieznany błąd podczas próby połączenia z UpdraftPlus.com"
3094
 
3095
  #: admin.php:513 central/bootstrap.php:448
3096
  msgid "Create"
3097
+ msgstr "Utwórz"
3098
 
3099
  #: admin.php:475
3100
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
+ msgstr "Hasło do konsoli nowego użytkownika RackSpace jest (nie zostanie wyświetlone ponownie):"
3102
 
3103
  #: admin.php:476
3104
  msgid "Trying..."
3105
+ msgstr "Próbuję..."
3106
 
3107
  #: class-updraftplus.php:1249
3108
  msgid "(when decrypted)"
3110
 
3111
  #: admin.php:486 admin.php:4990
3112
  msgid "Error data:"
3113
+ msgstr "Błędne dane:"
3114
 
3115
  #: admin.php:4664
3116
  msgid "Backup does not exist in the backup history"
3117
+ msgstr "Kopia zapasowa nie istnieje w historii kopii."
3118
 
3119
  #: admin.php:3164
3120
  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."
3121
+ msgstr "Twoja instalacja WordPress zawiera stare katalogi ze stanu sprzed przywracania / migracji (informacje techniczne: są z przyrostekiem, -old). Należy nacisnąć ten przycisk, aby usunąć tak szybko jak potwierdzisz, że przywracanie zadziałało."
3122
 
3123
  #: restorer.php:1585
3124
  msgid "Split line to avoid exceeding maximum packet size"
3125
+ msgstr "Podział linii w celu uniknięcia przekroczenia maksymalnego rozmiaru pakietu"
3126
 
3127
  #: restorer.php:1466
3128
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
3129
+ msgstr "Twój użytkownik bazy danych nie ma uprawnień do usunięcia tabel. Będziemy próbować przywrócić poprzez proste opróżnianie tabel; to powinno działać tak długo, jak dane są przywracane z wersji WordPressa z taką samą strukturę bazy danych (%s)"
3130
 
3131
  #: restorer.php:1510
3132
  msgid "<strong>Backup of:</strong> %s"
3133
+ msgstr "<strong>Kopia:</strong> %s"
3134
 
3135
  #: restorer.php:1297
3136
  msgid "New table prefix: %s"
3138
 
3139
  #: restorer.php:956 restorer.php:970
3140
  msgid "%s: This directory already exists, and will be replaced"
3141
+ msgstr "%s: Ten katalog już istnieje i zostanie zastąpiony"
3142
 
3143
  #: restorer.php:986
3144
  msgid "File permissions do not allow the old data to be moved and retained; instead, it will be deleted."
3146
 
3147
  #: restorer.php:103
3148
  msgid "Could not move the files into place. Check your file permissions."
3149
+ msgstr "Nie można przenieść plików na swoje miejsce. Sprawdź swoje uprawnienia do plików."
3150
 
3151
  #: restorer.php:96
3152
  msgid "Moving old data out of the way..."
3154
 
3155
  #: restorer.php:100
3156
  msgid "Could not move old files out of the way."
3157
+ msgstr "Nie można przenieść starych plików z drogi."
3158
 
3159
  #: restorer.php:102
3160
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
+ msgstr "Nie można przenieść nowych plików na miejsce. Sprawdź swój folder wp-content/upgrade."
3162
 
3163
  #: addons/reporting.php:369
3164
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
3166
 
3167
  #: addons/reporting.php:383
3168
  msgid "Add another address..."
3169
+ msgstr "Dodaj inny adres..."
3170
 
3171
  #: addons/reporting.php:276
3172
  msgid " (with errors (%s))"
3173
+ msgstr " (z błędami (%s))"
3174
 
3175
  #: addons/reporting.php:278
3176
  msgid " (with warnings (%s))"
3177
+ msgstr "(z ostrzeżeniami (%s))"
3178
 
3179
  #: addons/reporting.php:308
3180
  msgid "Use the \"Reporting\" section to configure the email addresses to be used."
3182
 
3183
  #: class-updraftplus.php:1218 class-updraftplus.php:1220
3184
  msgid "files: %s"
3185
+ msgstr "plików: %s"
3186
 
3187
  #: class-updraftplus.php:1245 class-updraftplus.php:1250
3188
  msgid "%s checksum: %s"
3194
 
3195
  #: addons/reporting.php:164
3196
  msgid "Errors"
3197
+ msgstr "Błędy"
3198
 
3199
  #: addons/reporting.php:179
3200
  msgid "Warnings"
3202
 
3203
  #: addons/reporting.php:188
3204
  msgid "Time taken:"
3205
+ msgstr "Zajęło:"
3206
 
3207
  #: addons/reporting.php:189 admin.php:4277
3208
  msgid "Uploaded to:"
3210
 
3211
  #: addons/reporting.php:224
3212
  msgid "Debugging information"
3213
+ msgstr "Informacje debugowania"
3214
 
3215
  #: addons/reporting.php:122
3216
  msgid "%d errors, %d warnings"
3230
 
3231
  #: addons/morefiles.php:55 addons/morefiles.php:56 addons/reporting.php:150
3232
  msgid "Contains:"
3233
+ msgstr "Zawiera:"
3234
 
3235
  #: addons/reporting.php:161
3236
  msgid "Errors / warnings:"
3238
 
3239
  #: addons/copycom.php:377 addons/onedrive.php:492 methods/dropbox.php:506
3240
  msgid "%s authentication"
3241
+ msgstr "%s uwierzytelnienie"
3242
 
3243
  #: addons/copycom.php:377 addons/onedrive.php:492 class-updraftplus.php:304
3244
  #: methods/dropbox.php:506 methods/dropbox.php:520 methods/dropbox.php:615
3245
  msgid "%s error: %s"
3246
+ msgstr "%s błąd: %s"
3247
 
3248
  #: addons/googlecloud.php:815 methods/dropbox.php:426
3249
  msgid "%s logo"
3250
+ msgstr "%s logo"
3251
 
3252
  #: methods/email.php:73
3253
  msgid "Your site's admin email address (%s) will be used."
3268
  #: admin.php:522 methods/updraftvault.php:255 methods/updraftvault.php:300
3269
  #: udaddons/options.php:244
3270
  msgid "Connect"
3271
+ msgstr "Połącz"
3272
 
3273
  #: admin.php:3922
3274
  msgid "For more reporting features, use the Reporting add-on."
3276
 
3277
  #: class-updraftplus.php:3517
3278
  msgid "(version: %s)"
3279
+ msgstr "(wersja: %s)"
3280
 
3281
  #: addons/reporting.php:416 admin.php:466
3282
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
+ msgstr "Należy pamiętać, że serwery pocztowe mają tendencję do ograniczenia rozmiaru obsługiwanych plików; zazwyczaj %s Mb; Kopie zapasowe większe niż jakiekolwiek limity nie mogą docierać."
3284
 
3285
  #: addons/reporting.php:416 admin.php:465
3286
  msgid "When the Email storage method is enabled, also send the entire backup"
3287
+ msgstr "Jeżeli metoda przechowywania na email jest wybrana, wyślij również całą kopię zapasową"
3288
 
3289
  #: backup.php:843
3290
  msgid "Unknown/unexpected error - please raise a support request"
3291
+ msgstr "Nieznany/nieoczekiwany błąd - proszę otworzyć sprawę w centrum pomocy"
3292
 
3293
  #: addons/reporting.php:221 backup.php:879
3294
  msgid "The log file has been attached to this email."
3295
+ msgstr "Plik dziennika został dołączony do tej wiadomości."
3296
 
3297
  #: backup.php:885
3298
  msgid "Backed up: %s"
3299
+ msgstr "Zrobiono kopię: %s"
3300
 
3301
  #: backup.php:921
3302
  msgid "Backup contains:"
3304
 
3305
  #: addons/reporting.php:148 backup.php:922
3306
  msgid "Latest status:"
3307
+ msgstr "Ostatni stan:"
3308
 
3309
  #: admin.php:155 backup.php:835
3310
  msgid "Files and database"
3320
 
3321
  #: backup.php:840
3322
  msgid "Database (files backup has not completed)"
3323
+ msgstr "Baza danych (kopia plików nie skończyła się)"
3324
 
3325
  #: backup.php:840
3326
  msgid "Database only (files were not part of this particular schedule)"
3336
 
3337
  #: options.php:185
3338
  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>."
3339
+ msgstr "Bez aktualizacji, UpdraftPlus pozwala <strong>każdemu</strong> administratorowi strony na modyfikowanie ustawień wtyczki (w tym dostęp do danych, haseł, formularzy) oraz przywracanie (włączając w to modyfikacje, np.: zmienione hasła) <strong>całej sieci wirtyn</strong>."
3340
 
3341
  #: options.php:185
3342
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
+ msgstr "(Dotyczy to wszystkich wtyczek kopii zapasowych WordPress o ile nie zostały wyraźnie stworzone z kompatybilnością dla sieci witryn)."
3344
 
3345
  #: options.php:185
3346
  msgid "UpdraftPlus warning:"
3347
+ msgstr "UpdraftPlus ostrzeżenie:"
3348
 
3349
  #: udaddons/options.php:488
3350
  msgid "(or connect using the form on this page if you have already purchased it)"
3698
 
3699
  #: admin.php:3361
3700
  msgid "next resumption: %d (after %ss)"
3701
+ msgstr "następne uruchomienie: %d (po %ss)"
3702
 
3703
  #: admin.php:3362
3704
  msgid "last activity: %ss ago"
4783
 
4784
  #: methods/s3.php:507 methods/s3.php:580 methods/s3.php:666
4785
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4786
+ msgstr "%s Błąd: brak dostępu do zasobu %s. Sprawdź swoje uprawnienia i poświadczenia. "
4787
 
4788
  #: methods/s3.php:725
4789
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
4790
+ msgstr "Zdobądź klucz dostępu i tajny klucz <a href=\"%s\">z Twojej %s konsoli</a>, następnie (wyjątkowy - wszyscy %s użytkownicy) nazwę zasobu (litery i cyfry) (i opcjonalnie ścieżkę) aby używać do przechowywania. Ten pojemnik zostanie utworzony dla Ciebie, jeśli już nie istnieje. "
4791
 
4792
  #: methods/s3.php:727
4793
  msgid "If you see errors about SSL certificates, then please go here for help."
4807
 
4808
  #: methods/s3.php:757
4809
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4810
+ msgstr "Wprowadź tylko nazwę zasobu lub zasób i ścieżkę. Przykłady: mójzasób, mójzasób/mojaścieżka. "
4811
 
4812
  #: methods/s3.php:801
4813
  msgid "API secret"
4815
 
4816
  #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:823
4817
  msgid "Failure: No bucket details were given."
4818
+ msgstr "Awaria: brak podanych danych zasobu."
4819
 
4820
  #: addons/s3-enhanced.php:125 methods/openstack2.php:113 methods/s3.php:843
4821
  msgid "Region"
4823
 
4824
  #: methods/s3.php:874
4825
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
4826
+ msgstr "Niepowodzenie: nie mogliśmy uzyskać dostępu lub stworzyć tego zasobu. Prosimy o sprawdzenie poświadczeń dostępu, a jeśli te są poprawne, to spróbuj innej nazwy zasobu (jako inny %s użytkownik może już podjąć swoje imię). "
4827
 
4828
  #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4829
  #: methods/s3.php:897
4833
  #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4834
  #: methods/s3.php:897
4835
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4836
+ msgstr "Z powodzeniem uzyskano dostęp do zasobu, ale próba utworzenia w nich pliku zakończyła się niepowodzeniem."
4837
 
4838
  #: addons/googlecloud.php:689 methods/s3.php:887
4839
  msgid "We accessed the bucket, and were able to create files within it."
4840
+ msgstr "Uzyskaliśmy dostęp do zasobu i byliśmy w stanie tworzyć w nim pliki."
4841
 
4842
  #: methods/s3.php:890
4843
  msgid "The communication with %s was encrypted."
4965
 
4966
  #: methods/s3.php:411
4967
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
4968
+ msgstr "%s Błąd: nie udało się utworzyć zasobu %s. Sprawdź swoje uprawnienia i poświadczenia. "
4969
 
4970
  #: addons/googlecloud.php:826 methods/googledrive.php:904
4971
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
languages/updraftplus-pt_BR.mo CHANGED
Binary file
languages/updraftplus-pt_BR.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-pt_PT.mo CHANGED
Binary file
languages/updraftplus-pt_PT.po CHANGED
@@ -2,12 +2,12 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-11-23 13:55:10+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
@@ -98,7 +98,7 @@ msgstr ""
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
- msgstr ""
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
@@ -142,7 +142,7 @@ msgstr ""
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
- msgstr ""
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
@@ -214,7 +214,7 @@ msgstr ""
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
- msgstr ""
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
@@ -238,7 +238,7 @@ msgstr ""
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
- msgstr ""
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
@@ -296,7 +296,7 @@ msgstr ""
296
 
297
  #: admin.php:521
298
  msgid "Saving..."
299
- msgstr ""
300
 
301
  #: admin.php:538
302
  msgid "Please enter a valid URL"
@@ -340,7 +340,7 @@ msgstr ""
340
 
341
  #: admin.php:3382
342
  msgid "stop"
343
- msgstr ""
344
 
345
  #: admin.php:4294
346
  msgid "Total backup size:"
@@ -348,7 +348,7 @@ msgstr ""
348
 
349
  #: admin.php:5212
350
  msgid "Your settings have been saved."
351
- msgstr ""
352
 
353
  #: addons/onedrive.php:50
354
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
@@ -392,7 +392,7 @@ msgstr ""
392
 
393
  #: admin.php:2727
394
  msgid "Dismiss"
395
- msgstr ""
396
 
397
  #: class-updraftplus.php:3576
398
  msgid "It will be imported as a new site."
@@ -464,7 +464,7 @@ msgstr "Ferramentas avançadas"
464
 
465
  #: admin.php:362
466
  msgid "Extensions"
467
- msgstr "Extensões"
468
 
469
  #: admin.php:471
470
  msgid "You have chosen to backup files, but no file entities have been selected"
@@ -517,7 +517,7 @@ msgstr ""
517
 
518
  #: admin.php:5111
519
  msgid "settings"
520
- msgstr "definições"
521
 
522
  #: admin.php:5111
523
  msgid "Not got any remote storage?"
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-05-24 12:52:11+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
+ msgstr "recomendado"
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
+ msgstr "Agora"
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
+ msgstr "Detalhes"
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
+ msgstr "Descrição"
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
296
 
297
  #: admin.php:521
298
  msgid "Saving..."
299
+ msgstr "Salvando..."
300
 
301
  #: admin.php:538
302
  msgid "Please enter a valid URL"
340
 
341
  #: admin.php:3382
342
  msgid "stop"
343
+ msgstr "Parar"
344
 
345
  #: admin.php:4294
346
  msgid "Total backup size:"
348
 
349
  #: admin.php:5212
350
  msgid "Your settings have been saved."
351
+ msgstr "As suas configurações foram gravadas."
352
 
353
  #: addons/onedrive.php:50
354
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
392
 
393
  #: admin.php:2727
394
  msgid "Dismiss"
395
+ msgstr "Dispersar"
396
 
397
  #: class-updraftplus.php:3576
398
  msgid "It will be imported as a new site."
464
 
465
  #: admin.php:362
466
  msgid "Extensions"
467
+ msgstr "Extenções"
468
 
469
  #: admin.php:471
470
  msgid "You have chosen to backup files, but no file entities have been selected"
517
 
518
  #: admin.php:5111
519
  msgid "settings"
520
+ msgstr " - opções"
521
 
522
  #: admin.php:5111
523
  msgid "Not got any remote storage?"
languages/updraftplus-ro_RO.mo CHANGED
Binary file
languages/updraftplus-ro_RO.po CHANGED
@@ -2,17 +2,17 @@
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-06-08 15:37:21+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
14
  msgid "FAQs"
15
- msgstr ""
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
@@ -36,35 +36,35 @@ msgstr ""
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
- msgstr ""
40
 
41
  #: backup.php:1987
42
  msgid "Failed to open directory (check the file permissions and ownership): %s"
43
- msgstr ""
44
 
45
  #: central/bootstrap.php:419
46
  msgid "Public key was sent to:"
47
- msgstr ""
48
 
49
  #: central/bootstrap.php:424
50
  msgid "Key size: %d bits"
51
- msgstr ""
52
 
53
  #: central/bootstrap.php:439
54
  msgid "Dashboard at"
55
- msgstr ""
56
 
57
  #: central/bootstrap.php:439
58
  msgid "Use the alternative method for making a connection with the dashboard."
59
- msgstr ""
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
- msgstr ""
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
- msgstr ""
68
 
69
  #: addons/migrator.php:2158
70
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
@@ -76,33 +76,33 @@ msgstr ""
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
79
- msgstr ""
80
 
81
  #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
- msgstr ""
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
- msgstr ""
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
- msgstr ""
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
- msgstr ""
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
- msgstr ""
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
- msgstr ""
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
@@ -110,173 +110,173 @@ msgstr ""
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
113
- msgstr ""
114
 
115
  #: central/bootstrap.php:439
116
  msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
- msgstr ""
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
- msgstr ""
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
- msgstr ""
126
 
127
  #: methods/email.php:77
128
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
- msgstr ""
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
- msgstr ""
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
- msgstr ""
138
 
139
  #: methods/googledrive.php:417
140
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
- msgstr ""
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
- msgstr ""
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
149
- msgstr ""
150
 
151
  #: admin.php:3959
152
  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)."
153
- msgstr ""
154
 
155
  #: class-updraftplus.php:3529 restorer.php:926
156
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
157
- msgstr ""
158
 
159
  #: admin.php:3770
160
  msgid "(tap on an icon to select or unselect)"
161
- msgstr ""
162
 
163
  #: backup.php:833 class-updraftplus.php:2411
164
  msgid "The backup was aborted by the user"
165
- msgstr ""
166
 
167
  #: central/bootstrap.php:50
168
  msgid "UpdraftCentral Connection"
169
- msgstr ""
170
 
171
  #: central/bootstrap.php:53
172
  msgid "An UpdraftCentral connection has been made successfully."
173
- msgstr ""
174
 
175
  #: central/bootstrap.php:55
176
  msgid "A new UpdraftCentral connection has not been made."
177
- msgstr ""
178
 
179
  #: central/bootstrap.php:58
180
  msgid "The key referred to was unknown."
181
- msgstr ""
182
 
183
  #: central/bootstrap.php:64
184
  msgid "You are not logged into this WordPress site in your web browser."
185
- msgstr ""
186
 
187
  #: central/bootstrap.php:64
188
  msgid "You must visit this URL in the same browser and login session as you created the key in."
189
- msgstr ""
190
 
191
  #: central/bootstrap.php:71
192
  msgid "You must visit this link in the same browser and login session as you created the key in."
193
- msgstr ""
194
 
195
  #: central/bootstrap.php:75
196
  msgid "This connection appears to already have been made."
197
- msgstr ""
198
 
199
  #: central/bootstrap.php:83
200
  msgid "Close..."
201
- msgstr ""
202
 
203
  #: central/bootstrap.php:196
204
  msgid "An invalid URL was entered"
205
- msgstr ""
206
 
207
  #: central/bootstrap.php:313 central/bootstrap.php:324
208
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
209
- msgstr ""
210
 
211
  #: central/bootstrap.php:381
212
  msgid "Key description"
213
- msgstr ""
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
- msgstr ""
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
221
- msgstr ""
222
 
223
  #: central/bootstrap.php:419
224
  msgid "Access this site as user:"
225
- msgstr ""
226
 
227
  #: central/bootstrap.php:422
228
  msgid "Created:"
229
- msgstr ""
230
 
231
  #: central/bootstrap.php:429
232
  msgid "Delete..."
233
- msgstr ""
234
 
235
  #: central/bootstrap.php:435
236
  msgid "Create new key"
237
- msgstr ""
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
- msgstr ""
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
245
- msgstr ""
246
 
247
  #: central/bootstrap.php:439
248
  msgid "URL of mothership"
249
- msgstr ""
250
 
251
  #: central/bootstrap.php:452
252
  msgid "View recent UpdraftCentral log events"
253
- msgstr ""
254
 
255
  #: central/bootstrap.php:452
256
  msgid "fetch..."
257
- msgstr ""
258
 
259
  #: central/bootstrap.php:463
260
  msgid "UpdraftCentral (Remote Control)"
261
- msgstr ""
262
 
263
  #: class-updraftplus.php:356 class-updraftplus.php:401
264
  msgid "The given file was not found, or could not be read."
265
- msgstr ""
266
 
267
  #: methods/updraftvault.php:214
268
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
269
- msgstr ""
270
 
271
  #: methods/updraftvault.php:269 methods/updraftvault.php:275
272
  #: methods/updraftvault.php:281
273
  msgid "or (annual discount)"
274
- msgstr ""
275
 
276
  #: methods/updraftvault.php:270 methods/updraftvault.php:276
277
  #: methods/updraftvault.php:282
278
  msgid "%s per year"
279
- msgstr ""
280
 
281
  #: addons/copycom.php:60 addons/copycom.php:526
282
  msgid "Barracuda are closing down Copy.Com on May 1st, 2016. See:"
@@ -288,67 +288,67 @@ msgstr ""
288
 
289
  #: admin.php:477
290
  msgid "Fetching..."
291
- msgstr ""
292
 
293
  #: admin.php:485
294
  msgid "Error: the server sent us a response which we did not understand."
295
- msgstr ""
296
 
297
  #: admin.php:521
298
  msgid "Saving..."
299
- msgstr ""
300
 
301
  #: admin.php:538
302
  msgid "Please enter a valid URL"
303
- msgstr ""
304
 
305
  #: admin.php:539
306
  msgid "We requested to delete the file, but could not understand the server's response"
307
- msgstr ""
308
 
309
  #: admin.php:545
310
  msgid "You should save your changes to ensure that they are used for making your backup."
311
- msgstr ""
312
 
313
  #: admin.php:2599
314
  msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
315
- msgstr ""
316
 
317
  #: admin.php:2863
318
  msgid "calculate"
319
- msgstr ""
320
 
321
  #: admin.php:2934
322
  msgid "this backup set"
323
- msgstr ""
324
 
325
  #: admin.php:2937
326
  msgid "these backup sets"
327
- msgstr ""
328
 
329
  #: admin.php:3103
330
  msgid "reset"
331
- msgstr ""
332
 
333
  #: admin.php:3149 admin.php:3153
334
  msgid "Wipe settings"
335
- msgstr ""
336
 
337
  #: admin.php:3220
338
  msgid "The backup has finished running"
339
- msgstr ""
340
 
341
  #: admin.php:3382
342
  msgid "stop"
343
- msgstr ""
344
 
345
  #: admin.php:4294
346
  msgid "Total backup size:"
347
- msgstr ""
348
 
349
  #: admin.php:5212
350
  msgid "Your settings have been saved."
351
- msgstr ""
352
 
353
  #: addons/onedrive.php:50
354
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
@@ -356,11 +356,11 @@ msgstr ""
356
 
357
  #: backup.php:386
358
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
359
- msgstr ""
360
 
361
  #: restorer.php:1533
362
  msgid "Uploads URL:"
363
- msgstr ""
364
 
365
  #: addons/multisite.php:374 addons/multisite.php:384
366
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
@@ -388,23 +388,23 @@ msgstr ""
388
 
389
  #: admin.php:556
390
  msgid "Please fill in the required information."
391
- msgstr ""
392
 
393
  #: admin.php:2727
394
  msgid "Dismiss"
395
- msgstr ""
396
 
397
  #: class-updraftplus.php:3576
398
  msgid "It will be imported as a new site."
399
- msgstr ""
400
 
401
  #: class-updraftplus.php:3576
402
  msgid "Please read this link for important information on this process."
403
- msgstr ""
404
 
405
  #: class-updraftplus.php:3580 restorer.php:1553
406
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
407
- msgstr ""
408
 
409
  #: restorer.php:1894
410
  msgid "Skipping table %s: this table will not be restored"
@@ -452,116 +452,116 @@ msgstr ""
452
 
453
  #: admin.php:3101
454
  msgid "Call WordPress action:"
455
- msgstr ""
456
 
457
  #: admin.php:2751
458
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
459
- msgstr ""
460
 
461
  #: admin.php:354 admin.php:2395
462
  msgid "Advanced Tools"
463
- msgstr ""
464
 
465
  #: admin.php:362
466
  msgid "Extensions"
467
- msgstr ""
468
 
469
  #: admin.php:471
470
  msgid "You have chosen to backup files, but no file entities have been selected"
471
- msgstr ""
472
 
473
  #: admin.php:544
474
  msgctxt "(verb)"
475
  msgid "Download"
476
- msgstr ""
477
 
478
  #: admin.php:2192 admin.php:2201
479
  msgid "Sufficient information about the in-progress restoration operation could not be found."
480
- msgstr ""
481
 
482
  #: admin.php:2396
483
  msgid "Premium / Extensions"
484
- msgstr ""
485
 
486
  #: admin.php:2521
487
  msgid "Backup Contents And Schedule"
488
- msgstr ""
489
 
490
  #: admin.php:2718
491
  msgid "%s minutes, %s seconds"
492
- msgstr ""
493
 
494
  #: admin.php:2720
495
  msgid "Unfinished restoration"
496
- msgstr ""
497
 
498
  #: admin.php:2721
499
  msgid "You have an unfinished restoration operation, begun %s ago."
500
- msgstr ""
501
 
502
  #: admin.php:2726
503
  msgid "Continue restoration"
504
- msgstr ""
505
 
506
  #: admin.php:2747
507
  msgid "Include the database in the backup"
508
- msgstr ""
509
 
510
  #: admin.php:2749
511
  msgid "Include any files in the backup"
512
- msgstr ""
513
 
514
  #: admin.php:5111
515
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
516
- msgstr ""
517
 
518
  #: admin.php:5111
519
  msgid "settings"
520
- msgstr ""
521
 
522
  #: admin.php:5111
523
  msgid "Not got any remote storage?"
524
- msgstr ""
525
 
526
  #: admin.php:5111
527
  msgid "Check out UpdraftPlus Vault."
528
- msgstr ""
529
 
530
  #: admin.php:5113
531
  msgid "Send this backup to remote storage"
532
- msgstr ""
533
 
534
  #: admin.php:3150
535
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
536
- msgstr ""
537
 
538
  #: admin.php:3150
539
  msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
540
- msgstr ""
541
 
542
  #: admin.php:3682
543
  msgid "Files backup schedule"
544
- msgstr ""
545
 
546
  #: admin.php:3715
547
  msgid "Incremental file backup schedule"
548
- msgstr ""
549
 
550
  #: admin.php:3725
551
  msgid "Database backup schedule"
552
- msgstr ""
553
 
554
  #: admin.php:3760
555
  msgid "Sending Your Backup To Remote Storage"
556
- msgstr ""
557
 
558
  #: admin.php:3819
559
  msgid "File Options"
560
- msgstr ""
561
 
562
  #: admin.php:4849
563
  msgid "Skipping: this archive was already restored."
564
- msgstr ""
565
 
566
  #: addons/googlecloud.php:860
567
  msgid "You must use a bucket name that is unique, for all %s users."
@@ -694,7 +694,7 @@ msgstr ""
694
 
695
  #: class-updraftplus.php:2428
696
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
697
- msgstr ""
698
 
699
  #: addons/googlecloud.php:854
700
  msgid "Project ID"
@@ -742,27 +742,27 @@ msgstr ""
742
 
743
  #: admin.php:3076
744
  msgid "Not installed"
745
- msgstr ""
746
 
747
  #: admin.php:3076
748
  msgid "required for some remote storage providers"
749
- msgstr ""
750
 
751
  #: backup.php:1408
752
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
753
- msgstr ""
754
 
755
  #: backup.php:1509 backup.php:1511
756
  msgid "The database backup appears to have failed"
757
- msgstr ""
758
 
759
  #: backup.php:1509
760
  msgid "no options or sitemeta table was found"
761
- msgstr ""
762
 
763
  #: backup.php:1511
764
  msgid "the options table was not found"
765
- msgstr ""
766
 
767
  #: addons/googlecloud.php:215 addons/googlecloud.php:268
768
  #: addons/googlecloud.php:288 addons/googlecloud.php:735
@@ -794,67 +794,67 @@ msgstr ""
794
 
795
  #: admin.php:548
796
  msgid "day"
797
- msgstr ""
798
 
799
  #: admin.php:549
800
  msgid "in the month"
801
- msgstr ""
802
 
803
  #: admin.php:550
804
  msgid "day(s)"
805
- msgstr ""
806
 
807
  #: admin.php:551
808
  msgid "hour(s)"
809
- msgstr ""
810
 
811
  #: admin.php:552
812
  msgid "week(s)"
813
- msgstr ""
814
 
815
  #: admin.php:553
816
  msgid "For backups older than"
817
- msgstr ""
818
 
819
  #: admin.php:555
820
  msgid "Processing..."
821
- msgstr ""
822
 
823
  #: admin.php:1614
824
  msgid "Backup sets removed: %d"
825
- msgstr ""
826
 
827
  #: admin.php:2869
828
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
829
- msgstr ""
830
 
831
  #: admin.php:2920
832
  msgid "Actions upon selected backups"
833
- msgstr ""
834
 
835
  #: admin.php:2922
836
  msgid "Select all"
837
- msgstr ""
838
 
839
  #: admin.php:2923
840
  msgid "Deselect"
841
- msgstr ""
842
 
843
  #: admin.php:2934 admin.php:2937
844
  msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
845
- msgstr ""
846
 
847
  #: admin.php:3754
848
  msgid "or to configure more complex schedules"
849
- msgstr ""
850
 
851
  #: restorer.php:707
852
  msgid "Deferring..."
853
- msgstr ""
854
 
855
  #: updraftplus.php:147
856
  msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
857
- msgstr ""
858
 
859
  #: addons/morestorage.php:26
860
  msgid "(as many as you like)"
@@ -866,43 +866,43 @@ msgstr ""
866
 
867
  #: methods/updraftvault.php:563
868
  msgid "You do not currently have any UpdraftPlus Vault quota"
869
- msgstr ""
870
 
871
  #: restorer.php:1978
872
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
873
- msgstr ""
874
 
875
  #: restorer.php:1978
876
  msgid "This database needs to be deployed on MySQL version %s or later."
877
- msgstr ""
878
 
879
  #: admin.php:2324
880
  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."
881
- msgstr ""
882
 
883
  #: admin.php:2649
884
  msgid "No advertising links on UpdraftPlus settings page"
885
- msgstr ""
886
 
887
  #: class-updraftplus.php:3613
888
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
889
- msgstr ""
890
 
891
  #: class-updraftplus.php:3613
892
  msgid "You must upgrade MySQL to be able to use this database."
893
- msgstr ""
894
 
895
  #: methods/updraftvault.php:303
896
  msgid "Don't know your email address, or forgotten your password?"
897
- msgstr ""
898
 
899
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
900
  msgid "Read the FAQs here."
901
- msgstr ""
902
 
903
  #: methods/updraftvault.php:296
904
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
905
- msgstr ""
906
 
907
  #: addons/s3-enhanced.php:40
908
  msgid "Server-side encryption"
@@ -914,92 +914,92 @@ msgstr ""
914
 
915
  #: methods/updraftvault.php:572
916
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
917
- msgstr ""
918
 
919
  #: admin.php:804
920
  msgid "%s has been chosen for remote storage, but you are not currently connected."
921
- msgstr ""
922
 
923
  #: admin.php:804
924
  msgid "Go to the remote storage settings in order to connect."
925
- msgstr ""
926
 
927
  #: methods/updraftvault.php:285
928
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
929
- msgstr ""
930
 
931
  #: admin.php:523
932
  msgid "Connecting..."
933
- msgstr ""
934
 
935
  #: admin.php:525
936
  msgid "Disconnecting..."
937
- msgstr ""
938
 
939
  #: admin.php:526
940
  msgid "Counting..."
941
- msgstr ""
942
 
943
  #: admin.php:527
944
  msgid "Update quota count"
945
- msgstr ""
946
 
947
  #: methods/updraftvault.php:48 methods/updraftvault.php:71
948
  msgid "Updraft Vault"
949
- msgstr ""
950
 
951
  #: methods/updraftvault.php:205
952
  msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
953
- msgstr ""
954
 
955
  #: methods/updraftvault.php:208
956
  msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
957
- msgstr ""
958
 
959
  #: methods/updraftvault.php:211
960
  msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
961
- msgstr ""
962
 
963
  #: methods/updraftvault.php:247 methods/updraftvault.php:264
964
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
965
- msgstr ""
966
 
967
  #: methods/updraftvault.php:247 methods/updraftvault.php:264
968
  msgid "Press a button to get started."
969
- msgstr ""
970
 
971
  #: methods/updraftvault.php:250
972
  msgid "First time user?"
973
- msgstr ""
974
 
975
  #: methods/updraftvault.php:251
976
  msgid "Show the options"
977
- msgstr ""
978
 
979
  #: methods/updraftvault.php:254
980
  msgid "Already purchased space?"
981
- msgstr ""
982
 
983
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
984
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
985
- msgstr ""
986
 
987
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
988
  msgid "Read more about it here."
989
- msgstr ""
990
 
991
  #: methods/updraftvault.php:268 methods/updraftvault.php:274
992
  #: methods/updraftvault.php:280
993
  msgid "%s per quarter"
994
- msgstr ""
995
 
996
  #: methods/updraftvault.php:285
997
  msgid "Subscriptions can be cancelled at any time."
998
- msgstr ""
999
 
1000
  #: methods/updraftvault.php:291 methods/updraftvault.php:306
1001
  msgid "Back..."
1002
- msgstr ""
1003
 
1004
  #: methods/updraftvault.php:298
1005
  msgid "E-mail"
@@ -1007,52 +1007,52 @@ msgstr ""
1007
 
1008
  #: methods/updraftvault.php:303
1009
  msgid "Go here for help"
1010
- msgstr ""
1011
 
1012
  #: methods/updraftvault.php:327
1013
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1014
- msgstr ""
1015
 
1016
  #: methods/updraftvault.php:331
1017
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1018
- msgstr ""
1019
 
1020
  #: methods/updraftvault.php:331
1021
  msgid "Well done - there's nothing more needed to set up."
1022
- msgstr ""
1023
 
1024
  #: methods/updraftvault.php:331
1025
  msgid "Vault owner"
1026
- msgstr ""
1027
 
1028
  #: methods/updraftvault.php:333
1029
  msgid "Quota:"
1030
- msgstr ""
1031
 
1032
  #: admin.php:524 methods/updraftvault.php:341
1033
  msgid "Disconnect"
1034
- msgstr ""
1035
 
1036
  #: methods/updraftvault.php:349
1037
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1038
- msgstr ""
1039
 
1040
  #: methods/updraftvault.php:349
1041
  msgid "You can get more quota here"
1042
- msgstr ""
1043
 
1044
  #: methods/updraftvault.php:354 methods/updraftvault.php:397
1045
  msgid "Current use:"
1046
- msgstr ""
1047
 
1048
  #: methods/updraftvault.php:357 methods/updraftvault.php:359
1049
  #: methods/updraftvault.php:416
1050
  msgid "Get more quota"
1051
- msgstr ""
1052
 
1053
  #: methods/updraftvault.php:361 methods/updraftvault.php:416
1054
  msgid "Refresh current status"
1055
- msgstr ""
1056
 
1057
  #: addons/s3-enhanced.php:322
1058
  msgid "Allow download"
@@ -1072,15 +1072,15 @@ msgstr ""
1072
 
1073
  #: backup.php:2884
1074
  msgid "The zip engine returned the message: %s."
1075
- msgstr ""
1076
 
1077
  #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:904
1078
  msgid "Delete failed:"
1079
- msgstr ""
1080
 
1081
  #: addons/migrator.php:1706 admin.php:533
1082
  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."
1083
- msgstr ""
1084
 
1085
  #: addons/migrator.php:1721
1086
  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."
@@ -1088,19 +1088,19 @@ msgstr ""
1088
 
1089
  #: admin.php:531
1090
  msgid "Creating..."
1091
- msgstr "Se creeaza.."
1092
 
1093
  #: admin.php:534
1094
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1095
- msgstr "Va rugam denumiti aceasta cheie (de exemplu numele siteului pentru care e folosita):"
1096
 
1097
  #: admin.php:536
1098
  msgid "key name"
1099
- msgstr "numele cheii"
1100
 
1101
  #: admin.php:537
1102
  msgid "Deleting..."
1103
- msgstr "Se sterge..."
1104
 
1105
  #: addons/migrator.php:1734 admin.php:540
1106
  msgid "Testing connection..."
@@ -1108,27 +1108,27 @@ msgstr "Testare conexiune..."
1108
 
1109
  #: admin.php:1257
1110
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1111
- msgstr "Acest back-up nu este cunoscut de catre UpDraftPlus ca fiind creeat de actuala versiune instalata de WordPress dar a fost gasita in zona de back-up la distanta sau a fost trimisa de pe un site extern. "
1112
 
1113
  #: admin.php:1257
1114
  msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1115
- msgstr "Verificati ca aceste fisiere de back-up sunt chiar cele aferente acestui site, inainte de a da restaurare (sa nu fie fisiere de back-up ale unui alt site, fara legatura cu cel in cauza)."
1116
 
1117
  #: admin.php:2977
1118
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
1119
- msgstr "Apar mai multe intreruperi (time-out-uri) decat in mod normal. Va recomandam sa modificati setarea safe_mode pe off sau sa restaurati cate o entitate pe sesiune, <a href=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\"> sau sa restaurati mannual </a>."
1120
 
1121
  #: admin.php:4381
1122
  msgid "Backup sent to remote site - not available for download."
1123
- msgstr "Back-up trimis pe un site extern - nu este disponibil pentru download."
1124
 
1125
  #: admin.php:4382
1126
  msgid "Site"
1127
- msgstr "Site"
1128
 
1129
  #: admin.php:4609
1130
  msgid "(backup set imported from remote location)"
1131
- msgstr "(fisierele de back-up au fost importate de pe locatia externa)"
1132
 
1133
  #: methods/addon-base.php:177
1134
  msgid "This storage method does not allow downloading"
@@ -1168,11 +1168,11 @@ msgstr "O cheie cu acest nume exista deja, numele trebuie sa fie unic."
1168
 
1169
  #: addons/migrator.php:1818 central/bootstrap.php:367
1170
  msgid "Key created successfully."
1171
- msgstr "Cheia a fost creata cu succes."
1172
 
1173
  #: addons/migrator.php:1818 central/bootstrap.php:367
1174
  msgid "You must copy and paste this key now - it cannot be shown again."
1175
- msgstr "Va trebui sa realizati copy/paste (copiere lipire) pentru cheie acum - aceasta nu va mai putea fi afisata ulterior."
1176
 
1177
  #: addons/migrator.php:2136
1178
  msgid "Keys for this site are created in the section below the one you just pressed in."
@@ -1200,19 +1200,19 @@ msgstr "Chei existente"
1200
 
1201
  #: methods/ftp.php:307
1202
  msgid "FTP server"
1203
- msgstr "FTP server"
1204
 
1205
  #: methods/ftp.php:311
1206
  msgid "FTP login"
1207
- msgstr "Logare FTP"
1208
 
1209
  #: methods/ftp.php:315
1210
  msgid "FTP password"
1211
- msgstr "Parola FTP"
1212
 
1213
  #: methods/ftp.php:319
1214
  msgid "Remote path"
1215
- msgstr "Cale la distanta"
1216
 
1217
  #: methods/ftp.php:323
1218
  msgid "Passive mode"
@@ -1220,7 +1220,7 @@ msgstr "Mod pasiv"
1220
 
1221
  #: methods/ftp.php:325
1222
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1223
- msgstr "Aproape toate serverele FTP folosesc modul pasivl daca totusi aveti nevoie de modul activ debifati aici."
1224
 
1225
  #: addons/migrator.php:1834
1226
  msgid "key"
@@ -1252,7 +1252,7 @@ msgstr "Niciun site destinatie nu a fost inca adaugat."
1252
 
1253
  #: addons/migrator.php:1894 admin.php:532
1254
  msgid "Send to site:"
1255
- msgstr "Trimite la site-ul:"
1256
 
1257
  #: addons/migrator.php:1900 admin.php:541
1258
  msgid "Send"
@@ -1280,11 +1280,11 @@ msgstr ""
1280
 
1281
  #: admin.php:528
1282
  msgid "Adding..."
1283
- msgstr ""
1284
 
1285
  #: addons/migrator.php:2141 admin.php:529
1286
  msgid "Add site"
1287
- msgstr ""
1288
 
1289
  #: addons/migrator.php:167
1290
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
@@ -1296,7 +1296,7 @@ msgstr ""
1296
 
1297
  #: restorer.php:1980
1298
  msgid "To use this backup, your database server needs to support the %s character set."
1299
- msgstr ""
1300
 
1301
  #: udaddons/options.php:338
1302
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
@@ -1324,15 +1324,15 @@ msgstr ""
1324
 
1325
  #: admin.php:520 admin.php:545
1326
  msgid "You have made changes to your settings, and not saved."
1327
- msgstr ""
1328
 
1329
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1330
  msgid "To remove the block, please go here."
1331
- msgstr ""
1332
 
1333
  #: methods/email.php:73
1334
  msgid "configure it here"
1335
- msgstr ""
1336
 
1337
  #: addons/onedrive.php:439
1338
  msgid "Please re-authorize the connection to your %s account."
@@ -1424,15 +1424,15 @@ msgstr ""
1424
 
1425
  #: admin.php:396
1426
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1427
- msgstr ""
1428
 
1429
  #: admin.php:398
1430
  msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1431
- msgstr ""
1432
 
1433
  #: methods/s3.php:743
1434
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1435
- msgstr ""
1436
 
1437
  #: addons/s3-enhanced.php:51
1438
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
@@ -1537,15 +1537,15 @@ msgstr ""
1537
 
1538
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1539
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
1540
- msgstr ""
1541
 
1542
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1543
  msgid "It appears that your web server's IP Address (%s) is blocked."
1544
- msgstr ""
1545
 
1546
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1547
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1548
- msgstr ""
1549
 
1550
  #: addons/autobackup.php:662
1551
  msgid "Update cancelled - reload page to try again."
@@ -1553,63 +1553,63 @@ msgstr ""
1553
 
1554
  #: admin.php:389 admin.php:403
1555
  msgid "Dismiss (for %s months)"
1556
- msgstr ""
1557
 
1558
  #: admin.php:391
1559
  msgid "Thank you for backing up with UpdraftPlus!"
1560
- msgstr ""
1561
 
1562
  #: admin.php:396
1563
  msgid "Free Newsletter"
1564
- msgstr ""
1565
 
1566
  #: admin.php:396
1567
  msgid "Follow this link to sign up."
1568
- msgstr ""
1569
 
1570
  #: admin.php:398
1571
  msgid "UpdraftPlus Premium"
1572
- msgstr ""
1573
 
1574
  #: admin.php:398
1575
  msgid "Compare with the free version"
1576
- msgstr ""
1577
 
1578
  #: admin.php:398
1579
  msgid "Go to the shop."
1580
- msgstr ""
1581
 
1582
  #: admin.php:400
1583
  msgid "More Quality Plugins"
1584
- msgstr ""
1585
 
1586
  #: admin.php:400
1587
  msgid "Free two-factor security plugin"
1588
- msgstr ""
1589
 
1590
  #: admin.php:400
1591
  msgid "Premium WooCommerce plugins"
1592
- msgstr ""
1593
 
1594
  #: class-updraftplus.php:3389
1595
  msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1596
- msgstr ""
1597
 
1598
  #: admin.php:2160
1599
  msgid "Newsletter sign-up"
1600
- msgstr ""
1601
 
1602
  #: admin.php:2544
1603
  msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1604
- msgstr ""
1605
 
1606
  #: admin.php:2544
1607
  msgid "The first step is to de-install the free version."
1608
- msgstr ""
1609
 
1610
  #: admin.php:3628
1611
  msgid "No backup has been completed"
1612
- msgstr ""
1613
 
1614
  #: addons/fixtime.php:422
1615
  msgid "(at same time as files backup)"
@@ -1617,125 +1617,125 @@ msgstr ""
1617
 
1618
  #: admin.php:2589
1619
  msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1620
- msgstr ""
1621
 
1622
  #: admin.php:2594
1623
  msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1624
- msgstr ""
1625
 
1626
  #: admin.php:2609
1627
  msgid "Backup extra files and databases"
1628
- msgstr ""
1629
 
1630
  #: admin.php:2614
1631
  msgid "Migrate / clone (i.e. copy) websites"
1632
- msgstr ""
1633
 
1634
  #: admin.php:2619
1635
  msgid "Basic email reporting"
1636
- msgstr ""
1637
 
1638
  #: admin.php:2624
1639
  msgid "Advanced reporting features"
1640
- msgstr ""
1641
 
1642
  #: admin.php:2629
1643
  msgid "Automatic backup when updating WP/plugins/themes"
1644
- msgstr ""
1645
 
1646
  #: admin.php:2634
1647
  msgid "Send backups to multiple remote destinations"
1648
- msgstr ""
1649
 
1650
  #: admin.php:2639
1651
  msgid "Database encryption"
1652
- msgstr ""
1653
 
1654
  #: admin.php:2644
1655
  msgid "Restore backups from other plugins"
1656
- msgstr ""
1657
 
1658
  #: admin.php:2654
1659
  msgid "Scheduled backups"
1660
- msgstr ""
1661
 
1662
  #: admin.php:2659
1663
  msgid "Fix backup time"
1664
- msgstr ""
1665
 
1666
  #: admin.php:2664
1667
  msgid "Network/Multisite support"
1668
- msgstr ""
1669
 
1670
  #: admin.php:2669
1671
  msgid "Lock settings access"
1672
- msgstr ""
1673
 
1674
  #: admin.php:2674
1675
  msgid "Personal support"
1676
- msgstr ""
1677
 
1678
  #: admin.php:2544
1679
  msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1680
- msgstr ""
1681
 
1682
  #: admin.php:2546
1683
  msgid "Get UpdraftPlus Premium"
1684
- msgstr ""
1685
 
1686
  #: admin.php:2547
1687
  msgid "Full feature list"
1688
- msgstr ""
1689
 
1690
  #: admin.php:2548
1691
  msgid "Pre-sales FAQs"
1692
- msgstr ""
1693
 
1694
  #: admin.php:2549
1695
  msgid "Ask a pre-sales question"
1696
- msgstr ""
1697
 
1698
  #: admin.php:2561
1699
  msgid "Get it from"
1700
- msgstr ""
1701
 
1702
  #: admin.php:2565
1703
  msgid "Buy It Now!"
1704
- msgstr ""
1705
 
1706
  #: admin.php:2569
1707
  msgid "Backup WordPress files and database"
1708
- msgstr ""
1709
 
1710
  #: admin.php:2574
1711
  msgid "Translated into over %s languages"
1712
- msgstr ""
1713
 
1714
  #: admin.php:2579
1715
  msgid "Restore from backup"
1716
- msgstr ""
1717
 
1718
  #: admin.php:2584
1719
  msgid "Backup to remote storage"
1720
- msgstr ""
1721
 
1722
  #: admin.php:514
1723
  msgid "You did not select any components to restore. Please select at least one, and then try again."
1724
- msgstr ""
1725
 
1726
  #: admin.php:2891
1727
  msgctxt "Uploader: Drop backup files here - or - Select Files"
1728
  msgid "or"
1729
- msgstr ""
1730
 
1731
  #: admin.php:3868
1732
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1733
  msgid "or"
1734
- msgstr ""
1735
 
1736
  #: methods/s3.php:127 methods/s3.php:128 methods/s3.php:129
1737
  msgid "%s Error: Failed to initialise"
1738
- msgstr ""
1739
 
1740
  #: addons/autobackup.php:920
1741
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
@@ -1744,30 +1744,30 @@ msgstr ""
1744
  #: restorer.php:1957
1745
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1746
  msgid "An error (%s) occurred:"
1747
- msgstr ""
1748
 
1749
  #: admin.php:3637
1750
  msgctxt "i.e. Non-automatic"
1751
  msgid "Manual"
1752
- msgstr ""
1753
 
1754
  #: admin.php:3920
1755
  msgid "Check this box to have a basic report sent to"
1756
- msgstr ""
1757
 
1758
  #: admin.php:3920
1759
  msgid "your site's admin address"
1760
- msgstr ""
1761
 
1762
  #: methods/openstack2.php:102
1763
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
1764
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1765
- msgstr ""
1766
 
1767
  #: methods/openstack2.php:152
1768
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1769
  msgid "tenant"
1770
- msgstr ""
1771
 
1772
  #: addons/sftp.php:340
1773
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
@@ -1796,7 +1796,7 @@ msgstr ""
1796
 
1797
  #: admin.php:2337
1798
  msgid "For even more features and personal support, check out "
1799
- msgstr ""
1800
 
1801
  #: udaddons/options.php:273
1802
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
@@ -1885,7 +1885,7 @@ msgstr ""
1885
  #: addons/autobackup.php:120 addons/autobackup.php:885
1886
  #: addons/autobackup.php:893 admin.php:519
1887
  msgid "Automatic backup before update"
1888
- msgstr ""
1889
 
1890
  #: addons/moredatabase.php:45
1891
  msgid "Database decryption phrase"
@@ -1893,55 +1893,55 @@ msgstr ""
1893
 
1894
  #: backup.php:2886
1895
  msgid "A zip error occurred"
1896
- msgstr ""
1897
 
1898
  #: backup.php:2888
1899
  msgid "your web hosting account appears to be full; please see: %s"
1900
- msgstr ""
1901
 
1902
  #: backup.php:2890
1903
  msgid "check your log for more details."
1904
- msgstr ""
1905
 
1906
  #: admin.php:1842
1907
  msgid "Error: unexpected file read fail"
1908
- msgstr ""
1909
 
1910
  #: class-updraftplus.php:3565
1911
  msgid "Backup label:"
1912
- msgstr ""
1913
 
1914
  #: admin.php:748 admin.php:2427 central/updraftplus-commands.php:304
1915
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1916
- msgstr ""
1917
 
1918
  #: admin.php:2880
1919
  msgid "Upload files into UpdraftPlus."
1920
- msgstr ""
1921
 
1922
  #: admin.php:3112
1923
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1924
- msgstr ""
1925
 
1926
  #: admin.php:3598
1927
  msgid "incremental backup; base backup: %s"
1928
- msgstr ""
1929
 
1930
  #: admin.php:3702 admin.php:3741
1931
  msgid "and retain this many scheduled backups"
1932
- msgstr ""
1933
 
1934
  #: admin.php:4327
1935
  msgid "Backup date"
1936
- msgstr ""
1937
 
1938
  #: admin.php:4328
1939
  msgid "Backup data (click to download)"
1940
- msgstr ""
1941
 
1942
  #: admin.php:3220 admin.php:4632
1943
  msgid "View Log"
1944
- msgstr ""
1945
 
1946
  #: addons/copycom.php:535
1947
  msgid "API Key"
@@ -1965,31 +1965,31 @@ msgstr ""
1965
 
1966
  #: addons/googlecloud.php:822 methods/googledrive.php:900
1967
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1968
- msgstr ""
1969
 
1970
  #: methods/updraftvault.php:512 udaddons/updraftplus-addons.php:642
1971
  msgid "You need to supply both an email address and a password"
1972
- msgstr ""
1973
 
1974
  #: methods/updraftvault.php:572 udaddons/updraftplus-addons.php:741
1975
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1976
- msgstr ""
1977
 
1978
  #: methods/updraftvault.php:575 udaddons/updraftplus-addons.php:745
1979
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
1980
- msgstr ""
1981
 
1982
  #: admin.php:2488
1983
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
1984
- msgstr ""
1985
 
1986
  #: class-updraftplus.php:3584
1987
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
1988
- msgstr ""
1989
 
1990
  #: class-updraftplus.php:3584
1991
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
1992
- msgstr ""
1993
 
1994
  #: addons/migrator.php:1036
1995
  msgid "already done"
@@ -2029,23 +2029,23 @@ msgstr "Trebuie sa va conectati pentru a primi update-uri viitoare la UpdraftPlu
2029
 
2030
  #: class-updraftplus.php:3557
2031
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2032
- msgstr "Site-ul din acest backup rula pe un server web cu versiunea %s %s."
2033
 
2034
  #: class-updraftplus.php:3557
2035
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2036
- msgstr "Acesta este in mod semnificativ mai nou decat serverul in care faceti restaurarea (versiunea %s)."
2037
 
2038
  #: class-updraftplus.php:3557
2039
  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."
2040
- msgstr "Ar trebui sa continuati doar daca nu puteti face update serverului curent si daca sunteti increzator (sau va asumati riscul) ca plugin-urile/temele dvs sunt compatibile cu versiunea mai veche %s."
2041
 
2042
  #: class-updraftplus.php:3557
2043
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2044
- msgstr "Orice cereri de suport care au legatura cu %s ar trebui sa fie adresa firmei dvs. de gazduire web."
2045
 
2046
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2047
  msgid "UpdraftPlus is on social media - check us out here:"
2048
- msgstr "UpdraftPlus este in social media - urmariti-ne aici:"
2049
 
2050
  #: admin.php:2158 class-updraftplus.php:3380 class-updraftplus.php:3409
2051
  msgid "Twitter"
@@ -2065,39 +2065,39 @@ msgstr "LinkedIn"
2065
 
2066
  #: admin.php:4693
2067
  msgid "Why am I seeing this?"
2068
- msgstr "De ce imi apare asta?"
2069
 
2070
  #: admin.php:2868
2071
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2072
- msgstr "Apasati aici pentru a inspecta directorul UpdraftPlus (in contul dvs de gazduire web) pentru orice seturi noi de backup pe care le-ati uploadat. "
2073
 
2074
  #: admin.php:2868
2075
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2076
- msgstr "Locatia acestui director este setata in sectiunea de setari expert, in tab-ul Setari (Settings)"
2077
 
2078
  #: admin.php:1790 admin.php:1802
2079
  msgid "Start backup"
2080
- msgstr "Start Backup"
2081
 
2082
  #: class-updraftplus.php:3529 restorer.php:926
2083
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2084
- msgstr "Utilizati webserverul %s, dar se pare ca nu aveti incarcat modulul %s."
2085
 
2086
  #: admin.php:3542
2087
  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."
2088
- msgstr "Trebuie sa consultati furnizorul dvs de gazduire web pentru a afla cum se seteaza permisiunile unui plugin Wordpress pentru a scrie in director."
2089
 
2090
  #: admin.php:3033
2091
  msgid "Unless you have a problem, you can completely ignore everything here."
2092
- msgstr "Daca nu aveti o problema, puteti ignora in intregime aceasta sectiune."
2093
 
2094
  #: admin.php:1964
2095
  msgid "You will find more information about this in the Settings section."
2096
- msgstr "Puteti gasi mai multe informatii despre asta in sectiunea Setari (Settings)."
2097
 
2098
  #: admin.php:1999
2099
  msgid "This file could not be uploaded"
2100
- msgstr "Acest fisier nu a putut fi uploadat."
2101
 
2102
  #: addons/importer.php:70
2103
  msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
@@ -2109,11 +2109,11 @@ msgstr "Plugin-uri de backup suportate: %s"
2109
 
2110
  #: admin.php:3718
2111
  msgid "Tell me more about incremental backups"
2112
- msgstr "Mai multe informatii despre backup-uri incrementale"
2113
 
2114
  #: admin.php:3069
2115
  msgid "Memory limit"
2116
- msgstr "Limita de memorie"
2117
 
2118
  #: class-updraftplus.php:3671 restorer.php:1368
2119
  msgid "restoration"
@@ -2125,7 +2125,7 @@ msgstr "Tabela care va fi stearsa implicit:%s "
2125
 
2126
  #: backup.php:828
2127
  msgid "Full backup"
2128
- msgstr "Backup complet"
2129
 
2130
  #: backup.php:828
2131
  msgid "Incremental"
@@ -2182,31 +2182,31 @@ msgstr "Start"
2182
 
2183
  #: restorer.php:1985
2184
  msgid "Too many database errors have occurred - aborting"
2185
- msgstr "Au aparut prea multe erori in baza de date - anulare"
2186
 
2187
  #: backup.php:894
2188
  msgid "read more at %s"
2189
- msgstr "cititi mai mult la %s"
2190
 
2191
  #: backup.php:894
2192
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2193
- msgstr "Rapoartele email create de UpdraftPlus (editia gratuita) va aduc cele mai noi stiri UpdraftPlus.com"
2194
 
2195
  #: methods/googledrive.php:906
2196
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2197
- msgstr "N.B. Daca instalati UpdraftPlus pe cateva site-uri Wordpress, nu pueti re-folosi proiectil dvs. trebuie sa creati unul nou din consola dvs. Google API pentru fiecare site."
2198
 
2199
  #: admin.php:4314
2200
  msgid "You have not yet made any backups."
2201
- msgstr "Nu ati facut inca nici un backup."
2202
 
2203
  #: admin.php:3831
2204
  msgid "Database Options"
2205
- msgstr "Optiuni ale bazei de date"
2206
 
2207
  #: admin.php:3130
2208
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken."
2209
- msgstr "Butoanele de mai jos vor rula imediat un backup, independent de programarile platformei Wordpress. Daca acestea ruleaza in timp ce backup-urile programate nu fac absolut nimic (nici macar nu produc un fisier log), inseamna ca programarea este defecta."
2210
 
2211
  #: admin.php:3094
2212
  msgid "%s (%s used)"
@@ -2214,35 +2214,35 @@ msgstr "%s (utilizat %s)"
2214
 
2215
  #: admin.php:3097
2216
  msgid "Plugins for debugging:"
2217
- msgstr "Plugin-uri pentru depanare:"
2218
 
2219
  #: admin.php:3094
2220
  msgid "Free disk space in account:"
2221
- msgstr "Spatiu disponibil in cont:"
2222
 
2223
  #: admin.php:330 admin.php:2392
2224
  msgid "Current Status"
2225
- msgstr "Status curent"
2226
 
2227
  #: admin.php:338 admin.php:1417 admin.php:1656 admin.php:2393 admin.php:2851
2228
  msgid "Existing Backups"
2229
- msgstr "Backup-uri existente"
2230
 
2231
  #: admin.php:2431 admin.php:5188
2232
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2233
- msgstr "Acest buton este dezactivat pentru ca directorul de backup nu are drepturi de scriere (vezi setarile)."
2234
 
2235
  #: admin.php:753
2236
  msgid "Welcome to UpdraftPlus!"
2237
- msgstr "Bina ati venit la UpdraftPlus!"
2238
 
2239
  #: admin.php:753
2240
  msgid "To make a backup, just press the Backup Now button."
2241
- msgstr "Pentru a crea un backup, apasati butonul Start Backup."
2242
 
2243
  #: admin.php:753
2244
  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."
2245
- msgstr "Pentru a schimba oricare dintre setarile implicite de backup, pentru a configura backup-urile programate, a trimite backup-urile catre alte medii de stocare (recomandat) si altele, alegeti sectiunea Setari (Settings)."
2246
 
2247
  #: addons/moredatabase.php:338
2248
  msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
@@ -2314,72 +2314,72 @@ msgstr "incercare de conectare la baza de date esuata"
2314
 
2315
  #: class-updraftplus.php:1237
2316
  msgid "External database (%s)"
2317
- msgstr "Baza de date externa (%s)"
2318
 
2319
  #: methods/googledrive.php:906
2320
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
2321
- msgstr "Accesati acest link catre console dvs. Google API, si odata ajunsi acolo activati optiunea Drive API si creati un Client ID in sectiunea API Access."
2322
 
2323
  #: methods/googledrive.php:381
2324
  msgid "failed to access parent folder"
2325
- msgstr "accesarea folerului parinte a esuat"
2326
 
2327
  #: addons/googlecloud.php:559 addons/onedrive.php:535
2328
  #: methods/googledrive.php:338
2329
  msgid "However, subsequent access attempts failed:"
2330
- msgstr "Oricum, incercarile ulterioare de acces au esuat:"
2331
 
2332
  #: admin.php:4458
2333
  msgid "External database"
2334
- msgstr "Baza de date externa"
2335
 
2336
  #: admin.php:3954
2337
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2338
- msgstr "Output-ul de depanare a tuturor plugin-urilor va fi afisat pe acest ecran - nu fiti surprins cand il veti vedea."
2339
 
2340
  #: admin.php:3894
2341
  msgid "Back up more databases"
2342
- msgstr "Adaugati mai multe baze de date la backup"
2343
 
2344
  #: admin.php:3840
2345
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2346
- msgstr "Nu vreti sa fiti spionat? UpdraftPlus Premium poate encripta backup-ul bazei de date."
2347
 
2348
  #: admin.php:3840
2349
  msgid "It can also backup external databases."
2350
- msgstr "Se pot adauga la backup si baze de date externe."
2351
 
2352
  #: admin.php:3852
2353
  msgid "You can manually decrypt an encrypted database here."
2354
- msgstr "Aici puteti decripta manual o baza de date encriptata."
2355
 
2356
  #: admin.php:3870
2357
  msgid "First, enter the decryption key"
2358
- msgstr "In primul rand, introduceti cheia de decriptare"
2359
 
2360
  #: admin.php:3754
2361
  msgid "use UpdraftPlus Premium"
2362
- msgstr "folositi UpdraftPlus Premium"
2363
 
2364
  #: class-updraftplus.php:3444
2365
  msgid "Decryption failed. The database file is encrypted."
2366
- msgstr "Decriptare esuata. Fisierul bazei de date este encriptat."
2367
 
2368
  #: admin.php:1269
2369
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
2370
- msgstr "Doar baza de date WordPress poate fi restaurata; cu bazele externe trebuie sa realizati operatiunea manual"
2371
 
2372
  #: restorer.php:1613 restorer.php:1932 restorer.php:1967 restorer.php:1980
2373
  msgid "An error occurred on the first %s command - aborting run"
2374
- msgstr "A aparut o eroare la comanda %s - anulati operatiunea"
2375
 
2376
  #: backup.php:1349
2377
  msgid "database connection attempt failed."
2378
- msgstr "Incercare de conectare la baza de date a esuat."
2379
 
2380
  #: addons/moredatabase.php:93 backup.php:1349
2381
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2382
- msgstr "Conectare esuata: verificati detaliile de conectare, verificati ca serverul de baze de date este activ si daca conexiunea la retea este protejata de firewall"
2383
 
2384
  #: addons/google-enhanced.php:75
2385
  msgid "In %s, path names are case sensitive."
@@ -2417,15 +2417,15 @@ msgstr "Daca lasati campul liber, atunci backup-ul va fi amplasat in radacina %s
2417
 
2418
  #: methods/openstack2.php:107
2419
  msgid "Follow this link for more information"
2420
- msgstr "Pentru mai multe informatii folositi linkul acesta"
2421
 
2422
  #: methods/openstack2.php:107
2423
  msgid "Tenant"
2424
- msgstr "Chirias"
2425
 
2426
  #: methods/openstack2.php:116
2427
  msgid "Leave this blank, and a default will be chosen."
2428
- msgstr "Lasati liber acest camp si va fi folosita valoarea implicita"
2429
 
2430
  #: addons/azure.php:515 methods/openstack2.php:133
2431
  msgid "Container"
@@ -2445,11 +2445,11 @@ msgstr "Downloadarea %s esuata"
2445
 
2446
  #: methods/openstack2.php:94
2447
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
2448
- msgstr "Primiti acreditarile de acces de la providerul dumneavoastra OpenStack Swift iar dupa aceasta alegeti un nume pentru contul dumneavoastra de stocare on-line. Acest cont va fi creat pentru dumneavoastra daca nu exista deja."
2449
 
2450
  #: methods/openstack2.php:99 methods/openstack2.php:157
2451
  msgid "authentication URI"
2452
- msgstr "autentificare URI"
2453
 
2454
  #: methods/addon-base.php:75 methods/addon-base.php:80
2455
  msgid "Failed to upload %s"
@@ -2466,11 +2466,11 @@ msgstr "Dropbox"
2466
 
2467
  #: addons/copycom.php:557 addons/onedrive.php:716 methods/dropbox.php:454
2468
  msgid "(You appear to be already authenticated)."
2469
- msgstr "(Se pare ca sunteti deja autentificat)."
2470
 
2471
  #: addons/copycom.php:559 addons/onedrive.php:718 methods/dropbox.php:454
2472
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
2473
- msgstr "<strong>Dupa</strong> ce v-ati salvat setarile (apasand butonul \"Salvati Modificarile\" de mai jos), reveniti aici si urmati acest link pentru a completa autentificarea cu %s."
2474
 
2475
  #: addons/copycom.php:556 addons/onedrive.php:715 methods/dropbox.php:453
2476
  msgid "Authenticate with %s"
@@ -2478,52 +2478,52 @@ msgstr "Autentificare cu %s"
2478
 
2479
  #: methods/cloudfiles.php:409
2480
  msgid "Error downloading remote file: Failed to download"
2481
- msgstr "Eroare la downloadarea fisierului extern: Eroare la downloada"
2482
 
2483
  #: addons/copycom.php:158 addons/copycom.php:182 methods/openstack-base.php:305
2484
  msgid "The %s object was not found"
2485
- msgstr "Obiectul %s nu a fost gasit"
2486
 
2487
  #: methods/openstack-base.php:387
2488
  msgid "%s error - we accessed the container, but failed to create a file within it"
2489
- msgstr "Eroare %s - s-a incercat accesarea containerului, dar nu s-a reusit crearea unui fisier in el"
2490
 
2491
  #: methods/openstack-base.php:388 methods/openstack-base.php:393
2492
  msgid "Region: %s"
2493
- msgstr "Regiune: %s"
2494
 
2495
  #: methods/openstack-base.php:44 methods/openstack-base.php:228
2496
  #: methods/openstack-base.php:297
2497
  msgid "Could not access %s container"
2498
- msgstr "Nu s-a putu accesa containerul %s"
2499
 
2500
  #: addons/copycom.php:558 addons/googlecloud.php:902 addons/onedrive.php:717
2501
  #: methods/dropbox.php:460 methods/googledrive.php:955
2502
  msgid "Account holder's name: %s."
2503
- msgstr "Numele titularului de cont: %s."
2504
 
2505
  #: methods/openstack-base.php:36 methods/openstack-base.php:100
2506
  #: methods/openstack-base.php:107 methods/openstack-base.php:220
2507
  #: methods/openstack-base.php:285
2508
  msgid "%s error - failed to access the container"
2509
- msgstr "Eroare %s - accesul containerului esuat"
2510
 
2511
  #: methods/googledrive.php:935
2512
  msgid "<strong>This is NOT a folder name</strong>."
2513
- msgstr "<strong>Acesta NU este un nume de folder</strong>."
2514
 
2515
  #: methods/googledrive.php:935
2516
  msgid "It is an ID number internal to Google Drive"
2517
- msgstr "Este un numar de identificare interna de la Google Drive"
2518
 
2519
  #: methods/googledrive.php:944
2520
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
2521
- msgstr "Pentru a putea stabili un nume de folder particularizat, folosiți UpdraftPlus Premium."
2522
 
2523
  #: addons/copycom.php:550 addons/google-enhanced.php:72 addons/onedrive.php:709
2524
  #: methods/googledrive.php:931 methods/googledrive.php:941
2525
  msgid "Folder"
2526
- msgstr "Folder"
2527
 
2528
  #: addons/googlecloud.php:579 methods/googledrive.php:358
2529
  msgid "Name: %s."
@@ -2532,23 +2532,23 @@ msgstr "Nume: %s."
2532
  #: addons/googlecloud.php:254 addons/onedrive.php:294
2533
  #: methods/googledrive.php:863
2534
  msgid "%s download: failed: file not found"
2535
- msgstr "Download %s: esuat: fisierul nu a fost gasit"
2536
 
2537
  #: methods/insufficient.php:17 methods/viaaddon-base.php:16
2538
  msgid "This remote storage method (%s) requires PHP %s or later."
2539
- msgstr "Această metodă de stocare la distanță (%s) necesită PHP %s sau mai noi."
2540
 
2541
  #: methods/insufficient.php:64 methods/viaaddon-base.php:86
2542
  msgid "You will need to ask your web hosting company to upgrade."
2543
- msgstr "Va trebui sa contactati firma care asigura gazduirea site-ului dumneavoastra pentru un upgrade."
2544
 
2545
  #: methods/insufficient.php:65 methods/viaaddon-base.php:87
2546
  msgid "Your %s version: %s."
2547
- msgstr "Versiunea voastra %s: %s."
2548
 
2549
  #: methods/googledrive.php:157
2550
  msgid "Google Drive list files: failed to access parent folder"
2551
- msgstr "Listarea fisierelor Google Drive: accesul folderului parinte a esuat"
2552
 
2553
  #: admin.php:5040
2554
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
@@ -2560,11 +2560,11 @@ msgstr "Fetch"
2560
 
2561
  #: admin.php:3101
2562
  msgid "Call"
2563
- msgstr "Suna"
2564
 
2565
  #: addons/migrator.php:364 admin.php:2884 admin.php:3860
2566
  msgid "This feature requires %s version %s or later"
2567
- msgstr "Această caracteristică necesită %s versiunea %s sau mai noua"
2568
 
2569
  #: restorer.php:2109
2570
  msgid "Elegant themes theme builder plugin data detected: resetting temporary folder"
@@ -2572,7 +2572,7 @@ msgstr "A fost detectat plugin-ul pentru realizarea de teme Elegant Themes, fold
2572
 
2573
  #: restorer.php:106
2574
  msgid "Failed to unpack the archive"
2575
- msgstr "Dezarhivarea arhivei a esuat"
2576
 
2577
  #: restorer.php:259
2578
  msgid "%s files have been extracted"
@@ -2580,11 +2580,11 @@ msgstr "%s fisiere au fost extrase"
2580
 
2581
  #: class-updraftplus.php:910
2582
  msgid "Error - failed to download the file"
2583
- msgstr "Eoare - download-ul fisierului a esuat"
2584
 
2585
  #: admin.php:2868
2586
  msgid "Rescan local folder for new backup sets"
2587
- msgstr "Folderul local este scanat din nou pentru un nou set de back-up-uri"
2588
 
2589
  #: udaddons/updraftplus-addons.php:208
2590
  msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
@@ -2621,71 +2621,71 @@ msgstr "Cheie"
2621
 
2622
  #: addons/importer.php:256 admin.php:4499 class-updraftplus.php:2210
2623
  msgid "Backup created by: %s."
2624
- msgstr "Backup-ul a fost creat de %s."
2625
 
2626
  #: admin.php:4505
2627
  msgid "Files and database WordPress backup (created by %s)"
2628
- msgstr "Backup fisiere si baza de date WordPress (creat de %s)"
2629
 
2630
  #: admin.php:4505
2631
  msgid "Files backup (created by %s)"
2632
- msgstr "Backup fisiere (creat de %s)"
2633
 
2634
  #: admin.php:4450 admin.php:4501
2635
  msgid "unknown source"
2636
- msgstr "sursa necunoscuta"
2637
 
2638
  #: admin.php:4456
2639
  msgid "Database (created by %s)"
2640
- msgstr "Baza de date (creata de %s)"
2641
 
2642
  #: admin.php:2869
2643
  msgid "Rescan remote storage"
2644
- msgstr "Rescanare unitate de stocare externa"
2645
 
2646
  #: admin.php:2867
2647
  msgid "Upload backup files"
2648
- msgstr "Upload fisiere de backup"
2649
 
2650
  #: admin.php:2043
2651
  msgid "This backup was created by %s, and can be imported."
2652
- msgstr "Acest backup a fost creat de %s, si poate fi importat."
2653
 
2654
  #: admin.php:782
2655
  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."
2656
- msgstr "WordPress are un număr (%d) de activități programate care sunt restante. Daca acest site nu este in lucru, inseamna ca aplicatia de programare (scheduler) instalat in siteul WordPress al dumneavoastra nu functioneaza."
2657
 
2658
  #: admin.php:782
2659
  msgid "Read this page for a guide to possible causes and how to fix it."
2660
- msgstr "Cititi aceasta pagina pentru ajutor in aflarea cauzelor posibile si pentru remedierea problemelor."
2661
 
2662
  #: admin.php:499 admin.php:500 class-updraftplus.php:2217
2663
  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))."
2664
- msgstr "Acest fisier nu pare a fi o arhiva de backup UpdraftPlus (cum sunt fisierele de tip .zip sau .gz, fisiere care au un nume de genul: backup_(timp)_(nume site)_(cod)_(tip).(zip|gz))."
2665
 
2666
  #: admin.php:499
2667
  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."
2668
- msgstr "Oricum arhivele UpdraftPlus sunt arhive standard de tip zip/SQL, prin urmare daca stiti ca formatul dumenavoastra este corect puteti redenumi fisierul pentru a se potrivi cu masca mentionata. "
2669
 
2670
  #: admin.php:500 class-updraftplus.php:2217
2671
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2672
- msgstr "Daca acest backup a fost creat cu un alt plugin/aplicatie de backup, UpdraftPlus s-ar putea sa va fie de ajutor"
2673
 
2674
  #: admin.php:1282 admin.php:4502 restorer.php:1337
2675
  msgid "Backup created by unknown source (%s) - cannot be restored."
2676
- msgstr "Backup creat de sursa necunoscuta (%s) - nu putem realiza restaurarea."
2677
 
2678
  #: restorer.php:749 restorer.php:797
2679
  msgid "The WordPress content folder (wp-content) was not found in this zip file."
2680
- msgstr "Folderul de continut WordPress (wp-content) nu a fost gasit in acest fisier zip."
2681
 
2682
  #: restorer.php:614
2683
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
2684
- msgstr "Aceasta versiune de UpdraftPlus nu stie cum sa lucreze cu acest tip de fisier realizat cu o aplicatie de backup straina"
2685
 
2686
  #: methods/dropbox.php:288
2687
  msgid "%s returned an unexpected HTTP response: %s"
2688
- msgstr "%s a returnat un raspuns HTTP neasteptat: %s"
2689
 
2690
  #: addons/sftp.php:883
2691
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
@@ -2694,15 +2694,15 @@ msgstr "Modulul UpdraftPlus pentru această metodă de acces la fișiere (%s) nu
2694
  #: methods/cloudfiles.php:234 methods/dropbox.php:269
2695
  #: methods/openstack-base.php:95 methods/s3.php:87
2696
  msgid "No settings were found"
2697
- msgstr "Nu a fost gasita nicio setare"
2698
 
2699
  #: class-updraftplus.php:2338
2700
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
2701
- msgstr "Una sau mai multe copii de rezervă au fost adăugate la scanarea locatiei de stocare la distanta; rețineți că aceste backup-uri nu vor fi șterse automat prin setările \"păstrează\"; dacă/atunci când doriți să le ștergeți, trebuie să faceti acest lucru manual."
2702
 
2703
  #: admin.php:468
2704
  msgid "Rescanning remote and local storage for backup sets..."
2705
- msgstr "Se scaneaza din nou unitatile de stocare locale si la distanta pentru gasirea unor eventuale copii de rezerva.."
2706
 
2707
  #: addons/googlecloud.php:865 addons/googlecloud.php:880
2708
  #: addons/s3-enhanced.php:36 addons/s3-enhanced.php:40
@@ -2740,15 +2740,15 @@ msgstr "Sterge"
2740
 
2741
  #: methods/s3.php:729
2742
  msgid "Other %s FAQs."
2743
- msgstr "Alte %s FAQ"
2744
 
2745
  #: admin.php:3954
2746
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
2747
- msgstr "Bifati pentru a primi mai multe informatii si email-uri despre procesul de backup - folositor in cazul in care ceva nu merge bine."
2748
 
2749
  #: addons/morefiles.php:262 admin.php:4092
2750
  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."
2751
- msgstr "Daca introduceti fisiere/directoare multiple, separati-le prin virgula. Pentru entitati de nivel de top, puteti folosi caracterul * la inceputul sau sfarsitul entitatii ca substitut pentru orice caractere."
2752
 
2753
  #: restorer.php:2098
2754
  msgid "Custom content type manager plugin data detected: clearing option cache"
@@ -2756,27 +2756,27 @@ msgstr "S-au detectat date ale unui plugin de management a tipurilor de continut
2756
 
2757
  #: methods/ftp.php:281
2758
  msgid "encrypted FTP (explicit encryption)"
2759
- msgstr "FTP encriptat (encriptare explicita)"
2760
 
2761
  #: class-updraftplus.php:3671 methods/ftp.php:284 restorer.php:1367
2762
  msgid "Your web server's PHP installation has these functions disabled: %s."
2763
- msgstr "Instalarea PHP a server-ului dvs. web are urmatoarele functionalitatii dezactivate: %s."
2764
 
2765
  #: class-updraftplus.php:3671 methods/ftp.php:284 restorer.php:1368
2766
  msgid "Your hosting company must enable these functions before %s can work."
2767
- msgstr "Firma dvs. de gazduire trebuie sa activeze aceste functionalitati inainte ca %s sa poata functiona."
2768
 
2769
  #: methods/ftp.php:279
2770
  msgid "regular non-encrypted FTP"
2771
- msgstr "FTP normal ne-encriptat"
2772
 
2773
  #: methods/ftp.php:280
2774
  msgid "encrypted FTP (implicit encryption)"
2775
- msgstr "FTP encriptat (encriptare implicita)"
2776
 
2777
  #: restorer.php:1517
2778
  msgid "Backup created by:"
2779
- msgstr "Backup creat de:"
2780
 
2781
  #: udaddons/options.php:482
2782
  msgid "Available to claim on this site"
@@ -2828,15 +2828,15 @@ msgstr "Pentru a reprimi accesul la actualizari (incluzand facilitati viitoare s
2828
 
2829
  #: class-updraftplus.php:3691
2830
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
2831
- msgstr "Fisierul bazei de date pare sa fi fost comprimat de doua ori - probabil site-ul de pe care l-ati descarcat a avut un server web configurat incorect."
2832
 
2833
  #: class-updraftplus.php:3698 class-updraftplus.php:3719
2834
  msgid "The attempt to undo the double-compression failed."
2835
- msgstr "Incercarea de a anula compresia dubla a esuat."
2836
 
2837
  #: class-updraftplus.php:3721
2838
  msgid "The attempt to undo the double-compression succeeded."
2839
- msgstr "Incercarea de a anula compresia dubla a reusit."
2840
 
2841
  #: admin.php:1429
2842
  msgid "Constants"
@@ -2844,15 +2844,15 @@ msgstr "Constante"
2844
 
2845
  #: backup.php:1559
2846
  msgid "Failed to open database file for reading:"
2847
- msgstr "Deschiderea fisierului bazei de date pentru citire a esuat:"
2848
 
2849
  #: backup.php:1395
2850
  msgid "please wait for the rescheduled attempt"
2851
- msgstr "va rugam sa asteptati reprogramarea unei noi incercari"
2852
 
2853
  #: backup.php:1397
2854
  msgid "No database tables found"
2855
- msgstr "Nu au fost gasite tabele ale bazei de date"
2856
 
2857
  #: addons/reporting.php:184
2858
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
@@ -2868,7 +2868,7 @@ msgstr "Căutarea și înlocuirea rândului a ajuns la: %d"
2868
 
2869
  #: addons/copycom.php:88 addons/onedrive.php:91 methods/dropbox.php:183
2870
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
2871
- msgstr "Cont: contul dvs. %s mai are doar %d bytes liberi, dar din fișierul încărcat mai sunt %d bytes rămasi (dimensiune totală: %d bytes)"
2872
 
2873
  #: addons/migrator.php:659
2874
  msgid "Skipping this table: data in this table (%s) should not be search/replaced"
@@ -2880,31 +2880,31 @@ msgstr "Erori apărute:"
2880
 
2881
  #: admin.php:4713
2882
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2883
- msgstr "Urmați acest link pentru a descărca fișierul jurnal pentru această restaurare (necesar pentru orice cerere de sprijin)."
2884
 
2885
  #: admin.php:3998
2886
  msgid "See this FAQ also."
2887
- msgstr "A se vedea și acest FAQ."
2888
 
2889
  #: admin.php:3800
2890
  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."
2891
- msgstr "Daca nu alegeti o stocare la distanta, atunci backup-urile raman pe server. Acest lucru nu e recomandat (decat daca planuiti sa le copiati manual pe computerul dvs.), pentru ca pierderea serverului web ar insemna atat pierderea site-ului cat si a backup-urilor intr-un singur pas."
2892
 
2893
  #: admin.php:2957
2894
  msgid "Retrieving (if necessary) and preparing backup files..."
2895
- msgstr "Preluarea (daca e necesar) si pregatirea fisierelor backup..."
2896
 
2897
  #: admin.php:1253
2898
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
2899
- msgstr "Instalarea PHP pe serverul web permite doar %s secunde pentru rularea scrpturilor PHP, si nu permite marirea acestei limite. Daca aveti de importat multe date, si daca operatiunea de restaurare expira, va trebui sa cereti firmei dvs. de gazduire marirea acestei limite (sau sa incercati restaurarea pe sectiuni)."
2900
 
2901
  #: restorer.php:605
2902
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
2903
- msgstr "Foldere ne-eliminate la o restaurare anterioara inca exista (va rugam sa folositi butonul \"Stergere directoare vechi\" pentru a le sterge inainte de a incerca iar): %s"
2904
 
2905
  #: admin.php:757 class-updraftplus.php:563
2906
  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)"
2907
- msgstr "Timpul permis plugin-urilor WordPress pentru a rula este foarte mic (%s secunde) - ar trebui sa il mariti pentru a evita esuarea backup-urilor din cauza expirarii timpului ( consultati firma dvs. de gazduire web pentru ajutor - este setarea PHP max_execution_time; valoarea recomandata este %s secunde sau mai mult)"
2908
 
2909
  #: addons/migrator.php:667
2910
  msgid "Replacing in blogs/site table: from: %s to: %s"
@@ -2921,7 +2921,7 @@ msgstr "%s: Se omite fisierul cache (nu exista intotdeauna)"
2921
  #: addons/sftp.php:638 addons/sftp.php:641 includes/ftp.class.php:44
2922
  #: includes/ftp.class.php:47
2923
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
2924
- msgstr "Conexiunea %s a epirat; daca ati introdus serverul corect, atunci acest lucru e cauzat de un firewall care blocheaza conexiunea - ar trebui sa verificati acest lucru cu firma dvs. de gazduire."
2925
 
2926
  #: admin.php:5048
2927
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
@@ -2937,7 +2937,7 @@ msgstr "Mesaje:"
2937
 
2938
  #: restorer.php:1879
2939
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
2940
- msgstr "A fost găsită o linie SQL, care este mai mare decât dimensiunea maximă și nu poate fi împărțită, această linie nu va fi prelucrată, ci va fi abandonată: %s"
2941
 
2942
  #: restorer.php:385
2943
  msgid "The directory does not exist"
@@ -3039,15 +3039,15 @@ msgstr "Londra (LON)"
3039
 
3040
  #: methods/cloudfiles-new.php:119
3041
  msgid "Cloud Files Username"
3042
- msgstr "Numele de utilizator Cloud Files"
3043
 
3044
  #: methods/cloudfiles-new.php:122
3045
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3046
- msgstr "Pentru a crea un nou sub-utilizator API si o noua cheie API Rackspace care va avea acces doar la acest container Rackspace, folositi aceasta extensie."
3047
 
3048
  #: methods/cloudfiles-new.php:127
3049
  msgid "Cloud Files API Key"
3050
- msgstr "Cheia API-ului Cloud Files"
3051
 
3052
  #: addons/cloudfiles-enhanced.php:270 methods/cloudfiles-new.php:132
3053
  msgid "Cloud Files Container"
@@ -3055,15 +3055,15 @@ msgstr "Container Cloud Files"
3055
 
3056
  #: methods/cloudfiles-new.php:85
3057
  msgid "US or UK-based Rackspace Account"
3058
- msgstr "Cont Rackspace localizat in US sau UK"
3059
 
3060
  #: methods/cloudfiles-new.php:87
3061
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3062
- msgstr "Conturile create la rackspacecloud.com sunt conturi US; conturile create la rackspace.co.uk sunt conturi UK"
3063
 
3064
  #: addons/cloudfiles-enhanced.php:251 methods/cloudfiles-new.php:95
3065
  msgid "Cloud Files Storage Region"
3066
- msgstr "Regiunea de stocare Cloud Files"
3067
 
3068
  #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:100
3069
  msgid "Dallas (DFW) (default)"
@@ -3082,47 +3082,47 @@ msgstr "Chicago (ORD)"
3082
  #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
  #: methods/openstack2.php:25
3084
  msgid "Authorisation failed (check your credentials)"
3085
- msgstr "Autorizare esuata (verificati datele de acces)"
3086
 
3087
  #: addons/cloudfiles-enhanced.php:233 methods/cloudfiles-new.php:85
3088
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
- msgstr "Conturile create la rackspacecloud.com sunt conturi US; conturile create la rackspace.co.uk sunt conturi UK."
3090
 
3091
  #: methods/updraftvault.php:492 udaddons/options.php:265
3092
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
- msgstr "A aparut o eroare la incercarea de conectare la UpdraftPlus.Com"
3094
 
3095
  #: admin.php:513 central/bootstrap.php:448
3096
  msgid "Create"
3097
- msgstr "Creare"
3098
 
3099
  #: admin.php:475
3100
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
- msgstr "Parola consolei noului utilizator Rackspace este (nu va mai fi afisata niciodata):"
3102
 
3103
  #: admin.php:476
3104
  msgid "Trying..."
3105
- msgstr "Incercare..."
3106
 
3107
  #: class-updraftplus.php:1249
3108
  msgid "(when decrypted)"
3109
- msgstr "(la decriptare)"
3110
 
3111
  #: admin.php:486 admin.php:4990
3112
  msgid "Error data:"
3113
- msgstr "Date eroare:"
3114
 
3115
  #: admin.php:4664
3116
  msgid "Backup does not exist in the backup history"
3117
- msgstr "Backup-ul nu exista in istoricul baclup-urilor"
3118
 
3119
  #: admin.php:3164
3120
  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."
3121
- msgstr "Instalarea dvs. WordPress contine directoare vechi din starea ei inaintea restaurarii/migrarii (informatii tehnice: sunt prefixate cu -old). Ar trebui sa apasati acest buton pentru a le sterge imediat ce ati verificat ca restaurarea a functionat."
3122
 
3123
  #: restorer.php:1585
3124
  msgid "Split line to avoid exceeding maximum packet size"
3125
- msgstr "Separati linia pentru a evita depasirea marimii maxime a pachetului"
3126
 
3127
  #: restorer.php:1466
3128
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
@@ -3146,19 +3146,19 @@ msgstr "Permisiunile de fișiere nu permit datele vechi sa fie mutate și păstr
3146
 
3147
  #: restorer.php:103
3148
  msgid "Could not move the files into place. Check your file permissions."
3149
- msgstr "Nu am putu muta fisierele aici. Va rugam verificati permisiunile."
3150
 
3151
  #: restorer.php:96
3152
  msgid "Moving old data out of the way..."
3153
- msgstr "Mutarea datelor vechi.."
3154
 
3155
  #: restorer.php:100
3156
  msgid "Could not move old files out of the way."
3157
- msgstr "Nu am putut muta datele vechi."
3158
 
3159
  #: restorer.php:102
3160
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
- msgstr "Nu s-au putut muta noile fisiere. Verificati floderul wp-content/upgrade."
3162
 
3163
  #: addons/reporting.php:369
3164
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
@@ -3182,7 +3182,7 @@ msgstr "Folositi sectiunea \"Raportare\" pentru a configura adresele de mail fol
3182
 
3183
  #: class-updraftplus.php:1218 class-updraftplus.php:1220
3184
  msgid "files: %s"
3185
- msgstr "fisiere: %s"
3186
 
3187
  #: class-updraftplus.php:1245 class-updraftplus.php:1250
3188
  msgid "%s checksum: %s"
@@ -3206,7 +3206,7 @@ msgstr "Timp scurs:"
3206
 
3207
  #: addons/reporting.php:189 admin.php:4277
3208
  msgid "Uploaded to:"
3209
- msgstr "Upload-at in:"
3210
 
3211
  #: addons/reporting.php:224
3212
  msgid "Debugging information"
@@ -3251,19 +3251,19 @@ msgstr "%s logo"
3251
 
3252
  #: methods/email.php:73
3253
  msgid "Your site's admin email address (%s) will be used."
3254
- msgstr "Va fi folosita adresa administrarorului site-ului (%s)."
3255
 
3256
  #: methods/email.php:74
3257
  msgid "For more options, use the \"%s\" add-on."
3258
- msgstr "Pentru mai multe optiuni folositi add-on-ul \"%s\"."
3259
 
3260
  #: methods/s3.php:253
3261
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3262
- msgstr "Modulul PHP %s necesar nu este instalat - contactati providerul de web hosting pentru a activa acest modul"
3263
 
3264
  #: methods/dropbox.php:202
3265
  msgid "%s did not return the expected response - check your log file for more details"
3266
- msgstr "%s nu a dat rezultatul scontat - verificati fisierul de log pentru mai multe detalii"
3267
 
3268
  #: admin.php:522 methods/updraftvault.php:255 methods/updraftvault.php:300
3269
  #: udaddons/options.php:244
@@ -3272,7 +3272,7 @@ msgstr "Conectare"
3272
 
3273
  #: admin.php:3922
3274
  msgid "For more reporting features, use the Reporting add-on."
3275
- msgstr "Pentru mai multe functii ale rapoartelor folositi add-on-ul \"Reporting\"."
3276
 
3277
  #: class-updraftplus.php:3517
3278
  msgid "(version: %s)"
@@ -3280,71 +3280,71 @@ msgstr "(versiunea: %s)"
3280
 
3281
  #: addons/reporting.php:416 admin.php:466
3282
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
- msgstr "Fiti atenti, de obicei serverele de mail au o limitare a marimii, de obicei in jur de %s Mb; copiile de rezerva peste aceste limite nu vor putea fi primite pe mail."
3284
 
3285
  #: addons/reporting.php:416 admin.php:465
3286
  msgid "When the Email storage method is enabled, also send the entire backup"
3287
- msgstr "În cazul în care metoda de stocare e-mail este activată, trimite, de asemenea, întreaga rezervă"
3288
 
3289
  #: backup.php:843
3290
  msgid "Unknown/unexpected error - please raise a support request"
3291
- msgstr "Eroare necunoscuta/neasteptata - va rugam transmiteti o solicitare de asistenta"
3292
 
3293
  #: addons/reporting.php:221 backup.php:879
3294
  msgid "The log file has been attached to this email."
3295
- msgstr "Fisierul de log a fost atasa la acest email."
3296
 
3297
  #: backup.php:885
3298
  msgid "Backed up: %s"
3299
- msgstr "Backed up: %s"
3300
 
3301
  #: backup.php:921
3302
  msgid "Backup contains:"
3303
- msgstr "Copia de rezerva contine:"
3304
 
3305
  #: addons/reporting.php:148 backup.php:922
3306
  msgid "Latest status:"
3307
- msgstr "Ultimul status: "
3308
 
3309
  #: admin.php:155 backup.php:835
3310
  msgid "Files and database"
3311
- msgstr "Fisiere si baza de date"
3312
 
3313
  #: backup.php:837
3314
  msgid "Files (database backup has not completed)"
3315
- msgstr "Fisiere (copia de rezerva bazei de date nu a fost realizata)"
3316
 
3317
  #: backup.php:837
3318
  msgid "Files only (database was not part of this particular schedule)"
3319
- msgstr "Doar fisiere (baza de date nu a fost inclusa in aceasta activitate programare)"
3320
 
3321
  #: backup.php:840
3322
  msgid "Database (files backup has not completed)"
3323
- msgstr "Baza de date (copia de rezerva a fisierelor nu a fost realizata)"
3324
 
3325
  #: backup.php:840
3326
  msgid "Database only (files were not part of this particular schedule)"
3327
- msgstr "Doar baza de date (fisierele nu au fost incluse in aceasta activitate programata)"
3328
 
3329
  #: options.php:185
3330
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3331
- msgstr "Aceasta instalare WordPress este multi-site (sau retea)."
3332
 
3333
  #: options.php:185
3334
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3335
- msgstr "WordPress Multisite este suportata, cu alte extra potiuni, de UpdraftPlus Premium, sau cu add-on-ul Multisite."
3336
 
3337
  #: options.php:185
3338
  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>."
3339
- msgstr "Fara up-grade, Updraftplus acorda acces <strong>tuturor</strong> administratorilor siteului care pot modifica setarile plugin-ului la realizarea de backup-uri (si, prin urmare, acces la datele din backup, inclusiv la parole) precum si la restaurarea (inclusiv cu modificari modificate - chiar parole de acces) la <strong>intreaga retea</strong>."
3340
 
3341
  #: options.php:185
3342
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
- msgstr "(Aceasta se aplica la toate pluginurile de backup ale WordPress, doar daca nu au fost scrise special pentru compatibilitatea cu pagini de tip multisite."
3344
 
3345
  #: options.php:185
3346
  msgid "UpdraftPlus warning:"
3347
- msgstr "Avertisment UpdraftPlus:"
3348
 
3349
  #: udaddons/options.php:488
3350
  msgid "(or connect using the form on this page if you have already purchased it)"
@@ -3388,16 +3388,16 @@ msgstr "UpdraftPlus.com a raspuns, dar nu am inteles acest raspuns"
3388
 
3389
  #: methods/updraftvault.php:538 udaddons/updraftplus-addons.php:709
3390
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3391
- msgstr "UpdraftPlus.com a returnat un raspuns pe care nu l-am inteles (data: %s)"
3392
 
3393
  #: methods/updraftvault.php:579 udaddons/updraftplus-addons.php:748
3394
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3395
- msgstr "Adresa de mail si/sau parola dumneavoastra nu au fost recunoscute de UpdraftPlus.Com"
3396
 
3397
  #: methods/updraftvault.php:565 methods/updraftvault.php:583
3398
  #: udaddons/updraftplus-addons.php:751
3399
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3400
- msgstr "UpdraftsPlus.com a returnat un raspuns, dar nu l-am inteles"
3401
 
3402
  #: udaddons/options.php:94
3403
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
@@ -3413,15 +3413,15 @@ msgstr "Raportare"
3413
 
3414
  #: admin.php:1400
3415
  msgid "Options (raw)"
3416
- msgstr "Optiuni (rand)"
3417
 
3418
  #: addons/reporting.php:414 admin.php:464
3419
  msgid "Send a report only when there are warnings/errors"
3420
- msgstr "Transmite un raport doar cand sunt avertismente/erori"
3421
 
3422
  #: restorer.php:1528
3423
  msgid "Content URL:"
3424
- msgstr "URL continut:"
3425
 
3426
  #: restorer.php:100
3427
  msgid "You should check the file permissions in your WordPress installation"
@@ -3429,15 +3429,15 @@ msgstr "Va rugam sa verificati permisiunile fisierului in WordPress-ul instalat"
3429
 
3430
  #: admin.php:3826
3431
  msgid "See also the \"More Files\" add-on from our shop."
3432
- msgstr "Vedeti, de asemenea, \"More Files\" add-on din magazinul nostru."
3433
 
3434
  #: backup.php:2877 class-updraftplus.php:583
3435
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
3436
- msgstr "Spatiul ramas liber din contul dumneavoastra de webhosting este foarte mic - au mai ramas doar %s Mb"
3437
 
3438
  #: class-updraftplus.php:560
3439
  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)"
3440
- msgstr "Memoria (RAM) alocata pentru PHP este foarte mica (%s Mb) - ar trebui marita pentru a evita problemele cauzate de memoria insuficienta (consultati providerul dumneavoastra de webhosting pentru mai multe informatii si suport) "
3441
 
3442
  #: udaddons/options.php:484
3443
  msgid "You have an inactive purchase"
@@ -3569,39 +3569,39 @@ msgstr "Fara ea, criptarea va fi mult mai inceata."
3569
 
3570
  #: admin.php:2890
3571
  msgid "Drop backup files here"
3572
- msgstr "Adaugati fisierele de back-up aici"
3573
 
3574
  #: addons/googlecloud.php:898 methods/googledrive.php:951
3575
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
3576
- msgstr "<strong>(Se pare ca sunteti deja autentificat,</strong> totusi puteti sa va autentificati din nou in cazul in care ati intampinat probleme)."
3577
 
3578
  #: class-updraftplus.php:3373
3579
  msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
3580
- msgstr "Doriti mai multe functiuni si optiuni sau suport garantat platit? Verificati pe UpdraftPlus.Com"
3581
 
3582
  #: class-updraftplus.php:3383
3583
  msgid "Check out WordShell"
3584
- msgstr "Verificati WordShell"
3585
 
3586
  #: class-updraftplus.php:3383
3587
  msgid "manage WordPress from the command line - huge time-saver"
3588
- msgstr "Administrati WordPress din linia de comanda - castigati foarte mult timp"
3589
 
3590
  #: admin.php:472
3591
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
3592
- msgstr "Operatiunea de restaurare a inceput. Nu apasati stop si nu inchideti browserul dumneavoastra pana cand nu raportam finalizarea operatiunii de restaurare."
3593
 
3594
  #: admin.php:474
3595
  msgid "The web server returned an error code (try again, or check your web server logs)"
3596
- msgstr "Serverul web a returnat o eroare (incercati din nou sau verificati fisierele de log pe de serverul web)"
3597
 
3598
  #: admin.php:470
3599
  msgid "If you exclude both the database and the files, then you have excluded everything!"
3600
- msgstr "Daca ati exclus si fisierele si baza de date, ati exclus TOT!"
3601
 
3602
  #: restorer.php:1522
3603
  msgid "Site home:"
3604
- msgstr "Adresa site:"
3605
 
3606
  #: addons/morestorage.php:78
3607
  msgid "Remote Storage Options"
@@ -3621,15 +3621,15 @@ msgstr "Upload esuat"
3621
 
3622
  #: admin.php:3792
3623
  msgid "You can send a backup to more than one destination with an add-on."
3624
- msgstr "Puteti transmite copia de rezerva catre mai multe destinatii cu un add-on."
3625
 
3626
  #: admin.php:3382
3627
  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."
3628
- msgstr "Nota: Bara de progres este bazata pe etape, NU pe timp. Nu opriti realizarea copiei de rezerva doar pentru ca pare a fi ramas in acelasi loc - asta este ceva normal."
3629
 
3630
  #: admin.php:3280
3631
  msgid "(%s%%, file %s of %s)"
3632
- msgstr "(%s%%, fisier %s din %s)"
3633
 
3634
  #: addons/sftp.php:481
3635
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
@@ -3657,39 +3657,39 @@ msgstr "Setari user SCP/SFTP"
3657
 
3658
  #: methods/email.php:45
3659
  msgid "Backup is of: %s."
3660
- msgstr "Backup-ul este de : %s."
3661
 
3662
  #: methods/email.php:58
3663
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
3664
- msgstr "Incercarea de a trimite backup-ul pe email a esuat (probabil marimea copiei de rezerva este prea mare pentru aceasta metoda)"
3665
 
3666
  #: admin.php:559
3667
  msgid "%s settings test result:"
3668
- msgstr "Rezultatul testarii setarilor %s:"
3669
 
3670
  #: admin.php:4570
3671
  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."
3672
- msgstr "Daca vedeti mai multe copii de rezerva decat va asteptati, probabil se datoreaza faptului ca vechile copii de rezerva nu sunt sterse decat dupa finalizarea noilor copii de rezerva."
3673
 
3674
  #: admin.php:4568 admin.php:4570
3675
  msgid "(Not finished)"
3676
- msgstr "(Nu este terminat)"
3677
 
3678
  #: admin.php:3981
3679
  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)."
3680
- msgstr "Aici isi creeaza initial fisierele UpdraftPlus. Acest director trebuie sa fie setat de serverul web ca fiind Writable. Folderul este relativ la directorul de continut (care este denumit implicit wp-content)."
3681
 
3682
  #: admin.php:3981
3683
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
3684
- msgstr "<b>NU</b> amplasati in foldere de genul uploads sau plugins, aceasta va crea recursivitate (copia de rezerva a copiei de rezerva a copiei de rezerva...)."
3685
 
3686
  #: admin.php:3289
3687
  msgid "Waiting until scheduled time to retry because of errors"
3688
- msgstr "In asteptare pana la ora programata pentru a incerca din nou din cauza unor erori aparute"
3689
 
3690
  #: admin.php:3294
3691
  msgid "Backup finished"
3692
- msgstr "Backup finalizat"
3693
 
3694
  #: admin.php:3344 central/bootstrap.php:410 central/bootstrap.php:417
3695
  #: methods/updraftvault.php:335 methods/updraftvault.php:403
@@ -3698,11 +3698,11 @@ msgstr "Necunoscut"
3698
 
3699
  #: admin.php:3361
3700
  msgid "next resumption: %d (after %ss)"
3701
- msgstr "Urmatoare reluare: %d (dupa %ss)"
3702
 
3703
  #: admin.php:3362
3704
  msgid "last activity: %ss ago"
3705
- msgstr "Ultima activitate: acum %ss "
3706
 
3707
  #: admin.php:3377
3708
  msgid "Job ID: %s"
@@ -3710,81 +3710,81 @@ msgstr "Job ID: %s"
3710
 
3711
  #: admin.php:3321
3712
  msgid "table: %s"
3713
- msgstr "Tabela: %s"
3714
 
3715
  #: admin.php:3308
3716
  msgid "Created database backup"
3717
- msgstr "Creare copie siguranta baza de date"
3718
 
3719
  #: admin.php:3334
3720
  msgid "Encrypting database"
3721
- msgstr "Criptare baza de date"
3722
 
3723
  #: admin.php:3342
3724
  msgid "Encrypted database"
3725
- msgstr "Baza de date criptata"
3726
 
3727
  #: admin.php:3273
3728
  msgid "Uploading files to remote storage"
3729
- msgstr "Incarcare fisiere in unitatea de stocare la distanta"
3730
 
3731
  #: admin.php:3285
3732
  msgid "Pruning old backup sets"
3733
- msgstr "Aranjarea copiilor de siguranta vechi"
3734
 
3735
  #: admin.php:3254
3736
  msgid "Creating file backup zips"
3737
- msgstr "Creare copii de siguranta zip"
3738
 
3739
  #: admin.php:3267
3740
  msgid "Created file backup zips"
3741
- msgstr "Copii de siguranta zip create"
3742
 
3743
  #: admin.php:3319
3744
  msgid "Creating database backup"
3745
- msgstr "Creare copie de siguranta baza de date"
3746
 
3747
  #: admin.php:3249
3748
  msgid "Backup begun"
3749
- msgstr "Backup inceput"
3750
 
3751
  #: admin.php:2777
3752
  msgid "Backups in progress:"
3753
- msgstr "Backup in realizare:"
3754
 
3755
  #: admin.php:761
3756
  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."
3757
- msgstr "Programatorul (scheduler) este dezactivat in WordPress, prin setarile DISABLE_WP_CRON. Nu se poate rula realizarea niciunui backup (nici &quot;Backup Now&quot;) doar daca il programati sa fie facut manual sau daca activati setarile din WordPress."
3758
 
3759
  #: restorer.php:580 restorer.php:587
3760
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
3761
- msgstr "UpdraftPlus trebuie sa creeze %s in directorul de continut, dar a esuat. Va rugam verificati permisiunile fisierelor si activati accesul (%s)"
3762
 
3763
  #: restorer.php:580
3764
  msgid "folder"
3765
- msgstr "director"
3766
 
3767
  #: restorer.php:587
3768
  msgid "file"
3769
- msgstr "fisier"
3770
 
3771
  #: class-updraftplus.php:2435
3772
  msgid "The backup has not finished; a resumption is scheduled"
3773
- msgstr "Copia de siguranta nu a putut fi finalizata, a fost programata o reluare"
3774
 
3775
  #: class-updraftplus.php:1489
3776
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3777
- msgstr "Siteul dumneavoastra este vizita rar iar UpdraftPlus nu obtine resursele sperate, va rugam cititi aceasta pagina:"
3778
 
3779
  #: addons/copycom.php:492 addons/googlecloud.php:337 addons/onedrive.php:630
3780
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:95
3781
  #: methods/googledrive.php:239
3782
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
3783
- msgstr "Autentificarea %s a esuat, deoarece s-a intamplat ceva pe siteul dumneavoastra. Incercati sa dezactivati alte plugin-uri sau sa treceti pe tema implicita. In special, cautati componente care transmit date (in principal avertismente/erori PHP) inainte de incarcarea paginii.Dezactivarea oricarei setari de depanare poate ajuta, de asemenea."
3784
 
3785
  #: admin.php:2358
3786
  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)."
3787
- msgstr "Limita memoriei PHP (setata de providerul de webhosting) este foarte mica. UpdraftPlus a incercat sa mareasca aceasta limita, fara succes, insa. Acest plugin ntampina dificultati mai ales cu o limita de 64 Mb sau mai mica - in special daca aveti fisiere mari de upload-at (desi, pe de cealalta parte, multe siteuri se vor descurca si cu limita de 32 Mb)."
3788
 
3789
  #: addons/autobackup.php:102 addons/autobackup.php:911
3790
  msgid "UpdraftPlus Automatic Backups"
@@ -3796,7 +3796,7 @@ msgstr "Nu renuntati dupa ce ati apasat Incepe mai jos - asteptati finalizarea c
3796
 
3797
  #: addons/autobackup.php:933 admin.php:515
3798
  msgid "Proceed with update"
3799
- msgstr "Incepeti realizarea copiei de siguranta"
3800
 
3801
  #: addons/autobackup.php:281 addons/autobackup.php:377
3802
  msgid "Starting automatic backup..."
@@ -3861,23 +3861,23 @@ msgstr "Suport"
3861
 
3862
  #: admin.php:2162
3863
  msgid "More plugins"
3864
- msgstr "Mai multe plugin-uri"
3865
 
3866
  #: class-updraftplus.php:3550
3867
  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."
3868
- msgstr "Importati dintr-o versiune mai noua de WordPress (%s) intr-o versiune mai veche (%s). Nu aveti garantia ca WordPress va putea gestiona aceste aspecte."
3869
 
3870
  #: class-updraftplus.php:3653
3871
  msgid "This database backup is missing core WordPress tables: %s"
3872
- msgstr "Acestei copii de siguranta a bazei de date ii lipsesc tabelele aferente core-ului WordPress: %s"
3873
 
3874
  #: class-updraftplus.php:3658
3875
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3876
- msgstr "UpdraftPlus nu a putu gasi prefixul tabelei cand a scanat copia de siguranta a bazei de date."
3877
 
3878
  #: class-updraftplus.php:3466
3879
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3880
- msgstr "Baza de date este prea mica pentru a fi o baza de date WordPress (marime: %s Kb)."
3881
 
3882
  #: admin.php:581 admin.php:736
3883
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
@@ -3889,19 +3889,19 @@ msgstr "Fiti in siguranta in fiecare clipa, fara sa fie nevoie sa va reamintiti
3889
 
3890
  #: addons/autobackup.php:496 admin.php:721
3891
  msgid "Update Plugin"
3892
- msgstr "Update Plugin"
3893
 
3894
  #: addons/autobackup.php:547 admin.php:725
3895
  msgid "Update Theme"
3896
- msgstr "Up-date tema"
3897
 
3898
  #: admin.php:579 admin.php:734
3899
  msgid "Dismiss (for %s weeks)"
3900
- msgstr "Renuntati (pentru %s saptamani)"
3901
 
3902
  #: addons/autobackup.php:914 admin.php:580 admin.php:735
3903
  msgid "Be safe with an automatic backup"
3904
- msgstr "Fiti in siguranta cu backup automat"
3905
 
3906
  #: restorer.php:2077
3907
  msgid "Uploads path (%s) does not exist - resetting (%s)"
@@ -3909,59 +3909,59 @@ msgstr "Calea pentru upload (%s) nu exista - resetati (%s)"
3909
 
3910
  #: admin.php:2321
3911
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3912
- msgstr "Daca puteti citi aceste cuvinte dupa ce pagina dumneavoastra s-a terminat de incarcat, atunci exista o problema JavaScript sau jQuery la siteul dumneavoastra."
3913
 
3914
  #: admin.php:505
3915
  msgid "Follow this link to attempt decryption and download the database file to your computer."
3916
- msgstr "Urmati acest link pentru a incercare decriptarea si descarcarea bazei de date in calculatorul dumneavoastra."
3917
 
3918
  #: admin.php:506
3919
  msgid "This decryption key will be attempted:"
3920
- msgstr "Va fi incercata aceasta cheie de decriptare:"
3921
 
3922
  #: admin.php:507
3923
  msgid "Unknown server response:"
3924
- msgstr "Raspuns de la server necunoscut:"
3925
 
3926
  #: admin.php:508
3927
  msgid "Unknown server response status:"
3928
- msgstr "Status necunoscut primit de la server:"
3929
 
3930
  #: admin.php:509
3931
  msgid "The file was uploaded."
3932
- msgstr "Acest fisier a fost incarcat."
3933
 
3934
  #: admin.php:501
3935
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
3936
- msgstr "(fiti siguri ca incercati sa incarcati un fisier de tip zip creat anterior cu UpdraftPlus)"
3937
 
3938
  #: admin.php:502
3939
  msgid "Upload error:"
3940
- msgstr "Eroare la upload:"
3941
 
3942
  #: admin.php:503
3943
  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)."
3944
- msgstr "Acest fisier pare a nu fi o arhiva baza de date criptata creata cu UpdraftPlus (cum ar fi fisier de tip .gz.crypy care au denumirea sub forma: backup_(timp)_(nume site)_(cod)_db.crypt.gz)."
3945
 
3946
  #: admin.php:504
3947
  msgid "Upload error"
3948
- msgstr "Eroare upload"
3949
 
3950
  #: admin.php:491
3951
  msgid "Delete from your web server"
3952
- msgstr "Stergeti de pe serverul web"
3953
 
3954
  #: admin.php:492
3955
  msgid "Download to your computer"
3956
- msgstr "Descarcati in computerul dumneavoastra"
3957
 
3958
  #: admin.php:493
3959
  msgid "and then, if you wish,"
3960
- msgstr "si dupa aceea, daca doriti,"
3961
 
3962
  #: methods/s3.php:689
3963
  msgid "Examples of S3-compatible storage providers:"
3964
- msgstr "Exemple de furnizori de stocare S3 compatibili:"
3965
 
3966
  #: admin.php:4940
3967
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
@@ -3969,23 +3969,23 @@ msgstr "Nici o arhiva nu va fi stearsa dupa dezarhivare, deoarece nu a existat o
3969
 
3970
  #: admin.php:4534
3971
  msgid "(%d archive(s) in set)."
3972
- msgstr "%d arhive in grup."
3973
 
3974
  #: admin.php:4537
3975
  msgid "You appear to be missing one or more archives from this multi-archive set."
3976
- msgstr "Iti lipsesc una sau mai multe arhive din acest grup de arhive."
3977
 
3978
  #: admin.php:3958
3979
  msgid "Split archives every:"
3980
- msgstr "Împarte arhiva în fragmente de:"
3981
 
3982
  #: admin.php:482
3983
  msgid "Error: the server sent an empty response."
3984
- msgstr "Eroare: server-ul a trimis un raspuns gol."
3985
 
3986
  #: admin.php:483
3987
  msgid "Warnings:"
3988
- msgstr "Avertismente:"
3989
 
3990
  #: addons/moredatabase.php:269
3991
  msgid "Error: the server sent us a response (JSON) which we did not understand."
@@ -3993,43 +3993,43 @@ msgstr "Eroare: server-ul ne-a trimis un raspuns (JavaScript Object Notation) pe
3993
 
3994
  #: admin.php:2054
3995
  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?"
3996
- msgstr "Acest fisier arata ca unul creat de UpdraftPlus, dar acest program de instalare nu cunoaste aceste tipuri de fisiere. Poate ca trebuie sa instalezi un plugin?"
3997
 
3998
  #: admin.php:1330
3999
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
4000
- msgstr "Fisierele arhivei de rezerva au fost procesate cu succes. Apasa \"restore\" din nou pentru a continua."
4001
 
4002
  #: admin.php:1332
4003
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
4004
- msgstr "Fisierele arhivei de rezerva au fost procesate, dar cu unele avertismente. Daca totul decurge normal, poti sa apesi \"Restore\" din nou pentru a continua. Altfel, anuleaza aplicatia si corecteaza mai intai problemele existente."
4005
 
4006
  #: admin.php:1334
4007
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
4008
- msgstr "Fisierele arhivei de rezerva au fost procesate, insa cu cateva erori. Va trebui sa anulezi si sa corectezi orice probleme inainte sa reincerci."
4009
 
4010
  #: admin.php:1014
4011
  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"
4012
- msgstr "Arhiva de rezerva pentru acest fisier nu a putut fi gasita. Metoda de stocare la distanta folosita nu ne permite sa recuperam fisierele. Pentru a realiza orice fel de restaurare folosind UpdraftPlus, va trebui sa obti o copie a acestui fisier si sa-l adaugi la folder-ul functional al UpdraftPlus."
4013
 
4014
  #: admin.php:1234
4015
  msgid "No such backup set exists"
4016
- msgstr "Un astfel de set de rezerva nu exista."
4017
 
4018
  #: admin.php:1303
4019
  msgid "File not found (you need to upload it): %s"
4020
- msgstr "Fisierul nu a fost gasit(trebuie sa il descarci):"
4021
 
4022
  #: admin.php:1305
4023
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
4024
- msgstr "Fisierul a fost gasit, dar are marimea zero(trebuie sa-l reincarci):"
4025
 
4026
  #: admin.php:1310
4027
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
4028
- msgstr "Fisierul a fost gasit, dar are o marime diferita de cea estimata- se poate sa aiba o eroare."
4029
 
4030
  #: admin.php:1325
4031
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
4032
- msgstr "Aceast set de arhive multiple de rezerva pare sa aiba urmatoarele arhive lipsa:"
4033
 
4034
  #: restorer.php:529
4035
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
@@ -4041,11 +4041,11 @@ msgstr "Fisierul nu a putut fi mutat(verifica regulile de acces ale fisierului s
4041
 
4042
  #: restorer.php:97
4043
  msgid "Moving unpacked backup into place..."
4044
- msgstr "Mutarea la loc a copiei de siguranta dezarhivate..."
4045
 
4046
  #: backup.php:2584 backup.php:2837
4047
  msgid "Failed to open the zip file (%s) - %s"
4048
- msgstr "Fisierul zip nu a putut fi deschis..."
4049
 
4050
  #: addons/morefiles.php:94
4051
  msgid "WordPress root directory server path: %s"
@@ -4053,71 +4053,71 @@ msgstr "cale catre catalogul principal al serverulu: %"
4053
 
4054
  #: methods/s3.php:696
4055
  msgid "... and many more!"
4056
- msgstr "....si multe altele!"
4057
 
4058
  #: methods/s3.php:734
4059
  msgid "%s end-point"
4060
- msgstr "% puncte finale"
4061
 
4062
  #: admin.php:4859
4063
  msgid "File is not locally present - needs retrieving from remote storage"
4064
- msgstr "Fisierul nu este prezent local-trebuie recuperat din spatiul de stocare la distanta."
4065
 
4066
  #: methods/s3generic.php:41 methods/s3generic.php:49
4067
  msgid "S3 (Compatible)"
4068
- msgstr "S3(Compatibil)"
4069
 
4070
  #: admin.php:4807
4071
  msgid "Final checks"
4072
- msgstr "Verificari finale"
4073
 
4074
  #: admin.php:4846
4075
  msgid "Looking for %s archive: file name: %s"
4076
- msgstr "Cauta % arhive: numele dosarului: %"
4077
 
4078
  #: admin.php:3964
4079
  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)."
4080
- msgstr "Bifeaza aceasta casuta pentru a sterge posibilele fisiere de rezerva inutile din server dupa ce s-a incheiat lansarea de rezerva(ex. daca debifezi optiunea, oricare dosare trimise la distanta vor ramane si local, iar oricare fisiere pastrate local nu vor fi obiectul limitelor de pastrare)."
4081
 
4082
  #: admin.php:3867
4083
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4084
- msgstr "Puneti fisierele codate din baza de date (db.gz. fisiere criptate) aici pentru decriptare"
4085
 
4086
  #: admin.php:4081
4087
  msgid "Your wp-content directory server path: %s"
4088
- msgstr "Calea catre continutul wp al serverului:%"
4089
 
4090
  #: admin.php:498
4091
  msgid "Raw backup history"
4092
- msgstr "Jurnal de rezerva gol"
4093
 
4094
  #: admin.php:3105
4095
  msgid "Show raw backup and file list"
4096
- msgstr "Arata copia de rezerva goala si lista fisierelor"
4097
 
4098
  #: admin.php:481
4099
  msgid "Processing files - please wait..."
4100
- msgstr "Fisiere in curs de procesare - va rugam asteptati..."
4101
 
4102
  #: admin.php:2858
4103
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4104
- msgstr "Instalarea WordPress a inregistrat o problema cu dispunerea spatiilor albe in plus. Aceasta poate afecta copiile de rezerva pe care le descarci de aici."
4105
 
4106
  #: admin.php:2858 admin.php:4992
4107
  msgid "Please consult this FAQ for help on what to do about it."
4108
- msgstr "Consltati aceasta FAQ(Intrebare pusa des) pentru a va rezolva problema."
4109
 
4110
  #: class-updraftplus.php:3474
4111
  msgid "Failed to open database file."
4112
- msgstr "Fisierul din baza de date nu a putut fi deschis."
4113
 
4114
  #: class-updraftplus.php:3454
4115
  msgid "Failed to write out the decrypted database to the filesystem."
4116
- msgstr "Nu a fost posibila scrierea bazei de date in fisierul sistemului."
4117
 
4118
  #: admin.php:1372
4119
  msgid "Known backups (raw)"
4120
- msgstr "Copii de rezerva cunoscute(goale)"
4121
 
4122
  #: restorer.php:1270
4123
  msgid "Using directory from backup: %s"
@@ -4125,7 +4125,7 @@ msgstr "Folosirea catalogului din copia de rezerva :%"
4125
 
4126
  #: restorer.php:879
4127
  msgid "Files found:"
4128
- msgstr "Fisier gasit:"
4129
 
4130
  #: restorer.php:885
4131
  msgid "Unable to enumerate files in that directory."
@@ -4133,11 +4133,11 @@ msgstr "Fisierele nu pot fi enumerate in acest catalog."
4133
 
4134
  #: restorer.php:1715
4135
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4136
- msgstr "Setarile tabelului nu sunt prezente-trecem la motorul de stocare MyISAM."
4137
 
4138
  #: restorer.php:1725
4139
  msgid "Restoring table (%s)"
4140
- msgstr "Tabel refacut"
4141
 
4142
  #: addons/migrator.php:314
4143
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
@@ -4145,29 +4145,29 @@ msgstr "Ati migrat la o alta pagina (copia de siguranta apartine unui site cu o
4145
 
4146
  #: admin.php:4881
4147
  msgid "file is size:"
4148
- msgstr "documentul are marimea :"
4149
 
4150
  #: addons/googlecloud.php:855 addons/migrator.php:352 addons/migrator.php:355
4151
  #: addons/migrator.php:358 admin.php:761 admin.php:2326 admin.php:3130
4152
  #: backup.php:2884 updraftplus.php:147
4153
  msgid "Go here for more information."
4154
- msgstr "Ca sa alfi mai multe detalii mergi aici."
4155
 
4156
  #: admin.php:480
4157
  msgid "Some files are still downloading or being processed - please wait."
4158
- msgstr "Cateva fisiere sunt in curs de descarcare sau in curs de procesare-va rugam sa asteptati."
4159
 
4160
  #: class-updraftplus.php:3522 class-updraftplus.php:3540
4161
  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."
4162
- msgstr "Acest set de rezerva apartine altui site-aceasta nu este o restaurare a unei pagini ci o migrare catre o alta pagina. Ca ajutor poti folosi programul \"Migrator\"."
4163
 
4164
  #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4165
  msgid "%s login failure"
4166
- msgstr "%s logare nereusita "
4167
 
4168
  #: methods/ftp.php:111
4169
  msgid "%s upload failed"
4170
- msgstr "%s incarcare nereusita"
4171
 
4172
  #: addons/fixtime.php:545
4173
  msgid "Enter in format HH:MM (e.g. 14:22)."
@@ -4179,38 +4179,38 @@ msgstr "S-a folosit fusul orar setat in WordPress, din meniul Setari_> General."
4179
 
4180
  #: methods/dropbox.php:120
4181
  msgid "Dropbox error: %s (see log file for more)"
4182
- msgstr "Eroare a software-ului Dropbox:%(vezi fisierul de logare pentru mai multe detalii)"
4183
 
4184
  #: methods/dropbox.php:330
4185
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4186
- msgstr "Nu te autentifici cu %(in tipul stergerii)"
4187
 
4188
  #: methods/dropbox.php:338
4189
  msgid "Failed to access %s when deleting (see log file for more)"
4190
- msgstr "%nu a putut fi accesat in timpul stergerii(vezi fisierul de logare pentru mai multe detalii)"
4191
 
4192
  #: addons/copycom.php:264 methods/dropbox.php:371
4193
  msgid "You do not appear to be authenticated with %s"
4194
- msgstr "Nu te autentifici cu%"
4195
 
4196
  #: methods/cloudfiles.php:418
4197
  msgid "Error - no such file exists at %s"
4198
- msgstr "Eroare-un astfel de fisier nu exista la%"
4199
 
4200
  #: methods/cloudfiles.php:422
4201
  msgid "Error - failed to download the file from %s"
4202
- msgstr "Eroare-descarcarea fisierului de la % a fost nereusita"
4203
 
4204
  #: methods/cloudfiles.php:219 methods/openstack-base.php:70
4205
  msgid "%s error - failed to upload file"
4206
- msgstr "% eroare-descarcarea fisierului a fost nereusita."
4207
 
4208
  #: addons/azure.php:215 methods/addon-base.php:208 methods/cloudfiles.php:392
4209
  #: methods/cloudfiles.php:409 methods/googledrive.php:823
4210
  #: methods/openstack-base.php:319 methods/stream-base.php:261
4211
  #: methods/stream-base.php:268 methods/stream-base.php:281
4212
  msgid "%s Error"
4213
- msgstr "%eroare"
4214
 
4215
  #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4216
  #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
@@ -4220,11 +4220,11 @@ msgstr "%eroare"
4220
  #: methods/openstack-base.php:356 methods/openstack-base.php:373
4221
  #: methods/openstack-base.php:378
4222
  msgid "%s authentication failed"
4223
- msgstr "%autentificare nereusita"
4224
 
4225
  #: class-updraftplus.php:838 methods/cloudfiles.php:211
4226
  msgid "%s error - failed to re-assemble chunks"
4227
- msgstr "%eroare-punerea la loc a bucatilor a fost nereusita."
4228
 
4229
  #: addons/googlecloud.php:384 addons/migrator.php:448 admin.php:1999
4230
  #: admin.php:2046 admin.php:2054 class-updraftplus.php:686
@@ -4232,52 +4232,52 @@ msgstr "%eroare-punerea la loc a bucatilor a fost nereusita."
4232
  #: class-updraftplus.php:3444 class-updraftplus.php:3580
4233
  #: class-updraftplus.php:3613 methods/googledrive.php:299 restorer.php:873
4234
  msgid "Error: %s"
4235
- msgstr "Eroare:%"
4236
 
4237
  #: admin.php:3656
4238
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4239
- msgstr "Copia de siguranta a catalogului exista, dar nu este reinscriptibila."
4240
 
4241
  #: admin.php:3654
4242
  msgid "Backup directory specified does <b>not</b> exist."
4243
- msgstr "Copia de siguranta specificata nu exista."
4244
 
4245
  #: admin.php:3389 admin.php:3610 class-updraftplus.php:3522
4246
  #: class-updraftplus.php:3540
4247
  msgid "Warning: %s"
4248
- msgstr "Avertizare:"
4249
 
4250
  #: admin.php:2462
4251
  msgid "Last backup job run:"
4252
- msgstr "Ultima utilizare a copiei de rezerva:"
4253
 
4254
  #: backup.php:2017 backup.php:2043
4255
  msgid "%s: unreadable file - could not be backed up"
4256
- msgstr "fisier ilizibil-nu a putut fi recuperat"
4257
 
4258
  #: backup.php:2603
4259
  msgid "A very large file was encountered: %s (size: %s Mb)"
4260
- msgstr "A fost gasit un fisier foarte mare:"
4261
 
4262
  #: backup.php:1467
4263
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
4264
- msgstr "Tabelul are prea multe randuri-speram ca firma care gazduieste pagina dumneavoastra web sa va puna la dispozitie destule resurse pentru a putea trimite tabelul la copia de rezerva."
4265
 
4266
  #: backup.php:1578
4267
  msgid "An error occurred whilst closing the final database file"
4268
- msgstr "A aparut o eroare la inchiderea ultimului fisier din baza de date."
4269
 
4270
  #: backup.php:870
4271
  msgid "Warnings encountered:"
4272
- msgstr "Avertismente intalnite:"
4273
 
4274
  #: class-updraftplus.php:2423
4275
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4276
- msgstr "Copia de siguranta este acum finalizata."
4277
 
4278
  #: class-updraftplus.php:596
4279
  msgid "Your free disk space is very low - only %s Mb remain"
4280
- msgstr "Spatiul liber de pe discheta este limitat-u mai ramas x Mb"
4281
 
4282
  #: addons/migrator.php:431
4283
  msgid "Migrated site (from UpdraftPlus)"
@@ -4317,19 +4317,19 @@ msgstr "Verifica accesul la fisier: Crearea si accesarea folder-ului nu a fost p
4317
 
4318
  #: methods/s3.php:710
4319
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
4320
- msgstr "Instalarea limbajului de programare PHP nu a inclus un modul potrivit. Contactati centrul de asistenta al furnizorului de internet pentru a-l pune in functiune."
4321
 
4322
  #: methods/s3.php:897
4323
  msgid "Please check your access credentials."
4324
- msgstr "Verificati-va parolele de acces."
4325
 
4326
  #: addons/s3-enhanced.php:152 methods/s3.php:875
4327
  msgid "The error reported by %s was:"
4328
- msgstr "Eroarea raportata era:"
4329
 
4330
  #: restorer.php:1287
4331
  msgid "Please supply the requested information, and then continue."
4332
- msgstr "Va rugam sa ne furnizati informatiile cerute, iar apoi sa continuati."
4333
 
4334
  #: restorer.php:1920
4335
  msgid "Cannot drop tables, so deleting instead (%s)"
@@ -4337,7 +4337,7 @@ msgstr "Tabelurile nu pot fi mutate, astfl ca trebuie sterse."
4337
 
4338
  #: class-updraftplus.php:3591 restorer.php:1559
4339
  msgid "Site information:"
4340
- msgstr "Informatie despre site:"
4341
 
4342
  #: restorer.php:1903
4343
  msgid "Cannot create new tables, so skipping this command (%s)"
@@ -4346,7 +4346,7 @@ msgstr "Nu pot fi create tabele noi, trebuie sa evitati aceasta comanda."
4346
  #: addons/migrator.php:314 admin.php:2321 class-updraftplus.php:3584
4347
  #: restorer.php:1439 restorer.php:1465 restorer.php:1879
4348
  msgid "Warning:"
4349
- msgstr "Avertisment:"
4350
 
4351
  #: restorer.php:1440
4352
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
@@ -4354,45 +4354,45 @@ msgstr "Utilizatorul bazei de date nu are permisiunea de a crea tabele. Vom inc
4354
 
4355
  #: class-updraftplus.php:3576 restorer.php:105
4356
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4357
- msgstr "Te afli pe site-ul multiplu al WordPress-dar copia ta de siguranta nu face parte dintr-un site multiplu."
4358
 
4359
  #: admin.php:4834
4360
  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."
4361
- msgstr "Sari peste restaurarea nucleului WordPress cand importi un site singur intr-un site multiplu. Daca ai la dispozitie tot ce este necesar in catalogul tau WordPress atunci va trebui sa-l adaugi manual din nou din fisierul zip."
4362
 
4363
  #: admin.php:4137 methods/updraftvault.php:239
4364
  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."
4365
- msgstr "Instalarea PHP a server-ului tau de Internet nu a inclus si modul cerut. Va rugam sa va contactati consultantul de Internet pentru a vi-l pune in functiune."
4366
 
4367
  #: admin.php:516
4368
  msgid "Close"
4369
- msgstr "Inchide"
4370
 
4371
  #: addons/autobackup.php:283 addons/autobackup.php:374 admin.php:473
4372
  #: methods/remotesend.php:71 methods/remotesend.php:79
4373
  #: methods/remotesend.php:219 methods/remotesend.php:227
4374
  msgid "Unexpected response:"
4375
- msgstr "Raspuns neprevazut:"
4376
 
4377
  #: addons/reporting.php:412 admin.php:469
4378
  msgid "To send to more than one address, separate each address with a comma."
4379
- msgstr "Pentru a putea trimite la mai mult de o adresa, separa toate adresele prin virgula."
4380
 
4381
  #: admin.php:496
4382
  msgid "PHP information"
4383
- msgstr "Informatie PHP"
4384
 
4385
  #: admin.php:3070
4386
  msgid "show PHP information (phpinfo)"
4387
- msgstr "Arata informatie despre PHP(phpinfo)"
4388
 
4389
  #: admin.php:3090
4390
  msgid "zip executable found:"
4391
- msgstr "zip executabil"
4392
 
4393
  #: admin.php:2471
4394
  msgid "Migrate Site"
4395
- msgstr "Site care migreaza"
4396
 
4397
  #: addons/migrator.php:170
4398
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
@@ -4400,35 +4400,35 @@ msgstr " Citeste acest articol ca sa sti ce ai de facut pas cu pas."
4400
 
4401
  #: admin.php:2476
4402
  msgid "Do you want to migrate or clone/duplicate a site?"
4403
- msgstr "Vrei sa migrezi de pe un site sau sa il clonezi/duplichezi?"
4404
 
4405
  #: admin.php:2476
4406
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
4407
- msgstr "Atunci incearca plugin-ul nostru \"Migrator\". Dupa ce l-ai folosit odata ai si amortizat pretul achizitionarii decat daca ai pierde timpul sa copiezi un site la intamplare."
4408
 
4409
  #: admin.php:2476
4410
  msgid "Get it here."
4411
- msgstr "Il gasesti aici."
4412
 
4413
  #: admin.php:2946
4414
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
4415
- msgstr "Se sterge...va rugam sa alocati timp legaturilor cu stocarea la distanta pentru a finaliza aplicatia."
4416
 
4417
  #: admin.php:2945
4418
  msgid "Also delete from remote storage"
4419
- msgstr "A fost sters de asemenea din stocarea la distanta"
4420
 
4421
  #: admin.php:2804
4422
  msgid "Latest UpdraftPlus.com news:"
4423
- msgstr "Ultimele stiri UpdraftPlus:"
4424
 
4425
  #: admin.php:2437
4426
  msgid "Clone/Migrate"
4427
- msgstr "Cloneaza/Migreaza"
4428
 
4429
  #: admin.php:2157
4430
  msgid "News"
4431
- msgstr "Stiri"
4432
 
4433
  #: admin.php:2156
4434
  msgid "Premium"
@@ -4436,59 +4436,59 @@ msgstr "Premium"
4436
 
4437
  #: admin.php:1616
4438
  msgid "Local archives deleted: %d"
4439
- msgstr "Arhivele locale au fost sterse:"
4440
 
4441
  #: admin.php:1617
4442
  msgid "Remote archives deleted: %d"
4443
- msgstr "Arhivele la distanta au fost sterse:"
4444
 
4445
  #: backup.php:157
4446
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
4447
- msgstr "nu a putut sustine aceasta unitate; catalogul care-i corespunde nu exista"
4448
 
4449
  #: admin.php:1542
4450
  msgid "Backup set not found"
4451
- msgstr "Setul de rezerva nua fost gasit"
4452
 
4453
  #: class-updraftplus.php:3400
4454
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
4455
- msgstr "Inregistreaza-te pe blogul UpdraftPlus pentru a primi stiri sau oferte noi"
4456
 
4457
  #: class-updraftplus.php:3400
4458
  msgid "Blog link"
4459
- msgstr "Link-ul blogului."
4460
 
4461
  #: class-updraftplus.php:3400
4462
  msgid "RSS link"
4463
- msgstr "Link-ul RSS"
4464
 
4465
  #: admin.php:558
4466
  msgid "Testing %s Settings..."
4467
- msgstr "Testarea setarilor..."
4468
 
4469
  #: admin.php:2880
4470
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
4471
- msgstr "Sau poti sa le plasezi manual in catalogul tau UpdraftPlus (in mod normal continutul word press/updraft), ex via FTP, iar apoi foloseste link-ul \"rescan\" de mai sus."
4472
 
4473
  #: admin.php:777
4474
  msgid "Notice"
4475
- msgstr "Instiintare"
4476
 
4477
  #: admin.php:777
4478
  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."
4479
- msgstr "Modulul de depanare Updraftplus este deschis. Poti sa vezi notele despre depanare pe aceasta pagina nu numai de pe UpdraftPlus ci si de pe orice alt plugin instalat. Va rugam sa va asigurati ca nota pe care o vedeti vine din partea UpdraftPlus, inainte de inainta o cerere de asistenta."
4480
 
4481
  #: backup.php:852
4482
  msgid "Errors encountered:"
4483
- msgstr "Erori semnalate."
4484
 
4485
  #: admin.php:467
4486
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
4487
- msgstr "Rescaneaza (urmareste fisiere de rezerva pe care le-ati descarcat manual in memoria interna de rezerva)."
4488
 
4489
  #: admin.php:479
4490
  msgid "Begun looking for this entity"
4491
- msgstr "Se cauta aceasta unitate."
4492
 
4493
  #: addons/migrator.php:1088
4494
  msgid "SQL update commands run:"
@@ -4560,7 +4560,7 @@ msgstr "Adresa de IP"
4560
  #: methods/openstack2.php:127 methods/updraftvault.php:299
4561
  #: udaddons/options.php:145
4562
  msgid "Password"
4563
- msgstr "Parola"
4564
 
4565
  #: addons/sftp.php:391
4566
  msgid "Directory path"
@@ -4576,11 +4576,11 @@ msgstr "nume de server"
4576
 
4577
  #: addons/sftp.php:419 methods/openstack2.php:142
4578
  msgid "username"
4579
- msgstr "nume de utilizator"
4580
 
4581
  #: methods/ftp.php:359 methods/openstack2.php:147
4582
  msgid "password"
4583
- msgstr "parola"
4584
 
4585
  #: addons/sftp.php:428
4586
  msgid "Failure: Port must be an integer."
@@ -4693,23 +4693,23 @@ msgstr "Verifica-ti setarile de acces ale fisierului: Nu s-a putut crea si acces
4693
 
4694
  #: methods/ftp.php:320
4695
  msgid "Needs to already exist"
4696
- msgstr "Acest fisier exista deja"
4697
 
4698
  #: methods/ftp.php:351
4699
  msgid "Failure: No server details were given."
4700
- msgstr "Eroare:Nu s-au furnizat detalii cu privire la server."
4701
 
4702
  #: methods/ftp.php:369
4703
  msgid "Failure: we did not successfully log in with those credentials."
4704
- msgstr "Esuare: nu am reusit sa ne conectam cu acreditarile dumneavoastra."
4705
 
4706
  #: methods/ftp.php:378
4707
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
4708
- msgstr "Succes: ne-am conectat cu succes si avem confirmarea posibilitatii de a crea fisiere in directorul stabilit (conectare de tip:"
4709
 
4710
  #: methods/ftp.php:381
4711
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
4712
- msgstr "Esuare: ne-am conectat cu succes, dar nu am putut crea fisiere in directorul stabilit."
4713
 
4714
  #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
4715
  #: methods/addon-base.php:97 methods/addon-base.php:128
@@ -4718,7 +4718,7 @@ msgstr "Esuare: ne-am conectat cu succes, dar nu am putut crea fisiere in direct
4718
  #: methods/stream-base.php:145 methods/stream-base.php:180
4719
  #: methods/stream-base.php:245
4720
  msgid "No %s settings were found"
4721
- msgstr "Nicio setare %s nu a fost gasita"
4722
 
4723
  #: methods/stream-base.php:107 methods/stream-base.php:111
4724
  msgid "Chunk %s: A %s error occurred"
@@ -4744,7 +4744,7 @@ msgstr "Introduceti URL-ul complet, incepand cu webdav:// sau webdavs:// si incl
4744
  #: addons/googlecloud.php:666 addons/sftp.php:445 admin.php:3442 admin.php:3477
4745
  #: admin.php:3486 methods/addon-base.php:284 methods/stream-base.php:297
4746
  msgid "Failed"
4747
- msgstr "Esuare"
4748
 
4749
  #: methods/addon-base.php:294 methods/stream-base.php:311
4750
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
@@ -4761,55 +4761,55 @@ msgstr "Supra-scriere wp-config.php"
4761
  #: addons/copycom.php:387 addons/copycom.php:389 methods/dropbox.php:523
4762
  #: methods/dropbox.php:525
4763
  msgid "you have authenticated your %s account"
4764
- msgstr "V-ati autentificat la contul dumneavoastra %s"
4765
 
4766
  #: addons/copycom.php:398 methods/dropbox.php:528
4767
  msgid "though part of the returned information was not as expected - your mileage may vary"
4768
- msgstr "deși o parte din informațiile returnate nu a fost cum era de asteptat - contorul dvs. poate varia"
4769
 
4770
  #: addons/copycom.php:406 addons/onedrive.php:527 methods/dropbox.php:532
4771
  msgid "Your %s account name: %s"
4772
- msgstr "Numele contului dumneavoastra %s: %s"
4773
 
4774
  #: methods/ftp.php:303
4775
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
4776
- msgstr "Doar FTP necriptat este suportat de varianta normala UpdraftPlus."
4777
 
4778
  #: methods/ftp.php:303
4779
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
4780
- msgstr "Daca doriti criptarea datelor (de exemplu stocati informatii confidentiale) atunci aveti la dispozitie un add-on."
4781
 
4782
  #: methods/s3.php:661
4783
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
4784
- msgstr "%s Eroare: Esuara la descarcarea %s. Va rugam verificati acreditarile si permisiunile dumneavoastra."
4785
 
4786
  #: methods/s3.php:507 methods/s3.php:580 methods/s3.php:666
4787
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4788
- msgstr "%s Eroare: Esuare la accesare %s. Va rugam verificati acreditarile si permisiunile dumneavoastra."
4789
 
4790
  #: methods/s3.php:725
4791
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
4792
- msgstr "Luati cheia de acces si cheia secreta <a href=\"%s\">din consola dvs %s</a>, apoi alegeti (trebuie sa fie unic pentru toti utilizatorii %s) n nume pentru bucket(litere si numere) (si, optional, o cale) pentru a folosi stocarea de dare. Acest bucket va fi creat daca nu exista deja."
4793
 
4794
  #: methods/s3.php:727
4795
  msgid "If you see errors about SSL certificates, then please go here for help."
4796
- msgstr "Daca primiti erori legate de certificatele dumneavoastra SSL, va rugam accesati aici pentru ajutor."
4797
 
4798
  #: methods/s3.php:748
4799
  msgid "%s access key"
4800
- msgstr "%s cheie de acces"
4801
 
4802
  #: methods/s3.php:752
4803
  msgid "%s secret key"
4804
- msgstr "%s cheie secreta"
4805
 
4806
  #: methods/s3.php:756
4807
  msgid "%s location"
4808
- msgstr "%s locatie"
4809
 
4810
  #: methods/s3.php:757
4811
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4812
- msgstr "Introduceti doar numele pentru bucket sau calea pentru bucket. Exemple: mybucket, mybucket/mypath"
4813
 
4814
  #: methods/s3.php:801
4815
  msgid "API secret"
@@ -4817,7 +4817,7 @@ msgstr "API secret"
4817
 
4818
  #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:823
4819
  msgid "Failure: No bucket details were given."
4820
- msgstr "Esuare: Nu au fost date detalii despre bucket."
4821
 
4822
  #: addons/s3-enhanced.php:125 methods/openstack2.php:113 methods/s3.php:843
4823
  msgid "Region"
@@ -4825,53 +4825,53 @@ msgstr "Regiune"
4825
 
4826
  #: methods/s3.php:874
4827
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
4828
- msgstr "Esuare: Nu am putut accesa sau crea acest bucket. Va rugam verificati acreditarile si datele dumneavoastra de acces. Daca ele sunt corecte incercati un alt nume (se poate ca alt utilizator %s sa fi luat deja acest nume)."
4829
 
4830
  #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4831
  #: methods/s3.php:897
4832
  msgid "Failure"
4833
- msgstr "Esec"
4834
 
4835
  #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4836
  #: methods/s3.php:897
4837
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4838
- msgstr "Am accesat cu succes bucket-ul, dar incercarea de a crea un fisier a esuat."
4839
 
4840
  #: addons/googlecloud.php:689 methods/s3.php:887
4841
  msgid "We accessed the bucket, and were able to create files within it."
4842
- msgstr "Am accesat bucket-ul, dar nu am putut crea fisiere in el."
4843
 
4844
  #: methods/s3.php:890
4845
  msgid "The communication with %s was encrypted."
4846
- msgstr "Comunicarea cu %s este criptata."
4847
 
4848
  #: methods/s3.php:892
4849
  msgid "The communication with %s was not encrypted."
4850
- msgstr "Comunicarea cu %s nu este criptata."
4851
 
4852
  #: methods/dropbox.php:107 methods/dropbox.php:115
4853
  msgid "You do not appear to be authenticated with Dropbox"
4854
- msgstr "Se pare ca nu sunteti autentificat in Dropbox"
4855
 
4856
  #: methods/dropbox.php:200 methods/dropbox.php:221 methods/dropbox.php:237
4857
  msgid "error: failed to upload file to %s (see log file for more)"
4858
- msgstr "Eroare: incarcarea fisierului in %s a esuat (vedeti jurnalul - logul - pentru mai multe detalii)"
4859
 
4860
  #: methods/dropbox.php:448
4861
  msgid "Need to use sub-folders?"
4862
- msgstr "Aveti nevoie sa folositi sub-directoare?"
4863
 
4864
  #: methods/dropbox.php:448
4865
  msgid "Backups are saved in"
4866
- msgstr "Copiile de rezerva au fost salvate in"
4867
 
4868
  #: methods/dropbox.php:448
4869
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
4870
- msgstr "Daca realizati copii de rezerva pentru mai multe site-uri in acelasi cont de Dropbox si doriti sa va organizati pe sub-directoare, atunci"
4871
 
4872
  #: methods/dropbox.php:448
4873
  msgid "there's an add-on for that."
4874
- msgstr "Exista un add-on pentru asta."
4875
 
4876
  #: methods/cloudfiles.php:462
4877
  msgid "US or UK Cloud"
@@ -4880,20 +4880,20 @@ msgstr "US sau UK Cloud"
4880
  #: addons/cloudfiles-enhanced.php:236 methods/cloudfiles-new.php:88
4881
  #: methods/cloudfiles.php:465
4882
  msgid "US (default)"
4883
- msgstr "US (default)"
4884
 
4885
  #: addons/cloudfiles-enhanced.php:237 methods/cloudfiles-new.php:89
4886
  #: methods/cloudfiles.php:466
4887
  msgid "UK"
4888
- msgstr "UK"
4889
 
4890
  #: methods/cloudfiles.php:482
4891
  msgid "Cloud Files username"
4892
- msgstr "Utilizator Cloud Files"
4893
 
4894
  #: methods/cloudfiles.php:486
4895
  msgid "Cloud Files API key"
4896
- msgstr "Cheie API Cloud Files"
4897
 
4898
  #: methods/cloudfiles.php:490
4899
  msgid "Cloud Files container"
@@ -4901,7 +4901,7 @@ msgstr "Container Cloud Files"
4901
 
4902
  #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:714
4903
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4904
- msgstr "Modulul %s UpdraftPlus <strong>este necesar</strong> %s. Va rugam nu completati o cerere in aceasta privinta, nu exista alternativa."
4905
 
4906
  #: addons/migrator.php:274 addons/migrator.php:1834 addons/moredatabase.php:70
4907
  #: addons/moredatabase.php:72 addons/moredatabase.php:74 addons/sftp.php:415
@@ -4913,7 +4913,7 @@ msgstr "Modulul %s UpdraftPlus <strong>este necesar</strong> %s. Va rugam nu com
4913
  #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:797
4914
  #: methods/s3.php:801
4915
  msgid "Failure: No %s was given."
4916
- msgstr "Esec: %s este dat."
4917
 
4918
  #: methods/cloudfiles-new.php:142 methods/cloudfiles.php:504 methods/s3.php:797
4919
  msgid "API key"
@@ -4923,63 +4923,63 @@ msgstr "Cheie API"
4923
  #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:509
4924
  #: methods/openstack2.php:121
4925
  msgid "Username"
4926
- msgstr "Utilizator"
4927
 
4928
  #: methods/cloudfiles.php:529 methods/openstack-base.php:336
4929
  msgid "Failure: No container details were given."
4930
- msgstr "Esec: Nu au fost date detalii despre container."
4931
 
4932
  #: methods/cloudfiles.php:556
4933
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4934
- msgstr "Eroare Cloud Files - am incercat sa accesam acest container, dar nu am putut crea un fisier in el."
4935
 
4936
  #: methods/cloudfiles.php:560 methods/openstack-base.php:392
4937
  msgid "We accessed the container, and were able to create files within it."
4938
- msgstr "Am accesat containerul, dar nu am putut scrie un fisier in el"
4939
 
4940
  #: methods/email.php:43
4941
  msgid "WordPress Backup"
4942
- msgstr "Backup WordPress"
4943
 
4944
  #: methods/email.php:69
4945
  msgid "Note:"
4946
- msgstr "Nota:"
4947
 
4948
  #: methods/s3.php:346
4949
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
4950
- msgstr "%s incarcare: incercarea de descarcare multipart a esuat - pentru mai multe detalii verificati fisierul jurnal/log"
4951
 
4952
  #: methods/s3.php:369
4953
  msgid "%s error: file %s was shortened unexpectedly"
4954
- msgstr "%s Eroare: fișierul%s a fost trunchiat în mod neașteptat"
4955
 
4956
  #: methods/s3.php:379
4957
  msgid "%s chunk %s: upload failed"
4958
- msgstr "%s chunk %s: incarcare esuata"
4959
 
4960
  #: methods/s3.php:395
4961
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
4962
- msgstr "%s upload (%s): reasamblare esuata (vedeti jurnalul/log/ pentru mai multe detalii)"
4963
 
4964
  #: methods/s3.php:399
4965
  msgid "%s re-assembly error (%s): (see log file for more)"
4966
- msgstr "%s eroare reasamblare (%s): ((vedeti jurnalul/log/ pentru mai multe detalii)"
4967
 
4968
  #: methods/s3.php:411
4969
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
4970
- msgstr "%s Eroare: Creare bucket %s esuata. Va rugam verificati permisiunile si acreditarile dumneavoastra."
4971
 
4972
  #: addons/googlecloud.php:826 methods/googledrive.php:904
4973
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
4974
- msgstr "Pentru explicatii mai detaliate, inclusiv imagini, urmati acest link. Explicatii de mai jos sunt suficiente pentru utilizatorii mai experimentati."
4975
 
4976
  #: addons/googlecloud.php:828 methods/googledrive.php:906
4977
  msgid "Select 'Web Application' as the application type."
4978
- msgstr "Alegeti \"Aplicatie Web\" ca tip de aplicatie"
4979
 
4980
  #: addons/googlecloud.php:828 methods/googledrive.php:906
4981
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
4982
- msgstr "Trebuie să adăugați următoarele ca redirecționare autorizata URI (sub \"Mai multe opțiuni\") când sunteti intrebat"
4983
 
4984
  #: addons/googlecloud.php:839 addons/onedrive.php:698
4985
  #: methods/googledrive.php:916
@@ -4988,12 +4988,12 @@ msgstr "ID client"
4988
 
4989
  #: addons/googlecloud.php:842 methods/googledrive.php:917
4990
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
4991
- msgstr "Daca Google afiseaza mesajul \"invalid_client\", inseamna ca nu ati introdus un ID de client corect aici."
4992
 
4993
  #: addons/googlecloud.php:847 addons/onedrive.php:702
4994
  #: methods/googledrive.php:920
4995
  msgid "Client Secret"
4996
- msgstr "Client Secret"
4997
 
4998
  #: addons/googlecloud.php:896 methods/googledrive.php:950
4999
  msgid "Authenticate with Google"
@@ -5001,40 +5001,40 @@ msgstr "Autentificare cu Google"
5001
 
5002
  #: addons/googlecloud.php:907 methods/googledrive.php:961
5003
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5004
- msgstr "<strong>Dupa</strong> salvarea setarilor (prin apasarea butonului 'Salvare modificari' de mai jos), intorceti-va aici si urmati acest link pentru a finaliza autentificarea cu Google."
5005
 
5006
  #: addons/cloudfiles-enhanced.php:88 addons/cloudfiles-enhanced.php:125
5007
  #: addons/cloudfiles-enhanced.php:130 methods/cloudfiles.php:539
5008
  #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
5009
  msgid "Cloud Files authentication failed"
5010
- msgstr "Autentificare esuata la Cloud Files"
5011
 
5012
  #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
5013
  #: methods/cloudfiles.php:363
5014
  msgid "Cloud Files error - failed to create and access the container"
5015
- msgstr "Eroare Cloud Files - creare si accesare container esuata"
5016
 
5017
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5018
  #: class-updraftplus.php:792 methods/cloudfiles.php:130
5019
  #: methods/googledrive.php:741 methods/googledrive.php:746
5020
  msgid "%s Error: Failed to open local file"
5021
- msgstr "%s Eroare: Deschiderea fisierului local esuata"
5022
 
5023
  #: addons/sftp.php:135 addons/sftp.php:144 methods/cloudfiles.php:147
5024
  #: methods/cloudfiles.php:189 methods/openstack-base.php:65
5025
  #: methods/openstack-base.php:190 methods/s3.php:314 methods/s3.php:326
5026
  #: methods/s3.php:327
5027
  msgid "%s Error: Failed to upload"
5028
- msgstr "%s Eroare: Incarcare fisier esuata"
5029
 
5030
  #: methods/cloudfiles.php:218
5031
  msgid "Cloud Files error - failed to upload file"
5032
- msgstr "Eroare Cloud Files - incarcare fisier esuata"
5033
 
5034
  #: class-updraftplus.php:867 methods/cloudfiles.php:392
5035
  #: methods/stream-base.php:261
5036
  msgid "Error opening local file: Failed to download"
5037
- msgstr "Eroare deschidere fisier local: Descarcare esuata"
5038
 
5039
  #: methods/openstack-base.php:319
5040
  msgid "Error downloading remote file: Failed to download ("
@@ -5045,26 +5045,26 @@ msgstr "Eroare descarcare fisier stocat la distanta: Descarcare esuata ("
5045
  #: methods/openstack-base.php:440 methods/s3.php:762
5046
  #: methods/stream-base.php:219
5047
  msgid "Test %s Settings"
5048
- msgstr "Testare setari %s"
5049
 
5050
  #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5051
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5052
- msgstr "Luati-va cheia API <a href=\"https://mycloud.rackspace.com/\">from pentru consola Rackspace Cloud </a> (cititi instructiunile aici <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), dupa aceasta alegeti-va un nume pentru contul dumneavoastra. Acest cont va fi creat pentru dumneavoastra, daca nu exista deja in sistem."
5053
 
5054
  #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5055
  #: methods/openstack2.php:94
5056
  msgid "Also, you should read this important FAQ."
5057
- msgstr "De asemenea, ar fi bine sa cititi aceste FAQ."
5058
 
5059
  #: methods/googledrive.php:410
5060
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5061
- msgstr "Cont plin: contul dumneavoastra %s mai are doar %d bytes, iar fisierul de incarcat are %d bytes"
5062
 
5063
  #: methods/googledrive.php:381 methods/googledrive.php:427
5064
  #: methods/googledrive.php:433 methods/googledrive.php:435
5065
  #: methods/stream-base.php:196
5066
  msgid "Failed to upload to %s"
5067
- msgstr "Incarcare la %s esuata"
5068
 
5069
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5070
  #: addons/googlecloud.php:709 addons/onedrive.php:439
@@ -5077,15 +5077,15 @@ msgstr "Contul nu este autorizat."
5077
  #: methods/openstack-base.php:419 methods/s3.php:686
5078
  #: methods/stream-base.php:212
5079
  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."
5080
- msgstr "%s este o alegere foarte buna deoarece UpdraftPlus suporta incarcarile de tip chunck - asa ca indiferent cat de mare este site-ul dumneavoastra, UpdraftPlus poate incarca pe bucati mici astfel incat sa nu fiti incurcati de intreruperi neprevazute."
5081
 
5082
  #: restorer.php:1729
5083
  msgid "will restore as:"
5084
- msgstr "Va fi restaurat ca:"
5085
 
5086
  #: addons/migrator.php:1121 restorer.php:1957
5087
  msgid "the database query being run was:"
5088
- msgstr "Interogarea bazei de date este rulata ca:"
5089
 
5090
  #: restorer.php:1791
5091
  msgid "Finished: lines processed: %d in %.2f seconds"
@@ -5093,7 +5093,7 @@ msgstr "Terminat: linii procesate: %d in %.2f secunde."
5093
 
5094
  #: restorer.php:2055 restorer.php:2130
5095
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5096
- msgstr "Prefixul tabelei a fost schimbat: modificati campurile tabelei %s in conformitate:"
5097
 
5098
  #: addons/migrator.php:1734 admin.php:3445 admin.php:3479 admin.php:3483
5099
  #: admin.php:4865 admin.php:4879 restorer.php:2061 restorer.php:2166
@@ -5102,35 +5102,35 @@ msgstr "OK"
5102
 
5103
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:105
5104
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5105
- msgstr "Va trebui sa va re-autentificati cu %s, intrucat actualele acreditari nu functioneaza."
5106
 
5107
  #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5108
  #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5109
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5110
- msgstr "Nu aveti instalat add-on-ul UpdraftPlus %s - il puteti lua de la %s"
5111
 
5112
  #: methods/viaaddon-base.php:72
5113
  msgid "%s support is available as an add-on"
5114
- msgstr "Suportul pentru %s este disponibili ca add-on"
5115
 
5116
  #: methods/viaaddon-base.php:72
5117
  msgid "follow this link to get it"
5118
- msgstr "Urmati acest link pentru a-l obtine"
5119
 
5120
  #: addons/googlecloud.php:382 methods/googledrive.php:297
5121
  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."
5122
  msgstr ""
5123
- "Nu a fost primit un token nou de la Google. Aceasta inseamna, de obicei, ca ati introdus raspunsul secret eronat sau ca inca nu v-ati reautentificat (vezi mai jos) de la corectarea lui.\n"
5124
- "Reverificati, apoi urmati linkul de reautentificare din nou. Daca tot nu functioneaza folositi modul expert pentru a sterge toate setarile dumneavoastra, creati un nou ID client/secret Google si incercati din nou."
5125
 
5126
  #: addons/googlecloud.php:390 methods/googledrive.php:305
5127
  msgid "Authorization failed"
5128
- msgstr "Autorizare esuata"
5129
 
5130
  #: addons/copycom.php:413 addons/onedrive.php:520 methods/dropbox.php:545
5131
  #: methods/googledrive.php:332
5132
  msgid "Your %s quota usage: %s %% used, %s available"
5133
- msgstr "Spatiul de stocare %s: %s %% folosit, %s disponibil"
5134
 
5135
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5136
  #: addons/onedrive.php:554 addons/sftp.php:478 methods/addon-base.php:291
@@ -5143,11 +5143,11 @@ msgstr "Succes"
5143
  #: addons/googlecloud.php:579 addons/onedrive.php:554
5144
  #: methods/googledrive.php:358
5145
  msgid "you have authenticated your %s account."
5146
- msgstr "V-ati autentificat in contul dumneavoastra %s."
5147
 
5148
  #: methods/googledrive.php:507
5149
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5150
- msgstr "Nu ati obtinut inca tokenul de acces de la Google - aveti nevoie sa va autentificati sau re-autentificati conexiunea dumneavoastra la Google Drive."
5151
 
5152
  #: restorer.php:429
5153
  msgid "wp-config.php from backup: restoring (as per user's request)"
@@ -5155,15 +5155,15 @@ msgstr "wp-config.php restaurat din copia de rezerva (la solicitarea utilizatoru
5155
 
5156
  #: restorer.php:1330
5157
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
5158
- msgstr "Atentie: PHP safe_mode este activ pe serverul dumneavoastra. Sunt foarte probabile inreruperi (timeout). Daca se intampla asta veti fi nevoiti sa realziati restaurarea manual folosind phpMyAdmin sau alte metode asemanatoare."
5159
 
5160
  #: restorer.php:1353
5161
  msgid "Failed to find database file"
5162
- msgstr "Gasirea bazei de date esuata"
5163
 
5164
  #: restorer.php:1374
5165
  msgid "Failed to open database file"
5166
- msgstr "Deschiderea bazei de date esuata"
5167
 
5168
  #: addons/migrator.php:586 restorer.php:1379
5169
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
@@ -5172,75 +5172,75 @@ msgstr "Acces baza de date: Accesul direct MySQL nu este disponibil, prin urmare
5172
  #: addons/reporting.php:65 addons/reporting.php:147 backup.php:919
5173
  #: class-updraftplus.php:3517
5174
  msgid "Backup of:"
5175
- msgstr "Backup of:"
5176
 
5177
  #: restorer.php:1540 restorer.php:1633 restorer.php:1659
5178
  msgid "Old table prefix:"
5179
- msgstr "Prefixul tabelei vechi:"
5180
 
5181
  #: admin.php:4876
5182
  msgid "Archive is expected to be size:"
5183
- msgstr "Marimea preconizata a arhivei:"
5184
 
5185
  #: admin.php:4884
5186
  msgid "The backup records do not contain information about the proper size of this file."
5187
- msgstr "Înregistrările de rezervă nu conțin informații cu privire la dimensiunea corectă a acestui fișier."
5188
 
5189
  #: admin.php:4982
5190
  msgid "Error message"
5191
- msgstr "Mesaj de eroare"
5192
 
5193
  #: admin.php:4887 admin.php:4888
5194
  msgid "Could not find one of the files for restoration"
5195
- msgstr "Nu am putut gasi unul sau mai multe fisiere necesare restaurarii"
5196
 
5197
  #: restorer.php:90
5198
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5199
- msgstr "UpdraftPlus nu poate restaurata direct dintr-un astfel de fisier. Acesta trebuie restaurat manual."
5200
 
5201
  #: restorer.php:91
5202
  msgid "Backup file not available."
5203
- msgstr "Copia de rezerva nu este disponibila."
5204
 
5205
  #: restorer.php:92
5206
  msgid "Copying this entity failed."
5207
- msgstr "Copierea acestui obiect a esuat."
5208
 
5209
  #: restorer.php:93
5210
  msgid "Unpacking backup..."
5211
- msgstr "Dezarhivare copie de rezerva..."
5212
 
5213
  #: restorer.php:94
5214
  msgid "Decrypting database (can take a while)..."
5215
- msgstr "Decriptare baza de date (poate dura o perioada de timp)..."
5216
 
5217
  #: restorer.php:95
5218
  msgid "Database successfully decrypted."
5219
- msgstr "Decriptarea bazei de data realizata cu succes."
5220
 
5221
  #: restorer.php:98
5222
  msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
5223
- msgstr "Restaurare baza de date (pentru un site mare acest lucru poate dura mult timp - daca apar intreruperi (timeout) pot fi datorate limitarilor de resurse configurate de providerul dumneavoastra). In acest caz este indicat sa folositi alte metode, cum ar fi phpMyAdmin)..."
5224
 
5225
  #: restorer.php:99
5226
  msgid "Cleaning up rubbish..."
5227
- msgstr "Curatam gunoaiele :).."
5228
 
5229
  #: restorer.php:101
5230
  msgid "Could not delete old directory."
5231
- msgstr "Nu am putut sterge vechiul director."
5232
 
5233
  #: restorer.php:104
5234
  msgid "Failed to delete working directory after restoring."
5235
- msgstr "Nu am putut sterge directorul de lucru dupa restaurarea site-ului."
5236
 
5237
  #: restorer.php:301
5238
  msgid "Failed to create a temporary directory"
5239
- msgstr "Nu s-a reusit crearea directorului temporar."
5240
 
5241
  #: restorer.php:316
5242
  msgid "Failed to write out the decrypted database to the filesystem"
5243
- msgstr "Nu s-a reusit scrierea bazei de date decriptate in fylesystem"
5244
 
5245
  #: restorer.php:424
5246
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
@@ -5248,55 +5248,55 @@ msgstr "wp-config.php din copia de rezerva va fi restaurat ca wp-config-backup.p
5248
 
5249
  #: admin.php:3998
5250
  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."
5251
- msgstr "Alegand aceasta optiune reduceti gradul de securitate prin stoparea folosirii de catre UpdraftPlus a autentificarii si criptarii SSL pentru transmisii, acolo unde este posibil. Atentie - unii provideri de stocare online (de ex. Dropbox) nu permit acest lucru, asa ca aceste setari nu vor functiona cu astfel de provideri."
5252
 
5253
  #: admin.php:4021
5254
  msgid "Save Changes"
5255
- msgstr "Salvare modificari"
5256
 
5257
  #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:714
5258
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5259
- msgstr "PHP-ul instalat pe serverul web al dumneavoastra nu include modulul necesar (%s). Va rugam contactati providerul dumneavoastra de webhosting pentru suport."
5260
 
5261
  #: admin.php:4144
5262
  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)."
5263
- msgstr "Instalarea dumneavoastra PHP/Curl de pe serverul web nu permite accesul de tip https. Comunicatiile cu %s nu vor fi criptate. Rugati providerul de webhosting sa instaleze Curl/SSL in vederea obtinerii capacitatii de criptare (printr-un add-on)"
5264
 
5265
  #: admin.php:4146
5266
  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."
5267
- msgstr "Instalarea PHP/Curl de pe serverul dumneavoastra web nu suporta accesul de tip https. Nu putem accesa %s fara acest tip de acces. Va rugam contactati providerul dumneavoastra. %s <strong> necesita</strong> Curl+https. Va rugam nu transmiteti sesizari catre suport, nu exista alternativa."
5268
 
5269
  #: admin.php:4149
5270
  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."
5271
- msgstr "Vesti bune:Comunicarea siteului dumneavoastra cu %s poate fi criptata. Daca intampinati erori in criptarea, va rugam uitati-va la Setari Expert pentru mai multe informatii."
5272
 
5273
  #: admin.php:4621
5274
  msgid "Delete this backup set"
5275
- msgstr "Stergeti aceasta copie de rezerva"
5276
 
5277
  #: admin.php:4528
5278
  msgid "Press here to download"
5279
- msgstr "Apasati aici pentru descarcare"
5280
 
5281
  #: admin.php:4612
5282
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5283
- msgstr "Dupa apasarea acestui buton, vi se va da posibilitatea de a alege componentele pe care doriti sa le restaurati"
5284
 
5285
  #: admin.php:4663
5286
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5287
- msgstr "Acest backup nu exista in istoricul copiilor de siguranta - restaurare anulata. Data/ora:"
5288
 
5289
  #: admin.php:4711
5290
  msgid "UpdraftPlus Restoration: Progress"
5291
- msgstr "Restaurare UpdraftPlus: In derulare"
5292
 
5293
  #: admin.php:4757
5294
  msgid "ABORT: Could not find the information on which entities to restore."
5295
- msgstr "ANULATI: Nu am putut gasi ce entitati sa restauram."
5296
 
5297
  #: admin.php:4758
5298
  msgid "If making a request for support, please include this information:"
5299
- msgstr "Daca doriti sa trimiteti o sesizare catre suport, va rugam includeti si aceasta informatie:"
5300
 
5301
  #: admin.php:3992
5302
  msgid "Do not verify SSL certificates"
@@ -5304,63 +5304,63 @@ msgstr "Nu verifica certificatele SSL"
5304
 
5305
  #: admin.php:3993
5306
  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."
5307
- msgstr "Alegand aceasta optiune micsorati nivelul de securitate prin stoparea verificarii de catre UpdraftPlus a identitatii siteurilor criptate la care se conecteaza (de ex. Dropbox, Google Drive). Inseamna ca UpdraftPlus ca folosi SSL doar pentru criptarea traficului, nu si pentru autentificare."
5308
 
5309
  #: admin.php:3993
5310
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5311
- msgstr "Luati aminte ca nu toate metodele de backup in cloud necesita autentificarea SSL."
5312
 
5313
  #: admin.php:3997
5314
  msgid "Disable SSL entirely where possible"
5315
- msgstr "Dezactiveaza SSL peste tot unde este posibil"
5316
 
5317
  #: admin.php:3942
5318
  msgid "Expert settings"
5319
- msgstr "Setari Expert"
5320
 
5321
  #: admin.php:3943
5322
  msgid "Show expert settings"
5323
- msgstr "Arata Setari Expert"
5324
 
5325
  #: admin.php:3943
5326
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5327
- msgstr "click aici daca doriti mai multe optiuni, nu va deranjati decat daca aveti probleme sau sunteti pur si simplu curios."
5328
 
5329
  #: admin.php:3963
5330
  msgid "Delete local backup"
5331
- msgstr "Sterge copia de siguranta locala"
5332
 
5333
  #: admin.php:3968
5334
  msgid "Backup directory"
5335
- msgstr "Director copie de sigurnata"
5336
 
5337
  #: admin.php:3650
5338
  msgid "Backup directory specified is writable, which is good."
5339
- msgstr "Directorul de backup specificat este writable, inseamna ca este in regula."
5340
 
5341
  #: admin.php:3658
5342
  msgid "Click here to attempt to create the directory and set the permissions"
5343
- msgstr "Apasati aici pentru a incerca crearea directorului si pentru a seta permisiunile necesare"
5344
 
5345
  #: admin.php:3658
5346
  msgid "or, to reset this option"
5347
- msgstr "sau, pentru a reseta aceasta optiune"
5348
 
5349
  #: admin.php:3658
5350
  msgid "click here"
5351
- msgstr "apasa aici"
5352
 
5353
  #: admin.php:3658
5354
  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."
5355
- msgstr "Daca nu ati avut succes cu permisiunile de pe serverul dumneavoastra incercati sa le schimbati sau sa folositi alt director care are permisiunea de scriere."
5356
 
5357
  #: admin.php:3987
5358
  msgid "Use the server's SSL certificates"
5359
- msgstr "Folositi certificatele SSL ale serverului"
5360
 
5361
  #: admin.php:3988
5362
  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."
5363
- msgstr "In mod implicit UpdraftPlus foloseste propriile certificate SSL pentru a verifica identitatea siteurilor externe (de ex. pentru a fi siguri ca sunt conectate cu adevaratul Dropbox, Amazon S3, etc, si nu e vorba de fake-uri). Noi pastram aceste certificate actualizate. Totusi, daca obtineti erori SSL, atunci alegeti aceasta optiune (care lasa UpdraftPlus sa foloseasca certificatele dumneavoastra), poate acest lucru va remedia erorile."
5364
 
5365
  #: admin.php:3915 udaddons/options.php:143
5366
  msgid "Email"
@@ -5372,27 +5372,27 @@ msgstr "Fraza de criptare a bazei de date"
5372
 
5373
  #: admin.php:3855
5374
  msgid "Manually decrypt a database backup file"
5375
- msgstr "Decriptare manuala a copiei de siguranta a bazei de date"
5376
 
5377
  #: admin.php:3770
5378
  msgid "Choose your remote storage"
5379
- msgstr "Alegeti stocarea externa"
5380
 
5381
  #: addons/reporting.php:201 admin.php:4289
5382
  msgid "None"
5383
- msgstr "Niciuna"
5384
 
5385
  #: admin.php:511
5386
  msgid "Cancel"
5387
- msgstr "Anuleaza"
5388
 
5389
  #: admin.php:495
5390
  msgid "Requesting start of backup..."
5391
- msgstr "Solcitare start realizare copie de rezerva..."
5392
 
5393
  #: admin.php:3938
5394
  msgid "Advanced / Debugging Settings"
5395
- msgstr "Setari Avansate/Depanare"
5396
 
5397
  #: admin.php:3953
5398
  msgid "Debug mode"
@@ -5400,7 +5400,7 @@ msgstr "Mod depanare"
5400
 
5401
  #: admin.php:3826
5402
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5403
- msgstr "Directoarele de mai sus reprezinta totul, cu expectia core-ului propriu-zis WordPress a carei copie noua poate fi descarcata de pe WordPress.org."
5404
 
5405
  #: admin.php:3641
5406
  msgid "Daily"
@@ -5408,11 +5408,11 @@ msgstr "Zilnic"
5408
 
5409
  #: admin.php:3642
5410
  msgid "Weekly"
5411
- msgstr "Saptamanal"
5412
 
5413
  #: admin.php:3643
5414
  msgid "Fortnightly"
5415
- msgstr "La doua saptamani"
5416
 
5417
  #: admin.php:3644
5418
  msgid "Monthly"
@@ -5420,35 +5420,35 @@ msgstr "Lunar"
5420
 
5421
  #: admin.php:3754
5422
  msgid "To fix the time at which a backup should take place,"
5423
- msgstr "Pentru a stabili momentul la care trebuie sa inceapa realizarea unei copii de siguranta,"
5424
 
5425
  #: admin.php:3754
5426
  msgid "e.g. if your server is busy at day and you want to run overnight"
5427
- msgstr "de exmplu daca serverul dumneavoastra este mai incarcat ziua si doriti sa ruleze peste noapte"
5428
 
5429
  #: admin.php:3823
5430
  msgid "Include in files backup"
5431
- msgstr "Include in fisierele de backup"
5432
 
5433
  #: admin.php:4081
5434
  msgid "Any other directories found inside wp-content"
5435
- msgstr "Alte directoare gasite in directorul wp-content"
5436
 
5437
  #: addons/morefiles.php:260 admin.php:4090
5438
  msgid "Exclude these:"
5439
- msgstr "Exclude asta:"
5440
 
5441
  #: admin.php:3143
5442
  msgid "Debug Database Backup"
5443
- msgstr "Depanare copie de rezerva baza de date"
5444
 
5445
  #: admin.php:3143
5446
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
5447
- msgstr "Asta va porni realizarea imediata a unei copii de siguranta a bazei de date. Pagina se va bloca pana la finalizare (de ex. neprogramata). Realizarea copiei de siguranta poate dura o perioada; acest buton este folositor pentru a verifica faptul ca backup-ul trece de stagiile initiale sau pentru siteurile WordPress de mici dimensiuni..."
5448
 
5449
  #: admin.php:3153
5450
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
5451
- msgstr "Asta va sterge toate setarile dumneavoastra UpdraftPlus. Sunteti siguri ca doriti asta?"
5452
 
5453
  #: admin.php:3380
5454
  msgid "show log"
@@ -5457,35 +5457,35 @@ msgstr "Arata jurnal (log)"
5457
  #: addons/migrator.php:2204 admin.php:512 admin.php:2921 admin.php:3439
5458
  #: admin.php:3472 admin.php:4621
5459
  msgid "Delete"
5460
- msgstr "Sterge"
5461
 
5462
  #: admin.php:3523
5463
  msgid "The request to the filesystem to create the directory failed."
5464
- msgstr "Cererea catre filesystem de a crea noul director a esuat."
5465
 
5466
  #: admin.php:3537
5467
  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"
5468
- msgstr "Directorul a fost creat, dar a trebuit sa schimbam permisiunile fisierului in 777 (world-writable) pentru a putea scrie in el. Va trebui sa verificati cu providerul dumenavoastra de webhosting daca acest lucru nu creeaza probleme."
5469
 
5470
  #: admin.php:3542
5471
  msgid "The folder exists, but your webserver does not have permission to write to it."
5472
- msgstr "Directorul exista, dar nu aveti permisiunea de scriere in el."
5473
 
5474
  #: admin.php:518 admin.php:3624
5475
  msgid "Download log file"
5476
- msgstr "Descarcare fisier-jurnal (log)"
5477
 
5478
  #: admin.php:2497
5479
  msgid "Multisite"
5480
- msgstr "Multisite"
5481
 
5482
  #: admin.php:2501
5483
  msgid "Do you need WordPress Multisite support?"
5484
- msgstr "Doriti suport pentru WordPress Multisite?"
5485
 
5486
  #: admin.php:2501
5487
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
5488
- msgstr "Va rugam sa incercati UpDraftPlus Premium sau add-on-ul independent Multisite."
5489
 
5490
  #: admin.php:3058
5491
  msgid "Web server:"
@@ -5493,11 +5493,11 @@ msgstr "Server web:"
5493
 
5494
  #: admin.php:3067
5495
  msgid "Peak memory usage"
5496
- msgstr "Varf utilizare memorie"
5497
 
5498
  #: admin.php:3068
5499
  msgid "Current memory usage"
5500
- msgstr "Utilizare curenta memorie"
5501
 
5502
  #: admin.php:3070 admin.php:3071 admin.php:3078 admin.php:3079
5503
  msgid "%s version:"
@@ -5509,31 +5509,31 @@ msgstr "Da"
5509
 
5510
  #: admin.php:3080 admin.php:3086 admin.php:3090
5511
  msgid "No"
5512
- msgstr "nu"
5513
 
5514
  #: admin.php:3115
5515
  msgid "Total (uncompressed) on-disk data:"
5516
- msgstr "Total date pe disc (necomprimate):"
5517
 
5518
  #: admin.php:3116
5519
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
5520
- msgstr "Nota: Acest contor este bazat pe ceea ce a fost sau nu a fost, excluzand ultima data cand au fost salvate optiunile."
5521
 
5522
  #: admin.php:3124
5523
  msgid "count"
5524
- msgstr "count"
5525
 
5526
  #: admin.php:3138
5527
  msgid "Debug Full Backup"
5528
- msgstr "Depanare full-backup"
5529
 
5530
  #: admin.php:3138
5531
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
5532
- msgstr "Aceasta va determina crearea imediata a unei copii de rezerva. Pagina se va bloca pana la finalizare."
5533
 
5534
  #: admin.php:2879
5535
  msgid "UpdraftPlus - Upload backup files"
5536
- msgstr "UpdraftPlus - Incarcare copii de rezerva"
5537
 
5538
  #: admin.php:478 admin.php:2863
5539
  msgid "calculating..."
@@ -5557,59 +5557,59 @@ msgstr "Ar trebui:"
5557
 
5558
  #: admin.php:494
5559
  msgid "Download error: the server sent us a response which we did not understand."
5560
- msgstr "Eroare la descarcare: serverul a trimis un raspuns pe care nu il intelegem."
5561
 
5562
  #: admin.php:2931
5563
  msgid "Delete backup set"
5564
- msgstr "Stergeti copia de rezerva"
5565
 
5566
  #: admin.php:2952
5567
  msgid "Restore backup"
5568
- msgstr "Restaurare backup"
5569
 
5570
  #: admin.php:2953
5571
  msgid "Restore backup from"
5572
- msgstr "Restaurare backup din"
5573
 
5574
  #: admin.php:2965
5575
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
5576
- msgstr "Restaurarea va inlocui in acest site temele, plugin-urile, incarcarile, baza de date si/sau continutul altor directoare (in concordanta cu ceea ce se afla in copia de rezerva si cu selectiile si optiunile dumneavoastra)."
5577
 
5578
  #: admin.php:2965
5579
  msgid "Choose the components to restore"
5580
- msgstr "Alegeti componentele pe care doriti sa le restaurati"
5581
 
5582
  #: admin.php:2977
5583
  msgid "Your web server has PHP's so-called safe_mode active."
5584
- msgstr "PHP-ul de pe serverul web are activat ceea ce se cheama safe_mode."
5585
 
5586
  #: admin.php:2990
5587
  msgid "The following entity cannot be restored automatically: \"%s\"."
5588
- msgstr "Urmatoarea entitate nu poate fi restaurata automat: \"%s\""
5589
 
5590
  #: admin.php:2990
5591
  msgid "You will need to restore it manually."
5592
- msgstr "Va fi nevoie sa realizati aceasta restaurare manual."
5593
 
5594
  #: addons/morefiles.php:63 admin.php:2997
5595
  msgid "%s restoration options:"
5596
- msgstr "%s optiuni restaurare:"
5597
 
5598
  #: admin.php:3005
5599
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
5600
- msgstr "Puteti cauta si inlocui baza de date a dumneavoastra (pentru migrarea unui site la o nou locatie/URL) cu add-on-ul Migrator. Urmati acest link pentru mai multe informatii"
5601
 
5602
  #: admin.php:3016
5603
  msgid "Do read this helpful article of useful things to know before restoring."
5604
- msgstr "Cititi acest articol deoarece contine multe informatii si cunostinte necesare inainte de a realiza o restaurare."
5605
 
5606
  #: admin.php:2486
5607
  msgid "Perform a one-time backup"
5608
- msgstr "Realizeaza acum o copie de siguranta"
5609
 
5610
  #: admin.php:330 admin.php:510 admin.php:2431
5611
  msgid "Backup Now"
5612
- msgstr "Back-up acum"
5613
 
5614
  #: addons/migrator.php:223 admin.php:517 admin.php:2434 admin.php:4612
5615
  msgid "Restore"
@@ -5618,27 +5618,27 @@ msgstr "Restaurare"
5618
  #: addons/autobackup.php:278 addons/autobackup.php:372 admin.php:2786
5619
  #: admin.php:2791
5620
  msgid "Last log message"
5621
- msgstr "Ultimul mesaj din jurnal"
5622
 
5623
  #: admin.php:2787 admin.php:2793 central/bootstrap.php:164
5624
  msgid "(Nothing yet logged)"
5625
- msgstr "(Nimeni nu este inca logat)"
5626
 
5627
  #: admin.php:2828
5628
  msgid "Download most recently modified log file"
5629
- msgstr "Descarca fisierul jurnal modificat cel mai recent"
5630
 
5631
  #: admin.php:2866
5632
  msgid "More tasks:"
5633
- msgstr "Mai multe sarcini (tasks):"
5634
 
5635
  #: admin.php:2872
5636
  msgid "Opera web browser"
5637
- msgstr "Browser Opee"
5638
 
5639
  #: admin.php:2872
5640
  msgid "If you are using this, then turn Turbo/Road mode off."
5641
- msgstr "Daca utilizati asta, atunci treceti modul Turbo/Road pe off."
5642
 
5643
  #: addons/google-enhanced.php:72 methods/googledrive.php:146
5644
  #: methods/googledrive.php:358 methods/googledrive.php:381
@@ -5653,90 +5653,90 @@ msgstr "Google Drive"
5653
 
5654
  #: admin.php:2863
5655
  msgid "Web-server disk space in use by UpdraftPlus"
5656
- msgstr "Spatiul de disc de pe serverul web folosit de UpdraftPlus"
5657
 
5658
  #: admin.php:2863
5659
  msgid "refresh"
5660
- msgstr "reimprospatare"
5661
 
5662
  #: admin.php:2161
5663
  msgid "Lead developer's homepage"
5664
- msgstr "Catre pagina dezvoltatorului"
5665
 
5666
  #: admin.php:2162
5667
  msgid "Version"
5668
- msgstr "Versiunea"
5669
 
5670
  #: admin.php:2339
5671
  msgid "Your backup has been restored."
5672
- msgstr "Restaurarea din copia dumneavoastra de siguranta a fost realizata."
5673
 
5674
  #: admin.php:2358
5675
  msgid "Current limit is:"
5676
- msgstr "Limita curenta este:"
5677
 
5678
  #: admin.php:497 admin.php:3170
5679
  msgid "Delete Old Directories"
5680
- msgstr "Stergeti vechile directoare"
5681
 
5682
  #: admin.php:2416
5683
  msgid "JavaScript warning"
5684
- msgstr "Avertisment JavaScript"
5685
 
5686
  #: admin.php:2417
5687
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
5688
- msgstr "Aceasta interfata de administrare foloseste foarte mult JavaScript. Va rugam sa activati JavaScript in browserul dumneavoastra sau sa folositi un alt browser cu capabilitati JavaScript."
5689
 
5690
  #: admin.php:125 admin.php:146 admin.php:153
5691
  msgid "Nothing currently scheduled"
5692
- msgstr "Momentat nu este programat nimic"
5693
 
5694
  #: admin.php:135
5695
  msgid "At the same time as the files backup"
5696
- msgstr "In acelasi timp cu realizarea copiilor de siguranta"
5697
 
5698
  #: admin.php:2452
5699
  msgid "Next scheduled backups"
5700
- msgstr "Urmatoarele copii de siguranta programate"
5701
 
5702
  #: admin.php:155
5703
  msgid "Files"
5704
- msgstr "Fisiere"
5705
 
5706
  #: addons/migrator.php:1738 addons/moredatabase.php:235
5707
  #: addons/reporting.php:216 admin.php:159 admin.php:1277 admin.php:2995
5708
  #: admin.php:2997 admin.php:4264 admin.php:4456 admin.php:4965
5709
  msgid "Database"
5710
- msgstr "Baza de date"
5711
 
5712
  #: admin.php:773
5713
  msgid "Your website is hosted using the %s web server."
5714
- msgstr "Sitetul dumneavoastra este gazduit folosind un server web %s."
5715
 
5716
  #: admin.php:773
5717
  msgid "Please consult this FAQ if you have problems backing up."
5718
- msgstr "Va rugam sa consultati zona FAQ daca intampinati probleme in realizarea copiilor de siguranta."
5719
 
5720
  #: admin.php:788 admin.php:792 admin.php:796 admin.php:800 admin.php:808
5721
  #: admin.php:812
5722
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
5723
- msgstr "Intrati aici pentru a va autentifica in contul dumneavoastra %s (nu veti putea realiza copii de siguranta in %s fara a fi autentificat)"
5724
 
5725
  #: admin.php:560
5726
  msgid "Nothing yet logged"
5727
- msgstr "Inca nu este nimeni logat"
5728
 
5729
  #: admin.php:1790
5730
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
5731
- msgstr "OK. In curand veti vedea activitate in \"Ultimul mesaj din jurnal\" din campul de mai jos."
5732
 
5733
  #: admin.php:1706
5734
  msgid "Job deleted"
5735
- msgstr "Job sters"
5736
 
5737
  #: admin.php:1714
5738
  msgid "Could not find that job - perhaps it has already finished?"
5739
- msgstr "Nu am putut gasi acest job. Se poate ca el sa fie deja finalizat?"
5740
 
5741
  #: admin.php:488 admin.php:1686 admin.php:4863 class-updraftplus.php:867
5742
  #: methods/addon-base.php:75 methods/addon-base.php:80
@@ -5748,27 +5748,27 @@ msgstr "Eroare"
5748
 
5749
  #: admin.php:1895
5750
  msgid "Download failed"
5751
- msgstr "Descarcare esuata"
5752
 
5753
  #: admin.php:489 admin.php:1914
5754
  msgid "File ready."
5755
- msgstr "Fisier pregatit."
5756
 
5757
  #: admin.php:1924
5758
  msgid "Download in progress"
5759
- msgstr "Descarcare in derulare"
5760
 
5761
  #: admin.php:1927
5762
  msgid "No local copy present."
5763
- msgstr "Nicio copie locala prezenta."
5764
 
5765
  #: admin.php:2046
5766
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
5767
- msgstr "Formatul numelui de fisier este eronat - acesta nu pare a fi un fisier creat cu UpdraftPlus"
5768
 
5769
  #: admin.php:2136
5770
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
5771
- msgstr "Formatul numelui de fisier este eronat - acesta nu pare a fi o baza de date criptata creata cu UpdraftPlus"
5772
 
5773
  #: admin.php:2221
5774
  msgid "Restore successful!"
@@ -5777,68 +5777,68 @@ msgstr "Restaurare reusita!!"
5777
  #: admin.php:2231 admin.php:2240 admin.php:2249 admin.php:2291 admin.php:3413
5778
  #: admin.php:4329
5779
  msgid "Actions"
5780
- msgstr "Actiuni"
5781
 
5782
  #: addons/migrator.php:275 addons/migrator.php:287 admin.php:2231
5783
  #: admin.php:2240 admin.php:2249 admin.php:2291 admin.php:3413
5784
  msgid "Return to UpdraftPlus Configuration"
5785
- msgstr "Revenire la Configurare UpdraftPlus"
5786
 
5787
  #: admin.php:3406
5788
  msgid "Remove old directories"
5789
- msgstr "Stergere directoare vechi"
5790
 
5791
  #: admin.php:3409
5792
  msgid "Old directories successfully removed."
5793
- msgstr "Vechile directoare au fost sterse cu succes."
5794
 
5795
  #: admin.php:3411
5796
  msgid "Old directory removal failed for some reason. You may want to do this manually."
5797
- msgstr "Stergerea vechilor directoare a esuat din diverse motive. Va rugam stergeti manual aceste directoare."
5798
 
5799
  #: admin.php:2282
5800
  msgid "Backup directory could not be created"
5801
- msgstr "Floderul backup nu a putut fi creat"
5802
 
5803
  #: admin.php:2289
5804
  msgid "Backup directory successfully created."
5805
- msgstr "Directorul de backup creat cu succes"
5806
 
5807
  #: admin.php:2312
5808
  msgid "Your settings have been wiped."
5809
- msgstr "Aveti nevoie de mai multe caracteristici și de sprijin? Testati UpdraftPlus Premium"
5810
 
5811
  #: class-updraftplus.php:3386
5812
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
5813
- msgstr "Va rugam sa ajutati UpdraftPlus acordandu-i o recenzie pozitiva la wordpress.org."
5814
 
5815
  #: class-updraftplus.php:3393
5816
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
5817
- msgstr "Aveti nevoie de mai multe caracteristici si mai mult suport? Incercati UpdraftPlus Premium"
5818
 
5819
  #: class-updraftplus.php:3403
5820
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
5821
- msgstr "Incercati UpdraftPlus.Com pentru ajutor, extensii si suport "
5822
 
5823
  #: backup.php:1942
5824
  msgid "Infinite recursion: consult your log for more information"
5825
- msgstr "Recursivitate infinita: consultati log-urile dvs pentru mai multe informatii"
5826
 
5827
  #: backup.php:229
5828
  msgid "Could not create %s zip. Consult the log file for more information."
5829
- msgstr "Nu a putut fi creat fisierul %s.zip. Consultati fisierul de log pentru mai multe informatii."
5830
 
5831
  #: admin.php:655
5832
  msgid "Allowed Files"
5833
- msgstr "Fisiere permise"
5834
 
5835
  #: admin.php:346 admin.php:697 admin.php:2394
5836
  msgid "Settings"
5837
- msgstr "Setari"
5838
 
5839
  #: admin.php:701
5840
  msgid "Add-Ons / Pro Support"
5841
- msgstr "Extensii / Suport Pro"
5842
 
5843
  #: admin.php:757 admin.php:761 admin.php:765 admin.php:769 admin.php:773
5844
  #: admin.php:782 admin.php:2858 admin.php:4137 admin.php:4144 admin.php:4146
@@ -5846,59 +5846,59 @@ msgstr "Extensii / Suport Pro"
5846
  #: methods/openstack-base.php:429 methods/s3.php:710 methods/s3.php:714
5847
  #: methods/updraftvault.php:239 udaddons/updraftplus-addons.php:208
5848
  msgid "Warning"
5849
- msgstr "Atentionare"
5850
 
5851
  #: admin.php:765
5852
  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."
5853
- msgstr "Aveti mai putin de %s spatiu dispoinibil pe discul pe care UpdraftPlus este configurat sa il foloseasca pentru a salva backup-uri. UpdraftPlus poate ajunge sa nu mai aiba spatiu. Contactati operatorul serverului dvs. (de exemplu, firma dvs. de gazduire web) pentru a rezolva aceasta problema."
5854
 
5855
  #: admin.php:769
5856
  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."
5857
- msgstr "UpdraftPlus nu suporta in mod oficial versiuni de WordPress mai vechi decat %s. E posibil sa functioneze pentru dvs. dar daca nu, ar trebui sa aveti in vedere faptul ca nu veti avea parte de suport pana cand nu faceti un upgrade al platformei WordPress."
5858
 
5859
  #: backup.php:920
5860
  msgid "WordPress backup is complete"
5861
- msgstr "Operatiunea de backup a platformei WordPress este completa."
5862
 
5863
  #: admin.php:1964 backup.php:1116 restorer.php:168
5864
  msgid "Backup directory (%s) is not writable, or does not exist."
5865
- msgstr "Directorul de backup (%s) nu are drepturi de scriere, sau nu exista."
5866
 
5867
  #: class-updraftplus.php:2858
5868
  msgid "Could not read the directory"
5869
- msgstr "Nu a putut fi citit directorul"
5870
 
5871
  #: class-updraftplus.php:2881
5872
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
5873
- msgstr "Istoricul de backup-uri nu a putut fi salvat pentru ca nu exista backup-uri. Operatiunea probabil a esuat."
5874
 
5875
  #: backup.php:1847
5876
  msgid "Could not open the backup file for writing"
5877
- msgstr "Fisierul de backup nu a putut fi deschis pentru scriere"
5878
 
5879
  #: class-updraftplus.php:3185 class-updraftplus.php:3442 restorer.php:309
5880
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
5881
- msgstr "Decriptare esuata. Fisierul de baza de date este encriptat, dar nu ati introdus nici o cheie de encriptare."
5882
 
5883
  #: class-updraftplus.php:3196 class-updraftplus.php:3459 restorer.php:319
5884
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
5885
- msgstr "Decriptare esuata. Cea mai probabila cauza este ca ati folosit o cheie gresita."
5886
 
5887
  #: class-updraftplus.php:3196
5888
  msgid "The decryption key used:"
5889
- msgstr "Cheia de decriptare folosita:"
5890
 
5891
  #: addons/azure.php:215 class-updraftplus.php:3278 methods/googledrive.php:823
5892
  msgid "File not found"
5893
- msgstr "Fisierul nu a fost gasit"
5894
 
5895
  #: class-updraftplus.php:3378
5896
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
5897
- msgstr "Puteti traduce? Doriti sa imbunatatiti UpdraftPlus pentru vorbitorii limbii dvs.?"
5898
 
5899
  #: class-updraftplus.php:3386
5900
  msgid "Like UpdraftPlus and can spare one minute?"
5901
- msgstr " place UpdraftPlus și puteţi aloca un minut?"
5902
 
5903
  #: class-updraftplus.php:1280
5904
  msgid "Themes"
@@ -5914,7 +5914,7 @@ msgstr "Alte"
5914
 
5915
  #: class-updraftplus.php:1897
5916
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
5917
- msgstr "Nu se pot crea fișiere în directorul de backup. Backup abandonat - verificați setările UpdraftPlus."
5918
 
5919
  #: addons/moredatabase.php:322
5920
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
@@ -5922,11 +5922,11 @@ msgstr "Eroare de criptare apărută la criptarea bazei de date. Criptare abando
5922
 
5923
  #: class-updraftplus.php:2417
5924
  msgid "The backup apparently succeeded and is now complete"
5925
- msgstr "Copie de rezervă (back-up) finalizată şi completă"
5926
 
5927
  #: class-updraftplus.php:2432
5928
  msgid "The backup attempt has finished, apparently unsuccessfully"
5929
- msgstr "Tentativa de copiere de rezervă (back-up) a terminat, aparent fără succes"
5930
 
5931
  #: addons/multisite.php:66 addons/multisite.php:646 options.php:41
5932
  msgid "UpdraftPlus Backups"
@@ -5937,16 +5937,16 @@ msgstr "Copii de rezervă UpdraftPlus"
5937
  #: class-updraftplus.php:391 class-updraftplus.php:396
5938
  #: class-updraftplus.php:401
5939
  msgid "UpdraftPlus notice:"
5940
- msgstr "Observație UpdraftPlus:"
5941
 
5942
  #: admin.php:1849 admin.php:1853 class-updraftplus.php:391
5943
  msgid "The log file could not be read."
5944
- msgstr "Fișierul jurnal nu a putut fi citit."
5945
 
5946
  #: class-updraftplus.php:396
5947
  msgid "No log files were found."
5948
- msgstr "Nu au fost găsite fișierele jurnal (log-uri)"
5949
 
5950
  #: class-updraftplus.php:1279
5951
  msgid "Plugins"
5952
- msgstr "Plugin-uri"
2
  # This file is distributed under the same license as the UpdraftPlus package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-05-20 18:33:52+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
14
  msgid "FAQs"
15
+ msgstr "Întrebări frecvente"
16
 
17
  #: udaddons/plugin-updates/github-checker.php:120
18
  msgid "There is no changelog available."
36
 
37
  #: backup.php:1973
38
  msgid "%s: unreadable file - could not be backed up (check the file permissions and ownership)"
39
+ msgstr "%s: fișier necitibil - nu i se poate face o copie de rezervă (verifică aparținătorul și permisiunile fișierului)"
40
 
41
  #: backup.php:1987
42
  msgid "Failed to open directory (check the file permissions and ownership): %s"
43
+ msgstr "Deschiderea directorului a eșuat (verifică permisiunile fișierelor și proprietatea): %s"
44
 
45
  #: central/bootstrap.php:419
46
  msgid "Public key was sent to:"
47
+ msgstr "Cheia publică a fost trimisă la:"
48
 
49
  #: central/bootstrap.php:424
50
  msgid "Key size: %d bits"
51
+ msgstr "Dimensiune cheie: %d biți"
52
 
53
  #: central/bootstrap.php:439
54
  msgid "Dashboard at"
55
+ msgstr "Panoul control la"
56
 
57
  #: central/bootstrap.php:439
58
  msgid "Use the alternative method for making a connection with the dashboard."
59
+ msgstr "Folosește metoda alternativă pentru a face o conexiune cu panoul control."
60
 
61
  #: central/bootstrap.php:439
62
  msgid "More information..."
63
+ msgstr "Mai multe informații..."
64
 
65
  #: central/bootstrap.php:439
66
  msgid "This is useful if the dashboard webserver cannot be contacted with incoming traffic by this website (for example, this is the case if this website is hosted on the public Internet, but the UpdraftCentral dashboard is on localhost, or on an Intranet, or if this website has an outgoing firewall), or if the dashboard website does not have a SSL certificate."
67
+ msgstr "Este util dacă panoul control al serverului web nu poate stabili legătura cu traficul de intrare prin acest sit (de exemplu, în cazul în care acest sit web este găzduit pe Internet public, iar panoul control UpdraftCentral este pe localhost ori pe un Intranet sau în cazul în care acest sit web are un firewall de ieșire) sau dacă panoul control al sitului web nu are un certificat SSL."
68
 
69
  #: addons/migrator.php:2158
70
  msgid "Create a key: give this key a unique name (e.g. indicate the site it is for), then press \"Create Key\":"
76
 
77
  #: addons/migrator.php:2161 central/bootstrap.php:441
78
  msgid "Encryption key size:"
79
+ msgstr "Dimensiune cheie de criptare:"
80
 
81
  #: addons/migrator.php:2163 addons/migrator.php:2164 addons/migrator.php:2166
82
  #: central/bootstrap.php:442 central/bootstrap.php:443
83
  #: central/bootstrap.php:445
84
  msgid "%s bits"
85
+ msgstr "%s biți"
86
 
87
  #: addons/migrator.php:2163 central/bootstrap.php:442
88
  msgid "easy to break, fastest"
89
+ msgstr "ușor de spart, cel mai rapid"
90
 
91
  #: addons/migrator.php:2164 central/bootstrap.php:443
92
  msgid "faster (possibility for slow PHP installs)"
93
+ msgstr "mai rapid (posibilitate pentru instalări PHP lente)"
94
 
95
  #: addons/migrator.php:2165 central/bootstrap.php:444
96
  msgid "%s bytes"
97
+ msgstr "%s octeți"
98
 
99
  #: addons/migrator.php:2165 central/bootstrap.php:444
100
  msgid "recommended"
101
+ msgstr "recomandat"
102
 
103
  #: addons/migrator.php:2166 central/bootstrap.php:445
104
  msgid "slower, strongest"
105
+ msgstr "mai lent, cel mai puternic"
106
 
107
  #: addons/migrator.php:2169
108
  msgid "Create key"
110
 
111
  #: central/bootstrap.php:439
112
  msgid "i.e. you have an account there"
113
+ msgstr "de exemplu: ai un cont acolo"
114
 
115
  #: central/bootstrap.php:439
116
  msgid "Other (please specify - i.e. the site where you have installed an UpdraftCentral dashboard)"
117
+ msgstr "Altele (te rog specifică - de exemplu: situl unde ai instalat un panou control UpdraftCentral)"
118
 
119
  #: class-updraftplus.php:1240
120
  msgid "Size: %s MB"
121
+ msgstr "Dimensiune: %s MB"
122
 
123
  #: methods/email.php:28
124
  msgid "This backup archive is %s MB in size - the attempt to send this via email is likely to fail (few email servers allow attachments of this size). If so, you should switch to using a different remote storage method."
125
+ msgstr "Această arhivă a copiei de rezervă are o mărime de %s MB - încercarea de a o trimite prin email e posibil să eșueze (doar câteva dintre serverele pentru email permit atașamente de această mărime). Dacă este așa, ar trebui să folosești o metodă diferită de depozitare la distanță."
126
 
127
  #: methods/email.php:77
128
  msgid "Be aware that mail servers tend to have size limits; typically around %s MB; backups larger than any limits will likely not arrive."
129
+ msgstr "Fii conștient de faptul că serverele de email tind să aibă limite de dimensiune; de obicei, în jurul valorii de %s MB; copiile de rezervă mai mari decât anumite limite probabil nu vor ajunge."
130
 
131
  #: methods/ftp.php:355
132
  msgid "login"
133
+ msgstr "Autentificare"
134
 
135
  #: methods/ftp.php:383
136
  msgid "This is sometimes caused by a firewall - try turning off SSL in the expert settings, and testing again."
137
+ msgstr "Acest lucru este cauzat uneori de un firewall - încearcă să dezactivezi SSL în setări experimentate și testează din nou."
138
 
139
  #: methods/googledrive.php:417
140
  msgid "Upload expected to fail: the %s limit for any single file is %s, whereas this file is %s GB (%d bytes)"
141
+ msgstr "E de așteptat ca încărcarea să eșueze: limita %s pentru un singur fișier este de %s, în timp ce acest fișier are %s GB (%d octeți)"
142
 
143
  #: admin.php:2453
144
  msgid "Now"
145
+ msgstr "Acum"
146
 
147
  #: admin.php:2604
148
  msgid "Free 1GB for UpdraftPlus Vault"
149
+ msgstr "1GB gratuit pentru UpdraftPlus Vault"
150
 
151
  #: admin.php:3959
152
  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)."
153
+ msgstr "UpdraftPlus va împărți arhivele copiei de rezervă când depășesc această dimensiune de fișier. Valoarea implicită este de %s megabiți. Ai grijă să lași o marjă dacă serverul tău web are setată o limită de dimensiune (de exemplu: limita de 2 GB / 2048 MB de pe unele servere/sisteme de fișiere de 32 biți)."
154
 
155
  #: class-updraftplus.php:3529 restorer.php:926
156
  msgid "You should enable %s to make any pretty permalinks (e.g. %s) work"
157
+ msgstr "Ar trebui să activezi %s pentru a face legăturile permanente să lucreze frumos (de exemplu %s) "
158
 
159
  #: admin.php:3770
160
  msgid "(tap on an icon to select or unselect)"
161
+ msgstr "(dă tap pe un icon pentru a selecta sau deselecta)"
162
 
163
  #: backup.php:833 class-updraftplus.php:2411
164
  msgid "The backup was aborted by the user"
165
+ msgstr "Utilizatorul a renunțat la copia de rezervă"
166
 
167
  #: central/bootstrap.php:50
168
  msgid "UpdraftCentral Connection"
169
+ msgstr "Conexiune UpdraftCentral"
170
 
171
  #: central/bootstrap.php:53
172
  msgid "An UpdraftCentral connection has been made successfully."
173
+ msgstr "O conexiune UpdraftCentral a fost făcută cu succes."
174
 
175
  #: central/bootstrap.php:55
176
  msgid "A new UpdraftCentral connection has not been made."
177
+ msgstr "Nu a fost făcută o nouă conexiune UpdraftCentral."
178
 
179
  #: central/bootstrap.php:58
180
  msgid "The key referred to was unknown."
181
+ msgstr "Cheia menționată era necunoscută."
182
 
183
  #: central/bootstrap.php:64
184
  msgid "You are not logged into this WordPress site in your web browser."
185
+ msgstr "Nu ești autentificat în acest sit WordPress în navigatorul tău web."
186
 
187
  #: central/bootstrap.php:64
188
  msgid "You must visit this URL in the same browser and login session as you created the key in."
189
+ msgstr "Trebuie să accesezi acest URL în același navigator și în aceiași sesiune de autentificare ca atunci când ai creat cheia."
190
 
191
  #: central/bootstrap.php:71
192
  msgid "You must visit this link in the same browser and login session as you created the key in."
193
+ msgstr "Trebuie să accesezi această legătură în același navigator și în aceiași sesiune de autentificare ca atunci când ai creat cheia."
194
 
195
  #: central/bootstrap.php:75
196
  msgid "This connection appears to already have been made."
197
+ msgstr "Această conexiune pare să fi fost deja făcută."
198
 
199
  #: central/bootstrap.php:83
200
  msgid "Close..."
201
+ msgstr "Se închide..."
202
 
203
  #: central/bootstrap.php:196
204
  msgid "An invalid URL was entered"
205
+ msgstr "A fost introdus un URL invalid"
206
 
207
  #: central/bootstrap.php:313 central/bootstrap.php:324
208
  msgid "A key was created, but the attempt to register it with %s was unsuccessful - please try again later."
209
+ msgstr "A fost creată o cheie, dar încercarea de înregistrare cu %s nu a avut succes - te rog încearcă mai târziu."
210
 
211
  #: central/bootstrap.php:381
212
  msgid "Key description"
213
+ msgstr "Descriere cheie"
214
 
215
  #: central/bootstrap.php:381
216
  msgid "Details"
217
+ msgstr "Detalii"
218
 
219
  #: central/bootstrap.php:387
220
  msgid "No keys have yet been created."
221
+ msgstr "Nu au fost create chei încă."
222
 
223
  #: central/bootstrap.php:419
224
  msgid "Access this site as user:"
225
+ msgstr "Accesează acest sit ca utilizatorul:"
226
 
227
  #: central/bootstrap.php:422
228
  msgid "Created:"
229
+ msgstr "Creată:"
230
 
231
  #: central/bootstrap.php:429
232
  msgid "Delete..."
233
+ msgstr "Se șterge..."
234
 
235
  #: central/bootstrap.php:435
236
  msgid "Create new key"
237
+ msgstr "Crează o cheie nouă"
238
 
239
  #: central/bootstrap.php:437
240
  msgid "Description"
241
+ msgstr "Descriere"
242
 
243
  #: central/bootstrap.php:437
244
  msgid "Enter any description"
245
+ msgstr "Introdu orice descriere"
246
 
247
  #: central/bootstrap.php:439
248
  msgid "URL of mothership"
249
+ msgstr "URL-ul mamă"
250
 
251
  #: central/bootstrap.php:452
252
  msgid "View recent UpdraftCentral log events"
253
+ msgstr "Vezi jurnal evenimente recente UpdraftCentral"
254
 
255
  #: central/bootstrap.php:452
256
  msgid "fetch..."
257
+ msgstr "aduce..."
258
 
259
  #: central/bootstrap.php:463
260
  msgid "UpdraftCentral (Remote Control)"
261
+ msgstr "UpdraftCentral (control de la distanță)"
262
 
263
  #: class-updraftplus.php:356 class-updraftplus.php:401
264
  msgid "The given file was not found, or could not be read."
265
+ msgstr "Fișierul dat nu a fost găsit sau nu a putut fi citit."
266
 
267
  #: methods/updraftvault.php:214
268
  msgid "No Vault connection was found for this site (has it moved?); please disconnect and re-connect."
269
+ msgstr "Nu a fost găsită nicio conexiune Vault pentru acest sit (a fost mutat?); te rog deconectează și reconectează."
270
 
271
  #: methods/updraftvault.php:269 methods/updraftvault.php:275
272
  #: methods/updraftvault.php:281
273
  msgid "or (annual discount)"
274
+ msgstr "sau (reducere anuală)"
275
 
276
  #: methods/updraftvault.php:270 methods/updraftvault.php:276
277
  #: methods/updraftvault.php:282
278
  msgid "%s per year"
279
+ msgstr "%s pe an"
280
 
281
  #: addons/copycom.php:60 addons/copycom.php:526
282
  msgid "Barracuda are closing down Copy.Com on May 1st, 2016. See:"
288
 
289
  #: admin.php:477
290
  msgid "Fetching..."
291
+ msgstr "Se aduce..."
292
 
293
  #: admin.php:485
294
  msgid "Error: the server sent us a response which we did not understand."
295
+ msgstr "Eroare: serverul ne-a trimis un răspuns pe care nu-l înțelegem."
296
 
297
  #: admin.php:521
298
  msgid "Saving..."
299
+ msgstr "Se salvează..."
300
 
301
  #: admin.php:538
302
  msgid "Please enter a valid URL"
303
+ msgstr "Te rog introdu un URL valid"
304
 
305
  #: admin.php:539
306
  msgid "We requested to delete the file, but could not understand the server's response"
307
+ msgstr "Am solicitat ștergerea fișierului, dar nu am putut înțelege răspunsul serverului"
308
 
309
  #: admin.php:545
310
  msgid "You should save your changes to ensure that they are used for making your backup."
311
+ msgstr "Ar trebui să salvezi modificările pentru a te asigura că sunt folosite pentru a-ți face copia de rezervă."
312
 
313
  #: admin.php:2599
314
  msgid "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
315
+ msgstr "Microsoft OneDrive, Microsoft Azure, Google Cloud Storage"
316
 
317
  #: admin.php:2863
318
  msgid "calculate"
319
+ msgstr "calculat"
320
 
321
  #: admin.php:2934
322
  msgid "this backup set"
323
+ msgstr "acest set de copii de rezervă"
324
 
325
  #: admin.php:2937
326
  msgid "these backup sets"
327
+ msgstr "aceste seturi de copii de rezervă"
328
 
329
  #: admin.php:3103
330
  msgid "reset"
331
+ msgstr "restabilire"
332
 
333
  #: admin.php:3149 admin.php:3153
334
  msgid "Wipe settings"
335
+ msgstr "Setări de curățare"
336
 
337
  #: admin.php:3220
338
  msgid "The backup has finished running"
339
+ msgstr "S-a terminat crearea copiei de rezervă"
340
 
341
  #: admin.php:3382
342
  msgid "stop"
343
+ msgstr "stop"
344
 
345
  #: admin.php:4294
346
  msgid "Total backup size:"
347
+ msgstr "Dimensiune totală copie de rezervă:"
348
 
349
  #: admin.php:5212
350
  msgid "Your settings have been saved."
351
+ msgstr "Setările tale au fost salvate."
352
 
353
  #: addons/onedrive.php:50
354
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it."
356
 
357
  #: backup.php:386
358
  msgid "Unexpected error: no class '%s' was found (your UpdraftPlus installation seems broken - try re-installing)"
359
+ msgstr "Eroare neașteptată: nu a fost găsită nicio clasă '%s' (instalarea UpdraftPlus pare deteriorată - încearcă să reinstalezi)"
360
 
361
  #: restorer.php:1533
362
  msgid "Uploads URL:"
363
+ msgstr "URL-uri încărcate:"
364
 
365
  #: addons/multisite.php:374 addons/multisite.php:384
366
  msgid "Restoring only the site with id=%s: removing other data (if any) from the unpacked backup"
388
 
389
  #: admin.php:556
390
  msgid "Please fill in the required information."
391
+ msgstr "Te rog completează informațiile necesare."
392
 
393
  #: admin.php:2727
394
  msgid "Dismiss"
395
+ msgstr "Revocare"
396
 
397
  #: class-updraftplus.php:3576
398
  msgid "It will be imported as a new site."
399
+ msgstr "Va fi importat ca un sit nou."
400
 
401
  #: class-updraftplus.php:3576
402
  msgid "Please read this link for important information on this process."
403
+ msgstr "Te rog citește pe această legătură informații importante cu privire la acest proces."
404
 
405
  #: class-updraftplus.php:3580 restorer.php:1553
406
  msgid "To import an ordinary WordPress site into a multisite installation requires %s."
407
+ msgstr "Pentru a importa un sit obișnuit WordPress într-o rețea cu mai multe situri este nevoie de %s."
408
 
409
  #: restorer.php:1894
410
  msgid "Skipping table %s: this table will not be restored"
452
 
453
  #: admin.php:3101
454
  msgid "Call WordPress action:"
455
+ msgstr "Apel la acțiune WordPress:"
456
 
457
  #: admin.php:2751
458
  msgid "Your saved settings also affect what is backed up - e.g. files excluded."
459
+ msgstr "Setările tale salvate afectează, de asemenea, ceea ce este salvat în copia de rezervă - de exemplu, fișierele excluse."
460
 
461
  #: admin.php:354 admin.php:2395
462
  msgid "Advanced Tools"
463
+ msgstr "Instrumente avansate"
464
 
465
  #: admin.php:362
466
  msgid "Extensions"
467
+ msgstr "Extensii"
468
 
469
  #: admin.php:471
470
  msgid "You have chosen to backup files, but no file entities have been selected"
471
+ msgstr "Ai ales fișierele pentru copia de rezervă, dar nu au fost selectate entități ale fișierului"
472
 
473
  #: admin.php:544
474
  msgctxt "(verb)"
475
  msgid "Download"
476
+ msgstr "Descarcă"
477
 
478
  #: admin.php:2192 admin.php:2201
479
  msgid "Sufficient information about the in-progress restoration operation could not be found."
480
+ msgstr "Nu s-au putut găsi suficiente informații referitoare la operațiunea de restaurare."
481
 
482
  #: admin.php:2396
483
  msgid "Premium / Extensions"
484
+ msgstr "Premium / Extensii"
485
 
486
  #: admin.php:2521
487
  msgid "Backup Contents And Schedule"
488
+ msgstr "Copie de rezervă conținuturi și Programă"
489
 
490
  #: admin.php:2718
491
  msgid "%s minutes, %s seconds"
492
+ msgstr "%s minute, %s secunde"
493
 
494
  #: admin.php:2720
495
  msgid "Unfinished restoration"
496
+ msgstr "Restaurare neterminată"
497
 
498
  #: admin.php:2721
499
  msgid "You have an unfinished restoration operation, begun %s ago."
500
+ msgstr "Ai o operație de restaurare neterminată, începută cu %s în urmă."
501
 
502
  #: admin.php:2726
503
  msgid "Continue restoration"
504
+ msgstr "Continuă restaurarea"
505
 
506
  #: admin.php:2747
507
  msgid "Include the database in the backup"
508
+ msgstr "Include baza de date în copia de rezervă"
509
 
510
  #: admin.php:2749
511
  msgid "Include any files in the backup"
512
+ msgstr "Include orice fișiere în copia de rezervă"
513
 
514
  #: admin.php:5111
515
  msgid "Backup won't be sent to any remote storage - none has been saved in the %s"
516
+ msgstr "Copia de rezervă nu va fi trimisă la niciun depozit la distanță - nu a fost salvat niciunul în %s"
517
 
518
  #: admin.php:5111
519
  msgid "settings"
520
+ msgstr "setări"
521
 
522
  #: admin.php:5111
523
  msgid "Not got any remote storage?"
524
+ msgstr "Nu ai niciun depozit la distanță?"
525
 
526
  #: admin.php:5111
527
  msgid "Check out UpdraftPlus Vault."
528
+ msgstr "Verifică UpdraftPlus Vault."
529
 
530
  #: admin.php:5113
531
  msgid "Send this backup to remote storage"
532
+ msgstr "Trimite această copie de rezervă către depozitul la distanță"
533
 
534
  #: admin.php:3150
535
  msgid "This button will delete all UpdraftPlus settings and progress information for in-progress backups (but not any of your existing backups from your cloud storage)."
536
+ msgstr "Acest buton va șterge toate setările UpdraftPlus și informațiile pentru copia de rezervă în curs (dar nu oricare dintre copiile de rezervă existente în norul de stocare)."
537
 
538
  #: admin.php:3150
539
  msgid "You will then need to enter all your settings again. You can also do this before deactivating/deinstalling UpdraftPlus if you wish."
540
+ msgstr "Apoi va trebui să introduci din nou toate setările. De asemenea, poți face acest lucru înainte de dezactivarea/dezinstalarea UpdraftPlus dacă vrei."
541
 
542
  #: admin.php:3682
543
  msgid "Files backup schedule"
544
+ msgstr "Programa fișierelor pentru copia de rezervă"
545
 
546
  #: admin.php:3715
547
  msgid "Incremental file backup schedule"
548
+ msgstr "Programă fișier copie de rezervă incrementală"
549
 
550
  #: admin.php:3725
551
  msgid "Database backup schedule"
552
+ msgstr "Programa bazei de date pentru copia de rezervă"
553
 
554
  #: admin.php:3760
555
  msgid "Sending Your Backup To Remote Storage"
556
+ msgstr "Trimiterea copiei de rezervă la depozitul la distanță"
557
 
558
  #: admin.php:3819
559
  msgid "File Options"
560
+ msgstr "Opțiuni fișier"
561
 
562
  #: admin.php:4849
563
  msgid "Skipping: this archive was already restored."
564
+ msgstr "Sari peste: această arhivă a fost restabilită deja."
565
 
566
  #: addons/googlecloud.php:860
567
  msgid "You must use a bucket name that is unique, for all %s users."
694
 
695
  #: class-updraftplus.php:2428
696
  msgid "To complete your migration/clone, you should now log in to the remote site and restore the backup set."
697
+ msgstr "Pentru a finaliza migrarea/clonarea, ar trebui să te autentifici de la distanță în sit și să restabilești copia de rezervă."
698
 
699
  #: addons/googlecloud.php:854
700
  msgid "Project ID"
742
 
743
  #: admin.php:3076
744
  msgid "Not installed"
745
+ msgstr "Neinstalat"
746
 
747
  #: admin.php:3076
748
  msgid "required for some remote storage providers"
749
+ msgstr "necesar pentru unii furnizori de depozitare la distanță"
750
 
751
  #: backup.php:1408
752
  msgid "The backup directory is not writable (or disk space is full) - the database backup is expected to shortly fail."
753
+ msgstr "Directorul copiei de rezervă nu este editabil (sau discul este plin) - probabil copia de rezervă a bazei de date va eșua în scurt timp."
754
 
755
  #: backup.php:1509 backup.php:1511
756
  msgid "The database backup appears to have failed"
757
+ msgstr "Copia de rezervă a bazei de date pare să fi eșuat"
758
 
759
  #: backup.php:1509
760
  msgid "no options or sitemeta table was found"
761
+ msgstr "nu au fost găsite opțiuni sau un tabel metasit"
762
 
763
  #: backup.php:1511
764
  msgid "the options table was not found"
765
+ msgstr "nu au fost găsite opțiunile pentru tabel"
766
 
767
  #: addons/googlecloud.php:215 addons/googlecloud.php:268
768
  #: addons/googlecloud.php:288 addons/googlecloud.php:735
794
 
795
  #: admin.php:548
796
  msgid "day"
797
+ msgstr "zi"
798
 
799
  #: admin.php:549
800
  msgid "in the month"
801
+ msgstr "în luna"
802
 
803
  #: admin.php:550
804
  msgid "day(s)"
805
+ msgstr "zi(le)"
806
 
807
  #: admin.php:551
808
  msgid "hour(s)"
809
+ msgstr "oră(e)"
810
 
811
  #: admin.php:552
812
  msgid "week(s)"
813
+ msgstr "săptămână(i) "
814
 
815
  #: admin.php:553
816
  msgid "For backups older than"
817
+ msgstr "Pentru copiile de rezervă mai vechi de"
818
 
819
  #: admin.php:555
820
  msgid "Processing..."
821
+ msgstr "Se prelucrează..."
822
 
823
  #: admin.php:1614
824
  msgid "Backup sets removed: %d"
825
+ msgstr "Seturi de copii de rezervă eliminate: %d"
826
 
827
  #: admin.php:2869
828
  msgid "Press here to look inside your remote storage methods for any existing backup sets (from any site, if they are stored in the same folder)."
829
+ msgstr "Apasă aici pentru a vedea metodele de depozitare la distanță pentru oricare seturi de copii de rezervă existente (de pe orice sit, dacă sunt stocate în același dosar)."
830
 
831
  #: admin.php:2920
832
  msgid "Actions upon selected backups"
833
+ msgstr "Acțiuni asupra copiilor de rezervă selectate"
834
 
835
  #: admin.php:2922
836
  msgid "Select all"
837
+ msgstr "Selectează tot"
838
 
839
  #: admin.php:2923
840
  msgid "Deselect"
841
+ msgstr "Deselectare"
842
 
843
  #: admin.php:2934 admin.php:2937
844
  msgid "Are you sure that you wish to remove %s from UpdraftPlus?"
845
+ msgstr "Ești sigur că vrei să elimini %s din UpdraftPlus?"
846
 
847
  #: admin.php:3754
848
  msgid "or to configure more complex schedules"
849
+ msgstr "sau pentru a configura programe mai complexe"
850
 
851
  #: restorer.php:707
852
  msgid "Deferring..."
853
+ msgstr "Se amână..."
854
 
855
  #: updraftplus.php:147
856
  msgid "You do not have UpdraftPlus completely installed - please de-install and install it again. Most likely, WordPress malfunctioned when copying the plugin files."
857
+ msgstr "UpdraftPlus nu este instalat complet - te rog dezinstalează și instalează-l din nou. Cel mai probabil, WordPress nu a funcționat corespunzător la copierea fișierelor modulului."
858
 
859
  #: addons/morestorage.php:26
860
  msgid "(as many as you like)"
866
 
867
  #: methods/updraftvault.php:563
868
  msgid "You do not currently have any UpdraftPlus Vault quota"
869
+ msgstr "Nu ai în acest moment nicio cotă UpdraftPlus Vault"
870
 
871
  #: restorer.php:1978
872
  msgid "This problem is caused by trying to restore a database on a very old MySQL version that is incompatible with the source database."
873
+ msgstr "Această problemă este cauzată de încercarea de restaurare a bazei de date pentru o versiune foarte veche MySQL care este incompatibilă cu sursa bazei de date."
874
 
875
  #: restorer.php:1978
876
  msgid "This database needs to be deployed on MySQL version %s or later."
877
+ msgstr "Această bază de date trebuie să fie desfășurată pe versiunea MySQL %s sau mai târziu."
878
 
879
  #: admin.php:2324
880
  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."
881
+ msgstr "Directorul UpdraftPlus din wp-content/plugins are spații goale. WordPress nu agrează asta. Ar trebui să redenumești directorul din wp-content/plugins/updraftplus pentru a rezolva această problemă."
882
 
883
  #: admin.php:2649
884
  msgid "No advertising links on UpdraftPlus settings page"
885
+ msgstr "Fără legături publicitare pe pagina de setări UpdraftPlus"
886
 
887
  #: class-updraftplus.php:3613
888
  msgid "The database backup uses MySQL features not available in the old MySQL version (%s) that this site is running on."
889
+ msgstr "Copia de rezervă a bazei de date folosește funcționalitățile MySQL, care nu sunt disponibile în versiunea veche MySQL (%s) cu care acest sit rulează."
890
 
891
  #: class-updraftplus.php:3613
892
  msgid "You must upgrade MySQL to be able to use this database."
893
+ msgstr "Trebuie să actualizezi MySQL pentru a putea folosi această bază de date."
894
 
895
  #: methods/updraftvault.php:303
896
  msgid "Don't know your email address, or forgotten your password?"
897
+ msgstr "Nu mai știi adresa de email sau ai uitat parola?"
898
 
899
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
900
  msgid "Read the FAQs here."
901
+ msgstr "Citește Întrebări frecvente aici."
902
 
903
  #: methods/updraftvault.php:296
904
  msgid "Enter your UpdraftPlus.Com email / password here to connect:"
905
+ msgstr "Introdu aici email/parola UpdraftPlus.Com pentru conectare:"
906
 
907
  #: addons/s3-enhanced.php:40
908
  msgid "Server-side encryption"
914
 
915
  #: methods/updraftvault.php:572
916
  msgid "If you have forgotten your password, then go here to change your password on updraftplus.com."
917
+ msgstr "Dacă ți-ai uitat parola, mergi aici pentru a-ți schimba parola pentru updraftplus.com."
918
 
919
  #: admin.php:804
920
  msgid "%s has been chosen for remote storage, but you are not currently connected."
921
+ msgstr "%s a fost ales pentru depozitul la distanță, dar în prezent nu ești conectat."
922
 
923
  #: admin.php:804
924
  msgid "Go to the remote storage settings in order to connect."
925
+ msgstr "Mergi la setările depozitului la distanță pentru a te conecta."
926
 
927
  #: methods/updraftvault.php:285
928
  msgid "Payments can be made in US dollars, euros or GB pounds sterling, via card or PayPal."
929
+ msgstr "Plățile pot fi efectuate în dolari americani, în euro sau în lire sterline, prin card sau PayPal."
930
 
931
  #: admin.php:523
932
  msgid "Connecting..."
933
+ msgstr "Se conectează..."
934
 
935
  #: admin.php:525
936
  msgid "Disconnecting..."
937
+ msgstr "Se deconectează..."
938
 
939
  #: admin.php:526
940
  msgid "Counting..."
941
+ msgstr "Se numără..."
942
 
943
  #: admin.php:527
944
  msgid "Update quota count"
945
+ msgstr "Actualizare cotă totală"
946
 
947
  #: methods/updraftvault.php:48 methods/updraftvault.php:71
948
  msgid "Updraft Vault"
949
+ msgstr "Updraft Vault"
950
 
951
  #: methods/updraftvault.php:205
952
  msgid "Your UpdraftPlus Premium purchase is over a year ago. You should renew immediately to avoid losing the 12 months of free storage allowance that you get for being a current UpdraftPlus Premium customer."
953
+ msgstr "UpdraftPlus Premium l-ai achiziționat cu peste un an în urmă. Ar trebui să reînnoiești imediat pentru a evita pierderea de alocare pentru 12 luni de depozitare gratuită, pe care ai obținut-o ca un client UpdraftPlus Premium."
954
 
955
  #: methods/updraftvault.php:208
956
  msgid "You have an UpdraftPlus Vault subscription with overdue payment. You are within the few days of grace period before it will be suspended, and you will lose your quota and access to data stored within it. Please renew as soon as possible!"
957
+ msgstr "Ai un abonament UpdraftPlus Vault cu plăți restante. Ești într-o perioadă de grație de câteva zile înainte de a fi suspendat și vei pierde cota și accesul la datele stocate în acesta. Te rog reînnoiește cât mai repede posibil!"
958
 
959
  #: methods/updraftvault.php:211
960
  msgid "You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible."
961
+ msgstr "Ai un abonament UpdraftPlus Vault care nu a fost reînnoit, iar perioada de grație a expirat. În câteva zile, datele depozitate vor fi eliminate definitiv. Dacă nu vrei ca acest lucru să se întâmple, atunci ar trebui să-l reînnoiești cât mai repede posibil."
962
 
963
  #: methods/updraftvault.php:247 methods/updraftvault.php:264
964
  msgid "UpdraftPlus Vault brings you storage that is <strong>reliable, easy to use and a great price</strong>."
965
+ msgstr "UpdraftPlus Vault îți oferă o depozitare care este <strong>fiabilă, ușor de utilizat și la un preț bun</strong>."
966
 
967
  #: methods/updraftvault.php:247 methods/updraftvault.php:264
968
  msgid "Press a button to get started."
969
+ msgstr "Apasă un buton pentru a începe."
970
 
971
  #: methods/updraftvault.php:250
972
  msgid "First time user?"
973
+ msgstr "Ești utilizator pentru prima dată?"
974
 
975
  #: methods/updraftvault.php:251
976
  msgid "Show the options"
977
+ msgstr "Arată opțiunile"
978
 
979
  #: methods/updraftvault.php:254
980
  msgid "Already purchased space?"
981
+ msgstr "Deja ai achiziționat un spațiu?"
982
 
983
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
984
  msgid "UpdraftPlus Vault is built on top of Amazon's world-leading data-centres, with redundant data storage to achieve 99.999999999% reliability."
985
+ msgstr "UpdraftPlus Vault este construit de Amazon, liderul mondial de centre de date, cu o depozitare de date redundante care ajunge la o fiabilitate de 99.999999999%."
986
 
987
  #: methods/updraftvault.php:258 methods/updraftvault.php:288
988
  msgid "Read more about it here."
989
+ msgstr "Citește mai multe despre el aici."
990
 
991
  #: methods/updraftvault.php:268 methods/updraftvault.php:274
992
  #: methods/updraftvault.php:280
993
  msgid "%s per quarter"
994
+ msgstr "%s pe trimestru"
995
 
996
  #: methods/updraftvault.php:285
997
  msgid "Subscriptions can be cancelled at any time."
998
+ msgstr "Abonamentele pot fi anulate în orice moment."
999
 
1000
  #: methods/updraftvault.php:291 methods/updraftvault.php:306
1001
  msgid "Back..."
1002
+ msgstr "Înapoi..."
1003
 
1004
  #: methods/updraftvault.php:298
1005
  msgid "E-mail"
1007
 
1008
  #: methods/updraftvault.php:303
1009
  msgid "Go here for help"
1010
+ msgstr "Mergi aici pentru ajutor"
1011
 
1012
  #: methods/updraftvault.php:327
1013
  msgid "You are <strong>not connected</strong> to UpdraftPlus Vault."
1014
+ msgstr "<strong>Nu ești conectat</strong> la UpdraftPlus Vault."
1015
 
1016
  #: methods/updraftvault.php:331
1017
  msgid "This site is <strong>connected</strong> to UpdraftPlus Vault."
1018
+ msgstr "Acest sit este <strong>conectat</strong> la UpdraftPlus Vault."
1019
 
1020
  #: methods/updraftvault.php:331
1021
  msgid "Well done - there's nothing more needed to set up."
1022
+ msgstr "Foarte bine - nu mai este nevoie de nimic pentru inițializare."
1023
 
1024
  #: methods/updraftvault.php:331
1025
  msgid "Vault owner"
1026
+ msgstr "Proprietar Vault"
1027
 
1028
  #: methods/updraftvault.php:333
1029
  msgid "Quota:"
1030
+ msgstr "Cotă:"
1031
 
1032
  #: admin.php:524 methods/updraftvault.php:341
1033
  msgid "Disconnect"
1034
+ msgstr "Deconectare"
1035
 
1036
  #: methods/updraftvault.php:349
1037
  msgid "%s Error: you have insufficient storage quota available (%s) to upload this archive (%s)."
1038
+ msgstr "Eroare %s: ai o cotă disponibilă insuficientă pentru depozitare (%s) pentru a încărca această arhivă (%s)."
1039
 
1040
  #: methods/updraftvault.php:349
1041
  msgid "You can get more quota here"
1042
+ msgstr "Poți obține mai multe cote aici"
1043
 
1044
  #: methods/updraftvault.php:354 methods/updraftvault.php:397
1045
  msgid "Current use:"
1046
+ msgstr "Utilizarea actuală:"
1047
 
1048
  #: methods/updraftvault.php:357 methods/updraftvault.php:359
1049
  #: methods/updraftvault.php:416
1050
  msgid "Get more quota"
1051
+ msgstr "Obține alte cote"
1052
 
1053
  #: methods/updraftvault.php:361 methods/updraftvault.php:416
1054
  msgid "Refresh current status"
1055
+ msgstr "Împrospătează starea curentă"
1056
 
1057
  #: addons/s3-enhanced.php:322
1058
  msgid "Allow download"
1072
 
1073
  #: backup.php:2884
1074
  msgid "The zip engine returned the message: %s."
1075
+ msgstr "Motorul zip returnat mesajul: %s."
1076
 
1077
  #: addons/azure.php:364 addons/googlecloud.php:693 methods/s3.php:904
1078
  msgid "Delete failed:"
1079
+ msgstr "Ștergerea a eșuat: "
1080
 
1081
  #: addons/migrator.php:1706 admin.php:533
1082
  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."
1083
+ msgstr "Ar trebui să verifici că situl de la distanță este online, nu are firewall, nu are extensii de securitate care pot bloca accesul, are versiunea UpdraftPlus %s activă sau una mai recentă și cheile au fost introduse corect."
1084
 
1085
  #: addons/migrator.php:1721
1086
  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."
1088
 
1089
  #: admin.php:531
1090
  msgid "Creating..."
1091
+ msgstr "Se creează..."
1092
 
1093
  #: admin.php:534
1094
  msgid "Please give this key a name (e.g. indicate the site it is for):"
1095
+ msgstr "Te rog să-i dai un nume acestei chei (de exemplu: situl pentru care e folosită):"
1096
 
1097
  #: admin.php:536
1098
  msgid "key name"
1099
+ msgstr "nume cheie"
1100
 
1101
  #: admin.php:537
1102
  msgid "Deleting..."
1103
+ msgstr "Se șterge..."
1104
 
1105
  #: addons/migrator.php:1734 admin.php:540
1106
  msgid "Testing connection..."
1108
 
1109
  #: admin.php:1257
1110
  msgid "This backup set was not known by UpdraftPlus to be created by the current WordPress installation, but was either found in remote storage, or was sent from a remote site."
1111
+ msgstr "Acest set de copii de rezervă nu este recunoscut de UpDraftPlus ca fiind creat de instalarea curentă WordPress, fie a fost găsit în depozitul la distanță ori a fost trimis de la un sit de la distanță."
1112
 
1113
  #: admin.php:1257
1114
  msgid "You should make sure that this really is a backup set intended for use on this website, before you restore (rather than a backup set of an unrelated website)."
1115
+ msgstr "Înainte de a restaura, ar trebui te asiguri acesta este într-adevăr un set de copii de rezervă destinat utilizării pe acest sit ( nu fie un set de copii de rezervă a unui alt site, fără legătură cu acesta)."
1116
 
1117
  #: admin.php:2977
1118
  msgid "This makes time-outs much more likely. You are recommended to turn safe_mode off, or to restore only one entity at a time, <a href=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\">or to restore manually</a>."
1119
+ msgstr "Vor apare probabil multe întreruperi. Recomandăm oprirea safe_mode, restaurarea doar a unei entități la un moment dat, <a href=\"https://updraftplus.com/faqs/i-want-to-restore-but-have-either-cannot-or-have-failed-to-do-so-from-the-wp-admin-console/\"> sau restaurarea manuală</a>."
1120
 
1121
  #: admin.php:4381
1122
  msgid "Backup sent to remote site - not available for download."
1123
+ msgstr "Copia de rezervă s-a trimis la situl extern - nu este disponibilă pentru descărcare."
1124
 
1125
  #: admin.php:4382
1126
  msgid "Site"
1127
+ msgstr "Sit"
1128
 
1129
  #: admin.php:4609
1130
  msgid "(backup set imported from remote location)"
1131
+ msgstr "(s-a importat setul de copii de rezervă din locația externă)"
1132
 
1133
  #: methods/addon-base.php:177
1134
  msgid "This storage method does not allow downloading"
1168
 
1169
  #: addons/migrator.php:1818 central/bootstrap.php:367
1170
  msgid "Key created successfully."
1171
+ msgstr "Cheia a fost creată cu succes."
1172
 
1173
  #: addons/migrator.php:1818 central/bootstrap.php:367
1174
  msgid "You must copy and paste this key now - it cannot be shown again."
1175
+ msgstr "Trebuie copiezi și lipești această cheie acum - nu va putea fi afișată din nou."
1176
 
1177
  #: addons/migrator.php:2136
1178
  msgid "Keys for this site are created in the section below the one you just pressed in."
1200
 
1201
  #: methods/ftp.php:307
1202
  msgid "FTP server"
1203
+ msgstr "Server FTP"
1204
 
1205
  #: methods/ftp.php:311
1206
  msgid "FTP login"
1207
+ msgstr "Autentificare FTP"
1208
 
1209
  #: methods/ftp.php:315
1210
  msgid "FTP password"
1211
+ msgstr "Parolă FTP"
1212
 
1213
  #: methods/ftp.php:319
1214
  msgid "Remote path"
1215
+ msgstr "Cale de la distanță"
1216
 
1217
  #: methods/ftp.php:323
1218
  msgid "Passive mode"
1220
 
1221
  #: methods/ftp.php:325
1222
  msgid "Almost all FTP servers will want passive mode; but if you need active mode, then uncheck this."
1223
+ msgstr "Aproape toate serverele FTP folosesc modul pasiv; dacă totuși ai nevoie de modul activ debifează asta."
1224
 
1225
  #: addons/migrator.php:1834
1226
  msgid "key"
1252
 
1253
  #: addons/migrator.php:1894 admin.php:532
1254
  msgid "Send to site:"
1255
+ msgstr "Trimite la situl:"
1256
 
1257
  #: addons/migrator.php:1900 admin.php:541
1258
  msgid "Send"
1280
 
1281
  #: admin.php:528
1282
  msgid "Adding..."
1283
+ msgstr "Se adaugă..."
1284
 
1285
  #: addons/migrator.php:2141 admin.php:529
1286
  msgid "Add site"
1287
+ msgstr "Adaugă sit"
1288
 
1289
  #: addons/migrator.php:167
1290
  msgid "A \"migration\" is ultimately the same as a restoration - but using backup archives that you import from another site."
1296
 
1297
  #: restorer.php:1980
1298
  msgid "To use this backup, your database server needs to support the %s character set."
1299
+ msgstr "Pentru a utiliza această copie de rezervă, serverul bazei de date trebuie să accepte setul de caractere %s."
1300
 
1301
  #: udaddons/options.php:338
1302
  msgid "Claim not granted - perhaps you have already used this purchase somewhere else, or your paid period for downloading from updraftplus.com has expired?"
1324
 
1325
  #: admin.php:520 admin.php:545
1326
  msgid "You have made changes to your settings, and not saved."
1327
+ msgstr "Ai făcut modificări în setari și nu le-ai salvat."
1328
 
1329
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1330
  msgid "To remove the block, please go here."
1331
+ msgstr "Pentru a elimina blocul, te rog să mergi aici."
1332
 
1333
  #: methods/email.php:73
1334
  msgid "configure it here"
1335
+ msgstr "configurează aici"
1336
 
1337
  #: addons/onedrive.php:439
1338
  msgid "Please re-authorize the connection to your %s account."
1424
 
1425
  #: admin.php:396
1426
  msgid "UpdraftPlus news, high-quality training materials for WordPress developers and site-owners, and general WordPress news. You can de-subscribe at any time."
1427
+ msgstr "Noutăți UpdraftPlus, materiale de înaltă calitate pentru dezvoltatorii WordPress și proprietarii de situri și știri generale WordPress. Poți să te dezabonezi în orice moment."
1428
 
1429
  #: admin.php:398
1430
  msgid "For personal support, the ability to copy sites, more storage destinations, encrypted backups for security, multiple backup destinations, better reporting, no adverts and plenty more, take a look at the premium version of UpdraftPlus - the world’s most popular backup plugin."
1431
+ msgstr "Pentru suport personal, pentru a putea copia situri, pentru mai multe destinații de stocare sau o copie de rezervă criptată pentru securitate, pentru destinații multiple ale copiei de rezervă sau o mai bună raportare, fără anunțuri publicitare și pentru multe altele, ai la dispoziție versiunea premium de la UpdraftPlus - cel mai popular modul pentru copii de rezervă din lume."
1432
 
1433
  #: methods/s3.php:743
1434
  msgid "To create a new IAM sub-user and access key that has access only to this bucket, use this add-on."
1435
+ msgstr "Pentru a crea un nou sub-utilizator IAM și cheia de acces, cu care are acces doar la această unitatea de memorie, folosește acest supliment."
1436
 
1437
  #: addons/s3-enhanced.php:51
1438
  msgid "If you have an AWS admin user, then you can use this wizard to quickly create a new AWS (IAM) user with access to only this bucket (rather than your whole account)"
1537
 
1538
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1539
  msgid "UpdraftPlus.com has responded with 'Access Denied'."
1540
+ msgstr "UpdraftPlus.com a răspuns cu 'Acces refuzat'."
1541
 
1542
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1543
  msgid "It appears that your web server's IP Address (%s) is blocked."
1544
+ msgstr "Se pare că adresa IP a serverului tău web (%s) este blocată."
1545
 
1546
  #: methods/updraftvault.php:536 udaddons/updraftplus-addons.php:707
1547
  msgid "This most likely means that you share a webserver with a hacked website that has been used in previous attacks."
1548
+ msgstr "Acest lucru înseamnă cel mai probabil că partajezi un server web cu un sit web atacat sau care a fost folosit în atacurile anterioare."
1549
 
1550
  #: addons/autobackup.php:662
1551
  msgid "Update cancelled - reload page to try again."
1553
 
1554
  #: admin.php:389 admin.php:403
1555
  msgid "Dismiss (for %s months)"
1556
+ msgstr "Revocare (pentru %s luni)"
1557
 
1558
  #: admin.php:391
1559
  msgid "Thank you for backing up with UpdraftPlus!"
1560
+ msgstr "Îți mulțumim că folosești UpdraftPlus!"
1561
 
1562
  #: admin.php:396
1563
  msgid "Free Newsletter"
1564
+ msgstr "Buletin informativ gratuit"
1565
 
1566
  #: admin.php:396
1567
  msgid "Follow this link to sign up."
1568
+ msgstr "Urmărește această legătură pentru a te înscrie."
1569
 
1570
  #: admin.php:398
1571
  msgid "UpdraftPlus Premium"
1572
+ msgstr "UpdraftPlus Premium"
1573
 
1574
  #: admin.php:398
1575
  msgid "Compare with the free version"
1576
+ msgstr "Compară cu versiunea gratuită"
1577
 
1578
  #: admin.php:398
1579
  msgid "Go to the shop."
1580
+ msgstr "Du-te la magazin."
1581
 
1582
  #: admin.php:400
1583
  msgid "More Quality Plugins"
1584
+ msgstr "Mai multe module de calitate"
1585
 
1586
  #: admin.php:400
1587
  msgid "Free two-factor security plugin"
1588
+ msgstr "Modul gratuit cu doi factori de securitate"
1589
 
1590
  #: admin.php:400
1591
  msgid "Premium WooCommerce plugins"
1592
+ msgstr "Module premium WooCommerce"
1593
 
1594
  #: class-updraftplus.php:3389
1595
  msgid "Follow this link to sign up for the UpdraftPlus newsletter."
1596
+ msgstr "Urmărește această legătură pentru a te înscrie la buletinul informativ UpdraftPlus."
1597
 
1598
  #: admin.php:2160
1599
  msgid "Newsletter sign-up"
1600
+ msgstr "Înscrie-te pentru buletinul informativ"
1601
 
1602
  #: admin.php:2544
1603
  msgid "If you have made a purchase from UpdraftPlus.Com, then follow this link to the instructions to install your purchase."
1604
+ msgstr "Dacă ai făcut o achiziție de la UpdraftPlus.Com, urmează această legătură pentru instrucțiunile de instalare a produsului."
1605
 
1606
  #: admin.php:2544
1607
  msgid "The first step is to de-install the free version."
1608
+ msgstr "Primul pas este dezinstalarea versiunii gratuite."
1609
 
1610
  #: admin.php:3628
1611
  msgid "No backup has been completed"
1612
+ msgstr "Nicio copie de rezervă nu a fost finalizată"
1613
 
1614
  #: addons/fixtime.php:422
1615
  msgid "(at same time as files backup)"
1617
 
1618
  #: admin.php:2589
1619
  msgid "Dropbox, Google Drive, FTP, S3, Rackspace, Email"
1620
+ msgstr "Dropbox, Google Drive, FTP, S3, Rackspace, email"
1621
 
1622
  #: admin.php:2594
1623
  msgid "WebDAV, Copy.Com, SFTP/SCP, encrypted FTP"
1624
+ msgstr "WebDAV, Copy.Com, SFTP/SCP, FTP criptat"
1625
 
1626
  #: admin.php:2609
1627
  msgid "Backup extra files and databases"
1628
+ msgstr "Copie de rezervă pentru fișiere și baze de date suplimentare"
1629
 
1630
  #: admin.php:2614
1631
  msgid "Migrate / clone (i.e. copy) websites"
1632
+ msgstr "Migrare / clonare (de exemplu: copiere) situri web"
1633
 
1634
  #: admin.php:2619
1635
  msgid "Basic email reporting"
1636
+ msgstr "Raportare email de bază"
1637
 
1638
  #: admin.php:2624
1639
  msgid "Advanced reporting features"
1640
+ msgstr "Funcționalități de raportare avansate"
1641
 
1642
  #: admin.php:2629
1643
  msgid "Automatic backup when updating WP/plugins/themes"
1644
+ msgstr "Copie de rezervă automată când se actualizează WP/modulele/temele"
1645
 
1646
  #: admin.php:2634
1647
  msgid "Send backups to multiple remote destinations"
1648
+ msgstr "Trimite copiile de rezervă la mai multe destinații la distanță"
1649
 
1650
  #: admin.php:2639
1651
  msgid "Database encryption"
1652
+ msgstr "Criptare bază de date"
1653
 
1654
  #: admin.php:2644
1655
  msgid "Restore backups from other plugins"
1656
+ msgstr "Restaurare copie de rezervă din alte module"
1657
 
1658
  #: admin.php:2654
1659
  msgid "Scheduled backups"
1660
+ msgstr "Copii de rezervă programate"
1661
 
1662
  #: admin.php:2659
1663
  msgid "Fix backup time"
1664
+ msgstr "Stabilește data copiei de rezervă"
1665
 
1666
  #: admin.php:2664
1667
  msgid "Network/Multisite support"
1668
+ msgstr "Suport pentru rețea/multi-sit"
1669
 
1670
  #: admin.php:2669
1671
  msgid "Lock settings access"
1672
+ msgstr "Blocare setări de acces"
1673
 
1674
  #: admin.php:2674
1675
  msgid "Personal support"
1676
+ msgstr "Suport personal"
1677
 
1678
  #: admin.php:2544
1679
  msgid "You are currently using the free version of UpdraftPlus from wordpress.org."
1680
+ msgstr "În prezent folosești versiunea gratuită UpdraftPlus de la wordpress.org."
1681
 
1682
  #: admin.php:2546
1683
  msgid "Get UpdraftPlus Premium"
1684
+ msgstr "Obține UpdraftPlus Premium"
1685
 
1686
  #: admin.php:2547
1687
  msgid "Full feature list"
1688
+ msgstr "Lista completă a funcționalităților"
1689
 
1690
  #: admin.php:2548
1691
  msgid "Pre-sales FAQs"
1692
+ msgstr "Întrebări frecvente înainte de cumpărare"
1693
 
1694
  #: admin.php:2549
1695
  msgid "Ask a pre-sales question"
1696
+ msgstr "Întreabă înainte de a cumpăra"
1697
 
1698
  #: admin.php:2561
1699
  msgid "Get it from"
1700
+ msgstr "Obține-l de la"
1701
 
1702
  #: admin.php:2565
1703
  msgid "Buy It Now!"
1704
+ msgstr "Cumpără-l acum!"
1705
 
1706
  #: admin.php:2569
1707
  msgid "Backup WordPress files and database"
1708
+ msgstr "Copie de rezervă pentru fișiere și baza de date WordPress"
1709
 
1710
  #: admin.php:2574
1711
  msgid "Translated into over %s languages"
1712
+ msgstr "Tradus în %s limbi"
1713
 
1714
  #: admin.php:2579
1715
  msgid "Restore from backup"
1716
+ msgstr "Restaurare din copia de rezervă"
1717
 
1718
  #: admin.php:2584
1719
  msgid "Backup to remote storage"
1720
+ msgstr "Copie de rezervă în depozitul la distanță"
1721
 
1722
  #: admin.php:514
1723
  msgid "You did not select any components to restore. Please select at least one, and then try again."
1724
+ msgstr "Nu ai selectat nicio componentă pentru restaurare. Te rog selectează cel puțin una și apoi încearcă din nou."
1725
 
1726
  #: admin.php:2891
1727
  msgctxt "Uploader: Drop backup files here - or - Select Files"
1728
  msgid "or"
1729
+ msgstr "sau"
1730
 
1731
  #: admin.php:3868
1732
  msgctxt "Uploader: Drop db.gz.crypt files here to upload them for decryption - or - Select Files"
1733
  msgid "or"
1734
+ msgstr "sau"
1735
 
1736
  #: methods/s3.php:127 methods/s3.php:128 methods/s3.php:129
1737
  msgid "%s Error: Failed to initialise"
1738
+ msgstr "Eroare %s: inițializarea a eșuat"
1739
 
1740
  #: addons/autobackup.php:920
1741
  msgid "Backup (where relevant) plugins, themes and the WordPress database with UpdraftPlus before updating"
1744
  #: restorer.php:1957
1745
  msgctxt "The user is being told the number of times an error has happened, e.g. An error (27) occurred"
1746
  msgid "An error (%s) occurred:"
1747
+ msgstr "A avut loc o eroare (%s):"
1748
 
1749
  #: admin.php:3637
1750
  msgctxt "i.e. Non-automatic"
1751
  msgid "Manual"
1752
+ msgstr "Manual"
1753
 
1754
  #: admin.php:3920
1755
  msgid "Check this box to have a basic report sent to"
1756
+ msgstr "Bifează această casetă pentru a avea un raport de bază trimis la"
1757
 
1758
  #: admin.php:3920
1759
  msgid "your site's admin address"
1760
+ msgstr "adresa administratorului sitului"
1761
 
1762
  #: methods/openstack2.php:102
1763
  msgctxt "Keystone and swauth are technical terms which cannot be translated"
1764
  msgid "This needs to be a v2 (Keystone) authentication URI; v1 (Swauth) is not supported."
1765
+ msgstr "Trebuie să fie un URI de autentificare v2 (Keystone); v1 (Swauth) nu este acceptat."
1766
 
1767
  #: methods/openstack2.php:152
1768
  msgctxt "\"tenant\" is a term used with OpenStack storage - Google for \"OpenStack tenant\" to get more help on its meaning"
1769
  msgid "tenant"
1770
+ msgstr "locatar"
1771
 
1772
  #: addons/sftp.php:340
1773
  msgid "Resuming partial uploads is supported for SFTP, but not for SCP. Thus, if using SCP then you will need to ensure that your webserver allows PHP processes to run long enough to upload your largest backup file."
1796
 
1797
  #: admin.php:2337
1798
  msgid "For even more features and personal support, check out "
1799
+ msgstr "Pentru mai multe funcționalități și suport personal, verifică"
1800
 
1801
  #: udaddons/options.php:273
1802
  msgid "Note that after you have claimed your add-ons, you can remove your password (but not the email address) from the settings below, without affecting this site's access to updates."
1885
  #: addons/autobackup.php:120 addons/autobackup.php:885
1886
  #: addons/autobackup.php:893 admin.php:519
1887
  msgid "Automatic backup before update"
1888
+ msgstr "Copie de rezervă automată înainte de actualizare"
1889
 
1890
  #: addons/moredatabase.php:45
1891
  msgid "Database decryption phrase"
1893
 
1894
  #: backup.php:2886
1895
  msgid "A zip error occurred"
1896
+ msgstr "A apărut o eroare zip"
1897
 
1898
  #: backup.php:2888
1899
  msgid "your web hosting account appears to be full; please see: %s"
1900
+ msgstr "contul tău de găzduire web pare să fie plin; vezi te rog: %s"
1901
 
1902
  #: backup.php:2890
1903
  msgid "check your log for more details."
1904
+ msgstr "verifică-ți jurnalul pentru mai multe detalii."
1905
 
1906
  #: admin.php:1842
1907
  msgid "Error: unexpected file read fail"
1908
+ msgstr "Eroare: citire eșuată pentru fișierul neașteptat"
1909
 
1910
  #: class-updraftplus.php:3565
1911
  msgid "Backup label:"
1912
+ msgstr "Etichetă copie de rezervă:"
1913
 
1914
  #: admin.php:748 admin.php:2427 central/updraftplus-commands.php:304
1915
  msgid "The 'Backup Now' button is disabled as your backup directory is not writable (go to the 'Settings' tab and find the relevant option)."
1916
+ msgstr "Butonul 'Fă copia de rezervă acum' este dezactivat pentru că directorul copiei de rezervă nu este editabil (mergi la fila \"Setări\" și găsește opțiunea relevantă)."
1917
 
1918
  #: admin.php:2880
1919
  msgid "Upload files into UpdraftPlus."
1920
+ msgstr "Încarcă fișierele în UpdraftPlus."
1921
 
1922
  #: admin.php:3112
1923
  msgid "For the ability to lock access to UpdraftPlus settings with a password, upgrade to UpdraftPlus Premium."
1924
+ msgstr "Pentru a putea bloca accesul la setările UpdraftPlus cu ajutorul unei parole, achiziționează UpdraftPlus Premium."
1925
 
1926
  #: admin.php:3598
1927
  msgid "incremental backup; base backup: %s"
1928
+ msgstr "copie de rezervă incrementală; copie de rezervă de bază: %s"
1929
 
1930
  #: admin.php:3702 admin.php:3741
1931
  msgid "and retain this many scheduled backups"
1932
+ msgstr "și să păstreze aceste multe copii de rezervă programate"
1933
 
1934
  #: admin.php:4327
1935
  msgid "Backup date"
1936
+ msgstr "Data copiei de rezervă"
1937
 
1938
  #: admin.php:4328
1939
  msgid "Backup data (click to download)"
1940
+ msgstr "Data copiei de rezervă (clic pentru descărcare)"
1941
 
1942
  #: admin.php:3220 admin.php:4632
1943
  msgid "View Log"
1944
+ msgstr "Vezi jurnal"
1945
 
1946
  #: addons/copycom.php:535
1947
  msgid "API Key"
1965
 
1966
  #: addons/googlecloud.php:822 methods/googledrive.php:900
1967
  msgid "%s does not allow authorisation of sites hosted on direct IP addresses. You will need to change your site's address (%s) before you can use %s for storage."
1968
+ msgstr "%s nu permite autorizarea siturile găzduite la adrese IP directe. Va trebui să-ți schimbi adresa sitului (%s) înainte de a putea utiliza %s pentru depozitare."
1969
 
1970
  #: methods/updraftvault.php:512 udaddons/updraftplus-addons.php:642
1971
  msgid "You need to supply both an email address and a password"
1972
+ msgstr "Trebuie să furnizezi atât o adresă de email cât și o parolă"
1973
 
1974
  #: methods/updraftvault.php:572 udaddons/updraftplus-addons.php:741
1975
  msgid "Your email address was valid, but your password was not recognised by UpdraftPlus.Com."
1976
+ msgstr "Adresa ta de email a fost validă, dar parola nu a fost recunoscută de UpdraftPlus.Com."
1977
 
1978
  #: methods/updraftvault.php:575 udaddons/updraftplus-addons.php:745
1979
  msgid "You entered an email address that was not recognised by UpdraftPlus.Com"
1980
+ msgstr "Ai introdus o adresă de email care nu a fost recunoscută de UpdraftPlus.Com"
1981
 
1982
  #: admin.php:2488
1983
  msgid "To proceed, press 'Backup Now'. Then, watch the 'Last Log Message' field for activity."
1984
+ msgstr "Pentru a continua, apasă 'Fă copia de rezervă acum'. Apoi vezi activitatea de pe câmpul 'Mesaj pentru ultimul jurnal'."
1985
 
1986
  #: class-updraftplus.php:3584
1987
  msgid "Your backup is of a WordPress multisite install; but this site is not. Only the first site of the network will be accessible."
1988
+ msgstr "Copia ta de rezervă este pentru o instalare WordPress multi-sit; dar acest sit nu este. Numai primul sit al rețelei va fi accesibil."
1989
 
1990
  #: class-updraftplus.php:3584
1991
  msgid "If you want to restore a multisite backup, you should first set up your WordPress installation as a multisite."
1992
+ msgstr "Dacă vrei să restaurezi o copie de rezervă pentru multi-sit, trebuie să configurezi mai întâi instalarea WordPress ca un multi-sit."
1993
 
1994
  #: addons/migrator.php:1036
1995
  msgid "already done"
2029
 
2030
  #: class-updraftplus.php:3557
2031
  msgid "The site in this backup was running on a webserver with version %s of %s. "
2032
+ msgstr "Situl din această copie de rezervă a rulat pe un server web cu versiunea %s a %s."
2033
 
2034
  #: class-updraftplus.php:3557
2035
  msgid "This is significantly newer than the server which you are now restoring onto (version %s)."
2036
+ msgstr "Este semnificativ mai nou decât serverul în care faci restaurarea (versiunea %s)."
2037
 
2038
  #: class-updraftplus.php:3557
2039
  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."
2040
+ msgstr "Ar trebui continui numai dacă nu poți actualiza serverul curent și ești încrezător (sau îți asumi riscul) modulele/temele/etc. tale sunt compatibile cu versiunea mai veche %s."
2041
 
2042
  #: class-updraftplus.php:3557
2043
  msgid "Any support requests to do with %s should be raised with your web hosting company."
2044
+ msgstr "Orice solicitări pentru suport care au legătură cu %s ar trebui fie adresate de compania ta de găzduire web."
2045
 
2046
  #: class-updraftplus.php:3380 class-updraftplus.php:3409
2047
  msgid "UpdraftPlus is on social media - check us out here:"
2048
+ msgstr "UpdraftPlus este pe rețelele social media - urmăriți-ne aici:"
2049
 
2050
  #: admin.php:2158 class-updraftplus.php:3380 class-updraftplus.php:3409
2051
  msgid "Twitter"
2065
 
2066
  #: admin.php:4693
2067
  msgid "Why am I seeing this?"
2068
+ msgstr "De ce văd asta?"
2069
 
2070
  #: admin.php:2868
2071
  msgid "Press here to look inside your UpdraftPlus directory (in your web hosting space) for any new backup sets that you have uploaded."
2072
+ msgstr "Apasă aici pentru a inspecta directorul UpdraftPlus (în spațiul tău de găzduire web) pentru orice seturi noi de copii de rezervă pe care le-ai încărcat."
2073
 
2074
  #: admin.php:2868
2075
  msgid "The location of this directory is set in the expert settings, in the Settings tab."
2076
+ msgstr "Locația acestui director este setată în secțiunea setări experimentate, din fila Setări."
2077
 
2078
  #: admin.php:1790 admin.php:1802
2079
  msgid "Start backup"
2080
+ msgstr "Începe să faci copia de rezervă"
2081
 
2082
  #: class-updraftplus.php:3529 restorer.php:926
2083
  msgid "You are using the %s webserver, but do not seem to have the %s module loaded."
2084
+ msgstr "Utilizezi serverul web %s, dar se pare nu ai încărcat extensia %s."
2085
 
2086
  #: admin.php:3542
2087
  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."
2088
+ msgstr "Va trebui te consulți cu furnizorul tău de găzduire pentru a afla cum se setează permisiunile unui modul WordPress pentru a putea scrie într-un director."
2089
 
2090
  #: admin.php:3033
2091
  msgid "Unless you have a problem, you can completely ignore everything here."
2092
+ msgstr "Dacă nu ai o problemă, poți ignora complet tot ce este aici."
2093
 
2094
  #: admin.php:1964
2095
  msgid "You will find more information about this in the Settings section."
2096
+ msgstr "Poți găsi mai multe informații în secțiunea Setări."
2097
 
2098
  #: admin.php:1999
2099
  msgid "This file could not be uploaded"
2100
+ msgstr "Acest fișier nu poate fi încărcat."
2101
 
2102
  #: addons/importer.php:70
2103
  msgid "Was this a backup created by a different backup plugin? If so, then you might first need to rename it so that it can be recognised - please follow this link."
2109
 
2110
  #: admin.php:3718
2111
  msgid "Tell me more about incremental backups"
2112
+ msgstr "Spune-mi mai multe despre copiile de rezervă incrementale"
2113
 
2114
  #: admin.php:3069
2115
  msgid "Memory limit"
2116
+ msgstr "Limită de memorie"
2117
 
2118
  #: class-updraftplus.php:3671 restorer.php:1368
2119
  msgid "restoration"
2125
 
2126
  #: backup.php:828
2127
  msgid "Full backup"
2128
+ msgstr "Copie de rezervă completă"
2129
 
2130
  #: backup.php:828
2131
  msgid "Incremental"
2182
 
2183
  #: restorer.php:1985
2184
  msgid "Too many database errors have occurred - aborting"
2185
+ msgstr "Au apărut prea multe erori pentru baza de date - renunțare"
2186
 
2187
  #: backup.php:894
2188
  msgid "read more at %s"
2189
+ msgstr "citește mai multe la %s"
2190
 
2191
  #: backup.php:894
2192
  msgid "Email reports created by UpdraftPlus (free edition) bring you the latest UpdraftPlus.com news"
2193
+ msgstr "Rapoartele de email create de UpdraftPlus (ediția gratuită) îți aduc cele mai noi știri de le UpdraftPlus.com "
2194
 
2195
  #: methods/googledrive.php:906
2196
  msgid "N.B. If you install UpdraftPlus on several WordPress sites, then you cannot re-use your project; you must create a new one from your Google API console for each site."
2197
+ msgstr "Nota bene. Dacă instalezi UpdraftPlus pe câteva situri WordPress, atunci poți reutiliza proiectul; trebuie creezi unul nou din consola ta Google API pentru fiecare sit."
2198
 
2199
  #: admin.php:4314
2200
  msgid "You have not yet made any backups."
2201
+ msgstr "Nu ai făcut încă nicio copie de rezervă."
2202
 
2203
  #: admin.php:3831
2204
  msgid "Database Options"
2205
+ msgstr "Opțiuni pentru baza de date"
2206
 
2207
  #: admin.php:3130
2208
  msgid "The buttons below will immediately execute a backup run, independently of WordPress's scheduler. If these work whilst your scheduled backups do absolutely nothing (i.e. not even produce a log file), then it means that your scheduler is broken."
2209
+ msgstr "Butoanele de mai jos vor face imediat o copie de rezervă, independent de programa WordPress. Dacă acestea lucrează în timp ce copiile de rezervă programate nu fac absolut nimic (de exemplu: nici măcar nu produc un jurnal fișier), înseamnă programa ta este deteriorată."
2210
 
2211
  #: admin.php:3094
2212
  msgid "%s (%s used)"
2214
 
2215
  #: admin.php:3097
2216
  msgid "Plugins for debugging:"
2217
+ msgstr "Module pentru depanare:"
2218
 
2219
  #: admin.php:3094
2220
  msgid "Free disk space in account:"
2221
+ msgstr "Spațiu liber pe disc în cont:"
2222
 
2223
  #: admin.php:330 admin.php:2392
2224
  msgid "Current Status"
2225
+ msgstr "Stare actuală"
2226
 
2227
  #: admin.php:338 admin.php:1417 admin.php:1656 admin.php:2393 admin.php:2851
2228
  msgid "Existing Backups"
2229
+ msgstr "Copii de rezervă existente"
2230
 
2231
  #: admin.php:2431 admin.php:5188
2232
  msgid "This button is disabled because your backup directory is not writable (see the settings)."
2233
+ msgstr "Acest buton este dezactivat pentru directorul copiei de rezervă nu este editabil (vezi setări)."
2234
 
2235
  #: admin.php:753
2236
  msgid "Welcome to UpdraftPlus!"
2237
+ msgstr "Bina ai venit la UpdraftPlus!"
2238
 
2239
  #: admin.php:753
2240
  msgid "To make a backup, just press the Backup Now button."
2241
+ msgstr "Pentru a face o copie de rezervă, doar apasă butonul copia de rezervă acum."
2242
 
2243
  #: admin.php:753
2244
  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."
2245
+ msgstr "Pentru a modifica oricare dintre setările implicite ale copiei de rezervă, pentru a configura programa copiilor de rezervă, pentru a trimite copia de rezervă la depozitul de la distanță (recomandat) și altele, mergi la fila Setări."
2246
 
2247
  #: addons/moredatabase.php:338
2248
  msgid "If you enter text here, it is used to encrypt database backups (Rijndael). <strong>Do make a separate record of it and do not lose it, or all your backups <em>will</em> be useless.</strong> This is also the key used to decrypt backups from this admin interface (so if you change it, then automatic decryption will not work until you change it back)."
2314
 
2315
  #: class-updraftplus.php:1237
2316
  msgid "External database (%s)"
2317
+ msgstr "Baza de date externă (%s)"
2318
 
2319
  #: methods/googledrive.php:906
2320
  msgid "Follow this link to your Google API Console, and there activate the Drive API and create a Client ID in the API Access section."
2321
+ msgstr "Urmărește această legătură către Google API Console și acolo activează Drive API și crează un ID client în secțiunea API Access."
2322
 
2323
  #: methods/googledrive.php:381
2324
  msgid "failed to access parent folder"
2325
+ msgstr "accesarea dosarului părinte a eșuat"
2326
 
2327
  #: addons/googlecloud.php:559 addons/onedrive.php:535
2328
  #: methods/googledrive.php:338
2329
  msgid "However, subsequent access attempts failed:"
2330
+ msgstr "Oricum, încercările ulterioare de acces au eșuat:"
2331
 
2332
  #: admin.php:4458
2333
  msgid "External database"
2334
+ msgstr "Bază de date externă"
2335
 
2336
  #: admin.php:3954
2337
  msgid "This will also cause debugging output from all plugins to be shown upon this screen - please do not be surprised to see these."
2338
+ msgstr "De asemenea, acest lucru va permite ca rezultatele de depanare a tuturor modulelor fie afișate pe acest ecran - nu fii surprins când le vei vedea."
2339
 
2340
  #: admin.php:3894
2341
  msgid "Back up more databases"
2342
+ msgstr "Copii de rezervă pentru mai multe baze de date"
2343
 
2344
  #: admin.php:3840
2345
  msgid "Don't want to be spied on? UpdraftPlus Premium can encrypt your database backup."
2346
+ msgstr "Nu vrei fii spionat? UpdraftPlus Premium poate cripta copia de rezervă a bazei tale de date."
2347
 
2348
  #: admin.php:3840
2349
  msgid "It can also backup external databases."
2350
+ msgstr "De asemenea, poate face o copie de rezervă a bazelor de date externe."
2351
 
2352
  #: admin.php:3852
2353
  msgid "You can manually decrypt an encrypted database here."
2354
+ msgstr "Aici poți decripta manual o bază de date criptată."
2355
 
2356
  #: admin.php:3870
2357
  msgid "First, enter the decryption key"
2358
+ msgstr "În primul rând, introdu cheia de decriptare"
2359
 
2360
  #: admin.php:3754
2361
  msgid "use UpdraftPlus Premium"
2362
+ msgstr "folosește UpdraftPlus Premium"
2363
 
2364
  #: class-updraftplus.php:3444
2365
  msgid "Decryption failed. The database file is encrypted."
2366
+ msgstr "Decriptarea a eșuat. Fișierul bazei de date este criptat."
2367
 
2368
  #: admin.php:1269
2369
  msgid "Only the WordPress database can be restored; you will need to deal with the external database manually."
2370
+ msgstr "Doar baza de date WordPress poate fi restaurată; baza de date externă va trebui restaurată manual."
2371
 
2372
  #: restorer.php:1613 restorer.php:1932 restorer.php:1967 restorer.php:1980
2373
  msgid "An error occurred on the first %s command - aborting run"
2374
+ msgstr "A apărut o eroare la prima comandă %s - renunțare"
2375
 
2376
  #: backup.php:1349
2377
  msgid "database connection attempt failed."
2378
+ msgstr "Încercarea de conectare la baza de date a eșuat."
2379
 
2380
  #: addons/moredatabase.php:93 backup.php:1349
2381
  msgid "Connection failed: check your access details, that the database server is up, and that the network connection is not firewalled."
2382
+ msgstr "Conectarea a eșuat: verifică-ți detaliile de acces, dacă serverul bazei de date este activ și dacă conexiunea la rețea nu este protejată de firewall."
2383
 
2384
  #: addons/google-enhanced.php:75
2385
  msgid "In %s, path names are case sensitive."
2417
 
2418
  #: methods/openstack2.php:107
2419
  msgid "Follow this link for more information"
2420
+ msgstr "Pentru mai multe informații urmărește legătura acesta"
2421
 
2422
  #: methods/openstack2.php:107
2423
  msgid "Tenant"
2424
+ msgstr "Locatar"
2425
 
2426
  #: methods/openstack2.php:116
2427
  msgid "Leave this blank, and a default will be chosen."
2428
+ msgstr "Lasă necompletat și va fi ales implicit. "
2429
 
2430
  #: addons/azure.php:515 methods/openstack2.php:133
2431
  msgid "Container"
2445
 
2446
  #: methods/openstack2.php:94
2447
  msgid "Get your access credentials from your OpenStack Swift provider, and then pick a container name to use for storage. This container will be created for you if it does not already exist."
2448
+ msgstr "Obține-ți datele de conectare pentru de acces de la furnizorul OpenStack Swift și apoi alege un nume pentru container, ca să-l folosești pentru depozitare. Acest container va fi creat pentru tine, dacă nu există deja."
2449
 
2450
  #: methods/openstack2.php:99 methods/openstack2.php:157
2451
  msgid "authentication URI"
2452
+ msgstr "URI de autentificare"
2453
 
2454
  #: methods/addon-base.php:75 methods/addon-base.php:80
2455
  msgid "Failed to upload %s"
2466
 
2467
  #: addons/copycom.php:557 addons/onedrive.php:716 methods/dropbox.php:454
2468
  msgid "(You appear to be already authenticated)."
2469
+ msgstr "(Se pare nu ești deja autentificat)."
2470
 
2471
  #: addons/copycom.php:559 addons/onedrive.php:718 methods/dropbox.php:454
2472
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with %s."
2473
+ msgstr "<strong>După</strong> ce ai salvat setările (dând clic pe \"Salvează modificările\" de mai jos), revin-o aici și clic pe această legătură pentru a finaliza autentificarea cu %s."
2474
 
2475
  #: addons/copycom.php:556 addons/onedrive.php:715 methods/dropbox.php:453
2476
  msgid "Authenticate with %s"
2478
 
2479
  #: methods/cloudfiles.php:409
2480
  msgid "Error downloading remote file: Failed to download"
2481
+ msgstr "Eroare la descărcarea fișierului la distanță: descărcarea a eșuat"
2482
 
2483
  #: addons/copycom.php:158 addons/copycom.php:182 methods/openstack-base.php:305
2484
  msgid "The %s object was not found"
2485
+ msgstr "Nu a fost găsit obiectul %s"
2486
 
2487
  #: methods/openstack-base.php:387
2488
  msgid "%s error - we accessed the container, but failed to create a file within it"
2489
+ msgstr "Eroare %s - am accesat containerul, dar crearea unui fișier în el a eșuat"
2490
 
2491
  #: methods/openstack-base.php:388 methods/openstack-base.php:393
2492
  msgid "Region: %s"
2493
+ msgstr "Regiunea: %s"
2494
 
2495
  #: methods/openstack-base.php:44 methods/openstack-base.php:228
2496
  #: methods/openstack-base.php:297
2497
  msgid "Could not access %s container"
2498
+ msgstr "Nu s-a putut accesa containerul %s"
2499
 
2500
  #: addons/copycom.php:558 addons/googlecloud.php:902 addons/onedrive.php:717
2501
  #: methods/dropbox.php:460 methods/googledrive.php:955
2502
  msgid "Account holder's name: %s."
2503
+ msgstr "Nume titular cont: %s."
2504
 
2505
  #: methods/openstack-base.php:36 methods/openstack-base.php:100
2506
  #: methods/openstack-base.php:107 methods/openstack-base.php:220
2507
  #: methods/openstack-base.php:285
2508
  msgid "%s error - failed to access the container"
2509
+ msgstr "Eroare %s - accesul la container a eșuat "
2510
 
2511
  #: methods/googledrive.php:935
2512
  msgid "<strong>This is NOT a folder name</strong>."
2513
+ msgstr "<strong>Acesta NU este un nume de dosar</strong>."
2514
 
2515
  #: methods/googledrive.php:935
2516
  msgid "It is an ID number internal to Google Drive"
2517
+ msgstr "Este un ID, număr de identificare intern, în Google Drive"
2518
 
2519
  #: methods/googledrive.php:944
2520
  msgid "To be able to set a custom folder name, use UpdraftPlus Premium."
2521
+ msgstr "Pentru a putea stabili un nume de dosar personalizat, folosește UpdraftPlus Premium."
2522
 
2523
  #: addons/copycom.php:550 addons/google-enhanced.php:72 addons/onedrive.php:709
2524
  #: methods/googledrive.php:931 methods/googledrive.php:941
2525
  msgid "Folder"
2526
+ msgstr "Dosar"
2527
 
2528
  #: addons/googlecloud.php:579 methods/googledrive.php:358
2529
  msgid "Name: %s."
2532
  #: addons/googlecloud.php:254 addons/onedrive.php:294
2533
  #: methods/googledrive.php:863
2534
  msgid "%s download: failed: file not found"
2535
+ msgstr "Descărcare %s: a eșuat: fișierul nu a fost găsit"
2536
 
2537
  #: methods/insufficient.php:17 methods/viaaddon-base.php:16
2538
  msgid "This remote storage method (%s) requires PHP %s or later."
2539
+ msgstr "Această metodă de depozitare la distanță (%s) necesită PHP %s sau mai nou."
2540
 
2541
  #: methods/insufficient.php:64 methods/viaaddon-base.php:86
2542
  msgid "You will need to ask your web hosting company to upgrade."
2543
+ msgstr "Va trebui soliciți companiei de găzduire web o actualizare."
2544
 
2545
  #: methods/insufficient.php:65 methods/viaaddon-base.php:87
2546
  msgid "Your %s version: %s."
2547
+ msgstr "Versiunea ta %s: %s."
2548
 
2549
  #: methods/googledrive.php:157
2550
  msgid "Google Drive list files: failed to access parent folder"
2551
+ msgstr "Lista fișierelor Google Drive: accesul la dosarul părinte a eșuat"
2552
 
2553
  #: admin.php:5040
2554
  msgid "Theme directory (%s) not found, but lower-case version exists; updating database option accordingly"
2560
 
2561
  #: admin.php:3101
2562
  msgid "Call"
2563
+ msgstr "Apel"
2564
 
2565
  #: addons/migrator.php:364 admin.php:2884 admin.php:3860
2566
  msgid "This feature requires %s version %s or later"
2567
+ msgstr "Această funcționalitate necesită versiunea %s sau una mai nouă %s"
2568
 
2569
  #: restorer.php:2109
2570
  msgid "Elegant themes theme builder plugin data detected: resetting temporary folder"
2572
 
2573
  #: restorer.php:106
2574
  msgid "Failed to unpack the archive"
2575
+ msgstr "Dezarhivarea arhivei a eșuat"
2576
 
2577
  #: restorer.php:259
2578
  msgid "%s files have been extracted"
2580
 
2581
  #: class-updraftplus.php:910
2582
  msgid "Error - failed to download the file"
2583
+ msgstr "Eroare - descărcarea fișierului a eșuat"
2584
 
2585
  #: admin.php:2868
2586
  msgid "Rescan local folder for new backup sets"
2587
+ msgstr "Rescanează dosarul local pentru seturi noi de copii de rezervă"
2588
 
2589
  #: udaddons/updraftplus-addons.php:208
2590
  msgid "You should update UpdraftPlus to make sure that you have a version that has been tested for compatibility."
2621
 
2622
  #: addons/importer.php:256 admin.php:4499 class-updraftplus.php:2210
2623
  msgid "Backup created by: %s."
2624
+ msgstr "Copie de rezervă creată de %s."
2625
 
2626
  #: admin.php:4505
2627
  msgid "Files and database WordPress backup (created by %s)"
2628
+ msgstr "Copie de rezervă pentru fișiere și baza de date WordPress (creată de %s)"
2629
 
2630
  #: admin.php:4505
2631
  msgid "Files backup (created by %s)"
2632
+ msgstr "Copie de rezervă fișiere (creată de %s)"
2633
 
2634
  #: admin.php:4450 admin.php:4501
2635
  msgid "unknown source"
2636
+ msgstr "sursă necunoscută"
2637
 
2638
  #: admin.php:4456
2639
  msgid "Database (created by %s)"
2640
+ msgstr "Baza de date (creată de %s)"
2641
 
2642
  #: admin.php:2869
2643
  msgid "Rescan remote storage"
2644
+ msgstr "Rescanează depozitul la distanță"
2645
 
2646
  #: admin.php:2867
2647
  msgid "Upload backup files"
2648
+ msgstr "Încarcă fișierele copiei de rezervă"
2649
 
2650
  #: admin.php:2043
2651
  msgid "This backup was created by %s, and can be imported."
2652
+ msgstr "Această copie de rezervă a fost creată de %s și poate fi importată."
2653
 
2654
  #: admin.php:782
2655
  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."
2656
+ msgstr "WordPress are un număr de activități programate (%d) care sunt restante. Cu excepția cazului în care acesta este un sit de dezvoltare, probabil acest lucru înseamnă programa în instalarea WordPress nu funcționează."
2657
 
2658
  #: admin.php:782
2659
  msgid "Read this page for a guide to possible causes and how to fix it."
2660
+ msgstr "Citește această pagină ca un ghid pentru cauze posibile și cum pot fi remediate."
2661
 
2662
  #: admin.php:499 admin.php:500 class-updraftplus.php:2217
2663
  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))."
2664
+ msgstr "Acest fișier nu pare a fi o arhivă a copiei de rezervă UpdraftPlus (astfel de fișiere sunt de tipul .zip sau .gz, care au un nume de genul: backup_(time)_(site name)_(code)_(type).(zip|gz))."
2665
 
2666
  #: admin.php:499
2667
  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."
2668
+ msgstr "Oricum, arhivele UpdraftPlus sunt fișiere standard de tip zip/SQL - așa că, dacă ești sigur că formatul este corect, poți redenumi fișierul pentru a se potrivi cu acest tipar."
2669
 
2670
  #: admin.php:500 class-updraftplus.php:2217
2671
  msgid "If this is a backup created by a different backup plugin, then UpdraftPlus Premium may be able to help you."
2672
+ msgstr "Dacă aceasta este o copie de rezervă creată cu un alt modul pentru copii de rezervă, atunci UpdraftPlus te-ar putea ajuta."
2673
 
2674
  #: admin.php:1282 admin.php:4502 restorer.php:1337
2675
  msgid "Backup created by unknown source (%s) - cannot be restored."
2676
+ msgstr "Copia de rezervă creată de sursă necunoscută (%s) - nu poate fi restaurată."
2677
 
2678
  #: restorer.php:749 restorer.php:797
2679
  msgid "The WordPress content folder (wp-content) was not found in this zip file."
2680
+ msgstr "Dosarul de conținut WordPress (wp-content) nu a fost găsit în acest fișier zip."
2681
 
2682
  #: restorer.php:614
2683
  msgid "This version of UpdraftPlus does not know how to handle this type of foreign backup"
2684
+ msgstr "Această versiune UpdraftPlus nu știe cum lucreze cu acest tip de copie de rezervă externă "
2685
 
2686
  #: methods/dropbox.php:288
2687
  msgid "%s returned an unexpected HTTP response: %s"
2688
+ msgstr "%s a returnat un răspuns HTTP neașteptat: %s"
2689
 
2690
  #: addons/sftp.php:883
2691
  msgid "The UpdraftPlus module for this file access method (%s) does not support listing files"
2694
  #: methods/cloudfiles.php:234 methods/dropbox.php:269
2695
  #: methods/openstack-base.php:95 methods/s3.php:87
2696
  msgid "No settings were found"
2697
+ msgstr "Nu s-au găsit setări"
2698
 
2699
  #: class-updraftplus.php:2338
2700
  msgid "One or more backups has been added from scanning remote storage; note that these backups will not be automatically deleted through the \"retain\" settings; if/when you wish to delete them then you must do so manually."
2701
+ msgstr "Una sau mai multe copii de rezervă au fost adăugate de la scanarea depozitului la distanță; reține că aceste copii de rezervă nu vor fi șterse automat prin setările \"păstrează\"; dacă/când vrei să le ștergeți, trebuie să faci acest lucru manual."
2702
 
2703
  #: admin.php:468
2704
  msgid "Rescanning remote and local storage for backup sets..."
2705
+ msgstr "Rescanează depozitele la distanță și locale pentru găsirea seturilor de copii de rezervă..."
2706
 
2707
  #: addons/googlecloud.php:865 addons/googlecloud.php:880
2708
  #: addons/s3-enhanced.php:36 addons/s3-enhanced.php:40
2740
 
2741
  #: methods/s3.php:729
2742
  msgid "Other %s FAQs."
2743
+ msgstr "Alte %s referitoare la Întrebări frecvente"
2744
 
2745
  #: admin.php:3954
2746
  msgid "Check this to receive more information and emails on the backup process - useful if something is going wrong."
2747
+ msgstr "Bifează pentru a primi mai multe informații și email-uri despre procesul de realizare a copiei de rezervă - este folositor dacă ceva nu merge bine."
2748
 
2749
  #: addons/morefiles.php:262 admin.php:4092
2750
  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."
2751
+ msgstr "Dacă introduci mai multe fișiere (directori), separă-le prin virgulă. Pentru entități de nivel înalt poți folosi un * la începutul sau la sfârșitul intrării, ca un caracter de înlocuire."
2752
 
2753
  #: restorer.php:2098
2754
  msgid "Custom content type manager plugin data detected: clearing option cache"
2756
 
2757
  #: methods/ftp.php:281
2758
  msgid "encrypted FTP (explicit encryption)"
2759
+ msgstr "FTP criptat (criptare explicită)"
2760
 
2761
  #: class-updraftplus.php:3671 methods/ftp.php:284 restorer.php:1367
2762
  msgid "Your web server's PHP installation has these functions disabled: %s."
2763
+ msgstr "Instalarea PHP a serverului tău web are aceste funcții dezactivate: %s."
2764
 
2765
  #: class-updraftplus.php:3671 methods/ftp.php:284 restorer.php:1368
2766
  msgid "Your hosting company must enable these functions before %s can work."
2767
+ msgstr "Compania ta de găzduire trebuie activeze aceste funcții înainte ca %s poată funcționa."
2768
 
2769
  #: methods/ftp.php:279
2770
  msgid "regular non-encrypted FTP"
2771
+ msgstr "FTP necriptat, obișnuit"
2772
 
2773
  #: methods/ftp.php:280
2774
  msgid "encrypted FTP (implicit encryption)"
2775
+ msgstr "FTP criptat (criptare implicită)"
2776
 
2777
  #: restorer.php:1517
2778
  msgid "Backup created by:"
2779
+ msgstr "Copie de rezervă creată de:"
2780
 
2781
  #: udaddons/options.php:482
2782
  msgid "Available to claim on this site"
2828
 
2829
  #: class-updraftplus.php:3691
2830
  msgid "The database file appears to have been compressed twice - probably the website you downloaded it from had a mis-configured webserver."
2831
+ msgstr "Fișierul bazei de date pare fi fost comprimat de două ori - probabil situl web de pe care l-ai descărcat a avut configurare greșită a serverului web."
2832
 
2833
  #: class-updraftplus.php:3698 class-updraftplus.php:3719
2834
  msgid "The attempt to undo the double-compression failed."
2835
+ msgstr "Încercarea de a anula compresia dublă a eșuat."
2836
 
2837
  #: class-updraftplus.php:3721
2838
  msgid "The attempt to undo the double-compression succeeded."
2839
+ msgstr "Încercarea de a anula compresia dublă a reușit."
2840
 
2841
  #: admin.php:1429
2842
  msgid "Constants"
2844
 
2845
  #: backup.php:1559
2846
  msgid "Failed to open database file for reading:"
2847
+ msgstr "Deschiderea fișierului bazei de date pentru citire a eșuat:"
2848
 
2849
  #: backup.php:1395
2850
  msgid "please wait for the rescheduled attempt"
2851
+ msgstr "te rog așteaptă încercarea reprogramată"
2852
 
2853
  #: backup.php:1397
2854
  msgid "No database tables found"
2855
+ msgstr "Nu s-au găsit tabele ale bazei de date"
2856
 
2857
  #: addons/reporting.php:184
2858
  msgid "Note that warning messages are advisory - the backup process does not stop for them. Instead, they provide information that you might find useful, or that may indicate the source of a problem if the backup did not succeed."
2868
 
2869
  #: addons/copycom.php:88 addons/onedrive.php:91 methods/dropbox.php:183
2870
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded has %d bytes remaining (total size: %d bytes)"
2871
+ msgstr "Contul e plin: contul tău %s mai are doar %d biți liberi, iar fișierul care urmează să fie încărcat are %d biți (dimensiune totală: %d biți)"
2872
 
2873
  #: addons/migrator.php:659
2874
  msgid "Skipping this table: data in this table (%s) should not be search/replaced"
2880
 
2881
  #: admin.php:4713
2882
  msgid "Follow this link to download the log file for this restoration (needed for any support requests)."
2883
+ msgstr "Urmează această legătură pentru a descărca jurnalul fișierului pentru această restaurare (necesară pentru orice solicitare pentru suport)."
2884
 
2885
  #: admin.php:3998
2886
  msgid "See this FAQ also."
2887
+ msgstr "Vezi, de asemenea, aceste Întrebări frecvente."
2888
 
2889
  #: admin.php:3800
2890
  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."
2891
+ msgstr "Dacă nu alegi un depozit, atunci copia de rezervă rămâne pe server. Acest lucru nu este recomandat (decât dacă dorești s-o copiezi manual în computerul tău), pentru pierderea serverului web ar însemna atât pierderea sitului cât și pierderea copiilor de rezervă deodată."
2892
 
2893
  #: admin.php:2957
2894
  msgid "Retrieving (if necessary) and preparing backup files..."
2895
+ msgstr "Recuperarea (dacă este necesar) și pregătirea fișierelor copiei de rezervă..."
2896
 
2897
  #: admin.php:1253
2898
  msgid "The PHP setup on this webserver allows only %s seconds for PHP to run, and does not allow this limit to be raised. If you have a lot of data to import, and if the restore operation times out, then you will need to ask your web hosting company for ways to raise this limit (or attempt the restoration piece-by-piece)."
2899
+ msgstr "Inițializarea PHP pe acest server web permite doar %s secunde pentru rularea PHP și nu permite ca limita fie mărită. Dacă ai de importat multe date și dacă operațiunea de restaurare a expirat, atunci va trebui ceri furnizorului tău de găzduire web metode de mărire a acestei limite (sau încearcă o restaurare bucată-cu-bucată)."
2900
 
2901
  #: restorer.php:605
2902
  msgid "Existing unremoved folders from a previous restore exist (please use the \"Delete Old Directories\" button to delete them before trying again): %s"
2903
+ msgstr "Există dosare neeliminate dintr-o restaurare anterioară (te rog folosește butonul \"Șterge directorii vechi\" pentru a le șterge înainte de a încerca iar): %s"
2904
 
2905
  #: admin.php:757 class-updraftplus.php:563
2906
  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)"
2907
+ msgstr "Timpul permis pentru rularea modulelor WordPress este foarte mic (%s secunde) - ar trebui să-l mărești pentru a evita nerealizarea copiei de rezervă din cauza întreruperilor (pentru mai mult ajutor, consultă furnizorul tău de găzduire web - este setarea PHP max_execution_time; valoarea recomandată este de %s secunde sau mai mult)"
2908
 
2909
  #: addons/migrator.php:667
2910
  msgid "Replacing in blogs/site table: from: %s to: %s"
2921
  #: addons/sftp.php:638 addons/sftp.php:641 includes/ftp.class.php:44
2922
  #: includes/ftp.class.php:47
2923
  msgid "The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company."
2924
+ msgstr "Conexiunea %s a expirat; dacă ai introdus serverul corect, atunci, de obicei, acest lucru e cauzat de un firewall care blochează conexiunea - ar trebui verifici împreună cu furnizorul tău de găzduire web."
2925
 
2926
  #: admin.php:5048
2927
  msgid "The current theme was not found; to prevent this stopping the site from loading, your theme has been reverted to the default theme"
2937
 
2938
  #: restorer.php:1879
2939
  msgid "An SQL line that is larger than the maximum packet size and cannot be split was found; this line will not be processed, but will be dropped: %s"
2940
+ msgstr "A fost găsită o linie SQL care este mai mare decât dimensiunea maximă a pachetului și nu poate fi scindată; această linie nu va fi procesată, dar va fi abandonată: %s"
2941
 
2942
  #: restorer.php:385
2943
  msgid "The directory does not exist"
3039
 
3040
  #: methods/cloudfiles-new.php:119
3041
  msgid "Cloud Files Username"
3042
+ msgstr "Nume utilizator Cloud Files"
3043
 
3044
  #: methods/cloudfiles-new.php:122
3045
  msgid "To create a new Rackspace API sub-user and API key that has access only to this Rackspace container, use this add-on."
3046
+ msgstr "Pentru a crea un nou API Rackspace pentru un sub-utilizator și o cheie API care are acces doar la acest container Rackspace, folosește acest supliment."
3047
 
3048
  #: methods/cloudfiles-new.php:127
3049
  msgid "Cloud Files API Key"
3050
+ msgstr "Cheia API pentru Cloud Files"
3051
 
3052
  #: addons/cloudfiles-enhanced.php:270 methods/cloudfiles-new.php:132
3053
  msgid "Cloud Files Container"
3055
 
3056
  #: methods/cloudfiles-new.php:85
3057
  msgid "US or UK-based Rackspace Account"
3058
+ msgstr "Conturi Rackspace localizate în SUA sau Marea Britanie"
3059
 
3060
  #: methods/cloudfiles-new.php:87
3061
  msgid "Accounts created at rackspacecloud.com are US-accounts; accounts created at rackspace.co.uk are UK-based"
3062
+ msgstr "Conturile create la rackspacecloud.com sunt conturi pentru SUA; conturile create la rackspace.co.uk sunt conturi pentru Marea Britanie"
3063
 
3064
  #: addons/cloudfiles-enhanced.php:251 methods/cloudfiles-new.php:95
3065
  msgid "Cloud Files Storage Region"
3066
+ msgstr "Regiunea de depozitare Cloud Files"
3067
 
3068
  #: addons/cloudfiles-enhanced.php:255 methods/cloudfiles-new.php:100
3069
  msgid "Dallas (DFW) (default)"
3082
  #: methods/openstack-base.php:349 methods/openstack-base.php:369
3083
  #: methods/openstack2.php:25
3084
  msgid "Authorisation failed (check your credentials)"
3085
+ msgstr "Autorizarea a eșuat (verifică datele de conectare)"
3086
 
3087
  #: addons/cloudfiles-enhanced.php:233 methods/cloudfiles-new.php:85
3088
  msgid "Accounts created at rackspacecloud.com are US accounts; accounts created at rackspace.co.uk are UK accounts."
3089
+ msgstr "Conturile create la rackspacecloud.com sunt conturi pentru SUA; conturile create la rackspace.co.uk sunt conturi pentru Marea Britanie."
3090
 
3091
  #: methods/updraftvault.php:492 udaddons/options.php:265
3092
  msgid "An unknown error occurred when trying to connect to UpdraftPlus.Com"
3093
+ msgstr "A apărut o eroare necunoscută la încercarea de conectare cu UpdraftPlus.Com"
3094
 
3095
  #: admin.php:513 central/bootstrap.php:448
3096
  msgid "Create"
3097
+ msgstr "Crează"
3098
 
3099
  #: admin.php:475
3100
  msgid "The new user's RackSpace console password is (this will not be shown again):"
3101
+ msgstr "Parola consolei Rackspace pentru utilizatorul nou este (nu va mai fi afișată din nou):"
3102
 
3103
  #: admin.php:476
3104
  msgid "Trying..."
3105
+ msgstr "Se încearcă..."
3106
 
3107
  #: class-updraftplus.php:1249
3108
  msgid "(when decrypted)"
3109
+ msgstr "(când e decriptat)"
3110
 
3111
  #: admin.php:486 admin.php:4990
3112
  msgid "Error data:"
3113
+ msgstr "Eroare dată:"
3114
 
3115
  #: admin.php:4664
3116
  msgid "Backup does not exist in the backup history"
3117
+ msgstr "Copia de rezervă nu există în istoricul copiilor de rezervă"
3118
 
3119
  #: admin.php:3164
3120
  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."
3121
+ msgstr "Instalarea ta WordPress are directori vechi, din starea anterioară, înainte de restaurare/migrare (informație tehnică: aceștia au sufixul - old). Ar trebui apeși acest buton pentru a-i șterge imediat, de îndată ce ai verificat restaurarea s-a efectuat."
3122
 
3123
  #: restorer.php:1585
3124
  msgid "Split line to avoid exceeding maximum packet size"
3125
+ msgstr "Scindează linia pentru a evita depășirea dimensiunii maxime a pachetului"
3126
 
3127
  #: restorer.php:1466
3128
  msgid "Your database user does not have permission to drop tables. We will attempt to restore by simply emptying the tables; this should work as long as you are restoring from a WordPress version with the same database structure (%s)"
3146
 
3147
  #: restorer.php:103
3148
  msgid "Could not move the files into place. Check your file permissions."
3149
+ msgstr "Nu s-au putut muta fișierele. Verifică permisiunile fișierului."
3150
 
3151
  #: restorer.php:96
3152
  msgid "Moving old data out of the way..."
3153
+ msgstr "Mutare date vechi..."
3154
 
3155
  #: restorer.php:100
3156
  msgid "Could not move old files out of the way."
3157
+ msgstr "Nu s-au putut muta fișierele vechi."
3158
 
3159
  #: restorer.php:102
3160
  msgid "Could not move new files into place. Check your wp-content/upgrade folder."
3161
+ msgstr "Nu s-au putut muta noile fișiere. Verifică wp-content/actualizare dosar."
3162
 
3163
  #: addons/reporting.php:369
3164
  msgid "Enter addresses here to have a report sent to them when a backup job finishes."
3182
 
3183
  #: class-updraftplus.php:1218 class-updraftplus.php:1220
3184
  msgid "files: %s"
3185
+ msgstr "Fișierele: %s"
3186
 
3187
  #: class-updraftplus.php:1245 class-updraftplus.php:1250
3188
  msgid "%s checksum: %s"
3206
 
3207
  #: addons/reporting.php:189 admin.php:4277
3208
  msgid "Uploaded to:"
3209
+ msgstr "Încărcat în:"
3210
 
3211
  #: addons/reporting.php:224
3212
  msgid "Debugging information"
3251
 
3252
  #: methods/email.php:73
3253
  msgid "Your site's admin email address (%s) will be used."
3254
+ msgstr "Va fi folosită adresa de email (%s) a administratorului sitului."
3255
 
3256
  #: methods/email.php:74
3257
  msgid "For more options, use the \"%s\" add-on."
3258
+ msgstr "Pentru mai multe opțiuni, folosește suplimentul \"%s\"."
3259
 
3260
  #: methods/s3.php:253
3261
  msgid "The required %s PHP module is not installed - ask your web hosting company to enable it"
3262
+ msgstr "Extensia PHP necesară %s nu este instalată - cere-i companiei de găzduire web s-o activeze"
3263
 
3264
  #: methods/dropbox.php:202
3265
  msgid "%s did not return the expected response - check your log file for more details"
3266
+ msgstr "%s nu a returnat răspunsul așteptat - verifică jurnalul fișierului pentru mai multe detalii"
3267
 
3268
  #: admin.php:522 methods/updraftvault.php:255 methods/updraftvault.php:300
3269
  #: udaddons/options.php:244
3272
 
3273
  #: admin.php:3922
3274
  msgid "For more reporting features, use the Reporting add-on."
3275
+ msgstr "Pentru mai multe funcționalități pentru rapoarte, folosește suplimentul Reporting."
3276
 
3277
  #: class-updraftplus.php:3517
3278
  msgid "(version: %s)"
3280
 
3281
  #: addons/reporting.php:416 admin.php:466
3282
  msgid "Be aware that mail servers tend to have size limits; typically around %s Mb; backups larger than any limits will likely not arrive."
3283
+ msgstr "Reține faptul serverele pentru email tind aibă limite de dimensiune; de obicei în jurul valorii de %s Mb; probabil, copia de rezervă mai mare decât aceste limite nu va fi primită."
3284
 
3285
  #: addons/reporting.php:416 admin.php:465
3286
  msgid "When the Email storage method is enabled, also send the entire backup"
3287
+ msgstr "Când metoda de depozitare prin email este activată, trimite, de asemenea, copia de rezervă întreagă"
3288
 
3289
  #: backup.php:843
3290
  msgid "Unknown/unexpected error - please raise a support request"
3291
+ msgstr "Eroare necunoscută/neașteptată - te rog trimite o solicitare pentru suport"
3292
 
3293
  #: addons/reporting.php:221 backup.php:879
3294
  msgid "The log file has been attached to this email."
3295
+ msgstr "Jurnalul fișierului a fost atașat la acest email."
3296
 
3297
  #: backup.php:885
3298
  msgid "Backed up: %s"
3299
+ msgstr "Copii de rezervă făcute: %s"
3300
 
3301
  #: backup.php:921
3302
  msgid "Backup contains:"
3303
+ msgstr "Copia de rezervă conține:"
3304
 
3305
  #: addons/reporting.php:148 backup.php:922
3306
  msgid "Latest status:"
3307
+ msgstr "Stare recentă:"
3308
 
3309
  #: admin.php:155 backup.php:835
3310
  msgid "Files and database"
3311
+ msgstr "Fișiere și baza de date"
3312
 
3313
  #: backup.php:837
3314
  msgid "Files (database backup has not completed)"
3315
+ msgstr "Fișiere (copia de rezervă a bazei de date nu s-a realizat)"
3316
 
3317
  #: backup.php:837
3318
  msgid "Files only (database was not part of this particular schedule)"
3319
+ msgstr "Doar fișiere (baza de date nu face parte din această programă specifică)"
3320
 
3321
  #: backup.php:840
3322
  msgid "Database (files backup has not completed)"
3323
+ msgstr "Baza de date (copia de rezervă a fișierelor nu s-a realizat)"
3324
 
3325
  #: backup.php:840
3326
  msgid "Database only (files were not part of this particular schedule)"
3327
+ msgstr "Doar baza de date (fișierele nu fac parte din această programă specifică)"
3328
 
3329
  #: options.php:185
3330
  msgid "This is a WordPress multi-site (a.k.a. network) installation."
3331
+ msgstr "Aceasta este o instalare WordPress multi-sit (pentru mai multe situri sau rețea)."
3332
 
3333
  #: options.php:185
3334
  msgid "WordPress Multisite is supported, with extra features, by UpdraftPlus Premium, or the Multisite add-on."
3335
+ msgstr "Multi-sit WordPress, cu alte funcționalități suplimentare, este acceptat de UpdraftPlus Premium, sau cu suplimentul Multi-sit."
3336
 
3337
  #: options.php:185
3338
  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>."
3339
+ msgstr "Fără actualizare, Updraftplus permite <strong>fiecărui</strong> administrator al blogului modifice setările modulului pentru realizarea copiei de rezervă (și, prin urmare, acces la date, inclusiv la parole) și restaureze (inclusiv modificări personalizate, de exemplu parole modificate) <strong>întreaga rețea</strong>."
3340
 
3341
  #: options.php:185
3342
  msgid "(This applies to all WordPress backup plugins unless they have been explicitly coded for multisite compatibility)."
3343
+ msgstr "(Acest lucru este valabil pentru toate modulele WordPress care fac copii de rezervă, cu excepția cazului în care au fost codate explicit pentru compatibilitate multi-sit.)"
3344
 
3345
  #: options.php:185
3346
  msgid "UpdraftPlus warning:"
3347
+ msgstr "Avertizare UpdraftPlus:"
3348
 
3349
  #: udaddons/options.php:488
3350
  msgid "(or connect using the form on this page if you have already purchased it)"
3388
 
3389
  #: methods/updraftvault.php:538 udaddons/updraftplus-addons.php:709
3390
  msgid "UpdraftPlus.Com returned a response which we could not understand (data: %s)"
3391
+ msgstr "UpdraftPlus.com a returnat un răspuns pe care nu l-am putut înțelege (data: %s)"
3392
 
3393
  #: methods/updraftvault.php:579 udaddons/updraftplus-addons.php:748
3394
  msgid "Your email address and password were not recognised by UpdraftPlus.Com"
3395
+ msgstr "Adresa ta de email și parola nu au fost recunoscute de UpdraftPlus.Com"
3396
 
3397
  #: methods/updraftvault.php:565 methods/updraftvault.php:583
3398
  #: udaddons/updraftplus-addons.php:751
3399
  msgid "UpdraftPlus.Com returned a response, but we could not understand it"
3400
+ msgstr "UpdraftsPlus.com a returnat un răspuns, dar nu l-am putut înțelege"
3401
 
3402
  #: udaddons/options.php:94
3403
  msgid "An update is available for UpdraftPlus - please follow this link to get it."
3413
 
3414
  #: admin.php:1400
3415
  msgid "Options (raw)"
3416
+ msgstr "Opțiuni (brute)"
3417
 
3418
  #: addons/reporting.php:414 admin.php:464
3419
  msgid "Send a report only when there are warnings/errors"
3420
+ msgstr "Trimite un raport doar când apar avertizari/erori"
3421
 
3422
  #: restorer.php:1528
3423
  msgid "Content URL:"
3424
+ msgstr "URL conținut:"
3425
 
3426
  #: restorer.php:100
3427
  msgid "You should check the file permissions in your WordPress installation"
3429
 
3430
  #: admin.php:3826
3431
  msgid "See also the \"More Files\" add-on from our shop."
3432
+ msgstr "Vezi, de asemenea, suplimentul \"More Files\" din magazinul nostru."
3433
 
3434
  #: backup.php:2877 class-updraftplus.php:583
3435
  msgid "Your free space in your hosting account is very low - only %s Mb remain"
3436
+ msgstr "Spațiul tău liber în contul de găzduire este foarte mic - mai sunt doar %s Mb"
3437
 
3438
  #: class-updraftplus.php:560
3439
  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)"
3440
+ msgstr "Cantitatea de memorie (RAM) permisă pentru PHP este foarte mică (%s Mb) - ar trebui s-o mărești pentru a evita problemele datorate memoriei insuficiente (consultă-ți furnizorul de găzduire web pentru mai mult ajutor) "
3441
 
3442
  #: udaddons/options.php:484
3443
  msgid "You have an inactive purchase"
3569
 
3570
  #: admin.php:2890
3571
  msgid "Drop backup files here"
3572
+ msgstr "Trage fișierele copiei de rezervă aici"
3573
 
3574
  #: addons/googlecloud.php:898 methods/googledrive.php:951
3575
  msgid "<strong>(You appear to be already authenticated,</strong> though you can authenticate again to refresh your access if you've had a problem)."
3576
+ msgstr "<strong>(Se pare ești deja autentificat,</strong> totuși te poți autentifica din nou pentru a-ți împrospăta accesul dacă ai avut o problemă)."
3577
 
3578
  #: class-updraftplus.php:3373
3579
  msgid "Want more features or paid, guaranteed support? Check out UpdraftPlus.Com"
3580
+ msgstr "Vrei mai multe funcționalități sau suport plătit și garantat? Verifică UpdraftPlus.Com"
3581
 
3582
  #: class-updraftplus.php:3383
3583
  msgid "Check out WordShell"
3584
+ msgstr "Verifică WordShell"
3585
 
3586
  #: class-updraftplus.php:3383
3587
  msgid "manage WordPress from the command line - huge time-saver"
3588
+ msgstr "Administrează WordPress din linia de comandă - câștigi foarte mult timp"
3589
 
3590
  #: admin.php:472
3591
  msgid "The restore operation has begun. Do not press stop or close your browser until it reports itself as having finished."
3592
+ msgstr "Operațiunea de restaurare a început. Nu apăsa stop și nu închide navigatorul până când nu se se raportează finalizarea."
3593
 
3594
  #: admin.php:474
3595
  msgid "The web server returned an error code (try again, or check your web server logs)"
3596
+ msgstr "Serverul web a returnat un cod de eroare (încearcă din nou sau verifică-ți jurnalele serverului)"
3597
 
3598
  #: admin.php:470
3599
  msgid "If you exclude both the database and the files, then you have excluded everything!"
3600
+ msgstr "Dacă ai exclus atât baza de date cât și fișierele, atunci ai exclus tot!"
3601
 
3602
  #: restorer.php:1522
3603
  msgid "Site home:"
3604
+ msgstr "Prima pagină a sitului:"
3605
 
3606
  #: addons/morestorage.php:78
3607
  msgid "Remote Storage Options"
3621
 
3622
  #: admin.php:3792
3623
  msgid "You can send a backup to more than one destination with an add-on."
3624
+ msgstr "Poți trimite copia de rezervă către mai multe destinații cu ajutorul unui supliment."
3625
 
3626
  #: admin.php:3382
3627
  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."
3628
+ msgstr "Notă: Bara pentru progres de mai jos se bazează pe etape, NU pe timp. Nu oprii efectuarea copiei de rezervă doar pentru pare rămână în același loc pentru un timp - este ceva normal."
3629
 
3630
  #: admin.php:3280
3631
  msgid "(%s%%, file %s of %s)"
3632
+ msgstr "(%s%%, fișier %s din %s)"
3633
 
3634
  #: addons/sftp.php:481
3635
  msgid "Failed: We were able to log in and move to the indicated directory, but failed to successfully create a file in that location."
3657
 
3658
  #: methods/email.php:45
3659
  msgid "Backup is of: %s."
3660
+ msgstr "Copia de rezervă are: %s."
3661
 
3662
  #: methods/email.php:58
3663
  msgid "The attempt to send the backup via email failed (probably the backup was too large for this method)"
3664
+ msgstr "Încercarea de a trimite copia de rezervă prin email a eșuat (probabil copia de rezervă este prea mare pentru această metodă)"
3665
 
3666
  #: admin.php:559
3667
  msgid "%s settings test result:"
3668
+ msgstr "Rezultatul testării setărilor %s:"
3669
 
3670
  #: admin.php:4570
3671
  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."
3672
+ msgstr "Dacă vezi mai multe copii de rezervă decât te aștepți, este probabil din cauză ștergerea copiilor de rezervă vechi nu se face până la finalizarea noilor copii de rezervă."
3673
 
3674
  #: admin.php:4568 admin.php:4570
3675
  msgid "(Not finished)"
3676
+ msgstr "(Neterminat)"
3677
 
3678
  #: admin.php:3981
3679
  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)."
3680
+ msgstr "Aici este locul unde UpdraftPlus va scrie fișierele zip pe care le creează inițial. Acest director trebuie fie editabil pe serverul tău web. Este relativ în directorul tău de conținut (care, în mod implicit, se numește wp-content)."
3681
 
3682
  #: admin.php:3981
3683
  msgid "<b>Do not</b> place it inside your uploads or plugins directory, as that will cause recursion (backups of backups of backups of...)."
3684
+ msgstr "<b>NU-L</b> pune în interiorul directorului tău uploads sau plugins, deoarece ar provoca recursivitate (copii de rezervă a copiilor de rezervă a copiilor de rezervă...)."
3685
 
3686
  #: admin.php:3289
3687
  msgid "Waiting until scheduled time to retry because of errors"
3688
+ msgstr "În așteptare, până la ora programată, pentru a reîncerca, din cauza unor erori"
3689
 
3690
  #: admin.php:3294
3691
  msgid "Backup finished"
3692
+ msgstr "Copia de rezervă s-a finalizat"
3693
 
3694
  #: admin.php:3344 central/bootstrap.php:410 central/bootstrap.php:417
3695
  #: methods/updraftvault.php:335 methods/updraftvault.php:403
3698
 
3699
  #: admin.php:3361
3700
  msgid "next resumption: %d (after %ss)"
3701
+ msgstr "reluarea următoare: %d (după %ss)"
3702
 
3703
  #: admin.php:3362
3704
  msgid "last activity: %ss ago"
3705
+ msgstr "ultima activitate: %ss în urmă"
3706
 
3707
  #: admin.php:3377
3708
  msgid "Job ID: %s"
3710
 
3711
  #: admin.php:3321
3712
  msgid "table: %s"
3713
+ msgstr "tabelul: %s"
3714
 
3715
  #: admin.php:3308
3716
  msgid "Created database backup"
3717
+ msgstr "S-a creat copia de rezervă a bazei de date"
3718
 
3719
  #: admin.php:3334
3720
  msgid "Encrypting database"
3721
+ msgstr "Criptare bază de date"
3722
 
3723
  #: admin.php:3342
3724
  msgid "Encrypted database"
3725
+ msgstr "S-a criptat baza de date"
3726
 
3727
  #: admin.php:3273
3728
  msgid "Uploading files to remote storage"
3729
+ msgstr "Încărcare fișiere în depozitul la distanță"
3730
 
3731
  #: admin.php:3285
3732
  msgid "Pruning old backup sets"
3733
+ msgstr "Curățarea seturilor de copii de rezervă vechi"
3734
 
3735
  #: admin.php:3254
3736
  msgid "Creating file backup zips"
3737
+ msgstr "Creare fișiere zip pentru copia de rezervă"
3738
 
3739
  #: admin.php:3267
3740
  msgid "Created file backup zips"
3741
+ msgstr "S-au creat fișiere zip pentru copia de rezervă"
3742
 
3743
  #: admin.php:3319
3744
  msgid "Creating database backup"
3745
+ msgstr "Creare copie de rezervă a bazei de date"
3746
 
3747
  #: admin.php:3249
3748
  msgid "Backup begun"
3749
+ msgstr "Copia de rezervă s-a inițiat"
3750
 
3751
  #: admin.php:2777
3752
  msgid "Backups in progress:"
3753
+ msgstr "Copia de rezervă în curs realizare:"
3754
 
3755
  #: admin.php:761
3756
  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."
3757
+ msgstr "Programa este dezactivată în instalarea WordPress prin setările DISABLE_WP_CRON. Nu se poate face o copie de rezervă (nici prin &quot; copia de rezervă acum&quot;), cu excepția cazului în care setezi facilitatea de a executa programa manual sau până când este activată."
3758
 
3759
  #: restorer.php:580 restorer.php:587
3760
  msgid "UpdraftPlus needed to create a %s in your content directory, but failed - please check your file permissions and enable the access (%s)"
3761
+ msgstr "UpdraftPlus trebuie creeze %s în directorul tău de conținut, dar a eșuat - te rog verifică permisiunile fișierului și activează accesul (%s)"
3762
 
3763
  #: restorer.php:580
3764
  msgid "folder"
3765
+ msgstr "dosar"
3766
 
3767
  #: restorer.php:587
3768
  msgid "file"
3769
+ msgstr "fișier"
3770
 
3771
  #: class-updraftplus.php:2435
3772
  msgid "The backup has not finished; a resumption is scheduled"
3773
+ msgstr "Copia de rezervă nu s-a terminat; o reluare este programată"
3774
 
3775
  #: class-updraftplus.php:1489
3776
  msgid "Your website is visited infrequently and UpdraftPlus is not getting the resources it hoped for; please read this page:"
3777
+ msgstr "Situl tău este vizitat rar și UpdraftPlus nu obține resursele pe care le-a sperat; te rog citește această pagină:"
3778
 
3779
  #: addons/copycom.php:492 addons/googlecloud.php:337 addons/onedrive.php:630
3780
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:95
3781
  #: methods/googledrive.php:239
3782
  msgid "The %s authentication could not go ahead, because something else on your site is breaking it. Try disabling your other plugins and switching to a default theme. (Specifically, you are looking for the component that sends output (most likely PHP warnings/errors) before the page begins. Turning off any debugging settings may also help)."
3783
+ msgstr "Autentificarea pe %s nu a putut continua, deoarece ceva de pe situl tău produce deconectarea. Încearcă dezactivezi alte module și comută pe temă implicită. (Mai exact, caută componenta de ieșire - cel mai probabil avertismente/erori PHP - înainte de încărcarea paginii. De asemenea, dezactivarea oricăror setări de depanare poate ajuta)."
3784
 
3785
  #: admin.php:2358
3786
  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)."
3787
+ msgstr "Limita memoriei tale PHP (setată de furnizorul tău de găzduire web) este foarte mică. UpdraftPlus a încercat mărească această limită, dar fără succes. Acest modul poate accepta o limită de memorie mai mică de 64 Mb - în special dacă ai fișiere foarte mari încărcate (deși, pe de altă parte, multe situri au nevoie doar de limita de 32 Mb - experiența poate varia)."
3788
 
3789
  #: addons/autobackup.php:102 addons/autobackup.php:911
3790
  msgid "UpdraftPlus Automatic Backups"
3796
 
3797
  #: addons/autobackup.php:933 admin.php:515
3798
  msgid "Proceed with update"
3799
+ msgstr "Continuă cu actualizarea"
3800
 
3801
  #: addons/autobackup.php:281 addons/autobackup.php:377
3802
  msgid "Starting automatic backup..."
3861
 
3862
  #: admin.php:2162
3863
  msgid "More plugins"
3864
+ msgstr "Mai multe module"
3865
 
3866
  #: class-updraftplus.php:3550
3867
  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."
3868
+ msgstr "Imporți dintr-o versiune mai nouă WordPress (%s) într-o versiune mai veche (%s). Nu ai nicio garanție WordPress poate gestiona acest lucru."
3869
 
3870
  #: class-updraftplus.php:3653
3871
  msgid "This database backup is missing core WordPress tables: %s"
3872
+ msgstr "Acestei copii de rezervă a bazei de date îi lipsesc tabelele de bază WordPress: %s"
3873
 
3874
  #: class-updraftplus.php:3658
3875
  msgid "UpdraftPlus was unable to find the table prefix when scanning the database backup."
3876
+ msgstr "UpdraftPlus nu a putut găsi prefixul tabelului când a scanat copia de rezervă a bazei de date."
3877
 
3878
  #: class-updraftplus.php:3466
3879
  msgid "The database is too small to be a valid WordPress database (size: %s Kb)."
3880
+ msgstr "Baza de date este prea mică pentru a fi o bază de date WordPress validă (dimensiune: %s Kb)."
3881
 
3882
  #: admin.php:581 admin.php:736
3883
  msgid "UpdraftPlus Premium can <strong>automatically</strong> take a backup of your plugins or themes and database before you update."
3889
 
3890
  #: addons/autobackup.php:496 admin.php:721
3891
  msgid "Update Plugin"
3892
+ msgstr "Actualizare modul"
3893
 
3894
  #: addons/autobackup.php:547 admin.php:725
3895
  msgid "Update Theme"
3896
+ msgstr "Actualizare temă"
3897
 
3898
  #: admin.php:579 admin.php:734
3899
  msgid "Dismiss (for %s weeks)"
3900
+ msgstr "Revocare (pentru %s săptămâni)"
3901
 
3902
  #: addons/autobackup.php:914 admin.php:580 admin.php:735
3903
  msgid "Be safe with an automatic backup"
3904
+ msgstr "Cu o copia de rezervă automată ești în siguranță"
3905
 
3906
  #: restorer.php:2077
3907
  msgid "Uploads path (%s) does not exist - resetting (%s)"
3909
 
3910
  #: admin.php:2321
3911
  msgid "If you can still read these words after the page finishes loading, then there is a JavaScript or jQuery problem in the site."
3912
+ msgstr "Dacă încă poți citi aceste cuvinte după ce pagina a terminat încărcarea, atunci există o problemă JavaScript sau jQuery în sit."
3913
 
3914
  #: admin.php:505
3915
  msgid "Follow this link to attempt decryption and download the database file to your computer."
3916
+ msgstr "Urmărește această legătură pentru a încerca decriptarea și descarcă baza de date în calculatorul tău."
3917
 
3918
  #: admin.php:506
3919
  msgid "This decryption key will be attempted:"
3920
+ msgstr "Această cheie de decriptare va încerca:"
3921
 
3922
  #: admin.php:507
3923
  msgid "Unknown server response:"
3924
+ msgstr "Răspuns necunoscut de la server:"
3925
 
3926
  #: admin.php:508
3927
  msgid "Unknown server response status:"
3928
+ msgstr "Stare răspuns necunoscut de la server:"
3929
 
3930
  #: admin.php:509
3931
  msgid "The file was uploaded."
3932
+ msgstr "Fișierul a fost încărcat."
3933
 
3934
  #: admin.php:501
3935
  msgid "(make sure that you were trying to upload a zip file previously created by UpdraftPlus)"
3936
+ msgstr "(fii sigur încerci încarci un fișier zip creat anterior cu UpdraftPlus)"
3937
 
3938
  #: admin.php:502
3939
  msgid "Upload error:"
3940
+ msgstr "Eroare încărcare:"
3941
 
3942
  #: admin.php:503
3943
  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)."
3944
+ msgstr "Acest fișier nu pare a fi o arhivă UpdraftPlus a bazei de date criptată (astfel de fișiere sunt de tipul .gz.crypt, care are un nume de genul: backup_(time)_(site name)_(code)_db.crypt.gz))."
3945
 
3946
  #: admin.php:504
3947
  msgid "Upload error"
3948
+ msgstr "Eroare încărcare"
3949
 
3950
  #: admin.php:491
3951
  msgid "Delete from your web server"
3952
+ msgstr "Șterge de pe serverul tău web"
3953
 
3954
  #: admin.php:492
3955
  msgid "Download to your computer"
3956
+ msgstr "Descarcă în computerul tău"
3957
 
3958
  #: admin.php:493
3959
  msgid "and then, if you wish,"
3960
+ msgstr "și apoi, dacă vrei,"
3961
 
3962
  #: methods/s3.php:689
3963
  msgid "Examples of S3-compatible storage providers:"
3964
+ msgstr "Exemple de furnizori de depozitare compatibili cu Amazon S3:"
3965
 
3966
  #: admin.php:4940
3967
  msgid "Will not delete any archives after unpacking them, because there was no cloud storage for this backup"
3969
 
3970
  #: admin.php:4534
3971
  msgid "(%d archive(s) in set)."
3972
+ msgstr "(%d arhivă(e) în set)."
3973
 
3974
  #: admin.php:4537
3975
  msgid "You appear to be missing one or more archives from this multi-archive set."
3976
+ msgstr "Se pare că-ți lipsește una sau mai multe arhive din acest set cu grupuri de arhive."
3977
 
3978
  #: admin.php:3958
3979
  msgid "Split archives every:"
3980
+ msgstr "Împarte arhivele în fragmente:"
3981
 
3982
  #: admin.php:482
3983
  msgid "Error: the server sent an empty response."
3984
+ msgstr "Eroare: serverul a trimis un răspuns gol."
3985
 
3986
  #: admin.php:483
3987
  msgid "Warnings:"
3988
+ msgstr "Avertizări:"
3989
 
3990
  #: addons/moredatabase.php:269
3991
  msgid "Error: the server sent us a response (JSON) which we did not understand."
3993
 
3994
  #: admin.php:2054
3995
  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?"
3996
+ msgstr "Acest fișier arată ca unul creat de UpdraftPlus, dar această instalare nu recunoaște acest tip de obiect: %s. Poate trebuie instalezi un supliment?"
3997
 
3998
  #: admin.php:1330
3999
  msgid "The backup archive files have been successfully processed. Now press Restore again to proceed."
4000
+ msgstr "Fișierele arhivei copiilor de rezervă au fost procesate cu succes. Apasă din nou Restaurează pentru a continua."
4001
 
4002
  #: admin.php:1332
4003
  msgid "The backup archive files have been processed, but with some warnings. If all is well, then now press Restore again to proceed. Otherwise, cancel and correct any problems first."
4004
+ msgstr "Fișierele arhivei copiilor de rezervă au fost procesate, dar cu câteva avertizări. Dacă totul decurge normal, apasă din nou Restaurează pentru a continua. În caz contrar, prima dată anulează și corectează orice probleme."
4005
 
4006
  #: admin.php:1334
4007
  msgid "The backup archive files have been processed, but with some errors. You will need to cancel and correct any problems before retrying."
4008
+ msgstr "Fișierele arhivei copiilor de rezervă au fost procesate, dar cu câteva erori. Va trebui anulezi și corectezi orice probleme înainte de a reîncerca."
4009
 
4010
  #: admin.php:1014
4011
  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"
4012
+ msgstr "Nu s-a putut găsi arhiva copiei de rezervă pentru acest fișier. Metoda de depozitare la distanță folosită (%s) nu ne permite recuperăm fisierele. Pentru a continua orice ce fel de restaurare folosind UpdraftPlus, va trebui obții o copie a acestui fișier pe care s-o plasezi în dosarul existent UpdraftPlus."
4013
 
4014
  #: admin.php:1234
4015
  msgid "No such backup set exists"
4016
+ msgstr "Nu există un astfel de set de copii de rezervă."
4017
 
4018
  #: admin.php:1303
4019
  msgid "File not found (you need to upload it): %s"
4020
+ msgstr "Nu a fost găsit fișierul (trebuie să-l încarci): %s"
4021
 
4022
  #: admin.php:1305
4023
  msgid "File was found, but is zero-sized (you need to re-upload it): %s"
4024
+ msgstr "Fișierul a fost găsit, dar are dimensiunea zero (trebuie să-l reîncarci): %s"
4025
 
4026
  #: admin.php:1310
4027
  msgid "File (%s) was found, but has a different size (%s) from what was expected (%s) - it may be corrupt."
4028
+ msgstr "Fișierul (%s) a fost găsit, dar are o dimensiune diferită (%s) de cea așteptată (%s) - poate fie stricat."
4029
 
4030
  #: admin.php:1325
4031
  msgid "This multi-archive backup set appears to have the following archives missing: %s"
4032
+ msgstr "Acest set de copii de rezervă pentru arhive multiple pare aibă următoarele arhive lipsă: %s"
4033
 
4034
  #: restorer.php:529
4035
  msgid "Failed to move directory (check your file permissions and disk quota): %s"
4041
 
4042
  #: restorer.php:97
4043
  msgid "Moving unpacked backup into place..."
4044
+ msgstr "Mutare copie de rezervă dezarhivată în locul..."
4045
 
4046
  #: backup.php:2584 backup.php:2837
4047
  msgid "Failed to open the zip file (%s) - %s"
4048
+ msgstr "Deschiderea fișierului zip a eșuat (%s) - %s"
4049
 
4050
  #: addons/morefiles.php:94
4051
  msgid "WordPress root directory server path: %s"
4053
 
4054
  #: methods/s3.php:696
4055
  msgid "... and many more!"
4056
+ msgstr "...și multe altele!"
4057
 
4058
  #: methods/s3.php:734
4059
  msgid "%s end-point"
4060
+ msgstr "punct final %s"
4061
 
4062
  #: admin.php:4859
4063
  msgid "File is not locally present - needs retrieving from remote storage"
4064
+ msgstr "Fișierul nu este prezent local - trebuie recuperat din depozitul la distanță."
4065
 
4066
  #: methods/s3generic.php:41 methods/s3generic.php:49
4067
  msgid "S3 (Compatible)"
4068
+ msgstr "S3 (compatibil)"
4069
 
4070
  #: admin.php:4807
4071
  msgid "Final checks"
4072
+ msgstr "Verificări finale"
4073
 
4074
  #: admin.php:4846
4075
  msgid "Looking for %s archive: file name: %s"
4076
+ msgstr "Caut arhivele %s: nume fișier: %s"
4077
 
4078
  #: admin.php:3964
4079
  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)."
4080
+ msgstr "Bifează pentru a șterge orice fișiere copie de rezervă inutile de pe serverul tău după ce s-a realizat copie de rezervă (de exemplu: dacă debifezi, orice fișiere expediate la distanță vor rămâne, de asemenea, la nivel local și orice fișiere păstrate la nivel local nu vor fi supuse limitelor de retenție)."
4081
 
4082
  #: admin.php:3867
4083
  msgid "Drop encrypted database files (db.gz.crypt files) here to upload them for decryption"
4084
+ msgstr "Plasați aici fișierele bazei de date criptate (db.gz.crypt files) pentru a le încărca pentru decriptare"
4085
 
4086
  #: admin.php:4081
4087
  msgid "Your wp-content directory server path: %s"
4088
+ msgstr "Calea către directorul tău wp-content din server: %s"
4089
 
4090
  #: admin.php:498
4091
  msgid "Raw backup history"
4092
+ msgstr "Istoric copie de rezervă brută"
4093
 
4094
  #: admin.php:3105
4095
  msgid "Show raw backup and file list"
4096
+ msgstr "Arată copia de rezervă brută și lista de fișiere"
4097
 
4098
  #: admin.php:481
4099
  msgid "Processing files - please wait..."
4100
+ msgstr "Se procesează fișiere - te rog așteaptă..."
4101
 
4102
  #: admin.php:2858
4103
  msgid "Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here."
4104
+ msgstr "Instalarea ta WordPress are o problemă cu scoaterea spațiilor libere suplimentare. Aceasta poate afecta copiile de rezervă pe care le descarci de aici."
4105
 
4106
  #: admin.php:2858 admin.php:4992
4107
  msgid "Please consult this FAQ for help on what to do about it."
4108
+ msgstr "Te rog consultă Întrebări frecvente pentru ajutor."
4109
 
4110
  #: class-updraftplus.php:3474
4111
  msgid "Failed to open database file."
4112
+ msgstr "Deschiderea fișierului bazei de date a eșuat."
4113
 
4114
  #: class-updraftplus.php:3454
4115
  msgid "Failed to write out the decrypted database to the filesystem."
4116
+ msgstr "Scrierea bazei de date criptate în sistemul de fișiere a eșuat."
4117
 
4118
  #: admin.php:1372
4119
  msgid "Known backups (raw)"
4120
+ msgstr "Copii de rezervă cunoscute (brute)"
4121
 
4122
  #: restorer.php:1270
4123
  msgid "Using directory from backup: %s"
4125
 
4126
  #: restorer.php:879
4127
  msgid "Files found:"
4128
+ msgstr "Fișiere găsite:"
4129
 
4130
  #: restorer.php:885
4131
  msgid "Unable to enumerate files in that directory."
4133
 
4134
  #: restorer.php:1715
4135
  msgid "Requested table engine (%s) is not present - changing to MyISAM."
4136
+ msgstr "Motorul tabelului solicitat (%s) nu sunt prezent - trecere la MyISAM."
4137
 
4138
  #: restorer.php:1725
4139
  msgid "Restoring table (%s)"
4140
+ msgstr "Restaurare tabel (%s)"
4141
 
4142
  #: addons/migrator.php:314
4143
  msgid "This looks like a migration (the backup is from a site with a different address/URL), but you did not check the option to search-and-replace the database. That is usually a mistake."
4145
 
4146
  #: admin.php:4881
4147
  msgid "file is size:"
4148
+ msgstr "Dimensiunea fișierului este de:"
4149
 
4150
  #: addons/googlecloud.php:855 addons/migrator.php:352 addons/migrator.php:355
4151
  #: addons/migrator.php:358 admin.php:761 admin.php:2326 admin.php:3130
4152
  #: backup.php:2884 updraftplus.php:147
4153
  msgid "Go here for more information."
4154
+ msgstr "Mergi aici pentru mai multe informații."
4155
 
4156
  #: admin.php:480
4157
  msgid "Some files are still downloading or being processed - please wait."
4158
+ msgstr "Câteva fișiere sunt în curs de descărcare sau de procesare - te rog așteaptă."
4159
 
4160
  #: class-updraftplus.php:3522 class-updraftplus.php:3540
4161
  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."
4162
+ msgstr "Acest set de copii de rezervă este de la un alt sit - aceasta nu este o restaurare, ci o migrare. Ai nevoie de suplimentul Migrator pentru putea face acest lucru."
4163
 
4164
  #: methods/ftp.php:84 methods/ftp.php:135 methods/ftp.php:239
4165
  msgid "%s login failure"
4166
+ msgstr "Autentificare eșuată %s"
4167
 
4168
  #: methods/ftp.php:111
4169
  msgid "%s upload failed"
4170
+ msgstr "Încărcare eșuată %s"
4171
 
4172
  #: addons/fixtime.php:545
4173
  msgid "Enter in format HH:MM (e.g. 14:22)."
4179
 
4180
  #: methods/dropbox.php:120
4181
  msgid "Dropbox error: %s (see log file for more)"
4182
+ msgstr "Eroare Dropbox: %s (vezi jurnalul fișierului pentru mai multe detalii)"
4183
 
4184
  #: methods/dropbox.php:330
4185
  msgid "You do not appear to be authenticated with %s (whilst deleting)"
4186
+ msgstr "Se pare nu ești autentificat în %s (în timpul ce șterge)"
4187
 
4188
  #: methods/dropbox.php:338
4189
  msgid "Failed to access %s when deleting (see log file for more)"
4190
+ msgstr "Accesul la %s când se șterge a eșuat (vezi jurnalul fișierului pentru mai multe detalii)"
4191
 
4192
  #: addons/copycom.php:264 methods/dropbox.php:371
4193
  msgid "You do not appear to be authenticated with %s"
4194
+ msgstr "Se pare nu ești autentificat în %s"
4195
 
4196
  #: methods/cloudfiles.php:418
4197
  msgid "Error - no such file exists at %s"
4198
+ msgstr "Eroare - nu există un astfel de fișier la %s"
4199
 
4200
  #: methods/cloudfiles.php:422
4201
  msgid "Error - failed to download the file from %s"
4202
+ msgstr "Eroare - descărcarea fișierului din %s a eșuat"
4203
 
4204
  #: methods/cloudfiles.php:219 methods/openstack-base.php:70
4205
  msgid "%s error - failed to upload file"
4206
+ msgstr "%s eroare - încărcarea fișierului a eșuat"
4207
 
4208
  #: addons/azure.php:215 methods/addon-base.php:208 methods/cloudfiles.php:392
4209
  #: methods/cloudfiles.php:409 methods/googledrive.php:823
4210
  #: methods/openstack-base.php:319 methods/stream-base.php:261
4211
  #: methods/stream-base.php:268 methods/stream-base.php:281
4212
  msgid "%s Error"
4213
+ msgstr "Eroare %s"
4214
 
4215
  #: methods/cloudfiles.php:95 methods/cloudfiles.php:99
4216
  #: methods/cloudfiles.php:240 methods/cloudfiles.php:285
4220
  #: methods/openstack-base.php:356 methods/openstack-base.php:373
4221
  #: methods/openstack-base.php:378
4222
  msgid "%s authentication failed"
4223
+ msgstr "autentificarea %s a eșuat"
4224
 
4225
  #: class-updraftplus.php:838 methods/cloudfiles.php:211
4226
  msgid "%s error - failed to re-assemble chunks"
4227
+ msgstr "eroare %s - reasamblarea din bucăți a eșuat"
4228
 
4229
  #: addons/googlecloud.php:384 addons/migrator.php:448 admin.php:1999
4230
  #: admin.php:2046 admin.php:2054 class-updraftplus.php:686
4232
  #: class-updraftplus.php:3444 class-updraftplus.php:3580
4233
  #: class-updraftplus.php:3613 methods/googledrive.php:299 restorer.php:873
4234
  msgid "Error: %s"
4235
+ msgstr "Eroare: %s"
4236
 
4237
  #: admin.php:3656
4238
  msgid "Backup directory specified exists, but is <b>not</b> writable."
4239
+ msgstr "Directorul specificat al copiei de rezervă există, dar <b>nu</b> este editabil."
4240
 
4241
  #: admin.php:3654
4242
  msgid "Backup directory specified does <b>not</b> exist."
4243
+ msgstr "Directorul specificat al copiei de rezervă <b>nu</b> există."
4244
 
4245
  #: admin.php:3389 admin.php:3610 class-updraftplus.php:3522
4246
  #: class-updraftplus.php:3540
4247
  msgid "Warning: %s"
4248
+ msgstr "Avertizare: %s"
4249
 
4250
  #: admin.php:2462
4251
  msgid "Last backup job run:"
4252
+ msgstr "Ultima copie de rezervă:"
4253
 
4254
  #: backup.php:2017 backup.php:2043
4255
  msgid "%s: unreadable file - could not be backed up"
4256
+ msgstr "%s: fișier imposibil de citit - nu se poate face o copie de rezervă"
4257
 
4258
  #: backup.php:2603
4259
  msgid "A very large file was encountered: %s (size: %s Mb)"
4260
+ msgstr "S-a întâlnit un fișier foarte mare: %s (dimensiune: %s Mb)"
4261
 
4262
  #: backup.php:1467
4263
  msgid "Table %s has very many rows (%s) - we hope your web hosting company gives you enough resources to dump out that table in the backup"
4264
+ msgstr "Tabelul %s are prea multe rânduri (%s) - sperăm furnizorul tău de găzduire web îți asigură destule resurse pentru a descărca tabelul în copia de rezervă."
4265
 
4266
  #: backup.php:1578
4267
  msgid "An error occurred whilst closing the final database file"
4268
+ msgstr "A apărut o eroare în timpul închiderii fișierului final al bazei de date"
4269
 
4270
  #: backup.php:870
4271
  msgid "Warnings encountered:"
4272
+ msgstr "Avertizări întâlnite:"
4273
 
4274
  #: class-updraftplus.php:2423
4275
  msgid "The backup apparently succeeded (with warnings) and is now complete"
4276
+ msgstr "Copia de rezervă s-a realizat (cu avertizări) și acum este finalizată"
4277
 
4278
  #: class-updraftplus.php:596
4279
  msgid "Your free disk space is very low - only %s Mb remain"
4280
+ msgstr "Spațiul liber de pe discul tău este foarte mic - mai sunt doar %s Mb"
4281
 
4282
  #: addons/migrator.php:431
4283
  msgid "Migrated site (from UpdraftPlus)"
4317
 
4318
  #: methods/s3.php:710
4319
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support and ask for them to enable it."
4320
+ msgstr "Instalarea PHP pe serverul tău web nu include o extensie necesară (%s). Te rog contactează suportul furnizorului tău de găzduire web și solicită activarea."
4321
 
4322
  #: methods/s3.php:897
4323
  msgid "Please check your access credentials."
4324
+ msgstr "Te rog verifică-ți datele de conectare."
4325
 
4326
  #: addons/s3-enhanced.php:152 methods/s3.php:875
4327
  msgid "The error reported by %s was:"
4328
+ msgstr "Eroarea raportată de %s era:"
4329
 
4330
  #: restorer.php:1287
4331
  msgid "Please supply the requested information, and then continue."
4332
+ msgstr "Te rog furnizezi informațiile cerute și apoi continui."
4333
 
4334
  #: restorer.php:1920
4335
  msgid "Cannot drop tables, so deleting instead (%s)"
4337
 
4338
  #: class-updraftplus.php:3591 restorer.php:1559
4339
  msgid "Site information:"
4340
+ msgstr "Informație despre site:"
4341
 
4342
  #: restorer.php:1903
4343
  msgid "Cannot create new tables, so skipping this command (%s)"
4346
  #: addons/migrator.php:314 admin.php:2321 class-updraftplus.php:3584
4347
  #: restorer.php:1439 restorer.php:1465 restorer.php:1879
4348
  msgid "Warning:"
4349
+ msgstr "Avertizare:"
4350
 
4351
  #: restorer.php:1440
4352
  msgid "Your database user does not have permission to create tables. We will attempt to restore by simply emptying the tables; this should work as long as a) you are restoring from a WordPress version with the same database structure, and b) Your imported database does not contain any tables which are not already present on the importing site."
4354
 
4355
  #: class-updraftplus.php:3576 restorer.php:105
4356
  msgid "You are running on WordPress multisite - but your backup is not of a multisite site."
4357
+ msgstr "Rulezi pe WordPress multi-sit - dar copia ta de rezervă nu este pentru un sit instalat pe multi-sit."
4358
 
4359
  #: admin.php:4834
4360
  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."
4361
+ msgstr "Sari peste restaurarea WordPress când imporți un singur sit într-o instalare multi-sit. Dacă ai avut ceva important în directorul tău WordPress, va trebui să-l readaugi manual din fișierul zip."
4362
 
4363
  #: admin.php:4137 methods/updraftvault.php:239
4364
  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."
4365
+ msgstr "Instalarea PHP de pe serverul tău web nu include extensia (%s) <strong>necesară</strong> (pentru %s). Te rog vezi suportul furnizorului tău de găzduire web și cere-le s-o activeze."
4366
 
4367
  #: admin.php:516
4368
  msgid "Close"
4369
+ msgstr "Închide"
4370
 
4371
  #: addons/autobackup.php:283 addons/autobackup.php:374 admin.php:473
4372
  #: methods/remotesend.php:71 methods/remotesend.php:79
4373
  #: methods/remotesend.php:219 methods/remotesend.php:227
4374
  msgid "Unexpected response:"
4375
+ msgstr "Răspuns neprevăzut:"
4376
 
4377
  #: addons/reporting.php:412 admin.php:469
4378
  msgid "To send to more than one address, separate each address with a comma."
4379
+ msgstr "Pentru a trimite la mai multe adrese, separă adresele printr-o virgulă."
4380
 
4381
  #: admin.php:496
4382
  msgid "PHP information"
4383
+ msgstr "Informație PHP"
4384
 
4385
  #: admin.php:3070
4386
  msgid "show PHP information (phpinfo)"
4387
+ msgstr "arată informația PHP (phpinfo)"
4388
 
4389
  #: admin.php:3090
4390
  msgid "zip executable found:"
4391
+ msgstr "s-a găsit un zip executabil:"
4392
 
4393
  #: admin.php:2471
4394
  msgid "Migrate Site"
4395
+ msgstr "Migrare sit"
4396
 
4397
  #: addons/migrator.php:170
4398
  msgid "<a href=\"%s\">Read this article to see step-by-step how it's done.</a>"
4400
 
4401
  #: admin.php:2476
4402
  msgid "Do you want to migrate or clone/duplicate a site?"
4403
+ msgstr "Vrei migrezi sau clonezi/copiezi un sit?"
4404
 
4405
  #: admin.php:2476
4406
  msgid "Then, try out our \"Migrator\" add-on. After using it once, you'll have saved the purchase price compared to the time needed to copy a site by hand."
4407
+ msgstr "Atunci, încearcă suplimentul nostru \"Migrator\". După ce l-ai folosit o dată, ai amortizat prețul de achiziție în comparație cu timpul necesar pentru a copia manual un sit."
4408
 
4409
  #: admin.php:2476
4410
  msgid "Get it here."
4411
+ msgstr "Obține-l de aici."
4412
 
4413
  #: admin.php:2946
4414
  msgid "Deleting... please allow time for the communications with the remote storage to complete."
4415
+ msgstr "Se șterge... te rog acordă timp pentru a se finaliza comunicarea cu depozitul la distanță."
4416
 
4417
  #: admin.php:2945
4418
  msgid "Also delete from remote storage"
4419
+ msgstr "De asemenea, șterge din depozitul la distanță"
4420
 
4421
  #: admin.php:2804
4422
  msgid "Latest UpdraftPlus.com news:"
4423
+ msgstr "Ultimele noutăți UpdraftPlus:"
4424
 
4425
  #: admin.php:2437
4426
  msgid "Clone/Migrate"
4427
+ msgstr "Clonează/Migrează"
4428
 
4429
  #: admin.php:2157
4430
  msgid "News"
4431
+ msgstr "Noutăți"
4432
 
4433
  #: admin.php:2156
4434
  msgid "Premium"
4436
 
4437
  #: admin.php:1616
4438
  msgid "Local archives deleted: %d"
4439
+ msgstr "Arhivele locale care au fost șterse: %d"
4440
 
4441
  #: admin.php:1617
4442
  msgid "Remote archives deleted: %d"
4443
+ msgstr "Arhivele de la distanță care au fost șterse: %d"
4444
 
4445
  #: backup.php:157
4446
  msgid "%s - could not back this entity up; the corresponding directory does not exist (%s)"
4447
+ msgstr "%s - nu s-a putut face o copie de rezervă pentru această entitate; directorul corespunzător nu există (%s)"
4448
 
4449
  #: admin.php:1542
4450
  msgid "Backup set not found"
4451
+ msgstr "Setul copiilor de rezervă nu a fost găsit"
4452
 
4453
  #: class-updraftplus.php:3400
4454
  msgid "Subscribe to the UpdraftPlus blog to get up-to-date news and offers"
4455
+ msgstr "Abonează-te la blogul UpdraftPlus pentru a primi știri și oferte"
4456
 
4457
  #: class-updraftplus.php:3400
4458
  msgid "Blog link"
4459
+ msgstr "Legătură blog"
4460
 
4461
  #: class-updraftplus.php:3400
4462
  msgid "RSS link"
4463
+ msgstr "Legătură RSS"
4464
 
4465
  #: admin.php:558
4466
  msgid "Testing %s Settings..."
4467
+ msgstr "Se testează setările %s..."
4468
 
4469
  #: admin.php:2880
4470
  msgid "Or, you can place them manually into your UpdraftPlus directory (usually wp-content/updraft), e.g. via FTP, and then use the \"rescan\" link above."
4471
+ msgstr "Sau poți le plasezi manual în directorul tău UpdraftPlus (de obicei wp-content/updraft), de exemplu folosind FTP, iar apoi folosește legătura \"rescan\" de mai sus."
4472
 
4473
  #: admin.php:777
4474
  msgid "Notice"
4475
+ msgstr "Anunț"
4476
 
4477
  #: admin.php:777
4478
  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."
4479
+ msgstr "Modulul de depanare Updraftplus este pornit. Pe această pagină, o să vezi anunțurile despre depanare nu numai pentru UpdraftPlus, dar și pentru oricare alt modul instalat. Te rog te asiguri anunțul se referă la UpdraftPlus înainte de a trimite o solicitare pentru suport."
4480
 
4481
  #: backup.php:852
4482
  msgid "Errors encountered:"
4483
+ msgstr "Erori întâlnite:"
4484
 
4485
  #: admin.php:467
4486
  msgid "Rescanning (looking for backups that you have uploaded manually into the internal backup store)..."
4487
+ msgstr "Rescanează (caută copii de rezervă pe care le-ai încărcat manual în depozitul intern)..."
4488
 
4489
  #: admin.php:479
4490
  msgid "Begun looking for this entity"
4491
+ msgstr "A început căutarea pentru această entitate"
4492
 
4493
  #: addons/migrator.php:1088
4494
  msgid "SQL update commands run:"
4560
  #: methods/openstack2.php:127 methods/updraftvault.php:299
4561
  #: udaddons/options.php:145
4562
  msgid "Password"
4563
+ msgstr "Parolă"
4564
 
4565
  #: addons/sftp.php:391
4566
  msgid "Directory path"
4576
 
4577
  #: addons/sftp.php:419 methods/openstack2.php:142
4578
  msgid "username"
4579
+ msgstr "nume utilizator"
4580
 
4581
  #: methods/ftp.php:359 methods/openstack2.php:147
4582
  msgid "password"
4583
+ msgstr "parolă"
4584
 
4585
  #: addons/sftp.php:428
4586
  msgid "Failure: Port must be an integer."
4693
 
4694
  #: methods/ftp.php:320
4695
  msgid "Needs to already exist"
4696
+ msgstr "Trebuie existe deja"
4697
 
4698
  #: methods/ftp.php:351
4699
  msgid "Failure: No server details were given."
4700
+ msgstr "Eroare: Nu s-au furnizat detalii cu privire la server."
4701
 
4702
  #: methods/ftp.php:369
4703
  msgid "Failure: we did not successfully log in with those credentials."
4704
+ msgstr "Eroare: nu ne-am autentificat cu succes cu aceste date de conectare."
4705
 
4706
  #: methods/ftp.php:378
4707
  msgid "Success: we successfully logged in, and confirmed our ability to create a file in the given directory (login type:"
4708
+ msgstr "Succes: ne-am autentificat cu succes și s-a confirmat capacitatea noastră de a crea un fișier în directorul stabilit (tip autentificare:"
4709
 
4710
  #: methods/ftp.php:381
4711
  msgid "Failure: we successfully logged in, but were not able to create a file in the given directory."
4712
+ msgstr "Eroare: ne-am autentificat cu succes, dar nu am putut crea un fișier în directorul stabilit."
4713
 
4714
  #: addons/googlecloud.php:278 addons/sftp.php:43 methods/addon-base.php:56
4715
  #: methods/addon-base.php:97 methods/addon-base.php:128
4718
  #: methods/stream-base.php:145 methods/stream-base.php:180
4719
  #: methods/stream-base.php:245
4720
  msgid "No %s settings were found"
4721
+ msgstr "Nu au fost găsite setări pentru %s"
4722
 
4723
  #: methods/stream-base.php:107 methods/stream-base.php:111
4724
  msgid "Chunk %s: A %s error occurred"
4744
  #: addons/googlecloud.php:666 addons/sftp.php:445 admin.php:3442 admin.php:3477
4745
  #: admin.php:3486 methods/addon-base.php:284 methods/stream-base.php:297
4746
  msgid "Failed"
4747
+ msgstr "A eșuat"
4748
 
4749
  #: methods/addon-base.php:294 methods/stream-base.php:311
4750
  msgid "Failed: We were not able to place a file in that directory - please check your credentials."
4761
  #: addons/copycom.php:387 addons/copycom.php:389 methods/dropbox.php:523
4762
  #: methods/dropbox.php:525
4763
  msgid "you have authenticated your %s account"
4764
+ msgstr "ți-ai autentificat contul %s"
4765
 
4766
  #: addons/copycom.php:398 methods/dropbox.php:528
4767
  msgid "though part of the returned information was not as expected - your mileage may vary"
4768
+ msgstr "deși o parte din informațiile returnate nu au fost cum era de așteptat - distanța parcursă poate varia"
4769
 
4770
  #: addons/copycom.php:406 addons/onedrive.php:527 methods/dropbox.php:532
4771
  msgid "Your %s account name: %s"
4772
+ msgstr "Numele contului tău %s: %s"
4773
 
4774
  #: methods/ftp.php:303
4775
  msgid "Only non-encrypted FTP is supported by regular UpdraftPlus."
4776
+ msgstr "Doar un FTP necriptat este acceptat de UpdraftPlus."
4777
 
4778
  #: methods/ftp.php:303
4779
  msgid "If you want encryption (e.g. you are storing sensitive business data), then an add-on is available."
4780
+ msgstr "Dacă dorești criptarea (de exemplu: vrei stochezi informații confidențiale de afaceri), atunci ai la dispoziție un supliment."
4781
 
4782
  #: methods/s3.php:661
4783
  msgid "%s Error: Failed to download %s. Check your permissions and credentials."
4784
+ msgstr "Eroare %s: Descărcarea %s a eșuat. Verifică-ți permisiunile și datele de conectare."
4785
 
4786
  #: methods/s3.php:507 methods/s3.php:580 methods/s3.php:666
4787
  msgid "%s Error: Failed to access bucket %s. Check your permissions and credentials."
4788
+ msgstr "Eroare %s: Accesarea unității de memorie %s a eșuat. Verifică-ți permisiunile și datele de conectare."
4789
 
4790
  #: methods/s3.php:725
4791
  msgid "Get your access key and secret key <a href=\"%s\">from your %s console</a>, then pick a (globally unique - all %s users) bucket name (letters and numbers) (and optionally a path) to use for storage. This bucket will be created for you if it does not already exist."
4792
+ msgstr "Obține cheia de acces și cheia secretă <a href=\"%s\">din consola ta %s</a>, apoi alege (unic - pentru toți utilizatorii %s) un nume pentru unitatea de memorie (litere și numere) și, opțional, o cale, pentru a o folosi la depozitare. Această unitate de memorie va fi creată dacă nu există deja."
4793
 
4794
  #: methods/s3.php:727
4795
  msgid "If you see errors about SSL certificates, then please go here for help."
4796
+ msgstr "Dacă vezi erori referitoare la certificate SSL, atunci te rog să mergi aici pentru ajutor."
4797
 
4798
  #: methods/s3.php:748
4799
  msgid "%s access key"
4800
+ msgstr "Cheie de acces %s"
4801
 
4802
  #: methods/s3.php:752
4803
  msgid "%s secret key"
4804
+ msgstr "Cheie secretă %s"
4805
 
4806
  #: methods/s3.php:756
4807
  msgid "%s location"
4808
+ msgstr "locație %s"
4809
 
4810
  #: methods/s3.php:757
4811
  msgid "Enter only a bucket name or a bucket and path. Examples: mybucket, mybucket/mypath"
4812
+ msgstr "Introdu doar numele pentru unitatea de memorie sau unitatea de memorie și calea. Exemple: mybucket, mybucket/mypath"
4813
 
4814
  #: methods/s3.php:801
4815
  msgid "API secret"
4817
 
4818
  #: addons/googlecloud.php:78 addons/googlecloud.php:643 methods/s3.php:823
4819
  msgid "Failure: No bucket details were given."
4820
+ msgstr "Eroare: Nu au fost date detalii despre unitatea de memorie."
4821
 
4822
  #: addons/s3-enhanced.php:125 methods/openstack2.php:113 methods/s3.php:843
4823
  msgid "Region"
4825
 
4826
  #: methods/s3.php:874
4827
  msgid "Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name)."
4828
+ msgstr "Eroare: Nu am putut accesa cu succes sau crea o astfel de unitate de memorie. Te rog verifică-ți datele de conectare pentru acces și dacă sunt corecte încearcă un alt nume pentru unitatea de memorie (poate alt utilizator %s a folosit deja acest nume)."
4829
 
4830
  #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4831
  #: methods/s3.php:897
4832
  msgid "Failure"
4833
+ msgstr "Eșec"
4834
 
4835
  #: addons/googlecloud.php:683 addons/googlecloud.php:697 methods/s3.php:885
4836
  #: methods/s3.php:897
4837
  msgid "We successfully accessed the bucket, but the attempt to create a file in it failed."
4838
+ msgstr "Am accesat cu succes unitatea de memorie, dar încercarea de a crea un fișier a eșuat."
4839
 
4840
  #: addons/googlecloud.php:689 methods/s3.php:887
4841
  msgid "We accessed the bucket, and were able to create files within it."
4842
+ msgstr "Am accesat unitatea de memorie și am putut creăm un fișier în ea."
4843
 
4844
  #: methods/s3.php:890
4845
  msgid "The communication with %s was encrypted."
4846
+ msgstr "Comunicarea cu %s a fost criptată."
4847
 
4848
  #: methods/s3.php:892
4849
  msgid "The communication with %s was not encrypted."
4850
+ msgstr "Comunicarea cu %s nu a fost criptată."
4851
 
4852
  #: methods/dropbox.php:107 methods/dropbox.php:115
4853
  msgid "You do not appear to be authenticated with Dropbox"
4854
+ msgstr "Se pare nu ești autentificat în Dropbox"
4855
 
4856
  #: methods/dropbox.php:200 methods/dropbox.php:221 methods/dropbox.php:237
4857
  msgid "error: failed to upload file to %s (see log file for more)"
4858
+ msgstr "eroare: încărcarea fișierului în %s a eșuat (vezi jurnalul fișierului pentru mai multe detalii)"
4859
 
4860
  #: methods/dropbox.php:448
4861
  msgid "Need to use sub-folders?"
4862
+ msgstr "Trebuie folosești sub-dosare?"
4863
 
4864
  #: methods/dropbox.php:448
4865
  msgid "Backups are saved in"
4866
+ msgstr "Copiile de rezervă sunt salvate în"
4867
 
4868
  #: methods/dropbox.php:448
4869
  msgid "If you back up several sites into the same Dropbox and want to organise with sub-folders, then "
4870
+ msgstr "Dacă faci copii de rezervă pentru mai multe situri în același cont Dropbox și vrei le organizezi în sub-dosare, atunci"
4871
 
4872
  #: methods/dropbox.php:448
4873
  msgid "there's an add-on for that."
4874
+ msgstr "există un supliment pentru asta."
4875
 
4876
  #: methods/cloudfiles.php:462
4877
  msgid "US or UK Cloud"
4880
  #: addons/cloudfiles-enhanced.php:236 methods/cloudfiles-new.php:88
4881
  #: methods/cloudfiles.php:465
4882
  msgid "US (default)"
4883
+ msgstr "SUA (implicit)"
4884
 
4885
  #: addons/cloudfiles-enhanced.php:237 methods/cloudfiles-new.php:89
4886
  #: methods/cloudfiles.php:466
4887
  msgid "UK"
4888
+ msgstr "Marea Britanie"
4889
 
4890
  #: methods/cloudfiles.php:482
4891
  msgid "Cloud Files username"
4892
+ msgstr "Nume utilizator Cloud Files"
4893
 
4894
  #: methods/cloudfiles.php:486
4895
  msgid "Cloud Files API key"
4896
+ msgstr "Cheie API pentru Cloud Files"
4897
 
4898
  #: methods/cloudfiles.php:490
4899
  msgid "Cloud Files container"
4901
 
4902
  #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:714
4903
  msgid "UpdraftPlus's %s module <strong>requires</strong> %s. Please do not file any support requests; there is no alternative."
4904
+ msgstr "Extensia %s UpdraftPlus <strong>necesită</strong> %s. Te rog nu completa nicio solicitare pentru suport; nu există nici o alternativă."
4905
 
4906
  #: addons/migrator.php:274 addons/migrator.php:1834 addons/moredatabase.php:70
4907
  #: addons/moredatabase.php:72 addons/moredatabase.php:74 addons/sftp.php:415
4913
  #: methods/openstack2.php:152 methods/openstack2.php:157 methods/s3.php:797
4914
  #: methods/s3.php:801
4915
  msgid "Failure: No %s was given."
4916
+ msgstr "Eroare: nu a fost dat niciun %s."
4917
 
4918
  #: methods/cloudfiles-new.php:142 methods/cloudfiles.php:504 methods/s3.php:797
4919
  msgid "API key"
4923
  #: methods/cloudfiles-new.php:147 methods/cloudfiles.php:509
4924
  #: methods/openstack2.php:121
4925
  msgid "Username"
4926
+ msgstr "Nume utilizator"
4927
 
4928
  #: methods/cloudfiles.php:529 methods/openstack-base.php:336
4929
  msgid "Failure: No container details were given."
4930
+ msgstr "Eșec: Nu au fost date detalii despre container."
4931
 
4932
  #: methods/cloudfiles.php:556
4933
  msgid "Cloud Files error - we accessed the container, but failed to create a file within it"
4934
+ msgstr "Eroare Cloud Files - am accesat containerul, dar crearea unui fișier în el a eșuat"
4935
 
4936
  #: methods/cloudfiles.php:560 methods/openstack-base.php:392
4937
  msgid "We accessed the container, and were able to create files within it."
4938
+ msgstr "Am accesat containerul și am putut creăm fișiere în el."
4939
 
4940
  #: methods/email.php:43
4941
  msgid "WordPress Backup"
4942
+ msgstr "Copie de rezervă WordPress"
4943
 
4944
  #: methods/email.php:69
4945
  msgid "Note:"
4946
+ msgstr "Notă:"
4947
 
4948
  #: methods/s3.php:346
4949
  msgid "%s upload: getting uploadID for multipart upload failed - see log file for more details"
4950
+ msgstr "încărcare %s: obținerea ID-ului de încărcare pentru încărcări din mai multe părți a eșuat - vezi jurnalul fișierului pentru mai multe detalii"
4951
 
4952
  #: methods/s3.php:369
4953
  msgid "%s error: file %s was shortened unexpectedly"
4954
+ msgstr "Eroare %s: fișierul %s a fost trunchiat în mod neașteptat"
4955
 
4956
  #: methods/s3.php:379
4957
  msgid "%s chunk %s: upload failed"
4958
+ msgstr "%s chunk %s: încărcarea a eșuat"
4959
 
4960
  #: methods/s3.php:395
4961
  msgid "%s upload (%s): re-assembly failed (see log for more details)"
4962
+ msgstr "%s încărcare (%s): reasamblarea a eșuat (vezi fișierul de autentificare pentru mai multe detalii)"
4963
 
4964
  #: methods/s3.php:399
4965
  msgid "%s re-assembly error (%s): (see log file for more)"
4966
+ msgstr "%s eroare reasamblare (%s): (vezi jurnalul fișierului pentru mai multe detalii)"
4967
 
4968
  #: methods/s3.php:411
4969
  msgid "%s Error: Failed to create bucket %s. Check your permissions and credentials."
4970
+ msgstr "Eroare %s: Crearea unității de memorie %s a eșuat. Verifică-ți permisiunile și datele de conectare."
4971
 
4972
  #: addons/googlecloud.php:826 methods/googledrive.php:904
4973
  msgid "For longer help, including screenshots, follow this link. The description below is sufficient for more expert users."
4974
+ msgstr "Pentru mai mult ajutor, inclusiv capturi de ecran, urmărește această legătură. Descrierea de mai jos este suficientă pentru mulți utilizatori experimentați."
4975
 
4976
  #: addons/googlecloud.php:828 methods/googledrive.php:906
4977
  msgid "Select 'Web Application' as the application type."
4978
+ msgstr "Selectează \"Aplicație web\" ca tip de aplicație"
4979
 
4980
  #: addons/googlecloud.php:828 methods/googledrive.php:906
4981
  msgid "You must add the following as the authorised redirect URI (under \"More Options\") when asked"
4982
+ msgstr "Trebuie să adaugi următoarele pentru ca redirecționarea autorizată URI (în \"Mai multe opțiuni\") se facă."
4983
 
4984
  #: addons/googlecloud.php:839 addons/onedrive.php:698
4985
  #: methods/googledrive.php:916
4988
 
4989
  #: addons/googlecloud.php:842 methods/googledrive.php:917
4990
  msgid "If Google later shows you the message \"invalid_client\", then you did not enter a valid client ID here."
4991
+ msgstr "Dacă Google afișează mesajul \"invalid_client\", înseamnă nu ai introdus un ID client valid."
4992
 
4993
  #: addons/googlecloud.php:847 addons/onedrive.php:702
4994
  #: methods/googledrive.php:920
4995
  msgid "Client Secret"
4996
+ msgstr "Secret client"
4997
 
4998
  #: addons/googlecloud.php:896 methods/googledrive.php:950
4999
  msgid "Authenticate with Google"
5001
 
5002
  #: addons/googlecloud.php:907 methods/googledrive.php:961
5003
  msgid "<strong>After</strong> you have saved your settings (by clicking 'Save Changes' below), then come back here once and click this link to complete authentication with Google."
5004
+ msgstr "<strong>După</strong> salvarea setărilor (dând clic pe 'Salvează modificările' de mai jos), întoarce-te aici și urmărește această legătură pentru a finaliza autentificarea cu Google."
5005
 
5006
  #: addons/cloudfiles-enhanced.php:88 addons/cloudfiles-enhanced.php:125
5007
  #: addons/cloudfiles-enhanced.php:130 methods/cloudfiles.php:539
5008
  #: methods/cloudfiles.php:542 methods/cloudfiles.php:545
5009
  msgid "Cloud Files authentication failed"
5010
+ msgstr "Autentificarea Cloud Files a eșuat"
5011
 
5012
  #: methods/cloudfiles.php:103 methods/cloudfiles.php:344
5013
  #: methods/cloudfiles.php:363
5014
  msgid "Cloud Files error - failed to create and access the container"
5015
+ msgstr "Eroare Cloud Files - crearea și accesarea containerului a eșuat "
5016
 
5017
  #: addons/googlecloud.php:161 addons/googlecloud.php:166
5018
  #: class-updraftplus.php:792 methods/cloudfiles.php:130
5019
  #: methods/googledrive.php:741 methods/googledrive.php:746
5020
  msgid "%s Error: Failed to open local file"
5021
+ msgstr "Eroare %s: Deschiderea fișierului local a eșuat"
5022
 
5023
  #: addons/sftp.php:135 addons/sftp.php:144 methods/cloudfiles.php:147
5024
  #: methods/cloudfiles.php:189 methods/openstack-base.php:65
5025
  #: methods/openstack-base.php:190 methods/s3.php:314 methods/s3.php:326
5026
  #: methods/s3.php:327
5027
  msgid "%s Error: Failed to upload"
5028
+ msgstr "%s Eroare: Încărcarea a eșuat"
5029
 
5030
  #: methods/cloudfiles.php:218
5031
  msgid "Cloud Files error - failed to upload file"
5032
+ msgstr "Eroare Cloud Files - încărcarea fișierului a eșuat "
5033
 
5034
  #: class-updraftplus.php:867 methods/cloudfiles.php:392
5035
  #: methods/stream-base.php:261
5036
  msgid "Error opening local file: Failed to download"
5037
+ msgstr "Eroare la deschiderea fișierului local: Descărcarea a eșuat"
5038
 
5039
  #: methods/openstack-base.php:319
5040
  msgid "Error downloading remote file: Failed to download ("
5045
  #: methods/openstack-base.php:440 methods/s3.php:762
5046
  #: methods/stream-base.php:219
5047
  msgid "Test %s Settings"
5048
+ msgstr "Testare setări %s"
5049
 
5050
  #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5051
  msgid "Get your API key <a href=\"https://mycloud.rackspace.com/\">from your Rackspace Cloud console</a> (read instructions <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">here</a>), then pick a container name to use for storage. This container will be created for you if it does not already exist."
5052
+ msgstr "Obține cheia API <a href=\"https://mycloud.rackspace.com/\">din consola Rackspace Cloud </a> (citește instrucțiunile <a href=\"http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-1-generating-your-api-key\">aici</a>), apoi alege-ți un nume pentru containerul ce îl folosești pentru depozitare. Acest container va fi creat pentru tine dacă nu există deja."
5053
 
5054
  #: methods/cloudfiles-new.php:81 methods/cloudfiles.php:458
5055
  #: methods/openstack2.php:94
5056
  msgid "Also, you should read this important FAQ."
5057
+ msgstr "De asemenea, ar trebui citești aceste Întrebări frecvente importante."
5058
 
5059
  #: methods/googledrive.php:410
5060
  msgid "Account full: your %s account has only %d bytes left, but the file to be uploaded is %d bytes"
5061
+ msgstr "Contul este plin: contul tău %s mai are doar %d biți, iar fișierul pentru încărcare are %d biți"
5062
 
5063
  #: methods/googledrive.php:381 methods/googledrive.php:427
5064
  #: methods/googledrive.php:433 methods/googledrive.php:435
5065
  #: methods/stream-base.php:196
5066
  msgid "Failed to upload to %s"
5067
+ msgstr "Încărcare în %s a eșuat "
5068
 
5069
  #: addons/googlecloud.php:445 addons/googlecloud.php:446
5070
  #: addons/googlecloud.php:709 addons/onedrive.php:439
5077
  #: methods/openstack-base.php:419 methods/s3.php:686
5078
  #: methods/stream-base.php:212
5079
  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."
5080
+ msgstr "%s este o alegere foarte bună deoarece UpdraftPlus acceptă încărcările în bloc - indiferent cât de mare este situl tău, UpdraftPlus poate încărca puțin câte puțin, fără fii deranjat de întreruperi."
5081
 
5082
  #: restorer.php:1729
5083
  msgid "will restore as:"
5084
+ msgstr "se va restaura ca:"
5085
 
5086
  #: addons/migrator.php:1121 restorer.php:1957
5087
  msgid "the database query being run was:"
5088
+ msgstr "Interogarea bazei de date rulate a fost:"
5089
 
5090
  #: restorer.php:1791
5091
  msgid "Finished: lines processed: %d in %.2f seconds"
5093
 
5094
  #: restorer.php:2055 restorer.php:2130
5095
  msgid "Table prefix has changed: changing %s table field(s) accordingly:"
5096
+ msgstr "Prefixul tabelului a fost schimbat: modifică câmpul (câmpurile) tabelului %s în consecință:"
5097
 
5098
  #: addons/migrator.php:1734 admin.php:3445 admin.php:3479 admin.php:3483
5099
  #: admin.php:4865 admin.php:4879 restorer.php:2061 restorer.php:2166
5102
 
5103
  #: includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php:105
5104
  msgid "You need to re-authenticate with %s, as your existing credentials are not working."
5105
+ msgstr "Va trebui te reautentifici cu %s, întrucât actualele date de conectare nu funcționează."
5106
 
5107
  #: methods/viaaddon-base.php:29 methods/viaaddon-base.php:43
5108
  #: methods/viaaddon-base.php:52 methods/viaaddon-base.php:62
5109
  msgid "You do not have the UpdraftPlus %s add-on installed - get it from %s"
5110
+ msgstr "Nu ai instalat suplimentul UpdraftPlus %s - îl poți obține din %s"
5111
 
5112
  #: methods/viaaddon-base.php:72
5113
  msgid "%s support is available as an add-on"
5114
+ msgstr "Suportul pentru %s este disponibil ca un supliment"
5115
 
5116
  #: methods/viaaddon-base.php:72
5117
  msgid "follow this link to get it"
5118
+ msgstr "urmează acestă legătură pentru a-l obține"
5119
 
5120
  #: addons/googlecloud.php:382 methods/googledrive.php:297
5121
  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."
5122
  msgstr ""
5123
+ "Nu s-a primit un garant împrospătat de la Google. De obicei, acest lucru înseamnă ai introdus eronat răspunsul secret sau încă nu te-ai reautentificat (mai jos) de la corectare. \n"
5124
+ "Verifică din nou, apoi urmează legătura pentru o nouă reautentificare. Dacă tot nu funcționează, folosește modul expert pentru a-ți șterge toate setările, crează un nou ID/secret Google și încearcă din nou."
5125
 
5126
  #: addons/googlecloud.php:390 methods/googledrive.php:305
5127
  msgid "Authorization failed"
5128
+ msgstr "Autorizarea a eșuat"
5129
 
5130
  #: addons/copycom.php:413 addons/onedrive.php:520 methods/dropbox.php:545
5131
  #: methods/googledrive.php:332
5132
  msgid "Your %s quota usage: %s %% used, %s available"
5133
+ msgstr "Spațiul tău de stocare %s: %s %% folosit, %s disponibil"
5134
 
5135
  #: addons/googlecloud.php:579 addons/googlecloud.php:689
5136
  #: addons/onedrive.php:554 addons/sftp.php:478 methods/addon-base.php:291
5143
  #: addons/googlecloud.php:579 addons/onedrive.php:554
5144
  #: methods/googledrive.php:358
5145
  msgid "you have authenticated your %s account."
5146
+ msgstr "Te-ai autentificat în contul tău %s."
5147
 
5148
  #: methods/googledrive.php:507
5149
  msgid "Have not yet obtained an access token from Google - you need to authorise or re-authorise your connection to Google Drive."
5150
+ msgstr "Nu ai obținut încă garantul de acces de la Google - trebuie să-ți autorizezi sau reautorizezi conexiunea la Google Drive."
5151
 
5152
  #: restorer.php:429
5153
  msgid "wp-config.php from backup: restoring (as per user's request)"
5155
 
5156
  #: restorer.php:1330
5157
  msgid "Warning: PHP safe_mode is active on your server. Timeouts are much more likely. If these happen, then you will need to manually restore the file via phpMyAdmin or another method."
5158
+ msgstr "Avertizare: PHP safe_mode este activ pe serverul tău. Sunt foarte probabile niște întreruperi. Dacă se întâmplă asta, atunci va trebui restaurezi manual fișierul folosind phpMyAdmin sau altă metodă."
5159
 
5160
  #: restorer.php:1353
5161
  msgid "Failed to find database file"
5162
+ msgstr "Găsirea bazei de date a eșuat"
5163
 
5164
  #: restorer.php:1374
5165
  msgid "Failed to open database file"
5166
+ msgstr "Deschiderea bazei de date a eșuat"
5167
 
5168
  #: addons/migrator.php:586 restorer.php:1379
5169
  msgid "Database access: Direct MySQL access is not available, so we are falling back to wpdb (this will be considerably slower)"
5172
  #: addons/reporting.php:65 addons/reporting.php:147 backup.php:919
5173
  #: class-updraftplus.php:3517
5174
  msgid "Backup of:"
5175
+ msgstr "Copia de rezervă a:"
5176
 
5177
  #: restorer.php:1540 restorer.php:1633 restorer.php:1659
5178
  msgid "Old table prefix:"
5179
+ msgstr "Prefixul tabelului vechi:"
5180
 
5181
  #: admin.php:4876
5182
  msgid "Archive is expected to be size:"
5183
+ msgstr "Dimensiunea estimează a arhivei:"
5184
 
5185
  #: admin.php:4884
5186
  msgid "The backup records do not contain information about the proper size of this file."
5187
+ msgstr "Înregistrările copiei de rezervă nu conțin informații despre dimensiunea proprie a acestui fișier."
5188
 
5189
  #: admin.php:4982
5190
  msgid "Error message"
5191
+ msgstr "Mesaj pentru eroare"
5192
 
5193
  #: admin.php:4887 admin.php:4888
5194
  msgid "Could not find one of the files for restoration"
5195
+ msgstr "Nu am putut găsi unul dintre fișiere pentru restaurare"
5196
 
5197
  #: restorer.php:90
5198
  msgid "UpdraftPlus is not able to directly restore this kind of entity. It must be restored manually."
5199
+ msgstr "UpdraftPlus nu este capabil să restabilească în mod direct acest tip de entitate. Acesta trebuie restaurată manual."
5200
 
5201
  #: restorer.php:91
5202
  msgid "Backup file not available."
5203
+ msgstr "Fișierul pentru copia de rezervă nu este disponibil."
5204
 
5205
  #: restorer.php:92
5206
  msgid "Copying this entity failed."
5207
+ msgstr "Copierea acestei entități a eșuat."
5208
 
5209
  #: restorer.php:93
5210
  msgid "Unpacking backup..."
5211
+ msgstr "Dezarhivare copie de rezervă... "
5212
 
5213
  #: restorer.php:94
5214
  msgid "Decrypting database (can take a while)..."
5215
+ msgstr "Decriptare bază de date (poate dura ceva timp)..."
5216
 
5217
  #: restorer.php:95
5218
  msgid "Database successfully decrypted."
5219
+ msgstr "Baza de date s-a decriptat cu succes."
5220
 
5221
  #: restorer.php:98
5222
  msgid "Restoring the database (on a large site this can take a long time - if it times out (which can happen if your web hosting company has configured your hosting to limit resources) then you should use a different method, such as phpMyAdmin)..."
5223
+ msgstr "Restaurare bază de date (pentru un sit mare acest lucru poate dura mult timp - dacă apar întreruperi, care se pot întâmpla dacă compania ta web de găzduire a fost configurată pentru resurse limitate, atunci ar trebui folosești o metodă diferită, cum ar fi phpMyAdmin)..."
5224
 
5225
  #: restorer.php:99
5226
  msgid "Cleaning up rubbish..."
5227
+ msgstr "Curățare gunoi..."
5228
 
5229
  #: restorer.php:101
5230
  msgid "Could not delete old directory."
5231
+ msgstr "Nu s-a putut șterge directorul vechi."
5232
 
5233
  #: restorer.php:104
5234
  msgid "Failed to delete working directory after restoring."
5235
+ msgstr "Ștergerea directorului de lucru după restaurare a eșuat."
5236
 
5237
  #: restorer.php:301
5238
  msgid "Failed to create a temporary directory"
5239
+ msgstr "Crearea unui director temporar a eșuat"
5240
 
5241
  #: restorer.php:316
5242
  msgid "Failed to write out the decrypted database to the filesystem"
5243
+ msgstr "Transcrierea bazei de date decriptate în sistemul de fișiere a eșuat"
5244
 
5245
  #: restorer.php:424
5246
  msgid "wp-config.php from backup: will restore as wp-config-backup.php"
5248
 
5249
  #: admin.php:3998
5250
  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."
5251
+ msgstr "Alegând această opțiune, vei micșora nivelul de securitate prin stopare folosirii SSL de către UpdraftPlus pentru autentificare și criptarea traficului, acolo unde este posibil. Reține unii furnizori de stocare în nor nu permit acest lucru (de exemplu Dropbox), așa aceste setări nu vor funcționa cu astfel de furnizori."
5252
 
5253
  #: admin.php:4021
5254
  msgid "Save Changes"
5255
+ msgstr "Salvează modificările"
5256
 
5257
  #: methods/cloudfiles.php:448 methods/openstack-base.php:429 methods/s3.php:714
5258
  msgid "Your web server's PHP installation does not included a required module (%s). Please contact your web hosting provider's support."
5259
+ msgstr "Instalarea PHP de pe serverul tău web nu include o extensie necesară (%s). Te rog contactezi furnizorul tău de găzduire web pentru suport."
5260
 
5261
  #: admin.php:4144
5262
  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)."
5263
+ msgstr "Instalarea PHP/Curl de pe serverul tău web nu acceptă accesul https. Comunicațiile cu %s vor fi necriptate. Cere-i furnizorului tău de găzduire web instaleze Curl/SSL în scopul de a obține capacitatea de criptare (printr-un supliment)."
5264
 
5265
  #: admin.php:4146
5266
  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."
5267
+ msgstr "Instalarea PHP/Curl de pe serverul tău web nu acceptă accesul https. Nu putem accesa %s fără acest tip de acces. Te rog vezi suportul furnizorului tău de găzduire web. %s <strong> necesită</strong> Curl+https. Te rog nu trimite nicio solicitare în acest sens; nu există nicio alternativă."
5268
 
5269
  #: admin.php:4149
5270
  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."
5271
+ msgstr "Vești bune: comunicarea sitului tău cu %s poate fi criptată. Dacă vezi orice erori referitoare la criptare, uită-te în \"Setări experimentate\" pentru mai mult ajutor."
5272
 
5273
  #: admin.php:4621
5274
  msgid "Delete this backup set"
5275
+ msgstr "Șterge acest set de copii de rezervă"
5276
 
5277
  #: admin.php:4528
5278
  msgid "Press here to download"
5279
+ msgstr "Apasă aici pentru a descărca"
5280
 
5281
  #: admin.php:4612
5282
  msgid "After pressing this button, you will be given the option to choose which components you wish to restore"
5283
+ msgstr "După ce apeși acest buton, ai posibilitatea de a alege componentele pe care vrei le restaurezi"
5284
 
5285
  #: admin.php:4663
5286
  msgid "This backup does not exist in the backup history - restoration aborted. Timestamp:"
5287
+ msgstr "Această copie de rezervă nu există în istoricul copiilor de rezervă - restaurare eșuată. Marcaj de timp:"
5288
 
5289
  #: admin.php:4711
5290
  msgid "UpdraftPlus Restoration: Progress"
5291
+ msgstr "Restaurare UpdraftPlus: în desfășurare"
5292
 
5293
  #: admin.php:4757
5294
  msgid "ABORT: Could not find the information on which entities to restore."
5295
+ msgstr "ANULEAZĂ: Nu s-au putut găsi informațiile pentru entitățile de restaurat."
5296
 
5297
  #: admin.php:4758
5298
  msgid "If making a request for support, please include this information:"
5299
+ msgstr "Dacă trimiți o solicitare pentru suport, te rog include această informație:"
5300
 
5301
  #: admin.php:3992
5302
  msgid "Do not verify SSL certificates"
5304
 
5305
  #: admin.php:3993
5306
  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."
5307
+ msgstr "Alegând această opțiune, vei micșora nivelul de securitate prin stoparea verificării de către UpdraftPlus a identității siturilor criptate cu care se conectează (de exemplu: Dropbox, Google Drive). Înseamnă UpdraftPlus ca folosi SSL doar pentru criptarea traficului, nu și pentru autentificare."
5308
 
5309
  #: admin.php:3993
5310
  msgid "Note that not all cloud backup methods are necessarily using SSL authentication."
5311
+ msgstr "Reține nu toate metodele de realizare a copiei de rezervă în nor folosesc autentificarea SSL."
5312
 
5313
  #: admin.php:3997
5314
  msgid "Disable SSL entirely where possible"
5315
+ msgstr "Dezactivează complet SSL acolo unde este posibil"
5316
 
5317
  #: admin.php:3942
5318
  msgid "Expert settings"
5319
+ msgstr "Setări experimentate"
5320
 
5321
  #: admin.php:3943
5322
  msgid "Show expert settings"
5323
+ msgstr "Arată setările experimentate"
5324
 
5325
  #: admin.php:3943
5326
  msgid "click this to show some further options; don't bother with this unless you have a problem or are curious."
5327
+ msgstr "clic aici pentru a arăta mai multe opțiuni; nu te deranja faci acest lucru decât dacă ai o problemă sau ești curios."
5328
 
5329
  #: admin.php:3963
5330
  msgid "Delete local backup"
5331
+ msgstr "Șterge copia de rezervă locală"
5332
 
5333
  #: admin.php:3968
5334
  msgid "Backup directory"
5335
+ msgstr "Director copie de rezervă"
5336
 
5337
  #: admin.php:3650
5338
  msgid "Backup directory specified is writable, which is good."
5339
+ msgstr "Directorul specificat al copiei de rezervă este editabil, un lucru bun."
5340
 
5341
  #: admin.php:3658
5342
  msgid "Click here to attempt to create the directory and set the permissions"
5343
+ msgstr "Clic aici pentru a încerca creezi directorul și pentru a seta permisiunile"
5344
 
5345
  #: admin.php:3658
5346
  msgid "or, to reset this option"
5347
+ msgstr "sau, pentru a reseta această opțiune"
5348
 
5349
  #: admin.php:3658
5350
  msgid "click here"
5351
+ msgstr "clic aici"
5352
 
5353
  #: admin.php:3658
5354
  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."
5355
+ msgstr "Dacă nu a avut succes, verifică permisiunile de pe serverul tău sau schimbă directorul cu un alt director, care este editabil pe serverul tău web."
5356
 
5357
  #: admin.php:3987
5358
  msgid "Use the server's SSL certificates"
5359
+ msgstr "Folosește certificatele SSL ale serverului"
5360
 
5361
  #: admin.php:3988
5362
  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."
5363
+ msgstr "Implicit, UpdraftPlus folosește propriile certificate SSL pentru a verifica identitatea siturilor de la distanță (de exemplu: pentru a se asigura este conectat cu siturile reale Dropbox, Amazon S3, etc. și nu cu un atacator). Noi păstram aceste certificate mereu actualizate. Totuși, dacă vei primi o eroare SSL, atunci alegerea acestei opțiuni (care determină UpdraftPlus folosească certificatele serverului tău web) te-ar putea ajuta."
5364
 
5365
  #: admin.php:3915 udaddons/options.php:143
5366
  msgid "Email"
5372
 
5373
  #: admin.php:3855
5374
  msgid "Manually decrypt a database backup file"
5375
+ msgstr "Decriptare manuală a fișierului copiei de rezervă a bazei de date"
5376
 
5377
  #: admin.php:3770
5378
  msgid "Choose your remote storage"
5379
+ msgstr "Alege-ți depozitul la distanță"
5380
 
5381
  #: addons/reporting.php:201 admin.php:4289
5382
  msgid "None"
5383
+ msgstr "Niciunul"
5384
 
5385
  #: admin.php:511
5386
  msgid "Cancel"
5387
+ msgstr "Anulare"
5388
 
5389
  #: admin.php:495
5390
  msgid "Requesting start of backup..."
5391
+ msgstr "Solicitare de începere a unei copii de rezervă..."
5392
 
5393
  #: admin.php:3938
5394
  msgid "Advanced / Debugging Settings"
5395
+ msgstr "Setări avansate / Depanare"
5396
 
5397
  #: admin.php:3953
5398
  msgid "Debug mode"
5400
 
5401
  #: admin.php:3826
5402
  msgid "The above directories are everything, except for WordPress core itself which you can download afresh from WordPress.org."
5403
+ msgstr "Directorii de mai sus sunt totul, cu excepția WordPress în sine, care poate fi descărcat din nou de la WordPress.org."
5404
 
5405
  #: admin.php:3641
5406
  msgid "Daily"
5408
 
5409
  #: admin.php:3642
5410
  msgid "Weekly"
5411
+ msgstr "Săptămânal"
5412
 
5413
  #: admin.php:3643
5414
  msgid "Fortnightly"
5415
+ msgstr "La două săptămâni"
5416
 
5417
  #: admin.php:3644
5418
  msgid "Monthly"
5420
 
5421
  #: admin.php:3754
5422
  msgid "To fix the time at which a backup should take place,"
5423
+ msgstr "Pentru a fixa momentul în care o copie de rezervă ar trebui făcută,"
5424
 
5425
  #: admin.php:3754
5426
  msgid "e.g. if your server is busy at day and you want to run overnight"
5427
+ msgstr "de exemplu: dacă serverul tău este aglomerat în timpul zilei și vrei rulezi peste noapte"
5428
 
5429
  #: admin.php:3823
5430
  msgid "Include in files backup"
5431
+ msgstr "Include în fișierele copiei de rezervă"
5432
 
5433
  #: admin.php:4081
5434
  msgid "Any other directories found inside wp-content"
5435
+ msgstr "Orice alți directori găsiți în wp-content"
5436
 
5437
  #: addons/morefiles.php:260 admin.php:4090
5438
  msgid "Exclude these:"
5439
+ msgstr "Exclude aceste:"
5440
 
5441
  #: admin.php:3143
5442
  msgid "Debug Database Backup"
5443
+ msgstr "Depanare pentru copia de rezervă a bazei de date"
5444
 
5445
  #: admin.php:3143
5446
  msgid "This will cause an immediate DB backup. The page will stall loading until it finishes (ie, unscheduled). The backup may well run out of time; really this button is only helpful for checking that the backup is able to get through the initial stages, or for small WordPress sites.."
5447
+ msgstr "Aceasta va crea imediat o copie de rezervă. Pagina va bloca încărcarea până când se finalizează (de exemplu, neprogramate). Copia de rezervă ar putea dura ceva timp; într-adevăr acest buton este util numai pentru a verifica dacă copia de rezervă poate trece prin etapele inițiale sau pentru siturile WordPress mici."
5448
 
5449
  #: admin.php:3153
5450
  msgid "This will delete all your UpdraftPlus settings - are you sure you want to do this?"
5451
+ msgstr "Se vor șterge toate setările tale UpdraftPlus - ești sigur vrei să faci acest lucru?"
5452
 
5453
  #: admin.php:3380
5454
  msgid "show log"
5457
  #: addons/migrator.php:2204 admin.php:512 admin.php:2921 admin.php:3439
5458
  #: admin.php:3472 admin.php:4621
5459
  msgid "Delete"
5460
+ msgstr "Șterge"
5461
 
5462
  #: admin.php:3523
5463
  msgid "The request to the filesystem to create the directory failed."
5464
+ msgstr "Solicitarea către sistemul de fișiere pentru crearea directorului a eșuat. "
5465
 
5466
  #: admin.php:3537
5467
  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"
5468
+ msgstr "Dosarul a fost creat, dar a trebuit schimbăm permisiunile fișierului la 777 (editabil) pentru a putea scriem în el. Ar trebui verifici împreună cu furnizorul tău de găzduire acest lucru nu va cauza probleme."
5469
 
5470
  #: admin.php:3542
5471
  msgid "The folder exists, but your webserver does not have permission to write to it."
5472
+ msgstr "Dosarul există, dar serverul tău web nu are permisiunea de a scrie în el."
5473
 
5474
  #: admin.php:518 admin.php:3624
5475
  msgid "Download log file"
5476
+ msgstr "Descarcă jurnalul fișierului"
5477
 
5478
  #: admin.php:2497
5479
  msgid "Multisite"
5480
+ msgstr "Multi-sit"
5481
 
5482
  #: admin.php:2501
5483
  msgid "Do you need WordPress Multisite support?"
5484
+ msgstr "Ai nevoie de suport pentru multi-sit WordPress?"
5485
 
5486
  #: admin.php:2501
5487
  msgid "Please check out UpdraftPlus Premium, or the stand-alone Multisite add-on."
5488
+ msgstr "Te rog verifică UpDraftPlus Premium sau suplimentul autonom Multisite."
5489
 
5490
  #: admin.php:3058
5491
  msgid "Web server:"
5493
 
5494
  #: admin.php:3067
5495
  msgid "Peak memory usage"
5496
+ msgstr "Vârf de utilizare a memoriei"
5497
 
5498
  #: admin.php:3068
5499
  msgid "Current memory usage"
5500
+ msgstr "Utilizare memorie curentă"
5501
 
5502
  #: admin.php:3070 admin.php:3071 admin.php:3078 admin.php:3079
5503
  msgid "%s version:"
5509
 
5510
  #: admin.php:3080 admin.php:3086 admin.php:3090
5511
  msgid "No"
5512
+ msgstr "Nu"
5513
 
5514
  #: admin.php:3115
5515
  msgid "Total (uncompressed) on-disk data:"
5516
+ msgstr "Toate datele pe disc (necomprimate):"
5517
 
5518
  #: admin.php:3116
5519
  msgid "N.B. This count is based upon what was, or was not, excluded the last time you saved the options."
5520
+ msgstr "Nota bene: Acest număr se bazează pe ceea ce a fost sau nu a fost, excluzând ultima dată când ai salvat opțiunile."
5521
 
5522
  #: admin.php:3124
5523
  msgid "count"
5524
+ msgstr "număr"
5525
 
5526
  #: admin.php:3138
5527
  msgid "Debug Full Backup"
5528
+ msgstr "Depanare completă pentru copia de rezervă "
5529
 
5530
  #: admin.php:3138
5531
  msgid "This will cause an immediate backup. The page will stall loading until it finishes (ie, unscheduled)."
5532
+ msgstr "Aceasta va crea imediat o copie de rezervă. Pagina va bloca încărcarea până când se finalizează (de exemplu, neprogramate)."
5533
 
5534
  #: admin.php:2879
5535
  msgid "UpdraftPlus - Upload backup files"
5536
+ msgstr "UpdraftPlus - Încarcă fișierele copiei de rezervă"
5537
 
5538
  #: admin.php:478 admin.php:2863
5539
  msgid "calculating..."
5557
 
5558
  #: admin.php:494
5559
  msgid "Download error: the server sent us a response which we did not understand."
5560
+ msgstr "Eroare la descărcare: serverul ne-a trimis un răspuns pe care nu-l înțelegem."
5561
 
5562
  #: admin.php:2931
5563
  msgid "Delete backup set"
5564
+ msgstr "Șterge setul copiilor de rezervă"
5565
 
5566
  #: admin.php:2952
5567
  msgid "Restore backup"
5568
+ msgstr "Restaurare copie de rezervă"
5569
 
5570
  #: admin.php:2953
5571
  msgid "Restore backup from"
5572
+ msgstr "Restaurare copie de rezervă din"
5573
 
5574
  #: admin.php:2965
5575
  msgid "Restoring will replace this site's themes, plugins, uploads, database and/or other content directories (according to what is contained in the backup set, and your selection)."
5576
+ msgstr "Restaurarea va înlocui temele acestui sit, modulele, încărcările, baza de date și/sau alți directori de conținut (în funcție de ceea ce conține setul copiei de rezervă și selecția ta)."
5577
 
5578
  #: admin.php:2965
5579
  msgid "Choose the components to restore"
5580
+ msgstr "Alege componentele pentru restaurare"
5581
 
5582
  #: admin.php:2977
5583
  msgid "Your web server has PHP's so-called safe_mode active."
5584
+ msgstr "În serverul tău web este activ așa-zisul PHP safe_mode."
5585
 
5586
  #: admin.php:2990
5587
  msgid "The following entity cannot be restored automatically: \"%s\"."
5588
+ msgstr "Următoarea entitate nu poate fi restaurată automat: \"%s\"."
5589
 
5590
  #: admin.php:2990
5591
  msgid "You will need to restore it manually."
5592
+ msgstr "Va trebui s-o restaurezi manual."
5593
 
5594
  #: addons/morefiles.php:63 admin.php:2997
5595
  msgid "%s restoration options:"
5596
+ msgstr "Opțiuni restaurare %s:"
5597
 
5598
  #: admin.php:3005
5599
  msgid "You can search and replace your database (for migrating a website to a new location/URL) with the Migrator add-on - follow this link for more information"
5600
+ msgstr "Poți căuta și înlocuiești baza ta de date (pentru migrarea unui sit web la o nouă locație/URL) cu suplimentul Migrator - urmărește această legătură pentru mai multe informații"
5601
 
5602
  #: admin.php:3016
5603
  msgid "Do read this helpful article of useful things to know before restoring."
5604
+ msgstr "Înaintea restaurării, citește acest articol ajutător cu lucruri utile și necesare."
5605
 
5606
  #: admin.php:2486
5607
  msgid "Perform a one-time backup"
5608
+ msgstr "Efectuează o copie de rezervă o singură dată"
5609
 
5610
  #: admin.php:330 admin.php:510 admin.php:2431
5611
  msgid "Backup Now"
5612
+ msgstr " copia de rezervă acum"
5613
 
5614
  #: addons/migrator.php:223 admin.php:517 admin.php:2434 admin.php:4612
5615
  msgid "Restore"
5618
  #: addons/autobackup.php:278 addons/autobackup.php:372 admin.php:2786
5619
  #: admin.php:2791
5620
  msgid "Last log message"
5621
+ msgstr "Mesaj pentru ultimul jurnal"
5622
 
5623
  #: admin.php:2787 admin.php:2793 central/bootstrap.php:164
5624
  msgid "(Nothing yet logged)"
5625
+ msgstr "(Nimeni nu este încă autentificat)"
5626
 
5627
  #: admin.php:2828
5628
  msgid "Download most recently modified log file"
5629
+ msgstr "Descarcă jurnalul fișierului modificat recent"
5630
 
5631
  #: admin.php:2866
5632
  msgid "More tasks:"
5633
+ msgstr "Mai multe sarcini:"
5634
 
5635
  #: admin.php:2872
5636
  msgid "Opera web browser"
5637
+ msgstr "Navigatorul web Opera"
5638
 
5639
  #: admin.php:2872
5640
  msgid "If you are using this, then turn Turbo/Road mode off."
5641
+ msgstr "Dacă folosești acest lucru, atunci oprește modul Turbo/Road."
5642
 
5643
  #: addons/google-enhanced.php:72 methods/googledrive.php:146
5644
  #: methods/googledrive.php:358 methods/googledrive.php:381
5653
 
5654
  #: admin.php:2863
5655
  msgid "Web-server disk space in use by UpdraftPlus"
5656
+ msgstr "Spațiul de pe discul serverului web pe care-l folosește UpdraftPlus"
5657
 
5658
  #: admin.php:2863
5659
  msgid "refresh"
5660
+ msgstr "împrospătare"
5661
 
5662
  #: admin.php:2161
5663
  msgid "Lead developer's homepage"
5664
+ msgstr "Conduce la prima pagină a dezvoltatorului"
5665
 
5666
  #: admin.php:2162
5667
  msgid "Version"
5668
+ msgstr "Versiune"
5669
 
5670
  #: admin.php:2339
5671
  msgid "Your backup has been restored."
5672
+ msgstr "Copia ta de rezervă a fost restaurată."
5673
 
5674
  #: admin.php:2358
5675
  msgid "Current limit is:"
5676
+ msgstr "Limita curentă este de:"
5677
 
5678
  #: admin.php:497 admin.php:3170
5679
  msgid "Delete Old Directories"
5680
+ msgstr "Șterge directorii vechi"
5681
 
5682
  #: admin.php:2416
5683
  msgid "JavaScript warning"
5684
+ msgstr "Avertizare JavaScript"
5685
 
5686
  #: admin.php:2417
5687
  msgid "This admin interface uses JavaScript heavily. You either need to activate it within your browser, or to use a JavaScript-capable browser."
5688
+ msgstr "Aceasta interfață de administrare folosește foarte mult JavaScript. Ori trebuie activată în navigator, ori folosește un alt navigator care acceptă JavaScript."
5689
 
5690
  #: admin.php:125 admin.php:146 admin.php:153
5691
  msgid "Nothing currently scheduled"
5692
+ msgstr "Nu este nimic programat în prezent"
5693
 
5694
  #: admin.php:135
5695
  msgid "At the same time as the files backup"
5696
+ msgstr "În același timp cu fișierele copiei de rezervă"
5697
 
5698
  #: admin.php:2452
5699
  msgid "Next scheduled backups"
5700
+ msgstr "Programe următoare pentru copii de rezervă"
5701
 
5702
  #: admin.php:155
5703
  msgid "Files"
5704
+ msgstr "Fișiere"
5705
 
5706
  #: addons/migrator.php:1738 addons/moredatabase.php:235
5707
  #: addons/reporting.php:216 admin.php:159 admin.php:1277 admin.php:2995
5708
  #: admin.php:2997 admin.php:4264 admin.php:4456 admin.php:4965
5709
  msgid "Database"
5710
+ msgstr "Bază de date"
5711
 
5712
  #: admin.php:773
5713
  msgid "Your website is hosted using the %s web server."
5714
+ msgstr "Situl tău găzduit folosește un server web %s."
5715
 
5716
  #: admin.php:773
5717
  msgid "Please consult this FAQ if you have problems backing up."
5718
+ msgstr "Te rog consultă aceste Întrebări frecvente dacă întâmpini probleme în crearea copiei de rezervă."
5719
 
5720
  #: admin.php:788 admin.php:792 admin.php:796 admin.php:800 admin.php:808
5721
  #: admin.php:812
5722
  msgid "Click here to authenticate your %s account (you will not be able to back up to %s without it)."
5723
+ msgstr "Clic aici pentru autentificare în contul tău %s (nu vei putea face copii de rezervă în %s fără a fi autentificat)"
5724
 
5725
  #: admin.php:560
5726
  msgid "Nothing yet logged"
5727
+ msgstr "Nimeni nu este autentificat încă"
5728
 
5729
  #: admin.php:1790
5730
  msgid "OK. You should soon see activity in the \"Last log message\" field below."
5731
+ msgstr "OK. Vei vedea în curând activitate în câmpul \"Mesaj pentru ultimul jurnal\" de mai jos."
5732
 
5733
  #: admin.php:1706
5734
  msgid "Job deleted"
5735
+ msgstr "Lucrarea s-a eliminat"
5736
 
5737
  #: admin.php:1714
5738
  msgid "Could not find that job - perhaps it has already finished?"
5739
+ msgstr "Nu am putut găsi acest lucru - poate s-a finalizat deja?"
5740
 
5741
  #: admin.php:488 admin.php:1686 admin.php:4863 class-updraftplus.php:867
5742
  #: methods/addon-base.php:75 methods/addon-base.php:80
5748
 
5749
  #: admin.php:1895
5750
  msgid "Download failed"
5751
+ msgstr "Descărcarea a eșuat"
5752
 
5753
  #: admin.php:489 admin.php:1914
5754
  msgid "File ready."
5755
+ msgstr "Fișier gata."
5756
 
5757
  #: admin.php:1924
5758
  msgid "Download in progress"
5759
+ msgstr "Descărcarea este în derulare"
5760
 
5761
  #: admin.php:1927
5762
  msgid "No local copy present."
5763
+ msgstr "Nicio copie locală nu este actuală."
5764
 
5765
  #: admin.php:2046
5766
  msgid "Bad filename format - this does not look like a file created by UpdraftPlus"
5767
+ msgstr "Format nume fișier eronat - acesta nu pare a fi un fișier creat de UpdraftPlus"
5768
 
5769
  #: admin.php:2136
5770
  msgid "Bad filename format - this does not look like an encrypted database file created by UpdraftPlus"
5771
+ msgstr "Format nume fișier eronat - aceasta nu pare a fi o bază de date criptată creată de UpdraftPlus"
5772
 
5773
  #: admin.php:2221
5774
  msgid "Restore successful!"
5777
  #: admin.php:2231 admin.php:2240 admin.php:2249 admin.php:2291 admin.php:3413
5778
  #: admin.php:4329
5779
  msgid "Actions"
5780
+ msgstr "Acțiuni"
5781
 
5782
  #: addons/migrator.php:275 addons/migrator.php:287 admin.php:2231
5783
  #: admin.php:2240 admin.php:2249 admin.php:2291 admin.php:3413
5784
  msgid "Return to UpdraftPlus Configuration"
5785
+ msgstr "Întoarce-te la configurarea UpdraftPlus"
5786
 
5787
  #: admin.php:3406
5788
  msgid "Remove old directories"
5789
+ msgstr "Elimină directorii vechi"
5790
 
5791
  #: admin.php:3409
5792
  msgid "Old directories successfully removed."
5793
+ msgstr "Directorii vechi au fost eliminați cu succes."
5794
 
5795
  #: admin.php:3411
5796
  msgid "Old directory removal failed for some reason. You may want to do this manually."
5797
+ msgstr "Eliminarea directorilor vechi a eșuat din diverse motive. Poate vrei faci acest lucru manual."
5798
 
5799
  #: admin.php:2282
5800
  msgid "Backup directory could not be created"
5801
+ msgstr "Directorul copiei de rezervă nu a putut fi creat"
5802
 
5803
  #: admin.php:2289
5804
  msgid "Backup directory successfully created."
5805
+ msgstr "Directorul copiei de rezervă s-a creat cu succes."
5806
 
5807
  #: admin.php:2312
5808
  msgid "Your settings have been wiped."
5809
+ msgstr "Setările tale au fost șterse."
5810
 
5811
  #: class-updraftplus.php:3386
5812
  msgid "Please help UpdraftPlus by giving a positive review at wordpress.org"
5813
+ msgstr "Te rog ajuți UpdraftPlus acordându-ne o recenzie pozitivă la wordpress.org."
5814
 
5815
  #: class-updraftplus.php:3393
5816
  msgid "Need even more features and support? Check out UpdraftPlus Premium"
5817
+ msgstr "Ai nevoie de mai multe funcționalități și mai mult suport? Încercă UpdraftPlus Premium"
5818
 
5819
  #: class-updraftplus.php:3403
5820
  msgid "Check out UpdraftPlus.Com for help, add-ons and support"
5821
+ msgstr "Încearcă UpdraftPlus.Com pentru ajutor, suplimente și suport"
5822
 
5823
  #: backup.php:1942
5824
  msgid "Infinite recursion: consult your log for more information"
5825
+ msgstr "Recursivitate infinită: consultă-ți jurnalul pentru mai multe informații"
5826
 
5827
  #: backup.php:229
5828
  msgid "Could not create %s zip. Consult the log file for more information."
5829
+ msgstr "Nu s-a putut crea %s zip. Consultă jurnalul fișierului pentru mai multe informații."
5830
 
5831
  #: admin.php:655
5832
  msgid "Allowed Files"
5833
+ msgstr "Fișiere permise"
5834
 
5835
  #: admin.php:346 admin.php:697 admin.php:2394
5836
  msgid "Settings"
5837
+ msgstr "Setări"
5838
 
5839
  #: admin.php:701
5840
  msgid "Add-Ons / Pro Support"
5841
+ msgstr "Suplimente / Suport Pro"
5842
 
5843
  #: admin.php:757 admin.php:761 admin.php:765 admin.php:769 admin.php:773
5844
  #: admin.php:782 admin.php:2858 admin.php:4137 admin.php:4144 admin.php:4146
5846
  #: methods/openstack-base.php:429 methods/s3.php:710 methods/s3.php:714
5847
  #: methods/updraftvault.php:239 udaddons/updraftplus-addons.php:208
5848
  msgid "Warning"
5849
+ msgstr "Avertizare"
5850
 
5851
  #: admin.php:765
5852
  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."
5853
+ msgstr "Ai mai puțin de %s spațiu disponibil pe discul care UpdraftPlus este configurat să-l folosească pentru face copii de rezervă. UpdraftPlus ar putea ajunge nu aibă spațiu suficient. Contactează operatorul serverului (de exemplu: furnizorul tău de găzduire web) pentru a rezolva această problemă."
5854
 
5855
  #: admin.php:769
5856
  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."
5857
+ msgstr "UpdraftPlus nu acceptă în mod formal versiuni WordPress mai vechi decât %s. E posibil funcționeze, dar, dacă nu o face, trebuie ai în vedere nu beneficiezi de suport până când actualizezi WordPress."
5858
 
5859
  #: backup.php:920
5860
  msgid "WordPress backup is complete"
5861
+ msgstr "Copia de rezervă WordPress este completă"
5862
 
5863
  #: admin.php:1964 backup.php:1116 restorer.php:168
5864
  msgid "Backup directory (%s) is not writable, or does not exist."
5865
+ msgstr "Directorul copiei de rezervă (%s) nu este editabil sau nu există."
5866
 
5867
  #: class-updraftplus.php:2858
5868
  msgid "Could not read the directory"
5869
+ msgstr "Nu s-a putut citi directorul"
5870
 
5871
  #: class-updraftplus.php:2881
5872
  msgid "Could not save backup history because we have no backup array. Backup probably failed."
5873
+ msgstr "Istoricul copiilor de rezervă nu s-a putut salva deoarece nu avem o matrice a copiei de rezervă. Copia de rezervă probabil a eșuat."
5874
 
5875
  #: backup.php:1847
5876
  msgid "Could not open the backup file for writing"
5877
+ msgstr "Nu s-a putut deschide fișierul copiei de rezervă pentru scriere"
5878
 
5879
  #: class-updraftplus.php:3185 class-updraftplus.php:3442 restorer.php:309
5880
  msgid "Decryption failed. The database file is encrypted, but you have no encryption key entered."
5881
+ msgstr "Decriptarea a eșuat. Fișierul bazei de date este criptat, dar nu ai introdus nicio cheie de criptare."
5882
 
5883
  #: class-updraftplus.php:3196 class-updraftplus.php:3459 restorer.php:319
5884
  msgid "Decryption failed. The most likely cause is that you used the wrong key."
5885
+ msgstr "Decriptarea a eșuat. Cauza cea mai probabilă este folosirea unei cheie greșite."
5886
 
5887
  #: class-updraftplus.php:3196
5888
  msgid "The decryption key used:"
5889
+ msgstr "Cheia de decriptare folosită:"
5890
 
5891
  #: addons/azure.php:215 class-updraftplus.php:3278 methods/googledrive.php:823
5892
  msgid "File not found"
5893
+ msgstr "Fișierul nu a fost găsit"
5894
 
5895
  #: class-updraftplus.php:3378
5896
  msgid "Can you translate? Want to improve UpdraftPlus for speakers of your language?"
5897
+ msgstr "Poți traduce? Vrei îmbunătățești UpdraftPlus pentru vorbitorii limbii tale?"
5898
 
5899
  #: class-updraftplus.php:3386
5900
  msgid "Like UpdraftPlus and can spare one minute?"
5901
+ msgstr "Îți place UpdraftPlus și poți aloca un minut?"
5902
 
5903
  #: class-updraftplus.php:1280
5904
  msgid "Themes"
5914
 
5915
  #: class-updraftplus.php:1897
5916
  msgid "Could not create files in the backup directory. Backup aborted - check your UpdraftPlus settings."
5917
+ msgstr "Nu se pot crea fișiere în directorul copiei de rezervă. Copia de rezervă a eșuat - verifică setările UpdraftPlus."
5918
 
5919
  #: addons/moredatabase.php:322
5920
  msgid "Encryption error occurred when encrypting database. Encryption aborted."
5922
 
5923
  #: class-updraftplus.php:2417
5924
  msgid "The backup apparently succeeded and is now complete"
5925
+ msgstr "Copia de rezervă s-a realizat și acum este completă"
5926
 
5927
  #: class-updraftplus.php:2432
5928
  msgid "The backup attempt has finished, apparently unsuccessfully"
5929
+ msgstr "Încercarea copiei de rezervă s-a terminat, aparent fără succes"
5930
 
5931
  #: addons/multisite.php:66 addons/multisite.php:646 options.php:41
5932
  msgid "UpdraftPlus Backups"
5937
  #: class-updraftplus.php:391 class-updraftplus.php:396
5938
  #: class-updraftplus.php:401
5939
  msgid "UpdraftPlus notice:"
5940
+ msgstr "Anunț UpdraftPlus:"
5941
 
5942
  #: admin.php:1849 admin.php:1853 class-updraftplus.php:391
5943
  msgid "The log file could not be read."
5944
+ msgstr "Jurnalul fișierului nu poate fi citit."
5945
 
5946
  #: class-updraftplus.php:396
5947
  msgid "No log files were found."
5948
+ msgstr "Nu s-au găsit jurnale fișiere."
5949
 
5950
  #: class-updraftplus.php:1279
5951
  msgid "Plugins"
5952
+ msgstr "Module"
languages/updraftplus-ru_RU.mo CHANGED
Binary file
languages/updraftplus-ru_RU.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-sl_SI.mo CHANGED
Binary file
languages/updraftplus-sl_SI.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-sv_SE.mo CHANGED
Binary file
languages/updraftplus-sv_SE.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-tl.mo CHANGED
Binary file
languages/updraftplus-tl.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-tr_TR.mo CHANGED
Binary file
languages/updraftplus-tr_TR.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-uk.mo CHANGED
Binary file
languages/updraftplus-uk.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-vi.mo CHANGED
Binary file
languages/updraftplus-vi.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
@@ -1953,7 +1953,7 @@ msgstr "mã API bí mật"
1953
 
1954
  #: addons/copycom.php:550
1955
  msgid "(case-sensitive)"
1956
- msgstr "(phân biệt dạng chữ)\n"
1957
 
1958
  #: addons/copycom.php:551
1959
  msgid "N.B. Copy is case-sensitive."
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
1953
 
1954
  #: addons/copycom.php:550
1955
  msgid "(case-sensitive)"
1956
+ msgstr "(phân biệt dạng chữ)"
1957
 
1958
  #: addons/copycom.php:551
1959
  msgid "N.B. Copy is case-sensitive."
languages/updraftplus-zh_CN.mo CHANGED
Binary file
languages/updraftplus-zh_CN.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
languages/updraftplus-zh_TW.mo CHANGED
Binary file
languages/updraftplus-zh_TW.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/2.0.1\n"
11
  "Project-Id-Version: UpdraftPlus\n"
12
 
13
  #: admin.php:2162
methods/dreamobjects.php CHANGED
@@ -19,11 +19,14 @@ if (!is_array(UpdraftPlus_Options::get_updraft_option('updraft_dreamobjects')) &
19
 
20
  class UpdraftPlus_BackupModule_dreamobjects extends UpdraftPlus_BackupModule_s3 {
21
 
22
- protected function set_region($obj, $region, $bucket_name='') {
 
 
23
  $config = $this->get_config();
 
24
  global $updraftplus;
25
- $updraftplus->log("Set endpoint: ".$config['endpoint']);
26
- $obj->setEndpoint($config['endpoint']);
27
  }
28
 
29
  public function get_credentials() {
@@ -37,12 +40,12 @@ class UpdraftPlus_BackupModule_dreamobjects extends UpdraftPlus_BackupModule_s3
37
  $opts['whoweare'] = 'DreamObjects';
38
  $opts['whoweare_long'] = 'DreamObjects';
39
  $opts['key'] = 'dreamobjects';
40
- $opts['endpoint'] = 'objects.dreamhost.com';
41
  return $opts;
42
  }
43
 
44
  public function config_print() {
45
- $this->config_print_engine('dreamobjects', 'DreamObjects', 'DreamObjects', 'DreamObjects', 'https://panel.dreamhost.com/index.cgi?tree=storage.dreamhostobjects', '<a href="http://dreamhost.com/cloud/dreamobjects/"><img alt="DreamObjects" src="'.UPDRAFTPLUS_URL.'/images/dreamobjects_logo-horiz-2013.png"></a>');
46
  }
47
 
48
  public function credentials_test($posted_settings) {
@@ -50,4 +53,3 @@ class UpdraftPlus_BackupModule_dreamobjects extends UpdraftPlus_BackupModule_s3
50
  }
51
 
52
  }
53
- ?>
19
 
20
  class UpdraftPlus_BackupModule_dreamobjects extends UpdraftPlus_BackupModule_s3 {
21
 
22
+ private $dreamobjects_endpoints = array('objects-us-west-1.dream.io');
23
+
24
+ protected function set_region($obj, $region = '', $bucket_name = '') {
25
  $config = $this->get_config();
26
+ $endpoint = ($region != '' && $region != 'n/a') ? $region : $config['endpoint'];
27
  global $updraftplus;
28
+ if ($updraftplus->backup_time) $updraftplus->log("Set endpoint: $endpoint");
29
+ $obj->setEndpoint($endpoint);
30
  }
31
 
32
  public function get_credentials() {
40
  $opts['whoweare'] = 'DreamObjects';
41
  $opts['whoweare_long'] = 'DreamObjects';
42
  $opts['key'] = 'dreamobjects';
43
+ if (empty($opts['endpoint'])) $opts['endpoint'] = $this->dreamobjects_endpoints[0];
44
  return $opts;
45
  }
46
 
47
  public function config_print() {
48
+ $this->config_print_engine('dreamobjects', 'DreamObjects', 'DreamObjects', 'DreamObjects', 'https://panel.dreamhost.com/index.cgi?tree=storage.dreamhostobjects', '<a href="https://dreamhost.com/cloud/dreamobjects/"><img alt="DreamObjects" src="'.UPDRAFTPLUS_URL.'/images/dreamobjects_logo-horiz-2013.png"></a>', $this->dreamobjects_endpoints);
49
  }
50
 
51
  public function credentials_test($posted_settings) {
53
  }
54
 
55
  }
 
methods/dropbox.php CHANGED
@@ -93,13 +93,6 @@ class UpdraftPlus_BackupModule_dropbox {
93
  global $updraftplus, $updraftplus_backup;
94
  $updraftplus->log("Dropbox: begin cloud upload");
95
 
96
- // Since 1.10.4, we can use phpseclib
97
- // if (!function_exists('mcrypt_encrypt')) {
98
- // $updraftplus->log('The required mcrypt PHP module is not installed');
99
- // $updraftplus->log(sprintf(__('The required %s PHP module is not installed - ask your web hosting company to enable it', 'updraftplus'), 'mcrypt'), 'error');
100
- // return false;
101
- // }
102
-
103
  $opts = $this->get_opts();
104
 
105
  if (empty($opts['tk_request_token'])) {
@@ -434,10 +427,7 @@ class UpdraftPlus_BackupModule_dropbox {
434
  <?php
435
  // Check requirements.
436
  global $updraftplus_admin;
437
- // Since 1.10.4, we can use phpseclib
438
- // if (!function_exists('mcrypt_encrypt')) {
439
- // $updraftplus_admin->show_double_warning('<strong>'.__('Warning','updraftplus').':</strong> '. sprintf(__('Your web server\'s PHP installation does not included a required module (%s). Please contact your web hosting provider\'s support and ask for them to enable it.', 'updraftplus'), 'mcrypt'));
440
- // }
441
  $updraftplus_admin->curl_check('Dropbox', false, 'dropbox');
442
  ?>
443
  </td>
93
  global $updraftplus, $updraftplus_backup;
94
  $updraftplus->log("Dropbox: begin cloud upload");
95
 
 
 
 
 
 
 
 
96
  $opts = $this->get_opts();
97
 
98
  if (empty($opts['tk_request_token'])) {
427
  <?php
428
  // Check requirements.
429
  global $updraftplus_admin;
430
+
 
 
 
431
  $updraftplus_admin->curl_check('Dropbox', false, 'dropbox');
432
  ?>
433
  </td>
methods/googledrive.php CHANGED
@@ -202,7 +202,7 @@ class UpdraftPlus_BackupModule_googledrive {
202
  foreach ($result->get_error_messages() as $msg) $updraftplus->log("Error message: $msg");
203
  return false;
204
  } else {
205
- $json_values = json_decode( $result['body'], true );
206
  if ( isset( $json_values['access_token'] ) ) {
207
  $updraftplus->log("Google Drive: successfully obtained access token");
208
  return $json_values['access_token'];
@@ -278,7 +278,7 @@ class UpdraftPlus_BackupModule_googledrive {
278
  }
279
  header('Location: '.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&error='.urlencode($add_to_url));
280
  } else {
281
- $json_values = json_decode($result['body'], true);
282
  if (isset($json_values['refresh_token'])) {
283
 
284
  // Save token
202
  foreach ($result->get_error_messages() as $msg) $updraftplus->log("Error message: $msg");
203
  return false;
204
  } else {
205
+ $json_values = json_decode(wp_remote_retrieve_body($result), true);
206
  if ( isset( $json_values['access_token'] ) ) {
207
  $updraftplus->log("Google Drive: successfully obtained access token");
208
  return $json_values['access_token'];
278
  }
279
  header('Location: '.UpdraftPlus_Options::admin_page_url().'?page=updraftplus&error='.urlencode($add_to_url));
280
  } else {
281
+ $json_values = json_decode(wp_remote_retrieve_body($result), true);
282
  if (isset($json_values['refresh_token'])) {
283
 
284
  // Save token
methods/s3.php CHANGED
@@ -124,9 +124,28 @@ class UpdraftPlus_BackupModule_s3 {
124
  try {
125
  $s3 = new $use_s3_class($key, $secret, $use_ssl, $ssl_ca, $endpoint);
126
  } catch (Exception $e) {
127
- $updraftplus->log(sprintf(__('%s Error: Failed to initialise','updraftplus'), 'S3').": ".$e->getMessage().' (line: '.$e->getLine().', file: '.$e->getFile().')');
128
- $updraftplus->log(sprintf(__('%s Error: Failed to initialise','updraftplus'), $key), 'S3');
129
- return new WP_Error('s3_init_failed', sprintf(__('%s Error: Failed to initialise','updraftplus'), 'S3').": ".$e->getMessage().' (line: '.$e->getLine().', file: '.$e->getFile().')');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  }
131
 
132
  if ($proxy->is_enabled()) {
@@ -263,13 +282,10 @@ class UpdraftPlus_BackupModule_s3 {
263
  $bucket_path = $bmatches[2]."/";
264
  }
265
 
266
- // This needs to cope with both original S3 and others (where there is no getBucketLocation())
267
- $region = ($config['key'] == 's3' || $config['key'] == 'updraftvault') ? @$s3->getBucketLocation($bucket_name) : 'n/a';
268
 
269
  // See if we can detect the region (which implies the bucket exists and is ours), or if not create it
270
- if (!empty($region) || @$s3->putBucket($bucket_name, 'private') || ('s3' == $config['key'] && false !== ($s3 = $this->use_dns_bucket_name($s3, $bucket_name)) && false !== @$s3->getBucket($bucket_name, $bucket_path, null, 1))) {
271
- if (empty($region) && ($config['key'] == 's3' || $config['key'] == 'updraftvault')) $region = $s3->getBucketLocation($bucket_name);
272
- if (!empty($region)) $this->set_region($s3, $region, $bucket_name);
273
 
274
  $updraft_dir = trailingslashit($updraftplus->backups_dir_location());
275
 
@@ -405,52 +421,25 @@ class UpdraftPlus_BackupModule_s3 {
405
  }
406
  }
407
  }
 
 
 
 
 
 
408
  return array('s3_object' => $s3, 's3_orig_bucket_name' => $orig_bucket_name);
409
  } else {
410
- $updraftplus->log("$whoweare Error: Failed to create bucket $bucket_name.");
411
- $updraftplus->log(sprintf(__('%s Error: Failed to create bucket %s. Check your permissions and credentials.','updraftplus'),$whoweare, $bucket_name), 'error');
412
  }
413
  }
414
-
415
  public function listfiles($match = 'backup_') {
416
-
417
  $config = $this->get_config();
418
-
419
  return $this->listfiles_with_path($config['path'], $match);
420
-
421
  }
422
 
423
- // The purpose of splitting this into a separate method, is to also allow listing with a different path
424
- public function listfiles_with_path($path, $match = 'backup_') {
425
-
426
- $bucket_name = untrailingslashit($path);
427
- $bucket_path = '';
428
-
429
- if (preg_match("#^([^/]+)/(.*)$#", $bucket_name, $bmatches)) {
430
- $bucket_name = $bmatches[1];
431
- $bucket_path = trailingslashit($bmatches[2]);
432
- }
433
-
434
- $config = $this->get_config();
435
-
436
- global $updraftplus;
437
-
438
- $whoweare = $config['whoweare'];
439
- $whoweare_key = $config['key'];
440
- $sse = empty($config['server_side_encryption']) ? false : true;
441
-
442
- $s3 = $this->getS3(
443
- $config['accesskey'],
444
- $config['secretkey'],
445
- UpdraftPlus_Options::get_updraft_option('updraft_ssl_useservercerts'), UpdraftPlus_Options::get_updraft_option('updraft_ssl_disableverify'),
446
- UpdraftPlus_Options::get_updraft_option('updraft_ssl_nossl'),
447
- null,
448
- $sse
449
- );
450
-
451
- if (is_wp_error($s3)) return $s3;
452
- if (!is_a($s3, 'UpdraftPlus_S3') && !is_a($s3, 'UpdraftPlus_S3_Compat')) return new WP_Error('no_s3object', 'Failed to gain access to '.$config['whoweare']);
453
-
454
  if (!empty($config['is_new_bucket'])) {
455
  if (method_exists($s3, 'waitForBucket')) {
456
  $s3->setExceptions(true);
@@ -495,7 +484,47 @@ class UpdraftPlus_BackupModule_s3 {
495
  }
496
  }
497
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
 
 
499
  $region = ($config['key'] == 'dreamobjects' || $config['key'] == 's3generic') ? 'n/a' : @$s3->getBucketLocation($bucket_name);
500
  if (!empty($region)) {
501
  $this->set_region($s3, $region, $bucket_name);
@@ -507,6 +536,8 @@ class UpdraftPlus_BackupModule_s3 {
507
  return new WP_Error('bucket_not_accessed', sprintf(__('%s Error: Failed to access bucket %s. Check your permissions and credentials.','updraftplus'),$whoweare, $bucket_name));
508
  }
509
  }
 
 
510
  $bucket = $s3->getBucket($bucket_name, $bucket_path.$match);
511
 
512
  if (!is_array($bucket)) return array();
@@ -568,18 +599,13 @@ class UpdraftPlus_BackupModule_s3 {
568
  } else {
569
  $bucket_path = '';
570
  }
 
 
571
 
572
- $region = ($config['key'] == 'dreamobjects' || $config['key'] == 's3generic') ? 'n/a' : @$s3->getBucketLocation($bucket_name);
573
- if (!empty($region)) {
574
- $this->set_region($s3, $region, $bucket_name);
575
- } else {
576
- # Final thing to attempt - see if it was just the location request that failed
577
- $s3 = $this->use_dns_bucket_name($s3, $bucket_name);
578
- if (false === ($gb = @$s3->getBucket($bucket_name, $bucket_path, null, 1))) {
579
- $updraftplus->log("$whoweare Error: Failed to access bucket $bucket_name. Check your permissions and credentials.");
580
- $updraftplus->log(sprintf(__('%s Error: Failed to access bucket %s. Check your permissions and credentials.','updraftplus'),$whoweare, $bucket_name), 'error');
581
- return false;
582
- }
583
  }
584
  }
585
 
@@ -643,24 +669,18 @@ class UpdraftPlus_BackupModule_s3 {
643
  $bucket_path = $bmatches[2]."/";
644
  }
645
 
646
- $region = ($config['key'] == 'dreamobjects' || $config['key'] == 's3generic') ? 'n/a' : @$s3->getBucketLocation($bucket_name);
 
647
 
648
- if (empty($region) && 's3' == $config['key']) {
649
- # Final thing to attempt - see if it was just the location request that failed
650
- $s3 = $this->use_dns_bucket_name($s3, $bucket_name);
651
- if (false !== ($gb = @$s3->getBucket($bucket_name, $bucket_path, null, 1))) {
652
- $keep_going = true;
653
- }
654
- }
655
 
656
- if (!empty($region) || !empty($keep_going)) {
657
- $this->set_region($s3, $region, $bucket_name);
658
  $fullpath = $updraftplus->backups_dir_location().'/'.$file;
659
  if (!$s3->getObject($bucket_name, $bucket_path.$file, $fullpath, true)) {
660
  $updraftplus->log("$whoweare Error: Failed to download $file. Check your permissions and credentials.");
661
  $updraftplus->log(sprintf(__('%s Error: Failed to download %s. Check your permissions and credentials.','updraftplus'),$whoweare, $file), 'error');
662
  return false;
663
  }
 
664
  } else {
665
  $updraftplus->log("$whoweare Error: Failed to access bucket $bucket_name. Check your permissions and credentials.");
666
  $updraftplus->log(sprintf(__('%s Error: Failed to access bucket %s. Check your permissions and credentials.','updraftplus'),$whoweare, $bucket_name), 'error');
@@ -687,12 +707,12 @@ class UpdraftPlus_BackupModule_s3 {
687
  <?php
688
  if ('s3generic' == $key) {
689
  _e('Examples of S3-compatible storage providers:').' ';
690
- echo '<a href="http://www.cloudian.com/">Cloudian</a>, ';
691
  echo '<a href="https://www.mh.connectria.com/rp/order/cloud_storage_index">Connectria</a>, ';
692
- echo '<a href="http://www.constant.com/cloud/storage/">Constant</a>, ';
693
  echo '<a href="http://www.eucalyptus.com/eucalyptus-cloud/iaas">Eucalyptus</a>, ';
694
  echo '<a href="http://cloud.nifty.com/storage/">Nifty</a>, ';
695
- echo '<a href="http://www.ntt.com/cloudn/data/storage.html">Cloudn</a>';
696
  echo ''.__('... and many more!', 'updraftplus').'<br>';
697
  }
698
  ?>
@@ -729,11 +749,25 @@ class UpdraftPlus_BackupModule_s3 {
729
  <a href="https://updraftplus.com/faq-category/amazon-s3/"><?php if ('s3' == $key) echo sprintf(__('Other %s FAQs.', 'updraftplus'), 'S3');?></a>
730
  </p>
731
  </td></tr>
732
- <?php if ($include_endpoint_chooser) { ?>
733
- <tr class="updraftplusmethod <?php echo $key; ?>">
734
- <th><?php echo sprintf(__('%s end-point','updraftplus'), $whoweare_short);?>:</th>
735
- <td><input data-updraft_settings_test="endpoint" type="text" style="width: 360px" id="updraft_<?php echo $key; ?>_endpoint" name="updraft_<?php echo $key; ?>[endpoint]" value="<?php if (!empty($opts['endpoint'])) echo esc_attr($opts['endpoint']); ?>" /></td>
736
- </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
737
  <?php } else { ?>
738
  <input data-updraft_settings_test="endpoint" type="hidden" id="updraft_<?php echo $key; ?>_endpoint" name="updraft_<?php echo $key; ?>_endpoint" value="">
739
  <?php } ?>
@@ -770,25 +804,89 @@ class UpdraftPlus_BackupModule_s3 {
770
  }
771
 
772
  // This is not pretty, but is the simplest way to accomplish the task within the pre-existing structure (no need to re-invent the wheel of code with corner-cases debugged over years)
773
- public function use_dns_bucket_name($s3, $bucket, $echo_errors = false) {
774
- if (is_a($s3, 'UpdraftPlus_S3_Compat')) {
775
- $this->s3_object = null;
776
- $s3 = $this->getS3($this->got_with['key'], $this->got_with['secret'], $this->got_with['useservercerts'], $this->got_with['disableverify'], $this->got_with['nossl'], $bucket.".s3.amazonaws.com", $this->got_with['server_side_encryption']);
777
- if (is_wp_error($s3)) {
778
- if ($echo_errors) {
779
- foreach ($s3->get_error_messages() as $msg) { echo $msg."\n"; }
780
- } else {
781
- global $updraftplus;
782
- $updraftplus->log_wp_error($s3);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
783
  }
784
- return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
785
  }
786
- global $updraftplus;
787
- if (!$echo_errors) $updraftplus->log("Using DNS bucket name: $bucket.s3.amazonaws.com");
788
  } else {
789
- $s3->useDNSBucketName(true, $bucket);
790
  }
791
- return $s3;
 
 
 
 
 
 
 
 
 
 
792
  }
793
 
794
  public function credentials_test_engine($config, $posted_settings) {
@@ -805,11 +903,11 @@ class UpdraftPlus_BackupModule_s3 {
805
  $key = $posted_settings['apikey'];
806
  $secret = stripslashes($posted_settings['apisecret']);
807
  $path = $posted_settings['path'];
808
- $useservercerts = (isset($posted_settings['useservercerts'])) ? absint($posted_settings['useservercerts']) : 0;
809
- $disableverify = (isset($posted_settings['disableverify'])) ? absint($posted_settings['disableverify']) : 0;
810
- $nossl = (isset($posted_settings['nossl'])) ? absint($posted_settings['nossl']) : 0;
811
- $endpoint = (isset($posted_settings['endpoint'])) ? $posted_settings['endpoint'] : '';
812
- $sse = !empty($posted_settings['sse']) ? true : false;
813
 
814
  if (preg_match("#^/*([^/]+)/(.*)$#", $path, $bmatches)) {
815
  $bucket = $bmatches[1];
@@ -833,52 +931,25 @@ class UpdraftPlus_BackupModule_s3 {
833
  return;
834
  }
835
 
836
- $location = ('s3' == $config['key'] || 'updraftvault' == $config['key']) ? @$s3->getBucketLocation($bucket) : 'n/a';
837
-
838
- if ('s3' != $config['key']) $this->set_region($s3, $endpoint, $bucket);
839
 
840
- if ($location && 'n/a' != $location) {
 
841
  if ('s3' == $config['key']) {
842
- $bucket_exists = true;
843
- $bucket_verb = __('Region','updraftplus').": $location: ";
844
- } else {
845
- $bucket_verb = '';
846
- }
847
- }
848
-
849
- # Saw one case where there was read/write permission, but no permission to get the location - yet the bucket did exist. Try to detect that.
850
- # Feb 2015: after we moved to the new SDK which didn't support this, two more reports came in
851
- if (!isset($bucket_exists) && 's3' == $config['key']) {
852
- $s3 = $this->use_dns_bucket_name($s3, $bucket, true);
853
- $gb = @$s3->getBucket($bucket, $path, null, 1);
854
- if ($gb !== false) {
855
- $bucket_exists = true;
856
- $location = '';
857
- $bucket_verb = '';
858
  }
859
  }
860
 
861
- if (!isset($bucket_exists)) {
862
- $s3->setExceptions(true);
863
- try {
864
- $try_to_create_bucket = @$s3->putBucket($bucket, 'private');
865
- } catch (Exception $e) {
866
- $try_to_create_bucket = false;
867
- $s3_error = $e->getMessage();
868
- }
869
- $s3->setExceptions(false);
870
- if ($try_to_create_bucket) {
871
- $bucket_verb = '';
872
- $bucket_exists = true;
873
- } else {
874
- echo sprintf(__("Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name).",'updraftplus'),$whoweare);
875
- if (isset($s3_error)) echo "\n\n".sprintf(__('The error reported by %s was:','updraftplus'), $config['key']).' '.$s3_error;
876
- }
877
- }
878
 
879
- if (isset($bucket_exists)) {
 
880
  $try_file = md5(rand());
881
- if ($config['key'] != 'dreamobjects' && $config['key'] != 's3generic') $this->set_region($s3, $location, $bucket);
882
  $s3->setExceptions(true);
883
  try {
884
  if (!$s3->putObjectString($try_file, $bucket, $path.$try_file)) {
124
  try {
125
  $s3 = new $use_s3_class($key, $secret, $use_ssl, $ssl_ca, $endpoint);
126
  } catch (Exception $e) {
127
+
128
+ // Catch a specific PHP engine bug - see HS#6364
129
+ if ('UpdraftPlus_S3_Compat' == $use_s3_class && is_a($e, 'InvalidArgumentException') && false !== strpos('Invalid signature type: s3', $e->getMessage())) {
130
+ require_once(UPDRAFTPLUS_DIR.'/includes/S3.php');
131
+ $use_s3_class = 'UpdraftPlus_S3';
132
+ $try_again = true;
133
+ } else {
134
+ $updraftplus->log(sprintf(__('%s Error: Failed to initialise','updraftplus'), 'S3').": ".$e->getMessage().' (line: '.$e->getLine().', file: '.$e->getFile().')');
135
+ $updraftplus->log(sprintf(__('%s Error: Failed to initialise','updraftplus'), $key), 'S3');
136
+ return new WP_Error('s3_init_failed', sprintf(__('%s Error: Failed to initialise','updraftplus'), 'S3').": ".$e->getMessage().' (line: '.$e->getLine().', file: '.$e->getFile().')');
137
+ }
138
+ }
139
+
140
+ if (!empty($try_again)) {
141
+ try {
142
+ $s3 = new $use_s3_class($key, $secret, $use_ssl, $ssl_ca, $endpoint);
143
+ } catch (Exception $e) {
144
+ $updraftplus->log(sprintf(__('%s Error: Failed to initialise','updraftplus'), 'S3').": ".$e->getMessage().' (line: '.$e->getLine().', file: '.$e->getFile().')');
145
+ $updraftplus->log(sprintf(__('%s Error: Failed to initialise','updraftplus'), $key), 'S3');
146
+ return new WP_Error('s3_init_failed', sprintf(__('%s Error: Failed to initialise','updraftplus'), 'S3').": ".$e->getMessage().' (line: '.$e->getLine().', file: '.$e->getFile().')');
147
+ }
148
+ $updraftplus->log("S3: Hit a PHP engine bug - had to switch to the older S3 library (which is incompatible with signatureV4, which may cause problems later on if using a region that requires it)");
149
  }
150
 
151
  if ($proxy->is_enabled()) {
282
  $bucket_path = $bmatches[2]."/";
283
  }
284
 
285
+ list($s3, $bucket_exists, $region) = $this->get_bucket_access($s3, $config, $bucket_name, $bucket_path);
 
286
 
287
  // See if we can detect the region (which implies the bucket exists and is ours), or if not create it
288
+ if ($bucket_exists) {
 
 
289
 
290
  $updraft_dir = trailingslashit($updraftplus->backups_dir_location());
291
 
421
  }
422
  }
423
  }
424
+
425
+ // Allows counting of the final quota accurately
426
+ if (method_exists($this, 's3_prune_retained_backups_finished')) {
427
+ add_action('updraftplus_prune_retained_backups_finished', array($this, 's3_prune_retained_backups_finished'));
428
+ }
429
+
430
  return array('s3_object' => $s3, 's3_orig_bucket_name' => $orig_bucket_name);
431
  } else {
432
+ $updraftplus->log("$whoweare Error: Failed to access bucket $bucket_name.");
433
+ $updraftplus->log(sprintf(__('%s Error: Failed to access bucket %s. Check your permissions and credentials.', 'updraftplus'),$whoweare, $bucket_name), 'error');
434
  }
435
  }
436
+
437
  public function listfiles($match = 'backup_') {
 
438
  $config = $this->get_config();
 
439
  return $this->listfiles_with_path($config['path'], $match);
 
440
  }
441
 
442
+ protected function possibly_wait_for_bucket_or_user($config, $s3) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443
  if (!empty($config['is_new_bucket'])) {
444
  if (method_exists($s3, 'waitForBucket')) {
445
  $s3->setExceptions(true);
484
  }
485
  }
486
  }
487
+
488
+ return $s3;
489
+ }
490
+
491
+ // The purpose of splitting this into a separate method, is to also allow listing with a different path
492
+ public function listfiles_with_path($path, $match = 'backup_') {
493
+
494
+ $bucket_name = untrailingslashit($path);
495
+ $bucket_path = '';
496
+
497
+ if (preg_match("#^([^/]+)/(.*)$#", $bucket_name, $bmatches)) {
498
+ $bucket_name = $bmatches[1];
499
+ $bucket_path = trailingslashit($bmatches[2]);
500
+ }
501
+
502
+ $config = $this->get_config();
503
+
504
+ global $updraftplus;
505
+
506
+ $whoweare = $config['whoweare'];
507
+ $whoweare_key = $config['key'];
508
+ $sse = empty($config['server_side_encryption']) ? false : true;
509
+
510
+ $s3 = $this->getS3(
511
+ $config['accesskey'],
512
+ $config['secretkey'],
513
+ UpdraftPlus_Options::get_updraft_option('updraft_ssl_useservercerts'), UpdraftPlus_Options::get_updraft_option('updraft_ssl_disableverify'),
514
+ UpdraftPlus_Options::get_updraft_option('updraft_ssl_nossl'),
515
+ null,
516
+ $sse
517
+ );
518
+
519
+ if (is_wp_error($s3)) return $s3;
520
+ if (!is_a($s3, 'UpdraftPlus_S3') && !is_a($s3, 'UpdraftPlus_S3_Compat')) return new WP_Error('no_s3object', 'Failed to gain access to '.$config['whoweare']);
521
+
522
+ $s3 = $this->possibly_wait_for_bucket_or_user($config, $s3);
523
+ if (!is_a($s3, 'UpdraftPlus_S3') && !is_a($s3, 'UpdraftPlus_S3_Compat')) return $s3;
524
+
525
+ list($s3, $bucket_exists, $region) = $this->get_bucket_access($s3, $config, $bucket_name, $bucket_path);
526
 
527
+ /*
528
  $region = ($config['key'] == 'dreamobjects' || $config['key'] == 's3generic') ? 'n/a' : @$s3->getBucketLocation($bucket_name);
529
  if (!empty($region)) {
530
  $this->set_region($s3, $region, $bucket_name);
536
  return new WP_Error('bucket_not_accessed', sprintf(__('%s Error: Failed to access bucket %s. Check your permissions and credentials.','updraftplus'),$whoweare, $bucket_name));
537
  }
538
  }
539
+ */
540
+
541
  $bucket = $s3->getBucket($bucket_name, $bucket_path.$match);
542
 
543
  if (!is_array($bucket)) return array();
599
  } else {
600
  $bucket_path = '';
601
  }
602
+
603
+ list($s3, $bucket_exists, $region) = $this->get_bucket_access($s3, $config, $bucket_name, $bucket_path);
604
 
605
+ if (!$bucket_exists) {
606
+ $updraftplus->log("$whoweare Error: Failed to access bucket $bucket_name. Check your permissions and credentials.");
607
+ $updraftplus->log(sprintf(__('%s Error: Failed to access bucket %s. Check your permissions and credentials.','updraftplus'),$whoweare, $bucket_name), 'error');
608
+ return false;
 
 
 
 
 
 
 
609
  }
610
  }
611
 
669
  $bucket_path = $bmatches[2]."/";
670
  }
671
 
672
+
673
+ list($s3, $bucket_exists, $region) = $this->get_bucket_access($s3, $config, $bucket_name, $bucket_path);
674
 
675
+ if ($bucket_exists) {
 
 
 
 
 
 
676
 
 
 
677
  $fullpath = $updraftplus->backups_dir_location().'/'.$file;
678
  if (!$s3->getObject($bucket_name, $bucket_path.$file, $fullpath, true)) {
679
  $updraftplus->log("$whoweare Error: Failed to download $file. Check your permissions and credentials.");
680
  $updraftplus->log(sprintf(__('%s Error: Failed to download %s. Check your permissions and credentials.','updraftplus'),$whoweare, $file), 'error');
681
  return false;
682
  }
683
+
684
  } else {
685
  $updraftplus->log("$whoweare Error: Failed to access bucket $bucket_name. Check your permissions and credentials.");
686
  $updraftplus->log(sprintf(__('%s Error: Failed to access bucket %s. Check your permissions and credentials.','updraftplus'),$whoweare, $bucket_name), 'error');
707
  <?php
708
  if ('s3generic' == $key) {
709
  _e('Examples of S3-compatible storage providers:').' ';
710
+ echo '<a href="https://www.cloudian.com">Cloudian</a>, ';
711
  echo '<a href="https://www.mh.connectria.com/rp/order/cloud_storage_index">Connectria</a>, ';
712
+ echo '<a href="https://www.constant.com/cloud/storage/">Constant</a>, ';
713
  echo '<a href="http://www.eucalyptus.com/eucalyptus-cloud/iaas">Eucalyptus</a>, ';
714
  echo '<a href="http://cloud.nifty.com/storage/">Nifty</a>, ';
715
+ echo '<a href="http://www.ntt.com/business/services/cloud/iaas/cloudn.html">Cloudn</a>';
716
  echo ''.__('... and many more!', 'updraftplus').'<br>';
717
  }
718
  ?>
749
  <a href="https://updraftplus.com/faq-category/amazon-s3/"><?php if ('s3' == $key) echo sprintf(__('Other %s FAQs.', 'updraftplus'), 'S3');?></a>
750
  </p>
751
  </td></tr>
752
+ <?php if (!empty($include_endpoint_chooser)) { ?>
753
+ <tr class="updraftplusmethod <?php echo $key; ?>">
754
+ <th><?php echo sprintf(__('%s end-point','updraftplus'), $whoweare_short);?>:</th>
755
+ <td>
756
+ <?php
757
+ if (is_array($include_endpoint_chooser)) {
758
+ ?><select data-updraft_settings_test="endpoint" id="updraft_<?php echo $key; ?>_endpoint" name="updraft_<?php echo $key; ?>[endpoint]" style="width: 360px">
759
+ <?php
760
+ $selected_endpoint = (!empty($opts['endpoint']) && in_array($opts['endpoint'], $include_endpoint_chooser)) ? $opts['endpoint'] : $include_endpoint_chooser[0];
761
+ foreach ($include_endpoint_chooser as $endpoint) {
762
+ ?><option value="<?php esc_attr_e($endpoint);?>" <?php if ($endpoint == $selected_endpoint) echo 'selected="selected"';?>><?php echo htmlspecialchars($endpoint);?></option><?php
763
+ }
764
+ } else {
765
+ echo '</select>';
766
+ ?>
767
+ <input data-updraft_settings_test="endpoint" type="text" style="width: 360px" id="updraft_<?php echo $key; ?>_endpoint" name="updraft_<?php echo $key; ?>[endpoint]" value="<?php if (!empty($opts['endpoint'])) echo esc_attr($opts['endpoint']); ?>" />
768
+ <?php } ?>
769
+ </td>
770
+ </tr>
771
  <?php } else { ?>
772
  <input data-updraft_settings_test="endpoint" type="hidden" id="updraft_<?php echo $key; ?>_endpoint" name="updraft_<?php echo $key; ?>_endpoint" value="">
773
  <?php } ?>
804
  }
805
 
806
  // This is not pretty, but is the simplest way to accomplish the task within the pre-existing structure (no need to re-invent the wheel of code with corner-cases debugged over years)
807
+ public function use_dns_bucket_name($s3, $bucket) {
808
+ return is_a($s3, 'UpdraftPlus_S3_Compat') ? true : $s3->useDNSBucketName(true, $bucket);
809
+ }
810
+
811
+ // This method contains some repeated code. After getting an S3 object, it's time to see if we can access that bucket - either immediately, or via creating it, etc.
812
+ private function get_bucket_access($s3, $config, $bucket, $path, $endpoint = false) {
813
+
814
+ $bucket_exists = false;
815
+
816
+ if ('s3' == $config['key'] || 'updraftvault' == $config['key'] || 'dreamobjects' == $config['key']) {
817
+
818
+ $s3->setExceptions(true);
819
+
820
+ if ('dreamobjects' == $config['key']) $this->set_region($s3, $endpoint);
821
+
822
+ try {
823
+ $region = @$s3->getBucketLocation($bucket);
824
+ // We want to distinguish between an empty region (null), and an exception or missing bucket (false)
825
+ if (empty($region) && $region !== false) $region = null;
826
+ } catch (Exception $e) {
827
+ $region = false;
828
+ }
829
+ $s3->setExceptions(false);
830
+ } else {
831
+ $region = 'n/a';
832
+ }
833
+
834
+ // See if we can detect the region (which implies the bucket exists and is ours), or if not create it
835
+ if (false === $region) {
836
+
837
+ $s3->setExceptions(true);
838
+ try {
839
+ if (@$s3->putBucket($bucket, 'private')) {
840
+ $bucket_exists = true;
841
  }
842
+
843
+ } catch (Exception $e) {
844
+ $this->s3_error = $e->getMessage();
845
+ try {
846
+
847
+ if ('s3' == $config['key'] && $this->use_dns_bucket_name($s3, $bucket) && false !== @$s3->getBucket($bucket, $path, null, 1)) {
848
+ $bucket_exists = true;
849
+ }
850
+ } catch (Exception $e) {
851
+
852
+ // We don't put this in a separate catch block, since we need to be compatible with PHP 5.2 still
853
+ if (is_a($s3, 'UpdraftPlus_S3_Compat') && is_a($e, 'Aws\S3\Exception\S3Exception')) {
854
+ $xml = $e->getResponse()->xml();
855
+
856
+ if (!empty($xml->Code) && 'AuthorizationHeaderMalformed' == $xml->Code && !empty($xml->Region)) {
857
+
858
+ $this->set_region($s3, $xml->Region);
859
+ $s3->setExceptions(false);
860
+
861
+ if (false !== @$s3->getBucket($bucket, $path, null, 1)) {
862
+ $bucket_exists = true;
863
+ }
864
+
865
+ } else {
866
+ $this->s3_error = $e->getMessage();
867
+ }
868
+ } else {
869
+ $this->s3_error = $e->getMessage();
870
+ }
871
+ }
872
+
873
  }
874
+ $s3->setExceptions(false);
875
+
876
  } else {
877
+ $bucket_exists = true;
878
  }
879
+
880
+ if ($bucket_exists) {
881
+ if ('s3' != $config['key'] && 'updraftvault' != $config['key']) {
882
+ $this->set_region($s3, $endpoint, $bucket);
883
+ } elseif (!empty($region)) {
884
+ $this->set_region($s3, $region, $bucket);
885
+ }
886
+ }
887
+
888
+ return array($s3, $bucket_exists, $region);
889
+
890
  }
891
 
892
  public function credentials_test_engine($config, $posted_settings) {
903
  $key = $posted_settings['apikey'];
904
  $secret = stripslashes($posted_settings['apisecret']);
905
  $path = $posted_settings['path'];
906
+ $useservercerts = isset($posted_settings['useservercerts']) ? absint($posted_settings['useservercerts']) : 0;
907
+ $disableverify = isset($posted_settings['disableverify']) ? absint($posted_settings['disableverify']) : 0;
908
+ $nossl = isset($posted_settings['nossl']) ? absint($posted_settings['nossl']) : 0;
909
+ $endpoint = isset($posted_settings['endpoint']) ? $posted_settings['endpoint'] : '';
910
+ $sse = empty($posted_settings['sse']) ? false : true;
911
 
912
  if (preg_match("#^/*([^/]+)/(.*)$#", $path, $bmatches)) {
913
  $bucket = $bmatches[1];
931
  return;
932
  }
933
 
934
+ list($s3, $bucket_exists, $region) = $this->get_bucket_access($s3, $config, $bucket, $path, $endpoint);
 
 
935
 
936
+ $bucket_verb = '';
937
+ if ($region && 'n/a' != $region) {
938
  if ('s3' == $config['key']) {
939
+ $bucket_verb = __('Region', 'updraftplus').": $region: ";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
940
  }
941
  }
942
 
943
+ if (empty($bucket_exists)) {
944
+
945
+ printf(__("Failure: We could not successfully access or create such a bucket. Please check your access credentials, and if those are correct then try another bucket name (as another %s user may already have taken your name).",'updraftplus'), $whoweare);
946
+
947
+ if (!empty($this->s3_error)) echo "\n\n".sprintf(__('The error reported by %s was:', 'updraftplus'), $whoweare).' '.$this->s3_error;
 
 
 
 
 
 
 
 
 
 
 
 
948
 
949
+ } else {
950
+
951
  $try_file = md5(rand());
952
+
953
  $s3->setExceptions(true);
954
  try {
955
  if (!$s3->putObjectString($try_file, $bucket, $path.$try_file)) {
methods/s3generic.php CHANGED
@@ -25,7 +25,7 @@ class UpdraftPlus_BackupModule_s3generic extends UpdraftPlus_BackupModule_s3 {
25
  $config = $this->get_config();
26
  $endpoint = ($region != '' && $region != 'n/a') ? $region : $config['endpoint'];
27
  global $updraftplus;
28
- $updraftplus->log("Set endpoint: $endpoint");
29
  $obj->setEndpoint($endpoint);
30
  }
31
 
25
  $config = $this->get_config();
26
  $endpoint = ($region != '' && $region != 'n/a') ? $region : $config['endpoint'];
27
  global $updraftplus;
28
+ if ($updraftplus->backup_time) $updraftplus->log("Set endpoint: $endpoint");
29
  $obj->setEndpoint($endpoint);
30
  }
31
 
methods/updraftvault.php CHANGED
@@ -109,10 +109,12 @@ class UpdraftPlus_BackupModule_updraftvault extends UpdraftPlus_BackupModule_s3
109
 
110
  $details_retrieved = false;
111
 
112
- if (!is_wp_error($getconfig) && false != $getconfig && is_array($getconfig) && isset($getconfig['body'])) {
113
 
114
- if ($getconfig['response']['code'] >= 200 && $getconfig['response']['code'] < 300) {
115
- $response = json_decode($getconfig['body'], true);
 
 
116
 
117
  if (is_array($response) && isset($response['user_messages']) && is_array($response['user_messages'])) {
118
  foreach ($response['user_messages'] as $message) {
@@ -163,16 +165,18 @@ class UpdraftPlus_BackupModule_updraftvault extends UpdraftPlus_BackupModule_s3
163
  // } elseif ('url_error' == $response['result']) {
164
  // }
165
  } else {
166
- $updraftplus->log("Received response, but it was not in the expected format: ".substr($getconfig['body'], 0, 100).' ...');
167
  }
168
  }
169
  } else {
170
- $updraftplus->log("Unexpected HTTP response code (please try again later): ".$getconfig['response']['code']);
171
  }
172
  } elseif (is_wp_error($getconfig)) {
173
  $updraftplus->log_wp_error($getconfig);
174
  } else {
175
- $updraftplus->log("HTTP failure: wp_remote_post returned a result that was not understood (".gettype($getconfig).")");
 
 
176
  }
177
 
178
  if (!$details_retrieved) {
@@ -180,13 +184,13 @@ class UpdraftPlus_BackupModule_updraftvault extends UpdraftPlus_BackupModule_s3
180
  if (!empty($opts['last_config']) && is_array($opts['last_config'])) {
181
  $last_config = $opts['last_config'];
182
  if (!empty($last_config['time']) && is_numeric($last_config['time']) && $last_config['time'] > time() - 86400*15) {
183
- $updraftplus->log("UpdraftPlus Vault: failed to retrieve access details from updraftplus.com: will attempt to use most recently stored configuration");
184
  if (!empty($last_config['accesskey'])) $config['accesskey'] = $last_config['accesskey'];
185
  if (!empty($last_config['secretkey'])) $config['secretkey'] = $last_config['secretkey'];
186
  if (isset($last_config['path'])) $config['path'] = $last_config['path'];
187
  if (isset($opts['quota'])) $config['quota'] = $opts['quota'];
188
  } else {
189
- $updraftplus->log("UpdraftPlus Vault: failed to retrieve access details from updraftplus.com: no recently stored configuration was found to use instead");
190
  }
191
  }
192
  }
@@ -210,6 +214,7 @@ class UpdraftPlus_BackupModule_updraftvault extends UpdraftPlus_BackupModule_s3
210
  case 'vault_subscription_suspended':
211
  return __("You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible.", 'updraftplus');
212
  // The following shouldn't be a possible response (the server can deal with duplicated sites with the same IDs) - but there's no harm leaving it in for now (Dec 2015)
 
213
  case 'site_duplicated':
214
  return __('No Vault connection was found for this site (has it moved?); please disconnect and re-connect.', 'updraftplus');
215
  break;
@@ -354,17 +359,29 @@ class UpdraftPlus_BackupModule_updraftvault extends UpdraftPlus_BackupModule_s3
354
  $ret = __('Current use:', 'updraftplus').' '.round($quota_used / 1048576, 1).' / '.round($quota / 1048576, 1).' MB';
355
  $ret .= ' ('.sprintf('%.1f', 100*$quota_used / max($quota, 1)).' %)';
356
 
357
- $ret_plain = $ret . ' - '.__('Get more quota', 'updraftplus').': '.$this->get_url('get_more_quota');
358
-
359
  $ret .= ' - <a href="'.esc_attr($this->get_url('get_more_quota')).'">'.__('Get more quota', 'updraftplus').'</a>';
360
 
361
  $ret_dashboard = $ret . ' - <a href="#" id="updraftvault_recountquota">'.__('Refresh current status', 'updraftplus').'</a>';
362
 
363
  set_transient('updraftvault_quota_text', $ret_dashboard, 86400*3);
364
 
365
- do_action('updraft_report_remotestorage_extrainfo', 'updraftvault', "($ret)", $ret_plain);
366
  }
367
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
368
  // Valid formats: text|numeric
369
  // In numeric, returns an integer or false for an error (never returns an error)
370
  protected function s3_get_quota_info($format = 'numeric', $quota = 0) {
@@ -528,14 +545,14 @@ class UpdraftPlus_BackupModule_updraftvault extends UpdraftPlus_BackupModule_s3
528
 
529
  if (is_wp_error($result) || false === $result) return $result;
530
 
531
- $response = json_decode($result['body'], true);
532
 
533
  if (!is_array($response) || !isset($response['mothership']) || !isset($response['loggedin'])){
534
 
535
  if (preg_match('/has banned your IP address \(([\.:0-9a-f]+)\)/', $result['body'], $matches)){
536
  return new WP_Error('banned_ip', sprintf(__("UpdraftPlus.com has responded with 'Access Denied'.", 'updraftplus').'<br>'.__("It appears that your web server's IP Address (%s) is blocked.", 'updraftplus').' '.__('This most likely means that you share a webserver with a hacked website that has been used in previous attacks.', 'updraftplus').'<br> <a href="https://updraftplus.com/unblock-ip-address/" target="_blank">'.__('To remove the block, please go here.', 'updraftplus').'</a> ', $matches[1]));
537
  } else {
538
- return new WP_Error('unknown_response', sprintf(__('UpdraftPlus.Com returned a response which we could not understand (data: %s)', 'updraftplus'), $result['body']));
539
  }
540
  }
541
 
109
 
110
  $details_retrieved = false;
111
 
112
+ if (!is_wp_error($getconfig) && false != $getconfig && isset($getconfig['body'])) {
113
 
114
+ $response_code = wp_remote_retrieve_response_code($getconfig);
115
+
116
+ if ($response_code >= 200 && $response_code < 300) {
117
+ $response = json_decode(wp_remote_retrieve_body($getconfig), true);
118
 
119
  if (is_array($response) && isset($response['user_messages']) && is_array($response['user_messages'])) {
120
  foreach ($response['user_messages'] as $message) {
165
  // } elseif ('url_error' == $response['result']) {
166
  // }
167
  } else {
168
+ $updraftplus->log("Received response, but it was not in the expected format: ".substr(wp_remote_retrieve_body($getconfig), 0, 100).' ...');
169
  }
170
  }
171
  } else {
172
+ $updraftplus->log("Unexpected HTTP response code (please try again later): ".$response_code);
173
  }
174
  } elseif (is_wp_error($getconfig)) {
175
  $updraftplus->log_wp_error($getconfig);
176
  } else {
177
+ if (!isset($getconfig['accesskey'])) {
178
+ $updraftplus->log("Vault: wp_remote_post returned a result that was not understood (".gettype($getconfig).")");
179
+ }
180
  }
181
 
182
  if (!$details_retrieved) {
184
  if (!empty($opts['last_config']) && is_array($opts['last_config'])) {
185
  $last_config = $opts['last_config'];
186
  if (!empty($last_config['time']) && is_numeric($last_config['time']) && $last_config['time'] > time() - 86400*15) {
187
+ if ($updraftplus->backup_time) $updraftplus->log("UpdraftPlus Vault: failed to retrieve access details from updraftplus.com: will attempt to use most recently stored configuration");
188
  if (!empty($last_config['accesskey'])) $config['accesskey'] = $last_config['accesskey'];
189
  if (!empty($last_config['secretkey'])) $config['secretkey'] = $last_config['secretkey'];
190
  if (isset($last_config['path'])) $config['path'] = $last_config['path'];
191
  if (isset($opts['quota'])) $config['quota'] = $opts['quota'];
192
  } else {
193
+ if ($updraftplus->backup_time) $updraftplus->log("UpdraftPlus Vault: failed to retrieve access details from updraftplus.com: no recently stored configuration was found to use instead");
194
  }
195
  }
196
  }
214
  case 'vault_subscription_suspended':
215
  return __("You have an UpdraftPlus Vault subscription that has not been renewed, and the grace period has expired. In a few days' time, your stored data will be permanently removed. If you do not wish this to happen, then you should renew as soon as possible.", 'updraftplus');
216
  // The following shouldn't be a possible response (the server can deal with duplicated sites with the same IDs) - but there's no harm leaving it in for now (Dec 2015)
217
+ // This means that the site is accessing with a different home_url() than it was registered with.
218
  case 'site_duplicated':
219
  return __('No Vault connection was found for this site (has it moved?); please disconnect and re-connect.', 'updraftplus');
220
  break;
359
  $ret = __('Current use:', 'updraftplus').' '.round($quota_used / 1048576, 1).' / '.round($quota / 1048576, 1).' MB';
360
  $ret .= ' ('.sprintf('%.1f', 100*$quota_used / max($quota, 1)).' %)';
361
 
 
 
362
  $ret .= ' - <a href="'.esc_attr($this->get_url('get_more_quota')).'">'.__('Get more quota', 'updraftplus').'</a>';
363
 
364
  $ret_dashboard = $ret . ' - <a href="#" id="updraftvault_recountquota">'.__('Refresh current status', 'updraftplus').'</a>';
365
 
366
  set_transient('updraftvault_quota_text', $ret_dashboard, 86400*3);
367
 
 
368
  }
369
 
370
+ public function s3_prune_retained_backups_finished() {
371
+ $config = $this->get_config();
372
+ $quota = $config['quota'];
373
+ $quota_used = $this->s3_get_quota_info('numeric', $config['quota']);
374
+
375
+ $ret = __('Current use:', 'updraftplus').' '.round($quota_used / 1048576, 1).' / '.round($quota / 1048576, 1).' MB';
376
+ $ret .= ' ('.sprintf('%.1f', 100*$quota_used / max($quota, 1)).' %)';
377
+
378
+ $ret_plain = $ret . ' - '.__('Get more quota', 'updraftplus').': '.$this->get_url('get_more_quota');
379
+
380
+ $ret .= ' - <a href="'.esc_attr($this->get_url('get_more_quota')).'">'.__('Get more quota', 'updraftplus').'</a>';
381
+
382
+ do_action('updraft_report_remotestorage_extrainfo', 'updraftvault', $ret, $ret_plain);
383
+ }
384
+
385
  // Valid formats: text|numeric
386
  // In numeric, returns an integer or false for an error (never returns an error)
387
  protected function s3_get_quota_info($format = 'numeric', $quota = 0) {
545
 
546
  if (is_wp_error($result) || false === $result) return $result;
547
 
548
+ $response = json_decode(wp_remote_retrieve_body($result), true);
549
 
550
  if (!is_array($response) || !isset($response['mothership']) || !isset($response['loggedin'])){
551
 
552
  if (preg_match('/has banned your IP address \(([\.:0-9a-f]+)\)/', $result['body'], $matches)){
553
  return new WP_Error('banned_ip', sprintf(__("UpdraftPlus.com has responded with 'Access Denied'.", 'updraftplus').'<br>'.__("It appears that your web server's IP Address (%s) is blocked.", 'updraftplus').' '.__('This most likely means that you share a webserver with a hacked website that has been used in previous attacks.', 'updraftplus').'<br> <a href="https://updraftplus.com/unblock-ip-address/" target="_blank">'.__('To remove the block, please go here.', 'updraftplus').'</a> ', $matches[1]));
554
  } else {
555
+ return new WP_Error('unknown_response', sprintf(__('UpdraftPlus.Com returned a response which we could not understand (data: %s)', 'updraftplus'), wp_remote_retrieve_body($result)));
556
  }
557
  }
558
 
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
- === UpdraftPlus Backup and Restoration ===
2
  Contributors: Backup with UpdraftPlus, DavidAnderson, DNutbourne
3
- Tags: backup, backups, restore, amazon backup, s3 backup, dropbox backup, google drive backup, rackspace cloud files, rackspace backup, dreamhost, dreamobjects backup, ftp backup, webdav backup, google cloud storage, onedrive, microsoft one drive, microsoft azure, azure, back up, multisite, restoration, sftp backup, ftps, scp backup, migrate, duplicate, copy, mysql backup, database backup, db backups, website backup, wordpress backup, full backup, openstack backup, sicherung
4
  Requires at least: 3.2
5
  Tested up to: 4.5
6
- Stable tag: 1.12.6
7
  Author URI: https://updraftplus.com
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
@@ -125,7 +125,50 @@ Thanks for asking; yes, we've got a few. Check out this profile page - https://p
125
 
126
  The <a href="https://updraftplus.com/news/">UpdraftPlus backup blog</a> is the best place to learn in more detail about any important changes.
127
 
128
- 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.12.6 of the free version correspond to changes made in 2.12.6.x of the paid version.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
 
130
  = 1.12.6 - 30/Apr/2016 =
131
 
@@ -139,1691 +182,7 @@ N.B. Paid versions of UpdraftPlus Backup / Restore have a version number which i
139
  * TWEAK: Update bundled Select2 to version 4.0.2
140
  * TWEAK: Update UDRPC library to version 1.4.3
141
 
142
- = 1.12.5 - 08/Apr/2016 =
143
-
144
- * TWEAK: (Paid versions) - tweak the updater class so that it sends the information that updraftplus.com needs in order to correctly advise about language pack update availability. (If you are continuously seeing the same language pack update offered, then this may continue for a few more hours - please be patient!).
145
- * TWEAK: Detect another case and deal with an HTTP 413 response when sending chunked data on a direct site-to-site migration
146
-
147
- = 1.12.4 - 07/Apr/2016 =
148
-
149
- * FEATURE: Faster uploads to Dropbox, via adapting to network conditions: https://updraftplus.com/faster-dropbox-uploads/
150
- * FEATURE: (Paid versions) Plugin now no longer bundles all translations - instead, WP's mechanism for downloading single translations, as/when needed, is used (reduces on-disk size by 12MB=36%)).
151
- * FIX: Deal with some database encryption phrases with special characters that were incorrectly processed
152
- * FIX: Deal with an error in the advanced retention rules processing code, that could lead to keeping the wrong backup set
153
- * FIX: Fix an unescaped string which could cause a JavaScript notice on the UD settings page in some non-English translations
154
- * FIX: The minimum allowed value for the split size was not previously taking effect when saving settings
155
- * TWEAK: When connection to an updraftplus.com UpdraftCentral dashboard, allow use of the alternative connection method
156
- * TWEAK: Suppress some known deprecation warnings on PHP 7
157
- * TWEAK: Show OpenSSL/Mcrypt info in the log + debug info
158
- * TWEAK: Detect a completed upload to Dropbox masked by a race event from the WP scheduler
159
- * TWEAK: The drop-down in the 'Migrate' dialog will now update on a rescan without needing a page reload
160
- * TWEAK: (Paid versions) Update bundled plugin updater class (Yahnis Elsts) to version 3.0
161
- * TWEAK: Add woocommerce_sessions to the list of tables of transient data
162
- * TWEAK: When saving settings, if invalid input is adjusted, this will be reflected back to the UI without a page load (not on all elements)
163
- * TWEAK: When saving settings, the schedule was written twice on non-multisite installs
164
-
165
- = 1.12.2 - 30/Mar/2016 =
166
-
167
- * TWEAK: When testing Amazon S3 bucket accessibility, slightly improve one of the corner-case checks
168
- * TWEAK: When creating an encryption key for direct Migration, or UpdraftCentral, allow the user to choose their key size (this helps with PHP installs lacking both OpenSSL and GMP, in which case key creation can be really slow)
169
- * TWEAK: Detect another case and deal with an HTTP 413 response when sending chunked data on a direct site-to-site migration
170
-
171
- = 1.12.1 - 24/Mar/2016 =
172
-
173
- * TWEAK: Update the bundled remote communications library - needed for some UpdraftCentral users
174
-
175
- = 1.12.0 - 23/Mar/2016 =
176
-
177
- * FEATURE: Compatible with the forthcoming (very soon!) UpdraftCentral remote control panel
178
- * COMPATIBILITY: Tested + supported on the upcoming WordPress 4.5
179
- * FIX: On some setups, if no remote storage was configured (not recommended), then old backups were not being pruned
180
- * FIX: Make FTP active mode (very rarely seen) work correctly again
181
- * TWEAK: Added a hint to FTP users who appear to be firewalled on only the data channel when attempting to use encrypted FTP
182
- * TWEAK: Improve detection of the WordPress scheduler duplicating periodic events when the server is overloaded
183
- * TWEAK: Simplify main tab layout upon first use
184
- * TWEAK: Add some previously unbundled licence files
185
- * TWEAK: Prevent a couple of PHP notices being logged when running a manual search/replace
186
- * TWEAK: Add a filter to allow more over-riding of pruning
187
-
188
- = 1.11.29 - 27/Feb/2016 =
189
-
190
- * FIX: When saving settings on multisite, some connections to remote storage could drop and need to be re-made
191
- * FIX: Fix an inoperative button in the Clone dialog box
192
- * FIX: Fix an error upon automatic backups (Premium) in 2.11.28
193
- * TWEAK: Updated readme to reflect > 700,000 active sites
194
- * TWEAK: When cloning a site and mod_rewrite is not available, give a warning pre-restore
195
- * TWEAK: Options saving on multisite is now much more efficient (in terms of database requests required)
196
- * TWEAK: Improve the scheduling algorithm in the case of hosts that allow very long runs times, and a network outage on the cloud storage
197
- * TWEAK: When connecting to updraftplus.com to claim a licence (paid versions), use the newer JSON-based protocol
198
- * TWEAK: Many and various internal improvements to structure of the admin page HTML, CSS and JS
199
- * TWEAK: The boxes for adding extra addresses for reporting, and extra DBs, now fade in
200
-
201
- = 1.11.27 - 17/Feb/2016 =
202
-
203
- * FEATURE: Automatic backups can take place before updates commissioned via WordPress.Com/JetPack remote site management (requires a not-yet-released version of JetPack - all current releases are insufficient, so please don't file reports about this yet)
204
- * FIX: Fixed a further logic error in the advanced backup retention options, potentially relevant if you had more than one extra rule, affecting the oldest backups
205
- * TWEAK: Resolve issue on some sites with in-dashboard downloads being interfered with by other site components
206
- * TWEAK: Auto-backups now hook to a newly-added more suitable action, on WP 4.4+ (https://core.trac.wordpress.org/ticket/30441)
207
- * TWEAK: Make WebDAV library not use a language construct that's not supported by HHVM
208
- * TWEAK: Change options in the "Backup Now" dialog as main settings are changed
209
- * TWEAK: Show the file options in the "Backup Now" dialog if/when alerting the user that they've chosen inconsistent options
210
- * TWEAK: When pruning old backups, save the history to the database at least every 10 seconds, to help with sites with slow network communications and short PHP timeouts
211
-
212
- = 1.11.26 - 13/Feb/2016 =
213
-
214
- * TWEAK: Prevent HTTP 500 download errors on some very large file/hosting setups
215
- * TWEAK: A tiny number of users had a badly laid-out settings screen until they refreshed their browser cache. This release prevents that.
216
-
217
- = 1.11.24 - 10/Feb/2016 =
218
-
219
- * FIX: Fixed further logic errors in the advanced backup retention options, potentially relevant if you had more than one extra rule
220
- * TWEAK: Saving of settings is now done over AJAX (i.e. without a page reload)
221
- * TWEAK: In-dashboard downloads now process the HTTP Range: header, allowing resumption of failed downloads via the browser
222
- * TWEAK: Tweak 'Existing Backups' table CSS, to allow more entities per row
223
- * TWEAK: Warn copy.com users of Barracuda ending the service - https://techlib.barracuda.com/CudaDrive/EOL
224
- * TWEAK: Rename the 'hidden' CSS class, to prevent clashes with other plugins/themes which load their CSS code onto UD's page (which they shouldn't be doing)
225
- * TWEAK: Fix newsletter sign-up link
226
- * TWEAK: Log and triple-click summary now mentions the total size of the backup (i.e. total of the compressed backup set)
227
- * TWEAK: Try to detect a very rare case of recoverable database read failure, and schedule a re-try
228
- * TWEAK: Suppress unnecessary warning message when Dropbox account info checking fails
229
- * TWEAK: Attempt to restart a large OneDrive upload in a particular case seen when OneDrive's end seems to get into confusion about state
230
- * TWEAK: Various bits of internal re-factoring to support future improvements
231
-
232
- = 1.11.23 - 26/Jan/2016 =
233
-
234
- * FIX: When migrating a sub-folder based multisite into a non-root install with different relative path to the source multisite (I can't think of any good reasons to do this), the search/replace could leave sub-sites unreachable without manual correction
235
- * FIX: Logic errors in the advanced backup retention options could lead to the oldest backups being deleted prematurely, and some backups not being deleted when they were overdue for deletion
236
- * FIX: Amazon S3 bucket creation wizard (in the S3 enhanced add-on) was not honouring the chosen region for new buckets
237
- * FIX: Upon restoration over an existing site, inactive plugins could remain post-restore (bug introduced in 1.11.20)
238
- * TWEAK: Various internal re-organisations, to improve modularity/re-use of the code
239
- * TWEAK: Internal CSS re-organisation to make future layout changes easier
240
- * TWEAK: The "stop" link in the backup progress indicator now halts the backup asap, instead of at the next scheduled resumption
241
- * TWEAK: Clarify the course of action needed if you attempt a Dropbox backup without Curl
242
- * TWEAK: Add support for the new Asia Pacific (Seoul) region to Amazon S3
243
- * TWEAK: Make the automatic backup option box appear on the updates page for users who can update plugins or themes (not just core - previously it was assumed that these would always go together in the real world, but some managed hosts are now removing the core update capability from the default admin user, whilst leaving the others)
244
- * TWEAK: Change default zip split size to 400Mb on new installs
245
- * TWEAK: Clean up use of composer, to conform to proper usage standards, and update to current version (to avoid causing a problem for plugins using PSR-4 autoloaders)
246
- * TWEAK: Provide direct links to cart when choosing UpdraftPlus Vault storage
247
- * TWEAK: Add debug.log to the default exclusions in wp-content (when people leave debug logging on and forget, it can get huge)
248
- * TWEAK: On multisite, make sure that the site/blogs tables are placed early in the backup (assists with quickly scanning backup info)
249
- * TWEAK: Update to phpseclib 1.0.1
250
- * TWEAK: Prevent a PHP notice when using SCP
251
- * TWEAK: Add new termmeta table to the default list of core tables (which is usually automatically detected)
252
-
253
- = 1.11.21 - 28/Dec/2015 =
254
-
255
- * TWEAK: If there's a problem connecting to UpdraftPlus Vault, in some situations the information on the cause was not easily readable
256
- * TWEAK: Slightly more logging on failed OneDrive operations, to aid problem-solving
257
- * TWEAK: Add wysija_email_user_stat to the list of potentially huge non-critical tables (which can get skipped in an emergency)
258
- * FIX: Package Pear/Exception.php, so that servers without it already can use Microsoft Azure blob storage
259
- * FIX: Prevent PHP fatal error on admin area in some restore scenarios
260
-
261
- = 1.11.20 - 21/Dec/2015 =
262
-
263
- * FEATURE: WordPress multisite backup administrators can now selectively restore data from a chosen site, instead of restoring the entire WordPress install - https://updraftplus.com/selectively-restoring-on-wordpress-multisite/ (requires WP 3.5+, UpdraftPlus Premium)
264
- * FEATURE: Import a WordPress single-site backup into WordPress multisite, as a new site (requires WP 3.5+, UpdraftPlus Premium) - https://updraftplus.com/information-on-importing-a-single-site-wordpress-backup-into-a-wordpress-network-i-e-multisite/
265
- * FIX: Properly encode folder paths with Copy.Com, allowing some previously prevented folder names to work
266
- * FIX: In-dashboard decryption using some decryption keys with URL-encodable characters failed
267
- * FIX: Prevent PHP fatal error on settings page on a buggy old PHP version (5.2.10) when Google Cloud storage add-on not present
268
- * FIX: When using multiple remote storage providers, a race condition could lead to some old backups not being deleted on the storage not uploaded to last
269
- * FIX: Views are now placed after tables in the database backup
270
- * FIX: In-page uploader widget was not working on sub-domain based multisites in some dashboard access scenarios
271
- * FIX: Package Net/URL2 (PEAR), so that servers without it already can use Microsoft Azure blob storage
272
- * TWEAK: Upgrade Microsoft OneDrive API usage to latest version
273
- * TWEAK: Automatic backups are now hooked into the themes page in the network admin on WP multisite installs
274
- * TWEAK: Dashboard messages were not being clearly shown when trying to use UpdraftPlus Vault without PHP Curl available
275
- * TWEAK: Protect against other plugins loading incompatible Google SDKs when Google Cloud is being used
276
- * TWEAK: When trying to use S3, DreamObjects or UpdraftPlus Vault without PHP Curl available, make the cause of the problem more obvious
277
- * TWEAK: When sending data to remote site, keep re-trying on receipt of an HTTP 413 (request entity too large) down to 64Kb (instead of previous 128Kb) - a webserver was seen in the wild configured at this level
278
- * TWEAK: Detect the WordPress scheduler invoking a scheduled backup multiple times, in some cases where the existing semaphore lock wasn't helping (because the backup already finished, or the WP scheduler invoked multiple instances of the same event minutes apart - apparently possible when very heavily overloaded)
279
- * TWEAK: Detect an inconsistent semaphore locking state, and fix it (apparently only possible upon unexpected server crash)
280
- * TWEAK: Provide a button to cancel (not just continue) an interrupted restore
281
- * TWEAK: Work around buggy Ubuntu PHP versions - https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1315888
282
- * TWEAK: Make sure that backup options get passed on with continuation data, when resuming an interrupted restore
283
- * TWEAK: Catch a few untranslated strings (in the decryptor widget for encrypted backups)
284
- * TWEAK: Log more information if a connection to UpdraftPlus Vault fails
285
- * TWEAK: The internal info shown when triple-clicking a backup set's date had messed-up formatting
286
-
287
- = 1.11.18 - 25/Nov/2015 =
288
-
289
- * FEATURE: On hosts with low timeouts that kill restore operations half-way though, provide an obvious button on the dashboard to immediately resume; see: https://updraftplus.com/resuming-interrupted-restores/
290
- * FEATURE: Usability improvements and ability to select file components in the 'Backup Now' dialog - https://updraftplus.com/improvements-to-the-backup-now-dialog-box/
291
- * FEATURE: Full support for Microsoft Azure blob storage (UpdraftPlus Premium)
292
- * FEATURE: Allow all files beginning with a defined prefix to be excluded from the backup by inputting (for example) prefix:someprefix_,prefix:someotherprefix- in your exclusion settings - see: https://updraftplus.com/faqs/how-can-i-exclude-particular-filesdirectories-from-the-backup/
293
- * FEATURE: UpdraftPlus Premium can now restore backups created by "Dropbox Backup" by WPAdm
294
- * COMPATIBILITY: Tested/supported on the forthcoming WordPress 4.4
295
- * TWEAK: Faster zip file creation on PHP 7 with ZipArchive - https://updraftplus.com/faster-zip-file-creation-with-the-php-7-zip-engine/
296
- * TWEAK: Improve settings tab: remove headings, tweak a few wordings, move "remote storage" section further up
297
- * TWEAK: Introduce UPDRAFTPLUS_SET_TIME_LIMIT internal constant
298
- * TWEAK: Quote the table name passed to MySQL in DESCRIBE statement
299
- * TWEAK: Prevent a PHP notice being logged during initial updates connection, and another when restoring third-party databases
300
- * TWEAK: Style previously unstyled button in some auto-backup scenarios
301
- * FIX: A few settings were not being deleted by the "Wipe Settings" button.
302
- * FIX: Importer would not correctly handle third-party backups where the files and zip were both in zip format, separately, and where they were restored together
303
- * FIX: With multi-archive backup sets, files in the top level of a backup of WP core or 'others' were not restored by an in-dashboard restore if they over-wrote an existing non-identical file if they were not in the first archive
304
-
305
- = 1.11.17 - 13/Nov/2015 =
306
-
307
- * FIX: Resolve a conflict with "Simple Calendar" (formerly "Google Calendar Events") since their re-written 3.0 release, when using Google Drive storage
308
-
309
- = 1.11.15 - 28/Oct/2015 =
310
-
311
- * FEATURE: Google Cloud Storage support (UpdraftPlus Premium)
312
- * FIX: Automatic backups of WordPress core prior to WP core upgrade in recent versions were including non-WP core files
313
- * FIX: OwnCloud 8.1's WebDAV server responds differently, breaking UD's communications: restore the ability to back up to OwnCloud WebDAV
314
- * TWEAK: Allow use of the Meta key for selecting multiple backup sets (as well as Control)
315
- * TWEAK: When sending backup data directly site-to-site (when migrating), handle the (very rare) case where a remote server complains of the chunk size after accepting previous chunks of the same size
316
- * TWEAK: Add message to final log line when sending backup set directly to a remote site, reminding the user of what to do next.
317
- * TWEAK: Tweak zip-splitting algorithm, to prevent delayed split on resumption when final file in the last-created zip is gigantic
318
- * TWEAK: By default, exclude directories that appear to be the UpdraftPlus internal directory of a site stored in a sub-directory when backing up WordPress core
319
- * TWEAK: In the debugging output, show more clearly when Curl is not installed
320
- * TWEAK: Remove trailing slashes from what WP returns as the uploads/plugins directories, in case the user has specified a manual directory over-ride and erroneously added a trailing slash
321
- * TWEAK: Replace all remaining http:// links to updraftplus.com with https://
322
- * TWEAK: Raise some of the Google Drive network timeouts
323
- * TWEAK: Suppress an internal PHP notice when pruning backups in some circumstances
324
- * TRANSLATIONS: Various updated translations
325
-
326
- = 1.11.12 - 29/Sep/2015 =
327
-
328
- * FEATURE: More sophisticated rules for retention/deletion (UpdraftPlus Premium) - https://updraftplus.com/more-sophisticated-backup-retention/
329
- * FEATURE: Delete multiple backups at once - https://updraftplus.com/deleting-multiple-backups/
330
- * FEATURE: When choosing a monthly backup, you can now choose the starting date (e.g. choose 17th, not just choose the next week-day, e.g. next Monday)
331
- * FEATURE: You can exclude files with any particular extension by using the constant UPDRAFTPLUS_EXCLUDE_EXTENSIONS (comma-separate different extensions), or by inputting (for example) ext:.zip,ext:.mp4 in your exclusion settings.
332
- * FEATURE: Tested and supported on the forthcoming PHP 7.0
333
- * FIX: SFTP uploads could hang after finishing, if more than one attempt was needed to upload the file
334
- * FIX: Stop causing JavaScript errors on WordPress 3.2 on the plugins page
335
- * TWEAK: UI improvement when choosing multiple storage options - https://updraftplus.com/a-prettier-way-to-choose-remote-storage-options/
336
- * TWEAK: The storage selection drop-down (free version) now has icons to make it easier on the eye
337
- * TWEAK: Use UpdraftPlus Vault logo
338
- * TWEAK: Replace target="_new" with target="_blank" when opening new browser ports, to be more standards-compliant
339
- * TWEAK: Tweak the auto-split algorithm again to catch another case where it would have been better to split in a low-resource situation
340
- * TWEAK: When checking the backup integrity, allow for a multisite to not have a root options table; check sitemeta instead (unlikely, but theoretically possible)
341
- * TWEAK: Raise default Google Drive network timeout from 15 seconds - it's too possible to hit this on a slow uplink (e.g. congested ADSL)
342
- * TWEAK: Upgrade the bundled Google SDK to the most recent release (1.1.4)
343
- * TWEAK: Add previously-untranslated string
344
- * TWEAK: Suppress a PHP notice relating to a constant that needed quoting
345
- * TWEAK: Turn off reporting of PHP deprecation conditions if using phpseclib on PHP 7 (can break communications - phpseclib uses PHP4-style constructors)
346
- * TRANSLATIONS: Various updated translations
347
-
348
- = 1.11.9 - 04/Sep/2015 =
349
-
350
- * FIX: Dropbox introduced an un-documented, un-announced change to their server, which caused new site authentications in UpdraftPlus to no longer work. Now fixed with this release.
351
- * FIX: If backing up multiple extra directories under "more files", if large directories required a resumption, then inclusion of the files multiple times in the backup was possible.
352
- * TWEAK: Tweak the auto-split algorithm to not avoid firing in a particular case (that relies on a sequence of unlikely I/O events, seen on GoDaddy) if there's no resumption scheduled
353
- * TWEAK: Add mysql.sql to the (changeable) default configuration for excludes from wp-content - on WP Engine this is an unreadable file that they create that thus produces a backup warning
354
- * TWEAK: Add a dashboard warning (+ link to documentation) if UD appears to be incompletely installed
355
- * TWEAK: Add UPDRAFTPLUS_WEBDAV_NEVER_CHUNK constant for WebDAV servers that return the wrong error code when chunking fails
356
- * TWEAK: Introduce a UPDRAFTPLUS_REMOTESEND_DEFAULT_CHUNK_BYTES constant allowing the over-riding of the remote-send (Migrator) starting chunk size in wp-config.php (expert users)
357
- * TWEAK: Add CSS classes to dashboard updates notices, so that people can hide them more easily if they wish
358
- * TWEAK: If gzopen() is disabled, then test binzip without trying to use PclZip to verify the results
359
- * TWEAK: Add work-around for PHP bug https://bugs.php.net/bug.php?id=62852
360
-
361
- = 1.11.6 - 22/Aug/2015 =
362
-
363
- * FIX: SFTP was not working in 1.11.4 for some servers (related to phpseclib library update and sources of random data)
364
- * FIX: 1.11.5 release had wrong version number in header for paying users; corrected with fresh release
365
-
366
- = 1.11.4 - 19/Aug/2015 =
367
-
368
- * FIX: Perform previously missing tweak on the database after restoring a multisite backup to an install with a different table prefix, which inhibited the ability to create new users on the main site in a network.
369
- * TWEAK: Remove an inefficiency when examining files to prune from Google Drive, reducing the amount of time needed.
370
- * TWEAK: Show a warning if UpdraftPlus's directory in wp-content/plugins has been manually renamed to include a space, which WordPress does not support
371
- * TWEAK: Skip search/replacing of the 'guid' column in the posts table when migrating (improves performance - and prevents possible re-appearances of blog articles in peoples' feed readers if double-migrating)
372
- * TWEAK: Upgraded the bundled phpseclib Math, Net and File libraries to current versions (1.0 branch)
373
- * TWEAK: Prevent PHP notice in log file when deleting FTP backup from dashboard
374
- * TRANSLATIONS: Updated translations, including Greek
375
-
376
- = 1.11.3 - 13/Aug/2015 =
377
-
378
- * FIX: Fix access to S3 for PHP 5.2 users using buckets in the US-WEST-1 region
379
- * FIX: Fix access to UpdraftPlus Vault for some PHP 5.2 users
380
-
381
- = 1.11.2 - 11/Aug/2015 =
382
-
383
- * TWEAK: Handle the results when someone with no UpdraftPlus Vault quota attempts to connect more gracefully
384
-
385
- = 1.11.1 - 10/Aug/2015 =
386
-
387
- * FEATURE: UpdraftPlus Vault storage - simple to set up storage from your trusted provider: https://updraftplus.com/landing/vault - with 1Gb of free storage for UpdraftPlus Premium customers ( https://updraftplus.com/shop/updraftplus-premium/ ) - and more storage available for anyone to purchase. All other storage options (Dropbox, Google Drive, etc.) remain available, of course!
388
- * FEATURE: S3 enhanced wizard now allows the user to optionally deny the new Amazon Web Services IAM user download and/or delete permissions, for an even more secure setup (at the cost of some convenience - you will need to download/restore/delete S3 backups outside of UpdraftPlus).
389
- * FEATURE: Amazon S3 in UpdraftPlus Premium now supports optional server-side encryption
390
- * FEATURE: An "UpdraftPlus" menu now appears on the WP admin bar, allowing quick access.
391
- * COMPATIBILITY: Tested and compatible with WordPress 4.3
392
- * SPEED: For users' whose backups are created with a zip binary (the default engine, where available), CPU usage + zip creation times have been significantly reduced
393
- * SPEED: For users cloning a website with a large number of users and a changed table prefix, a long and slow series of SQL operations has been replaced with a single fast one
394
- * FIX: The chunk-uploading algorithm for Copy.Com could unnecessarily upload the same chunks multiple times. We have not had any reports, but we believe it's also theoretically possible that a Copy.Com upload could have been corrupted by the same issue, so recommend updating for all Copy.Com users.
395
- * FIX: Fix issue with site cloning whereby on sites with very large numbers of entries in the postmeta table that needed search/replacing, some could be omitted (in the case seen, the table had >600,000 entries)
396
- * FIX: Saving the settings immediately after authenticating with Copy.Com resulted in being redirected to WP's page for all settings.
397
- * FIX: If PHP was killed by the webserver during the process of pruning old backups, then this would not be retried until the next backup, thus potentially leaving more backups than desired around in remote storage in the meanwhile.
398
- * FIX: Log files sometimes failed to mention the MySQL version
399
- * TRANSLATIONS: Various updated translations - thanks to our translators
400
- * TWEAK: When choosing multiple remote storage options (Premium), these are now stacked via tabs, instead of vertically as before
401
- * TWEAK: More help for enormous sites on badly resourced web hosting: part of the enumeration of uploads needing backing up is now cached, allowing more to be time when time limits are short
402
- * TWEAK: Secret credentials (e.g. S3 secret key) in the admin area are now starred (as explained in our long-standing FAQ, this does nothing to protect against malicious WordPress co-admins on your site - https://updraftplus.com/faqs/in-the-administration-section-it-shows-my-amazon-ftp-etc-passwords-without-using-stars-is-this-safe/ - but at least we won't get asked about it so many times!).
403
- * TWEAK: Provide more direct help to the user if they are hosting with Strato and get the 'File Size Limit Exceeded' zip message
404
- * TWEAK: When migrating data directly to a remote site, if the remote site returns a 413 HTTP code ("Request Entity Too Large"), re-try using a smaller chunk size
405
- * TWEAK: Log when about to begin encryption of a database file (allowing the progress to be monitored more easily if there's a problem)
406
- * TWEAK: Detect a further case of an incompatible database (that is from a remote source and uses MySQL features not present on the destination server) and warn before attempting to import.
407
- * TWEAK: Make the error message shown if trying to restore an incompatible database (that is from a remote source and uses MySQL features not present on the destination server) clearer.
408
- * TWEAK: If the user uses "Backup Now" before saving their settings, warn them that the unsaved settings changes won't apply to this backup
409
- * TWEAK: Only warn about very large files found once for each file (rather than once per resumption)
410
- * TWEAK: Add the UPDRAFTPLUS_GOOGLEDRIVE_DISABLEGZIP constant - define it as true to work-around broken HTTP setups (possibly broken outgoing proxy?) when accessing Google Drive
411
- * TWEAK: When claiming an add-on (paid versions), the user's updraftplus.com password will automatically be forgotten once it is no longer needed
412
- * TWEAK: Handle the case of the user typing in an invalid number of backups to retain more elegantly
413
- * TWEAK: No longer require the php-mcrypt module for Dropbox
414
- * TWEAK: Also retry a smaller chunk size if it looks like mod_security unhelpfully replaced a 413 HTTP code with a 200 success message despite the operation actually failing for this reason, or if it looks like sending is just timing out before the PHP timeout (so that we don't get notified).
415
- * TWEAK: Added new CA root certificates to store (http://curl.haxx.se/ca/cacert.pem)
416
- * TWEAK: If the Migrator's direct-send component drops its chunk size, then store this information so that it doesn't have to go through the cycle of finding the best chunk size the next time.
417
- * TWEAK: Added UPDRAFTPLUS_IPV4_ONLY constant to prevent use of IPv6 (currently implemented by Google Drive only)
418
- * TWEAK: Deal with a case where the web host appears to be losing disk I/O near kill time, despite later database writes going through (so, the order of operations was insufficient to guarantee what had been completed). This issue was only cosmetic - backup sets were intact (hence "tweak", not "fix")
419
- * TWEAK: Increase HTTP timeout for remote site-to-site operations
420
- * TWEAK: Don't cause the 'debug' tab to abort rendering if the web host has disabled the gzopen() function (which is an odd/pointless thing to do)
421
- * TWEAK: Resolve PHP 'strict standards' coding internal notice in Google Drive module
422
-
423
- = 1.10.3 - 2015-06-09 =
424
-
425
- * FEATURE: Migration component can now send backup data directly from one WP site to another - https://updraftplus.com/shop/updraftplus-premium/
426
- * FEATURE: Support active mode FTP servers (extremely rare)
427
- * FIX: The error message when choosing no components to restore was empty
428
- * FIX: Restore ability to run on WordPress 3.5 (actually fixed in downloads of 1.10.1 after 2015-05-13)
429
- * FIX: Some automatic pre-upgrade backups were not marked internally as such, leading UD to delete the oldest scheduled backup prematurely backups prematurely
430
- * TWEAK: Reduce HTTP round-trips when checking presence + downloading backup archives in a restore/migrate operation
431
- * TWEAK: Alert the user earlier if they're trying to use a database with a character set not supported by MySQL
432
- * TWEAK: Use separate internal jobs for separate downloads, and thus avoid race conditions when updating job data (symptom: download widgets that don't show current information)
433
- * TWEAK: Add constant UPDRAFTPLUS_SFTP_TIMEOUT allowing users to over-ride (via wp-config.php) the default SFTP timeout (default now: 15 seconds).
434
- * TWEAK: Make Copy.Com filter out non-backups from remote file listings at an earlier stage
435
- * TWEAK: Log more information when a curl error occurs when getting a OneDrive access token
436
- * TWEAK: Code re-arrangement in OneDrive library to deal with sites using the obsolete PHP safe_mode
437
- * TWEAK: Clearer message for users whose access to paid plugin updates has expired (paid versions)
438
- * TWEAK: Improve detection of started pre-upgrade automatic backups in case of webserver misbehaviour
439
- * TWEAK: Fix untranslated message when confirming the wiping of settings
440
- * TWEAK: Replace more non-SSL links to updraftplus.com with SSL links
441
- * TWEAK: Use a POST instead of a GET during one of the restore sub-stages (avoids a false positive on some mod_security setups)
442
- * TWEAK: Improve backup-file-naming routine to reduce the times when no ASCII name can be found (ASCII is preferred as not all cloud storage methods will accept arbitrary characters in filenames)
443
- * TWEAK: Don't keep a log file (unless debug mode is on) for scheduled tasks that result in the result that nothing needs backing up
444
- * TWEAK: Remove cache files from Cherry Framework child themes upon migration (framework misbehaves if cache files are present after URL change)
445
-
446
- = 1.10.1 - 2015-05-12 =
447
-
448
- * FEATURE: Microsoft OneDrive support (Premium version) - full support (including chunked/resumable uploading and downloading)
449
- * FEATURE: Allow prevention of backup of unwanted tables, via a filter; see: https://updraftplus.com/faqs/how-can-i-exclude-a-specific-table-from-the-backup/
450
- * FIX: Restore window would not open if date contained a single quote character in it (which was possible only in some languages)
451
- * FIX: Restore the ability of PHP installations (< 1%) without curl to use Google Drive (broke when Google introduced a new SSL certificate at their end which PHP couldn't handle properly without extra help).
452
- * TWEAK: Add woocommerce_order_items and relevanssi_log to the list of potentially huge tables that won't need search/replacing
453
- * TWEAK: Add link to admin email setting and fix broken link to reporting add-on in free version
454
- * TWEAK: Provide more direct help for paid users getting blocked by the security shield when connecting for updates access
455
- * TWEAK: Small tweak in zip-splitting algorithm if it looks likely that there are insufficient resources with no further resumptions yet scheduled
456
- * TWEAK: "Migrate" dialogue, when the Migrator is installed, now contains a widget to use directly (instead of just directing to other route)
457
- * TWEAK: Ask user to confirm if they navigate away from the settings page with unsaved changes
458
- * TWEAK: Replace some non-SSL links to updraftplus.com with SSL links, and replace all non-SSL readme links
459
- * TWEAK: Add UPDRAFTPLUS_DBSCAN_TIMEOUT constant to control how much time is allowed for scanning database, and make the default vary instead of constant (will help users with absolutely enormous databases).
460
- * TWEAK: Provide clearer guidance to users with a wrong updraftplus.com password entered for updates
461
- * TWEAK: When cloning a site with Jetpack, automatically clear Jetpack invalid connection status
462
- * TWEAK: Prevent some old admin notices from being repeated when saving settings
463
-
464
- = 1.9.64 - 2015-04-20 =
465
-
466
- * FEATURE: (Premium) Added wizard to make it easier to create limited-access AWS users (requires PHP 5.3.3)
467
- * SECURITY: Fix non-persistent back-end XSS vulnerability, reported by Sucuri - https://updraftplus.com/new-security-vulnerability-found-across-significant-numbers-of-wordpress-plugins-including-updraftplus/
468
- * FIX: Fix failure to access some files (e.g. for downloading or deleting) in Google Drive folders that contained >100 UpdraftPlus backup archives (thanks to IanUK for his help)
469
- * TWEAK: Amazon S3 reduced redundancy storage (a feature of UpdraftPlus Premium) now requires use of PHP 5.3.3 or later.
470
- * TWEAK: Various fixes to bring automatic backups code up to date with WP 4.2 release candidate 1 (there were some changes since beta 3, which worked since UD 1.9.62)
471
- * TWEAK: Update to version 2.0 of plugin updater class (https://github.com/YahnisElsts/plugin-update-checker) - necessary on WP 4.2 to prevent shiny updates after the first failing when 3rd party plugins exist, and to suppress a PHP notice on the plugins page.
472
- * TWEAK: Add wp_rp_tags to the list of potentially huge tables that won't need search/replacing
473
- * TRANSLATION: New Slovenian translation, courtesy of Clav Icula
474
-
475
- = 1.9.63 - 2015-04-03 =
476
-
477
- * TWEAK: Revert to previous global SSL CA bundle: it seems Amazon S3 still has servers with 1024-bit SSL certificates
478
-
479
- = 1.9.62 - 2015-04-01 =
480
-
481
- * FEATURE: Automatic backups now integrate with the forthcoming WP 4.2's "shiny plugin updates"
482
- * COMPATIBILITY: Tested and marked compatible with the forthcoming WordPress 4.2 (tested up to beta 3)
483
- * FIX: Fix regression in 1.9.60 for corner-case of S3 users with no permission to check their bucket's location (but permission to write to it).
484
- * TWEAK: Make "settings saved" message disappear after a few seconds, to prevent UI clutter
485
- * TWEAK: Decrease UI clutter in backup time selection
486
- * TWEAK: Update to latest global SSL CA bundle, removing again 1024-bit root CAs (last attempted in 1.9.26, but S3 still had some legacy servers). Modern web browsers have not accepted these for 6 months now. (SSL verification can be turned off in the expert options).
487
- * TWEAK: Defeat WP Download Manager Google Drive plugin's loading of its SDK on all pages (conflicting with UD when UD attempts to backup to Google Drive)
488
- * TWEAK: Detect case of old MySQL on Windows with table prefix that varies by case (and hence WP actually only works by accident) - produce a consistent backup that can be restored on any MySQL server.
489
- * TWEAK: Add dashboard notice with links to more resources, for free users who've been installed >4 weeks (with option to dismiss notice)
490
- * TWEAK: Add itsec_log to the list of tables of non-essential/not-needing-search/replace + likely to be large tables for backup strategy
491
- * TWEAK: Improvement to scheduling algorithm in case where WP's scheduler starts same resumption multiple times - prevent next attempt being delayed longer than necessary
492
- * TWEAK: Add a header to report emails indicating the job ID - helps when debugging
493
- * TWEAK: Detect + show a more helpful error message if blocked by CloudFlare when connecting for updates (paid versions)
494
- * TWEAK: Make it easier to use custom Dropbox API keys, via UPDRAFTPLUS_CUSTOM_DROPBOX_APP constant (define to true in wp-config.php)
495
- * TWEAK: Tweak debug output of webserver information to avoid triggering a (silly) mod_security rule in some setups
496
- * TWEAK: Alert the user if using Amazon S3 if they do not have the PHP XML Writer module available
497
- * TWEAK: Log the fact that local deletions are being skipped, if the user set that option.
498
- * TWEAK: Give timestamp of WPB2D backups without relying upon location of SQL file
499
- * TWEAK: Detect a situation on migration where the uploads path is changed (from a site that began pre-WP 3.5) that was previously undetected
500
- * TRANSLATIONS: French translation updated from less than half to complete, thanks to Erwan François. Various other translations updated (many thanks to all translators).
501
-
502
- = 1.9.60 - 2015-02-24 =
503
-
504
- * FEATURE: When using "Backup Now", and keeping the UpdraftPlus settings page open, a broken WP scheduler will not prevent the backup's progress.
505
- * FEATURE: Amazon's "EU Central 1" Frankfurt region now supported again (Amazon began requiring their new signature method at this location - probably a sign of things to come everywhere). PHP 5.3.3 required for this region.
506
- * FEATURE: Database backup files can now be handled when uncompressed - i.e., you can remove the gzip compression, and use the resulting file (useful for large backups on slow/limited hosting: pre-decompressing the file will reduce the processing time needed)
507
- * FEATURE: Introduced new in-page auto-backup widget that can resume, and thus cope with a backup of any size. This feature is in preparation of WP 4.2's major re-write of the updating user experience flow.
508
- * TWEAK: Update PHP-Opencloud (Rackspace) and dependency libraries to current versions.
509
- * TWEAK: Make sure that activity is recorded periodically when adding database tables to the final database backup (found a site with over 7,500 tables)
510
- * TWEAK: Don't bother to attempt to detect double-gz compression on setups where it can't be handled (where gzseek() has been disabled in the PHP configuration)
511
- * TWEAK: Added free/Premium comparison table to the free version
512
- * TWEAK: Importer (part of UpdraftPlus Premium) can now import generic .sql, .sql.gz and .sql.bz2 files
513
- * TWEAK: Don't show the "memory limit" warning in a case where the value could not be accurately detected
514
- * TWEAK: If the user chooses the "email" remote storage method, then a warning will be added if the archive being sent is bigger than most mailservers can carry (and will be removed if it is successfully sent), thus giving the user a hint as to the failure cause (if they overlooked the existing warning in the email settings).
515
- * TWEAK: The importer (part of UpdraftPlus Premium) can now import the latest BackupWordPress format databases
516
- * TWEAK: Flush output buffer explicitly when closing the browser connection - prevents delayed feedback on some setups
517
- * TWEAK: Automatic backups are now offered if you go to the 'Plugins' page, and update via the 'More information' iframe
518
- * TWEAK: Trim spaces from Google Drive client_id/secret - some users didn't spot that they introduced whitespace when copy-pasting
519
- * TWEAK: Add "Simple Visitor Stats" and "Simple Feed Stats" tables to the list of tables that may have large amounts of data, and which don't need search/replacing when migrating
520
- * TWEAK: When restoring plugins and themes, log the list of entities being restored (helps with tracing problems)
521
- * TWEAK: Deal with CloudFTP/StorageMadeEasy returning directory listings in a non-standard format, when rescanning remote backups
522
- * TWEAK: Version numbering scheme for paid versions changed; see: https://updraftplus.com/change-in-updraftpluss-version-numbering-scheme-for-paid-versions/
523
- * TRANSLATIONS: Updated translations in several languages (many thanks for our translators)
524
- * FIX: For imported 3rd-party backups, the 'Existing Backups' tab (only) was showing "Unknown Source" instead of the detected source.
525
-
526
- = 1.9.52 - 2015-02-07 =
527
-
528
- * FIX: Fix issue when migrating (hence, in Premium versions only) backups with very large options tables output by mysqldump, which could cause the site URL to finish with an incorrect value
529
-
530
- = 1.9.51 - 2015-02-03 =
531
-
532
- * SECURITY: Prevent nonce leak that could allow logged-in users who aren't admins (if you have any) to access backups, UpdraftPlus settings and perform other harmful actions. No issue exists for users of UpdraftPlus Premium, or if you have the stand-alone "Automatic Backups" or "No Adverts" add-ons, or if your site has no untrusted users who can log in (or whilst have dismissed the "Automatic Backups" notice on the updates page). Credit to Sucuri (http://sucuri.net) for identifying this issue, and notifying us of it.
533
-
534
- = 1.9.50 - 2015-01-29 =
535
-
536
- * TWEAK: Importer now supports a previously-unseen format for WordPress Backup 2 Dropbox backups
537
- * TWEAK: Fix cron calculation that could have prevented UpdraftPlus loading when using ALTERNATE_WP_CRON (see 1.9.45)
538
- * TWEAK: If insufficient permissions exist when restoring, then exit maintenance mode when this is detected; and handle the case of having create but not drop permissions more elegantly
539
- * TWEAK: Defeat some other plugins/themes which load their CSS code onto UpdraftPlus settings page and break things
540
- * TWEAK: Prevent a "not tested on this version of WP" message showing for a short time after install of a new version, when it only applied to the previous version
541
- * TWEAK: Reduce HTTP timeout when checking for available plugin updates (paid versions) from 10 to 5 seconds
542
- * TWEAK: Tidy up the post-restore screen a little - one less info box.
543
- * TWEAK: When a restore finishes, WP Super Cache's cache will be emptied (if present), to prevent confusion caused by cached pre-restore pages.
544
- * TWEAK: Slight change to how the 'mothership' for updates is calculated, for more flexibility in our in-house testing
545
- * TWEAK: Log more informative error if user chooses 'FTP' for their remote storage, but adds no FTP settings
546
- * TWEAK: Change "any other directory" to "any other file/directory" in the "more files" add-on, to better reflect its capabilities
547
- * TWEAK: Make sure that "more files" will skip UD's temporary directory, if asked to back up a parent directory of it
548
- * TWEAK: Default to https for updates checking, with fallback to http (only relevant to versions from updraftplus.com)
549
- * TWEAK: Prevent 'Strict Standards' PHP coding notice with WebDAV on PHP 5.5
550
- * TWEAK: Provide clickable link through to the admin email address in the reporting settings
551
- * TWEAK: If the gzopen or gzread functions are disabled in the PHP install, then the message saying so omitted to say which one (or both)
552
- * FIX: WebDAV upload method could very occasionally fail to detect upload error conditions
553
-
554
- = 1.9.46 - 2014-12-29 =
555
-
556
- * FEATURE: Chunked/resumable uploads are now supported for SFTP
557
- * FIX: Scan for existing backup sets added manually to local storage in recent versions could overlook some unless clicked twice, in non-GMT timezones
558
- * TWEAK: Work-around issue in Manage WP worker plugin which caused a crash when authenticating with Dropbox
559
- * TWEAK: Prevent PHP notice when listing files on SFTP server
560
- * TWEAK: Reset an internal upload counter used to detect activity when a cloud storage switch is made due to no apparent activity - could prevent some large, long-running uploads on hosts with little available execution time
561
-
562
- = 1.9.45 - 2014-12-20 =
563
-
564
- * FIX: Fix case in which the database imported from a BackWPUp backup could be falsely identified as missing (introduced in 1.9.40)
565
- * FIX: WordPress installs with ALTERNATE_WP_CRON set could skip some scheduled backups (since 1.9.19, so it appears that the conditions required to cause this bug are rare)
566
-
567
- = 1.9.44 - 2014-12-13 =
568
-
569
- * TRANSLATIONS: Add new incomplete translations (ready for the wordpress.org change to take translation availability into account when searching for plugins): Norwegian Bokmål, Norwegian Nynorsk, Finnish, Hebrew, Catalan, Vietnamese, Bengali
570
- * FIX: Fix a failure to detect the progress properly for large backup sets, introduced in 1.9.40
571
-
572
- = 1.9.43 - 2014-12-11 =
573
- * FIX: Fix bug in 'lock admin' feature causing lock-outs even with the correct password
574
- * TWEAK: Site is put in maintenance mode whilst database restore takes place
575
-
576
- = 1.9.42 - 2014-12-08 =
577
- * FIX: Fix bug in 1.9.40 that caused some cloud storage uploads to be terminated.
578
- * FIX: Restore functionality for Premium users on older WP versions (3.1 - 3.5)
579
-
580
- = 1.9.40 - 2014-12-04 =
581
-
582
- * FEATURE: The auto-backup addon (UpdraftPlus Premium) can now run before
583
- WordPress automatic updates
584
- * FEATURE: Lock access to your UpdraftPlus settings (Premium) -
585
- https://updraftplus.com/lock-updraftplus-settings/
586
- * FEATURE: The full log file viewer is now real-time - it updates as the
587
- backup progresses
588
- * FEATURE: When downloading from remote storage via the settings page, stalled
589
- downloads are now automatically restarted (relevant for large backups with low
590
- web-server PHP time-outs)
591
- * FIX: Manual search/replace expert tool was broken in early downloads of
592
- 1.9.31
593
- * FIX: Suppress bogus messages about missing files from 3rd party tar backups
594
- when restoring
595
- * FIX: If backing up multiple "more files" locations (Premium), then paths
596
- that were identical in both locations could be omitted from the second
597
- location
598
- * FIX: With the reporting add-on, any mails sent by other plugins after
599
- UpdraftPlus had finished (which has never been seen in the wild) would have
600
- corrupted contents
601
- * TWEAK: The tab for downloading/restoring backups has been simplified
602
- * TWEAK: Item for UpdraftPlus now appears in the network admin menu, for
603
- super-admins on network installs
604
- * TWEAK: Labels (Premium) are now maintained and can be detected for
605
- locally-imported database backups
606
- * TWEAK: Automatic backups are now labelled
607
- * TWEAK: The "retain" settings now do not apply for auto-backups (Premium),
608
- unless at least the specified number of non-auto-backups has already been
609
- retained.
610
- * TWEAK: Time selector now accepts typed hours without the trailing zero
611
- * TWEAK: Extended BackWPUp importer to handle older BackWPUp backups lacking
612
- manifests
613
- * TWEAK: Removed Bitcasa storage option, due to closing down of API (November
614
- 15th 2014)
615
- * TWEAK: When an invalid JSON response is received during restore stage 2,
616
- display the data directly (not just in the error console, where not everyone
617
- will think of looking).
618
- * TWEAK: 3rd party backups which are missing expected entities are now handled
619
- more gracefully
620
- * TWEAK: The fancy report now tells the user what paths are in the zips for
621
- any additional paths they configured to add to the backup
622
- * TWEAK: Add a swifter resumption in one corner case (efficiency)
623
- * TWEAK: If a zip error is encountered on cPanel, then the free disk space is
624
- checked, to potentially give the user more information on probable causes
625
- * TWEAK: You can now remove your updraftplus.com password from the settings
626
- (paid version) without losing your access to updates
627
- * TWEAK: Suppress top advert if the user is on their first go (free version -
628
- danger of too many notices)
629
- * TWEAK: Don't display the post-restoration message "if your backup set...",
630
- since we can work this out ourselves
631
- * TWEAK: Supply extra help to the user if the backup directory is not
632
- writable.
633
- * TWEAK: SCP remote storage now logs chunk progress
634
- * TWEAK: Provide a database encryption phrase text entry in the restore
635
- options (rather than needing to enter it in the settings)
636
- * TWEAK: Set the PclZip temporary directory to the Updraft directory if unset,
637
- to keep its temporary files out of the way more easily
638
- * COMPATIBILITY: Tested with the forthcoming WordPress 4.1
639
- * TRANSLATIONS: New Dansk / Danish translation by Lars Lund and Lasse Jensen
640
-
641
- = 1.9.31 - 2014-10-24 =
642
-
643
- * TWEAK: Bitcasa now gives a deprecation warning (Bitcasa are closing down
644
- their API on November 15th 2014)
645
- * TWEAK: Fix bug causing PHP notices in Migrator add-on search/replace
646
- * TWEAK: Add support for Amazon S3's new Frankfurt region
647
- * TWEAK: Add work-around for bug in the ancient PHP 5.2.6 (May 2008!) if
648
- binary zip not available
649
-
650
- = 1.9.30 - 2014-10-21 =
651
-
652
- * FEATURE: Add the capability to handle BackupWordPress database zip backups
653
- (https://updraftplus.com/shop/importer/)
654
- * FEATURE: Add capability to apply labels to backups (Premium -
655
- https://updraftplus.com/shop/updraftplus-premium/)
656
- * TWEAK: Logs are now shown in a pop-out window with a separate download
657
- button
658
- * TWEAK: Detect select/poll lengthy timeouts when uploading to Dropbox, and
659
- prevent overlapping activity
660
- * TWEAK: Add constant UPDRAFTPLUS_NOAUTOBACKUPS to programatically disable the
661
- automatic backups add-on
662
- * TWEAK: Rename UpdraftPlus Dropbox class, to avoid clash with Ninja Forms
663
- upload add-on
664
- * TWEAK: Made the output of the HTTP (curl) debugging tool more informative
665
- * TWEAK: Add web.config file to make updraft directory unviewable on IIS
666
- * TWEAK: If the user tries to import a WordPress Network backup into a
667
- single-site install, then detect and warn
668
- * TWEAK: In the free version, avoid unexpectedly changing the daily backup
669
- time when other settings are saved
670
- * TWEAK: Improve the immediate retry strategy in case of zip failure (saves
671
- time and/or notifying the user to manually check the log)
672
- * TWEAK: Correctly detect language on WP 4.0 onwards, when suggesting helping
673
- with translation
674
- * TWEAK: When connecting for updates to updraftplus.com (Premium), indicate if
675
- it was the username or password that was wrong
676
- * TWEAK: Alert user if they are trying to use Google Drive with a direct-IP
677
- address site URL forbidden by Google's policy
678
- * TWEAK: Prevent a corner-case where excessive logging could occur upon
679
- restoration
680
- * TWEAK: Be less strict with case when looking for supported patterns in the
681
- Importer add-on (https://updraftplus.com/shop/importer/)
682
- * TWEAK: Search/replace the postmeta table faster
683
- * DEPRECATED: Bitcasa support has been deprecated, and the links removed from
684
- the free version. (Existing Premium users using Bitcasa will continue to be
685
- able to do so). See:
686
- https://updraftplus.com/bitcasas-current-direction-unclear/
687
- * FIX: Fix corner-case in URL search/replace when migrating a site that had WP
688
- in a different directory to the site home, and migration to a sub-directory of
689
- the original site.
690
- * FIX: Autobackup setting (https://updraftplus.com/shop/autobackup/) failed to
691
- save properly if turned off on first usage
692
- * TRANSLATION: New Farsi (Persian, fa_IR) translation, courtesy of
693
- Jamshidpour, Ashkan Ghadimi, Mohammad (2online4.ir) and Nasiri Amirreza
694
-
695
- = 1.9.26 - 2014/09/22 =
696
-
697
- * TWEAK: There are still some Amazon S3 servers validated via a Verisign
698
- 1024-bit certificate, causing backup to fail due to SSL validation failure.
699
- Revert to previous collection of root SSL certificates in order to still allow
700
- access to these servers (see:
701
- https://blog.mozilla.org/security/2014/09/08/phasing-out-certificates-with-1024-bit-rsa-keys/)
702
- * TWEAK: If Google Drive reports that the quota will be exceeded, then make
703
- this feedback more obvious to the user without reading the log
704
- * TWEAK: If the user enters an S3 path with an erroneous preceding slash, then
705
- remove it
706
- * FIX: Amazon S3 RRS settings (Premium) were not being applied on archives
707
- smaller than 5Mb
708
- * TRANSLATION: New Română (Romanian, ro_RO) translation, courtesy of
709
- Augustin-Mihai Mufturel and Teodor Muraru
710
-
711
- = 1.9.25 - 2014/09/17 =
712
-
713
- * FEATURE: Copy (https://copy.com) cloud storage support (Premium -
714
- https://updraftplus.com/shop/updraftplus-premium/)
715
- * FEATURE: The search/replace expert tool can now work on selected tables only
716
- * PERFORMANCE: Use PageVisibility API to be more intelligent about when we
717
- need to poll for progress in the dashboard
718
- * FIX: The Migrator add-on would fetch more database rows than it should,
719
- increasing the (low) risk of hitting memory limits, and increasing the time
720
- needed on enormous sites
721
- * FIX: Some Google Drive backups could get uploaded twice, if you were using
722
- multiple storage backends
723
- * FIX: If user set the option to not verify SSL certificates, then this option
724
- was not honoured for all methods
725
- * FIX: If user had never saved their settings (and hence using no cloud
726
- backup), then old backup sets were not pruned
727
- * TWEAK: Inform the user of possible plugin compatibility issues if they are
728
- about to restore a site onto a webserver running a PHP major version older
729
- than the original backup.
730
- * TWEAK: Detect database disconnection when search/replacing, and reconnect if
731
- possible; and to try less rows in case it was a memory limit
732
- * TWEAK: Allow wildcards at either end in exclusion items (e.g. *backups*)
733
- * TWEAK: Add option to control how many rows are search/replaced at once
734
- * TWEAK: Prevent PHP notice being generated on first Google Drive
735
- authentication
736
- * TWEAK: Update Bitcasa console link to new location
737
- * TRANSLATIONS: New Portuguese (Portugal) translation (pt_PT) - thanks to
738
- Pedro Mendonça
739
- * TRANSLATIONS: Updated translations for Dutch, Italian, Swedish, Russian,
740
- Czech, Greek, Portuguese (Brazilian)
741
-
742
- = 1.9.19 - 2014/08/19 =
743
-
744
- * FEATURE: Omit any directory from the backup (recursively) by creating a file
745
- called .donotbackup within it
746
- * PERFORMANCE: Lazy-load more code
747
- * PERFORMANCE: Prevent no-op search/replacements when restoring
748
- * FIX: Fix a corner-case where a backup might be able to continue but no
749
- attempt was made after using PclZip
750
- * FIX: Fix a corner-case (race condition) where UD might try to upload the
751
- same archive twice
752
- * FIX: Detection of pre-WP 3.5 hard-coded uploads paths upon site clone had
753
- stopped working
754
- * FIX: Fix bug in Importer add-on which could halt restorations of 3rd-party
755
- backups from the BackupWordPress plugin
756
- * FIX: Fix bug in the informational disk space consumption calculation in the
757
- expert tools section
758
- * TWEAK: Catch + log errors thrown by phpMailer
759
- * TWEAK: Merge Google SDK tweak from
760
- https://github.com/google/google-api-php-client/pull/189 to deal with buggy
761
- curl/proxy combinations with Google Drive
762
- * TWEAK: Prevent PHP log notice being generated on "Backup Now"
763
- * TWEAK: Change default zip split size to 500Mb on new installs
764
- * TWEAK: Scheduling algorithm tweak for more efficiency with very large
765
- backups when PHP is allowed to run long
766
- * TWEAK: Do not rely on PHP's disk_free_space() when it returns (int)0
767
- * TWEAK: Check database connection after auto-backup
768
- * TWEAK: More helpful message if uploading a backup when local storage is not
769
- writable
770
- * TWEAK: Extra logic to survive out-of-memory MySQL conditions in extreme
771
- cases; plus introduce UPDRAFTPLUS_ALWAYS_TRY_MYSQLDUMP constant
772
- * TWEAK: Tweak Amazon S3 logic so that it can cope with a situation where
773
- there is no permission to request its location (but there is permission for
774
- all other operations)
775
- * TWEAK: Workaround for PHP bug #62119 which could cause some files beginning
776
- with a non-ASCII character to be dropped
777
- * TWEAK: Warn the user if they are running on Apache without mod_rewrite and
778
- restore a site with permalinks requiring mod_rewrite
779
- * TWEAK: If Premium user was backing up non-WP tables, then optimize the
780
- backup table order
781
- * TWEAK: Deal with case when uploading very large backups to Google Drive on
782
- overloaded servers with unreliable network where activity check might misfire
783
- * TRANSLATIONS: Updated translations: Hungarian, Swedish, Russian, Brazilian
784
- (Portuguese), Spanish, Czeck, Dutch, Turkish, German
785
-
786
- = 1.9.17 - 2014/07/16 =
787
-
788
- * FEATURE: Can now import/restore/migrate backups created by WordPress Backup
789
- To Dropbox (Premium)
790
- * FIX: Fix bug in Importer add-on that prevented some potential warnings about
791
- the integrity of the 3rd party backup zip being displayed
792
- * FIX: Some errors upon S3 downloads were not being passed back up to the
793
- settings page for display
794
- * FIX: Update "Rackspace Enhanced" add-on for compatibility with current
795
- Rackspace API
796
- * TWEAK: Prevent spurious messages about quota for users who have upgraded
797
- their Bitcasa account to infinite storage
798
- * TWEAK: Prevent some unnecessary duplication of work when resuming a database
799
- backup (since 1.9.13)
800
- * TWEAK: Dropbox now supports use of WP_PROXY_ settings (proxy needs to
801
- support HTTP GET/POST/PUT)
802
- * TWEAK: Add work-around for "Google Drive as CDN" plugin's inclusion of
803
- incompatible Google SDK
804
- * TWEAK: "More Files" add-on now lets you list single files for inclusion
805
- * TRANSLATIONS: Many translations updated
806
-
807
- = 1.9.15 - 2014/06/09 =
808
-
809
- * FEATURE: New search/replace expert tool (Premium)
810
- * TWEAK: UI has been simplified - see:
811
- https://updraftplus.com/gentle-re-design/
812
- * TWEAK: "Backup Now" now avoids the WordPress scheduler - thus meaning it can
813
- work on sites where the WordPress scheduler is broken (e.g. Heart Internet)
814
- * TWEAK: Make sure that server HTTP-level errors are shown directly to the
815
- user at the 'Processing files...' stage of a restore
816
- * TWEAK: Amend SQL which prevented options/sitemeta tables backing up at full
817
- speed on large sites
818
- * TWEAK: Dropbox will now display some error messages more prominently, where
819
- relevant
820
- * TWEAK: Dropbox account user's name is stored when you authorise
821
- * TWEAK: Show link to FAQ if user's zip upload is corrupt
822
- * TWEAK: Work around annoying Google Drive issue whereby Google's end
823
- sometimes returns an incomplete list of folders
824
- * TWEAK: Interpret time in imported backup sets as being in destination WP
825
- install's timezone
826
- * TWEAK: Auto-correct Dropbox folder configuration if the user erroneously
827
- enters a full URL instead of a folder path
828
- * TWEAK: Bitcasa back-end now checks account quota and logs a warning if it
829
- looks like it will be exceeded
830
- * TWEAK: Email reports created by UpdraftPlus (free) now include the latest
831
- blog headlines from updraftplus.com
832
- * TWEAK: Make sure all relevant restoration options in restore dialogue are
833
- shown (works around Firefox issue upon page reload/navigation)
834
- * FIX: Reporting add-on could mis-display number of warnings when saying "X
835
- errors, Y warnings".
836
- * TRANSLATION: New Tagalog translation (thanks to Kristen Macasero)
837
-
838
- = 1.9.13 - 2014/05/19 =
839
-
840
- * FEATURE: Google Drive now works without the PHP curl module being needed
841
- * FEATURE: UpdraftPlus Premium can now back up non-WordPress tables and
842
- external databases; database encryption is also now a Premium feature; see:
843
- https://updraftplus.com/backing-external-databases/
844
- * FIX: Work around conflicts with the Google Analyticator and Appointments+
845
- plugins when using Google Drive since 1.9.4 (see:
846
- http://wordpress.org/support/topic/dont-unconditionally-load-old-google-sdk)
847
- * FIX: Work around conflict with some XCache setups that prevented activation
848
- since 1.9.4
849
- * FIX: Make all S3 SSL settings take effect
850
- * FIX: Fix packet size calculation issue upon restore that could cause false
851
- detection of over-large packets
852
- * FIX: Prevent unnecessary abortion of restore if PHP's (deprecated) safe_mode
853
- is on (PHP 5.3 and below)
854
- * FIX: When migrating a multisite with a different table prefix, make sure the
855
- user role list is maintained on each site
856
- * FIX: Rescan of remote FTP storage was not using configured path
857
- * TWEAK: Now tested on PHP 5.5
858
- * TWEAK: Migrator can now cope with situations where the development site was
859
- developed under multiple URLs without the developer cleaning up
860
- * TWEAK: Remove several PHP strict coding standards messages, and a
861
- deprecation warning on PHP 5.5+ when using Bitcasa
862
- * TWEAK: Add Counterize tables to the custom lists of tables that do not need
863
- search/replacing upon migration / are non-vital data
864
- * TWEAK: Check for DB connection having been dropped before pruning old
865
- backups (WP 3.9+)
866
- * TWEAK: Make sure that if the user has not configured the Google Drive API in
867
- their Google account, then they are alerted
868
- * TRANSLATIONS: Updated Greek, Czech, German, Spanish, French, Dutch,
869
- Portuguese (Brazilian), Russian, Swedish and Turkish translations
870
-
871
- = 1.9.5 - 2014/04/25 =
872
-
873
- * FIX: Backups were not uploaded successfully if you were using both an
874
- encrypted database and Google Drive storage in 1.9.4
875
-
876
- = 1.9.4 - 2014/04/23 =
877
-
878
- * FEATURE: New remote storage back-end for OpenStack Swift
879
- * FEATURE: New remote storage back-end for Bitcasa (Premium -
880
- https://updraftplus.com/shop/updraftplus-premium/)
881
- * FEATURE: New Google Drive back-end now uses new SDK; resulting new
882
- capabilities include ability to rescan remote storage, and chunked downloading
883
- for huge files; also requires a shorter list of permissions
884
- * FEATURE: Restore backups that were created by the plugin BackWPup (Premium -
885
- https://updraftplus.com/shop/updraftplus-premium/)
886
- * FIX: WebDAV storage: remove requirement for PEAR to be pre-installed on
887
- server
888
- * FIX: Fix restoration on sites where WP did not have direct filesystem access
889
- * FIX: Fix regex which prevented download progress of mu-plugins zip
890
- displaying correctly
891
- * FIX: Fix issue preventing some useful information about URL changes being
892
- included in the migration log file
893
- * FIX: Restore compatibility with WordPress 3.2 (if you're using that, you're
894
- overdue an upgrade by some years!)
895
- * TWEAK: Enable new locations for plupload Flash/Silverlight widgets (for
896
- non-HTML5 browsers) in WP3.9+ (later reverted by core devs, but is harmless in
897
- case they re-introduce)
898
- * TWEAK: Take advantage of WP 3.9+'s new method (if available) for maintaining
899
- DB connectivity on very long runs
900
- * TWEAK: Add filter so that programmers can allow the options page to be shown
901
- to non-admins
902
- * TWEAK: Add filter allowing programmers to forbid a backup
903
- * TWEAK: Detect and adapt to cases where the site is moved to a system with
904
- different case-sensitivity and the database record of the theme is now wrong
905
- * TWEAK: Prevent erroneous warning about a missing table in the database
906
- backup on some WPMU installs that began life as a very old WP version
907
- * TWEAK: Introduce constant allowing users of pre-release WP installs to
908
- disable notices about using a version of WP that UpdraftPlus has not been
909
- tested on.
910
- * TWEAK: Make Dropbox uploads at least 25% faster (in our testing) by
911
- increasing the chunk size
912
- * TWEAK: Reduce number of rows fetched from MySQL if no activity took place on
913
- the previous resumption
914
- * TWEAK: AWS image in settings page will now use https if dashboard access is
915
- https - prevents non-https warnings in recent browsers
916
- * TWEAK: Hook into Better WP Security so that it doesn't tell the user that
917
- they have no backup plugin
918
- * TWEAK: New debugging tool to test remote HTTP connectivity
919
- * TWEAK: Tweak the MySQL version detection in the 'debug' section of the admin
920
- page to prevent a PHP message being thrown on PHP 5.5+/WP3.9+
921
- * TRANSLATION: New Czech (cs_CZ) translation; thanks to Martin Křížek
922
- * TRANSLATION: Updated Russian, Swedish, Dutch and Portuguese translations
923
-
924
- = 1.9.0 - 2014/03/26 =
925
-
926
- * COMPATIBILITY: Tested on and updated for forthcoming WordPress 3.9
927
- * FIX: Prevent SQL errors on restore if SQL command was over-sized and split
928
- awkwardly (very hard to trigger)
929
- * FIX: Fix subtle race condition that prevented uploads of large archives on
930
- Amazon S3 in some very limited situations
931
- * FEATURE: Ability to restore and migrate from backups produced by other
932
- backup plugins (Premium) (supported: BackUpWordPress and Simple Backups
933
- (zip-based; though, if you have a tar-backup, you can re-pack it easily))
934
- * FEATURE: Feature to re-scan remote storage (allows detection of existing
935
- backups after a restore to an earlier site version, and allows quicker moving
936
- of data from site to site when migrating)
937
- * FEATURE: SFTP add-on (https://updraftplus.com/shop/sftp/) now supports
938
- key-based logins (as well as password-based)
939
- * TWEAK: Add a warning message and link to helpful page for people whose WP
940
- schedulers don't seem to be working (at least 4 overdue jobs in the queue)
941
- * TWEAK: Introduce a filter allowing users to add a bespoke scheduling option
942
- (e.g. every 2 days)
943
- * TWEAK: When backup is sent by email attachment, the email now indicates the
944
- originating site more clearly
945
- * TWEAK: Display a dashboard warning if you are using a version of UpdraftPlus
946
- that has not been tested on your current WordPress version
947
- * TWEAK: Add work-around for bad hard-coded data in Elegant Themes Theme
948
- Builder when restoring
949
- * TWEAK: Log a message when Dropbox authentication completes (prevent user
950
- confusion if the most recent message is pre-success)
951
- * TRANSLATIONS: New Arabic translation (thanks to Omar Amassine - me at
952
- omar.ma, Ahmed Fahmy and Riyadh Altayib)
953
- * TRANSLATIONS: Updated Spanish translation (thanks to Pablo Laguna -
954
- laguna.sanchez at gmail.com)
955
- * TRANSLATIONS: Updated Nederlands / Dutch translation (thanks to Dennis
956
- Hunink - dennishunink at me.com)
957
- * TRANSLATIONS: New Turkish translation (various translators - not yet
958
- complete)
959
-
960
- = 1.8.13 - 2014/03/07 =
961
-
962
- * FIX: Fix bug that prevented changes to your schedule being saved on network
963
- (WPMU) installs (Multisite add-on)
964
-
965
- = 1.8.12 - 2014/02/27 =
966
-
967
- * FIX: Prevent spurious warning message showing when authenticating new
968
- Dropbox connections (introduced in 1.8.11)
969
- * TWEAK: Add support for Amazon S3's China + government zones
970
-
971
- = 1.8.11 - 2014/02/27 =
972
-
973
- * FIX: Deal with some unlikely multisite migration combinations
974
- * FEATURE: Allow the 'exclude' options (for omitting files/directories from
975
- the backup) to go to any level (i.e. can now exclude entities which are deep
976
- in the directory tree)
977
- * FEATURE: "More Files" add-on (and hence Premium) now allows adding as many
978
- non-WP directories as you like
979
- * FEATURE: Allow use of Amazon S3's Reduced Redundancy Storage (via
980
- add-on/Premium)
981
- * FEATURE: Allow all messages to be centrally logged in syslog/Event Log (via
982
- add-on/Premium)
983
- * RELIABILITY: Allow skipping of data from tables whose data is explicitly
984
- known to be inessential if at least 2 attempts to backup the data fail (e.g.
985
- lack of resources on low-budget hosts with huge tables, e.g. StatPress data) -
986
- as an alternative to total backup failure.
987
- * TWEAK: Prevent spurious warning message if the site (uploads) is empty and
988
- using /usr/bin/zip
989
- * TWEAK: Work-around for quirky FTP server for which PHP loses the
990
- communication if SIZE is called for a non-existent file
991
- * TWEAK: Show table prefix in debugging information, and add quick links to
992
- install useful debugging plugins
993
- * TWEAK: Limit amount of to-database logging when backing up uploads if the
994
- user is not using dated directories (speed-up)
995
- * TWEAK: Split zip earlier if progress made in the past but not recently
996
- (should help with some ultra-low-resource hosts, e.g. one.com)
997
- * TWEAK: "Custom Content Type Manager" plugin has bad hard-coded cache data;
998
- detect + fix this on restore
999
- * TRANSLATIONS: Updated translations for Russian, Dutch, German and Portuguese
1000
- (Brazilian)
1001
-
1002
- = 1.8.8 - 2014/01/27 =
1003
-
1004
- * FIX: Correctly detect table prefix on some WPMU installs that had been
1005
- upgraded from an earlier version than 3.0 (i.e. very old)
1006
- * FIX: Files directly in wp-content/uploads (from a 1.8.5 backup and not in
1007
- any sub-directory) were being restored one directory too high
1008
- * UPDATED: Updated Swedish, Portuguese and Dutch translations
1009
- * UPDATED: Update root certificates to match latest CURL/Mozilla version
1010
- * TWEAK: Automatically change http(s):// to webdav(s):// in WebDAV URLs if the
1011
- user overlooks the instructions
1012
- * TWEAK: If SHOW TABLES returns no tables, then schedule a re-try later
1013
- (presume the DB connection had been dropped)
1014
- * TWEAK: Preceed warnings in the log file with [Warning]
1015
- * TWEAK: Prevent a very rare PHP segfault due to
1016
- https://bugs.php.net/bug.php?id=51425
1017
- * TWEAK: Show the filename being unpacked during restore (helps with
1018
- troubleshooting if there are very many zips)
1019
- * TWEAK: Premium plugin now shows information about pending/past
1020
- update/support expiries + links to renewal page
1021
- * TWEAK: Show all defined constants in the debug dialog
1022
- * TWEAK: Detect + deal with situations where the webserver double-gzipped the
1023
- database file
1024
- * TWEAK: Display a warning in the FTP configuration section if the hosting
1025
- company disabled FTP functions
1026
- * TWEAK: Make sure that WebDAV notices are included in UD's log file
1027
-
1028
- = 1.8.5 - 2014/01/09 =
1029
-
1030
- * FEATURE: Add option to exclude specified files from the 'uploads' backup.
1031
- The default option will omit backing up backups created by at least 2 other
1032
- backup plugins.
1033
- * FEATURE: New Brazilian Portuguese translation - thanks to Lucien Raven and
1034
- Tom Fonseca
1035
- * FEATURE: Migrator search/replace now handles JSON and object-encoded data
1036
- * UPDATED: Updated Swedish translation
1037
- * FIX: When advising the user that his remaining Dropbox quota is
1038
- insufficient, take into account parts of the file already uploaded
1039
- * FIX: Delete Old Directories button in 1.8.2 was using a PHP 5.3+ feature:
1040
- restore PHP 5.2 compatibility
1041
- * FIX: Reporting add-on was incorrectly inflating the number displayed for the
1042
- total error count if there were warnings
1043
- * FIX: Prevent a bogus warning appearing when the user has filtered the base
1044
- table prefix
1045
- * TWEAK: Give more feedback to user when FTP login fails. Also, improve
1046
- automatic switch to non-SSL FTP if SSL FTP fails to cover more situations.
1047
- * TWEAK: Add informational text about the implications of not choosing any
1048
- remote storage method
1049
- * TWEAK: Supply the "Delete Old Directories" button directly with the message
1050
- advising users to press it
1051
- * TWEAK: If using WP Slimstats, don't search/replace the slimstats table when
1052
- migrating (referer data should be left intact); and this table is often
1053
- gigantic, so this hugely speeds up restores/migrations
1054
- * TWEAK: Handle odd file permissions setups more skilfully when
1055
- restoring/migrating
1056
- * TWEAK: Automatically rescan for new backup sets if none were previously
1057
- known (saves a click when manually importing)
1058
- * TWEAK: Force a shorter pathname to be used when unpacking zip files (prevent
1059
- maximum pathname limits being hit)
1060
- * TWEAK: Tweak CSS to work-around other plugins that dump their CSS code on
1061
- all settings pages and break modals (in this case, Events Manager)
1062
- * TWEAK: Hide the instruction for users of Opera unless the user agent header
1063
- indicates Opera
1064
- * TWEAK: Speed migrations by skipping redundant search/replace scan on
1065
- term_relationships table (which can never have URLs in it)
1066
-
1067
- = 1.8.2 - 2013/12/13 =
1068
-
1069
- * FIX: Various small fixes to the initial release of 1.8.1
1070
- * TWEAK: Restorer now switches theme if database is restored to indicate a
1071
- non-existent theme, and Migrator temporarily disables cacheing plugins during
1072
- Migration
1073
- * TWEAK: Improve handling of MySQL's maximum packet size - attempt to raise
1074
- it, and leave some margin
1075
- * TWEAK: Move the Rackspace SDK around to prevent problems on systems with
1076
- limited maximum pathname lengths
1077
- * TWEAK: Provide a link to the log file at the top of the restoration page
1078
-
1079
- = 1.8.1 - 2013/12/10 =
1080
-
1081
- * FEATURE: New "Reporting" add-on - more sophisticated/flexible backup reports
1082
- (https://updraftplus.com/shop/reporting/)
1083
- * FEATURE: New enhanced add-on for Rackspace Cloud Files users, allowing them
1084
- to create a new sub-user with exclusive access to the backup container
1085
- (https://updraftplus.com/shop/cloudfiles-enhanced/) (PHP 5.3.3+ required for
1086
- this feature)
1087
- * FEATURE: Add region-selection (Dallas/Chicago/Northern Virginia/Sydney/Hong
1088
- Kong) to Rackspace Cloud Files (PHP 5.3.3+ required for this feature)
1089
- * FEATURE: Add option to 'Backup Now' dialog to not despatch this backup to
1090
- the cloud
1091
- * FIX: Fix bug in restore of wpcore (Premium) with certain options when backup
1092
- set was from a previously restored backup with the same certain options
1093
- * FIX: After restoring a site, only delete the backup set from local storage
1094
- if it was also stored in the cloud (prevents the user having to upload the
1095
- backup set twice if they want to re-run the restore)
1096
- * FIX: Improve detection of extremely long-running/slow jobs
1097
- * FIX: Fix issue with Rackspace Cloudfiles on WPMU installs
1098
- * TWEAK: Mark as tested up to WordPress 3.8
1099
- * TWEAK: Restore operations are now logged
1100
- * TWEAK: Detect the database connection dropping and recover (seen on a very
1101
- slow site where PHP ran continuously for 30 mins)
1102
- * TWEAK: Change how permalinks are flushed post-restore. This spares the user
1103
- from having to manually visit the permalinks page if they had plugins that
1104
- altered their permalink structure (e.g. WooCommerce).
1105
- * TWEAK: Require fewer file permissions when restoring/migrating
1106
- * TWEAK: Remove various spurious PHP notices caught by the post-1.7.41 extra
1107
- logging
1108
- * TWEAK: Compress the log file before emailing it, if it is over 6Mb
1109
- * TWEAK: Make sure some potential error messages from Dropbox are displayed
1110
- properly
1111
- * TWEAK: Work around sites with site/home URL settings in the WP DB that
1112
- erroneously have a trailing slash
1113
- * TWEAK: Log PHP notices for all job types
1114
-
1115
- = 1.7.41 - 2013/11/16 =
1116
-
1117
- * FIX: Work around bug in some old PHP versions on Windows when creating
1118
- database dump
1119
- * FIX: If binary mysqldump failed, then retry
1120
- * TWEAK: Log PHP notices in the log file
1121
- * TWEAK: Allow primitive exclusion based on filename suffixes
1122
-
1123
- = 1.7.39 - 2013/11/11 =
1124
-
1125
- * FIX: Correct calculation of which old backups to delete when automatic
1126
- pre-plugin/theme backups run
1127
- * FIX: Binzip could block if the zip binary produced a lot of unexpected
1128
- output
1129
- * FIX: Fix a corner-case where a setting needed manual updating post-migration
1130
- on WP 3.4+earlier sites with custom uploads path
1131
- * FIX: Prevent the settings page needing a refresh if the server temporarily
1132
- goes away
1133
- * TWEAK: For reasons unknown, Google's new cloud console removes parameters
1134
- after the first from the redirect_uri; this breaks new Google Drive
1135
- authentications. To work around this, we have adjusted our redirect_uri to use
1136
- only one parameter.
1137
- * TWEAK: Removed a couple of clicks from the install procedure for add-ons
1138
- * TWEAK: Handle migration URL rewrites where content directory location has
1139
- been manually altered
1140
- * TWEAK: Change default number of backups to retain on new installs from 1 to
1141
- 2
1142
- * TWEAK: Add extra file permissions check before restoring (prevent unexpected
1143
- aborts)
1144
- * TWEAK: Suppress a spurious 'insufficient visitors' warning for some sites
1145
- with long-running backups
1146
- * TWEAK: Prevent spurious message about unexpected SQL if restoring a backup
1147
- with very large tables produced by mysqldump
1148
- * TWEAK: Catch some more untranslated strings
1149
- * TRANSLATIONS: New Russian translation; updated German and Polish
1150
- translations
1151
-
1152
- = 1.7.35 - 2013/10/26 =
1153
-
1154
- * FIX: Fix potential problem whereby some tables could be missed from the
1155
- backup on WPMU (WP multisite) installs. Strongly recommended that all WPMU
1156
- users update and take a fresh backup.
1157
- * FIX: Work around http://bugs.mysql.com/62077 (could cause permanently stuck
1158
- lock on databases with wrong collocations - if you have this problem, then no
1159
- backups happen)
1160
- * TWEAK: Don't use binzip method on OpenVZ with low memory
1161
- * TWEAK: Suppress a couple of spurious messages in the log
1162
- * TWEAK: Add facility to quickly download log files in the 'expert settings'
1163
- section
1164
-
1165
- = 1.7.34 - 2013/10/21 =
1166
-
1167
- * FEATURE: Options in the "Backup Now" dialog to exclude files or database
1168
- from the backup (https://updraftplus.com/more-flexibility-in-backup-now/)
1169
- * FEATURE: Use binary mysqldump, if available, for much faster dumps of large
1170
- tables
1171
- * FEATURE: New Ελληνική / Greek translation (el): Κώστας Θερμογιάννης (Kostas
1172
- Thermoyiannis) - http://tovivlio.net
1173
- * FIX: Fix a JavaScript error in Internet Explorer 8
1174
- * FIX: Under very unusual circumstances, it was still possible for multiple
1175
- backup jobs to occur
1176
- * FIX: For non-English installs, the email indicating backup success sometimes
1177
- failed to send
1178
- * FIX: Fix obscure table name error if WP was using bespoke database setup
1179
- without delete access
1180
- * FIX: On multi-site installs, settings changes could be lost if they were
1181
- made during an ongoing backup
1182
- * TWEAK: Now marked as WordPress 3.7 compatible
1183
- * TWEAK: Raw files list in expert section now makes log files directly
1184
- downloadable
1185
- * TWEAK: Detect available disk quota in CPanel account (if relevant), log, and
1186
- warn if low
1187
- * TWEAK: Amazon S3 backend now can use WP proxy settings (if any)
1188
- * TWEAK: All multisite settings pages have now been moved to the network admin
1189
- section
1190
- * TWEAK: Restorer now handles hand-moved non-default WP site directories
1191
- (where they differ from the website base directory)
1192
- * TWEAK: Migrator can now migrate sub-domain-based WPMU installs with no
1193
- manual steps required
1194
- * TWEAK: Internationalised the add-ons management page (Premium)
1195
- * TWEAK: Switch zip engines from ZipArchive earlier if it appears to be broken
1196
- * TWEAK: Now cleans up some previously un-caught temporary files if the backup
1197
- aborted unexpectedly
1198
- * TWEAK: Remove bogus warning about W3TC object cache
1199
- * TWEAK: Backup log file now includes SHA1 checksums
1200
- * TWEAK: Add warning for user if their max_execution_time is very low
1201
- * TWEAK: Make fewer HTTP requests when tracking download status
1202
- * TWEAK: Under certain conditions, the report email could wrongly state that
1203
- files were included in a db-only backup
1204
- * TWEAK: Improve detection of recent activity on resumptions when zips split
1205
- * TWEAK: Prevent some warning messages from being shown twice
1206
- * TWEAK: Remove the "that's a lot of rows" warning once the table successfully
1207
- finishes being dumped
1208
- * TWEAK: Cache the results of looking for a zip executable for the duration of
1209
- the job
1210
- * TWEAK: Some badly-written plugins place their own code on UD's settings
1211
- page, and break the layout; overcome this
1212
- * TWEAK: Add a warning for people using encryption without mcrypt installed
1213
- (slow)
1214
- * TWEAK: Suppress useless warning when using BinZip and only empty directories
1215
- exist in 'others' backup
1216
-
1217
- = 1.7.20 - 2013/09/20 =
1218
- * TWEAK: Add semaphore locking to prevent WP's cron system kicking off
1219
- multiple jobs on overloaded systems
1220
- * TWEAK: Catch and display some previously uncaught AJAX notices when
1221
- restoring, and display information on the restore process earlier
1222
-
1223
- = 1.7.18 - 2013/09/17 =
1224
- * FEATURE: <a href="https://updraftplus.com/shop/morestorage/">New "more
1225
- storage" add-on</a>, enabling backing up to multiple storage destinations
1226
- * FEATURE: New progress meter on dashboard page when a backup is running
1227
- * FEATURE: SCP support (in the <a
1228
- href="https://updraftplus.com/shop/sftp/">SFTP/FTPS/SCP add-on</a>)
1229
- * FEATURE: If (and only if) your settings page is open, then UpdraftPlus will
1230
- automatically perform tricks to help backups run even if your WordPress
1231
- install has its scheduler disabled (of course, enabling your scheduler would
1232
- better).
1233
- * FIX: Fix bug whereby clicking on 'rescan' lost track of backups sent to
1234
- remote storage
1235
- * FIX: Fix obscure bug that could cause WPMU installs to not back up all
1236
- tables
1237
- * FIX: Fix unwanted warning message if the uploads folder was empty
1238
- * FIX: Show timestamps of available backup sets in local time zone
1239
- * FIX: Email subjects and contents use local time zone
1240
- * FIX: Fix mangled pathnames for PclZip one-shot attempts
1241
- * FIX: Fix bug that caused files to be dropped if one was in a sub-directory
1242
- of the entity and named (entire name) "0"
1243
- * FIX: Show correct title on page when upgrading
1244
- * FIX: Fix one-character typo that could cause Dropbox uploads to not continue
1245
- if Dropbox threw a transient error from their end
1246
- * FIX: Permanent solution to conflict with W3TC's object cache (and removal of
1247
- advisory notice)
1248
- * FIX: Correctly show estimated size of 'others' backup within the expert
1249
- section
1250
- * FIX: Fix small typo in inline decrypter that led to viewer reading an
1251
- incomplete message
1252
- * TWEAK: Warn the user if they seem to be a on a dev website that is not
1253
- visited + so can't backup
1254
- (https://updraftplus.com/faqs/why-am-i-getting-warnings-about-my-site-not-having-enough-visitors/)
1255
- * TWEAK: More detection of possible overlaps (use temporary files as evidence)
1256
- * TWEAK: Extra check that the directory is writable before unpacking zip in
1257
- restore (so user gets friendly error message instead of trickier one)
1258
- * TWEAK: Provide option to remember the "automatic backup" setting
1259
- * TWEAK: <a href="https://updraftplus.com/shop/webdav/">The WebDAV add-on</a>
1260
- now has support for WebDAV servers that don't support Content-Range (e.g.
1261
- ownCloud)
1262
-
1263
- = 1.7.3 - 2013/08/26 =
1264
- * FIX: Some Dropbox connect errors were being lost
1265
- * FIX: Fix detection of availability of binary zip method on PHP installs
1266
- where popen() is available put proc_open() is disabled
1267
- * FIX: (Premium): WP Core and More Files remaining locally/not being
1268
- despatched to cloud storage
1269
- * TWEAK: More logging of the success (or not) of backups sent via email
1270
- * TWEAK: Remember hint from previous job if PHP is allowed to run for more
1271
- than 300 seconds at a time
1272
-
1273
- = 1.7.1 - 2013/08/20 =
1274
- * FIX: Fix error preventing file backups in 1.7.0 for PHP installs without the
1275
- ZipArchive class.
1276
- * TWEAK: Only include phpseclib in the path when required
1277
-
1278
- = 1.7.0 - 2013/08/20 =
1279
- * FEATURE: Split large sites into multiple zips (see:
1280
- https://updraftplus.com/splitting-large-sites-into-multiple-archives/)
1281
- * FEATURE: Fix time add-on can now also choose the day of the week
1282
- * FEATURE: New add-on/Premium feature - Automatic Backups (automatically take
1283
- backups before plugin/theme updates) - https://updraftplus.com/shop/autobackup/
1284
- * FEATURE: Svensk / Swedish translation (sv_SE) by Steve Sandström
1285
- (http://www.brandicon.se)
1286
- * FEATURE: Français / French translation (fr_FR) by ufo3D - http://ufo-3d.fr/
1287
- and Thomas Jacobsen - http://123informatique.ch/ - with help from Françoise
1288
- Lhermitte - http://www.ajwan.net
1289
- * TWEAK: Save the result of looking for a binary zip (don't re-test)
1290
- * TWEAK: Show 'Last log message' in dashboard using local time zone
1291
- * TWEAK: Log file times are now recorded relative to the backup start, rather
1292
- than the current resumption start
1293
- * TWEAK: More code-tidying and optimisation
1294
- * TWEAK: Warn the user if the WordPress scheduler is disabled
1295
- * TWEAK: Many + various extra sanity-checks for possible problems
1296
- * TWEAK: Warn user if trying to upload an above-limit (>10Gb) file to Google
1297
- Drive
1298
- * TWEAK: Reduce memory usage during restore
1299
- * TWEAK: No longer require mbstring extension for Dropbox
1300
- * TWEAK: Move JavaScript into separate file, and make strings translatable
1301
- * INTERNALS: PclZip and BinZip methods now have feature parity with ZipArchive
1302
- (can resume+split, more logging)
1303
- * TWEAK/FIX: When restoring/migrating, split SQL commands to avoid exceeding
1304
- MySQL's max_allowed_packet
1305
- * FIX: Make sure output buffering is off when sending files from the browser
1306
- (prevents memory exhaustion)
1307
- * FIX: Prevent double-backup (very unusual combination of circumstances)
1308
- * FIX: Some Windows webserver configurations could have corruption of
1309
- filenames in WordPress core backups (recoverable)
1310
- * FIX: Remove temporary files created by PclZip (where PclZip is used)
1311
-
1312
- = 1.6.46 - 2013/07/11 =
1313
- * FEATURE: New storage back-end for any S3-compatible provider (e.g. Google
1314
- Cloud Storage, Eucalyptus, Cloudian, many more - tested with Dreamobjects and
1315
- original S3)
1316
- * FEATURE: Delete existing backup sets manually (deletes both local + cloud
1317
- copies). Also show backup set debugging info in expert options; and counter
1318
- now dynamically updates without refresh.
1319
- * FEATURE: Restorations + migrations can now be attempted even if the user
1320
- lacks CREATE TABLE or DROP TABLE permissions
1321
- * FEATURE: Italiano/Italian translation by Francesco Carpana (f.carpana at
1322
- gmail.com)
1323
- * FEATURE: Chinese (zh_CN) translation by K L Wang (http://klwang.info)
1324
- * FEATURE: Re-worked error handling internally, leading to users now being
1325
- notified prominently of warning-level conditions (non-fatal conditions, but
1326
- things the user should be advised of)
1327
- * FEATURE: Allow some hiding of secrets in the admin area (see:
1328
- https://updraftplus.com/faqs/in-the-administration-section-it-shows-my-amazon-ftp-etc-passwords-without-using-stars-is-this-safe/)
1329
- * FEATURE: Restorer now obtains files at an earlier stage, allowing analysis +
1330
- more intelligent presentation of options and applicable warnings pre-restore.
1331
- Now warns if you are migrating without having chosen search/replace of DB.
1332
- Also pre-decrypts the database, which lessens the risk of timeouts.
1333
- * FEATURE: Allow entries in the list of files to exclude from backup to end in
1334
- a wildcard (*). Change default exclusion for content dir to include backup* to
1335
- catch other backup plugins' archives.
1336
- * FIX: "Wipe settings" wipes S3 + DreamObjects settings (they were retained
1337
- previously)
1338
- * FIX: Suppress spurious "Table prefix has changed" message
1339
- * FIX: Now copes on restores/migrations if you've moved around your
1340
- WP_CONTENT_DIR/WP_PLUGIN_DIR/UPLOADS folder
1341
- * FIX: Escape output of logging lines (prevents on-page JavaScript breakage if
1342
- error from cloud service contained unescaped quotes)
1343
- * FIX: Fix syntax error in rarely-triggered part of scheduling calculation
1344
- algorithm that could cause a dramatic slow-down
1345
- * FIX: Tweak the no-activity-for-a-while-when-writing-zip detector to not fire
1346
- prematurely (found an extreme corner-case where this caused a problem)
1347
- * FIX: The "Test (cloud method) settings" button would fail if credentials
1348
- contained a backslash (\), due to WP's automatic doubling of backslashes
1349
- * FIX: When restoring, don't make failure to remove a temporary directory an
1350
- abortion condition
1351
- * FIX: Database dump now retains NULL values for string fields (instead of
1352
- making them empty strings)
1353
- * FIX: Remove directories that cause an error during restoration when user
1354
- restores from a backup made from a previously-restored site without removing
1355
- old directories when requested.
1356
- * TWEAK: Detect WP installs with broken plugins that add extra white-space
1357
- (thus breaking AJAX output)
1358
- * TWEAK: When running on (old) MySQL 4.1, replace TYPE= with ENGINE= for
1359
- compatibility with later MySQL versions
1360
- * TWEAK: Detect which MySQL engines are available on the restoring side, and
1361
- switch if the requested engine is not available; remove PAGE_CHECKSUM and
1362
- TRANSACTIONAL options if engine was (M)aria. Always remove (removed from
1363
- upstream) PAGE_CHECKSUM from MyISAM.
1364
- * TWEAK: Batch database rows by the 1000 instead of 100 - proved to be 3x
1365
- faster on massive MyISAM tables
1366
- * TWEAK: Abort a restoration if the first CREATE TABLE command produces an
1367
- error (rather than continue and likely have many more)
1368
- * TWEAK: Replace one use of method_exists() to prevent triggering segfault in
1369
- some faulty PHP installs
1370
- * TWEAK: Allow an extra attempt if in "over-time" - allows recovery from
1371
- transient errors (e.g. cloud service temporary outage) in over-time.
1372
- * TWEAK: Work-around WP installs with broken cacheing setups where cache
1373
- deletion is not working
1374
- * TWEAK: If ZipArchive::close() fails, then log the list of files we were
1375
- trying to add at the time
1376
- * TWEAK: Detect generous amounts of time allowed for running better, and
1377
- schedule appropriately
1378
- * TWEAK: Add detection of jQuery errors in the admin page, and direct users
1379
- with such errors to a help page
1380
- * TWEAK: More aggressively clean up temporary files (can lower temporary disk
1381
- space requirements)
1382
- * TWEAK: Provide the error message sent by Google upon initial Drive
1383
- authentication errors.
1384
- * TWEAK: Found a case where PHP's is_writable() erroneously returns true -
1385
- actually test a write
1386
- * TWEAK: Use pseudo-namespacing on the CloudFiles library to prevent clashes
1387
- with other plugins (pre-emptive - no known conflicts exist)
1388
- * TWEAK: Use higher priority on cron backup schedules call to prevent other
1389
- plugins which call WP wrongly from over-writing new cron schedules (e.g.
1390
- BackupBuddy)
1391
-
1392
- = 1.6.17 - 2013/06/06 =
1393
- * FEATURE: News blog - https://updraftplus.com/news/ - please subscribe if you
1394
- want to stay up to date with news of new features, tips, and special offers.
1395
- RSS link: http://feeds.feedburner.com/UpdraftPlus
1396
- * FEATURE: Restoration/migration now copes with a change of table prefix, and
1397
- asks WordPress to recreate your .htaccess/web.config file
1398
- * FEATURE: Add support for DreamHost DreamObjects
1399
- (http://dreamhost.com/cloud/dreamobjects/)
1400
- * FEATURE: Polski / Polish (pl_PL) translation: thanks to Bartosz Kaczmarek
1401
- (barth.kaczmarek at gmail.com)
1402
- * FEATURE: Add expert options to count expected uncompressed backup size,
1403
- show/delete active jobs, and PHP info
1404
- * FEATURE: Send backup reports to multiple addresses (comma-separate the
1405
- addresses you wish to use)
1406
- * FIX: Inform users of Dropbox tokens which stop working
1407
- * FIX: Don't flag an error if mu-plugins are selected, but none are found and
1408
- WordPress agrees that none exist
1409
- * COMPATIBILITY: WordPress multisite post-3.5 does not store blog uploads
1410
- separately from main uploads directory
1411
- * COMPATIBILITY: Now marked as compatible with WordPress 3.6
1412
- * TWEAK: When errors occur, list them in the notification email and attach the
1413
- log file
1414
- * TWEAK: Use only one transient per job, and clean it up upon completion
1415
- * TWEAK: Added a "Clone/Migrate" button to give a visual clue for people
1416
- wanting to do this
1417
- * TWEAK: More verbose error reporting from PclZip
1418
- * TWEAK: After database restoration, permalinks are flushed (often helps
1419
- regenerate .htaccess+web.config files)
1420
- * TWEAK: Database backups now put the options table first, to allow earlier
1421
- changing of site URL upon migration
1422
- * TWEAK: Show PHP + web server versions in the debug information
1423
- * TWEAK: More sophisticated attempts to get a writable backup directory, and
1424
- more helpful messages if we can't
1425
- * TWEAK: Some more logging, data-gathering and algorithm-tweaking to
1426
- especially improve the chances for people with astonishingly slow web hosting,
1427
- but also tweaks that improve efficiency everywhere, especially for larger
1428
- backup sets.
1429
- * TWEAK: Migrator plugin now does search+replace after each table (instead of
1430
- after them all)
1431
- * TWEAK: Clean up temporary files earlier where safe+possible (can lower disk
1432
- space requirements)
1433
- * TWEAK: Re-scan of known sets now removes those known to be gone from the
1434
- list
1435
- * TWEAK: Made a few things use AJAX instead of full page loads
1436
- * TWEAK: Replace Rackspace logo with current version
1437
- * TWEAK: Make missing PHP component warnings more prominent
1438
- * TWEAK: Warn users if they have W3 Total Cache's object cache (which has a
1439
- bug that affects scheduled tasks) active.
1440
- * TWEAK: Add a notice for users who have turned on debugging (some forget to
1441
- turn it off, then ask for support when they see lots of debugging notices)
1442
-
1443
- = 1.6.2 - 05/11/2013 =
1444
- * FIX: Prevent PHP fatal error on some database restores
1445
-
1446
- = 1.6.1 - 05/06/2013 =
1447
- * FEATURE: New "Migrator" add-on for moving sites from one WordPress install
1448
- to another (https://updraftplus.com/shop/)
1449
- * FEATURE: The "More files" add-on can now back up any files from anywhere on
1450
- your filesystem (not just parts of WordPress)
1451
- * FEATURE: The "More files" add-on can now exclude specified directories from
1452
- the backup of WordPress core
1453
- * FEATURE: Dropbox and Google Drive now check available quota before uploading
1454
- * FEATURE: Nederlands / Dutch (nl_NL) translation: thanks to Hans van der
1455
- Vlist - hansvandervlist at gmail.com
1456
- * FEATURE: The SFTP/FTPS add-on now supports implicit encryption (so now both
1457
- explicit + implicit are supported)
1458
- * FIX: Google Drive now requires additional permissions to download your files
1459
- - you will need to re-authenticate if you are downloading or restoring.
1460
- * FIX: Fix serious corruption issue in larger Rackspace Cloud Files backups
1461
- (fixed a bug in Rackspace's Cloud Files library)
1462
- * FIX: Fix mcrypt call in Dropbox module to be compatible with PHP 5.2 on
1463
- Windows, and with ancient FreeBSD versions which have no /dev/urandom
1464
- * FIX: Allow top-level "Restore" button even if no backup sets currently known
1465
- (to allow uploading some)
1466
- * FIX: Fixed issues hindering restoration on web hosting setups with file
1467
- permissions that invoked WP's remote filesystem methods
1468
- * TWEAK: Database backup now includes more info about original WP install
1469
- (e.g. WP/PHP versions)
1470
- * TWEAK: The "More files" add-on now allows the user to choose whether to
1471
- restore wp-config.php or not (and gives help)
1472
- * TWEAK: Added an approximate expected row count when beginning to dump out a
1473
- table
1474
- * TWEAK: Remove the Google Drive URL prefix automatically for those who don't
1475
- spot the instruction to do so
1476
-
1477
- = 1.5.22 - 04/16/2013 =
1478
- * FIX: 1.5.21 broke Dropbox authentication for some users. Upgrade if you had
1479
- that issue.
1480
-
1481
- = 1.5.21 - 04/15/2013 =
1482
- * FEATURE: Now restores databases (we recommend the MySQL command-line for
1483
- versions created with previous versions of UpdraftPlus)
1484
- * FEATURE: Rackspace Cloud Files support
1485
- (http://www.rackspace.com/cloud/files/)
1486
- * FEATURE: Built-in multi-uploader, allowing easier restoration of old backup
1487
- sets
1488
- * FEATURE: Allow instant downloading of the most recently modified log file
1489
- * FEATURE: Built in drag-and-drop database decrypter for manual decryption
1490
- * FEATURE: Deutsch / German translation: thanks to Marcel Herrguth - mherrguth
1491
- at mrgeneration.de
1492
- * FEATURE: Magyar / Hungarian translation: thanks to Szépe Viktor -
1493
- http://www.szepe.net
1494
- * FEATURE: Spanish / Español translation: thanks to Fernando Villasmil -
1495
- villasmil.fernando at gmail.com
1496
- * FEATURE: Added encryption (used by default) to Amazon S3 communications
1497
- * FEATURE: New "more files" add-on, allowing backup of WordPress core and
1498
- non-WordPress files
1499
- * RELIABILITY: Various algorithm tweaks to help larger sites on lower
1500
- resources. Largest site a known user has: 1.5Gb
1501
- * RELIABILITY/FEATURE: Ship up-to-date SSL certificates, and added expert
1502
- options to prefer server SSL CA certificates, and to disable peer verification
1503
- * SPEED: Batch INSERT commands in database backups, for much faster
1504
- restoration (typically 95% faster)
1505
- * SPEED/RELIABILITY: FTP and FTPS (not SFTP) are now chunked and resumable
1506
- (both download and upload), subject to your FTP server responding correctly to
1507
- SIZE
1508
- * SPEED: Re-factoring of admin-area and some backup code into separate
1509
- lazy-loaded files, to reduce memory consumption on sites generally
1510
- * FIX: Clear PHP's file stat cache when checking for zip file activity - fixes
1511
- potential halt on very enormous sites or sites with very low PHP timeouts.
1512
- * FIX: Caught some untranslated strings
1513
- * FIX: Respect WordPress's WP_MAX_MEMORY_LIMIT constant
1514
- * FIX: Remove timezone display from local time - WordPress's get_date_from_gmt
1515
- function does not completely do what the manual says it does
1516
- * FIX: A small typo slipped into 1.5.5 which prevented some Google Drive users
1517
- from setting up new installations
1518
- * FIX: Fix strict coding warnings on PHP 5.4
1519
- * TWEAK: In fix-time add-on, fade UI when relevant
1520
- * TWEAK: Improved UI of downloader
1521
- * TWEAK: Decrease FTP timeouts to improve our chances of getting back an error
1522
- before PHP aborts
1523
- * TWEAK: Tweaked al relevant methods to follow the general SSL CA certificate
1524
- options
1525
-
1526
- = 1.5.5 - 03/26/2013 =
1527
- * Now translatable - .pot file included (translators welcome!)
1528
- * When restoring, you can now select only some components to restore
1529
- * History of previous backups can re-scan to find backups manually imported
1530
- (e.g. via FTP) (trunk has drag-and-drop uploader)
1531
- * Multisite add-on (https://updraftplus.com/shop/) now stores/restores blogs
1532
- and mu-plugins separately
1533
- * Display UpdraftPlus's disk space usage
1534
- * Internationalisation hooks in main body of plugin
1535
- * Correctly remove old 'other' directories from a restoration when requested
1536
- * Various layout + niceness fixes upon restoration
1537
- * Prevent deletion of local archives upon failed restoration when there was no
1538
- cloud storage
1539
- * Various usability tweaks for the admin UI, including showing multisite
1540
- warning only on UD's pages
1541
- * Fix incorrect restoration (since 1.4.0) of directory-less paths from
1542
- 'others' zip
1543
- * Fix prevention of Dropbox re-authentication when Dropbox returns 5xx first
1544
- time (library error)
1545
- * Clear Dropbox credentials if the user explicitly re-authenticates
1546
- * Clean up temporary files left behind by zipArchive::addFile
1547
- * Tweak Dropbox library to work from behind very weird proxies that
1548
- double-surround the HTTP header
1549
- * Improved help for people with broken schedulers
1550
- * Fix FTP download error
1551
-
1552
- = 1.4.48 - 03/11/2013 =
1553
- * Improve batching on zip creation for sites with very large files
1554
- * Unlimited early resumption if zip file creation takes too long
1555
- * Suppress some warning notices that can break JavaScript on sites with
1556
- notices sent to the browser
1557
- * Earlier warning/failure if backup directory was not writable
1558
- * Hooks for Dropbox folders add-on
1559
- * More scheduler/overlap tweaks, to assist enormous uploads
1560
- * When the temporary directory is within the site, store+display relatively
1561
- (removes need to modify upon site move)
1562
- * Sort existing backups display by date
1563
- * Use WordPress time for creation of filenames
1564
- * Fix bug in 1.4.47 which caused problems on new site installs
1565
- * Prevent erroneous warning when backup zip (usually uploads) has no files
1566
-
1567
- = 1.4.30 - 03/04/2013 =
1568
- * Hooks for WebDAV support via add-on
1569
-
1570
- = 1.4.29 - 02/23/2013 =
1571
- * Now remembers what cloud service you used for historical backups, if you
1572
- later switch
1573
- * Now performs user downloads from the settings page asynchronously, meaning
1574
- that enormous backups can be fetched this way
1575
- * Fixed bug which forced GoogleDrive users to re-authenticate unnecessarily
1576
- * Fixed apparent race condition that broke some backups
1577
- * Include disk free space warning
1578
- * More intelligent scheduling of resumptions, leading to faster completion on
1579
- hosts with low max_execution_time values
1580
- * Polls and updates in-page backup history status (no refresh required)
1581
- * Hooks for SFTP + encrypted FTP add-on
1582
-
1583
- = 1.4.14 - 02/19/2013 =
1584
- * Display final status message in email
1585
- * Clean-up any old temporary files detected
1586
-
1587
- = 1.4.13 - 02/18/2013 =
1588
- * Some extra hooks for "fix time" add-on
1589
- (https://updraftplus.com/shop/fix-time/)
1590
- * Some internal simplification
1591
- * Small spelling + text fixes
1592
-
1593
- = 1.4.11 - 02/13/2013 =
1594
- * Various branding tweaks - <a href="https://updraftplus.com">launch of
1595
- updraftplus.com</a>
1596
- * Important fix for people with non-encrypted database backups
1597
-
1598
- = 1.4.9 - 02/12/2013 =
1599
- * Do more when testing Amazon S3 connectivity (catches users with bucket but
1600
- not file access)
1601
- * Tweak algorithm for detecting useful activity to further help gigantic sites
1602
-
1603
- = 1.4.7 - 02/09/2013 =
1604
- * Tweak for some Amazon EU West 1 bucket users
1605
-
1606
- = 1.4.6 - 02/07/2013 =
1607
- * Amazon S3 now works for users with non-US buckets
1608
- * Further tweak to overlap detection
1609
-
1610
- = 1.4.2 - 02/06/2013 =
1611
- * More Amazon S3 logging which should help people with wrong details
1612
- * More race/overlap detection, and more flexible rescheduling
1613
-
1614
- = 1.4.0 - 02/04/2013 =
1615
- * Zip file creation is now resumable; and thus the entire backup operation is;
1616
- there is now no "too early to resume" point. So even the most enormous site
1617
- backups should now be able to proceed.
1618
- * Prefer PHP's native zip functions if available - 25% speed-up on zip
1619
- creation
1620
-
1621
- = 1.3.22 - 01/31/2013 =
1622
- * More help for really large uploads; dynamically alter the maximum number of
1623
- resumption attempts if something useful is still happening
1624
-
1625
- = 1.3.20 - 01/30/2013 =
1626
- * Add extra error checking in S3 method (can prevent logging loop)
1627
-
1628
- = 1.3.19 - 01/29/2013 =
1629
- * Since 1.3.3, the 'Last Backup' indicator in the control panel had not been
1630
- updating
1631
-
1632
- = 1.3.18 - 01/28/2013 =
1633
- * Made 'expert mode' easier to operate, and tidier options for non-expert
1634
- users.
1635
- * Some (not total) compliance with PHP's strict coding standards mode
1636
- * More detail provided when failing to authorise with Google
1637
-
1638
- = 1.3.15 - 01/26/2013 =
1639
- * Various changes to Google Drive authentication to help those who don't enter
1640
- the correct details first time, or who later need to change accounts.
1641
-
1642
- = 1.3.12 - 01/25/2013 =
1643
- * 1.3.0 to 1.3.8 had a fatal flaw for people with large backups.
1644
- * 1.3.0 to 1.3.9 gave erroneous information in the email reports on what the
1645
- backup contained.
1646
- * Fixed DropBox authentication for some users who were having problems
1647
-
1648
- = 1.3.8 - 01/24/2013 =
1649
- * Fixed faulty assumptions in 'resume' code, now leading to more reliable
1650
- resuming
1651
- * Removed some duplicate code; first attempt and resumptions now uses same
1652
- code
1653
- * Added further parameters that should be removed on a wipe operation
1654
- * More logging of detected double runs
1655
-
1656
- = 1.3.2 - 01/23/2013 =
1657
- * Internal reorganisation, enabling UpdraftPlus Premium
1658
-
1659
- = 1.2.46 - 01/22/2013 =
1660
- * Easier Dropbox setup (we are now an official production app)
1661
- * New button to delete all existing settings
1662
- * Admin console now displays rolling status updates
1663
- * Feature: choose how many files and databases to retain separately
1664
- * Fixed bug with checking access token on Google Drive restore
1665
- * Fixed bug producing copious warnings in PHP log
1666
- * Fixed bug in automated restoration processes
1667
- * Possibly fixed settings saving bug in RTL installations
1668
- * Fix erroneous display of max_execution_time warning
1669
- * Better logging when running a DB debug session
1670
- * Better detection/handling of overlapping/concurrent runs
1671
-
1672
- = 1.2.31 - 01/15/2013 =
1673
- * Fixed bug with Dropbox deletions
1674
- * Fixed cases where Dropbox failed to resume chunked uploading
1675
- * Can now create uncreated zip files on a resumption attempt
1676
- * FTP method now supports SSL (automatically detected)
1677
- * New "Test FTP settings" button
1678
- * Less noise when debugging is turned off
1679
- * Fix bug (in 1.2.30) that prevented some database uploads completing
1680
-
1681
- = 1.2.20 - 01/12/2013 =
1682
- * Dropbox no longer limited to 150Mb uploads
1683
- * Dropbox can upload in chunks and resume uploading chunks
1684
- * Improved Dropbox help text
1685
-
1686
- = 1.2.18 - 01/11/2013 =
1687
- * Revert Dropbox to CURL-only - was not working properly with WordPress's
1688
- built-in methods
1689
- * Add note that only up to 150Mb is possible for a Dropbox upload, until we
1690
- change our API usage
1691
- * Fix unnecessary repetition of database dump upon resumption of a failed
1692
- backup
1693
-
1694
- = 1.2.14 - 01/08/2013 =
1695
- * Dropbox support (no chunked uploading yet, but otherwise complete)
1696
- * Make the creation of the database dump also resumable, for people with
1697
- really slow servers
1698
- * Database table backups are now timed
1699
- * FTP logging slightly improved
1700
- * Dropbox support uses WordPress's built-in HTTP functions
1701
-
1702
- = 1.1.16 - 01/07/2013 =
1703
- * Requested feature: more frequent scheduling options requested
1704
- * Fixed bug which mangled default suggestion for backup working directory on
1705
- Windows
1706
- * Provide a 'Test S3 Settings' button for Amazon S3 users
1707
-
1708
- = 1.1.11 - 01/04/2013 =
1709
- * Bug fix: some backup runs were erroneously being identified as superfluous
1710
- and cancelled
1711
-
1712
- = 1.1.9 - 12/31/2012 =
1713
- * Big code re-factoring; cloud access methods now modularised, paving way for
1714
- easier adding of new methods. Note that Google Drive users may need to
1715
- re-authenticate - please check that your backups are working.
1716
- * Fix bug whereby some resumptions of failed backups were erroneously
1717
- cancelled
1718
- * Database encryption made part of what is resumable
1719
-
1720
- = 1.0.16 - 12/24/2012 =
1721
- * Improve race detection and clean up already-created files when detected
1722
-
1723
- = 1.0.15 - 12/22/2012 =
1724
- * Fixed bug that set 1Tb (instead of 1Mb) chunk sizes for Google Drive uploads
1725
- * Added link to some screenshots to help with Google Drive setup
1726
- * Allowed use of existing Amazon S3 buckets with restrictive policies
1727
- (previously, we tested for the bucket's existence by running a create
1728
- operation on it, which may not be permitted)
1729
- * Use WordPress's native HTTP functions for greater reliability when
1730
- performing Google Drive authorisation
1731
- * Deal with WP-Cron racey double events (abort superceeded backups)
1732
- * Allow user to download logs from admin interface
1733
-
1734
- = 1.0.5 - 12/13/2012 =
1735
- * Tweaked default Google Drive options
1736
-
1737
- = 1.0.4 - 12/10/2012 =
1738
- * Implemented resumption/chunked uploading on Google Drive - much bigger sites
1739
- can now be backed up
1740
- * Fixed bug whereby setting for deleting local backups was lost
1741
- * Now marked as 1.0, since we are feature-complete with targeted features for
1742
- this release
1743
- * Made description fuller
1744
-
1745
- = 0.9.20 - 12/06/2012 =
1746
- * Updated to latest S3.php library with chunked uploading patch
1747
- * Implemented chunked uploading on Amazon S3 - much bigger sites can now be
1748
- backed up with S3
1749
-
1750
- = 0.9.10 - 11/22/2012 =
1751
- * Completed basic Google Drive support (thanks to Sorin Iclanzan, code taken
1752
- from "Backup" plugin under GPLv3+); now supporting uploading, purging and
1753
- restoring - i.e. full UpdraftPlus functionality
1754
- * Licence change to GPLv3+ (from GPLv2+) to allow incorporating Sorin's code
1755
- * Tidied/organised the settings screen further
1756
-
1757
- = 0.9.2 - 11/21/2012 =
1758
- * Failed uploads can now be re-tried, giving really big blogs a better
1759
- opportunity to eventually succeed uploading
1760
-
1761
- = 0.8.51 - 11/19/2012 =
1762
- * Moved screenshot into assets, reducing plugin download size
1763
-
1764
- = 0.8.50 - 10/13/2012 =
1765
- * Important new feature: back up other directories found in the WP content
1766
- (wp-content) directory (not just plugins/themes/uploads, as in original
1767
- Updraft)
1768
-
1769
- = 0.8.37 - 10/12/2012 =
1770
- * Don't whinge about Google Drive authentication if that method is not current
1771
-
1772
- = 0.8.36 - 10/03/2012 =
1773
- * Support using sub-directories in Amazon S3
1774
- * Some more debug logging for Amazon S3
1775
-
1776
- = 0.8.33 - 09/19/2012 =
1777
- * Work around some web hosts with invalid safe_mode configurations
1778
-
1779
- = 0.8.32 - 09/17/2012 =
1780
- * Fix a subtle bug that caused database tables from outside of this WordPress
1781
- install to be backed up
1782
-
1783
- = 0.8.31 - 09/08/2012 =
1784
- * Fixed error deleting old S3 backups. If your expired S3 backups were not
1785
- deleted, they should be in future - but you will need to delete manually those
1786
- that expired before you installed this update.
1787
- * Fixed minor bug closing log file
1788
- * Marked as working with WordPress 3.4.2
1789
-
1790
- = 0.8.29 - 06/29/2012 =
1791
- * Marking as tested up to WordPress 3.4.1
1792
-
1793
- = 0.8.28 - 06/06/2012 =
1794
- * Now experimentally supports Google Drive (thanks to Sorin Iclanzan, code
1795
- re-used from his Google Drive-only 'backup' plugin)
1796
- * New feature: backup files and database on separate schedules
1797
- * Tidied and improved retain behaviour
1798
-
1799
- = 0.7.7 - 05/29/2012 =
1800
- * Implementation of a logging mechanism to allow easier debugging and
1801
- development
1802
-
1803
- = 0.7.4 - 05/21/2012 =
1804
- * Removed CloudFront method; I have no way of testing this
1805
- * Backup all tables found in the database that have this site's table prefix
1806
- * If encryption fails, then abort (don't revert to not encrypting)
1807
- * Added ability to decrypt encrypted database backups
1808
- * Added ability to opt out of backing up each file group
1809
- * Now adds database character set, the lack of which before made database
1810
- backups unusable without modifications
1811
- * Version number bump to make clear that this is an improvement on the
1812
- original Updraft, and is now tried and tested
1813
-
1814
- = 0.1.3 - 01/16/2012 =
1815
- * Force backup of all tables found in database (vanilla Updraft only backed up
1816
- WP core tables)
1817
- * Tweak notification email to include site name
1818
-
1819
- = 0.1 - 08/10/2011 =
1820
-
1821
- * A fork of Updraft Backup/Restore 0.6.1 by Paul Kehrer with the following
1822
- improvements
1823
- * Replaced deprecated function calls (in WordPress 3.2.1)
1824
- * Removed all warnings from basic admin page with WP_DEBUG on
1825
- * Implemented encrypted backup (but not yet automatic restoration) on database
1826
- * Some de-uglification of admin interface
1827
 
1828
  == Screenshots ==
1829
 
@@ -1860,4 +219,4 @@ We recognise and thank the following for code and/or libraries used and/or modif
1860
 
1861
 
1862
  == Upgrade Notice ==
1863
- * 1.12.6: Various minor tweaks
1
+ === UpdraftPlus WordPress Backup Plugin ===
2
  Contributors: Backup with UpdraftPlus, DavidAnderson, DNutbourne
3
+ Tags: backup, backups, restore, amazon backup, s3 backup, dropbox backup, google drive backup, rackspace cloud files, rackspace backup, dreamhost, dreamobjects backup, ftp backup, webdav backup, google cloud storage, onedrive, azure, back up, multisite, restoration, sftp backup, ftps, scp backup, migrate, duplicate, copy, mysql backup, database backup, db backups, website backup, wordpress backup, full backup, openstack backup, sicherung
4
  Requires at least: 3.2
5
  Tested up to: 4.5
6
+ Stable tag: 1.12.12
7
  Author URI: https://updraftplus.com
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
125
 
126
  The <a href="https://updraftplus.com/news/">UpdraftPlus backup blog</a> is the best place to learn in more detail about any important changes.
127
 
128
+ 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.12.12 of the free version correspond to changes made in 2.12.12.x of the paid version.
129
+
130
+ = Development version - not yet released/supported =
131
+
132
+ * TWEAK: Extend cacheing of enumeration of uploads that was introduced in 1.11.1 to other data in wp-content also
133
+
134
+ = 1.12.12 - 25/May/2016 =
135
+
136
+ * FIX: When restoring a plugins backup on multisite, old plugins were inactivated but not always removed
137
+ * TWEAK: Use POST instead of GET for OneDrive token requests - some new accounts seem to have begun requiring this
138
+ * TWEAK: When backing up user-configured directories, don't log confusing/misleading messages for unzippable directory symlinks
139
+ * TRANSLATIONS: wordpress.org is now serving up translations for fr_FR, pt_PT and ro_RO, so these can/have been removed from the plugin zip (1.2Mb released)
140
+
141
+ = 1.12.11 - 19/May/2016 =
142
+
143
+ * FIX: 1.12.8 (paid versions only) contained a regression that prevented S3 access if the user had a custom policy that did not include location permission. This fix means that the work-around of adding that permission to the policy is no longer required.
144
+ * FIX: Fix a regression in 1.12.8 that prevented non-existent DreamObjects buckets from being created
145
+ * FIX: Fix inaccurate reporting of the current Vault quota usage in the report email since 1.12.8
146
+ * FIX: The short-lived 1.12.10 had a duplicate copy of the plugin in the release zip
147
+ * TWEAK: Detect a particular obscure PHP bug in some versions that is triggered by the Amazon S3 SDK, and automatically switch to the older SDK if it is hit (N.B. Not compatible with Frankfurt region).
148
+ * TWEAK: Audit/update all use of wp_remote_ functions to reflect API changes in the upcoming WP 4.6
149
+ * TWEAK: Tweak to the settings saving, to avoid a false-positive trigger of a particular rule found in some mod_security installs
150
+ * TWEAK Update bundled UDRPC library to version 1.4.5
151
+
152
+ = 1.12.9 - 11/May/2016 =
153
+
154
+ * FIX: In yesterday's 1.12.8, some previously accessible Amazon S3 buckets could no longer be accessed
155
+
156
+ = 1.12.8 - 10/May/2016 =
157
+
158
+ * FEATURE: Support S3's "infrequent access" storage class (Premium)
159
+ * FIX: Fix bug in SFTP uploading algorithm that would corrupt archives if a resumption was necessary
160
+ * TWEAK: Add information on UpdraftVault quota to reporting emails
161
+ * TWEAK: Update the bundled AWS library to version 2.8.30
162
+ * TWEAK: Update the bundled Symfony library to version 2.8.5
163
+ * TWEAK: Update the bundled phpseclib library to version 1.0.2 (which includes a fix for SFTP on PHP 5.3)
164
+ * TWEAK: Improve the overlapping runs detection when writing out individual database tables, for helping servers with huge tables without mysqldump
165
+ * TWEAK: Prevent restoration from replacing the local record of keys of remote sites to send backups to (Migrator add-on)
166
+ * TWEAK: Re-order the classes in class-zip.php, to help misbehaving XCache (and perhaps other opcode cache) instances
167
+ * TWEAK: Do not include transient update availability data in the backup (which will be immediately out-of-date)
168
+ * TWEAK: Updated the URLs of various S3-compatible providers to use SSL, where available
169
+ * TWEAK: Added an endpoint drop-down for Dreamobjects, using their new/updated endpoint (currently only one choice, but they will have more in future)
170
+ * TWEAK: Suppress a log message from UpdraftVault when that message is not in use
171
+ * TWEAK: When key creation times out in the Migrator, display the error message in the UI
172
 
173
  = 1.12.6 - 30/Apr/2016 =
174
 
182
  * TWEAK: Update bundled Select2 to version 4.0.2
183
  * TWEAK: Update UDRPC library to version 1.4.3
184
 
185
+ Older changes are found in the changelog.txt file in the plugin directory.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
 
187
  == Screenshots ==
188
 
219
 
220
 
221
  == Upgrade Notice ==
222
+ * 1.12.12: Various small updates and fixes
restorer.php CHANGED
@@ -72,8 +72,8 @@ class Updraft_Restorer extends WP_Upgrader {
72
  $this->ud_multisite_selective_restore = (is_array($restore_options) && !empty($restore_options['updraft_restore_ms_whichsites']) && $restore_options['updraft_restore_ms_whichsites'] > 0) ? $restore_options['updraft_restore_ms_whichsites'] : false;
73
  $this->ud_restore_options = $restore_options;
74
 
75
- $this->ud_foreign = (empty($info['meta_foreign'])) ? false : $info['meta_foreign'];
76
- if (isset($info['multisite'])) $this->ud_backup_is_multisite = $info['multisite'];
77
  if (isset($info['created_by_version'])) $this->created_by_version = $info['created_by_version'];
78
 
79
  parent::__construct($skin);
@@ -722,7 +722,7 @@ class Updraft_Restorer extends WP_Upgrader {
722
 
723
  $now_done = apply_filters('updraftplus_pre_restore_move_in', false, $type, $working_dir, $info, $this->ud_backup_info, $this, $wp_filesystem_dir);
724
  if (is_wp_error($now_done)) return $now_done;
725
-
726
  // A slightly ugly way of getting a particular result back
727
  if (is_string($now_done)) {
728
  $wp_filesystem_dir = $now_done;
@@ -810,7 +810,7 @@ class Updraft_Restorer extends WP_Upgrader {
810
  return new WP_Error('new_move_failed', $this->strings['new_move_failed']);
811
  }
812
  }
813
-
814
  // On the first time, create the -old directory in updraft_dir
815
  // (Old style was: On the first time, move the existing data to -old)
816
  if (!isset($this->been_restored[$type]) && empty($do_not_move_old)) {
72
  $this->ud_multisite_selective_restore = (is_array($restore_options) && !empty($restore_options['updraft_restore_ms_whichsites']) && $restore_options['updraft_restore_ms_whichsites'] > 0) ? $restore_options['updraft_restore_ms_whichsites'] : false;
73
  $this->ud_restore_options = $restore_options;
74
 
75
+ $this->ud_foreign = empty($info['meta_foreign']) ? false : $info['meta_foreign'];
76
+ if (isset($info['is_multisite'])) $this->ud_backup_is_multisite = $info['is_multisite'];
77
  if (isset($info['created_by_version'])) $this->created_by_version = $info['created_by_version'];
78
 
79
  parent::__construct($skin);
722
 
723
  $now_done = apply_filters('updraftplus_pre_restore_move_in', false, $type, $working_dir, $info, $this->ud_backup_info, $this, $wp_filesystem_dir);
724
  if (is_wp_error($now_done)) return $now_done;
725
+
726
  // A slightly ugly way of getting a particular result back
727
  if (is_string($now_done)) {
728
  $wp_filesystem_dir = $now_done;
810
  return new WP_Error('new_move_failed', $this->strings['new_move_failed']);
811
  }
812
  }
813
+
814
  // On the first time, create the -old directory in updraft_dir
815
  // (Old style was: On the first time, move the existing data to -old)
816
  if (!isset($this->been_restored[$type]) && empty($do_not_move_old)) {
updraftplus.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
4
  Plugin URI: https://updraftplus.com
5
  Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
6
  Author: UpdraftPlus.Com, DavidAnderson
7
- Version: 1.12.6
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
  Text Domain: updraftplus
4
  Plugin URI: https://updraftplus.com
5
  Description: Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.
6
  Author: UpdraftPlus.Com, DavidAnderson
7
+ Version: 1.12.12
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
  Text Domain: updraftplus
vendor/aws/aws-sdk-php/composer.json CHANGED
@@ -31,16 +31,12 @@
31
  "doctrine/cache": "~1.0",
32
  "monolog/monolog": "~1.4",
33
  "phpunit/phpunit": "~4.0",
 
34
  "symfony/yaml": "~2.1"
35
  },
36
  "autoload": {
37
  "psr-0": {
38
  "Aws": "src/"
39
  }
40
- },
41
- "extra": {
42
- "branch-alias": {
43
- "dev-master": "2.7-dev"
44
- }
45
  }
46
  }
31
  "doctrine/cache": "~1.0",
32
  "monolog/monolog": "~1.4",
33
  "phpunit/phpunit": "~4.0",
34
+ "phpunit/phpunit-mock-objects": "2.3.1",
35
  "symfony/yaml": "~2.1"
36
  },
37
  "autoload": {
38
  "psr-0": {
39
  "Aws": "src/"
40
  }
 
 
 
 
 
41
  }
42
  }
vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php CHANGED
@@ -28,7 +28,7 @@ class Aws extends ServiceBuilder
28
  /**
29
  * @var string Current version of the SDK
30
  */
31
- const VERSION = '2.7.17';
32
 
33
  /**
34
  * Create a new service locator for the AWS SDK
@@ -95,6 +95,7 @@ class Aws extends ServiceBuilder
95
  * @param string|null $namespace The namespace that the facades should be mounted to. Defaults to global namespace
96
  *
97
  * @return Aws
 
98
  */
99
  public function enableFacades($namespace = null)
100
  {
28
  /**
29
  * @var string Current version of the SDK
30
  */
31
+ const VERSION = '2.8.30';
32
 
33
  /**
34
  * Create a new service locator for the AWS SDK
95
  * @param string|null $namespace The namespace that the facades should be mounted to. Defaults to global namespace
96
  *
97
  * @return Aws
98
+ * @deprecated "Facades" are being removed in version 3.0 of the SDK.
99
  */
100
  public function enableFacades($namespace = null)
101
  {
vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php CHANGED
@@ -189,7 +189,7 @@ abstract class AbstractClient extends Client implements AwsClientInterface
189
  // Update the signature if necessary
190
  $signature = $this->getSignature();
191
  if ($signature instanceof EndpointSignatureInterface) {
192
- /** @var $signature EndpointSignatureInterface */
193
  $signature->setRegionName($region);
194
  }
195
 
189
  // Update the signature if necessary
190
  $signature = $this->getSignature();
191
  if ($signature instanceof EndpointSignatureInterface) {
192
+ /** @var EndpointSignatureInterface $signature */
193
  $signature->setRegionName($region);
194
  }
195
 
vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php CHANGED
@@ -225,6 +225,7 @@ class ClientBuilder
225
  $description = $this->updateConfigFromDescription($config);
226
  $signature = $this->getSignature($description, $config);
227
  $credentials = $this->getCredentials($config);
 
228
 
229
  // Resolve exception parser
230
  if (!$this->exceptionParser) {
@@ -234,24 +235,7 @@ class ClientBuilder
234
  // Resolve backoff strategy
235
  $backoff = $config->get(Options::BACKOFF);
236
  if ($backoff === null) {
237
- $backoff = new BackoffPlugin(
238
- // Retry failed requests up to 3 times if it is determined that the request can be retried
239
- new TruncatedBackoffStrategy(3,
240
- // Retry failed requests with 400-level responses due to throttling
241
- new ThrottlingErrorChecker($this->exceptionParser,
242
- // Retry failed requests due to transient network or cURL problems
243
- new CurlBackoffStrategy(null,
244
- // Retry failed requests with 500-level responses
245
- new HttpBackoffStrategy(array(500, 503, 509),
246
- // Retry requests that failed due to expired credentials
247
- new ExpiredCredentialsChecker($this->exceptionParser,
248
- new ExponentialBackoffStrategy()
249
- )
250
- )
251
- )
252
- )
253
- )
254
- );
255
  $config->set(Options::BACKOFF, $backoff);
256
  }
257
 
@@ -259,7 +243,7 @@ class ClientBuilder
259
  $this->addBackoffLogger($backoff, $config);
260
  }
261
 
262
- /** @var $client AwsClientInterface */
263
  $client = new $this->clientClass($credentials, $signature, $config);
264
  $client->setDescription($description);
265
 
@@ -380,37 +364,8 @@ class ClientBuilder
380
  $this->setIteratorsConfig($iterators);
381
  }
382
 
383
- // Make sure a valid region is set
384
- $region = $config->get(Options::REGION);
385
- $global = $description->getData('globalEndpoint');
386
-
387
- if (!$global && !$region) {
388
- throw new InvalidArgumentException(
389
- 'A region is required when using ' . $description->getData('serviceFullName')
390
- );
391
- } elseif ($global && !$region) {
392
- $region = 'us-east-1';
393
- $config->set(Options::REGION, 'us-east-1');
394
- }
395
-
396
- if (!$config->get(Options::BASE_URL)) {
397
- $endpoint = call_user_func(
398
- $config->get('endpoint_provider'),
399
- array(
400
- 'scheme' => $config->get(Options::SCHEME),
401
- 'region' => $region,
402
- 'service' => $config->get(Options::SERVICE)
403
- )
404
- );
405
- $config->set(Options::BASE_URL, $endpoint['endpoint']);
406
-
407
- // Set a signature if one was not explicitly provided.
408
- if (!$config->hasKey(Options::SIGNATURE)
409
- && isset($endpoint['signatureVersion'])
410
- ) {
411
- $config->set(Options::SIGNATURE, $endpoint['signatureVersion']);
412
- }
413
- }
414
 
415
  return $description;
416
  }
@@ -467,7 +422,10 @@ class ClientBuilder
467
  protected function getCredentials(Collection $config)
468
  {
469
  $credentials = $config->get(Options::CREDENTIALS);
470
- if ($credentials === false) {
 
 
 
471
  $credentials = new NullCredentials();
472
  } elseif (!$credentials instanceof CredentialsInterface) {
473
  $credentials = Credentials::factory($config);
@@ -475,4 +433,94 @@ class ClientBuilder
475
 
476
  return $credentials;
477
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
478
  }
225
  $description = $this->updateConfigFromDescription($config);
226
  $signature = $this->getSignature($description, $config);
227
  $credentials = $this->getCredentials($config);
228
+ $this->extractHttpConfig($config);
229
 
230
  // Resolve exception parser
231
  if (!$this->exceptionParser) {
235
  // Resolve backoff strategy
236
  $backoff = $config->get(Options::BACKOFF);
237
  if ($backoff === null) {
238
+ $backoff = $this->createDefaultBackoff();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
  $config->set(Options::BACKOFF, $backoff);
240
  }
241
 
243
  $this->addBackoffLogger($backoff, $config);
244
  }
245
 
246
+ /** @var AwsClientInterface $client */
247
  $client = new $this->clientClass($credentials, $signature, $config);
248
  $client->setDescription($description);
249
 
364
  $this->setIteratorsConfig($iterators);
365
  }
366
 
367
+ $this->handleRegion($config);
368
+ $this->handleEndpoint($config);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
 
370
  return $description;
371
  }
422
  protected function getCredentials(Collection $config)
423
  {
424
  $credentials = $config->get(Options::CREDENTIALS);
425
+
426
+ if (is_array($credentials)) {
427
+ $credentials = Credentials::factory($credentials);
428
+ } elseif ($credentials === false) {
429
  $credentials = new NullCredentials();
430
  } elseif (!$credentials instanceof CredentialsInterface) {
431
  $credentials = Credentials::factory($config);
433
 
434
  return $credentials;
435
  }
436
+
437
+ private function handleRegion(Collection $config)
438
+ {
439
+ // Make sure a valid region is set
440
+ $region = $config[Options::REGION];
441
+ $description = $config[Options::SERVICE_DESCRIPTION];
442
+ $global = $description->getData('globalEndpoint');
443
+
444
+ if (!$global && !$region) {
445
+ throw new InvalidArgumentException(
446
+ 'A region is required when using ' . $description->getData('serviceFullName')
447
+ );
448
+ } elseif ($global && !$region) {
449
+ $config[Options::REGION] = 'us-east-1';
450
+ }
451
+ }
452
+
453
+ private function handleEndpoint(Collection $config)
454
+ {
455
+ // Alias "endpoint" with "base_url" for forwards compatibility.
456
+ if ($config['endpoint']) {
457
+ $config[Options::BASE_URL] = $config['endpoint'];
458
+ return;
459
+ }
460
+
461
+ if ($config[Options::BASE_URL]) {
462
+ return;
463
+ }
464
+
465
+ $endpoint = call_user_func(
466
+ $config['endpoint_provider'],
467
+ array(
468
+ 'scheme' => $config[Options::SCHEME],
469
+ 'region' => $config[Options::REGION],
470
+ 'service' => $config[Options::SERVICE]
471
+ )
472
+ );
473
+
474
+ $config[Options::BASE_URL] = $endpoint['endpoint'];
475
+
476
+ // Set a signature if one was not explicitly provided.
477
+ if (!$config->hasKey(Options::SIGNATURE)
478
+ && isset($endpoint['signatureVersion'])
479
+ ) {
480
+ $config->set(Options::SIGNATURE, $endpoint['signatureVersion']);
481
+ }
482
+
483
+ // The the signing region if endpoint rule specifies one.
484
+ if (isset($endpoint['credentialScope'])) {
485
+ $scope = $endpoint['credentialScope'];
486
+ if (isset($scope['region'])) {
487
+ $config->set(Options::SIGNATURE_REGION, $scope['region']);
488
+ }
489
+ }
490
+ }
491
+
492
+ private function createDefaultBackoff()
493
+ {
494
+ return new BackoffPlugin(
495
+ // Retry failed requests up to 3 times if it is determined that the request can be retried
496
+ new TruncatedBackoffStrategy(3,
497
+ // Retry failed requests with 400-level responses due to throttling
498
+ new ThrottlingErrorChecker($this->exceptionParser,
499
+ // Retry failed requests due to transient network or cURL problems
500
+ new CurlBackoffStrategy(null,
501
+ // Retry failed requests with 500-level responses
502
+ new HttpBackoffStrategy(array(500, 503, 509),
503
+ // Retry requests that failed due to expired credentials
504
+ new ExpiredCredentialsChecker($this->exceptionParser,
505
+ new ExponentialBackoffStrategy()
506
+ )
507
+ )
508
+ )
509
+ )
510
+ )
511
+ );
512
+ }
513
+
514
+ private function extractHttpConfig(Collection $config)
515
+ {
516
+ $http = $config['http'];
517
+
518
+ if (!is_array($http)) {
519
+ return;
520
+ }
521
+
522
+ if (isset($http['verify'])) {
523
+ $config[Options::SSL_CERT] = $http['verify'];
524
+ }
525
+ }
526
  }
vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php CHANGED
@@ -42,8 +42,8 @@ class DefaultClient extends AbstractClient
42
  * Region and endpoint options (Some services do not require a region while others do. Check the service specific user guide documentation for details):
43
  *
44
  * - region: Region name (e.g. 'us-east-1', 'us-west-1', 'us-west-2', 'eu-west-1', etc...)
45
- * - scheme: URI Scheme of the base URL (e.g. 'https', 'http') used when base_url is not supplied
46
- * - base_url: Allows you to specify a custom endpoint instead of building one from the region and scheme
47
  *
48
  * Generic client options:
49
  *
42
  * Region and endpoint options (Some services do not require a region while others do. Check the service specific user guide documentation for details):
43
  *
44
  * - region: Region name (e.g. 'us-east-1', 'us-west-1', 'us-west-2', 'eu-west-1', etc...)
45
+ * - scheme: URI Scheme of the base URL (e.g. 'https', 'http') used when endpoint is not supplied
46
+ * - endpoint: Allows you to specify a custom endpoint instead of building one from the region and scheme
47
  *
48
  * Generic client options:
49
  *
vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php CHANGED
@@ -63,7 +63,7 @@ class ExpiredCredentialsChecker extends AbstractBackoffStrategy
63
  return null;
64
  }
65
 
66
- /** @var $client AwsClientInterface */
67
  $client = $request->getClient();
68
  // Only retry if the credentials can be refreshed
69
  if (!($client->getCredentials() instanceof AbstractRefreshableCredentials)) {
63
  return null;
64
  }
65
 
66
+ /** @var AwsClientInterface $client */
67
  $client = $request->getClient();
68
  // Only retry if the credentials can be refreshed
69
  if (!($client->getCredentials() instanceof AbstractRefreshableCredentials)) {
vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php CHANGED
@@ -71,7 +71,7 @@ class UploadBodyListener implements EventSubscriberInterface
71
  */
72
  public function onCommandBeforePrepare(Event $event)
73
  {
74
- /** @var $command Command */
75
  $command = $event['command'];
76
  if (in_array($command->getName(), $this->commands)) {
77
  // Get the interesting parameters
71
  */
72
  public function onCommandBeforePrepare(Event $event)
73
  {
74
+ /** @var Command $command */
75
  $command = $event['command'];
76
  if (in_array($command->getName(), $this->commands)) {
77
  // Get the interesting parameters
vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php CHANGED
@@ -99,6 +99,9 @@ class AwsQueryVisitor extends AbstractRequestVisitor
99
  // For BC, serialize empty lists for specific operations
100
  if (!$value) {
101
  if (isset($serializeEmpty[$this->fqname])) {
 
 
 
102
  $query[$prefix] = '';
103
  }
104
  return;
99
  // For BC, serialize empty lists for specific operations
100
  if (!$value) {
101
  if (isset($serializeEmpty[$this->fqname])) {
102
+ if (substr($prefix, -7) === '.member') {
103
+ $prefix = substr($prefix, 0, -7);
104
+ }
105
  $query[$prefix] = '';
106
  }
107
  return;
vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php CHANGED
@@ -21,6 +21,25 @@ namespace Aws\Common\Credentials;
21
  */
22
  abstract class AbstractRefreshableCredentials extends AbstractCredentialsDecorator
23
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  /**
25
  * {@inheritdoc}
26
  */
21
  */
22
  abstract class AbstractRefreshableCredentials extends AbstractCredentialsDecorator
23
  {
24
+ /**
25
+ * Get the underlying credentials, refreshing if necessary.
26
+ *
27
+ * @return Credentials
28
+ */
29
+ public function getCredentials()
30
+ {
31
+ if ($this->credentials->isExpired()) {
32
+ $this->refresh();
33
+ }
34
+
35
+ return new Credentials(
36
+ $this->credentials->getAccessKeyId(),
37
+ $this->credentials->getSecretKey(),
38
+ $this->credentials->getSecurityToken(),
39
+ $this->credentials->getExpiration()
40
+ );
41
+ }
42
+
43
  /**
44
  * {@inheritdoc}
45
  */
vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CacheableCredentials.php CHANGED
@@ -42,9 +42,10 @@ class CacheableCredentials extends AbstractRefreshableCredentials
42
  */
43
  public function __construct(CredentialsInterface $credentials, CacheAdapterInterface $cache, $cacheKey)
44
  {
45
- $this->credentials = $credentials;
46
  $this->cache = $cache;
47
  $this->cacheKey = $cacheKey;
 
 
48
  }
49
 
50
  /**
42
  */
43
  public function __construct(CredentialsInterface $credentials, CacheAdapterInterface $cache, $cacheKey)
44
  {
 
45
  $this->cache = $cache;
46
  $this->cacheKey = $cacheKey;
47
+
48
+ parent::__construct($credentials);
49
  }
50
 
51
  /**
vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php CHANGED
@@ -87,14 +87,22 @@ class Credentials implements CredentialsInterface, FromConfigInterface
87
  }
88
  }
89
 
90
- // Start tracking the cache key
91
- $cacheKey = $config[Options::CREDENTIALS_CACHE_KEY];
 
 
 
 
 
 
 
 
 
 
92
 
93
  // Create the credentials object
94
  if (!$config[Options::KEY] || !$config[Options::SECRET]) {
95
  $credentials = self::createFromEnvironment($config);
96
- // If no cache key was set, use the crc32 hostname of the server
97
- $cacheKey = $cacheKey ?: 'credentials_' . crc32(gethostname());
98
  } else {
99
  // Instantiate using short or long term credentials
100
  $credentials = new static(
@@ -103,8 +111,6 @@ class Credentials implements CredentialsInterface, FromConfigInterface
103
  $config[Options::TOKEN],
104
  $config[Options::TOKEN_TTD]
105
  );
106
- // If no cache key was set, use the access key ID
107
- $cacheKey = $cacheKey ?: 'credentials_' . $config[Options::KEY];
108
  }
109
 
110
  // Check if the credentials are refreshable, and if so, configure caching
@@ -143,11 +149,11 @@ class Credentials implements CredentialsInterface, FromConfigInterface
143
  $profile = self::getEnvVar(self::ENV_PROFILE) ?: 'default';
144
  }
145
 
146
- if (!file_exists($filename) || !($data = parse_ini_file($filename, true))) {
147
  throw new \RuntimeException("Invalid AWS credentials file: {$filename}.");
148
  }
149
 
150
- if (empty($data[$profile])) {
151
  throw new \RuntimeException("Invalid AWS credentials profile {$profile} in {$filename}.");
152
  }
153
 
@@ -262,7 +268,7 @@ class Credentials implements CredentialsInterface, FromConfigInterface
262
  // Get key and secret from ENV variables
263
  $envKey = self::getEnvVar(self::ENV_KEY);
264
  if (!($envSecret = self::getEnvVar(self::ENV_SECRET))) {
265
- // Use AWS_SECRET_ACCESS_KEY if AWS_SECRET_KEY was not set.
266
  $envSecret = self::getEnvVar(self::ENV_SECRET_ACCESS_KEY);
267
  }
268
 
@@ -271,17 +277,26 @@ class Credentials implements CredentialsInterface, FromConfigInterface
271
  return new static($envKey, $envSecret);
272
  }
273
 
274
- // Use credentials from the ini file in HOME directory if available
275
- $home = self::getHomeDir();
276
- if ($home && file_exists("{$home}/.aws/credentials")) {
277
- return self::fromIni($config[Options::PROFILE], "{$home}/.aws/credentials");
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  }
279
 
280
- // Use instance profile credentials (available on EC2 instances)
281
- return new RefreshableInstanceProfileCredentials(
282
- new static('', '', '', 1),
283
- $config[Options::CREDENTIALS_CLIENT]
284
- );
285
  }
286
 
287
  private static function createCache(CredentialsInterface $credentials, $cache, $cacheKey)
87
  }
88
  }
89
 
90
+ // Set up the cache
91
+ $cache = $config[Options::CREDENTIALS_CACHE];
92
+ $cacheKey = $config[Options::CREDENTIALS_CACHE_KEY] ?:
93
+ 'credentials_' . ($config[Options::KEY] ?: crc32(gethostname()));
94
+
95
+ if (
96
+ $cacheKey &&
97
+ $cache instanceof CacheAdapterInterface &&
98
+ $cached = self::createFromCache($cache, $cacheKey)
99
+ ) {
100
+ return $cached;
101
+ }
102
 
103
  // Create the credentials object
104
  if (!$config[Options::KEY] || !$config[Options::SECRET]) {
105
  $credentials = self::createFromEnvironment($config);
 
 
106
  } else {
107
  // Instantiate using short or long term credentials
108
  $credentials = new static(
111
  $config[Options::TOKEN],
112
  $config[Options::TOKEN_TTD]
113
  );
 
 
114
  }
115
 
116
  // Check if the credentials are refreshable, and if so, configure caching
149
  $profile = self::getEnvVar(self::ENV_PROFILE) ?: 'default';
150
  }
151
 
152
+ if (!is_readable($filename) || ($data = parse_ini_file($filename, true)) === false) {
153
  throw new \RuntimeException("Invalid AWS credentials file: {$filename}.");
154
  }
155
 
156
+ if (!isset($data[$profile]['aws_access_key_id']) || !isset($data[$profile]['aws_secret_access_key'])) {
157
  throw new \RuntimeException("Invalid AWS credentials profile {$profile} in {$filename}.");
158
  }
159
 
268
  // Get key and secret from ENV variables
269
  $envKey = self::getEnvVar(self::ENV_KEY);
270
  if (!($envSecret = self::getEnvVar(self::ENV_SECRET))) {
271
+ // Use AWS_SECRET_ACCESS_KEY if AWS_SECRET_KEY was not set
272
  $envSecret = self::getEnvVar(self::ENV_SECRET_ACCESS_KEY);
273
  }
274
 
277
  return new static($envKey, $envSecret);
278
  }
279
 
280
+ try {
281
+ // Use credentials from the INI file in HOME directory if available
282
+ return self::fromIni($config[Options::PROFILE]);
283
+ } catch (\RuntimeException $e) {
284
+ // Otherwise, try using instance profile credentials (available on EC2 instances)
285
+ return new RefreshableInstanceProfileCredentials(
286
+ new static('', '', '', 1),
287
+ $config[Options::CREDENTIALS_CLIENT]
288
+ );
289
+ }
290
+ }
291
+
292
+ private static function createFromCache(CacheAdapterInterface $cache, $cacheKey)
293
+ {
294
+ $cached = $cache->fetch($cacheKey);
295
+ if ($cached instanceof CredentialsInterface && !$cached->isExpired()) {
296
+ return new CacheableCredentials($cached, $cache, $cacheKey);
297
  }
298
 
299
+ return null;
 
 
 
 
300
  }
301
 
302
  private static function createCache(CredentialsInterface $credentials, $cache, $cacheKey)
vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php CHANGED
@@ -29,6 +29,8 @@ class RefreshableInstanceProfileCredentials extends AbstractRefreshableCredentia
29
  * @var InstanceMetadataClient
30
  */
31
  protected $client;
 
 
32
 
33
  /**
34
  * Constructs a new instance profile credentials decorator
@@ -38,10 +40,40 @@ class RefreshableInstanceProfileCredentials extends AbstractRefreshableCredentia
38
  */
39
  public function __construct(CredentialsInterface $credentials, InstanceMetadataClient $client = null)
40
  {
41
- $this->credentials = $credentials;
 
 
 
 
 
 
42
  $this->client = $client ?: InstanceMetadataClient::factory();
43
  }
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  /**
46
  * Attempt to get new credentials from the instance profile
47
  *
@@ -50,10 +82,10 @@ class RefreshableInstanceProfileCredentials extends AbstractRefreshableCredentia
50
  protected function refresh()
51
  {
52
  $credentials = $this->client->getInstanceProfileCredentials();
53
- // Expire the token 1 minute before it actually expires to pre-fetch before expiring
54
  $this->credentials->setAccessKeyId($credentials->getAccessKeyId())
55
  ->setSecretKey($credentials->getSecretKey())
56
  ->setSecurityToken($credentials->getSecurityToken())
57
- ->setExpiration($credentials->getExpiration());
58
  }
59
  }
29
  * @var InstanceMetadataClient
30
  */
31
  protected $client;
32
+ /** @var bool */
33
+ private $customClient;
34
 
35
  /**
36
  * Constructs a new instance profile credentials decorator
40
  */
41
  public function __construct(CredentialsInterface $credentials, InstanceMetadataClient $client = null)
42
  {
43
+ parent::__construct($credentials);
44
+ $this->setClient($client);
45
+ }
46
+
47
+ public function setClient(InstanceMetadataClient $client = null)
48
+ {
49
+ $this->customClient = null !== $client;
50
  $this->client = $client ?: InstanceMetadataClient::factory();
51
  }
52
 
53
+ public function serialize()
54
+ {
55
+ $serializable = array(
56
+ 'credentials' => parent::serialize(),
57
+ 'customClient' => $this->customClient,
58
+ );
59
+
60
+ if ($this->customClient) {
61
+ $serializable['client'] = serialize($this->client);
62
+ }
63
+
64
+ return json_encode($serializable);
65
+ }
66
+
67
+ public function unserialize($value)
68
+ {
69
+ $serialized = json_decode($value, true);
70
+ parent::unserialize($serialized['credentials']);
71
+ $this->customClient = $serialized['customClient'];
72
+ $this->client = $this->customClient ?
73
+ unserialize($serialized['client'])
74
+ : InstanceMetadataClient::factory();
75
+ }
76
+
77
  /**
78
  * Attempt to get new credentials from the instance profile
79
  *
82
  protected function refresh()
83
  {
84
  $credentials = $this->client->getInstanceProfileCredentials();
85
+ // Expire the token 5 minutes early to pre-fetch before expiring.
86
  $this->credentials->setAccessKeyId($credentials->getAccessKeyId())
87
  ->setSecretKey($credentials->getSecretKey())
88
  ->setSecurityToken($credentials->getSecurityToken())
89
+ ->setExpiration($credentials->getExpiration() - 300);
90
  }
91
  }
vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php CHANGED
@@ -24,29 +24,36 @@ use Aws\Common\Enum;
24
  class ClientOptions extends Enum
25
  {
26
  /**
27
- * @var string AWS Access Key ID
 
 
28
  */
29
  const KEY = 'key';
30
 
31
  /**
32
- * @var string AWS secret access key
 
 
33
  */
34
  const SECRET = 'secret';
35
 
36
  /**
37
- * @var string You can optionally provide a custom `Aws\Common\Credentials\CredentialsInterface` object
 
 
38
  */
39
- const CREDENTIALS = 'credentials';
40
 
41
  /**
42
- * @var string Name of a credential profile to read from your ~/.aws/credentials file
 
43
  */
44
- const PROFILE = 'profile';
45
 
46
  /**
47
- * @var string Custom AWS security token to use with request authentication
48
  */
49
- const TOKEN = 'token';
50
 
51
  /**
52
  * @var string UNIX timestamp for when the custom credentials expire
@@ -86,7 +93,10 @@ class ClientOptions extends Enum
86
  const SERVICE = 'service';
87
 
88
  /**
89
- * @var string Instead of using a `region` and `scheme`, you can specify a custom base URL for the client
 
 
 
90
  */
91
  const BASE_URL = 'base_url';
92
 
@@ -123,9 +133,10 @@ class ClientOptions extends Enum
123
  const BACKOFF_LOGGER_TEMPLATE = 'client.backoff.logger.template';
124
 
125
  /**
126
- * @var string Set to true to use the bundled CA cert or pass the full path to an SSL certificate bundle. This
127
- * option should be modified when you encounter curl error code 60. Set to "system" to use the cacert
128
- * bundle on your system.
 
129
  */
130
  const SSL_CERT = 'ssl.certificate_authority';
131
 
24
  class ClientOptions extends Enum
25
  {
26
  /**
27
+ * AWS Access Key ID
28
+ *
29
+ * @deprecated Use "credentials" instead.
30
  */
31
  const KEY = 'key';
32
 
33
  /**
34
+ * AWS secret access key
35
+ *
36
+ * @deprecated Use "credentials" instead.
37
  */
38
  const SECRET = 'secret';
39
 
40
  /**
41
+ * Custom AWS security token to use with request authentication.
42
+ *
43
+ * @deprecated Use "credentials" instead.
44
  */
45
+ const TOKEN = 'token';
46
 
47
  /**
48
+ * Provide an array of "key", "secret", and "token" or an instance of
49
+ * `Aws\Common\Credentials\CredentialsInterface`.
50
  */
51
+ const CREDENTIALS = 'credentials';
52
 
53
  /**
54
+ * @var string Name of a credential profile to read from your ~/.aws/credentials file
55
  */
56
+ const PROFILE = 'profile';
57
 
58
  /**
59
  * @var string UNIX timestamp for when the custom credentials expire
93
  const SERVICE = 'service';
94
 
95
  /**
96
+ * Instead of using a `region` and `scheme`, you can specify a custom base
97
+ * URL for the client.
98
+ *
99
+ * @deprecated Use the "endpoint" option instead.
100
  */
101
  const BASE_URL = 'base_url';
102
 
133
  const BACKOFF_LOGGER_TEMPLATE = 'client.backoff.logger.template';
134
 
135
  /**
136
+ * Set to true to use the bundled CA cert or pass the full path to an SSL
137
+ * certificate bundle. This option should be modified when you encounter
138
+ * curl error code 60. Set to "system" to use the cacert bundle on your
139
+ * system.
140
  */
141
  const SSL_CERT = 'ssl.certificate_authority';
142
 
vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php CHANGED
@@ -24,9 +24,6 @@ use Guzzle\Http\Message\Response;
24
  */
25
  class DefaultXmlExceptionParser implements ExceptionParserInterface
26
  {
27
- /**
28
- * {@inheritdoc}
29
- */
30
  public function parse(RequestInterface $request, Response $response)
31
  {
32
  $data = array(
@@ -37,13 +34,25 @@ class DefaultXmlExceptionParser implements ExceptionParserInterface
37
  'parsed' => null
38
  );
39
 
40
- if ($body = $response->getBody(true)) {
41
- $this->parseBody(new \SimpleXMLElement($body), $data);
42
- } else {
43
  $this->parseHeaders($request, $response, $data);
 
44
  }
45
 
46
- return $data;
 
 
 
 
 
 
 
 
 
 
 
47
  }
48
 
49
  /**
24
  */
25
  class DefaultXmlExceptionParser implements ExceptionParserInterface
26
  {
 
 
 
27
  public function parse(RequestInterface $request, Response $response)
28
  {
29
  $data = array(
34
  'parsed' => null
35
  );
36
 
37
+ $body = $response->getBody(true);
38
+
39
+ if (!$body) {
40
  $this->parseHeaders($request, $response, $data);
41
+ return $data;
42
  }
43
 
44
+ try {
45
+ $xml = new \SimpleXMLElement($body);
46
+ $this->parseBody($xml, $data);
47
+ return $data;
48
+ } catch (\Exception $e) {
49
+ // Gracefully handle parse errors. This could happen when the
50
+ // server responds with a non-XML response (e.g., private beta
51
+ // services).
52
+ $data['code'] = 'PhpInternalXmlParseError';
53
+ $data['message'] = 'A non-XML response was received';
54
+ return $data;
55
+ }
56
  }
57
 
58
  /**
vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php CHANGED
@@ -180,4 +180,42 @@ class ServiceResponseException extends RuntimeException
180
 
181
  return $message;
182
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  }
180
 
181
  return $message;
182
  }
183
+
184
+ /**
185
+ * Get the request ID of the error. This value is only present if a
186
+ * response was received, and is not present in the event of a networking
187
+ * error.
188
+ *
189
+ * Same as `getRequestId()` method, but matches the interface for SDKv3.
190
+ *
191
+ * @return string|null Returns null if no response was received
192
+ */
193
+ public function getAwsRequestId()
194
+ {
195
+ return $this->requestId;
196
+ }
197
+
198
+ /**
199
+ * Get the AWS error type.
200
+ *
201
+ * Same as `getExceptionType()` method, but matches the interface for SDKv3.
202
+ *
203
+ * @return string|null Returns null if no response was received
204
+ */
205
+ public function getAwsErrorType()
206
+ {
207
+ return $this->exceptionType;
208
+ }
209
+
210
+ /**
211
+ * Get the AWS error code.
212
+ *
213
+ * Same as `getExceptionCode()` method, but matches the interface for SDKv3.
214
+ *
215
+ * @return string|null Returns null if no response was received
216
+ */
217
+ public function getAwsErrorCode()
218
+ {
219
+ return $this->exceptionCode;
220
+ }
221
  }
vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php CHANGED
@@ -20,6 +20,8 @@ use Aws\Common\Aws;
20
 
21
  /**
22
  * Base facade class that handles the delegation logic
 
 
23
  */
24
  abstract class Facade implements FacadeInterface
25
  {
20
 
21
  /**
22
  * Base facade class that handles the delegation logic
23
+ *
24
+ * @deprecated "Facades" are being removed in version 3.0 of the SDK.
25
  */
26
  abstract class Facade implements FacadeInterface
27
  {
vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php CHANGED
@@ -20,6 +20,8 @@ namespace Aws\Common\Facade;
20
  * Interface that defines a client facade. Facades are convenient static classes that allow you to run client methods
21
  * statically on a default instance from the service builder. The facades themselves are aliased into the global
22
  * namespace for ease of use.
 
 
23
  */
24
  interface FacadeInterface
25
  {
20
  * Interface that defines a client facade. Facades are convenient static classes that allow you to run client methods
21
  * statically on a default instance from the service builder. The facades themselves are aliased into the global
22
  * namespace for ease of use.
23
+ *
24
+ * @deprecated "Facades" are being removed in version 3.0 of the SDK.
25
  */
26
  interface FacadeInterface
27
  {
vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php CHANGED
@@ -106,12 +106,24 @@ return array(
106
 
107
  'cognitosync' => array('extends' => 'cognito-sync'),
108
 
 
 
 
 
 
 
109
  'codedeploy' => array(
110
  'alias' => 'CodeDeploy',
111
  'extends' => 'default_settings',
112
  'class' => 'Aws\CodeDeploy\CodeDeployClient'
113
  ),
114
 
 
 
 
 
 
 
115
  'config' => array(
116
  'alias' => 'ConfigService',
117
  'extends' => 'default_settings',
@@ -124,12 +136,24 @@ return array(
124
  'class' => 'Aws\DataPipeline\DataPipelineClient'
125
  ),
126
 
 
 
 
 
 
 
127
  'directconnect' => array(
128
  'alias' => 'DirectConnect',
129
  'extends' => 'default_settings',
130
  'class' => 'Aws\DirectConnect\DirectConnectClient'
131
  ),
132
 
 
 
 
 
 
 
133
  'dynamodb' => array(
134
  'alias' => 'DynamoDb',
135
  'extends' => 'default_settings',
@@ -143,6 +167,12 @@ return array(
143
  )
144
  ),
145
 
 
 
 
 
 
 
146
  'ec2' => array(
147
  'alias' => 'Ec2',
148
  'extends' => 'default_settings',
@@ -167,6 +197,12 @@ return array(
167
  'class' => 'Aws\ElasticBeanstalk\ElasticBeanstalkClient'
168
  ),
169
 
 
 
 
 
 
 
170
  'elasticloadbalancing' => array(
171
  'alias' => 'ElasticLoadBalancing',
172
  'extends' => 'default_settings',
@@ -221,6 +257,12 @@ return array(
221
  'class' => 'Aws\ImportExport\ImportExportClient'
222
  ),
223
 
 
 
 
 
 
 
224
  'opsworks' => array(
225
  'alias' => 'OpsWorks',
226
  'extends' => 'default_settings',
@@ -281,6 +323,12 @@ return array(
281
  'class' => 'Aws\Sqs\SqsClient'
282
  ),
283
 
 
 
 
 
 
 
284
  'storagegateway' => array(
285
  'alias' => 'StorageGateway',
286
  'extends' => 'default_settings',
@@ -304,5 +352,11 @@ return array(
304
  'extends' => 'default_settings',
305
  'class' => 'Aws\Swf\SwfClient'
306
  ),
 
 
 
 
 
 
307
  )
308
  );
106
 
107
  'cognitosync' => array('extends' => 'cognito-sync'),
108
 
109
+ 'codecommit' => array(
110
+ 'alias' => 'CodeCommit',
111
+ 'extends' => 'default_settings',
112
+ 'class' => 'Aws\CodeCommit\CodeCommitClient'
113
+ ),
114
+
115
  'codedeploy' => array(
116
  'alias' => 'CodeDeploy',
117
  'extends' => 'default_settings',
118
  'class' => 'Aws\CodeDeploy\CodeDeployClient'
119
  ),
120
 
121
+ 'codepipeline' => array(
122
+ 'alias' => 'CodePipeline',
123
+ 'extends' => 'default_settings',
124
+ 'class' => 'Aws\CodePipeline\CodePipelineClient'
125
+ ),
126
+
127
  'config' => array(
128
  'alias' => 'ConfigService',
129
  'extends' => 'default_settings',
136
  'class' => 'Aws\DataPipeline\DataPipelineClient'
137
  ),
138
 
139
+ 'devicefarm' => array(
140
+ 'alias' => 'DeviceFarm',
141
+ 'extends' => 'default_settings',
142
+ 'class' => 'Aws\DeviceFarm\DeviceFarmClient'
143
+ ),
144
+
145
  'directconnect' => array(
146
  'alias' => 'DirectConnect',
147
  'extends' => 'default_settings',
148
  'class' => 'Aws\DirectConnect\DirectConnectClient'
149
  ),
150
 
151
+ 'ds' => array(
152
+ 'alias' => 'DirectoryService',
153
+ 'extends' => 'default_settings',
154
+ 'class' => 'Aws\DirectoryService\DirectoryServiceClient'
155
+ ),
156
+
157
  'dynamodb' => array(
158
  'alias' => 'DynamoDb',
159
  'extends' => 'default_settings',
167
  )
168
  ),
169
 
170
+ 'dynamodbstreams' => array(
171
+ 'alias' => 'DynamoDbStreams',
172
+ 'extends' => 'default_settings',
173
+ 'class' => 'Aws\DynamoDbStreams\DynamoDbStreamsClient'
174
+ ),
175
+
176
  'ec2' => array(
177
  'alias' => 'Ec2',
178
  'extends' => 'default_settings',
197
  'class' => 'Aws\ElasticBeanstalk\ElasticBeanstalkClient'
198
  ),
199
 
200
+ 'efs' => array(
201
+ 'alias' => 'Efs',
202
+ 'extends' => 'default_settings',
203
+ 'class' => 'Aws\Efs\EfsClient'
204
+ ),
205
+
206
  'elasticloadbalancing' => array(
207
  'alias' => 'ElasticLoadBalancing',
208
  'extends' => 'default_settings',
257
  'class' => 'Aws\ImportExport\ImportExportClient'
258
  ),
259
 
260
+ 'machinelearning' => array(
261
+ 'alias' => 'MachineLearning',
262
+ 'extends' => 'default_settings',
263
+ 'class' => 'Aws\MachineLearning\MachineLearningClient'
264
+ ),
265
+
266
  'opsworks' => array(
267
  'alias' => 'OpsWorks',
268
  'extends' => 'default_settings',
323
  'class' => 'Aws\Sqs\SqsClient'
324
  ),
325
 
326
+ 'ssm' => array(
327
+ 'alias' => 'Ssm',
328
+ 'extends' => 'default_settings',
329
+ 'class' => 'Aws\Ssm\SsmClient'
330
+ ),
331
+
332
  'storagegateway' => array(
333
  'alias' => 'StorageGateway',
334
  'extends' => 'default_settings',
352
  'extends' => 'default_settings',
353
  'class' => 'Aws\Swf\SwfClient'
354
  ),
355
+
356
+ 'workspaces' => array(
357
+ 'alias' => 'WorkSpaces',
358
+ 'extends' => 'default_settings',
359
+ 'class' => 'Aws\WorkSpaces\WorkSpacesClient'
360
+ ),
361
  )
362
  );
vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php CHANGED
@@ -19,19 +19,34 @@ return array(
19
  'endpoint' => 's3-{region}.amazonaws.com'
20
  ),
21
  '*/cloudfront' => array(
22
- 'endpoint' => 'cloudfront.amazonaws.com'
 
 
 
23
  ),
24
  '*/iam' => array(
25
- 'endpoint' => 'iam.amazonaws.com'
 
 
 
26
  ),
27
  '*/importexport' => array(
28
- 'endpoint' => 'importexport.amazonaws.com'
 
 
 
29
  ),
30
  '*/route53' => array(
31
- 'endpoint' => 'route53.amazonaws.com'
 
 
 
32
  ),
33
  '*/sts' => array(
34
- 'endpoint' => 'sts.amazonaws.com'
 
 
 
35
  ),
36
  'us-east-1/sdb' => array(
37
  'endpoint' => 'sdb.amazonaws.com'
19
  'endpoint' => 's3-{region}.amazonaws.com'
20
  ),
21
  '*/cloudfront' => array(
22
+ 'endpoint' => 'cloudfront.amazonaws.com',
23
+ 'credentialScope' => array(
24
+ 'region' => 'us-east-1'
25
+ )
26
  ),
27
  '*/iam' => array(
28
+ 'endpoint' => 'iam.amazonaws.com',
29
+ 'credentialScope' => array(
30
+ 'region' => 'us-east-1'
31
+ )
32
  ),
33
  '*/importexport' => array(
34
+ 'endpoint' => 'importexport.amazonaws.com',
35
+ 'credentialScope' => array(
36
+ 'region' => 'us-east-1'
37
+ )
38
  ),
39
  '*/route53' => array(
40
+ 'endpoint' => 'route53.amazonaws.com',
41
+ 'credentialScope' => array(
42
+ 'region' => 'us-east-1'
43
+ )
44
  ),
45
  '*/sts' => array(
46
+ 'endpoint' => 'sts.amazonaws.com',
47
+ 'credentialScope' => array(
48
+ 'region' => 'us-east-1'
49
+ )
50
  ),
51
  'us-east-1/sdb' => array(
52
  'endpoint' => 'sdb.amazonaws.com'
vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php CHANGED
@@ -16,6 +16,7 @@
16
 
17
  namespace Aws\Common\Signature;
18
 
 
19
  use Aws\Common\Credentials\CredentialsInterface;
20
  use Aws\Common\Credentials\NullCredentials;
21
  use Guzzle\Common\Event;
@@ -76,8 +77,12 @@ class SignatureListener implements EventSubscriberInterface
76
  */
77
  public function onRequestBeforeSend(Event $event)
78
  {
79
- if(!$this->credentials instanceof NullCredentials) {
80
- $this->signature->signRequest($event['request'], $this->credentials);
 
 
 
 
81
  }
82
  }
83
  }
16
 
17
  namespace Aws\Common\Signature;
18
 
19
+ use Aws\Common\Credentials\AbstractRefreshableCredentials;
20
  use Aws\Common\Credentials\CredentialsInterface;
21
  use Aws\Common\Credentials\NullCredentials;
22
  use Guzzle\Common\Event;
77
  */
78
  public function onRequestBeforeSend(Event $event)
79
  {
80
+ $creds = $this->credentials instanceof AbstractRefreshableCredentials
81
+ ? $this->credentials->getCredentials()
82
+ : $this->credentials;
83
+
84
+ if(!$creds instanceof NullCredentials) {
85
+ $this->signature->signRequest($event['request'], $creds);
86
  }
87
  }
88
  }
vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php CHANGED
@@ -270,13 +270,20 @@ class SignatureV4 extends AbstractSignature implements EndpointSignatureInterfac
270
  RequestInterface $request,
271
  CredentialsInterface $credentials
272
  ) {
273
- $sr = RequestFactory::getInstance()->cloneRequestWithMethod($request, 'GET');
274
-
275
- // Move POST fields to the query if they are present
276
- if ($request instanceof EntityEnclosingRequestInterface) {
 
 
 
 
 
277
  foreach ($request->getPostFields() as $name => $value) {
278
  $sr->getQuery()->set($name, $value);
279
  }
 
 
280
  }
281
 
282
  // Make sure to handle temporary credentials
270
  RequestInterface $request,
271
  CredentialsInterface $credentials
272
  ) {
273
+ // POST requests can be sent as GET requests instead by moving the
274
+ // POST fields into the query string.
275
+ if ($request instanceof EntityEnclosingRequestInterface
276
+ && $request->getMethod() === 'POST'
277
+ && strpos($request->getHeader('Content-Type'), 'application/x-www-form-urlencoded') === 0
278
+ ) {
279
+ $sr = RequestFactory::getInstance()
280
+ ->cloneRequestWithMethod($request, 'GET');
281
+ // Move POST fields to the query if they are present
282
  foreach ($request->getPostFields() as $name => $value) {
283
  $sr->getQuery()->set($name, $value);
284
  }
285
+ } else {
286
+ $sr = clone $request;
287
  }
288
 
289
  // Make sure to handle temporary credentials
vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php CHANGED
@@ -29,6 +29,9 @@ use Guzzle\Service\Resource\ResourceIteratorInterface;
29
  * @method Model addClientIDToOpenIDConnectProvider(array $args = array()) {@command Iam AddClientIDToOpenIDConnectProvider}
30
  * @method Model addRoleToInstanceProfile(array $args = array()) {@command Iam AddRoleToInstanceProfile}
31
  * @method Model addUserToGroup(array $args = array()) {@command Iam AddUserToGroup}
 
 
 
32
  * @method Model changePassword(array $args = array()) {@command Iam ChangePassword}
33
  * @method Model createAccessKey(array $args = array()) {@command Iam CreateAccessKey}
34
  * @method Model createAccountAlias(array $args = array()) {@command Iam CreateAccountAlias}
@@ -36,6 +39,8 @@ use Guzzle\Service\Resource\ResourceIteratorInterface;
36
  * @method Model createInstanceProfile(array $args = array()) {@command Iam CreateInstanceProfile}
37
  * @method Model createLoginProfile(array $args = array()) {@command Iam CreateLoginProfile}
38
  * @method Model createOpenIDConnectProvider(array $args = array()) {@command Iam CreateOpenIDConnectProvider}
 
 
39
  * @method Model createRole(array $args = array()) {@command Iam CreateRole}
40
  * @method Model createSAMLProvider(array $args = array()) {@command Iam CreateSAMLProvider}
41
  * @method Model createUser(array $args = array()) {@command Iam CreateUser}
@@ -49,33 +54,49 @@ use Guzzle\Service\Resource\ResourceIteratorInterface;
49
  * @method Model deleteInstanceProfile(array $args = array()) {@command Iam DeleteInstanceProfile}
50
  * @method Model deleteLoginProfile(array $args = array()) {@command Iam DeleteLoginProfile}
51
  * @method Model deleteOpenIDConnectProvider(array $args = array()) {@command Iam DeleteOpenIDConnectProvider}
 
 
52
  * @method Model deleteRole(array $args = array()) {@command Iam DeleteRole}
53
  * @method Model deleteRolePolicy(array $args = array()) {@command Iam DeleteRolePolicy}
54
  * @method Model deleteSAMLProvider(array $args = array()) {@command Iam DeleteSAMLProvider}
 
55
  * @method Model deleteServerCertificate(array $args = array()) {@command Iam DeleteServerCertificate}
56
  * @method Model deleteSigningCertificate(array $args = array()) {@command Iam DeleteSigningCertificate}
57
  * @method Model deleteUser(array $args = array()) {@command Iam DeleteUser}
58
  * @method Model deleteUserPolicy(array $args = array()) {@command Iam DeleteUserPolicy}
59
  * @method Model deleteVirtualMFADevice(array $args = array()) {@command Iam DeleteVirtualMFADevice}
 
 
 
60
  * @method Model enableMFADevice(array $args = array()) {@command Iam EnableMFADevice}
61
  * @method Model generateCredentialReport(array $args = array()) {@command Iam GenerateCredentialReport}
 
62
  * @method Model getAccountAuthorizationDetails(array $args = array()) {@command Iam GetAccountAuthorizationDetails}
63
  * @method Model getAccountPasswordPolicy(array $args = array()) {@command Iam GetAccountPasswordPolicy}
64
  * @method Model getAccountSummary(array $args = array()) {@command Iam GetAccountSummary}
 
 
65
  * @method Model getCredentialReport(array $args = array()) {@command Iam GetCredentialReport}
66
  * @method Model getGroup(array $args = array()) {@command Iam GetGroup}
67
  * @method Model getGroupPolicy(array $args = array()) {@command Iam GetGroupPolicy}
68
  * @method Model getInstanceProfile(array $args = array()) {@command Iam GetInstanceProfile}
69
  * @method Model getLoginProfile(array $args = array()) {@command Iam GetLoginProfile}
70
  * @method Model getOpenIDConnectProvider(array $args = array()) {@command Iam GetOpenIDConnectProvider}
 
 
71
  * @method Model getRole(array $args = array()) {@command Iam GetRole}
72
  * @method Model getRolePolicy(array $args = array()) {@command Iam GetRolePolicy}
73
  * @method Model getSAMLProvider(array $args = array()) {@command Iam GetSAMLProvider}
 
74
  * @method Model getServerCertificate(array $args = array()) {@command Iam GetServerCertificate}
75
  * @method Model getUser(array $args = array()) {@command Iam GetUser}
76
  * @method Model getUserPolicy(array $args = array()) {@command Iam GetUserPolicy}
77
  * @method Model listAccessKeys(array $args = array()) {@command Iam ListAccessKeys}
78
  * @method Model listAccountAliases(array $args = array()) {@command Iam ListAccountAliases}
 
 
 
 
79
  * @method Model listGroupPolicies(array $args = array()) {@command Iam ListGroupPolicies}
80
  * @method Model listGroups(array $args = array()) {@command Iam ListGroups}
81
  * @method Model listGroupsForUser(array $args = array()) {@command Iam ListGroupsForUser}
@@ -83,9 +104,12 @@ use Guzzle\Service\Resource\ResourceIteratorInterface;
83
  * @method Model listInstanceProfilesForRole(array $args = array()) {@command Iam ListInstanceProfilesForRole}
84
  * @method Model listMFADevices(array $args = array()) {@command Iam ListMFADevices}
85
  * @method Model listOpenIDConnectProviders(array $args = array()) {@command Iam ListOpenIDConnectProviders}
 
 
86
  * @method Model listRolePolicies(array $args = array()) {@command Iam ListRolePolicies}
87
  * @method Model listRoles(array $args = array()) {@command Iam ListRoles}
88
  * @method Model listSAMLProviders(array $args = array()) {@command Iam ListSAMLProviders}
 
89
  * @method Model listServerCertificates(array $args = array()) {@command Iam ListServerCertificates}
90
  * @method Model listSigningCertificates(array $args = array()) {@command Iam ListSigningCertificates}
91
  * @method Model listUserPolicies(array $args = array()) {@command Iam ListUserPolicies}
@@ -98,6 +122,9 @@ use Guzzle\Service\Resource\ResourceIteratorInterface;
98
  * @method Model removeRoleFromInstanceProfile(array $args = array()) {@command Iam RemoveRoleFromInstanceProfile}
99
  * @method Model removeUserFromGroup(array $args = array()) {@command Iam RemoveUserFromGroup}
100
  * @method Model resyncMFADevice(array $args = array()) {@command Iam ResyncMFADevice}
 
 
 
101
  * @method Model updateAccessKey(array $args = array()) {@command Iam UpdateAccessKey}
102
  * @method Model updateAccountPasswordPolicy(array $args = array()) {@command Iam UpdateAccountPasswordPolicy}
103
  * @method Model updateAssumeRolePolicy(array $args = array()) {@command Iam UpdateAssumeRolePolicy}
@@ -105,21 +132,27 @@ use Guzzle\Service\Resource\ResourceIteratorInterface;
105
  * @method Model updateLoginProfile(array $args = array()) {@command Iam UpdateLoginProfile}
106
  * @method Model updateOpenIDConnectProviderThumbprint(array $args = array()) {@command Iam UpdateOpenIDConnectProviderThumbprint}
107
  * @method Model updateSAMLProvider(array $args = array()) {@command Iam UpdateSAMLProvider}
 
108
  * @method Model updateServerCertificate(array $args = array()) {@command Iam UpdateServerCertificate}
109
  * @method Model updateSigningCertificate(array $args = array()) {@command Iam UpdateSigningCertificate}
110
  * @method Model updateUser(array $args = array()) {@command Iam UpdateUser}
 
111
  * @method Model uploadServerCertificate(array $args = array()) {@command Iam UploadServerCertificate}
112
  * @method Model uploadSigningCertificate(array $args = array()) {@command Iam UploadSigningCertificate}
113
- * @method ResourceIteratorInterface getGetAccountAuthorizationDetailsIterator(array $args = array()) The input array uses the parameters of the GetAccountAuthorizationDetails operation
114
  * @method ResourceIteratorInterface getGetGroupIterator(array $args = array()) The input array uses the parameters of the GetGroup operation
115
  * @method ResourceIteratorInterface getListAccessKeysIterator(array $args = array()) The input array uses the parameters of the ListAccessKeys operation
116
  * @method ResourceIteratorInterface getListAccountAliasesIterator(array $args = array()) The input array uses the parameters of the ListAccountAliases operation
 
 
 
 
117
  * @method ResourceIteratorInterface getListGroupPoliciesIterator(array $args = array()) The input array uses the parameters of the ListGroupPolicies operation
118
  * @method ResourceIteratorInterface getListGroupsIterator(array $args = array()) The input array uses the parameters of the ListGroups operation
119
  * @method ResourceIteratorInterface getListGroupsForUserIterator(array $args = array()) The input array uses the parameters of the ListGroupsForUser operation
120
  * @method ResourceIteratorInterface getListInstanceProfilesIterator(array $args = array()) The input array uses the parameters of the ListInstanceProfiles operation
121
  * @method ResourceIteratorInterface getListInstanceProfilesForRoleIterator(array $args = array()) The input array uses the parameters of the ListInstanceProfilesForRole operation
122
  * @method ResourceIteratorInterface getListMFADevicesIterator(array $args = array()) The input array uses the parameters of the ListMFADevices operation
 
123
  * @method ResourceIteratorInterface getListRolePoliciesIterator(array $args = array()) The input array uses the parameters of the ListRolePolicies operation
124
  * @method ResourceIteratorInterface getListRolesIterator(array $args = array()) The input array uses the parameters of the ListRoles operation
125
  * @method ResourceIteratorInterface getListSAMLProvidersIterator(array $args = array()) The input array uses the parameters of the ListSAMLProviders operation
@@ -128,9 +161,10 @@ use Guzzle\Service\Resource\ResourceIteratorInterface;
128
  * @method ResourceIteratorInterface getListUserPoliciesIterator(array $args = array()) The input array uses the parameters of the ListUserPolicies operation
129
  * @method ResourceIteratorInterface getListUsersIterator(array $args = array()) The input array uses the parameters of the ListUsers operation
130
  * @method ResourceIteratorInterface getListVirtualMFADevicesIterator(array $args = array()) The input array uses the parameters of the ListVirtualMFADevices operation
 
131
  *
132
- * @link http://docs.aws.amazon.com/aws-sdk-php/guide/latest/service-iam.html User guide
133
- * @link http://docs.aws.amazon.com/aws-sdk-php/latest/class-Aws.Iam.IamClient.html API docs
134
  */
135
  class IamClient extends AbstractClient
136
  {
@@ -142,7 +176,7 @@ class IamClient extends AbstractClient
142
  * @param array|Collection $config Client configuration data
143
  *
144
  * @return self
145
- * @link http://docs.aws.amazon.com/aws-sdk-php/guide/latest/configuration.html#client-configuration-options
146
  */
147
  public static function factory($config = array())
148
  {
29
  * @method Model addClientIDToOpenIDConnectProvider(array $args = array()) {@command Iam AddClientIDToOpenIDConnectProvider}
30
  * @method Model addRoleToInstanceProfile(array $args = array()) {@command Iam AddRoleToInstanceProfile}
31
  * @method Model addUserToGroup(array $args = array()) {@command Iam AddUserToGroup}
32
+ * @method Model attachGroupPolicy(array $args = array()) {@command Iam AttachGroupPolicy}
33
+ * @method Model attachRolePolicy(array $args = array()) {@command Iam AttachRolePolicy}
34
+ * @method Model attachUserPolicy(array $args = array()) {@command Iam AttachUserPolicy}
35
  * @method Model changePassword(array $args = array()) {@command Iam ChangePassword}
36
  * @method Model createAccessKey(array $args = array()) {@command Iam CreateAccessKey}
37
  * @method Model createAccountAlias(array $args = array()) {@command Iam CreateAccountAlias}
39
  * @method Model createInstanceProfile(array $args = array()) {@command Iam CreateInstanceProfile}
40
  * @method Model createLoginProfile(array $args = array()) {@command Iam CreateLoginProfile}
41
  * @method Model createOpenIDConnectProvider(array $args = array()) {@command Iam CreateOpenIDConnectProvider}
42
+ * @method Model createPolicy(array $args = array()) {@command Iam CreatePolicy}
43
+ * @method Model createPolicyVersion(array $args = array()) {@command Iam CreatePolicyVersion}
44
  * @method Model createRole(array $args = array()) {@command Iam CreateRole}
45
  * @method Model createSAMLProvider(array $args = array()) {@command Iam CreateSAMLProvider}
46
  * @method Model createUser(array $args = array()) {@command Iam CreateUser}
54
  * @method Model deleteInstanceProfile(array $args = array()) {@command Iam DeleteInstanceProfile}
55
  * @method Model deleteLoginProfile(array $args = array()) {@command Iam DeleteLoginProfile}
56
  * @method Model deleteOpenIDConnectProvider(array $args = array()) {@command Iam DeleteOpenIDConnectProvider}
57
+ * @method Model deletePolicy(array $args = array()) {@command Iam DeletePolicy}
58
+ * @method Model deletePolicyVersion(array $args = array()) {@command Iam DeletePolicyVersion}
59
  * @method Model deleteRole(array $args = array()) {@command Iam DeleteRole}
60
  * @method Model deleteRolePolicy(array $args = array()) {@command Iam DeleteRolePolicy}
61
  * @method Model deleteSAMLProvider(array $args = array()) {@command Iam DeleteSAMLProvider}
62
+ * @method Model deleteSSHPublicKey(array $args = array()) {@command Iam DeleteSSHPublicKey}
63
  * @method Model deleteServerCertificate(array $args = array()) {@command Iam DeleteServerCertificate}
64
  * @method Model deleteSigningCertificate(array $args = array()) {@command Iam DeleteSigningCertificate}
65
  * @method Model deleteUser(array $args = array()) {@command Iam DeleteUser}
66
  * @method Model deleteUserPolicy(array $args = array()) {@command Iam DeleteUserPolicy}
67
  * @method Model deleteVirtualMFADevice(array $args = array()) {@command Iam DeleteVirtualMFADevice}
68
+ * @method Model detachGroupPolicy(array $args = array()) {@command Iam DetachGroupPolicy}
69
+ * @method Model detachRolePolicy(array $args = array()) {@command Iam DetachRolePolicy}
70
+ * @method Model detachUserPolicy(array $args = array()) {@command Iam DetachUserPolicy}
71
  * @method Model enableMFADevice(array $args = array()) {@command Iam EnableMFADevice}
72
  * @method Model generateCredentialReport(array $args = array()) {@command Iam GenerateCredentialReport}
73
+ * @method Model getAccessKeyLastUsed(array $args = array()) {@command Iam GetAccessKeyLastUsed}
74
  * @method Model getAccountAuthorizationDetails(array $args = array()) {@command Iam GetAccountAuthorizationDetails}
75
  * @method Model getAccountPasswordPolicy(array $args = array()) {@command Iam GetAccountPasswordPolicy}
76
  * @method Model getAccountSummary(array $args = array()) {@command Iam GetAccountSummary}
77
+ * @method Model getContextKeysForCustomPolicy(array $args = array()) {@command Iam GetContextKeysForCustomPolicy}
78
+ * @method Model getContextKeysForPrincipalPolicy(array $args = array()) {@command Iam GetContextKeysForPrincipalPolicy}
79
  * @method Model getCredentialReport(array $args = array()) {@command Iam GetCredentialReport}
80
  * @method Model getGroup(array $args = array()) {@command Iam GetGroup}
81
  * @method Model getGroupPolicy(array $args = array()) {@command Iam GetGroupPolicy}
82
  * @method Model getInstanceProfile(array $args = array()) {@command Iam GetInstanceProfile}
83
  * @method Model getLoginProfile(array $args = array()) {@command Iam GetLoginProfile}
84
  * @method Model getOpenIDConnectProvider(array $args = array()) {@command Iam GetOpenIDConnectProvider}
85
+ * @method Model getPolicy(array $args = array()) {@command Iam GetPolicy}
86
+ * @method Model getPolicyVersion(array $args = array()) {@command Iam GetPolicyVersion}
87
  * @method Model getRole(array $args = array()) {@command Iam GetRole}
88
  * @method Model getRolePolicy(array $args = array()) {@command Iam GetRolePolicy}
89
  * @method Model getSAMLProvider(array $args = array()) {@command Iam GetSAMLProvider}
90
+ * @method Model getSSHPublicKey(array $args = array()) {@command Iam GetSSHPublicKey}
91
  * @method Model getServerCertificate(array $args = array()) {@command Iam GetServerCertificate}
92
  * @method Model getUser(array $args = array()) {@command Iam GetUser}
93
  * @method Model getUserPolicy(array $args = array()) {@command Iam GetUserPolicy}
94
  * @method Model listAccessKeys(array $args = array()) {@command Iam ListAccessKeys}
95
  * @method Model listAccountAliases(array $args = array()) {@command Iam ListAccountAliases}
96
+ * @method Model listAttachedGroupPolicies(array $args = array()) {@command Iam ListAttachedGroupPolicies}
97
+ * @method Model listAttachedRolePolicies(array $args = array()) {@command Iam ListAttachedRolePolicies}
98
+ * @method Model listAttachedUserPolicies(array $args = array()) {@command Iam ListAttachedUserPolicies}
99
+ * @method Model listEntitiesForPolicy(array $args = array()) {@command Iam ListEntitiesForPolicy}
100
  * @method Model listGroupPolicies(array $args = array()) {@command Iam ListGroupPolicies}
101
  * @method Model listGroups(array $args = array()) {@command Iam ListGroups}
102
  * @method Model listGroupsForUser(array $args = array()) {@command Iam ListGroupsForUser}
104
  * @method Model listInstanceProfilesForRole(array $args = array()) {@command Iam ListInstanceProfilesForRole}
105
  * @method Model listMFADevices(array $args = array()) {@command Iam ListMFADevices}
106
  * @method Model listOpenIDConnectProviders(array $args = array()) {@command Iam ListOpenIDConnectProviders}
107
+ * @method Model listPolicies(array $args = array()) {@command Iam ListPolicies}
108
+ * @method Model listPolicyVersions(array $args = array()) {@command Iam ListPolicyVersions}
109
  * @method Model listRolePolicies(array $args = array()) {@command Iam ListRolePolicies}
110
  * @method Model listRoles(array $args = array()) {@command Iam ListRoles}
111
  * @method Model listSAMLProviders(array $args = array()) {@command Iam ListSAMLProviders}
112
+ * @method Model listSSHPublicKeys(array $args = array()) {@command Iam ListSSHPublicKeys}
113
  * @method Model listServerCertificates(array $args = array()) {@command Iam ListServerCertificates}
114
  * @method Model listSigningCertificates(array $args = array()) {@command Iam ListSigningCertificates}
115
  * @method Model listUserPolicies(array $args = array()) {@command Iam ListUserPolicies}
122
  * @method Model removeRoleFromInstanceProfile(array $args = array()) {@command Iam RemoveRoleFromInstanceProfile}
123
  * @method Model removeUserFromGroup(array $args = array()) {@command Iam RemoveUserFromGroup}
124
  * @method Model resyncMFADevice(array $args = array()) {@command Iam ResyncMFADevice}
125
+ * @method Model setDefaultPolicyVersion(array $args = array()) {@command Iam SetDefaultPolicyVersion}
126
+ * @method Model simulateCustomPolicy(array $args = array()) {@command Iam SimulateCustomPolicy}
127
+ * @method Model simulatePrincipalPolicy(array $args = array()) {@command Iam SimulatePrincipalPolicy}
128
  * @method Model updateAccessKey(array $args = array()) {@command Iam UpdateAccessKey}
129
  * @method Model updateAccountPasswordPolicy(array $args = array()) {@command Iam UpdateAccountPasswordPolicy}
130
  * @method Model updateAssumeRolePolicy(array $args = array()) {@command Iam UpdateAssumeRolePolicy}
132
  * @method Model updateLoginProfile(array $args = array()) {@command Iam UpdateLoginProfile}
133
  * @method Model updateOpenIDConnectProviderThumbprint(array $args = array()) {@command Iam UpdateOpenIDConnectProviderThumbprint}
134
  * @method Model updateSAMLProvider(array $args = array()) {@command Iam UpdateSAMLProvider}
135
+ * @method Model updateSSHPublicKey(array $args = array()) {@command Iam UpdateSSHPublicKey}
136
  * @method Model updateServerCertificate(array $args = array()) {@command Iam UpdateServerCertificate}
137
  * @method Model updateSigningCertificate(array $args = array()) {@command Iam UpdateSigningCertificate}
138
  * @method Model updateUser(array $args = array()) {@command Iam UpdateUser}
139
+ * @method Model uploadSSHPublicKey(array $args = array()) {@command Iam UploadSSHPublicKey}
140
  * @method Model uploadServerCertificate(array $args = array()) {@command Iam UploadServerCertificate}
141
  * @method Model uploadSigningCertificate(array $args = array()) {@command Iam UploadSigningCertificate}
 
142
  * @method ResourceIteratorInterface getGetGroupIterator(array $args = array()) The input array uses the parameters of the GetGroup operation
143
  * @method ResourceIteratorInterface getListAccessKeysIterator(array $args = array()) The input array uses the parameters of the ListAccessKeys operation
144
  * @method ResourceIteratorInterface getListAccountAliasesIterator(array $args = array()) The input array uses the parameters of the ListAccountAliases operation
145
+ * @method ResourceIteratorInterface getListAttachedGroupPoliciesIterator(array $args = array()) The input array uses the parameters of the ListAttachedGroupPolicies operation
146
+ * @method ResourceIteratorInterface getListAttachedRolePoliciesIterator(array $args = array()) The input array uses the parameters of the ListAttachedRolePolicies operation
147
+ * @method ResourceIteratorInterface getListAttachedUserPoliciesIterator(array $args = array()) The input array uses the parameters of the ListAttachedUserPolicies operation
148
+ * @method ResourceIteratorInterface getListEntitiesForPolicyIterator(array $args = array()) The input array uses the parameters of the ListEntitiesForPolicy operation
149
  * @method ResourceIteratorInterface getListGroupPoliciesIterator(array $args = array()) The input array uses the parameters of the ListGroupPolicies operation
150
  * @method ResourceIteratorInterface getListGroupsIterator(array $args = array()) The input array uses the parameters of the ListGroups operation
151
  * @method ResourceIteratorInterface getListGroupsForUserIterator(array $args = array()) The input array uses the parameters of the ListGroupsForUser operation
152
  * @method ResourceIteratorInterface getListInstanceProfilesIterator(array $args = array()) The input array uses the parameters of the ListInstanceProfiles operation
153
  * @method ResourceIteratorInterface getListInstanceProfilesForRoleIterator(array $args = array()) The input array uses the parameters of the ListInstanceProfilesForRole operation
154
  * @method ResourceIteratorInterface getListMFADevicesIterator(array $args = array()) The input array uses the parameters of the ListMFADevices operation
155
+ * @method ResourceIteratorInterface getListPoliciesIterator(array $args = array()) The input array uses the parameters of the ListPolicies operation
156
  * @method ResourceIteratorInterface getListRolePoliciesIterator(array $args = array()) The input array uses the parameters of the ListRolePolicies operation
157
  * @method ResourceIteratorInterface getListRolesIterator(array $args = array()) The input array uses the parameters of the ListRoles operation
158
  * @method ResourceIteratorInterface getListSAMLProvidersIterator(array $args = array()) The input array uses the parameters of the ListSAMLProviders operation
161
  * @method ResourceIteratorInterface getListUserPoliciesIterator(array $args = array()) The input array uses the parameters of the ListUserPolicies operation
162
  * @method ResourceIteratorInterface getListUsersIterator(array $args = array()) The input array uses the parameters of the ListUsers operation
163
  * @method ResourceIteratorInterface getListVirtualMFADevicesIterator(array $args = array()) The input array uses the parameters of the ListVirtualMFADevices operation
164
+ * @method ResourceIteratorInterface getGetAccountAuthorizationDetailsIterator(array $args = array()) The input array uses the parameters of the GetAccountAuthorizationDetails operation
165
  *
166
+ * @link http://docs.aws.amazon.com/aws-sdk-php/v2/guide/service-iam.html User guide
167
+ * @link http://docs.aws.amazon.com/aws-sdk-php/v2/api/class-Aws.Iam.IamClient.html API docs
168
  */
169
  class IamClient extends AbstractClient
170
  {
176
  * @param array|Collection $config Client configuration data
177
  *
178
  * @return self
179
+ * @link http://docs.aws.amazon.com/aws-sdk-php/v2/guide/configuration.html#client-configuration-options
180
  */
181
  public static function factory($config = array())
182
  {
vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php CHANGED
@@ -99,14 +99,12 @@ return array (
99
  'type' => 'string',
100
  'location' => 'aws.query',
101
  'minLength' => 20,
102
- 'maxLength' => 2048,
103
  ),
104
  'ClientID' => array(
105
  'required' => true,
106
  'type' => 'string',
107
  'location' => 'aws.query',
108
  'minLength' => 1,
109
- 'maxLength' => 255,
110
  ),
111
  ),
112
  'errorResponses' => array(
@@ -122,6 +120,10 @@ return array (
122
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
123
  'class' => 'LimitExceededException',
124
  ),
 
 
 
 
125
  ),
126
  ),
127
  'AddRoleToInstanceProfile' => array(
@@ -146,14 +148,12 @@ return array (
146
  'type' => 'string',
147
  'location' => 'aws.query',
148
  'minLength' => 1,
149
- 'maxLength' => 128,
150
  ),
151
  'RoleName' => array(
152
  'required' => true,
153
  'type' => 'string',
154
  'location' => 'aws.query',
155
  'minLength' => 1,
156
- 'maxLength' => 64,
157
  ),
158
  ),
159
  'errorResponses' => array(
@@ -169,6 +169,10 @@ return array (
169
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
170
  'class' => 'LimitExceededException',
171
  ),
 
 
 
 
172
  ),
173
  ),
174
  'AddUserToGroup' => array(
@@ -193,14 +197,12 @@ return array (
193
  'type' => 'string',
194
  'location' => 'aws.query',
195
  'minLength' => 1,
196
- 'maxLength' => 128,
197
  ),
198
  'UserName' => array(
199
  'required' => true,
200
  'type' => 'string',
201
  'location' => 'aws.query',
202
  'minLength' => 1,
203
- 'maxLength' => 128,
204
  ),
205
  ),
206
  'errorResponses' => array(
@@ -212,6 +214,157 @@ return array (
212
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
213
  'class' => 'LimitExceededException',
214
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  ),
216
  ),
217
  'ChangePassword' => array(
@@ -236,14 +389,12 @@ return array (
236
  'type' => 'string',
237
  'location' => 'aws.query',
238
  'minLength' => 1,
239
- 'maxLength' => 128,
240
  ),
241
  'NewPassword' => array(
242
  'required' => true,
243
  'type' => 'string',
244
  'location' => 'aws.query',
245
  'minLength' => 1,
246
- 'maxLength' => 128,
247
  ),
248
  ),
249
  'errorResponses' => array(
@@ -267,6 +418,10 @@ return array (
267
  'reason' => 'The request was rejected because the provided password did not meet the requirements imposed by the account password policy.',
268
  'class' => 'PasswordPolicyViolationException',
269
  ),
 
 
 
 
270
  ),
271
  ),
272
  'CreateAccessKey' => array(
@@ -290,7 +445,6 @@ return array (
290
  'type' => 'string',
291
  'location' => 'aws.query',
292
  'minLength' => 1,
293
- 'maxLength' => 128,
294
  ),
295
  ),
296
  'errorResponses' => array(
@@ -302,6 +456,10 @@ return array (
302
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
303
  'class' => 'LimitExceededException',
304
  ),
 
 
 
 
305
  ),
306
  ),
307
  'CreateAccountAlias' => array(
@@ -326,7 +484,6 @@ return array (
326
  'type' => 'string',
327
  'location' => 'aws.query',
328
  'minLength' => 3,
329
- 'maxLength' => 63,
330
  ),
331
  ),
332
  'errorResponses' => array(
@@ -338,6 +495,10 @@ return array (
338
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
339
  'class' => 'LimitExceededException',
340
  ),
 
 
 
 
341
  ),
342
  ),
343
  'CreateGroup' => array(
@@ -361,14 +522,12 @@ return array (
361
  'type' => 'string',
362
  'location' => 'aws.query',
363
  'minLength' => 1,
364
- 'maxLength' => 512,
365
  ),
366
  'GroupName' => array(
367
  'required' => true,
368
  'type' => 'string',
369
  'location' => 'aws.query',
370
  'minLength' => 1,
371
- 'maxLength' => 128,
372
  ),
373
  ),
374
  'errorResponses' => array(
@@ -384,6 +543,10 @@ return array (
384
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
385
  'class' => 'NoSuchEntityException',
386
  ),
 
 
 
 
387
  ),
388
  ),
389
  'CreateInstanceProfile' => array(
@@ -408,13 +571,11 @@ return array (
408
  'type' => 'string',
409
  'location' => 'aws.query',
410
  'minLength' => 1,
411
- 'maxLength' => 128,
412
  ),
413
  'Path' => array(
414
  'type' => 'string',
415
  'location' => 'aws.query',
416
  'minLength' => 1,
417
- 'maxLength' => 512,
418
  ),
419
  ),
420
  'errorResponses' => array(
@@ -426,6 +587,10 @@ return array (
426
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
427
  'class' => 'LimitExceededException',
428
  ),
 
 
 
 
429
  ),
430
  ),
431
  'CreateLoginProfile' => array(
@@ -450,14 +615,12 @@ return array (
450
  'type' => 'string',
451
  'location' => 'aws.query',
452
  'minLength' => 1,
453
- 'maxLength' => 64,
454
  ),
455
  'Password' => array(
456
  'required' => true,
457
  'type' => 'string',
458
  'location' => 'aws.query',
459
  'minLength' => 1,
460
- 'maxLength' => 128,
461
  ),
462
  'PasswordResetRequired' => array(
463
  'type' => 'boolean',
@@ -482,6 +645,10 @@ return array (
482
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
483
  'class' => 'LimitExceededException',
484
  ),
 
 
 
 
485
  ),
486
  ),
487
  'CreateOpenIDConnectProvider' => array(
@@ -506,7 +673,6 @@ return array (
506
  'type' => 'string',
507
  'location' => 'aws.query',
508
  'minLength' => 1,
509
- 'maxLength' => 255,
510
  ),
511
  'ClientIDList' => array(
512
  'type' => 'array',
@@ -516,7 +682,6 @@ return array (
516
  'name' => 'clientIDType',
517
  'type' => 'string',
518
  'minLength' => 1,
519
- 'maxLength' => 255,
520
  ),
521
  ),
522
  'ThumbprintList' => array(
@@ -528,7 +693,6 @@ return array (
528
  'name' => 'thumbprintType',
529
  'type' => 'string',
530
  'minLength' => 40,
531
- 'maxLength' => 40,
532
  ),
533
  ),
534
  ),
@@ -545,47 +709,55 @@ return array (
545
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
546
  'class' => 'LimitExceededException',
547
  ),
 
 
 
 
548
  ),
549
  ),
550
- 'CreateRole' => array(
551
  'httpMethod' => 'POST',
552
  'uri' => '/',
553
  'class' => 'Aws\\Common\\Command\\QueryCommand',
554
- 'responseClass' => 'CreateRoleResponse',
555
  'responseType' => 'model',
556
  'parameters' => array(
557
  'Action' => array(
558
  'static' => true,
559
  'location' => 'aws.query',
560
- 'default' => 'CreateRole',
561
  ),
562
  'Version' => array(
563
  'static' => true,
564
  'location' => 'aws.query',
565
  'default' => '2010-05-08',
566
  ),
567
- 'Path' => array(
 
568
  'type' => 'string',
569
  'location' => 'aws.query',
570
  'minLength' => 1,
571
- 'maxLength' => 512,
572
  ),
573
- 'RoleName' => array(
574
- 'required' => true,
575
  'type' => 'string',
576
  'location' => 'aws.query',
577
- 'minLength' => 1,
578
- 'maxLength' => 64,
579
  ),
580
- 'AssumeRolePolicyDocument' => array(
581
  'required' => true,
582
  'type' => 'string',
583
  'location' => 'aws.query',
584
  'minLength' => 1,
585
- 'maxLength' => 131072,
 
 
 
586
  ),
587
  ),
588
  'errorResponses' => array(
 
 
 
 
589
  array(
590
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
591
  'class' => 'LimitExceededException',
@@ -598,66 +770,81 @@ return array (
598
  'reason' => 'The request was rejected because the policy document was malformed. The error message describes the specific error.',
599
  'class' => 'MalformedPolicyDocumentException',
600
  ),
 
 
 
 
601
  ),
602
  ),
603
- 'CreateSAMLProvider' => array(
604
  'httpMethod' => 'POST',
605
  'uri' => '/',
606
  'class' => 'Aws\\Common\\Command\\QueryCommand',
607
- 'responseClass' => 'CreateSAMLProviderResponse',
608
  'responseType' => 'model',
609
  'parameters' => array(
610
  'Action' => array(
611
  'static' => true,
612
  'location' => 'aws.query',
613
- 'default' => 'CreateSAMLProvider',
614
  ),
615
  'Version' => array(
616
  'static' => true,
617
  'location' => 'aws.query',
618
  'default' => '2010-05-08',
619
  ),
620
- 'SAMLMetadataDocument' => array(
621
  'required' => true,
622
  'type' => 'string',
623
  'location' => 'aws.query',
624
- 'minLength' => 1000,
625
- 'maxLength' => 10000000,
626
  ),
627
- 'Name' => array(
628
  'required' => true,
629
  'type' => 'string',
630
  'location' => 'aws.query',
631
  'minLength' => 1,
632
- 'maxLength' => 128,
 
 
 
 
633
  ),
634
  ),
635
  'errorResponses' => array(
636
  array(
637
- 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
638
- 'class' => 'InvalidInputException',
639
  ),
640
  array(
641
- 'reason' => 'The request was rejected because it attempted to create a resource that already exists.',
642
- 'class' => 'EntityAlreadyExistsException',
 
 
 
 
643
  ),
644
  array(
645
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
646
  'class' => 'LimitExceededException',
647
  ),
 
 
 
 
648
  ),
649
  ),
650
- 'CreateUser' => array(
651
  'httpMethod' => 'POST',
652
  'uri' => '/',
653
  'class' => 'Aws\\Common\\Command\\QueryCommand',
654
- 'responseClass' => 'CreateUserResponse',
655
  'responseType' => 'model',
656
  'parameters' => array(
657
  'Action' => array(
658
  'static' => true,
659
  'location' => 'aws.query',
660
- 'default' => 'CreateUser',
661
  ),
662
  'Version' => array(
663
  'static' => true,
@@ -668,14 +855,18 @@ return array (
668
  'type' => 'string',
669
  'location' => 'aws.query',
670
  'minLength' => 1,
671
- 'maxLength' => 512,
672
  ),
673
- 'UserName' => array(
 
 
 
 
 
 
674
  'required' => true,
675
  'type' => 'string',
676
  'location' => 'aws.query',
677
  'minLength' => 1,
678
- 'maxLength' => 64,
679
  ),
680
  ),
681
  'errorResponses' => array(
@@ -688,35 +879,39 @@ return array (
688
  'class' => 'EntityAlreadyExistsException',
689
  ),
690
  array(
691
- 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
692
- 'class' => 'NoSuchEntityException',
 
 
 
 
693
  ),
694
  ),
695
  ),
696
- 'CreateVirtualMFADevice' => array(
697
  'httpMethod' => 'POST',
698
  'uri' => '/',
699
  'class' => 'Aws\\Common\\Command\\QueryCommand',
700
- 'responseClass' => 'CreateVirtualMFADeviceResponse',
701
  'responseType' => 'model',
702
  'parameters' => array(
703
  'Action' => array(
704
  'static' => true,
705
  'location' => 'aws.query',
706
- 'default' => 'CreateVirtualMFADevice',
707
  ),
708
  'Version' => array(
709
  'static' => true,
710
  'location' => 'aws.query',
711
  'default' => '2010-05-08',
712
  ),
713
- 'Path' => array(
 
714
  'type' => 'string',
715
  'location' => 'aws.query',
716
- 'minLength' => 1,
717
- 'maxLength' => 512,
718
  ),
719
- 'VirtualMFADeviceName' => array(
720
  'required' => true,
721
  'type' => 'string',
722
  'location' => 'aws.query',
@@ -725,45 +920,143 @@ return array (
725
  ),
726
  'errorResponses' => array(
727
  array(
728
- 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
729
- 'class' => 'LimitExceededException',
730
  ),
731
  array(
732
  'reason' => 'The request was rejected because it attempted to create a resource that already exists.',
733
  'class' => 'EntityAlreadyExistsException',
734
  ),
 
 
 
 
 
 
 
 
735
  ),
736
  ),
737
- 'DeactivateMFADevice' => array(
738
  'httpMethod' => 'POST',
739
  'uri' => '/',
740
  'class' => 'Aws\\Common\\Command\\QueryCommand',
741
- 'responseClass' => 'EmptyOutput',
742
  'responseType' => 'model',
743
  'parameters' => array(
744
  'Action' => array(
745
  'static' => true,
746
  'location' => 'aws.query',
747
- 'default' => 'DeactivateMFADevice',
748
  ),
749
  'Version' => array(
750
  'static' => true,
751
  'location' => 'aws.query',
752
  'default' => '2010-05-08',
753
  ),
754
- 'UserName' => array(
755
- 'required' => true,
756
  'type' => 'string',
757
  'location' => 'aws.query',
758
  'minLength' => 1,
759
- 'maxLength' => 128,
760
  ),
761
- 'SerialNumber' => array(
762
  'required' => true,
763
  'type' => 'string',
764
  'location' => 'aws.query',
765
- 'minLength' => 9,
766
- 'maxLength' => 256,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
767
  ),
768
  ),
769
  'errorResponses' => array(
@@ -779,6 +1072,10 @@ return array (
779
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
780
  'class' => 'LimitExceededException',
781
  ),
 
 
 
 
782
  ),
783
  ),
784
  'DeleteAccessKey' => array(
@@ -802,14 +1099,12 @@ return array (
802
  'type' => 'string',
803
  'location' => 'aws.query',
804
  'minLength' => 1,
805
- 'maxLength' => 128,
806
  ),
807
  'AccessKeyId' => array(
808
  'required' => true,
809
  'type' => 'string',
810
  'location' => 'aws.query',
811
  'minLength' => 16,
812
- 'maxLength' => 32,
813
  ),
814
  ),
815
  'errorResponses' => array(
@@ -821,6 +1116,10 @@ return array (
821
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
822
  'class' => 'LimitExceededException',
823
  ),
 
 
 
 
824
  ),
825
  ),
826
  'DeleteAccountAlias' => array(
@@ -845,7 +1144,6 @@ return array (
845
  'type' => 'string',
846
  'location' => 'aws.query',
847
  'minLength' => 3,
848
- 'maxLength' => 63,
849
  ),
850
  ),
851
  'errorResponses' => array(
@@ -857,6 +1155,10 @@ return array (
857
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
858
  'class' => 'LimitExceededException',
859
  ),
 
 
 
 
860
  ),
861
  ),
862
  'DeleteAccountPasswordPolicy' => array(
@@ -886,6 +1188,10 @@ return array (
886
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
887
  'class' => 'LimitExceededException',
888
  ),
 
 
 
 
889
  ),
890
  ),
891
  'DeleteGroup' => array(
@@ -910,7 +1216,6 @@ return array (
910
  'type' => 'string',
911
  'location' => 'aws.query',
912
  'minLength' => 1,
913
- 'maxLength' => 128,
914
  ),
915
  ),
916
  'errorResponses' => array(
@@ -926,6 +1231,10 @@ return array (
926
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
927
  'class' => 'LimitExceededException',
928
  ),
 
 
 
 
929
  ),
930
  ),
931
  'DeleteGroupPolicy' => array(
@@ -950,14 +1259,12 @@ return array (
950
  'type' => 'string',
951
  'location' => 'aws.query',
952
  'minLength' => 1,
953
- 'maxLength' => 128,
954
  ),
955
  'PolicyName' => array(
956
  'required' => true,
957
  'type' => 'string',
958
  'location' => 'aws.query',
959
  'minLength' => 1,
960
- 'maxLength' => 128,
961
  ),
962
  ),
963
  'errorResponses' => array(
@@ -969,6 +1276,10 @@ return array (
969
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
970
  'class' => 'LimitExceededException',
971
  ),
 
 
 
 
972
  ),
973
  ),
974
  'DeleteInstanceProfile' => array(
@@ -993,7 +1304,6 @@ return array (
993
  'type' => 'string',
994
  'location' => 'aws.query',
995
  'minLength' => 1,
996
- 'maxLength' => 128,
997
  ),
998
  ),
999
  'errorResponses' => array(
@@ -1009,6 +1319,10 @@ return array (
1009
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1010
  'class' => 'LimitExceededException',
1011
  ),
 
 
 
 
1012
  ),
1013
  ),
1014
  'DeleteLoginProfile' => array(
@@ -1033,7 +1347,6 @@ return array (
1033
  'type' => 'string',
1034
  'location' => 'aws.query',
1035
  'minLength' => 1,
1036
- 'maxLength' => 64,
1037
  ),
1038
  ),
1039
  'errorResponses' => array(
@@ -1049,6 +1362,10 @@ return array (
1049
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1050
  'class' => 'LimitExceededException',
1051
  ),
 
 
 
 
1052
  ),
1053
  ),
1054
  'DeleteOpenIDConnectProvider' => array(
@@ -1073,7 +1390,6 @@ return array (
1073
  'type' => 'string',
1074
  'location' => 'aws.query',
1075
  'minLength' => 20,
1076
- 'maxLength' => 2048,
1077
  ),
1078
  ),
1079
  'errorResponses' => array(
@@ -1085,6 +1401,109 @@ return array (
1085
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1086
  'class' => 'NoSuchEntityException',
1087
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1088
  ),
1089
  ),
1090
  'DeleteRole' => array(
@@ -1109,7 +1528,6 @@ return array (
1109
  'type' => 'string',
1110
  'location' => 'aws.query',
1111
  'minLength' => 1,
1112
- 'maxLength' => 64,
1113
  ),
1114
  ),
1115
  'errorResponses' => array(
@@ -1125,6 +1543,10 @@ return array (
1125
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1126
  'class' => 'LimitExceededException',
1127
  ),
 
 
 
 
1128
  ),
1129
  ),
1130
  'DeleteRolePolicy' => array(
@@ -1149,14 +1571,12 @@ return array (
1149
  'type' => 'string',
1150
  'location' => 'aws.query',
1151
  'minLength' => 1,
1152
- 'maxLength' => 64,
1153
  ),
1154
  'PolicyName' => array(
1155
  'required' => true,
1156
  'type' => 'string',
1157
  'location' => 'aws.query',
1158
  'minLength' => 1,
1159
- 'maxLength' => 128,
1160
  ),
1161
  ),
1162
  'errorResponses' => array(
@@ -1168,6 +1588,10 @@ return array (
1168
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1169
  'class' => 'LimitExceededException',
1170
  ),
 
 
 
 
1171
  ),
1172
  ),
1173
  'DeleteSAMLProvider' => array(
@@ -1192,7 +1616,6 @@ return array (
1192
  'type' => 'string',
1193
  'location' => 'aws.query',
1194
  'minLength' => 20,
1195
- 'maxLength' => 2048,
1196
  ),
1197
  ),
1198
  'errorResponses' => array(
@@ -1208,6 +1631,47 @@ return array (
1208
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1209
  'class' => 'NoSuchEntityException',
1210
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1211
  ),
1212
  ),
1213
  'DeleteServerCertificate' => array(
@@ -1232,7 +1696,6 @@ return array (
1232
  'type' => 'string',
1233
  'location' => 'aws.query',
1234
  'minLength' => 1,
1235
- 'maxLength' => 128,
1236
  ),
1237
  ),
1238
  'errorResponses' => array(
@@ -1248,6 +1711,10 @@ return array (
1248
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1249
  'class' => 'LimitExceededException',
1250
  ),
 
 
 
 
1251
  ),
1252
  ),
1253
  'DeleteSigningCertificate' => array(
@@ -1271,14 +1738,12 @@ return array (
1271
  'type' => 'string',
1272
  'location' => 'aws.query',
1273
  'minLength' => 1,
1274
- 'maxLength' => 128,
1275
  ),
1276
  'CertificateId' => array(
1277
  'required' => true,
1278
  'type' => 'string',
1279
  'location' => 'aws.query',
1280
  'minLength' => 24,
1281
- 'maxLength' => 128,
1282
  ),
1283
  ),
1284
  'errorResponses' => array(
@@ -1290,6 +1755,10 @@ return array (
1290
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1291
  'class' => 'LimitExceededException',
1292
  ),
 
 
 
 
1293
  ),
1294
  ),
1295
  'DeleteUser' => array(
@@ -1314,7 +1783,6 @@ return array (
1314
  'type' => 'string',
1315
  'location' => 'aws.query',
1316
  'minLength' => 1,
1317
- 'maxLength' => 128,
1318
  ),
1319
  ),
1320
  'errorResponses' => array(
@@ -1330,6 +1798,10 @@ return array (
1330
  'reason' => 'The request was rejected because it attempted to delete a resource that has attached subordinate entities. The error message describes these entities.',
1331
  'class' => 'DeleteConflictException',
1332
  ),
 
 
 
 
1333
  ),
1334
  ),
1335
  'DeleteUserPolicy' => array(
@@ -1354,14 +1826,12 @@ return array (
1354
  'type' => 'string',
1355
  'location' => 'aws.query',
1356
  'minLength' => 1,
1357
- 'maxLength' => 128,
1358
  ),
1359
  'PolicyName' => array(
1360
  'required' => true,
1361
  'type' => 'string',
1362
  'location' => 'aws.query',
1363
  'minLength' => 1,
1364
- 'maxLength' => 128,
1365
  ),
1366
  ),
1367
  'errorResponses' => array(
@@ -1373,6 +1843,10 @@ return array (
1373
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1374
  'class' => 'LimitExceededException',
1375
  ),
 
 
 
 
1376
  ),
1377
  ),
1378
  'DeleteVirtualMFADevice' => array(
@@ -1397,7 +1871,6 @@ return array (
1397
  'type' => 'string',
1398
  'location' => 'aws.query',
1399
  'minLength' => 9,
1400
- 'maxLength' => 256,
1401
  ),
1402
  ),
1403
  'errorResponses' => array(
@@ -1413,9 +1886,13 @@ return array (
1413
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1414
  'class' => 'LimitExceededException',
1415
  ),
 
 
 
 
1416
  ),
1417
  ),
1418
- 'EnableMFADevice' => array(
1419
  'httpMethod' => 'POST',
1420
  'uri' => '/',
1421
  'class' => 'Aws\\Common\\Command\\QueryCommand',
@@ -1425,40 +1902,183 @@ return array (
1425
  'Action' => array(
1426
  'static' => true,
1427
  'location' => 'aws.query',
1428
- 'default' => 'EnableMFADevice',
1429
  ),
1430
  'Version' => array(
1431
  'static' => true,
1432
  'location' => 'aws.query',
1433
  'default' => '2010-05-08',
1434
  ),
1435
- 'UserName' => array(
1436
  'required' => true,
1437
  'type' => 'string',
1438
  'location' => 'aws.query',
1439
  'minLength' => 1,
1440
- 'maxLength' => 128,
1441
  ),
1442
- 'SerialNumber' => array(
1443
  'required' => true,
1444
  'type' => 'string',
1445
  'location' => 'aws.query',
1446
- 'minLength' => 9,
1447
- 'maxLength' => 256,
1448
  ),
1449
- 'AuthenticationCode1' => array(
1450
- 'required' => true,
1451
- 'type' => 'string',
1452
- 'location' => 'aws.query',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1453
  'minLength' => 6,
1454
- 'maxLength' => 6,
1455
  ),
1456
  'AuthenticationCode2' => array(
1457
  'required' => true,
1458
  'type' => 'string',
1459
  'location' => 'aws.query',
1460
  'minLength' => 6,
1461
- 'maxLength' => 6,
1462
  ),
1463
  ),
1464
  'errorResponses' => array(
@@ -1482,6 +2102,10 @@ return array (
1482
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1483
  'class' => 'NoSuchEntityException',
1484
  ),
 
 
 
 
1485
  ),
1486
  ),
1487
  'GenerateCredentialReport' => array(
@@ -1507,6 +2131,41 @@ return array (
1507
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1508
  'class' => 'LimitExceededException',
1509
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1510
  ),
1511
  ),
1512
  'GetAccountAuthorizationDetails' => array(
@@ -1545,7 +2204,12 @@ return array (
1545
  'type' => 'string',
1546
  'location' => 'aws.query',
1547
  'minLength' => 1,
1548
- 'maxLength' => 320,
 
 
 
 
 
1549
  ),
1550
  ),
1551
  ),
@@ -1572,6 +2236,10 @@ return array (
1572
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1573
  'class' => 'NoSuchEntityException',
1574
  ),
 
 
 
 
1575
  ),
1576
  ),
1577
  'GetAccountSummary' => array(
@@ -1592,6 +2260,93 @@ return array (
1592
  'default' => '2010-05-08',
1593
  ),
1594
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1595
  ),
1596
  'GetCredentialReport' => array(
1597
  'httpMethod' => 'POST',
@@ -1617,13 +2372,17 @@ return array (
1617
  'class' => 'CredentialReportNotPresentException',
1618
  ),
1619
  array(
1620
- 'reason' => 'The request was rejected because the most recent credential report has expired. To generate a new credential report, use GenerateCredentialReport. For more information about credential report expiration, see Getting Credential Reports in the Using IAM guide.',
1621
  'class' => 'CredentialReportExpiredException',
1622
  ),
1623
  array(
1624
  'reason' => 'The request was rejected because the credential report is still being generated.',
1625
  'class' => 'CredentialReportNotReadyException',
1626
  ),
 
 
 
 
1627
  ),
1628
  ),
1629
  'GetGroup' => array(
@@ -1648,13 +2407,11 @@ return array (
1648
  'type' => 'string',
1649
  'location' => 'aws.query',
1650
  'minLength' => 1,
1651
- 'maxLength' => 128,
1652
  ),
1653
  'Marker' => array(
1654
  'type' => 'string',
1655
  'location' => 'aws.query',
1656
  'minLength' => 1,
1657
- 'maxLength' => 320,
1658
  ),
1659
  'MaxItems' => array(
1660
  'type' => 'numeric',
@@ -1668,6 +2425,10 @@ return array (
1668
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1669
  'class' => 'NoSuchEntityException',
1670
  ),
 
 
 
 
1671
  ),
1672
  ),
1673
  'GetGroupPolicy' => array(
@@ -1692,14 +2453,12 @@ return array (
1692
  'type' => 'string',
1693
  'location' => 'aws.query',
1694
  'minLength' => 1,
1695
- 'maxLength' => 128,
1696
  ),
1697
  'PolicyName' => array(
1698
  'required' => true,
1699
  'type' => 'string',
1700
  'location' => 'aws.query',
1701
  'minLength' => 1,
1702
- 'maxLength' => 128,
1703
  ),
1704
  ),
1705
  'errorResponses' => array(
@@ -1707,6 +2466,10 @@ return array (
1707
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1708
  'class' => 'NoSuchEntityException',
1709
  ),
 
 
 
 
1710
  ),
1711
  ),
1712
  'GetInstanceProfile' => array(
@@ -1731,7 +2494,6 @@ return array (
1731
  'type' => 'string',
1732
  'location' => 'aws.query',
1733
  'minLength' => 1,
1734
- 'maxLength' => 128,
1735
  ),
1736
  ),
1737
  'errorResponses' => array(
@@ -1739,7 +2501,11 @@ return array (
1739
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1740
  'class' => 'NoSuchEntityException',
1741
  ),
1742
- ),
 
 
 
 
1743
  ),
1744
  'GetLoginProfile' => array(
1745
  'httpMethod' => 'POST',
@@ -1763,7 +2529,6 @@ return array (
1763
  'type' => 'string',
1764
  'location' => 'aws.query',
1765
  'minLength' => 1,
1766
- 'maxLength' => 64,
1767
  ),
1768
  ),
1769
  'errorResponses' => array(
@@ -1771,67 +2536,437 @@ return array (
1771
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1772
  'class' => 'NoSuchEntityException',
1773
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  'type' => 'string',
100
  'location' => 'aws.query',
101
  'minLength' => 20,
 
102
  ),
103
  'ClientID' => array(
104
  'required' => true,
105
  'type' => 'string',
106
  'location' => 'aws.query',
107
  'minLength' => 1,
 
108
  ),
109
  ),
110
  'errorResponses' => array(
120
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
121
  'class' => 'LimitExceededException',
122
  ),
123
+ array(
124
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
125
+ 'class' => 'ServiceFailureException',
126
+ ),
127
  ),
128
  ),
129
  'AddRoleToInstanceProfile' => array(
148
  'type' => 'string',
149
  'location' => 'aws.query',
150
  'minLength' => 1,
 
151
  ),
152
  'RoleName' => array(
153
  'required' => true,
154
  'type' => 'string',
155
  'location' => 'aws.query',
156
  'minLength' => 1,
 
157
  ),
158
  ),
159
  'errorResponses' => array(
169
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
170
  'class' => 'LimitExceededException',
171
  ),
172
+ array(
173
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
174
+ 'class' => 'ServiceFailureException',
175
+ ),
176
  ),
177
  ),
178
  'AddUserToGroup' => array(
197
  'type' => 'string',
198
  'location' => 'aws.query',
199
  'minLength' => 1,
 
200
  ),
201
  'UserName' => array(
202
  'required' => true,
203
  'type' => 'string',
204
  'location' => 'aws.query',
205
  'minLength' => 1,
 
206
  ),
207
  ),
208
  'errorResponses' => array(
214
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
215
  'class' => 'LimitExceededException',
216
  ),
217
+ array(
218
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
219
+ 'class' => 'ServiceFailureException',
220
+ ),
221
+ ),
222
+ ),
223
+ 'AttachGroupPolicy' => array(
224
+ 'httpMethod' => 'POST',
225
+ 'uri' => '/',
226
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
227
+ 'responseClass' => 'EmptyOutput',
228
+ 'responseType' => 'model',
229
+ 'parameters' => array(
230
+ 'Action' => array(
231
+ 'static' => true,
232
+ 'location' => 'aws.query',
233
+ 'default' => 'AttachGroupPolicy',
234
+ ),
235
+ 'Version' => array(
236
+ 'static' => true,
237
+ 'location' => 'aws.query',
238
+ 'default' => '2010-05-08',
239
+ ),
240
+ 'GroupName' => array(
241
+ 'required' => true,
242
+ 'type' => 'string',
243
+ 'location' => 'aws.query',
244
+ 'minLength' => 1,
245
+ ),
246
+ 'PolicyArn' => array(
247
+ 'required' => true,
248
+ 'type' => 'string',
249
+ 'location' => 'aws.query',
250
+ 'minLength' => 20,
251
+ ),
252
+ ),
253
+ 'errorResponses' => array(
254
+ array(
255
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
256
+ 'class' => 'NoSuchEntityException',
257
+ ),
258
+ array(
259
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
260
+ 'class' => 'LimitExceededException',
261
+ ),
262
+ array(
263
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
264
+ 'class' => 'InvalidInputException',
265
+ ),
266
+ array(
267
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
268
+ 'class' => 'ServiceFailureException',
269
+ ),
270
+ ),
271
+ ),
272
+ 'AttachRolePolicy' => array(
273
+ 'httpMethod' => 'POST',
274
+ 'uri' => '/',
275
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
276
+ 'responseClass' => 'EmptyOutput',
277
+ 'responseType' => 'model',
278
+ 'parameters' => array(
279
+ 'Action' => array(
280
+ 'static' => true,
281
+ 'location' => 'aws.query',
282
+ 'default' => 'AttachRolePolicy',
283
+ ),
284
+ 'Version' => array(
285
+ 'static' => true,
286
+ 'location' => 'aws.query',
287
+ 'default' => '2010-05-08',
288
+ ),
289
+ 'RoleName' => array(
290
+ 'required' => true,
291
+ 'type' => 'string',
292
+ 'location' => 'aws.query',
293
+ 'minLength' => 1,
294
+ ),
295
+ 'PolicyArn' => array(
296
+ 'required' => true,
297
+ 'type' => 'string',
298
+ 'location' => 'aws.query',
299
+ 'minLength' => 20,
300
+ ),
301
+ ),
302
+ 'errorResponses' => array(
303
+ array(
304
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
305
+ 'class' => 'NoSuchEntityException',
306
+ ),
307
+ array(
308
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
309
+ 'class' => 'LimitExceededException',
310
+ ),
311
+ array(
312
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
313
+ 'class' => 'InvalidInputException',
314
+ ),
315
+ array(
316
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
317
+ 'class' => 'ServiceFailureException',
318
+ ),
319
+ ),
320
+ ),
321
+ 'AttachUserPolicy' => array(
322
+ 'httpMethod' => 'POST',
323
+ 'uri' => '/',
324
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
325
+ 'responseClass' => 'EmptyOutput',
326
+ 'responseType' => 'model',
327
+ 'parameters' => array(
328
+ 'Action' => array(
329
+ 'static' => true,
330
+ 'location' => 'aws.query',
331
+ 'default' => 'AttachUserPolicy',
332
+ ),
333
+ 'Version' => array(
334
+ 'static' => true,
335
+ 'location' => 'aws.query',
336
+ 'default' => '2010-05-08',
337
+ ),
338
+ 'UserName' => array(
339
+ 'required' => true,
340
+ 'type' => 'string',
341
+ 'location' => 'aws.query',
342
+ 'minLength' => 1,
343
+ ),
344
+ 'PolicyArn' => array(
345
+ 'required' => true,
346
+ 'type' => 'string',
347
+ 'location' => 'aws.query',
348
+ 'minLength' => 20,
349
+ ),
350
+ ),
351
+ 'errorResponses' => array(
352
+ array(
353
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
354
+ 'class' => 'NoSuchEntityException',
355
+ ),
356
+ array(
357
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
358
+ 'class' => 'LimitExceededException',
359
+ ),
360
+ array(
361
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
362
+ 'class' => 'InvalidInputException',
363
+ ),
364
+ array(
365
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
366
+ 'class' => 'ServiceFailureException',
367
+ ),
368
  ),
369
  ),
370
  'ChangePassword' => array(
389
  'type' => 'string',
390
  'location' => 'aws.query',
391
  'minLength' => 1,
 
392
  ),
393
  'NewPassword' => array(
394
  'required' => true,
395
  'type' => 'string',
396
  'location' => 'aws.query',
397
  'minLength' => 1,
 
398
  ),
399
  ),
400
  'errorResponses' => array(
418
  'reason' => 'The request was rejected because the provided password did not meet the requirements imposed by the account password policy.',
419
  'class' => 'PasswordPolicyViolationException',
420
  ),
421
+ array(
422
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
423
+ 'class' => 'ServiceFailureException',
424
+ ),
425
  ),
426
  ),
427
  'CreateAccessKey' => array(
445
  'type' => 'string',
446
  'location' => 'aws.query',
447
  'minLength' => 1,
 
448
  ),
449
  ),
450
  'errorResponses' => array(
456
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
457
  'class' => 'LimitExceededException',
458
  ),
459
+ array(
460
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
461
+ 'class' => 'ServiceFailureException',
462
+ ),
463
  ),
464
  ),
465
  'CreateAccountAlias' => array(
484
  'type' => 'string',
485
  'location' => 'aws.query',
486
  'minLength' => 3,
 
487
  ),
488
  ),
489
  'errorResponses' => array(
495
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
496
  'class' => 'LimitExceededException',
497
  ),
498
+ array(
499
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
500
+ 'class' => 'ServiceFailureException',
501
+ ),
502
  ),
503
  ),
504
  'CreateGroup' => array(
522
  'type' => 'string',
523
  'location' => 'aws.query',
524
  'minLength' => 1,
 
525
  ),
526
  'GroupName' => array(
527
  'required' => true,
528
  'type' => 'string',
529
  'location' => 'aws.query',
530
  'minLength' => 1,
 
531
  ),
532
  ),
533
  'errorResponses' => array(
543
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
544
  'class' => 'NoSuchEntityException',
545
  ),
546
+ array(
547
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
548
+ 'class' => 'ServiceFailureException',
549
+ ),
550
  ),
551
  ),
552
  'CreateInstanceProfile' => array(
571
  'type' => 'string',
572
  'location' => 'aws.query',
573
  'minLength' => 1,
 
574
  ),
575
  'Path' => array(
576
  'type' => 'string',
577
  'location' => 'aws.query',
578
  'minLength' => 1,
 
579
  ),
580
  ),
581
  'errorResponses' => array(
587
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
588
  'class' => 'LimitExceededException',
589
  ),
590
+ array(
591
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
592
+ 'class' => 'ServiceFailureException',
593
+ ),
594
  ),
595
  ),
596
  'CreateLoginProfile' => array(
615
  'type' => 'string',
616
  'location' => 'aws.query',
617
  'minLength' => 1,
 
618
  ),
619
  'Password' => array(
620
  'required' => true,
621
  'type' => 'string',
622
  'location' => 'aws.query',
623
  'minLength' => 1,
 
624
  ),
625
  'PasswordResetRequired' => array(
626
  'type' => 'boolean',
645
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
646
  'class' => 'LimitExceededException',
647
  ),
648
+ array(
649
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
650
+ 'class' => 'ServiceFailureException',
651
+ ),
652
  ),
653
  ),
654
  'CreateOpenIDConnectProvider' => array(
673
  'type' => 'string',
674
  'location' => 'aws.query',
675
  'minLength' => 1,
 
676
  ),
677
  'ClientIDList' => array(
678
  'type' => 'array',
682
  'name' => 'clientIDType',
683
  'type' => 'string',
684
  'minLength' => 1,
 
685
  ),
686
  ),
687
  'ThumbprintList' => array(
693
  'name' => 'thumbprintType',
694
  'type' => 'string',
695
  'minLength' => 40,
 
696
  ),
697
  ),
698
  ),
709
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
710
  'class' => 'LimitExceededException',
711
  ),
712
+ array(
713
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
714
+ 'class' => 'ServiceFailureException',
715
+ ),
716
  ),
717
  ),
718
+ 'CreatePolicy' => array(
719
  'httpMethod' => 'POST',
720
  'uri' => '/',
721
  'class' => 'Aws\\Common\\Command\\QueryCommand',
722
+ 'responseClass' => 'CreatePolicyResponse',
723
  'responseType' => 'model',
724
  'parameters' => array(
725
  'Action' => array(
726
  'static' => true,
727
  'location' => 'aws.query',
728
+ 'default' => 'CreatePolicy',
729
  ),
730
  'Version' => array(
731
  'static' => true,
732
  'location' => 'aws.query',
733
  'default' => '2010-05-08',
734
  ),
735
+ 'PolicyName' => array(
736
+ 'required' => true,
737
  'type' => 'string',
738
  'location' => 'aws.query',
739
  'minLength' => 1,
 
740
  ),
741
+ 'Path' => array(
 
742
  'type' => 'string',
743
  'location' => 'aws.query',
 
 
744
  ),
745
+ 'PolicyDocument' => array(
746
  'required' => true,
747
  'type' => 'string',
748
  'location' => 'aws.query',
749
  'minLength' => 1,
750
+ ),
751
+ 'Description' => array(
752
+ 'type' => 'string',
753
+ 'location' => 'aws.query',
754
  ),
755
  ),
756
  'errorResponses' => array(
757
+ array(
758
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
759
+ 'class' => 'InvalidInputException',
760
+ ),
761
  array(
762
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
763
  'class' => 'LimitExceededException',
770
  'reason' => 'The request was rejected because the policy document was malformed. The error message describes the specific error.',
771
  'class' => 'MalformedPolicyDocumentException',
772
  ),
773
+ array(
774
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
775
+ 'class' => 'ServiceFailureException',
776
+ ),
777
  ),
778
  ),
779
+ 'CreatePolicyVersion' => array(
780
  'httpMethod' => 'POST',
781
  'uri' => '/',
782
  'class' => 'Aws\\Common\\Command\\QueryCommand',
783
+ 'responseClass' => 'CreatePolicyVersionResponse',
784
  'responseType' => 'model',
785
  'parameters' => array(
786
  'Action' => array(
787
  'static' => true,
788
  'location' => 'aws.query',
789
+ 'default' => 'CreatePolicyVersion',
790
  ),
791
  'Version' => array(
792
  'static' => true,
793
  'location' => 'aws.query',
794
  'default' => '2010-05-08',
795
  ),
796
+ 'PolicyArn' => array(
797
  'required' => true,
798
  'type' => 'string',
799
  'location' => 'aws.query',
800
+ 'minLength' => 20,
 
801
  ),
802
+ 'PolicyDocument' => array(
803
  'required' => true,
804
  'type' => 'string',
805
  'location' => 'aws.query',
806
  'minLength' => 1,
807
+ ),
808
+ 'SetAsDefault' => array(
809
+ 'type' => 'boolean',
810
+ 'format' => 'boolean-string',
811
+ 'location' => 'aws.query',
812
  ),
813
  ),
814
  'errorResponses' => array(
815
  array(
816
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
817
+ 'class' => 'NoSuchEntityException',
818
  ),
819
  array(
820
+ 'reason' => 'The request was rejected because the policy document was malformed. The error message describes the specific error.',
821
+ 'class' => 'MalformedPolicyDocumentException',
822
+ ),
823
+ array(
824
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
825
+ 'class' => 'InvalidInputException',
826
  ),
827
  array(
828
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
829
  'class' => 'LimitExceededException',
830
  ),
831
+ array(
832
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
833
+ 'class' => 'ServiceFailureException',
834
+ ),
835
  ),
836
  ),
837
+ 'CreateRole' => array(
838
  'httpMethod' => 'POST',
839
  'uri' => '/',
840
  'class' => 'Aws\\Common\\Command\\QueryCommand',
841
+ 'responseClass' => 'CreateRoleResponse',
842
  'responseType' => 'model',
843
  'parameters' => array(
844
  'Action' => array(
845
  'static' => true,
846
  'location' => 'aws.query',
847
+ 'default' => 'CreateRole',
848
  ),
849
  'Version' => array(
850
  'static' => true,
855
  'type' => 'string',
856
  'location' => 'aws.query',
857
  'minLength' => 1,
 
858
  ),
859
+ 'RoleName' => array(
860
+ 'required' => true,
861
+ 'type' => 'string',
862
+ 'location' => 'aws.query',
863
+ 'minLength' => 1,
864
+ ),
865
+ 'AssumeRolePolicyDocument' => array(
866
  'required' => true,
867
  'type' => 'string',
868
  'location' => 'aws.query',
869
  'minLength' => 1,
 
870
  ),
871
  ),
872
  'errorResponses' => array(
879
  'class' => 'EntityAlreadyExistsException',
880
  ),
881
  array(
882
+ 'reason' => 'The request was rejected because the policy document was malformed. The error message describes the specific error.',
883
+ 'class' => 'MalformedPolicyDocumentException',
884
+ ),
885
+ array(
886
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
887
+ 'class' => 'ServiceFailureException',
888
  ),
889
  ),
890
  ),
891
+ 'CreateSAMLProvider' => array(
892
  'httpMethod' => 'POST',
893
  'uri' => '/',
894
  'class' => 'Aws\\Common\\Command\\QueryCommand',
895
+ 'responseClass' => 'CreateSAMLProviderResponse',
896
  'responseType' => 'model',
897
  'parameters' => array(
898
  'Action' => array(
899
  'static' => true,
900
  'location' => 'aws.query',
901
+ 'default' => 'CreateSAMLProvider',
902
  ),
903
  'Version' => array(
904
  'static' => true,
905
  'location' => 'aws.query',
906
  'default' => '2010-05-08',
907
  ),
908
+ 'SAMLMetadataDocument' => array(
909
+ 'required' => true,
910
  'type' => 'string',
911
  'location' => 'aws.query',
912
+ 'minLength' => 1000,
 
913
  ),
914
+ 'Name' => array(
915
  'required' => true,
916
  'type' => 'string',
917
  'location' => 'aws.query',
920
  ),
921
  'errorResponses' => array(
922
  array(
923
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
924
+ 'class' => 'InvalidInputException',
925
  ),
926
  array(
927
  'reason' => 'The request was rejected because it attempted to create a resource that already exists.',
928
  'class' => 'EntityAlreadyExistsException',
929
  ),
930
+ array(
931
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
932
+ 'class' => 'LimitExceededException',
933
+ ),
934
+ array(
935
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
936
+ 'class' => 'ServiceFailureException',
937
+ ),
938
  ),
939
  ),
940
+ 'CreateUser' => array(
941
  'httpMethod' => 'POST',
942
  'uri' => '/',
943
  'class' => 'Aws\\Common\\Command\\QueryCommand',
944
+ 'responseClass' => 'CreateUserResponse',
945
  'responseType' => 'model',
946
  'parameters' => array(
947
  'Action' => array(
948
  'static' => true,
949
  'location' => 'aws.query',
950
+ 'default' => 'CreateUser',
951
  ),
952
  'Version' => array(
953
  'static' => true,
954
  'location' => 'aws.query',
955
  'default' => '2010-05-08',
956
  ),
957
+ 'Path' => array(
 
958
  'type' => 'string',
959
  'location' => 'aws.query',
960
  'minLength' => 1,
 
961
  ),
962
+ 'UserName' => array(
963
  'required' => true,
964
  'type' => 'string',
965
  'location' => 'aws.query',
966
+ 'minLength' => 1,
967
+ ),
968
+ ),
969
+ 'errorResponses' => array(
970
+ array(
971
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
972
+ 'class' => 'LimitExceededException',
973
+ ),
974
+ array(
975
+ 'reason' => 'The request was rejected because it attempted to create a resource that already exists.',
976
+ 'class' => 'EntityAlreadyExistsException',
977
+ ),
978
+ array(
979
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
980
+ 'class' => 'NoSuchEntityException',
981
+ ),
982
+ array(
983
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
984
+ 'class' => 'ServiceFailureException',
985
+ ),
986
+ ),
987
+ ),
988
+ 'CreateVirtualMFADevice' => array(
989
+ 'httpMethod' => 'POST',
990
+ 'uri' => '/',
991
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
992
+ 'responseClass' => 'CreateVirtualMFADeviceResponse',
993
+ 'responseType' => 'model',
994
+ 'parameters' => array(
995
+ 'Action' => array(
996
+ 'static' => true,
997
+ 'location' => 'aws.query',
998
+ 'default' => 'CreateVirtualMFADevice',
999
+ ),
1000
+ 'Version' => array(
1001
+ 'static' => true,
1002
+ 'location' => 'aws.query',
1003
+ 'default' => '2010-05-08',
1004
+ ),
1005
+ 'Path' => array(
1006
+ 'type' => 'string',
1007
+ 'location' => 'aws.query',
1008
+ 'minLength' => 1,
1009
+ ),
1010
+ 'VirtualMFADeviceName' => array(
1011
+ 'required' => true,
1012
+ 'type' => 'string',
1013
+ 'location' => 'aws.query',
1014
+ 'minLength' => 1,
1015
+ ),
1016
+ ),
1017
+ 'errorResponses' => array(
1018
+ array(
1019
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1020
+ 'class' => 'LimitExceededException',
1021
+ ),
1022
+ array(
1023
+ 'reason' => 'The request was rejected because it attempted to create a resource that already exists.',
1024
+ 'class' => 'EntityAlreadyExistsException',
1025
+ ),
1026
+ array(
1027
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1028
+ 'class' => 'ServiceFailureException',
1029
+ ),
1030
+ ),
1031
+ ),
1032
+ 'DeactivateMFADevice' => array(
1033
+ 'httpMethod' => 'POST',
1034
+ 'uri' => '/',
1035
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
1036
+ 'responseClass' => 'EmptyOutput',
1037
+ 'responseType' => 'model',
1038
+ 'parameters' => array(
1039
+ 'Action' => array(
1040
+ 'static' => true,
1041
+ 'location' => 'aws.query',
1042
+ 'default' => 'DeactivateMFADevice',
1043
+ ),
1044
+ 'Version' => array(
1045
+ 'static' => true,
1046
+ 'location' => 'aws.query',
1047
+ 'default' => '2010-05-08',
1048
+ ),
1049
+ 'UserName' => array(
1050
+ 'required' => true,
1051
+ 'type' => 'string',
1052
+ 'location' => 'aws.query',
1053
+ 'minLength' => 1,
1054
+ ),
1055
+ 'SerialNumber' => array(
1056
+ 'required' => true,
1057
+ 'type' => 'string',
1058
+ 'location' => 'aws.query',
1059
+ 'minLength' => 9,
1060
  ),
1061
  ),
1062
  'errorResponses' => array(
1072
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1073
  'class' => 'LimitExceededException',
1074
  ),
1075
+ array(
1076
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1077
+ 'class' => 'ServiceFailureException',
1078
+ ),
1079
  ),
1080
  ),
1081
  'DeleteAccessKey' => array(
1099
  'type' => 'string',
1100
  'location' => 'aws.query',
1101
  'minLength' => 1,
 
1102
  ),
1103
  'AccessKeyId' => array(
1104
  'required' => true,
1105
  'type' => 'string',
1106
  'location' => 'aws.query',
1107
  'minLength' => 16,
 
1108
  ),
1109
  ),
1110
  'errorResponses' => array(
1116
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1117
  'class' => 'LimitExceededException',
1118
  ),
1119
+ array(
1120
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1121
+ 'class' => 'ServiceFailureException',
1122
+ ),
1123
  ),
1124
  ),
1125
  'DeleteAccountAlias' => array(
1144
  'type' => 'string',
1145
  'location' => 'aws.query',
1146
  'minLength' => 3,
 
1147
  ),
1148
  ),
1149
  'errorResponses' => array(
1155
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1156
  'class' => 'LimitExceededException',
1157
  ),
1158
+ array(
1159
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1160
+ 'class' => 'ServiceFailureException',
1161
+ ),
1162
  ),
1163
  ),
1164
  'DeleteAccountPasswordPolicy' => array(
1188
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1189
  'class' => 'LimitExceededException',
1190
  ),
1191
+ array(
1192
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1193
+ 'class' => 'ServiceFailureException',
1194
+ ),
1195
  ),
1196
  ),
1197
  'DeleteGroup' => array(
1216
  'type' => 'string',
1217
  'location' => 'aws.query',
1218
  'minLength' => 1,
 
1219
  ),
1220
  ),
1221
  'errorResponses' => array(
1231
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1232
  'class' => 'LimitExceededException',
1233
  ),
1234
+ array(
1235
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1236
+ 'class' => 'ServiceFailureException',
1237
+ ),
1238
  ),
1239
  ),
1240
  'DeleteGroupPolicy' => array(
1259
  'type' => 'string',
1260
  'location' => 'aws.query',
1261
  'minLength' => 1,
 
1262
  ),
1263
  'PolicyName' => array(
1264
  'required' => true,
1265
  'type' => 'string',
1266
  'location' => 'aws.query',
1267
  'minLength' => 1,
 
1268
  ),
1269
  ),
1270
  'errorResponses' => array(
1276
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1277
  'class' => 'LimitExceededException',
1278
  ),
1279
+ array(
1280
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1281
+ 'class' => 'ServiceFailureException',
1282
+ ),
1283
  ),
1284
  ),
1285
  'DeleteInstanceProfile' => array(
1304
  'type' => 'string',
1305
  'location' => 'aws.query',
1306
  'minLength' => 1,
 
1307
  ),
1308
  ),
1309
  'errorResponses' => array(
1319
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1320
  'class' => 'LimitExceededException',
1321
  ),
1322
+ array(
1323
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1324
+ 'class' => 'ServiceFailureException',
1325
+ ),
1326
  ),
1327
  ),
1328
  'DeleteLoginProfile' => array(
1347
  'type' => 'string',
1348
  'location' => 'aws.query',
1349
  'minLength' => 1,
 
1350
  ),
1351
  ),
1352
  'errorResponses' => array(
1362
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1363
  'class' => 'LimitExceededException',
1364
  ),
1365
+ array(
1366
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1367
+ 'class' => 'ServiceFailureException',
1368
+ ),
1369
  ),
1370
  ),
1371
  'DeleteOpenIDConnectProvider' => array(
1390
  'type' => 'string',
1391
  'location' => 'aws.query',
1392
  'minLength' => 20,
 
1393
  ),
1394
  ),
1395
  'errorResponses' => array(
1401
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1402
  'class' => 'NoSuchEntityException',
1403
  ),
1404
+ array(
1405
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1406
+ 'class' => 'ServiceFailureException',
1407
+ ),
1408
+ ),
1409
+ ),
1410
+ 'DeletePolicy' => array(
1411
+ 'httpMethod' => 'POST',
1412
+ 'uri' => '/',
1413
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
1414
+ 'responseClass' => 'EmptyOutput',
1415
+ 'responseType' => 'model',
1416
+ 'parameters' => array(
1417
+ 'Action' => array(
1418
+ 'static' => true,
1419
+ 'location' => 'aws.query',
1420
+ 'default' => 'DeletePolicy',
1421
+ ),
1422
+ 'Version' => array(
1423
+ 'static' => true,
1424
+ 'location' => 'aws.query',
1425
+ 'default' => '2010-05-08',
1426
+ ),
1427
+ 'PolicyArn' => array(
1428
+ 'required' => true,
1429
+ 'type' => 'string',
1430
+ 'location' => 'aws.query',
1431
+ 'minLength' => 20,
1432
+ ),
1433
+ ),
1434
+ 'errorResponses' => array(
1435
+ array(
1436
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1437
+ 'class' => 'NoSuchEntityException',
1438
+ ),
1439
+ array(
1440
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1441
+ 'class' => 'LimitExceededException',
1442
+ ),
1443
+ array(
1444
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
1445
+ 'class' => 'InvalidInputException',
1446
+ ),
1447
+ array(
1448
+ 'reason' => 'The request was rejected because it attempted to delete a resource that has attached subordinate entities. The error message describes these entities.',
1449
+ 'class' => 'DeleteConflictException',
1450
+ ),
1451
+ array(
1452
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1453
+ 'class' => 'ServiceFailureException',
1454
+ ),
1455
+ ),
1456
+ ),
1457
+ 'DeletePolicyVersion' => array(
1458
+ 'httpMethod' => 'POST',
1459
+ 'uri' => '/',
1460
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
1461
+ 'responseClass' => 'EmptyOutput',
1462
+ 'responseType' => 'model',
1463
+ 'parameters' => array(
1464
+ 'Action' => array(
1465
+ 'static' => true,
1466
+ 'location' => 'aws.query',
1467
+ 'default' => 'DeletePolicyVersion',
1468
+ ),
1469
+ 'Version' => array(
1470
+ 'static' => true,
1471
+ 'location' => 'aws.query',
1472
+ 'default' => '2010-05-08',
1473
+ ),
1474
+ 'PolicyArn' => array(
1475
+ 'required' => true,
1476
+ 'type' => 'string',
1477
+ 'location' => 'aws.query',
1478
+ 'minLength' => 20,
1479
+ ),
1480
+ 'VersionId' => array(
1481
+ 'required' => true,
1482
+ 'type' => 'string',
1483
+ 'location' => 'aws.query',
1484
+ ),
1485
+ ),
1486
+ 'errorResponses' => array(
1487
+ array(
1488
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1489
+ 'class' => 'NoSuchEntityException',
1490
+ ),
1491
+ array(
1492
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1493
+ 'class' => 'LimitExceededException',
1494
+ ),
1495
+ array(
1496
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
1497
+ 'class' => 'InvalidInputException',
1498
+ ),
1499
+ array(
1500
+ 'reason' => 'The request was rejected because it attempted to delete a resource that has attached subordinate entities. The error message describes these entities.',
1501
+ 'class' => 'DeleteConflictException',
1502
+ ),
1503
+ array(
1504
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1505
+ 'class' => 'ServiceFailureException',
1506
+ ),
1507
  ),
1508
  ),
1509
  'DeleteRole' => array(
1528
  'type' => 'string',
1529
  'location' => 'aws.query',
1530
  'minLength' => 1,
 
1531
  ),
1532
  ),
1533
  'errorResponses' => array(
1543
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1544
  'class' => 'LimitExceededException',
1545
  ),
1546
+ array(
1547
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1548
+ 'class' => 'ServiceFailureException',
1549
+ ),
1550
  ),
1551
  ),
1552
  'DeleteRolePolicy' => array(
1571
  'type' => 'string',
1572
  'location' => 'aws.query',
1573
  'minLength' => 1,
 
1574
  ),
1575
  'PolicyName' => array(
1576
  'required' => true,
1577
  'type' => 'string',
1578
  'location' => 'aws.query',
1579
  'minLength' => 1,
 
1580
  ),
1581
  ),
1582
  'errorResponses' => array(
1588
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1589
  'class' => 'LimitExceededException',
1590
  ),
1591
+ array(
1592
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1593
+ 'class' => 'ServiceFailureException',
1594
+ ),
1595
  ),
1596
  ),
1597
  'DeleteSAMLProvider' => array(
1616
  'type' => 'string',
1617
  'location' => 'aws.query',
1618
  'minLength' => 20,
 
1619
  ),
1620
  ),
1621
  'errorResponses' => array(
1631
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1632
  'class' => 'NoSuchEntityException',
1633
  ),
1634
+ array(
1635
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1636
+ 'class' => 'ServiceFailureException',
1637
+ ),
1638
+ ),
1639
+ ),
1640
+ 'DeleteSSHPublicKey' => array(
1641
+ 'httpMethod' => 'POST',
1642
+ 'uri' => '/',
1643
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
1644
+ 'responseClass' => 'EmptyOutput',
1645
+ 'responseType' => 'model',
1646
+ 'parameters' => array(
1647
+ 'Action' => array(
1648
+ 'static' => true,
1649
+ 'location' => 'aws.query',
1650
+ 'default' => 'DeleteSSHPublicKey',
1651
+ ),
1652
+ 'Version' => array(
1653
+ 'static' => true,
1654
+ 'location' => 'aws.query',
1655
+ 'default' => '2010-05-08',
1656
+ ),
1657
+ 'UserName' => array(
1658
+ 'required' => true,
1659
+ 'type' => 'string',
1660
+ 'location' => 'aws.query',
1661
+ 'minLength' => 1,
1662
+ ),
1663
+ 'SSHPublicKeyId' => array(
1664
+ 'required' => true,
1665
+ 'type' => 'string',
1666
+ 'location' => 'aws.query',
1667
+ 'minLength' => 20,
1668
+ ),
1669
+ ),
1670
+ 'errorResponses' => array(
1671
+ array(
1672
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1673
+ 'class' => 'NoSuchEntityException',
1674
+ ),
1675
  ),
1676
  ),
1677
  'DeleteServerCertificate' => array(
1696
  'type' => 'string',
1697
  'location' => 'aws.query',
1698
  'minLength' => 1,
 
1699
  ),
1700
  ),
1701
  'errorResponses' => array(
1711
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1712
  'class' => 'LimitExceededException',
1713
  ),
1714
+ array(
1715
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1716
+ 'class' => 'ServiceFailureException',
1717
+ ),
1718
  ),
1719
  ),
1720
  'DeleteSigningCertificate' => array(
1738
  'type' => 'string',
1739
  'location' => 'aws.query',
1740
  'minLength' => 1,
 
1741
  ),
1742
  'CertificateId' => array(
1743
  'required' => true,
1744
  'type' => 'string',
1745
  'location' => 'aws.query',
1746
  'minLength' => 24,
 
1747
  ),
1748
  ),
1749
  'errorResponses' => array(
1755
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1756
  'class' => 'LimitExceededException',
1757
  ),
1758
+ array(
1759
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1760
+ 'class' => 'ServiceFailureException',
1761
+ ),
1762
  ),
1763
  ),
1764
  'DeleteUser' => array(
1783
  'type' => 'string',
1784
  'location' => 'aws.query',
1785
  'minLength' => 1,
 
1786
  ),
1787
  ),
1788
  'errorResponses' => array(
1798
  'reason' => 'The request was rejected because it attempted to delete a resource that has attached subordinate entities. The error message describes these entities.',
1799
  'class' => 'DeleteConflictException',
1800
  ),
1801
+ array(
1802
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1803
+ 'class' => 'ServiceFailureException',
1804
+ ),
1805
  ),
1806
  ),
1807
  'DeleteUserPolicy' => array(
1826
  'type' => 'string',
1827
  'location' => 'aws.query',
1828
  'minLength' => 1,
 
1829
  ),
1830
  'PolicyName' => array(
1831
  'required' => true,
1832
  'type' => 'string',
1833
  'location' => 'aws.query',
1834
  'minLength' => 1,
 
1835
  ),
1836
  ),
1837
  'errorResponses' => array(
1843
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1844
  'class' => 'LimitExceededException',
1845
  ),
1846
+ array(
1847
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1848
+ 'class' => 'ServiceFailureException',
1849
+ ),
1850
  ),
1851
  ),
1852
  'DeleteVirtualMFADevice' => array(
1871
  'type' => 'string',
1872
  'location' => 'aws.query',
1873
  'minLength' => 9,
 
1874
  ),
1875
  ),
1876
  'errorResponses' => array(
1886
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1887
  'class' => 'LimitExceededException',
1888
  ),
1889
+ array(
1890
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1891
+ 'class' => 'ServiceFailureException',
1892
+ ),
1893
  ),
1894
  ),
1895
+ 'DetachGroupPolicy' => array(
1896
  'httpMethod' => 'POST',
1897
  'uri' => '/',
1898
  'class' => 'Aws\\Common\\Command\\QueryCommand',
1902
  'Action' => array(
1903
  'static' => true,
1904
  'location' => 'aws.query',
1905
+ 'default' => 'DetachGroupPolicy',
1906
  ),
1907
  'Version' => array(
1908
  'static' => true,
1909
  'location' => 'aws.query',
1910
  'default' => '2010-05-08',
1911
  ),
1912
+ 'GroupName' => array(
1913
  'required' => true,
1914
  'type' => 'string',
1915
  'location' => 'aws.query',
1916
  'minLength' => 1,
 
1917
  ),
1918
+ 'PolicyArn' => array(
1919
  'required' => true,
1920
  'type' => 'string',
1921
  'location' => 'aws.query',
1922
+ 'minLength' => 20,
 
1923
  ),
1924
+ ),
1925
+ 'errorResponses' => array(
1926
+ array(
1927
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1928
+ 'class' => 'NoSuchEntityException',
1929
+ ),
1930
+ array(
1931
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1932
+ 'class' => 'LimitExceededException',
1933
+ ),
1934
+ array(
1935
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
1936
+ 'class' => 'InvalidInputException',
1937
+ ),
1938
+ array(
1939
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1940
+ 'class' => 'ServiceFailureException',
1941
+ ),
1942
+ ),
1943
+ ),
1944
+ 'DetachRolePolicy' => array(
1945
+ 'httpMethod' => 'POST',
1946
+ 'uri' => '/',
1947
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
1948
+ 'responseClass' => 'EmptyOutput',
1949
+ 'responseType' => 'model',
1950
+ 'parameters' => array(
1951
+ 'Action' => array(
1952
+ 'static' => true,
1953
+ 'location' => 'aws.query',
1954
+ 'default' => 'DetachRolePolicy',
1955
+ ),
1956
+ 'Version' => array(
1957
+ 'static' => true,
1958
+ 'location' => 'aws.query',
1959
+ 'default' => '2010-05-08',
1960
+ ),
1961
+ 'RoleName' => array(
1962
+ 'required' => true,
1963
+ 'type' => 'string',
1964
+ 'location' => 'aws.query',
1965
+ 'minLength' => 1,
1966
+ ),
1967
+ 'PolicyArn' => array(
1968
+ 'required' => true,
1969
+ 'type' => 'string',
1970
+ 'location' => 'aws.query',
1971
+ 'minLength' => 20,
1972
+ ),
1973
+ ),
1974
+ 'errorResponses' => array(
1975
+ array(
1976
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
1977
+ 'class' => 'NoSuchEntityException',
1978
+ ),
1979
+ array(
1980
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
1981
+ 'class' => 'LimitExceededException',
1982
+ ),
1983
+ array(
1984
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
1985
+ 'class' => 'InvalidInputException',
1986
+ ),
1987
+ array(
1988
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
1989
+ 'class' => 'ServiceFailureException',
1990
+ ),
1991
+ ),
1992
+ ),
1993
+ 'DetachUserPolicy' => array(
1994
+ 'httpMethod' => 'POST',
1995
+ 'uri' => '/',
1996
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
1997
+ 'responseClass' => 'EmptyOutput',
1998
+ 'responseType' => 'model',
1999
+ 'parameters' => array(
2000
+ 'Action' => array(
2001
+ 'static' => true,
2002
+ 'location' => 'aws.query',
2003
+ 'default' => 'DetachUserPolicy',
2004
+ ),
2005
+ 'Version' => array(
2006
+ 'static' => true,
2007
+ 'location' => 'aws.query',
2008
+ 'default' => '2010-05-08',
2009
+ ),
2010
+ 'UserName' => array(
2011
+ 'required' => true,
2012
+ 'type' => 'string',
2013
+ 'location' => 'aws.query',
2014
+ 'minLength' => 1,
2015
+ ),
2016
+ 'PolicyArn' => array(
2017
+ 'required' => true,
2018
+ 'type' => 'string',
2019
+ 'location' => 'aws.query',
2020
+ 'minLength' => 20,
2021
+ ),
2022
+ ),
2023
+ 'errorResponses' => array(
2024
+ array(
2025
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2026
+ 'class' => 'NoSuchEntityException',
2027
+ ),
2028
+ array(
2029
+ 'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
2030
+ 'class' => 'LimitExceededException',
2031
+ ),
2032
+ array(
2033
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
2034
+ 'class' => 'InvalidInputException',
2035
+ ),
2036
+ array(
2037
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2038
+ 'class' => 'ServiceFailureException',
2039
+ ),
2040
+ ),
2041
+ ),
2042
+ 'EnableMFADevice' => array(
2043
+ 'httpMethod' => 'POST',
2044
+ 'uri' => '/',
2045
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
2046
+ 'responseClass' => 'EmptyOutput',
2047
+ 'responseType' => 'model',
2048
+ 'parameters' => array(
2049
+ 'Action' => array(
2050
+ 'static' => true,
2051
+ 'location' => 'aws.query',
2052
+ 'default' => 'EnableMFADevice',
2053
+ ),
2054
+ 'Version' => array(
2055
+ 'static' => true,
2056
+ 'location' => 'aws.query',
2057
+ 'default' => '2010-05-08',
2058
+ ),
2059
+ 'UserName' => array(
2060
+ 'required' => true,
2061
+ 'type' => 'string',
2062
+ 'location' => 'aws.query',
2063
+ 'minLength' => 1,
2064
+ ),
2065
+ 'SerialNumber' => array(
2066
+ 'required' => true,
2067
+ 'type' => 'string',
2068
+ 'location' => 'aws.query',
2069
+ 'minLength' => 9,
2070
+ ),
2071
+ 'AuthenticationCode1' => array(
2072
+ 'required' => true,
2073
+ 'type' => 'string',
2074
+ 'location' => 'aws.query',
2075
  'minLength' => 6,
 
2076
  ),
2077
  'AuthenticationCode2' => array(
2078
  'required' => true,
2079
  'type' => 'string',
2080
  'location' => 'aws.query',
2081
  'minLength' => 6,
 
2082
  ),
2083
  ),
2084
  'errorResponses' => array(
2102
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2103
  'class' => 'NoSuchEntityException',
2104
  ),
2105
+ array(
2106
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2107
+ 'class' => 'ServiceFailureException',
2108
+ ),
2109
  ),
2110
  ),
2111
  'GenerateCredentialReport' => array(
2131
  'reason' => 'The request was rejected because it attempted to create resources beyond the current AWS account limits. The error message describes the limit exceeded.',
2132
  'class' => 'LimitExceededException',
2133
  ),
2134
+ array(
2135
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2136
+ 'class' => 'ServiceFailureException',
2137
+ ),
2138
+ ),
2139
+ ),
2140
+ 'GetAccessKeyLastUsed' => array(
2141
+ 'httpMethod' => 'POST',
2142
+ 'uri' => '/',
2143
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
2144
+ 'responseClass' => 'GetAccessKeyLastUsedResponse',
2145
+ 'responseType' => 'model',
2146
+ 'parameters' => array(
2147
+ 'Action' => array(
2148
+ 'static' => true,
2149
+ 'location' => 'aws.query',
2150
+ 'default' => 'GetAccessKeyLastUsed',
2151
+ ),
2152
+ 'Version' => array(
2153
+ 'static' => true,
2154
+ 'location' => 'aws.query',
2155
+ 'default' => '2010-05-08',
2156
+ ),
2157
+ 'AccessKeyId' => array(
2158
+ 'required' => true,
2159
+ 'type' => 'string',
2160
+ 'location' => 'aws.query',
2161
+ 'minLength' => 16,
2162
+ ),
2163
+ ),
2164
+ 'errorResponses' => array(
2165
+ array(
2166
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2167
+ 'class' => 'NoSuchEntityException',
2168
+ ),
2169
  ),
2170
  ),
2171
  'GetAccountAuthorizationDetails' => array(
2204
  'type' => 'string',
2205
  'location' => 'aws.query',
2206
  'minLength' => 1,
2207
+ ),
2208
+ ),
2209
+ 'errorResponses' => array(
2210
+ array(
2211
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2212
+ 'class' => 'ServiceFailureException',
2213
  ),
2214
  ),
2215
  ),
2236
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2237
  'class' => 'NoSuchEntityException',
2238
  ),
2239
+ array(
2240
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2241
+ 'class' => 'ServiceFailureException',
2242
+ ),
2243
  ),
2244
  ),
2245
  'GetAccountSummary' => array(
2260
  'default' => '2010-05-08',
2261
  ),
2262
  ),
2263
+ 'errorResponses' => array(
2264
+ array(
2265
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2266
+ 'class' => 'ServiceFailureException',
2267
+ ),
2268
+ ),
2269
+ ),
2270
+ 'GetContextKeysForCustomPolicy' => array(
2271
+ 'httpMethod' => 'POST',
2272
+ 'uri' => '/',
2273
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
2274
+ 'responseClass' => 'GetContextKeysForPolicyResponse',
2275
+ 'responseType' => 'model',
2276
+ 'parameters' => array(
2277
+ 'Action' => array(
2278
+ 'static' => true,
2279
+ 'location' => 'aws.query',
2280
+ 'default' => 'GetContextKeysForCustomPolicy',
2281
+ ),
2282
+ 'Version' => array(
2283
+ 'static' => true,
2284
+ 'location' => 'aws.query',
2285
+ 'default' => '2010-05-08',
2286
+ ),
2287
+ 'PolicyInputList' => array(
2288
+ 'required' => true,
2289
+ 'type' => 'array',
2290
+ 'location' => 'aws.query',
2291
+ 'sentAs' => 'PolicyInputList.member',
2292
+ 'items' => array(
2293
+ 'name' => 'policyDocumentType',
2294
+ 'type' => 'string',
2295
+ 'minLength' => 1,
2296
+ ),
2297
+ ),
2298
+ ),
2299
+ 'errorResponses' => array(
2300
+ array(
2301
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
2302
+ 'class' => 'InvalidInputException',
2303
+ ),
2304
+ ),
2305
+ ),
2306
+ 'GetContextKeysForPrincipalPolicy' => array(
2307
+ 'httpMethod' => 'POST',
2308
+ 'uri' => '/',
2309
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
2310
+ 'responseClass' => 'GetContextKeysForPolicyResponse',
2311
+ 'responseType' => 'model',
2312
+ 'parameters' => array(
2313
+ 'Action' => array(
2314
+ 'static' => true,
2315
+ 'location' => 'aws.query',
2316
+ 'default' => 'GetContextKeysForPrincipalPolicy',
2317
+ ),
2318
+ 'Version' => array(
2319
+ 'static' => true,
2320
+ 'location' => 'aws.query',
2321
+ 'default' => '2010-05-08',
2322
+ ),
2323
+ 'PolicySourceArn' => array(
2324
+ 'required' => true,
2325
+ 'type' => 'string',
2326
+ 'location' => 'aws.query',
2327
+ 'minLength' => 20,
2328
+ ),
2329
+ 'PolicyInputList' => array(
2330
+ 'type' => 'array',
2331
+ 'location' => 'aws.query',
2332
+ 'sentAs' => 'PolicyInputList.member',
2333
+ 'items' => array(
2334
+ 'name' => 'policyDocumentType',
2335
+ 'type' => 'string',
2336
+ 'minLength' => 1,
2337
+ ),
2338
+ ),
2339
+ ),
2340
+ 'errorResponses' => array(
2341
+ array(
2342
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2343
+ 'class' => 'NoSuchEntityException',
2344
+ ),
2345
+ array(
2346
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
2347
+ 'class' => 'InvalidInputException',
2348
+ ),
2349
+ ),
2350
  ),
2351
  'GetCredentialReport' => array(
2352
  'httpMethod' => 'POST',
2372
  'class' => 'CredentialReportNotPresentException',
2373
  ),
2374
  array(
2375
+ 'reason' => 'The request was rejected because the most recent credential report has expired. To generate a new credential report, use GenerateCredentialReport. For more information about credential report expiration, see Getting Credential Reports in the IAM User Guide.',
2376
  'class' => 'CredentialReportExpiredException',
2377
  ),
2378
  array(
2379
  'reason' => 'The request was rejected because the credential report is still being generated.',
2380
  'class' => 'CredentialReportNotReadyException',
2381
  ),
2382
+ array(
2383
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2384
+ 'class' => 'ServiceFailureException',
2385
+ ),
2386
  ),
2387
  ),
2388
  'GetGroup' => array(
2407
  'type' => 'string',
2408
  'location' => 'aws.query',
2409
  'minLength' => 1,
 
2410
  ),
2411
  'Marker' => array(
2412
  'type' => 'string',
2413
  'location' => 'aws.query',
2414
  'minLength' => 1,
 
2415
  ),
2416
  'MaxItems' => array(
2417
  'type' => 'numeric',
2425
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2426
  'class' => 'NoSuchEntityException',
2427
  ),
2428
+ array(
2429
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2430
+ 'class' => 'ServiceFailureException',
2431
+ ),
2432
  ),
2433
  ),
2434
  'GetGroupPolicy' => array(
2453
  'type' => 'string',
2454
  'location' => 'aws.query',
2455
  'minLength' => 1,
 
2456
  ),
2457
  'PolicyName' => array(
2458
  'required' => true,
2459
  'type' => 'string',
2460
  'location' => 'aws.query',
2461
  'minLength' => 1,
 
2462
  ),
2463
  ),
2464
  'errorResponses' => array(
2466
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2467
  'class' => 'NoSuchEntityException',
2468
  ),
2469
+ array(
2470
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2471
+ 'class' => 'ServiceFailureException',
2472
+ ),
2473
  ),
2474
  ),
2475
  'GetInstanceProfile' => array(
2494
  'type' => 'string',
2495
  'location' => 'aws.query',
2496
  'minLength' => 1,
 
2497
  ),
2498
  ),
2499
  'errorResponses' => array(
2501
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2502
  'class' => 'NoSuchEntityException',
2503
  ),
2504
+ array(
2505
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2506
+ 'class' => 'ServiceFailureException',
2507
+ ),
2508
+ ),
2509
  ),
2510
  'GetLoginProfile' => array(
2511
  'httpMethod' => 'POST',
2529
  'type' => 'string',
2530
  'location' => 'aws.query',
2531
  'minLength' => 1,
 
2532
  ),
2533
  ),
2534
  'errorResponses' => array(
2536
  'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2537
  'class' => 'NoSuchEntityException',
2538
  ),
2539
+ array(
2540
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2541
+ 'class' => 'ServiceFailureException',
2542
+ ),
2543
+ ),
2544
+ ),
2545
+ 'GetOpenIDConnectProvider' => array(
2546
+ 'httpMethod' => 'POST',
2547
+ 'uri' => '/',
2548
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
2549
+ 'responseClass' => 'GetOpenIDConnectProviderResponse',
2550
+ 'responseType' => 'model',
2551
+ 'parameters' => array(
2552
+ 'Action' => array(
2553
+ 'static' => true,
2554
+ 'location' => 'aws.query',
2555
+ 'default' => 'GetOpenIDConnectProvider',
2556
+ ),
2557
+ 'Version' => array(
2558
+ 'static' => true,
2559
+ 'location' => 'aws.query',
2560
+ 'default' => '2010-05-08',
2561
+ ),
2562
+ 'OpenIDConnectProviderArn' => array(
2563
+ 'required' => true,
2564
+ 'type' => 'string',
2565
+ 'location' => 'aws.query',
2566
+ 'minLength' => 20,
2567
+ ),
2568
+ ),
2569
+ 'errorResponses' => array(
2570
+ array(
2571
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
2572
+ 'class' => 'InvalidInputException',
2573
+ ),
2574
+ array(
2575
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2576
+ 'class' => 'NoSuchEntityException',
2577
+ ),
2578
+ array(
2579
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2580
+ 'class' => 'ServiceFailureException',
2581
+ ),
2582
+ ),
2583
+ ),
2584
+ 'GetPolicy' => array(
2585
+ 'httpMethod' => 'POST',
2586
+ 'uri' => '/',
2587
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
2588
+ 'responseClass' => 'GetPolicyResponse',
2589
+ 'responseType' => 'model',
2590
+ 'parameters' => array(
2591
+ 'Action' => array(
2592
+ 'static' => true,
2593
+ 'location' => 'aws.query',
2594
+ 'default' => 'GetPolicy',
2595
+ ),
2596
+ 'Version' => array(
2597
+ 'static' => true,
2598
+ 'location' => 'aws.query',
2599
+ 'default' => '2010-05-08',
2600
+ ),
2601
+ 'PolicyArn' => array(
2602
+ 'required' => true,
2603
+ 'type' => 'string',
2604
+ 'location' => 'aws.query',
2605
+ 'minLength' => 20,
2606
+ ),
2607
+ ),
2608
+ 'errorResponses' => array(
2609
+ array(
2610
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2611
+ 'class' => 'NoSuchEntityException',
2612
+ ),
2613
+ array(
2614
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
2615
+ 'class' => 'InvalidInputException',
2616
+ ),
2617
+ array(
2618
+ 'reason' => 'The request processing has failed because of an unknown error, exception or failure.',
2619
+ 'class' => 'ServiceFailureException',
2620
+ ),
2621
+ ),
2622
+ ),
2623
+ 'GetPolicyVersion' => array(
2624
+ 'httpMethod' => 'POST',
2625
+ 'uri' => '/',
2626
+ 'class' => 'Aws\\Common\\Command\\QueryCommand',
2627
+ 'responseClass' => 'GetPolicyVersionResponse',
2628
+ 'responseType' => 'model',
2629
+ 'parameters' => array(
2630
+ 'Action' => array(
2631
+ 'static' => true,
2632
+ 'location' => 'aws.query',
2633
+ 'default' => 'GetPolicyVersion',
2634
+ ),
2635
+ 'Version' => array(
2636
+ 'static' => true,
2637
+ 'location' => 'aws.query',
2638
+ 'default' => '2010-05-08',
2639
+ ),
2640
+ 'PolicyArn' => array(
2641
+ 'required' => true,
2642
+ 'type' => 'string',
2643
+ 'location' => 'aws.query',
2644
+ 'minLength' => 20,
2645
+ ),
2646
+ 'VersionId' => array(
2647
+ 'required' => true,
2648
+ 'type' => 'string',
2649
+ 'location' => 'aws.query',
2650
+ ),
2651
+ ),
2652
+ 'errorResponses' => array(
2653
+ array(
2654
+ 'reason' => 'The request was rejected because it referenced an entity that does not exist. The error message describes the entity.',
2655
+ 'class' => 'NoSuchEntityException',
2656
+ ),
2657
+ array(
2658
+ 'reason' => 'The request was rejected because an invalid or out-of-range value was supplied for an input parameter.',
2659
+ 'class' => 'InvalidInputException',
2660
+ ),
2661
+ array(
2662
+ 'reason' => 'The request processing has failed because of an